@import "bootstrap.css";
@import "main.css";

@font-face {
    font-family: 'Codec Pro Light';
    src: url('../fonts/CodecPro-Light.woff2') format('woff2'),
    url('../fonts/CodecPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Codec Pro Regular';
    src: url('../fonts/CodecPro-Regular.woff2') format('woff2'),
    url('../fonts/CodecPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Codec Pro Bold';
    src: url('../fonts/CodecPro-Bold.woff2') format('woff2'),
    url('../fonts/CodecPro-Bold.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Codec Pro Extra Bold';
    src: url('../fonts/CodecPro-ExtraBold.woff2') format('woff2'),
    url('../fonts/CodecPro-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


html {
    scroll-behavior: smooth;
}

:root {
    --font: "Codec Pro Regular", sans-serif;
    --color-main: #8B681B;
    --color-text: #000;
    --color-black: #000;
    --color-white: #fff;
    --transition: .3s ease-in-out;
}

a, a:hover, a:active, a:focus {
    text-decoration: none !important;
}

body {
    font-family: var(--font);
}

.lpButtonBig {
    height: 60px;
    background: var(--color-black);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
}

.lpButtonBig span {
    margin-left: 20px;
    transition: .5s ease-in-out;;
    position: relative;
    z-index: 1;
}

.lpButtonBig i {
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 20px;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.lpButtonBig:hover {
    background: var(--color-main);
    color: var(--color-white);
    transition: var(--transition);
}

.lpButtonBig:hover span {
    margin-left: -20px;
    transition: var(--transition);
}

.lpButtonBig:hover i {
    position: relative;
    margin-left: 10px;
    opacity: 1;
    visibility: visible;
    transition: .5s ease-in-out;
}

.lpMenu {

}

.lpMenu ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lpMenu ul li {
    list-style-type: none;
    position: relative;
}

.lpMenu ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 0 15px;
    font-size: 17px;
    font-weight: 400;
    color: var(--color-black);
    transition: var(--transition);
    position: relative;
}

.lpMenu ul li a::before {
    content: '';
    position: absolute;
    left: auto;
    bottom: 15px;
    right: 15px;
    height: 2px;
    width: 0;
    background: var(--color-black);
    transition: var(--transition);
}

.lpMenu ul li a:hover::before {
    width: calc(100% - 30px);
    left: 15px;
    right: auto;
}

.heroContentTitle {
    font-size: 25px;
    font-weight: 500;
}

.heroContentTitle2 {
    font-size: 60px;
    font-weight: bold;
}

.heroContentText {
    font-size: 18px;
    font-weight: 400;
}

.sectionHero {
    height: calc(100vh - 138.08px);
    display: flex;
    align-items: center;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.heroForm {
    background: rgba(139, 104, 27, 0.16);
    padding: 40px;
    border-radius: 40px;
}

.primaryButton {
    height: 60px;
    background: var(--color-black);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 60px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
}

.primaryButton:hover {
    background: var(--color-main);
    transition: var(--transition);
}

.primaryButton i {
    font-size: 20px;
    line-height: 20px;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.heroFormTitle {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
}

.heroFormText {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-top: 10px;
}

.inputText {
    width: 100%;
    margin-bottom: 15px;
    height: 60px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: rgb(139, 104, 27);
    border-radius: 60px;
    border: 2px solid var(--color-main);
}

.inputText::placeholder {
    color: var(--color-main);
}

.heroContent {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.heroContentImage {
    position: absolute;
    right: 0;
    bottom: 0;
}

.sectionAboutUsTitle {
    font-size: 40px;
    font-weight: bold;
}

.sectionAboutUsText {
    width: 80%;
    margin-top: 20px;
    font-size: 17px;
    font-weight: 500;
}

.videoArea {
    overflow: hidden;
    border-radius: 35px;
    border: 2px solid var(--color-main);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videoPlayButton {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    text-align: center;
    font-size: 15px;
    color: var(--color-white);
    cursor: pointer;
}

.videoPlayButtonText {
    margin-top: 35px;
}

.heroContentWhatsapp button {
    position: absolute;
    bottom: 50px;
    left: 0;
    color: var(--color-white);
    background: #00C92F;
    height: 60px;
    border-radius: 60px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    border: none;
}

.heroContentWhatsapp button img {
    margin-right: 15px;
}

.checkbox-wrapper-23 *,
.checkbox-wrapper-23 *:after,
.checkbox-wrapper-23 *:before {
    box-sizing: border-box;
}

.checkbox-wrapper-23 label {
    margin-right: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex: none;
}

.checkbox-wrapper-23 input {
    position: absolute;
    opacity: 0;
}

.checkbox-wrapper-23 input:checked + label svg path {
    stroke-dashoffset: 0;
}

.checkbox-wrapper-23 input:focus + label {
    transform: scale(1.03);
}

.checkbox-wrapper-23 input + label {
    display: block;
    border: 2px solid var(--color-main);
    width: var(--size);
    background: white;
    height: var(--size);
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s ease;
}

.checkbox-wrapper-23 input + label:active {
    transform: scale(1.05);
    border-radius: 12px;
}

.checkbox-wrapper-23 input + label svg {
    pointer-events: none;
    padding: 5%;
}

.checkbox-wrapper-23 input + label svg path {
    fill: none;
    stroke: var(--color-main);
    stroke-width: 4px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 101;
    transition: all 250ms cubic-bezier(1, 0, .37, .91);
}

.sectionAvantage {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.sectionAvantageContentTitle {
    font-size: 40px;
    font-weight: bold;
}

.sectionAvantageContentText {
    font-size: 18px;
    font-weight: 500;
}

.sectionAvantageContentList {
    margin-top: 75px;
}

.sectionAvantageContentList ul {
    padding-left: 25px;
    margin: 0;
}

.sectionAvantageContentList ul li {
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 500;
}


.sectionFaqTitle {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}

.sectionFaqText {
    font-size: 23px;
    font-weight: 400;
    text-align: center;
}

.accordion {
    width: 100%;
    margin: 0 auto;
}

.accordion-item {
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    background-color: #EDE5D5;
    border: none;
    outline: none;
    padding: 15px 30px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 550px;
    height: 60px;
    font-size: 17px;
    display: flex;
    align-items: center;
    font-weight: 500;

}

.accordion-header i {
    display: flex;
    font-size: 16px;
    line-height: 16px;
    margin-right: 15px;

}

.accordion-header:hover {
    background-color: #EFEFEF;
}

.accordion-content {
    padding-left: 45px;
    background-color: #EFEFEF;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 0 15px 15px;
    margin: 0;
}


.border-radius-30 {
    border-radius: 30px;
}

.border-radius-bottom-0 {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.color-active {
    background-color: #EFEFEF;
}

.sectionContactCopyright {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-black);
}

.sectionContactList a {
    display: block;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-black);
}

@media only screen and (max-width: 822px) {
    .lpLogo img {
        width: 100%;
    }

    .m-px-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .openMobileMenu i {
        font-size: 30px;
        line-height: 30px;
        display: flex;
        align-items: center;
    }

    .sectionHero {
        margin-top: 30px;
        height: auto;
    }

    .heroContentImage {
        position: relative;
    }

    .heroContentTitle2 {
        font-family: "Codec Pro Extra Bold", sans-serif;
        font-size: 35px;
    }

    .heroContentTitle {
        font-size: 17px;
    }

    .heroContentText {
        width: 60% !important;
        font-size: 20px;
    }


    .heroContentImage {
        position: absolute;
        right: -85px;
    }

    .heroContentImage img {
        width: 250px;
    }

    .heroContent {
        padding-left: 15px;
        height: 360px;
        align-content: flex-start;
        background-image: url(../images/herobg.png);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .formArea {
        position: absolute;
        top: 360px;


    }

    .heroForm {
        background: none;
    }

    .heroContentWhatsapp {
        position: absolute;
        transform: rotate(270deg) translateY(180%) translateX(-25%);
        z-index: 99;
        top: 50%;
        right: 0%;
    }

    .heroContentWhatsapp button {
        position: relative;
        bottom: 0;
        border-radius: 30px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .sectionHero {
        background-image: none !important;
        position: relative;
        height: 930px;
        border-bottom: 1px solid #e1e1e1;
    }

    .sectionHero .col-md-8 {
        overflow: hidden;
        padding: 0;
    }

    .heroFormTitle {
        font-family: "Codec Pro Extra Bold", sans-serif;
        font-size: 28px;
        text-align: left;
    }

    .heroForm {
        padding: 0;
        margin-top: 20px;
    }

    .heroForm .checkbox-wrapper-23 {
        font-size: 15px;
    }

    .heroFormText {
        font-size: 17px;
        text-align: left;
        margin-top: 5px;
    }

    .sectionAboutUs {
        margin-top: 50px;
    }

    .sectionAboutUsTitle {
        font-family: "Codec Pro Extra Bold", sans-serif;
        font-size: 28px;
        text-align: left;
    }

    .sectionAboutUsText {
        font-size: 15px;
        margin-top: 5px;
        width: 100%;
        font-weight: 600;
    }

    .videoArea {
        border-radius: 10px;
        margin-top: 30px;
    }

    .videoPlayButtonText {
        margin-top: 10px;
    }

    .sectionAvantageContentTitle {
        font-family: "Codec Pro Extra Bold", sans-serif;
        font-size: 28px;
        text-align: left;
    }

    .sectionAvantageContentText {
        font-size: 17px;
        margin-top: 5px;
    }

    .sectionAvantage {
        background-position: 35%;
    }

    .sectionAvantageContentList ul li {
        font-size: 17px;
        font-weight: bold;
    }

    .sectionFaq {
        margin-top: 50px;
    }

    .sectionFaqTitle {
        font-family: "Codec Pro Extra Bold", sans-serif;
        font-size: 28px;
        text-align: left;
    }

    .sectionFaqText {
        font-size: 15px;
        margin-top: 5px;
        text-align: left;
        width: 100%;
    }

    .accordion-header {
        padding: 15px 20px;
        font-size: 15px;
        font-family: "Codec Pro Extra Bold", sans-serif;

    }

    .accordion-header i {
        margin-right: 10px;
    }

    .sectionContactCopyright {
        font-size: 15px;
        font-weight: 500;
        text-align: center;
    }

    .sectionContactList {
        font-size: 15px;
        font-weight: 500;
        text-align: center;
    }

    .sectionContact {
        margin-bottom: 40px;
    }

    .mobileMenu {
        position: fixed;
        background: white;
        width: 250px;
        padding: 10px;
        border-radius: 10px;
        border: 1px solid var(--color-main);
        overflow: hidden;
        z-index: 100;
        top: 90px;
        right: 15px;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
        visibility: hidden;
        opacity: 0;
        transition: var(--transition);
    }

    .mobileMenu.active {
        visibility: visible;
        opacity: 1;
        transition: var(--transition);
    }

    .mobileMenu ul {
        display: block;
    }

    .mobileMenu ul li a {
        height: auto;
        padding: 10px 15px;
        text-align: left;
        display: block;
        font-size: 17px;
        font-family: "Codec Pro Bold", sans-serif;

    }
    .headerSticky{
        position: relative;
        width: 100%;
        top: 0;
        transition: top 0.3s;
        z-index: 9999;
        background: white;
    }
    .sticky {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 10px 0;
        transition: var(--transition);
    }
    .sectionAboutUs{
        scroll-margin-top: 115px;
    }
}
