@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700,800|Noto+Sans:400,700|Roboto+Condensed:400,700);

/*#region ROOT / BODY, HTML */
* {
    box-sizing: border-box;
    border: 0;
    outline: 0;
}

:root {
    --tot-theme-primary: rgb(5, 25, 63); /*#02112c;*/
    --tot-theme-secondary: #fff;
    --tot-theme-accent1: #ff953e;
    --tot-theme-accent2: #1e1911;
    --tot-theme-accent3: #eee3cc;
    --tot-theme-gradient: linear-gradient(145deg,rgba(224, 169, 101, 1) 0%, rgba(176, 112, 56, 1) 100%);
    --tot-theme-gradient2: linear-gradient(325deg,rgba(224, 169, 101, 1) 0%, rgba(176, 112, 56, 1) 100%);
    --tot-width-text: 850px;
    --tot-width-medium: 1080px;
    --tot-width-large: 1440px;
    --tot-font-heading: 'Montserrat';
    --tot-font-subheading: 'Roboto Condensed';
    --tot-font-body: 'Noto Sans';
    --tot-header-height: 120px;
}

::selection {background: var(--tot-theme-accent1);}
::-moz-selection {background: var(--tot-theme-accent1);}

body {
    padding: 0;
	margin: 0;
	background: white;
    font-family: var(--tot-font-body), Arial, sans-serif;
	font-weight: 500;
    position: relative;
    font-size: 1rem !important;
    color: var(--tot-theme-primary);
	text-align: left;
	overflow-x: hidden;
}

html {
    scroll-behavior: smooth
}
/*#endregion*/

/*#region HEADER / NAVIGATION */
header {
	position: fixed;
	width: 100%;
	height: var(--tot-header-height);
	background-color: transparent;
	top: 0;
	z-index: 20;
    text-align: center;

}
header.active {
    background-color: rgba(0,0,0,0.5);
}
header img {
    height: calc(100% - 28px);
}
nav {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
	align-items: center;
	height: var(--tot-header-height);
    font-family: var(--tot-font-heading), Arial, sans-serif;
    font-weight: 700;
    padding: 0px 30px;
}
nav img {
    display: inline-block;
    position: relative;
    width: 75px;
    z-index: 100;
    margin-top: 4px;
}
nav .grid-left {
    grid-column: 1 / 2;
}
nav .grid-right {
    grid-column: 3 / 4;
}
/*#endregion */

/*#region MAIN STYLES */
main {
    position: relative;
}

main section {
    padding: 100px 0 90px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-size: 3.8rem;
    padding: 10px 0;
    color: inherit;
}
h1, h3, h5 {
    font-family: var(--tot-font-heading);
}
h2, h4, h6 {
    font-family: var(--tot-font-subheading);
}
h1 {
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
}
h1 span {
    font-size: 1.4rem;
    font-family: var(--tot-font-subheading);
    position:absolute;
    left:0;
    right:0;
    top: -30px;
}
h2 {
    font-size: 2.6rem;
}
h3 {
    font-size: 2.2rem;
}
h4 {
    font-size: 1.6rem;
    text-transform: uppercase;
    text-align: center;
}
h5 {
    font-size: 1.2rem;
}
h6 {
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: var(--tot-theme-primary);
}

p {
    font-family: var(--tot-font-body);
    color: inherit;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.8rem 0;
    margin: 0;
}

form {
    margin-top: -30px;
}
label {
    text-transform: uppercase;
    font-family: var(--tot-font-subheading);
    padding-bottom: 12px;
    font-weight: bold;
}
input[type=input], textarea {
    display: block;
    border: 1px solid var(--tot-theme-primary);
    padding: 10px;
    border-radius: 6px;
    width: 100%;
    margin-top: 6px;
    font-family: var(--tot-font-body);
}
textarea {
    min-height: 100px;
    resize: none;
}

footer {
    margin-top: 40px;
    text-align: center;
}
footer .btn {
    font-size: 1.4rem;
}
footer p {
    color: var(--tot-theme-secondary);

    margin: 0 auto;
}
footer a {
    color: var(--tot-theme-secondary);
}
footer .footer-bottom a:hover {
    opacity: 0.7;
}
footer .social-icons {
    margin-top: 30px;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 20px;
}
footer a.social-icon {
    padding: 16px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--tot-theme-primary);
    border-radius: 50%;
    text-decoration: none;
    text-align: center;
    margin: 0 20px;
}
/*#endregion */

#hero {
    background-image: url('../images/hero.webp');
    color: white;
    background-position: 0;
    background-repeat: no-repeat;
    background-size: cover;
	height: 100vh;
	width: 100%;
    position: relative;
	text-align: center;
    display: flex;
	align-items: center;
    padding: 0 30px;
    z-index: 1;
}
#hero #hero-text {
    position: relative;
    display: grid;
    align-items: end;
    grid-template-rows: 2fr repeat(3, 0.8fr);
    z-index: 10;
    justify-items: center;
    align-items: center;
    top: 30px;
}
#hero h1 {
    font-size: 4.4rem;
    color: var(--tot-theme-secondary);
    line-height: 5.5rem;
}
#hero h2.headline {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 8px;
}
#hero p {
    color: var(--tot-theme-secondary);
    font-weight: 400;
    max-width: 1000px;
    font-size: 1.2rem;
}
#hero button {
    font-size: 1.2rem;
}

section .wrapper-md:nth-last-child(1) {
    padding-top: 30px;
}
section .btn.section-cta {
    margin: 50px auto 0;
}

section.blue {
    background-color: var(--tot-theme-primary);
    color: var(--tot-theme-secondary);
}

section#the-ultimate-tool img {
    max-width: 260px;
}
section#the-ultimate-tool h4 {
    text-align: center;
    text-transform: uppercase;
}
section#the-ultimate-tool .grid-col p {
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
}

section#the-problem {
    text-align: left;
}
section#the-problem .problem-icon {
    margin-right: 8px;
    font-size: 1.2rem;
    color: var(--tot-theme-accent3);
}
section#the-problem img {
    max-width: 350px;
}
section#the-problem ul {
    list-style: none;
    list-style-position: outside;
    padding: 10px 0;
    margin: 0;
    text-align: left;
}
section#the-problem li {
    position: relative;
    padding: 10px 0;
    padding-left: 32px;
    line-height: 24px;
}
section#the-problem li:before {
    content: "\f071";
    font-family: FontAwesome;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

section#the-solution .solution-icon {
    position: absolute;
    top: -40px;
    right: 0;
    left: 0;
    margin-inline: auto; 
    width: 70px;
    height: 70px;
    display: inline;
    font-size: 2rem;
    color: white;
    background-color: var(--tot-theme-primary);
    border-radius: 50%;
    padding: 10px;
    border: 2px solid white;
    text-align: center;
}
section#the-solution .grid-col > div {
    padding: 40px 20px 6px;
    border-radius: 25px;
    background-color: white;
    color: var(--tot-theme-primary);
    position: relative;
}
section#the-solution .grid-col > div h5{
    text-align: center;
}
section#the-transformation {
    position: relative;
    z-index: 0;
}
section#the-transformation .grid-col {
    position: relative;
}
section#the-transformation .grid-col > div {
    padding: 20px 10px;
    border-radius: 25px;
    background-color: white;
    color: var(--tot-theme-primary);

    -webkit-box-shadow: 0px 0px 15px 4px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 15px 4px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 15px 4px rgba(0,0,0,0.5);
}
section#the-transformation ul {
    list-style: none;
    list-style-position: outside;
    padding: 10px 40px;
    margin: 0;
    text-align: left;
}
section#the-transformation li {
    position: relative;
    padding: 8px 0;
    padding-left: 32px;
    line-height: 24px;
}
section#the-transformation li:before {
    content: "\f013";
    font-family: FontAwesome;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}
section#the-transformation .before-the-playbook li:before {
    content: "\f013";
}
section#the-transformation .after-the-playbook li:before {
    content: "\f0ad";
}
section#the-transformation .versus-circle {
    position: absolute;
    background-color: var(--tot-theme-accent1);
    color: var(--tot-theme-primary);
    border: 3px solid var(--tot-theme-primary);
    border-radius: 50%;
    margin-inline: auto; 
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    padding: 18px;
    z-index: 10;
    text-transform: uppercase;
}
section#the-transformation .versus-circle h4 {
    font-size: 2rem;
}

section#faq {
    padding-bottom: 180px;
    border-bottom: 5px solid var(--tot-theme-accent1);
}

section#faq ul {
    padding: 0;
}

section#faq .faq-item {
  color: var(--tot-theme-primary);
  cursor: pointer;
  padding: 6px 8px 18px;
  margin: 5px 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  list-style: none;
  font-weight: bold;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(5, 25, 63, 0.6);
}

section#faq .faq-item i {
  padding-right: 14px;
}

section#faq .faq-item:hover {
  cursor: pointer;
}

section#faq .faq-content {
  padding: 0 12px;
  overflow: hidden;
  background-color: #f1f1f1;
  text-align: left;
  max-height: 0;
}

section#faq .faq-content p {
  margin: 6px 0;
}

section#contact-us {
    position: relative;
    background: url('../images/blueprintbg.jpg');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 40px;
}
section#contact-us .contact-box {
    background-color: var(--tot-theme-primary);
    color: white;
    position: relative;
    text-align: left;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    padding: 70px 40px 40px;
    border-radius: 15px;
    margin-top: -200px;

    -webkit-box-shadow: 0px 0px 15px 4px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 15px 4px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 15px 4px rgba(0,0,0,0.5);
}

/*#region BUTTON STYLES */
button, .btn {
    color: var(--tot-theme-primary);
    position: relative;
    background: var(--tot-theme-accent1);
    z-index: 10;
    border-radius: 100px;
    padding: 16px 38px;
    font-family: var(--tot-font-body);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 14pt;
    display: block;
    max-width: fit-content;

    -webkit-box-shadow: 0px 0px 15px 4px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 15px 4px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 15px 4px rgba(0,0,0,0.4);
}

button.btn-gradient, .btn.btn-gradient {
    background: var(--tot-theme-gradient);
}
button.btn-gradient:after, .btn.btn-gradient:after {
    background: var(--tot-theme-gradient2);
    content: '';    
    display: block;
    height: 100%;
    position: absolute;
    top: 0; 
    left: 0;
    opacity: 0;
    width: 100%;
    z-index: -10;
    transition: opacity 0.6s;
    border-radius: 50px;
}
button.btn-gradient:hover:after, .btn.btn-gradient:hover:after {
  opacity: 1;
}
.btn:hover {
    scale: 1.01;
}
.btn.btn-blue {
    background-color: var(--tot-theme-primary);
    color: white;
}
.btn.btn-blue-gradient {
    background: linear-gradient(145deg, rgba(25, 59, 122, 1) 0%, rgba(2, 17, 44, 1) 100%);
    color: white;
}
.btn-blue-gradient:after, .btn-blue-gradient:after {
    background: linear-gradient(145deg, rgba(2, 17, 44, 1) 0%, rgba(25, 59, 122, 1) 100%);
    content: '';    
    display: block;
    height: 100%;
    position: absolute;
    top: 0; 
    left: 0;
    opacity: 0;
    width: 100%;
    z-index: -10;
    transition: opacity 0.6s;
    border-radius: 50px;
}
.btn-blue-gradient:hover:after, .btn-blue-gradient:hover:after {
    opacity: 1;
}
.btn.btn-white {
    background-color: white;
    color: var(--tot-theme-primary);
}
form .btn, form .button {
    min-width: 100%;
}
/*#endregion */

/*#region GRID COLUMN CLASSES */

/* This custom grid is a 12 column layout */
.grid-col {
    display: grid;
    margin: 60px 0 40px;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: dense;
}
.grid-col img {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.col-1 {grid-column: span 1;} .col-2 {grid-column: span 2;} .col-3 {grid-column: span 3;} .col-4 {grid-column: span 4;} .col-5 {grid-column: span 5;} .col-6 {grid-column: span 6;}
.col-7 {grid-column: span 7;} .col-8 {grid-column: span 8;} .col-9 {grid-column: span 9;} .col-10 {grid-column: span 10;} .col-11 {grid-column: span 11;} .col-12 {grid-column: span 12;}

.col-order-first {
    grid-column-end: auto;
}
.col-order-last {
    grid-column-end: 13;
}

.gap-sm {
    gap: 20px;
}
.gap-md {
    gap: 40px;
}
.gap-lg{
    gap: 60px;
}

.grid-col.grid-align-center {
    align-items: center;
    justify-content: center;
}
.grid-col.grid-align-start {
    align-items: flex-start;
}
.grid-col.grid-auto-rows {
    grid-auto-rows: 1fr;
}
.grid-col.row-gap {
    row-gap: 4rem;
}
/*#endregion */

/*#region WRAPPER / DIVDER CLASSES*/
.wrapper {
    max-width: var(--tot-width-text);
    margin: 0 auto;
}
.wrapper-md {
    max-width: var(--tot-width-medium);
    margin: 0 auto;
}
.wrapper-lg {
    max-width: var(--tot-width-large);
    margin: 0 auto; 
}
/*#endregion */


/*#region HELPER CLASSES */
.text-uppercase {text-transform: uppercase;}
.text-italic {font-style: italic;}
.text-normal {font-style: normal;}
.text-center {text-align: center;}
.text-right {text-align: right;}
.text-left {text-align: left;}
.text-green {color: var(--tot-theme-secondary);}
.text-blue {color: var(--tot-theme-primary);}
.text-bold {font-weight: bold;}
.hidden {opacity: 0;}
.display-none {display: none;}
.display-block {display: block;}
.show-sm {display: none !important;}
.hidden-sm {display: block !important;}
/*#endregion */

/*#region ANIMATIONS */
header, button, a, nav ul, #hamburger-menuz, section#faq .faq-content, section#faq .faq-item.active i {
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

@keyframes scroll {
    0% { opacity: 0; }
    10% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0;}
}

/*#endregion */


/*#region MEDIA QUERIES */
@media only screen and (max-width: 1200px) {
    :root {
        --tot-header-height: 80px;
    }

    main section {
        padding: 20px 0;
    }

    nav img {
        width: 60px;
    }

    nav .btn {
        font-size: 12pt;
    }

    h1 {
        font-size: 3rem
    }
    h2 { 
        font-size: 2.2rem;
    }
    h3 {
        font-size: 1.rem;
    }

    #hero h1 {
        font-size: 3.6rem;
        padding-bottom: 0;
        line-height: 3.6rem;
    }
    #hero h2.headline {
        font-size: 1.8rem;
        letter-spacing: 6px;
    }
    #hero p {
        font-size: 1rem;
    }

    #hero #hero-text {
        grid-template-rows: 2fr repeat(3, 100px);
    }
    
    .wrapper, .wrapper-md, .wrapper-lg {
        padding: 40px;
    }

    button, .btn {
        padding: 14px 26px;
    }
}

@media only screen and (max-width: 1024px) {
    main section {
        padding: 70px 0 45px;
    }

    h4 {
        font-size: 1.4rem;
    }

    footer {
        margin-top: 30px;
        padding: 0 20px
    }

    footer .social-icons {
        margin-bottom: 10px;
    }

    section .wrapper-md:nth-last-child(1) {
        padding-top: 10px;
    }

    section#the-ultimate-tool img {
        max-width: 220px;
    }

    section#the-solution .solution-panels {
        margin-top: 60px;
    }

    section#contact-us {
        padding-bottom: 20px;
    }

    .wrapper, .wrapper-md, .wrapper-lg {
        padding: 20px 40px;
    }

    .grid-col {margin: 20px 0;}
    .grid-col.row-gap {row-gap: 2.5rem;}
    .gap-lg {gap: 40px; }
    .gap-md {gap: 25px;}
}

@media only screen and (max-width: 868px) {
    :root {
        --tot-header-height: 80px;
    }

    nav {
        padding: 0 20px
    }
    nav .btn i {
        margin-left: -2px;
    }

    label, input, textarea {
        text-align: left ;
    }

    h1, h2, h3, h4, h5, h6 {
        padding: 6px 0;
    }

    #hero h1 {
        font-size: 3.6rem;
        line-height: 3.6rem;
    }
    #hero #hero-text {
        grid-template-rows: 1fr 180px 80px;
        top: 0;
        align-items: center;
        padding: 0;
    }

    section#the-problem img {
        display: none;
    }

    section#the-solution .solution-icon {
        top: -25px;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    section#the-solution .grid-col > div {
        padding: 40px 20px 10px;
    }

    section#the-solution .solution-panels {
        margin-top: 40px;
    }

    section#the-transformation .grid-col > div.before-the-playbook {
        padding: 10px 10px 20px;
    }
    section#the-transformation .grid-col > div.after-the-playbook {
        padding: 20px 10px 10px;
    }

    section#the-transformation .versus-circle {
        display: none;
    }

    section#the-transformation ul {
        padding: 5px 10px;
    }

    section#faq {
        padding-bottom: 110px;
    }

    section#contact-us .contact-box {
        max-width: 1000px;
        width: auto;
        margin: 0 30px;
        padding: 60px 30px 40px;
        margin-top: -150px;
    }

    button, .btn {
        padding: 12px 20px;
    }

    .wrapper, .wrapper-md, .wrapper-lg {
        padding: 0 20px;
    }
    
    .grid-col {
        grid-template-columns: 1fr;
        text-align: center;
        margin: 30px 0;
        grid-auto-rows:unset;
    }
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        grid-column: unset;
    }
    .text-right {
        text-align: unset;
    }

    .show-sm {display: block !important;}
    .hidden-sm {display: none !important;}
}

@media only screen and (max-width: 576px) {
    :root {
        --tot-header-height: 70px;
    }

    header {
        padding: 0;
    }

    nav img {
        width: 50px;
    }

    main section {
        padding: 65px 0 40px;
    }

    h1 {
        font-size: 2.6rem;
        line-height: 2.6rem;
    }
    h1 span {
        top: -40px;
    }
    form {
        margin-top: -10px;
    }

    #hero {
        padding: 0 10px;
    }
    #hero h1 {
        font-size: 2.2rem;
        line-height: 2.6rem;
    }

    #hero #hero-text {
        grid-template-rows: 1fr 120px 60px;
    }

    #hero h2.headline {
        font-size: 1.3rem;
    }

    section .btn.section-cta {
        margin: 30px auto 0;
    }
    section .wrapper-md:nth-last-child(1) {
        padding-top: 0;
    }
    section#the-transformation .versus-circle h4 {
        font-size: 1.4rem;
    }

    section#faq {
        padding-bottom: 150px;
    }

    section#contact-us .contact-box {
        margin: 0 20px;
        padding: 60px 20px 30px;
        margin-top: -200px;
    }

    button, .btn {
        padding: 12px 16px;
        text-align: center;
        font-size: 1rem;
    }

    .grid-col {
        margin: 15px 0;
    }

    .gap-lg, .gap-md, .gap-sm {
        gap: 15px;
    }
}
/*#endregion */
