/* Reset */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

* {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@media (-webkit-device-pixel-ratio: 1.25) {
    * {
        zoom: 0.97;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000 !important;
    overflow-x: hidden !important;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    color: #fff;
}

button {
    font-weight: 500;
    transition: background ease 0.5s;
    border: 1px solid #fff;
}

h1 {
    font-size: 3.125rem;
}

h2 {
    font-size: 1.875rem;
}

/* Scrollbar */
/* width */
::-webkit-scrollbar {
    width: .8rem;
}

/* Track */
::-webkit-scrollbar-track {
    background: #0F1017;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #EEB037;
    border-radius: 30px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #EEB037;
}

.dropdown-menu.show {
    display: block;
    background: #292928;
    border-radius: 20px;
    border: 1px solid #EEB037;
    color: #fff;
    left: -115px;
    top: 50px;
}

a.dropdown-item {
    display: block;
    background-color: transparent !important;
    color: #fff;
}

a.dropdown-item:hover {
    color: #EEB037 !important;
}

.login-icon{
    background: #2265d4;
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.login-icon a{
    align-items: center;
}

.login-icon img {
    height: 20px;
}

.user .login-icon {
    display: flex;
    align-items: center !important;
    justify-content: center;
    cursor: pointer;
}

#btnTrial {
    color: #000 !important;
}


button {
    border: 1px solid #000;
    border-radius: 50px;
    background: none;
    width: fit-content;
    padding: 0.7rem 2rem;
}

.btn-primary {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 20px;
}

.btn-primary:hover {
    background-color: #EEB037;
    border: none;
}

.btn-cta {
    background: #EEB037;
    border-radius: 20px;
    color: #000;
    justify-content: center !important;
}

.btn-cta:hover {
    background: transparent;
    border: 1px solid #EEB037;
    border-radius: 20px;
    color: #fff;
}

/* Header */
.dropdown-toggle::after {
    display: none;
}

.text-decoration-none {
    text-decoration: none !important;
}

/* Font Awesome Icons have variable width. Added fixed width to fix that.*/
.icon-width {
    width: 2rem;
}

.navbar-brand img {
    width: 80px;
    height: auto;
}

.user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user p {
    margin: 0;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 0.3rem 1rem;
}

.profile {
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 0.3rem 1rem;
    gap: 0.7rem;
}

.navbar {
    background-color: #000 !important;
    color: #fff;
    box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.5);
}

.nav-item a {
    color: #fff;
}

.nav-item a {
    text-decoration: none;
    color: unset;
    transition: color 0.2s;
    position: relative;
}

.nav-item a:hover {
    color: #fff;
}

.nav-item a:hover::after {
    width: 100%;
}

.nav-item a::after {
    content: "";
    width: 0%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    transition: width 0.2s;
}

.navbar-collapse {
    justify-content: space-between;
}

.navbar-nav {
    gap: 1rem;
    padding-left: 0;
    padding-top: 0;
}

.mob-only {
    display: none !important;
}

@media (max-width:768px) {
    .account {
        display: none;
    }

    .navbar-collapse {
        justify-content: center !important;
    }

    .navbar-nav {
        gap: 1rem;
        padding-left: 2rem;
        padding-top: 1rem;
        text-align: center;
        display: none;
    }

    .navbar-toggler {
        display: flex;
        align-items: center;
    }

    .profile {
        display: none;
    }

    .user a {
        width: 100%;
        text-align: center;
    }

    .user {
        display: none;
        padding-top: 2rem;
    }

    .user p {
        border-radius: 5px;
    }

    .mob-trial {
        display: block !important;
    }

    .mob-only {
        display: flex !important;
    }

    .desk-only {
        display: none !important;
    }
    .navbar-brand img {
        padding-left: 1rem;
        margin-left: 20px;
        width: 80px;
    }
    .toggle_user {
        border: none !important;
        border-radius: 50px;
        padding: 0 !important;
    }
}

.navbar-toggler i {
    color: #fff;
    font-size: 2rem;
}

.desk-only {
    display: block;
}

.mob-trial {
    display: none;
}

/* Header Mobile */
.header_mobile {
    position: fixed;
    bottom: 0;
    width: 100vw;
    z-index: 10;
    background-color: #030708;
}

.header_mobile ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100;
    margin: 0;
    padding: 1rem;
}

.header_mobile>ul>a>li>i {
    font-size: 1.4rem;
}

.banner_mobile {
    display: none;
}

@media (max-width:600px) {
    .banner_mobile {
        display: block;
    }
}

.banner_mobile {
    background-color: #1D1D1D;
}


.sec1_info_mobile img {
    width: 120px;
}

.sec1_info_mobile {
    align-items: center;
    padding: 1rem !important;
}

.sec1_info_mobile h3 {
    color: #fff;
    text-align: center;
    font-weight: 300;
    font-size: 1.5rem !important;
}

.sec1_content_mobile {
    padding: 0;
    display: flex !important;
    flex-direction: column;
    justify-content: space-evenly !important;
}

.sec1_img_mobile {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    justify-content: center;
    height: 60vh;
    border-top-right-radius: 30px;
    align-items: center;
    gap: 1rem;
    border-top-left-radius: 30px;
}

.sec1_img_mobile img {
    width: 200px !important;
}

.sec1_img_mobile p {
    margin: 0;
    text-align: center;
    font-weight: 300;
}

.sec1_img_mobile button {
    color: #000;
}

.sec1_content {
    padding: 6rem;
    padding-bottom: 0 !important;
}

.sec1_info {
    display: flex;
    flex-direction: column;
    gap: 2rem;

}

.sec1_info h1 {
    color: #EEB037;
    font-size: 3.125rem;
}

.sec1_info h2 {
    color: #fff;
    font-size: 1.875rem;
}

.sec1_info button {

    background-color: #EEB037;
    border: none;
    color: #000;
    padding: 0.6rem 5rem;
}


.sec1_info button {
    color: #000;
}

.sec1_info2 img {
    opacity: 0.8;
    position: absolute;
    width: 50%;
    bottom: 0;
    right: 280px;
}

@media (max-width: 600px) {
    .reasons h1 {
        color: #eeb037 !important;
        font-size: 1.8rem;
        justify-content: center !important;
        padding-bottom: .5rem !important;
        margin-bottom: 0 !important;
    }
    .reasons h2 {
        color: #ffffff;
        font-size: .9rem;
        font-weight: 400;
        text-align: center;
        padding: 0 2rem 1rem 2rem;
        line-height: 23px;
    }
    .fixed-top {
        position: unset !important;
    }

    .sec1_content {
        align-content: space-evenly;
        grid-template-columns: 1fr;
    }

    .sec1_img img {
        width: 300px;
    }

    .sec1_info {
        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .sec1_info h1 {
        font-size: 2.2rem;
    }

    .sec1_info h3 {
        font-size: 1.2rem;
    }

}

/* Section 2 - Answers*/
.answers_container {
    background: linear-gradient(to left, #030708 50%, #D9D9D9 50%);

}

.answers {
    display: grid;
    height: 100vh;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.sec2_content1 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.carousel-item h2 {
    color: #fff !important;
}

.sec2_content1 h1,
.sec2_content1 h3,
.sec2_content1 button {
    color: #000;
}

.sec2_content2 {
    padding: 2rem;
}

.sec2_content1_mobile h1,
.sec2_content1_mobile h3,
.sec2_content1_mobile button {
    color: #fff;
}

.sec2_content1_mobile button {
    border: 1px solid #fff;
}

.sec2_content1_mobile {
    padding: 2rem;
}



@media (max-width:600px) {
    .carousel-item h2 {
        color: #000 !important;
    }

    .carousel-indicators [data-bs-target] {
        background-color: #000 !important;
    }

    .answers_container {
        background: linear-gradient(to top, #fff 50%, #1D1D1D 50%);
    }

    .answers {
        display: grid;
        height: 100vh;
        grid-template-columns: 1fr;
        align-items: center;
        align-content: stretch;
    }

    .sec2_content1 h1 {
        font-size: 2rem;
    }
}

/* =========== Grid ============== */
.content-grid button {
    background-color: #EEB037;
    border: none;
    color: #000;
    padding: 0.6rem 5rem;
}

.content-grid {
    background-image: url("/assets/img/svg/bg-reasons.svg");
    background-size: cover;
    height: 100vh;
    display: grid;
}

.content-grid .six_reasons {
    color: #fff !important;
    text-align: center;
    margin-top: 50px !important;
}

.grid {
    display: grid;
    margin: 0 auto;
    width: 100%;
}

.item {
    background: #323231;
    border-radius: 20px;
    text-align: center;
    font-size: 1.5em;
    font-weight: bolder;
    color: #d1d1d1;
}

.card-report {
    /* background-color: #2075e4; */
    height: 70vh;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 10px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.a {
    /* padding: 30px; */
    grid-column: 1 / span 2;
}

.bg-custom1 {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#303030+0,323231+100,323231+100&0.71+0,1+62 */
    background: -moz-linear-gradient(left, rgba(48, 48, 48, 0.71) 0%, rgba(49, 49, 49, 1) 62%, rgba(50, 50, 49, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(48, 48, 48, 0.71) 0%, rgba(49, 49, 49, 1) 62%, rgba(50, 50, 49, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(48, 48, 48, 0.71) 0%, rgba(49, 49, 49, 1) 62%, rgba(50, 50, 49, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b5303030', endColorstr='#323231', GradientType=1);
    /* IE6-9 */

}

.b {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.bg-custom2 {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#303030+0,303030+97&1+0,0.71+100 */
    background: -moz-linear-gradient(-45deg, rgba(48, 48, 48, 1) 0%, rgba(48, 48, 48, 0.72) 97%, rgba(48, 48, 48, 0.71) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(48, 48, 48, 1) 0%, rgba(48, 48, 48, 0.72) 97%, rgba(48, 48, 48, 0.71) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(48, 48, 48, 1) 0%, rgba(48, 48, 48, 0.72) 97%, rgba(48, 48, 48, 0.71) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#303030', endColorstr='#b5303030', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

.c {
    /* padding: 60px; */
    grid-column: 1;
    grid-row: 2;
}

.d {
    grid-column: 2;
    grid-row: 2;
}

.e {
    /* padding: 30px; */
    grid-column: 1 / span 2;
}

.f {
    grid-column: 3 / span 1;
    /* grid-row: 2 / span 2 ; */
}

/* Section 3 - Personalize */
.personalize {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 600px;
    align-items: center;
}

.sec2_info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sec2_info_mobile {
    align-items: center;
}

.sec2_info_mobile h1,
.sec2_info_mobile h3 {
    text-align: center;
}

.sec2_info button {
    color: #000;
}

.sec2_cards {
    display: flex;
    gap: 1.3rem;
    flex-wrap: wrap;
}

.sec2_cards .card1 {
    margin-top: 20px;
}

.sec2_cards .card2 {
    margin-top: -20px;
}

.sec2_cards .card3 {
    margin-top: 20px;
}

.sec2_cards .card4 {
    margin-top: -20px;
}

@media (max-width:600px) {
    .personalize {
        height: 100vh;
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        align-content: space-evenly;
        padding: 1rem;
    }

    .sec2_info h1 {
        font-size: 2rem;
    }

    .sec2_info h3 {
        font-size: 1.2rem;
    }

    .sec2_cards img {
        width: 100%;
    }
}

/* Section 4 - Notes */
.notes {
    background: #1D1D1D;
}

.sec3_content {
    height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.sec3_info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sec3_info_mobile {
    align-items: center;
}

.sec3_info_mobile h1,
.sec3_info_mobile h3 {
    text-align: center;
}

.sec3_info h1,
.sec3_info h3,
.sec3_info button {
    color: #fff !important;
}

.sec3_info button {
    border: 1px solid #fff;
}

.sec3_img img {
    width: 100%;
}

@media (max-width:600px) {
    .sec3_content {
        height: unset;
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        align-content: space-evenly;
        padding: 2rem;
    }

    .sec3_info h1 {
        font-size: 2rem;
    }

    .sec3_img img {
        width: 100%;
    }

    .sec3_info h3 {
        font-size: 1.2rem;

    }
}

/* Section 5 - Wishes*/
.wishes {
    height: 100vh;
    display: grid;
    gap: 2rem;
    align-content: center;
}

.sec4_content {
    align-content: space-around;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.sec4_info h3 {
    text-align: left;
}

.sec4_info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sec4_info button {
    color: #000;
}

@media (max-width:768px) {
    .wishes {
        height: 100vh;
        display: grid;
        gap: 2rem;
        padding: 2rem;
        align-content: center;
    }

    .sec4_info {
        align-items: center;
    }

    .sec4_img {
        display: flex;
        justify-content: center;
    }

    .sec4_img img {
        width: 80% !important;
    }

    .wishes_info h3 {
        font-size: 1.2rem;
    }

    .sec4_content {
        align-content: space-around;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        align-items: center;
    }

    .wishes_info h1 {
        font-size: 2rem;
    }

    .sec4_info h3 {
        text-align: center;
        font-size: 1.2rem;
    }
}


/* Section 5 - Cards */
.cards_section {
    background: rgb(29, 29, 29);
    background: linear-gradient(90deg, rgba(29, 29, 29, 1) 0%, rgba(83, 80, 80, 1) 100%);
}

.cards {
    height: 100vh;
    text-align: center;
    display: grid;
    gap: 3rem;
    justify-items: center;
    align-content: center;
}

.cards h1,
.cards h5 {
    color: #fff !important;

}

.cards h5 {
    margin: 0;
    padding: 0;
}

.sec5_cards {
    display: flex;
    gap: 1rem;
}

.sec5_cards h1 {
    font-size: 4rem;

}

.cards button {
    color: #fff !important;
}

.card {
    background-color: #F3EDE4;
    box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.5);
    padding: 1rem;
    width: 250px;
    height: 250px;
    border: none;
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.card h1 {
    text-align: left;
    color: #202022 !important;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
}

.card h3 {
    font-size: 1rem;
}

@media (max-width:600px) {
    .cards {
        height: 100vh;
        text-align: center;
        display: contents;
        gap: 3rem;
        display: flex;
        flex-direction: column;
        justify-items: center;
        align-content: center;
        align-items: center;
        justify-content: center;
    }

    .card {
        background-color: #F3EDE4;
        box-shadow: 0px 12px 24px -12px rgb(0 0 0 / 50%);
        -webkit-box-shadow: 0px 12px 24px -12px rgb(0 0 0 / 50%);
        padding: 1rem;
        width: auto;
        height: 200px;
        border: none;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .sec5_cards {
        display: grid;
        gap: 1rem;
        flex-wrap: wrap;
        grid-template-columns: 1fr 1fr;
    }

    .cards h1 {
        font-size: 2rem;
    }
}

/* Section 6 - Faq */
.sec6_cards {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.faq_section {
    background: url(/assets/img/website/faq_desk_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.faq {
    height: 100vh;
    text-align: center;
    display: grid;
    gap: 2rem;
    justify-items: center;

    align-content: center;

}

.faq_card {
    background-color: #F3EDE4;
    box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.5);
    padding: 1rem;
    width: 300px;
    height: 200px;
    border: none;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.faq h1 {
    /* font-size: 3rem; */
    font-weight: 900 !important;
    color: #030708 !important;
}

.faq_card h3 {
    font-size: 1rem;
    width: 100%;
}

.faq_card h1 {
    text-align: center;
    color: #202022 !important;
}

.faq button {
    color: #000 !important;
}

@media (max-width:600px) {
    .faq {
        height: 100vh;
        text-align: center;
        display: contents;
        gap: 3rem;
        background: url(/assets/img/website/faq_bg.png);
        display: flex;
        flex-direction: column;
        justify-items: center;
        align-content: center;
        align-items: center;
        justify-content: center;
    }

    .faq_badge h2 {
        font-size: 1rem !important;
    }

    .faq_card {
        background-color: #F3EDE4;
        box-shadow: 0px 12px 24px -12px rgb(0 0 0 / 50%);
        -webkit-box-shadow: 0px 12px 24px -12px rgb(0 0 0 / 50%);
        padding: 1rem;
        width: auto;
        height: 200px;
        border: none;
        border-radius: 30px;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .sec6_cards {
        display: grid;
        gap: 1rem;
        flex-wrap: wrap;
        grid-template-columns: 1fr 1fr;
    }

    .faq h1 {
        font-size: 2rem;
    }

    .fat_toggle {
        background: #303030;
        padding: 3rem 1rem !important;
        padding-top: 3rem !important;
        display: flex;
        flex-direction: column;
        gap: 1rem !important;
        width: auto !important;
        border-radius: 35px;
    }

    .toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #ccc;
        gap: 3rem;
    }

    .toggle h3 {
        color: #fff;
        margin: 0 !important;
        font-size: 1rem !important;
        word-break: break-word;
        text-align: left;
    }
}


.faq_badge h2 {
    color: #fff;
}

.faq_badge {
    background: #303030;
    border-radius: 35px;
    padding: 1.3rem 2rem;
    box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.5);
    margin-bottom: -4rem;
    z-index: 4;
}

.fat_toggle {
    background: #303030;
    padding: 2rem 3rem;
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 80%;
    border-radius: 35px;
}

.toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle h3 {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
}

.toggle i {
    color: #2EE310;
    font-size: 1.5rem;
}

/* Section 7  */
.contact_container {
    display: grid;
    position: relative;
    height: 100vh;
    gap: 2rem;
    align-content: center;
    background: rgb(29, 29, 29);
    background: linear-gradient(90deg, rgba(29, 29, 29, 1) 0%, rgba(83, 80, 80, 1) 100%);
}

.sec7_info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sec7_info h1,
.sec7_info h3,
button {
    color: #fff;
}

.sec7_info button {
    border: 1px solid #fff;
}

.sec7_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.sec7_video {
    display: flex;
    justify-content: center;
}


.sec7_banner button {
    background-color: #eeb037;
    color: #000;
    font-weight: 400;
    padding: 1rem 2rem;
    border-radius: 15px;
    border: none;
    box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.5);
}

.banner_info {
    color: #000;
}

/* =======
    INTEGRATIONS PARTNERS
    ============== */

.integration-partners {
    width: 100%;
    background: #353535 !important;
    justify-content: center !important;
}

.partners {
    display: flex !important;
    justify-content: center !important;
}

.partners .partners-grid1 .partners .partners-grid2 {
    display: grid !important;
}

.partners>img {
    padding-right: 10rem;
    flex-direction: row;
    justify-content: space-around !important;
}

.partners .logo1 {
    height: 30px;
}

.partners .logo2,
.partners .logo3,
.partners .logo4 {
    height: 40px !important;
}
@media (min-width: 1200px) {
    .container {
        max-width: 1120px;;
    }
}
@media (max-width: 1400px) {
    
    .integration-partners {
        width: 100%;
        background: #353535 !important;
        justify-content: center !important;
    }

    .partners .partners-grid1 .partners .partners-grid2 {
        display: grid !important;
    }

    .partners>img {
        padding-right: 5rem;
        flex-direction: row !important;
        gap: 30px !important;
        justify-content: space-around !important;
    }

    .partners .logo1 {
        height: 10px;
    }

    .partners .logo2,
    .partners .logo3,
    .partners .logo4 {
        height: 20px !important;
    }

}

@media (max-width:600px) {
    .integration-partners {
        display: flex !important;
        flex-direction: row !important;
    }

    .partners {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .partners-grid1 {
        display: flex !important;
        padding-bottom: 20px;
        gap: 50px !important;
    }

    .partners-grid1>img {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
    }

    .partners-grid2 {
        display: flex !important;
        padding-left: 60px;
        gap: 50px !important;
    }

    .partners-grid2>img {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
    }

    .partners>img {
        height: 30px;
        margin: 10px;
    }

    .partners .logo1 {
        height: 20px;
    }

    .partners .logo2,
    .partners .logo3,
    .partners .logo4 {
        height: 30px;
    }
}


@media (max-width:600px) {
    .contact {
        padding: 2rem;
    }

    .sec7_content {
        display: grid;
        gap: 2rem;
        grid-template-columns: 1fr;
        align-items: center;
    }

    .sec7_info {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .sec7_info h1 {
        font-size: 2rem;
    }

    .sec7_info h3 {
        font-size: 1.2rem;
    }

    .sec7_video img {
        width: 100%;
    }

    .sec7_banner {
        display: block !important;
        width: inherit !important;
    }

    .banner_info h1 {
        font-size: 2.2rem;
    }

    .sec7_banner button {
        width: 100%;
    }

    .contact_container {
        height: 100vh;
    }
}


/* Section 8 - Contact */
.footer_container {
    position: relative;
    padding-top: 10rem;
    background: #000;
}

.sec7_banner {
    position: absolute;

}

.footer {
    height: 40vh !important;
}

.footer_info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.cx1 b {
    color: #EEB037 !important;
}

.cx2 b {
    color: #EEB037;
}

.cx3 b {
    color: #EEB037;
}

.cx3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cx3 button {
    border: 1px solid #000;
    padding: 1rem 4rem;
    color: #000;
}

.cx4 p {
    font-weight: 300;
    margin-bottom: 0;
    color: #fff;
}

.footer_info2 {
    display: flex;
    justify-content: space-between;
    align-items: center !important;
}

.cx5 {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hr-custom {
    border: 1px solid #EEB037;
    opacity: 1;
}

.cx5 i,
.cx5 p {
    font-size: 1.5rem;
    color: #fff;
    align-items: center !important;

}

.footer_info3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.links_footer {
    display: flex;
    gap: 1rem;
}

.links_footer a {
    color: #fff !important;
}

.footer_info ul li {
    list-style: none;
    line-height: 2rem;
}

.footer_info ul a {
    color: #ffffff !important;
    font-weight: 300;
}

.logo-footer img {
    height: 40px;
}

.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    border-radius: 5px;
    height: 30px;
    background-color: #EEB037;
    width: 30px;
    font-size: 2rem;
    line-height: 0;
    color: #000;
    transition: 0.3s;
    z-index: 19;
}

.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width:600px) {
    .show {
        visibility: visible;
        opacity: 1;

        transform: inherit;
    }

    .footer_info {
        display: grid;
        grid-template-columns: 1fr;
        padding-left: 20px;
        /* text-align: center; */
    }

    .cx3 button {
        width: 100%;
    }

    .footer {
        height: 65vh !important;
    }

    .footer_info2 {
        padding-top: 1rem;
        padding-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
        flex-direction: column;
    }

    .footer_info3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        align-items: flex-start;
        flex-direction: column;
    }

    .links_footer a {
        color: #000;
        font-size: 0.6rem;
    }

    .cx4 p {
        text-align: center;
        padding-bottom: .5rem;
        font-size: .9rem
    }

    .cx5 i,
    .cx5 p {
        width: 100%;
        display: flex;
    }

    .cx5 {
        align-items: center !important;
    }
}

@media (max-width:1400px) {
    .fixed-top {
        position: inherit !important;
    }

    .answers,
    .personalize {
        gap: 2rem;
    }

    .sec4_img img {
        width: 400px;
    }

    .sec7_banner {
        gap: 2rem;
        width: max-content;
    }
}

@media (min-width:1440px) {
    .fixed-top {
        margin-top: 1rem;
        position: inherit !important;
    }

    .answers,
    .personalize {
        gap: 2rem;
    }

    .sec4_img img {
        width: 400px;
    }

    .sec7_banner {
        gap: 2rem;
        width: max-content;
    }
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    background-color: #fff;
    clip-path: circle();
    padding-top: 2rem;
    margin-bottom: 0 !important;
}

.carousel-indicators {
    position: unset !important;
}

.modal-header {
    justify-content: center;
    flex-direction: column-reverse;
    border-bottom: none;
}

.fs-5 {
    color: #fff !important;
}

.modal-dialog {
    max-width: min-content;
}

.modal-content {
    padding: 1rem 4rem;
    background-color: #292928 !important;
    border-radius: 30px !important;
}

.modal-body h1 {
    text-align: center;
}

.form-container {
    display: flex;
    justify-content: center;
}

.form {
    display: flex;
    flex-direction: column;
    width: 30%;
}

.form input {
    padding: 0.5rem 3rem;
    border: none;
    background: #E1DEDE;
    border-radius: 20px;
}

.form small {
    color: #fff;
    text-align: justify;
}

small span {
    color: #EEB037;
}

.form input[type=submit] {
    width: -webkit-fill-available;
    background-color: #fff;
    color: #202022;
    border: 1px solid #202022;
    transition: background ease 0.5s;
}

.modal-title span {
    color: #EEB037;
}

.modal-backdrop.show {
    z-index: auto;
}

.form input[type=submit]:hover {
    background-color: #EEB037;
    color: #fff;
    border: 1px solid #EEB037;
}

@media (max-width:600px) {
    .modal-content {
        padding: 1rem 1rem;
        width: fit-content;
    }

    .modal-body h1 {
        font-size: 2rem;
    }

    .modal-header {
        justify-content: center;
        flex-direction: unset;
    }
}

@media (max-width:600px) {
    .modal-dialog {
        max-width: 100vw !important;
    }

    .form {
        width: 100% !important;
    }

    #navbar4.collapse:not(.show) {
        display: block !important;
    }
}

.toggle_user {
    /* border: 2px solid #C1BEBE; */
    border-radius: 50px;
    padding: 0.2rem 0.5rem;
}

.dropdown-toggle::after {
    content: url("/assets/img/svg/view_headline.svg");
}

.experts {
    color: #fff;
    background-color: #000;
    height: 100vh;
    padding: 6rem;
    z-index: 9090;
}

.experts_cards {
    margin-top: 5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-evenly;
}

.expert_card {
    width: 390px;
    display: flex !important;
    border-radius: 40px;
    background-color: #7A7978;
    flex-direction: column;
    justify-content: flex-end;
}

.card_img img {
    width: 90%;
}

.card_text {
    padding: 1rem;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    background-color: #fff;
    color: #000;
}

/* Frquently Questions */
.frequently_questions {
    background-color: #000;
    color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.acordions {
    width: 70vw;
    margin: 0 auto;
}

.accordion-item {
    background-color: transparent !important;
    color: #fff !important;
}

.accordion-button {
    /* Border */
    color: #fff;
    font-size: 1.3rem !important;
    padding-left: 2rem;
    border: 1px solid transparent;
    border-radius: 45px !important;
    background:
        linear-gradient(to right, #000, #000),
        linear-gradient(to right, #EEB037, #3A82F7);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    box-shadow: none !important;

}

.accordion-body {
    font-weight: 300 !important;
    border-left: 1px solid #3A82F7;
    margin-left: 2rem;
    margin: 1rem;
}

.accordion-item {
    border: none !important;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.accordion-button:not(.collapsed) {
    color: #fff !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: invert() !important;
}

@media(max-width:768px) {
    .frequently_questions {
        height: unset !important;
    }

    .banner_info .text-biu {
        font-size: 1.8rem !important;
    }
}


.yellow-bar {
    margin-top: 4rem;
    background-color: #EEB037;
    color: #000;
}

.yellow-bar h1 {
    font-size: 2.5rem !important;
    font-weight: 700;
}

.gray-bar {
    background-color: #eeb037;
    color: #fff;
    position: relative;
    padding-bottom: 6rem !important;
}

.gray-bar h1 {
    font-size: 2.5rem !important;
    font-weight: 500 !important;
    color: #000;
}

.text-biu {
    color: #fff !important;
}

.sec7_banner {
    transform: translate(-50%);
    position: absolute;
    top: 144px;
    left: 50%;
    z-index: 7;
    width: -webkit-fill-available;
    background-color: #000;
    padding: 2rem;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    border: 1px solid #eeb037;
}

.shadow {
    background: linear-gradient(rgba(0, 0, 0, 0.046), rgba(0, 0, 0, 0.194), #000000, #040404);
    position: absolute;
    width: 100%;
    bottom: 2rem;
    height: 12rem;
}

.grid1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    margin-bottom: 2rem;
    height: 100vh;
}

@media (max-width: 768px) {
    .grid1content {
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("/assets/img/website/mobile_section_img1.webp");
        height: 100vh;
    }

    .gridImg {
        display: none;
    }

    .sec7_banner button {
        padding: .5rem 1rem !important;
        border-radius: 15px;
    }

    .gray-bar {
        padding: 0 1.8rem;
    }
}

.grid1 h1 {
    color: #EEB037;
    font-size: 3.125rem;
    padding-right: 2rem;
}

.grid1 h2 {
    color: #fff;
    font-size: 1.5rem;
    padding-right: 2rem;
}

.grid1 button {
    background-color: #EEB037;
    border: none;
    color: #000;
    padding: 0.6rem 5rem;
}

.gridImg {
    position: relative;
    /* background-image: url('/assets/img/website/homem_oculos_vr_semfundo.webp');
    background-size: contain;
    background-repeat: no-repeat; */
}

.gridImg svg {
    width: 110%;
    height: auto;
    opacity: .6;
    transform: translatey(0px);
    -webkit-animation: float 5s ease-in-out infinite;
}

.gridImg img {
    width: 130%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0;
}

@-webkit-keyframes float {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }

    50% {
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        transform: translatey(-20px);
    }

    100% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }
}


@keyframes float {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }

    50% {
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        transform: translatey(-20px);
    }

    100% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }
}


#customers-testimonials .itemcard {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 3rem !important;
    padding: 15px;
    opacity: .2;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;


    height: 470px;
    border-radius: 40px;
}

#customers-testimonials .owl-item.active.center .itemcard {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
}

.owl-carousel .owl-item img {
    width: 90% !important;
    height: auto;
}

.commo img {
    width: 30px !important;
    height: auto;
    float: left;
}

.author-img img {
    width: 60px !important;
    height: auto;
    border-radius: 100%;
    margin-bottom: 0 !important;
}

.owl-nav {
    display: inline-block !important;
    width: 100%;
    text-align: center;
    font-size: 4rem;
}

.owl-carousel .owl-nav button.owl-next {
    background-color: #fff;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    color: #000 !important;
}

.owl-carousel .owl-nav button.owl-next {
    position: absolute !important;
    top: 40%;
    font-size: 1.5rem !important;
    padding: 0.8rem !important;
    right: 15%;
    background-color: #D9D9D9 !important;
    clip-path: circle();

}

.owl-carousel .owl-nav button.owl-prev {
    position: absolute !important;
    font-size: 1.5rem !important;
    padding: 0.8rem !important;
    top: 40%;
    left: 15%;
    background-color: #D9D9D9 !important;
    clip-path: circle();

}

.owl-prev {
    background-color: red !important;
}

.owl-stage-outer {
    position: relative;
}

.experts-title {
    background: #EEB037;
    background: linear-gradient(to right, #EEB037 13%, #3AB3F7 71%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

@media (max-width: 768px) {
    .owl-carousel .owl-nav button.owl-next {
        top: 30%;
    }

    .owl-carousel .owl-nav button.owl-prev {
        top: 30%;
    }

    .grid1content {
        padding: 2rem !important;
    }

    .grid1 {
        grid-template-columns: 1fr !important;
        padding: 0 !important;
    }

    .grid1 h1 {
        font-size: 2rem !important;
    }

    h1 {
        font-size: 2.2rem;
    }

    .grid1 h2 {
        font-size: 1rem !important;
        font-weight: 400 !important;
        line-height: 23px;
        padding-right: 0;
    }

    .grid1 button {
        width: 100%;
    }

    .gridImg img {
        width: 100%;
    }

    .grid2 {
        padding: 2rem;
        /* margin-top: 2rem !important; */
        height: 90vh !important;
    }

    .grid2 h2 {
        font-size: 1rem;
        font-weight: 300;
    }

    .expert_card {
        width: 100%;
    }

    #customers-testimonials .itemcard {
        padding: 0 !important;
    }

    .no-js .owl-carousel,
    .owl-carousel.owl-loaded {
        margin: 0 !important;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: 5% !important;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: 5% !important;
    }

    .logo-footer {
        flex-direction: column;
    }

    .banner_info h1 {
        font-size: 2rem !important;
    }

    .sec7_banner button {
        width: 100% !important;
    }

    .sec7_banner {
        top: 130px;
        width: 80% !important;
    }

    .yellow-bar h1 {
        font-size: 1rem !important;
    }

    .yellow-bar {
        margin-top: 2rem !important;
    }

    .gray-bar h1 {
        font-size: 1rem !important;
    }

    .acordions {
        width: 100%;
        padding: 1rem;
    }

    .frequently_questions {
        height: 100vh;
        padding-top: 2rem !important;
        overflow: auto;
    }

    .dropdown-menu.show {
        right: 0 !important;
        left: unset !important;
    }

    .div1,
    .div2,
    .div3,
    .div4,
    .div5,
    .div6,
    h4 {
        position: fixed !important;
        bottom: 0;
        margin: 0 auto !important;
        padding-bottom: 10px;
    }

    .line-title {
        height: auto !important;
    }

    #dash-reasons>div.owl-stage-outer {
        height: 60vh !important;
    }

    .reasons-title {
        font-size: 2rem;
    }

    .experts-title {
        font-size: 1.8rem !important;
    }

    h1.questions-title {
        font-size: 1.8rem !important;
    }

    .logo-footer img {
        text-align: left !important;
    }

}

.questions-title {
    color: #eeb037;
    font-size: 3.125rem;

}

.modal-dialog {
    max-width: 50vw !important;
    max-height: 50vh !important;
    opacity: 0.9;
}

#customBtn {
    display: flex;
    background: #4285f4;
    color: white;
    border-radius: 5px;
    width: fit-content;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
}

#customBtn:hover {
    cursor: pointer;
}

span.label {
    font-weight: bold;
}

span.icon {
    background: url('/assets/img/svg/btn_google_light_normal_ios.svg') transparent 5px 50% no-repeat !important;
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    border-right: #2265d4 1px solid;
}

span.buttonText {
    display: inline-block;
    vertical-align: middle;
    padding-left: 42px;
    padding-right: 42px;
    font-size: 14px;
    font-weight: bold;
    /* Use the Roboto font that is loaded in the <head> */
    font-family: 'Roboto', sans-serif;
}

.accordion-button h2 {
    margin-right: 3rem !important;
}

@media (max-width: 768px) {

    #headingOne div,
    #headingTwo div,
    #headingThree div,
    #headingFour div,
    #headingFive div {
        font-size: 1rem !important;
    }

    .accordion-button h2 {
        font-size: 1rem !important;
        margin-right: 1rem !important;
    }

}

/* .parent {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    width: 100% !important;
    padding-bottom: 2rem;
} */

/* .div1 {
    grid-area: 1 / 2 / 2 / 4;
}

.div2 {
    grid-area: 4 / 2 / 5 / 4;
}

.div3 {
    grid-area: 2 / 2 / 4 / 3;
}

.div4 {
    grid-area: 2 / 3 / 4 / 4;
}

.div5 {
    grid-area: 1 / 4 / 4 / 5;
}

.div6 {
    grid-area: 4 / 4 / 5 / 5;
} */

.div1,
.div3,
.div4 {
    border: 1px solid #3A82F7;
}

.div2,
.div5,
.div6 {
    border: 1px solid #EEB037;
}

/* .parent div {
    border-radius: 15px;
    background: rgba(41, 41, 40, 0.5);
    color: #fff;
    padding: 1rem;
    font-size: 1.3rem;
    font-weight: 300;
}

.parent div:hover {
    background-color: #262626;
    zoom: normal;
    font-weight: bold;
    transition: ease;
} */

.reasons h1 {
    color: #fff;
    text-align: center;
    padding-bottom: 1.5rem;
    margin-top: 3rem !important;
}

.yc {
    color: #EEB037;
    font-weight: 500 !important;
}

.bc {
    color: #3A82F7;
    font-weight: 500 !important;
}

.div2 {
    position: relative;
}

.dots {
    position: absolute;
    display: flex;
    gap: 1rem;
    left: -4rem;
    opacity: 0.6;
    top: 0;
    flex-direction: column;
    background-color: transparent !important;
}

.dots i:nth-of-type(1) {
    color: #B54BE7;
}

.dots i:nth-of-type(2) {
    color: #B9E143;
}

.dots i:nth-of-type(3) {
    color: #057DBA;
}

.line-title h4 {
    padding-bottom: 2rem;
    display: flex;
    margin: 0 auto !important;
}

@media (max-width: 768px) {
    .reasons {
        background-image: url(/assets/img/svg/mob.svg);
        background-repeat: no-repeat;
        background-size: cover;
        height: 80vh;
    }

    /* .parent div {
        grid-area: unset !important;
        height: 60vh;
        width: 80vw;
    }

    .parent {
        overflow: scroll;
        display: -webkit-box;
        grid-template-columns: 1fr;
    } */

    .dots {
        display: none;
    }

    .btn-know-more {
        padding-top: 2rem;
    }

    .line-title {
        width: 100% !important;
        border-top: rgba(238, 176, 55, 0.25) 2px solid;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 210px !important;
    }

    .line-title h4 {
        font-size: 1.2rem;
        padding-bottom: 2rem;
        display: flex;
        text-align: center;
    }

    #dash-reasons .line-title h4 {
        text-align: center !important;
        margin-left: 0;
    }

    .line-title hr {
        border: 1px solid #EEB037;
        position: relative;
        top: 50px;
    }

    .six-reasons-text {
        text-align: left !important;
    }

}

.owl-carousel .owl-stage {
    transition: all 0.45s ease 0s;
    width: 4512px;
    transform: translate3d(-1880px, 0px, 0px);
    display: flex;
    gap: 3rem;
}

#dash-reasons {
    position: relative;

}

#dash-reasons div {
    height: 55vh;
    padding: 1rem;
    padding-top: 2rem;
    /* display: flex; */
    text-align: center;
    color: white;
    /* margin-right: 0 !important; */
}

#dash-reasons>div.owl-stage-outer>div>div>div {
    background-color: #0f0f0f89 !important;
    border-radius: 15px;
}

#dash-reasons>div.owl-stage-outer>div>div>div>h4 {
    font-size: 2rem !important;
}

#dash-reasons>div.owl-nav {
    display: none !important;
}

#dash-reasons>div.owl-stage-outer {
    height: 65vh !important;
}

.owl-dots {
    text-align: center;
    height: auto !important;
    padding: 0 !important;
    position: absolute;
    top: 0;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.owl-dots button.owl-dot.active span,
.owl-dots button.owl-dot:hover span {
    background-color: #292928;
    border: 1px solid #3A82F7 !important;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 1px;
    left: 1px;
    padding: 0 !important;
}

.owl-dots button.owl-dot span,
.owl-dots button.owl-dot span {
    background-color: #292928;
    border: 1px solid #EEB037 !important;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 1px;
    left: 1px;
}

.owl-dots button.owl-dot {
    padding: 0 !important;
    border: 1px solid gray;
    background: white;
    border-radius: 50%;
    height: 16px;
    width: 16px;
    position: relative;
}

#customers-testimonials>div.owl-stage-outer>div {
    display: block !important;
}

.policy-privacy {
    margin-top: 5rem !important;
    color: #fff;

}

.privacy-dividers h2 {
    color: #EEB037;
}

.grid2 {
    margin-top: 5rem;
}

.btn-reason {
    background: #eeb037 !important;
    padding: 10px 50px;
}

.btn-reason a {
    color: #000 !important;
}

.btn-reason a:hover {
    color: #fff !important;
}

@media (max-width:768px) {
    .policy-privacy {
        margin-top: 2rem !important;
    }

    .policy-privacy {
        padding: 1rem !important;
    }
    .footer_container .copyright {
        padding-bottom: 2rem;
    }
}

.op0 {
    opacity: 1 !important;
    background: none !important;
}

.footer_container .copyright {
    font-size: .9rem !important;
    color: #c2c2c2 !important;
}

/* Cookie */
.fixed {
    position: fixed;
    will-change: transform;
}

.fixed--bottom {
    bottom: 0;
    left: 0;
    right: 0;
}

a {
    color: inherit;
}

.cookie-disclaimer button {
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    margin: 0;
    padding: 0;
}

.cookie-disclaimer .button {
    /* border-style: solid; */
    border-width: 0.0625em;
    color: #000000;
    padding: 0.5em 3em;
    position: relative;
    background: #eeb037;
}

.cookie_img img {
    height: 50px;
    width: auto;
    margin-right: 1.5rem;
}

.button::after {
    background-color: inherit;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    will-change: opacity;
    z-index: -1;
}

.button:focus::after,
.button:hover::after {
    opacity: 1;
}

/* modules/cookie-disclaimer.css */
.cookie_container {
    display: flex;
    /* margin: 0 auto; */
}

.cookie-disclaimer {
    background-color: #262626;
    /* border: 1px solid #eeb037; */
    border-radius: 20px;
    color: #fff;
    font-size: inherit;
    font-size: 1rem;
    opacity: 0;
    padding: 2rem 6rem;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
    transition: opacity 0.3s, -webkit-transform 0.5s;
    transition: opacity 0.3s, transform 0.5s;
    transition: opacity 0.3s, transform 0.5s, -webkit-transform 0.5s;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 1rem;
    z-index: 9;
}

.cookie-disclaimer.is-active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.cookie-disclaimer :first-child {
    margin-top: 0;
}

.cookie-disclaimer :last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .cookie-disclaimer {
        width: 100%;
        padding: 20px;
        margin: 0;
        z-index: 999;
    }

    .media-body {
        padding-bottom: 50px;
    }

    .media-object--right {
        position: fixed;
    }

    .cookie-disclaimer .button {
        margin: 20px 0;
        top: 90px;
        left: 12px;
        width: 100%;
        padding: 0.5em 8em;
    }

    .mb-sub {
        font-size: 14px;
    }

    .cookie_img img {
        top: 30px;
        position: relative;
    }
}

/* modules/media.css */

.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.media-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.media-object--left {
    margin-right: 1em;
}

.media-object--right {
    padding-top: 1rem;
    margin-left: 1em;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.media-body {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.mb-title {
    font-weight: 700;
    margin-bottom: 0 !important;
}

.float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 4rem;
    right: 0.5rem;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    align-items: center;
    justify-content: center;
    display: flex;
}

.my-float {
    margin-top: 16px;
}

.six-reasons-text {
    height: 400px !important;
}

.div1,
.div2,
.div3,
.div4,
.div5,
.div6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/* ============================================= */

.reasons-grid1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.reasons-grid2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* margin: 0 auto; */
}

.traineeship .activity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    width: 400px;
    margin: 30px 8px 50px;
    -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .1);
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius: 20px !important;
}

.traineeship h1 {
    color: #eeb037;
    text-align: center;
    padding-bottom: 10px;
    font-weight: bold;
}

.animate-from-bottom__0 {
    -webkit-animation-name: from-left;
    animation-name: from-left;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    background-image: url(/assets/img/six-reasons/automatizado.webp);
    background-repeat: no-repeat;
    background-size: cover;
    /* margin: 0; */
}

.animate-from-bottom__1 {
    -webkit-animation-name: from-left;
    animation-name: from-left;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    background-image: url(/assets/img/six-reasons/exclusivo.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.animate-from-bottom__2 {
    -webkit-animation-name: from-left;
    animation-name: from-left;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    background-image: url(/assets/img/six-reasons/dashboard.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.animate-from-bottom__3 {
    -webkit-animation-name: from-left;
    animation-name: from-left;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    background-image: url(/assets/img/six-reasons/coproducao.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.animate-from-bottom__4 {
    -webkit-animation-name: from-left;
    animation-name: from-left;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    background-image: url(/assets/img/six-reasons/portabilidade.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.animate-from-bottom__5 {
    -webkit-animation-name: from-left;
    animation-name: from-left;
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s;
    background-image: url(/assets/img/six-reasons/usabilidade.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.traineeship .activity .relative-block {
    width: 100%;
    min-height: 350px;
    border: 1px solid #eeb037;
    background-color: linear-gradient(to right, #000, #000), linear-gradient(to right, #EEB037, #3A82F7);
    border-radius: 20px;
}

@-webkit-keyframes from-left {
    from {
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes from-left {
    from {
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.relative-block {
    position: relative;
    border-radius: 20px !important;
}

.activity-icon {
    display: none;
}

.reasons-sub-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    padding-bottom: 40px;
}

.activity-icon img {
    width: 70%;
    height: 80px;
    width: fit-content;
    z-index: 1;
    left: 220px;
    top: -6px;
    position: relative;
}

.traineeship .inactive {
    padding: 30px;
}

.traineeship .inactive .title {
    position: relative;
    top: -5px;
    border-top: 1px solid #f5ca2a;
    border-bottom: 1px solid #f5ca2a;
    padding-top: 14px;
    padding-bottom: 14px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: fit-content;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 28px;
    margin: 0 auto;
    text-shadow: rgb(0, 0, 0) 1px 0 10px;
}

.traineeship .activity .active {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: auto;
    min-height: 100%;
    padding: 25px 30px 50px;
    border-radius: 20px !important;
}

.traineeship .activity .active .title {
    color: #1f1f1f;
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    padding-top: 50px;
}

.traineeship .activity .active .sub-title {
    margin-top: 10px;
    color: #000;
    font-size: 16px;
    line-height: 28px;
    text-align: left;
}

.traineeship .activity .active .ul {
    margin-bottom: 45px;
    margin-top: 10px;
}

.traineeship .activity .active .li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 30px;
    color: #616161;
    font-size: 16px;
    line-height: 26px;
}

.traineeship .activity .active .li:before {
    position: absolute;
    content: "\f00c";
    color: #e2b921;
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.6em;
    width: 22px;
}

.traineeship .activity:hover {
    width: 558px;
    background-color: #eeb037 !important;
    border-radius: 20px !important;
    transition: .5s;
}

.traineeship .activity:hover .inactive {
    display: none;
}

.traineeship .activity:hover .active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 558px;
    background-color: #eeb037;
    background-size: cover;
    border-radius: 20px !important;
    overflow: hidden;
}

.activity-icon img::after {
    display: none;
}

.reasons-section {
    background-color: #0e0e0e !important;
    padding: 50px 0;
    width: 100% !important;
}

/* ==========
    CAROUSEL
    =========== */

@-webkit-keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slider-partners {
    background: rgb(54, 54, 54);
    overflow: hidden;
}

.partner-title h1 {
    color: #ffffff;
    font-size: 3.125rem;
    text-align: center;
    padding-top: 2rem;

    position: relative;
    top: 32px;
    left: 50px;
    z-index: 1;
}

.slider-partners h1 {
    font-size: 3.125rem;
    text-align: center;
    padding-top: 2rem;
    -webkit-text-stroke:1px #eeb037;
    -webkit-text-fill-color:transparent;
}

.slide>img {
    align-items: center !important;
    margin: 0.6rem;
}

.slider {
    background: rgb(54, 54, 54);
    height: 170px;
    margin: auto;
    position: relative;
    width: 100%;
    
}

.slider::before,
.slider::after {
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slide-track {
    position: relative;
    top: 50px;
    left: 50px;
}

.slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
    animation: scroll 40s linear infinite;
    display: flex;
    width: max-content;
    align-items: center;
    justify-content: space-around;
    gap: 30px !important;
}

.slide {
    width: 120px; /* largura padrão do espaço */
    height: 60px; /* altura padrão */
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide img {
     max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.resize img {
    height: 30px !important;
}

@media (max-width: 600px) {
    .slider .slide-track {
        -webkit-animation: scroll 15s linear infinite;
        animation: scroll 15s linear infinite;
        width: calc(150px * 21);
    }

    .slider {
        height: 130px;
    }

    .slide img {
        height: 30px !important;
        width: auto;
    }

    .resize img {
        height: 20px !important;
        width: auto;
    }

}

@media (max-width: 992px) {
      .drop-down {
        padding: 100px;
        position: absolute;
        width: 100%;
        height: auto;
        background: #000;
        top: -100%;
        transition: top 0.4s ease-in-out;
        text-shadow: 1px 1px 1px #1b557a;
        box-shadow: 0 0 10px 2px #000;
      }
      .drop-down ul {
        padding-left: 0;
      }
      .drop-down li {
        height: 70px;
        line-height: 80px;
        text-align: center;
        list-style: none;
      }
      .drop-down li:nth-child(1) {
        border-top: 0;
      }
      .drop-down li:nth-child(4) {
        border-bottom: 0;
      }
      .drop-down li:hover {
        background: #3A82F7;
      }
      .drop-down a {
        display: block;
        font-size: 1rem;
        font-weight: 300;
        color: #fff;
        text-decoration: none !important;
      }
      .drop-down h1 {
        font-family: "Kotta One", serif;
        font-size: 22pt;
        text-align: center;
        color: #fff;
      }

      .down {
        top: 0;
        transition: top 0.4s ease-in-out;
        position: fixed;
        z-index: 999;
      }

      .menu {
        box-sizing: content-box !important;
        position: absolute;
        top: -5px;
        right: 5px;
        width: 75px;
        text-align: center;
        z-index: 999;
        color: #fff;
      }
      .menu:hover {
        background: ligthen(#3A82F7, 5%);
      }
      .menu a {
        display: block;
        text-decoration: none;
        font-size: 50px;
        font-weight: 100 !important;
        color: #fff;
        margin: 0 auto;
      }
      .menu .close {
        display: none;
      }

      .trigger {
        /* animation: menu-spin-back 0.4s ease-in-out; */
        animation: 0.4s ease-in-out;
        animation-fill-mode: forwards;
      }

      .menu .trigger {
        font-weight: 100;
      }

      .round {
        animation: menu-spin 0.4s ease-in-out;
        /* animation-fill-mode: forwards; */
        position: fixed;
      }

      @-webkit-keyframes  menu-spin {
        50% {
          border-radius: 100%;
        }
        100% {
          border-radius: 100%;
          transform: rotate(180deg);
        }
      }
      @-webkit-keyframes menu-spin-back {
        50% {
          border-radius: 0;
        }
        100% {
          border-radius: 0;
          transform: rotate(-180deg);
        }
      }
      .white {
        border-color: #fff;
        color: #fff !important;
      }
      #headerIcon {
        height: 25px;
        margin-right: 10px;
    }
    #flash_message {
        position: absolute !important;
        right: 0 !important;
        top: 0 !important;
        z-index: 99 !important;
    }
}

@media (min-width:992px) {
    .drop-down {
        display: none !important;
    }
    .menu {
        display: none !important;
    }
}

.container {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

#flash_message{
    position: absolute;
    right: 0;
    top: 100px;
    z-index: 99;
}

.alert-important .close {
    width: 1.625rem;
    height: 1.625rem;
    padding: 0;

    margin-right: 0.5rem;

    color: #000;
}
