/* ---GLOBAL STYLES--- */

* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', serif;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

/* :root {
    --color1: #0692b8;
    --color2: var(--color-solid)
    --color3: #FEFCF3;
    --color4: #eaeaea;
} */
:root {
    --color-solid: #000000;
    --color-solid2: #ffffff;
    --color-solid3: #818181;
    
    --color1: repeating-linear-gradient(135deg, #191919, #000000 15%);
    --color2: repeating-linear-gradient(45deg, #3a3939, rgb(68 68 68) 15%);
    /* --color1: #000000;
    --color2: #818080; */
    --color3: #ababab;
    --color4: #eaeaea;
}

body {
    background: white;
}

img {
    width: 100%;
    max-width: 100%;
}

a {
    cursor: pointer;
    width: fit-content;
    display: inline-block;
    text-decoration: none;
    transition: .25s;
}

button,
i {
    cursor: pointer;
    transition: .25s;
}

section {
    width: 100%;
}

h1,
h2 {
    line-height: 1;
}

p {
    text-align: justify;
}

p,
li,
td {
    color: #505050;
    font-size: 1vw;
    font-weight: 400;
}

@media (max-width: 996px) {
    p,
    li {
        font-size: 4vw;
    }
}


/* ---HEADER STYLES--- */

header {
    width: 100%;
    /* position: absolute; */
    top: 0;
    left: 0;
    /* z-index: 99; */
}

header .desktop_box .bar_box {
    width: 42%;
    display: flex;
    justify-content: space-between;
    padding: .7vw 2vw;
    margin-left: auto;
    border-radius: 0 0 0 1vw;
    background: var(--color1);
}

header .desktop_box .bar_box a {
    color: white;
    font-size: .9vw;
}

header .desktop_box .bar_box a:hover {
    color: var(--lt-color-gray-600);
}

header .desktop_box .bar_box a i {
    transition: none;
}

header .desktop_box .networks_box {
    display: flex;
    gap: 1.5vw;
}

header .desktop_box .networks_box i {
    font-size: 1.1vw;
}

header .desktop_box .header_box {
    display: grid;
    grid-template-columns: 15% 70% 15%;
    padding: 1.5% 5%;
    background:var(--color-solid);
    white-space: nowrap !important;
}

header .desktop_box .logo_box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
}

header .desktop_box .menu_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}

header .desktop_box .menu_box a,
header .desktop_box .nav_item span {
    position: relative;
    color: var(--color-solid2);
    font-size: .9vw;
    font-weight: 500;
}

header .desktop_box .menu_box a:hover,
header .desktop_box .nav_item span:hover,
header .desktop_box .menu_box .active_item {
    color: var(--lt-color-gray-600);
}

header .desktop_box .menu_box a::before,
header .desktop_box .menu_box span::before {
    content: "";
    position: absolute;
    bottom: -.25vw;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: .1vw;
    background: var(--lt-color-gray-600);
    transition: .5s;
}

header .desktop_box .menu_box a:hover::before,
header .desktop_box .nav_item span:hover::before,
header .desktop_box .menu_box .active_item::before {
    width: 100%;
}

header .desktop_box .nav_item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

header .desktop_box .nav_item i {
    font-size: .7vw;
}

header .desktop_box .dropdown {
    width: 17vw;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    padding: 1vw;
    background: var(--color-solid);
    box-shadow: .1vw .1vw 1vw #00000020;
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

header .desktop_box .nav_item:hover .dropdown {
    opacity: 1;
    pointer-events: initial;
}

header .buttons_box {
    display: flex;
    align-items: center;
}

header .desktop_box .main_button {
    font-size: .8vw;
}

header .mobile_box {
    display: none;
    background:var(--color-solid);

}

@media (max-width: 996px) {
    header .desktop_box {
        display: none;
    }
    header .mobile_box {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5%;
    }
    header .mobile_box>.logo_box {
        width: 50%;
    }
    header .mobile_box .logo_box img {
        /* width: 100%; */
        width: 60%;
    }
    header .mobile_box .toggle_box {
        display: flex;
        flex-direction: column;
        gap: 1.2vw;
        position: fixed;
        top: 5vw;
        right: 5vw;
        z-index: 20;
    }
    header .mobile_box .bar_item {
        width: 10vw;
        height: .6vw;
        background: var(--color-solid3);
        transition: .5s;
    }
    header .active_sidebar .bar_item {
        width: 6vw;
    }
    header .active_sidebar .bar_item:nth-child(1) {
        transform: translate(0, 1.75vw) rotate(45deg)
    }
    header .active_sidebar .bar_item:nth-child(2) {
        opacity: 0;
    }
    header .active_sidebar .bar_item:nth-child(3) {
        transform: translate(0, -1.75vw) rotate(-45deg)
    }
    header .mobile_box .sidebar_box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10vw;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        padding: 8%;
        transform: translateX(100%);
        /* background: white; */
        color: var(--color-solid2);
        background: var(--color-solid);
        transition: .5s;
        z-index: 10;
    }
    header .active_sidebar .sidebar_box {
        transform: translateX(0);
    }
    header .mobile_box .sidebar_box .logo_box {
        width: 70%;
    }
    header .mobile_box .menu_box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4vw;
    }
    header .mobile_box .nav_item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    header .mobile_box a,
    header .mobile_box span {
        color: var(--color2);
        font-size: 4vw;
        font-weight: 500;
        text-align: center;
    }
    header .mobile_box .active_item {
        color: var(--color1);
    }
    header .mobile_box span i {
        font-size: 2.5vw;
        pointer-events: none;
    }
    header .mobile_box .dropdown_active i {
        transform: rotate(-180deg);
    }
    header .mobile_box .dropdown {
        max-height: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5vw;
        transition: .5s;
        pointer-events: none;
        opacity: 0;
    }
    header .mobile_box .dropdown_active~.dropdown {
        max-height: 90vw;
        padding: 15% 0;
        pointer-events: initial;
        opacity: 1;
    }
    header .mobile_box .dropdown a {
        font-size: 3.8vw;
    }
    header .mobile_box .contact_box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5vw;
    }
    header .mobile_box .networks_box {
        display: flex;
        justify-content: center;
        gap: 5vw;
        padding-top: 3vw;
    }
    header .mobile_box .networks_box i {
        font-size: 6vw;
    }
    header .mobile_box .main_button {
        color: white;
        background: var(--color2);
    }
    header .mobile_box .main_button:hover {
        background: var(--color1);
    }
    header .mobile_box .backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000000d0;
        pointer-events: none;
        opacity: 0;
        transition: .5s;
    }
    header .active_sidebar .backdrop {
        pointer-events: initial;
        opacity: 1;
    }
}


/* ---FOOTER STYLES--- */

footer {
    /* background: var(--color2); */
    background: var(--color-solid);
}

footer .footer_box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5%;
    padding: 7%;
}

footer .footer_item {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

footer .footer_item:nth-child(1) {
    gap: 3vw;
}

footer .logo_box {
    width: 90%;
}

footer .logo_box img {
    width: 100%;
}

footer .legal_box {
    display: flex;
    align-items: center;
    gap: 1vw;
}

footer .legal_box a,
footer .legal_box span {
    color: white;
    font-size: .8vw;
}

footer .legal_box span {
    pointer-events: none;
}

footer h2 {
    color: white;
    font-size: 1.5vw;
}

footer a,
footer p {
    color: white;
    font-size: 1vw;
    text-align: left;
}

footer a:hover {
    color: var(--color1);
}

footer i {
    transition: none;
}

footer .networks_box {
    display: flex;
    gap: 2vw;
}

footer .networks_box i {
    font-size: 1.5vw;
}

footer .bar_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    padding: .5vw;
    background: white;
}

footer .bar_box a,
footer .bar_box span {
    color: var(--color2);
    font-size: .8vw;
}

footer .bar_box a:hover {
    color: var(--color1);
}

footer .bar_box span {
    pointer-events: none;
}

@media (max-width: 996px) {
    footer .footer_box {
        grid-template-columns: 1fr;
        gap: 15vw;
        padding: 20% 10%;
    }
    footer .footer_item {
        align-items: center;
        gap: 4vw;
    }
    footer .footer_item:nth-child(1) {
        gap: 10vw;
    }
    footer .logo_box {
        width: 75%;
    }
    footer .legal_box {
        justify-content: center;
        gap: 5vw;
    }
    footer .legal_box a,
    footer .legal_box span {
        font-size: 3vw;
    }
    footer .legal_box span {
        pointer-events: none;
    }
    footer h2 {
        font-size: 5vw;
    }
    footer a,
    footer p {
        font-size: 3.5vw;
        text-align: center;
    }
    footer .networks_box {
        justify-content: center;
        gap: 8vw;
        padding-top: 3vw;
    }
    footer .networks_box i {
        font-size: 6vw;
    }
    footer .bar_box {
        flex-direction: column;
        gap: 2vw;
        padding: 3vw;
    }
    footer .bar_box a {
        font-size: 3vw;
    }
    footer .bar_box span {
        display: none;
    }
}


/* ---GUIDE STYLES--- */

.guide_section {
    display: flex;
    flex-direction: column;
    gap: 5vw;
    padding: 10%;
    background: white;
}

.guide_section .title_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

.guide_section .title_box h2 {
    color: var(--color2);
    font-size: 3vw;
    text-align: center;
}

.guide_section .title_box h2 span {
    color: var(--color1);
}

.guide_section .title_box p {
    width: 70%;
    text-align: center;
}

.guide_section .guide_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
}

.guide_section .guide_item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1vw;
}

.guide_section .media_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide_section .info_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
}

.guide_section .info_box h2 {
    color: var(--color2);
    font-size: 1.2vw;
}

.guide_section .info_box p {
    font-weight: 600;
}

.guide_section ol {
    display: flex;
    flex-direction: column;
    gap: .5vw;
    list-style-position: inside;
}

.guide_section ::marker {
    color: var(--color2);
    font-weight: 700;
}

@media (max-width: 996px) {
    .guide_section {
        gap: 10vw;
        padding: 20% 10%;
    }
    .guide_section .title_box {
        gap: 3vw;
    }
    .guide_section .title_box h2 {
        font-size: 7vw;
    }
    .guide_section .title_box p {
        width: 100%;
    }
    .guide_section .guide_box {
        grid-template-columns: 1fr;
        gap: 20vw;
    }
    .guide_section .guide_item {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .guide_section .media_box img {
        width: 50%;
    }
    .guide_section .info_box {
        gap: 3vw;
    }
    .guide_section .info_box h2 {
        font-size: 7vw;
        text-align: center;
    }
    .guide_section .info_box p {
        font-size: 5vw;
        text-align: center;
    }
    .guide_section ol {
        gap: 2vw;
        text-align: center;
    }
}


/* ---APP STYLES--- */

.app_section {
    padding: 10% 0;
    background: white;
}

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

.app_section .media_box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app_section .media_box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 60%;
    border-radius: 0 1vw 1vw 0;
    background: var(--color1);
    transition: 1s;
}

.active_app_section .media_box::before {
    width: 100vw;
    border-radius: 0;
}

.app_section .media_box img {
    width: 100%;
    transform: scale(1.3);
}

.app_section .info_box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
    z-index: 1;
}

.app_section .title_box p {
    color: var(--color2);
    font-size: 1.7vw;
    font-weight: 700;
    text-align: center;
}

.app_section .title_box p span {
    font-size: 2vw;
}

.app_section .title_box h2 {
    color: var(--color1);
    font-size: 4vw;
    text-align: center;
    transition: 1s;
}

.active_app_section .title_box h2 {
    color: white;
}

.app_section .buttons_box {
    display: flex;
    justify-content: center;
    gap: 1vw;
}

.app_section .button_item {
    width: 14vw;
    display: flex;
    justify-content: center;
    gap: .8vw;
    padding: 1vw;
    border: .15vw solid var(--color2);
    border-radius: 1vw;
    background: var(--color2);
    transition: .5s;
    cursor: pointer;
}

.app_section .button_item:hover {
    transform: scale(1.025);
    border: .15vw solid white;
    background: var(--color1);
}

.app_section .button_icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app_section .button_icon i {
    color: white;
    font-size: 2vw;
}

.app_section .button_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .25vw;
}

.app_section .button_info p {
    color: white;
    font-size: .7vw;
    text-align: left;
}

.app_section .button_info h2 {
    color: white;
    font-size: 1.2vw;
}

@media (max-width: 996px) {
    .app_section {
        padding: 20% 0;
    }
    .app_section .app_box {
        grid-template-columns: 1fr;
        gap: 20vw;
    }
    .app_section .media_box {
        order: 2;
    }
    .app_section .media_box::before {
        width: 85%;
        border-radius: 0 3vw 3vw 0;
    }
    .app_section .media_box img {
        transform: scale(1.2);
        transform-origin: right center;
    }
    .app_section .info_box {
        gap: 3vw;
    }
    .app_section .title_box p {
        font-size: 4vw;
    }
    .app_section .title_box p span {
        font-size: 5vw;
    }
    .app_section .title_box h2 {
        font-size: 12vw;
    }
    .app_section .buttons_box {
        gap: 5vw;
    }
    .app_section .button_item {
        width: 35vw;
        gap: 2vw;
        padding: 1vw;
        border: 2vw solid var(--color2);
        border-radius: 2vw;
    }
    .app_section .button_item:hover {
        transform: scale(1.1);
        border: 1vw solid var(--color1);
        background: var(--color1);
    }
    .app_section .button_icon i {
        font-size: 5vw;
    }
    .app_section .button_info {
        gap: .5vw;
    }
    .app_section .button_info p {
        font-size: 2vw;
    }
    .app_section .button_info h2 {
        font-size: 3vw;
    }
}


/* ---FORM SYLES--- */

.form_section {
    padding: 10%;
    background: white;
}

.form_section .form_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
}

.form_section .info_box {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.form_section h2 {
    color: var(--color1);
    font-size: 3vw;
    text-align: center;
}

.form_section p {
    text-align: center;
}

.form_section .inputs_box {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.form_section .input_item {
    display: flex;
    gap: 1vw;
}

.form_section input,
.form_section textarea {
    width: 100%;
    font-size: 1vw;
    padding: 1vw;
    border: 0;
    border-radius: .5vw;
    background: var(--color4);
    transition: .25s;
}

.form_section textarea {
    resize: none;
    height: 7vw;
}

.form_section input:focus-visible,
.form_section textarea:focus-visible {
    outline: none;
    background: #0692b820;
}

.form_section ::placeholder {
    color: #12384d50;
}

.form_section .message_box {
    width: 100%;
    height: 2vw;
    position: relative;
}

.form_section .message_box p {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form_section .done {
    color: #0bb300;
}

.form_section .error {
    color: #f31212;
}

.form_section .media_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form_section img {
    border-radius: 1vw;
}

@media (max-width: 996px) {
    .form_section {
        padding: 20% 10% 10% 10%;
    }
    .form_section .form_box {
        grid-template-columns: 1fr;
        gap: 10vw;
    }
    .form_section .info_box {
        gap: 3vw;
        order: 2;
    }
    .form_section h2 {
        font-size: 8vw;
    }
    .form_section .inputs_box {
        gap: 3vw;
    }
    .form_section .input_item {
        flex-direction: column;
        gap: 3vw;
    }
    .form_section input,
    .form_section textarea {
        font-size: 3.5vw;
        padding: 3vw;
        border-radius: 1.5vw;
    }
    .form_section textarea {
        height: 30vw;
    }
    .form_section .message_box {
        height: 10vw;
    }
    .form_section .message_box p {
        font-size: 3.5vw;
    }
    .form_section img {
        border-radius: 3vw;
    }
}


/* ---FAQS STYLES--- */

.faqs_section {
    padding: 10%;
    background: white;
}

.faqs_section .faqs_box {
    display: grid;
    grid-template-columns: 45% 55%;
    border-radius: 1vw;
    background: var(--color1);
}

.faqs_section .media_box {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.faqs_section .info_box {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    padding: 5%;
}

.faqs_section .info_box h2 {
    color: white;
    font-size: 3vw;
}

.faqs_section .info_box p {
    color: white;
}

.faqs_section .dropdown_box {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.faqs_section .faqs_item {
    display: flex;
    flex-direction: column;
    padding: 1vw;
    border-radius: 1vw;
    background: white;
    cursor: pointer;
    transition: .5s;
}

.faqs_section .faqs_item:hover {
    background: #ffffffc0;
}

.faqs_section .faqs_active:hover {
    background: white;
}

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

.faqs_section .faqs_item * {
    pointer-events: none;
}

.faqs_section .faqs_item h2 {
    width: 100%;
    color: var(--color2);
    font-size: 1vw;
}

.faqs_section .question_box i {
    transition: .5s;
}

.faqs_section .faqs_active .question_box i {
    transform: rotate(-180deg);
}

.faqs_section .answer_box {
    max-height: 0;
    pointer-events: none;
    opacity: 0;
    transition: .5s;
}

.faqs_section .faqs_active .answer_box {
    display: flex;
    flex-direction: column;
    gap: .5vw;
    max-height: 50vw;
    padding-top: .5vw;
    pointer-events: initial;
    opacity: 1;
}

.faqs_section .faqs_item p {
    color: #505050;
    text-align: left;
}

.faqs_section .faqs_item ul {
    list-style-position: inside;
}

.faqs_section .faqs_item ::marker {
    color: var(--color1);
}

@media (max-width: 996px) {
    .faqs_section {
        padding: 10% 0 0 0;
        background: white;
    }
    .faqs_section .faqs_box {
        grid-template-columns: 1fr;
        border-radius: 0;
    }
    .faqs_section .media_box {
        order: 2;
    }
    .faqs_section .info_box {
        align-items: center;
        gap: 5vw;
        padding: 20% 5% 5% 5%;
    }
    .faqs_section .info_box h2 {
        font-size: 8vw;
        text-align: center;
    }
    .faqs_section .info_box p {
        text-align: center;
    }
    .faqs_section .dropdown_box {
        gap: 3vw;
    }
    .faqs_section .faqs_item {
        padding: 3vw;
        border-radius: 2vw;
    }
    .faqs_section .faqs_item h2 {
        font-size: 3.5vw;
        text-align: left;
        line-height: 1.2;
    }
    .faqs_section .question_box i {
        font-size: 3vw;
    }
    .faqs_section .faqs_active .answer_box {
        gap: 3.5vw;
        max-height: 200vw;
        padding-top: 3vw;
    }
    .faqs_section .faqs_item p {
        font-size: 3.5vw;
        text-align: left;
    }
    .faqs_section .faqs_item li {
        font-size: 3.5vw;
        text-align: left;
    }
}


/* ---BUTTON STYLES--- */

.main_button {
    color: white;
    font-size: 1vw;
    font-weight: 500;
    text-align: center;
    padding: .8vw 2vw;
    border: none;
    border-radius: 3vw;
    background: var(--color1);
}

.main_button:hover {
    color: white;
    background: var(--color2);
}

@media (max-width: 996px) {
    .main_button {
        font-size: 3.5vw;
        padding: 3vw 8vw;
        border-radius: 10vw;
    }
}


/* ---BACKGROUDN IMAGE--- */

.bg_img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .7;
    z-index: -1;
}


/* ---ANIMATIONS--- */

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scale {
    from {
        opacity: 0;
        transform: scale(2);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.search_contain input[type="text"]{
    display: inline-block;
    box-sizing: content-box;
    padding: 0.1vw 0.5vw;
    border-radius: 3px;
    color: var(--color-solid2);
    font-size: 1vw;
    border: none;
    text-overflow: clip;
    background: transparent;
    outline: none;
}

.search_contain button[type="submit"] {
    background: transparent;
    border: none;
}

.cta_box{
        background: white;
        justify-content: center;
        display: flex;
}

.btn_a {
    color: var(--color1);
    background: white;
}

.btn_a:hover {
    color: white;
    background: var(--color2);
}


html {
        scroll-behavior: smooth;
        }
        .my_button {
            color: var(--color1) !important;
            background: white !important;
        }
        .my_button:hover {
            color: white !important;
            background: var(--color2) !important;
        }