:root {
    --base-font-size: 12px;
    --primary-background-color: #ffffff;
    --secondary-background-color: #e5e5e5;
    --shadow-color: #444444;
    --primary-font-color: #000000;
    --secondary-font-color: #222222;
    --action-color: #0071bc;
    --action-contrast-color: #ffffff;
    --action-secondary-color: #9f5600;
    --action-secondary-contrast-color: #ffffff;
    --highlight-color: #00a913;
    --footer-background-color: #333333;
    --footer-font-color: #ffffff;
     --dapta-chat-primary-color: #0071bc !important;
    --dapta-chat-user-message-background:  var(--action-color) !important;
    --dapta-chat-option-message-background: var(--action-color) !important;;
    --dapta-chat-user-message-color: var(--action-contrast-color) !important;
    --dapta-chat-icon-color: var(--action-contrast-color) !important;
    --dapta-chat-header-contrast-color: var(--action-contrast-color) !important;
  }

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Raleway', Helvetica, Arial, Lucida, sans-serif;
    transition: all 0.2s step-end;
}

.font-action-color {
    color: var(--action-color);
}

.max-width {
    width: 100%;
    max-width: 1180px;
}

.flex {
    display: flex;
}

.flex-grow {
    flex-grow: 1;
}

.flex-columns {
    flex-direction: column;
}

.flex-rows {
    flex-direction: row;
}

.flex-center-horizontal {
    justify-content: center;
}

.flex-top-vertical {
    align-items: flex-start;
}

.flex-center-vertical {
    align-items: center;
}

.flex-item-half-width {
    width: 50%;
}

.fit-height-to-content {
    height: fit-content;
}

.text-shadow {
    text-shadow: var(--shadow-color) 0.1rem 0.1rem 0.4rem;
}

html {
    font-size: var(--base-font-size);
    font-weight: 500;
}

body {
    background-color: var(--secondary-background-color);
    color: var(--primary-font-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.small-header {
    padding-top: 4rem;
}

a, a:link, a:visited, a:active {
    color: var(--action-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button,
a.button {
    display: inline-block;
    background-color: var(--action-color);
    color: var(--action-contrast-color);
    padding: 1rem;
    border-radius: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
}

button.secondary,
a.button.secondary {
    background-color: var(--action-secondary-color);
    color: var(--action-secondary-contrast-color);
}

button:hover,
a.button:hover {
    background-color: #000000;
    text-decoration: none;
}

body > * {
    width: 100%;
}

body > header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: var(--secondary-background-color);
    color: #4d4d4d;
    height: 8rem;
    display: flex;
    padding: 0 2rem;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (min-width: 1200px) {
    body > header    {
        padding: 0 4rem;
    }
}

body.small-header > header {
    height: 4rem;
}


body > header > #header-logo  {
    display: block;
    overflow: hidden;
    text-indent: -1000px;
    background: url(../img/logo.webp) 0 0 no-repeat;
    height: 5rem;
    width: 13rem;
    background-size: cover;
}

body.small-header > header > #header-logo {
    height: 3rem;
    width: 9rem;
}

body > header > nav {
    display: none;
    justify-content: right;
    align-items: center;
    gap: 2rem;
}

@media only screen and (min-width: 1200px) {
    body > header > nav   {
        display: flex;
    }
}

body.hamburger-menu-open > header > nav {
    display: flex;
    position: absolute;
    top: 8rem;
    left: 2rem;
    right: 2rem;
    background: var(--secondary-background-color);
    flex-direction: column;
    padding: 2rem 0;
    gap: 2rem;
}

body.hamburger-menu-open.small-header > header > nav {
    top: 4rem;
}

body > header > hamburger {
    display: flex;
    width: 1.9rem;
    height: 1.6rem;
    justify-content: space-between;
    flex-direction: column;
    cursor: pointer;
}

@media only screen and (min-width: 1200px) {
    body > header > hamburger  {
        display: none;
    }
}

body > header > hamburger > span {
    display: block;
    height: 0.3rem;
    width: 100%;
    background-color: var(--action-color);
}

body > header > hamburger:hover > span {
    background-color: var(--primary-font-color);
    transition: all 0.01s;
}

/* body.hamburger-menu-open > header > hamburger > span {
    background-color: var(--primary-font-color);
}

body.hamburger-menu-open > header > hamburger:hover > span {
    background-color: var(--action-color);
} */

body > header > nav > a {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    padding-top: 2rem;
    white-space: nowrap;
}

body.hamburger-menu-open > header > nav > a {
    padding-top: 0rem;
}

body.small-header > header> nav > a {
    padding-top: 0;
}

body > header > nav > a,
body > header > nav > a:link,
body > header > nav > a:visited,
body > header > nav > a:active {
    color: #4d4d4d;
}

body > header > nav > a:hover {
    color: #000000;
    text-decoration: none;  
}

body > header > nav > span {
    display: none;
    font-size: 1.5rem;
    line-height: 1rem;
}

body.hamburger-menu-open > header > nav > span {
    display: block;
}

body > header > nav > #header-menu-item-call-us {
    display: flex;
    flex-direction: column;
    text-align: right;
    padding-top: 0;
    font-size: 1.6rem;
}

body.small-header:not(.hamburger-menu-open) > header > nav > #header-menu-item-call-us {
    font-size: 1.1rem;
}

body > header > nav > #header-menu-item-call-us :first-child {
    color: var(--action-color);
    margin-bottom: -0.25rem;
}

body > header > nav > #header-menu-item-call-us :last-child {
    color: #000000;
}

body > header > nav > #header-menu-item-call-us:hover {
    animation: jiggle 0.3s infinite linear;
}

body > main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body > main > * {
    width: 100%;
}

body > main > #hero {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

body > main > #hero > div.background-image {
    background-image: url(../img/front-hero-1-800.webp);
    filter: brightness(0.65) contrast(125%) grayscale(0.75) sepia(0.25);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 145%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media only screen and (min-width: 800px) {
    body > main > #hero > div.background-image {
        background-image: url(../img/front-hero-1-1200.webp);
    }
}

@media only screen and (min-width: 1200px) {
    body > main > #hero > div.background-image {
        background-image: url(../img/front-hero-1.webp);
    }
}

body > main > #hero > div:nth-child(2) {
    gap: 3rem;
    align-items: center;
    flex-direction: column;
    padding: 0 2rem;
}

@media only screen and (min-width: 800px) {
    body > main > #hero > div:nth-child(2) {
        padding: 0 8rem;
    }
}

@media only screen and (min-width: 1200px) {
    body > main > #hero > div:nth-child(2) {
        flex-direction: row;
        gap: 6rem;
        padding: 0;
    }
}

body > main > #hero > div:nth-child(2) > div:nth-child(1) {
    color: #ffffff;
    width: 100%;
}

@media only screen and (min-width: 1200px) {
    body > main > #hero > div:nth-child(2) > div:nth-child(1) {
        width: 50%;
    }
}

body > main > #hero > div:nth-child(2) > div:nth-child(1) > h1 {
    font-size: 2.75rem;
    font-weight: 800;
}

body > main > #hero > div:nth-child(2) > div:nth-child(1) > p:nth-of-type(1) {
    margin-top: 1.5rem;
    font-size: 1.8rem;
    font-weight: 500;
}

body > main > #hero > div:nth-child(2) > div:nth-child(2) {
    width: 100%;
}

@media only screen and (min-width: 1200px) {
    body > main > #hero > div:nth-child(2) > div:nth-child(2) {
        width: 50%;
    }
}

body > main > #hero > div:nth-child(2) > div:nth-child(2) > #curious-form {
    background-color: var(--primary-background-color);
    padding: 2rem;
}

body > main > #hero > div:nth-child(2) > div:nth-child(2) > #curious-form > h2 {
    font-size: 1.75rem;
    font-weight: 800;
}

body > main > #hero > div:nth-child(2) > div:nth-child(2) > #curious-form > p:nth-of-type(1),
body > main > #hero > div:nth-child(2) > div:nth-child(2) > #curious-form > p:nth-of-type(2) {
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

body > main > #hero > div:nth-child(2) > div:nth-child(2) > #curious-form > p:nth-of-type(3) {
    margin-top: 2rem;
}

body > main > #hero > div:nth-child(2) > div:nth-child(2) > #curious-form > form {
    margin-top: 2rem;
}

body > main > #hero > div:nth-child(2) > div:nth-child(2) > #curious-form > form input {
    box-shadow: var(--shadow-color) 0.1rem 0.1rem 0.25rem;
    line-height: 3rem;
    padding-left: 1rem;
    background-color: var(--secondary-background-color);
}

body > main > #hero > div:nth-child(2) > div:nth-child(2) > #curious-form > form > div:nth-child(2) > input {
    width: 50%;
}

body > main > #hero > div:nth-child(2) > div:nth-child(2) > #curious-form > form .cf-turnstile {
    margin-top: 1rem;
    min-height: 65px;
}

body > main > #hero > div:nth-child(2) > div:nth-child(2) > #curious-form > form button {
    margin-top: 2rem;
    width: 100%;
    font-size: 1.1rem;
}

body > main > #pitch-1 {
    padding: 4rem 2rem;
    gap: 3rem;
}

@media only screen and (min-width: 800px) {
    body > main > #pitch-1 {
        padding: 6rem 8rem;
    }
}

@media only screen and (min-width: 1200px) {
    body > main > #pitch-1 {
        padding: 8rem 0;
        gap: 6rem;
    }
}

body > main > #pitch-1 > h2 {
    color: var(--action-color);
    font-size: 2.25rem;
    line-height: 3.25rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

body > main > #pitch-1 > div {
    gap: 2rem;
    flex-direction: column;
}

@media only screen and (min-width: 1200px) {
    body > main > #pitch-1 > div {
        gap: 6rem;
        flex-direction: row;
    }
}

body > main > #pitch-1 > div > div:nth-child(1) {
    font-size: 1.5rem;
    line-height: 2.5rem;
    width: 100%;
}

@media only screen and (min-width: 1200px) {
    body > main > #pitch-1 > div > div:nth-child(1) {
        width: 50%;
    }
}

body > main > #pitch-1 > div > div:nth-child(1) > p:nth-child(2) {
    margin-top: 1rem;
}

body > main > #pitch-1 > div > div:nth-child(2) {
    font-size: 1.5rem;
    width: 100%;
}

@media only screen and (min-width: 1200px) {
    body > main > #pitch-1 > div > div:nth-child(2) {
        width: 50%;
    }
}

body > main > #pitch-1 > div > div:nth-child(2) > ul > li {
    list-style-type: none;
    font-weight: 700;
    font-size: 1.65rem;
    color: var(--secondary-font-color);
    display: flex;
    align-items: center;
}

body > main > #pitch-1 > div > div:nth-child(2) > ul > li > span:nth-child(1) {
    color: var(--highlight-color);
    font-size: 2.25rem;
    margin-right: 1.25rem;
}

body > main > #pitch-1 > div > div:nth-child(2) > a.button {
    margin-top: 2rem;
    font-size: 1.25rem;
}

body > main > #pitch-2 {
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

@media only screen and (min-width: 800px) {
    body > main > #pitch-2 {
        padding: 4rem 0;
    }
}

body > main > #pitch-2 > div.background-image {
    background-image: url(../img/pitch-2-800.webp); 
    filter: brightness(0.65) contrast(125%) grayscale(0.75) sepia(0.25);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 145%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media only screen and (min-width: 800px) {
    body > main > #pitch-2 > div.background-image {
        background-image: url(../img/pitch-2-1200.webp);
    }
}

@media only screen and (min-width: 1200px) {
    body > main > #pitch-2 > div.background-image {
        background-image: url(../img/pitch-2.webp);
    }
}

body > main > #pitch-2 > div:nth-child(2) {
    background-color: rgba(0,113,188,0.75);
    color: var(--action-contrast-color);
    padding: 2.5rem;
    max-width: 55rem;
}

body > main > #pitch-2 > div:nth-child(2) > h2 {
    font-size: 1.75rem;
    text-transform: uppercase;
}

body > main > #pitch-2 > div:nth-child(2) > p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

body > main > #pitch-2 > div:nth-child(2) > a.button {
    margin-top: 2rem;
    font-size: 1.25rem;
}

body > main > #pitch-3  {
    padding: 4rem 2rem;
    gap: 3rem;
}

@media only screen and (min-width: 800px) {
    body > main > #pitch-3  {
        padding: 8rem 4rem;
    }
}

@media only screen and (min-width: 1200px) {
    body > main > #pitch-3  {
        padding: 8rem 4rem;
    }
}

body > main > #pitch-3 > h2 {
    color: var(--action-color);
    font-size: 2.25rem;
    line-height: 3.25rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

body > main > #pitch-3 > div  {
    flex-wrap: wrap;
    gap: 2rem 0;
}

@media only screen and (min-width: 1200px) {
    body > main > #pitch-3 > div  {
        gap: 3rem 0;
    }
}

@media only screen and (min-width: 1200px) {
    body > main > #pitch-3 > div  {
        flex-wrap: unset;
        gap: 4rem;
    }
}

body > main > #pitch-3 > div >  div {
    flex: 100%;
    justify-content: center;
}

@media only screen and (min-width: 800px) {
    body > main > #pitch-3 > div >  div {
        flex: 50%;
    }
}

@media only screen and (min-width: 1200px) {
    body > main > #pitch-3 > div >  div {
        flex: 1 1 0;
        justify-content: unset;
    }
}

body > main > #pitch-3 > div >  div > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body > main > #pitch-3 > div >  div > div > span:nth-child(1) {
    font-size: 7rem;
    line-height: 7rem;
}

body > main > #pitch-3 > div >  div > div > span:nth-child(2) {
    font-size: 2rem;
    color: var(--action-color);
    text-transform: uppercase;
    font-weight: 700;
}

body > main > #pitch-3 > div >  div > div > span:nth-child(3) {
    font-size: 3rem;
    color: var(--shadow-color);
    font-weight: 700;
    text-shadow: var(--shadow-color) 0.1rem 0.1rem 0.25rem;
    letter-spacing: 0.15rem;
}

body > main > #pitch-3 > div > div > div > span:nth-child(4) {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.75rem;
    margin-top: 0.5rem;
    text-align: center;
}

body > main > #pitch-3 > div > div > div > span:nth-child(3) > b { 
    color: var(--highlight-color);
}

body > main > #pitch-3 > a.button { 
    font-size: 1.25rem;
}

body > main > #testimonial { 
    background-color: var(--secondary-background-color);
    padding: 4rem 2rem;
    gap: 4rem;
}

@media only screen and (min-width: 800px) {
    body > main > #testimonial  {
        padding: 6rem 4rem;
    }
}

@media only screen and (min-width: 1200px) {
    body > main > #testimonial  {
        padding: 8rem;
    }
}

body > main > #testimonial > h2 {
    color: var(--action-color);
    font-size: 2.25rem;
    line-height: 3.25rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}


body > main > #testimonial > div  {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
}

@media only screen and (min-width: 800px) {
    body > main > #testimonial > div  {
        flex-direction: row;
        align-items: unset;
        gap: unset;
    }
}

body > main > #testimonial > div > video  {
    max-width: 15rem;
    filter: brightness(0.65) contrast(125%) grayscale(0.75) sepia(0.25)
}

body > main > #testimonial > div > div  {
    padding: 3rem;
    background-color: var(--primary-background-color);
    max-width: 30rem;
}

body > main > #testimonial > div > div > span:nth-child(1) {
    color: var(--action-color);
    font-weight: 600;
    font-size: 1.5rem;
}

body > main > #testimonial > div > div > span:nth-child(1) {
    color: var(--action-color);
    font-weight: 600;
    font-size: 1.5rem;
}

body > main > #testimonial > div > div > span:nth-child(2) {
    margin-top: 1.5rem;
    font-size: 1.25rem;
}

body > main > #testimonial > div > div > span:nth-child(1) {
    color: var(--action-color);
    font-weight: 600;
    font-size: 1.5rem;
}

body > main > #testimonial > div.playing > video  {
    max-width: 25rem;
    filter: none;
}

body > main > #testimonial > div.playing > div {
    display: none;
}

body > footer {
    background-color: var(--footer-background-color);
    color: var(--footer-font-color);
    padding: 4rem;
}

body > footer > div {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media only screen and (min-width: 1200px) {
    body > footer > div {
        flex-direction: row;
        align-items: unset;
        gap: unset;
    }
}

body > footer > div > #footer-logo  {
    display: block;
    overflow: hidden;
    text-indent: -1000px;
    background: url(../img/logo.webp) 0 0 no-repeat;
    height: 6rem;
    width: 15rem;
    background-size: cover;
    filter: brightness(100);
}

body > footer > div > div{
    gap: 1rem;
}

@media only screen and (min-width: 1200px) {
    body > footer > div > div{
        gap: 1rem;
    }
}

body > footer > div > div > div:nth-child(1) {
    gap: 1rem;
    justify-content: flex-end;
    font-weight: 600;
    align-items: center;
    flex-direction: column;
    margin-bottom: 1rem;
}

@media only screen and (min-width: 800px) {
    body > footer > div > div > div:nth-child(1) {
        flex-direction: row;
        gap: 2rem;
    }
}

body > footer > div > div > div:nth-child(1) > a {
    color: var(--footer-font-color) !important;
    font-size: 1.25rem;
    text-transform: uppercase;
}

body > footer > div > div > div:nth-child(1) > a.icon {
    background-size: cover;
    height: 3rem;
    width: 3rem;
    display: block;
    overflow: hidden;
    text-indent: -1000px;
}

body > footer > div > div > div:nth-child(2) {
    gap: 1rem;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
}

@media only screen and (min-width: 800px) {
    body > footer > div > div > div:nth-child(2) {
        gap: 2rem;
        flex-direction: row;
        align-items: unset;
    }
}

body > footer > div > div > div:nth-child(2) > a {
    color: var(--footer-font-color) !important;
    font-size: 1.25rem;
}

.dapta-chatbot-button {
    bottom: 1rem !important;
    right: 1rem !important;
}

@media only screen and (min-width: 1200px) {
    .dapta-chatbot-button {
        bottom: 2rem !important;
        right: 2rem !important;
    }
}

/* .dapta-option-message {
    color: #000000 !important;
} */

@keyframes jiggle {
    0% {transform: rotate(0deg);}
    50% {transform: rotate(2deg);}
    100% {transform: rotate(-2deg);}
}