/* Reset & Box-Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Root Variables */
:root {
    --font-sans: 'Montserrat', sans-serif;
    --font-display: 'AHBN', cursive;

    --color-bg: #0C2124;
    --color-white: #FFFFFF;
    --color-light: #D8D8D8;
    --color-primary: #1EB4A7;
    --color-secondary: #DB7070;
    --color-cement: #C3C7C8;
    --color-mid: #DCDCDC;
    --color-dark: #6C7A7F;
    --color-black: #0A3B3B;

    --color-nav-border: #D7EFEE;
    --color-nav-bg: rgba(182, 211, 227, 0.13);
    --color-nav-shadow: rgba(28, 46, 85, 0.10);

    --space-xxs: 0.25rem;
    --space-xs: 0.5rem;
    --space-s: 1rem;
    --space-m: 1.5rem;
    --space-l: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;

    --bp-mobile: 390px;
    --bp-tablet: 834px;
    --bp-desktop: 1440px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-white);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img,
picture,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    /* Remove default button appearance */
    -webkit-appearance: none;
    /* For WebKit browsers (Chrome, Safari) */
    -moz-appearance: none;
    /* For Mozilla browsers (Firefox) */
    appearance: none;
    /* Standard property */

    /* Remove default border and background */
    border: none;
    background: none;

    /* Reset font styles */
    font-family: inherit;
    /* Inherit font from parent */
    font-size: inherit;
    /* Inherit font size */
    font-weight: inherit;
    /* Inherit font weight */
    color: inherit;
    /* Inherit color */

    /* Remove default padding and margin */
    padding: 0;
    margin: 0;

    /* Reset cursor to default pointer */
    cursor: pointer;

    /* Remove default outline on focus (often desired for accessibility, but can be restyled) */
    outline: none;

    /* Remove text decoration (if button contains text links or similar) */
    text-decoration: none;

    /* For buttons containing flex/grid items, ensure they don't stretch */
    box-sizing: border-box;
    /* Or content-box, depending on your layout model */
}

        
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    padding: 1rem;
    font-family: 'Montserrat', sans-serif;
  }

  .modal__content {
    background-color: #0c2124;
    color: #fff;
    max-width: 800px;
    max-height: 90vh;
    padding: 2rem;
    border-radius: 16px;
    overflow: hidden;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
  }

  .modal__scroll {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 0.5rem;
  }

  .modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }

  .modal__scroll h3 {
    margin-top: 1.5rem;
    font-weight: 600;
    color: #1eb4a7;
  }

  .modal__scroll a {
    color: #1eb4a7;
    text-decoration: underline;
  }



.tab3-lastrow-2 {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99;
}

.overlay--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.nav__logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav__toggle {
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.main__desktop {
    display: none;
}


.training-tabs {
    margin: 60px auto 80px;
}

.training-tabs__container {
    display: flex;
    flex-direction: column;
    width: 357px;
    padding: 16px;
    /* gap: 12px; */
    border: 1px solid var(--color-white);
    background-color: var(--color-bg);
    border-radius: 16px;
    align-items: flex-start;
    margin: auto;
    position: relative;
}

.bottom-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.bottom-line {
    display: block;
    height: 4px;
    width: 116px;
    background-color: #fff;
}

.active-line {
    display: block;
    height: 4px;
    width: 116px;
    background-color: #1EB4A7;
}

.training-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 21px;
    border-radius: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background 0.2s ease;
    color: #EEFFFE;
    font-family: "Montserrat";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.training-tab.active {
    background-color: #06635D;
    color: var(--color-white);
}


.footer_socials {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 46px;
    justify-content: flex-start;
}

.footer_text {
    margin-top: 24px;
}

.site-footer {
    border-radius: 56px 56px 0px 0px;
    background: #0B2C2E;
}

.addresses_title {
    color: var(--White, #FFF);
    font-family: "Montserrat";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.footer_row1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    padding: 56px 96px;
}

.addresses_list li {
    color: #FFF;
    font-family: "Montserrat";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    margin-top: 16px;
}

.footer_col3 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer_row2 {
    display: flex;
    flex-direction: row;
    padding: 24px 0px;
    justify-content: space-between;
    border-top: 1px solid #114D4B;

}

.payment-icons {
    display: flex;
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

/* Mobile Styles */
@media (max-width: 833px) {

    .training-free-mobile{
    position: absolute;
    display: flex;
    flex-direction: column;
    height: 370px;
padding: 12px;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
position: absolute;
right: 10px;
bottom: 27px;
border-radius: 12px;
border: 1px solid var(--Secondary, #DB7070);
background:#21292C;
color: rgba(219, 112, 112, 0.90);
font-family: "Montserrat";
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: uppercase;
box-shadow: -10px 0 0 #0C2124;
}
    .courses {
        overflow: hidden;
        position: relative;

    }

    /* All swipe slides line up side-by-side */
    .swipe-slide {
        display: none;
    }

    /* Only the active slide is shown */
    .swipe-slide.active {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .swipe-dots {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .dot {
        width: 10px;
        height: 10px;
        background: #ccc;
        border-radius: 50%;
        transition: background 0.2s ease;
    }

    .dot.active {
        background: #1EB4A7;
    }

    .btn__signup {
        display: flex;
        width: 288px;
        height: 48px;
        padding: 18px 32px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        border-radius: 16px;
        background: var(--Secondary, #DB7070);
    }

    .close-wrapper {
        display: flex;
        justify-content: flex-end;
        /* push children (the button) right */
        padding: 0;
        /* reset if needed */
        margin: 0;
        list-style: none;
    }

    .menu-open #navToggle {
        display: none;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 320px;
        height: 100vh;
        background: #0B2D2E;
        box-shadow: -70px 0 50px rgba(0, 0, 0, 0.1);
        padding: 2rem 1rem;
        z-index: 100;
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        list-style: none;
        margin: 0;
    }

    .nav__menu--open {
        transform: translateX(0);
    }

    .nav__toggle {
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        z-index: 101;
    }

    .nav__close {
        background: none;
        border: none;
        font-size: 2rem;
        align-self: flex-end;
        cursor: pointer;
        margin-top: auto;
    }

    .container {
        width: 90%;
        margin: 0 auto;
    }

    .nav {
        width: 358px;
        margin: 0 auto;
        margin-top: 16px;
        display: flex;
        flex-direction: row;
        padding: 16px;
    }

    .main__mobile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 16px;
    }

    .main__title {
        color: #FFF;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 110%;
        /* 52.8px */
        letter-spacing: 2.4px;
        text-transform: capitalize;
        text-wrap: nowrap;
    }

    .info__text-highlight {
        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 110%;
        letter-spacing: 2.4px;
        text-transform: capitalize;
    }

    .main__text {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 21px */
        margin-top: 8px;
    }

    .main__buttons {
        display: flex;
        flex-direction: row;
        margin-top: 10px;
    }

    .site-header {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        position: relative;
         overflow-x: clip;
    }

    .site-header:after {
        content: '';
        position: absolute;
        right: -25%;
        top: 0;
        width: 733px;
        height: 628px;
        background-image: url(../img/road.svg);
        background-repeat: no-repeat;
        background-position: 100% 0;
        background-size: contain;
        display: block;
        z-index: -1;
    }

    .main-img {

        height: auto;
        flex-shrink: 0;
    }

    .training-tabs {
        display: none;
    }

    .online-training__column--center {
        display: none;
    }

    .online-training__title {
        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 57.6px */
        letter-spacing: 2.4px;
        text-transform: capitalize;
        margin-top: 80px;
        text-align: center;
    }

    .online-training-highlight {
        color: #FFF;
        font-family: "AHBN";
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: 2px;
        text-transform: capitalize;
    }

    .online-training {
        position: relative;
        display: flex;
        flex-direction: column;
        margin-top: 32px;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        border-radius: 24px;
        background: #0C2124;
        box-shadow: 0px -222px 89px 0px rgba(6, 99, 93, 0.02), 0px -125px 75px 0px rgba(6, 99, 93, 0.05), 0px -55px 55px 0px rgba(6, 99, 93, 0.09), 0px -14px 30px 0px rgba(6, 99, 93, 0.10), 0px 222px 89px 0px rgba(6, 99, 93, 0.02), 0px -11px 75px 0px rgba(6, 99, 93, 0.05), 0px 14px 30px 0px rgba(6, 99, 93, 0.10), 0px 55px 55px 0px rgba(6, 99, 93, 0.09);
    }

    .online-training__features li {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 68px;
        gap: 12px;
        color: #FFF;
        font-family: "AHBN";
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 21.6px */
        letter-spacing: 0.9px;
        text-transform: capitalize;
    }

    .online-free-desktop {
        display: none;
    }

    .online-training__features li img {
        width: 24px;
        height: 24px;
    }

    .online-training__features li {
        border-bottom: 1px solid #114D4B;
    }

    .online-training__column--left {
        width: 100%;
        padding: 0 16px;
    }

    .online-training__column--right {
        width: 100%;
        padding: 0 16px;
    }

    .surprise {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        padding: 40px;
        border-radius: 24px;
        background: #0A3B3B;
        justify-content: center;
        align-items: center;
        gap: 48px;
        margin-top: 80px;
    }

    .surprise-col2 {
        display: flex;
        flex-direction: column;

    }

    .surprise img {
        width: 153px;
        height: auto;
    }

    .surprise__title {
        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 48px */
        letter-spacing: 2px;
        text-transform: capitalize;
    }

    .surprise__text {
        color: #1EB4A7;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 24px */
        margin-top: 8px;
    }

    .surprise__text-highlight {
        color: var(--Secondary, #DB7070);
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
    }

    .surprise__info {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        margin-top: 20px;
    }


    .how-it-works {
        position: relative;
        width: 358px;
        margin: auto;
        padding: 24px 16px 16px 16px;
        border-radius: 24px;
        background: var(--Bacground-Black, #0C2124);
        box-shadow: 0px -34.639px 34.639px 0px rgba(6, 99, 93, 0.09), 0px 78.726px 47.236px 0px rgba(6, 99, 93, 0.05), 0px 8.817px 18.894px 0px rgba(6, 99, 93, 0.10);
        display: flex;
        flex-direction: column;
        margin-top: 80px;
    }

    .how-it-works__img {
        display: none;
    }

    .how-it-works__title {
        color: #FFF;
        text-align: center;
        font-family: "AHBN";
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        /* 40px */
        letter-spacing: 2px;
        text-transform: capitalize;
    }

    .how-it-works__title-highlight {
        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 2px;
        text-transform: capitalize;
    }

    .how-it-works__buttons {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 48px;
    }

    .how-it-works__buttons a img {
        width: 150px;
        height: auto;
    }

    .how-img-mobile {
        display: flex;
        height: 289px;
        padding: 0px 101.125px 0px 102px;
        justify-content: center;
        align-items: center;
        align-self: stretch;
        margin-top: 32px;
        border-radius: 16px;
        background: #FFF;
    }

    .how-play {
        display: flex;
        height: 48px;
        padding: 16px 32px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-radius: 16px;
        background: #1EB4A7;
        color: #FFF;
        text-shadow: 0px 0px 7.4px rgba(102, 49, 0, 0.27);
        font-family: "AHBN";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: capitalize;
    }

    .courses_main_container {
        display: none;
    }

    .courses_main_container-mobile {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 24px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        border-radius: 48px;
        background: #0B2D2E;
        margin-top: 80px;
    }


    .courses {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        margin: 0 auto;
        gap: 24px;
        margin-top: 32px;

    }



    .courses__title {
        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        /* 48px */
        letter-spacing: 2.4px;
        text-transform: capitalize;
    }

    .courses__title-highlight {
        color: #FFF;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 2.4px;
        text-transform: capitalize;
    }

    .course {
        position: relative;
        border-radius: 24px;
        background: #0C2124;
        padding: 24px;
    }

    #course2 {
        position: absolute;
        right: -10px;
        top: -65px;
        width: 160px;
        height: auto;
    }

    .course3 {
        display: flex;
        flex-direction: row;
    }

    .course3 img {
        width: 70px;
        height: 103px;
    }

    .course3 ul {
        padding-top: 18px;
    }

    #course4 {
        width: calc(100% + 48px);
        max-width: calc(100% + 48px);
        /* full width + left/right padding */
        height: auto;
        margin-left: -24px;
        margin-right: -24px;
        margin-top: 22px;
        display: block;
    }

    .course1 {
        position: relative;
        border-radius: 20px;
        background: linear-gradient(242deg, #1EB4A7 -1.4%, #009378 68.88%);
        height: 283px;
        overflow: hidden;
    }

    .course1 img {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .course h3 {
        color: #FFF;
        font-family: "AHBN";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 112.08%;
        /* 26.899px */
        letter-spacing: 1.2px;
        text-transform: capitalize;
        text-wrap: nowrap;
    }

    .course__info {
        margin-top: 47px !important;
        color: #D8D8D8;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 21px */
    }

    .course__info1 div {
        display: flex;
        flex-direction: row;
    }

    .course__info1 div img {
        margin-right: 8px;
    }

    .course__info1 {
        margin-top: 18px !important;
    }

    .course p {
        color: #D8D8D8;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 21px */
        margin-top: 18px;
    }

    .course div:not(:first-child) {
        margin-top: 8px;
    }

    .courses_left {
        display: flex;
        flex-direction: column;
        flex: 1;
        align-items: stretch;
        gap: 22px;
    }



    .course_txt_highlight {

        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 112.08%;
        /* 26.899px */
        letter-spacing: 1.2px;
        text-transform: capitalize;
    }


    .courses_right {
        display: flex;
        flex-direction: column;
        flex: 2;
        align-items: stretch;
        gap: 22px;

    }

    .courses_row1 {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 20px;
    }

    .courses_row2 {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 20px;
    }

    .course li {
        color: #D8D8D8;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 21px */
        list-style-position: inside;
        list-style-type: circle;
    }

    .practice__title {
        color: #FFF;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 2.4px;
        text-transform: capitalize;
        margin-top: 80px;
    }

    .practice__title-highlight {
        color: #1EB4A7;
    }

    .practice {
        border-radius: 24px;
        background: var(--Bacground-Black, #0C2124);
        padding: 16px;
        /* Primary Shadow */
        box-shadow: 0px -222px 89px 0px rgba(6, 99, 93, 0.02), 0px -125px 75px 0px rgba(6, 99, 93, 0.05), 0px -55px 55px 0px rgba(6, 99, 93, 0.09), 0px -14px 30px 0px rgba(6, 99, 93, 0.10), 0px 222px 89px 0px rgba(6, 99, 93, 0.02), 0px 125px 75px 0px rgba(6, 99, 93, 0.05), 0px 55px 55px 0px rgba(6, 99, 93, 0.09), 0px 14px 30px 0px rgba(6, 99, 93, 0.10);
        display: flex;
        flex-direction: column;
        margin-top: 24px;
        gap: 56px;
    }

    .practice__app-icons {
        display: none;
    }

    .practice__text {
        border-radius: 12px;
        border: 1px solid #FFF;
        display: flex;
        flex-direction: row;
        align-items: center;

        color: #EEFFFE;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 16px;
        margin-top: 8px;
    }

    .practice__text img {
        margin-right: 10px;
    }

    .practise-col1 {
        position: relative;
    }

    .practise-col2 {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    .practise__left {
        display: flex;
        flex-direction: column;
    }

    .practise__left img {
        width: 136px;
        height: auto;

    }

    .practise-stroke {
        stroke-width: 1px;
        stroke: rgba(30, 180, 167, 0.50);
        margin: 0 12px;
        height: 330px;
        overflow: hidden;
    }

    .practise__review {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .practise__right {
        display: flex;
        flex-direction: column;
    }

    .practise__name {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .practise__car {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 112.08%;
        /* 11.208px */
        text-transform: capitalize;
        margin-top: 12px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        text-wrap: nowrap;
    }

    .practise__exp {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 112.08%;
        /* 11.208px */
        text-transform: capitalize;
        margin-top: 4px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .stars {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        color: #C3C7C8;
        font-family: "Montserrat";
        font-size: 8px;
        font-style: normal;
        font-weight: 500;
        text-transform: capitalize;
        margin-top: 4px;
    }

    .practise__star-text {
        margin-left: 2px;
    }

    .stars img {
        width: 12px;
        height: 12px;
    }

    .driver__name {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-top: 16px;
    }

    .review-stars {
        display: flex;
        flex-direction: row;
        margin-left: 16px;
        align-items: center;
    }

    .practise__time {
        border-radius: 4.329px;
        border: 0.442px solid #FFF;
        display: flex;
        height: 14.43px;
        padding: 3.092px 6.626px;
        justify-content: center;
        align-items: center;
        gap: 4.417px;
        flex: 1 0 0;
        color: #6C7A7F;
        text-align: center;
        font-family: "Montserrat";
        font-size: 7.068px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-top: 6px;
    }

    .practise__day {
        color: #FFF;
        text-align: center;
        font-family: "Montserrat";
        font-size: 7px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .available-time {
        color: #DCDCDC;
    }

    .practise__time-selected {
        border-radius: 4.329px;
        background: #DB7070;
        display: flex;
        height: 14.43px;
        padding: 3.092px 6.626px;
        justify-content: center;
        align-items: center;
        gap: 4.417px;
        flex: 1 0 0;
        color: #fff;
        text-align: center;
        font-family: "Montserrat";
        font-size: 7.068px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-top: 6px;
    }

    .practise__6 {
        display: none;
    }

    .practise__4 {
        display: none;
    }

    .rate-date {
        display: none;
    }

    .practise-time-selected {
        color: #FFF;
        text-align: center;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Noto Sans Armenian";
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
    }

    .car-sm {
        width: 16px !important;
        height: 16px;
        margin-right: 4px;
    }

    .practise__text {
        margin-top: 8px;
        color: #FFF;
        font-family: "Montserrat";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 18px */
    }

    .practise__rev-text {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 18px */
        margin-top: 8px;
        /* 24px */
    }

    .practice__time {
        display: flex;
        flex-direction: column;
    }

    .practice__time-text1 {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 8px;
        font-style: normal;
        font-weight: 400;
        line-height: 10px;
    }

    .practice__time-text2 {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 8px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-top: 7px;
    }

    .practice-hour {
        color: #FFF;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Montserrat";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
    }

    .practise_reg {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: 8px;
        gap:3px;
    }

    .practise__reg-title {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-top: 15px;
    }

    .practice__scheduled {
        margin-top: 32px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .plans_title {
        margin-top: 80px;
        text-align: center;
        color: #FFF;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 2.4px;
    }

    .highlight {
        color: #1EB4A7;
    }

    .plan_tabs {
        display: flex;
        flex-direction: row;
        gap: 6px;
        margin-top: 32px;
        margin-bottom: 18px;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 1rem;
        padding: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Hide scrollbar in Firefox */
    }

    .plan_tabs::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar in Chrome/Safari */
    }

    .tab {
        cursor: pointer;
        padding: 6px 10px;

        color: #1EB4A7;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        /* 120% */
        letter-spacing: 1px;
        background: none;
        border: none;
    }

    .tab-active {
        background: #FFF;
        color: #0A3B3B;
        border-radius: 16px;
    }

    .tab1 {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .tab1-card {
        display: flex;
        flex-direction: column;
        padding: 24px;
        gap: 22px;
        border-radius: 24px;
        background: #0A3B3B;
        flex: 1;
    }

    .tab3 {
        display: flex;
        flex-direction: column;
    }

    .tab3-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        gap: 24px;
    }

    .tab3-row {
        width: 100%;
        padding: 32px 24px;
        border-radius: 24px;
        background: #0A3B3B;
        display: flex;
        flex-direction: column;
    }


    .tab3-title {
        display: flex;
        width: 100%;
        flex-direction: row;
        align-items: center;
        font-family: "Montserrat";
        font-weight: 500;
        font-style: Medium;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0px;
        flex: 1;
    }

    .tab3-title img {
        margin-right: 16px;
    }

    .tab3-price {
        color: #FFF;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Montserrat";
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
        margin-right: 16px;
    }

    .practise-selected-col {
        display: flex;
        flex-direction: column;
    }

    .time-selector {
        display: flex;
        height: 48px;
        align-items: center;
        gap: 8px;
    }

    .btn-min {
        display: flex;
        padding: 12px;
        align-items: center;
        gap: 4px;
        border-radius: 16px;
        background: rgba(12, 33, 36, 0.40);
    }

    .btn-plus {
        display: flex;
        padding: 12px;
        align-items: center;
        gap: 4px;
        border-radius: 16px;
        background: var(--Bacground-Black, #0C2124);
    }

    .time-selector-sm {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: 20px;
    }

    .btn-min-sm {
        display: flex;
        padding: 4px;
        align-items: center;
        gap: 4px;
        border-radius: 4px;
        background: rgba(12, 33, 36, 0.40);
    }

    .btn-plus-sm {
        display: flex;
        padding: 4px;
        align-items: center;
        gap: 4px;
        border-radius: 4px;
        background: var(--Bacground-Black, #0C2124);
    }

    .practise-time-selected-sm {
        color: #FFF;
        text-align: center;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Noto Sans Armenian";
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 16px;
        /* 80% */
    }

    .plan_description_div {
        flex: 1;
        gap: 10px;
        display: flex;
        flex-direction: column;
    }

    .plan_description {
        display: flex;
        flex-direction: row;
        align-items: center;

    }

    .plan_description img {
        margin-right: 12px;
        width: 24px;
        height: 24px;
    }

    .plan_title {
        color: #FFF;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Montserrat";
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 30px */
        display: flex;
        flex-direction: row;
    }

    .plan_title img {
        margin-right: 16px;
    }

    .plan_price {
        color: #FFF;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Noto Sans Armenian";
        font-size: 40px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
        /* 60px */
    }

    .plan_btn {
        border-radius: 16px;
        background: #FFF;
        width: 100%;
        color: #0A3B3B;
        text-align: center;
        font-family: "AHBN";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
        padding: 12px 32px;
        align-self: flex-end;
    }

    .tab3-lastrow-2 {
        width: 100%;
        margin-top: 30px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .tab3-lastrow {
        display: flex;
        flex-direction: column;
        padding: 16px;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        border-radius: 24px;
        border: 1px solid #FFF;
    }

    .tab3-title {
        color: var(--White, #FFF);
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Montserrat";
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 36px */
    }

    .tab3-pay {
        display: flex;
        width: 156px;
        height: 48px;
        padding: 12px 32px;
        justify-content: center;
        align-items: center;
        border-radius: 16px;
        background: #FFF;
        color: #0A3B3B;
        text-align: center;
        font-family: "AHBN";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }

    .footer_row1 {
        display: flex;
        flex-direction: column;
        padding: 40px;
        align-items: center;
    }

    .footer_row2 {
        display: flex;
        flex-direction: column;
        padding: 40px;
        border-top: 1px solid #114D4B;
        align-items: center;
        gap: 32px;
        text-align: center;

    }

    .footer_col3 {
        margin-top: 80px;
    }

    .footer_col3 img {
        width: 163.525px;
        height: 48px;
    }

    .faq_title {
        margin-top: 80px;
        color: #FFF;
        font-family: "AHBN";
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 2.4px;
        text-align: center;
    }

    .footer_col1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer_col2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 50px;
    }

    .site-footer {
        margin-top: 80px;
    }


    .payment-icons {
        display: flex;
        width: auto;
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .practice__btn {
        display: flex;
        width: 64px;
        height: 17px;
        padding: 6px 10px;
        justify-content: center;
        align-items: center;
        gap: 3px;
        border-radius: 5px;
        border: 1px solid #DB7070;
        background-color: transparent;
        color: #FFF;
        text-shadow: 0px 0px 4.227px rgba(102, 49, 0, 0.27);
        font-family: "AHBN";
        font-size: 7px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: capitalize;
    }

    /*Endd */

}



/* Tablet and Desktop Styles */
@media (min-width: 834px) and (max-width: 1439px) {
.training-free-mobile{
    display: none;
}

    .training-tabs__separator {
        content: "";
        display: inline-block;
        margin-left: -1px;
        width: 1px;
        height: 58px;
        background: rgba(108, 122, 127, 0.33);
    }

    .training-tabs__container {
        flex-direction: row;
        width: 786px;
        align-items: center;
        justify-content: space-between;
        border-radius: 24px;
        margin: auto;
    }

    .training-tab {
        max-width: 354px;
        height: 90px;
        display: flex;
        align-items: center;
    }


    .nav {
        width: 780px;
        margin: auto;
    }

    #navlogo {
        width: 120px;
        height: 38px;
        flex-shrink: 0;
    }

    #navSignup {
        color: #FFF;
        text-shadow: 0px 0px 7.4px rgba(102, 49, 0, 0.27);
        font-family: "AHBN";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: capitalize;
        display: flex;
        height: 48px;
        padding: 18px 32px;
        justify-content: center;
        align-items: center;
        border-radius: 16px;
        background: var(--Secondary, #DB7070);
        cursor: pointer;
        border: none;
    }

    .nav__menu {
        display: flex !important;
        flex-direction: row;
        align-items: center;
    }

    .nav__menu li {
        margin-right: 24px;
    }

    .nav__menu li:last-child {
        margin-right: 0;
    }

    .nav__menu a {
        color: var(--color-white);
        font-family: "Montserrat";
        font-size: 1rem;
        font-weight: 400;
        transition: color 0.3s ease;
    }

    #overlay {
        visibility: hidden;
    }

    .main__mobile {
        display: none;
    }

    .main__desktop {
        display: flex;
        flex-direction: row;
        width: 780px;
        margin: auto;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 16px;
        border: 1px solid var(--color-nav-border);
        background: var(--color-nav-bg);
        box-shadow: 0px 4px 24.5px 0px var(--color-nav-shadow);
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }




    .how-img-mobile {
        display: none;
    }

    .container {
        width: 90%;
        max-width: 768px;
        margin: 0 auto;
        padding-top: var(--space-m);
        padding-bottom: var(--space-m);
    }

    .site-header {
        margin: 0 auto;
        display: flex;
        flex-direction: column;

    }

    .site-header:after {
        content: '';
        position: absolute;
        right: 17%;
        top: 0;
        width: 815px;
        height: 671px;
        background-image: url(../img/road.svg);
        background-repeat: no-repeat;
        background-position: 100% 0;
        background-size: contain;
        display: block;
        z-index: -1;
    }

    .rate-date {
        margin-left: 4px;
        color: #C3C7C8;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .bottom-lines {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 3px;
        overflow: hidden;
    }

    .bottom-lines span {
        display: block;
        height: 4px;
        width: 381px;
    }

    .bottom-lines span:first-child {
        margin-right: 3px;
    }

    .bottom-lines span:last-child {
        margin-left: 3px;
    }

    .main__left {

        margin-top: 66px;
    }

    .main__right {
        width: 600px;
        height: 506px;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .main__img {
        max-width: 100%;
        height: auto;
        display: block;
        margin-right: 67px;
    }

    .nav {
        width: 786px;
        margin: auto;
        margin-top: 18px;
        padding: 16px;
        background: rgba(182, 211, 227, 0.13);
        box-shadow: 0px 4px 24.5px 0px rgba(28, 46, 85, 0.10);
        backdrop-filter: blur(58.400001525878906px);
    }

    .main__desktop {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 786px;
        margin: auto;
    }

    .main__title {
        color: #FFF;
        font-family: "AHBN";
        font-size: 64px;
        font-style: normal;
        font-weight: 400;
        line-height: 110%;
        /* 70.4px */
        letter-spacing: 3.2px;
        text-transform: capitalize;
        text-wrap: nowrap;
    }

    .main__text-highlight {
        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 64px;
        font-style: normal;
        font-weight: 400;
        line-height: 110%;
        letter-spacing: 3.2px;
        text-transform: capitalize;
    }

    .main__text {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 21px */
        margin-top: 8px;
    }

    .main__buttons {
        display: flex;
        flex-direction: row;
        margin-top: 112px;
    }


    .btn--right {
        margin-left: 12px;
    }

    .training-tabs__container {
        width: 786px;
        margin: auto;
        overflow: hidden;
    }

    .online-training__title {
        color: var(--Primary, #1EB4A7);
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 57.6px */
        letter-spacing: 2.4px;
        text-transform: capitalize;
    }

    .online-training-highlight {
        color: #FFF;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: 2.4px;
        text-transform: capitalize;
    }

    .online-training {
        display: flex;
        margin-top: 32px;
        padding: 40px;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        border-radius: 24px;
        background: #0C2124;
        box-shadow: 0px -222px 89px 0px rgba(6, 99, 93, 0.02), 0px -125px 75px 0px rgba(6, 99, 93, 0.05), 0px -55px 55px 0px rgba(6, 99, 93, 0.09), 0px -14px 30px 0px rgba(6, 99, 93, 0.10), 0px 222px 89px 0px rgba(6, 99, 93, 0.02), 0px -11px 75px 0px rgba(6, 99, 93, 0.05), 0px 14px 30px 0px rgba(6, 99, 93, 0.10), 0px 55px 55px 0px rgba(6, 99, 93, 0.09);
    }

    .online-training__column--center {
        width: 160px;
        height: 340px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


    .online-training__features li {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 242px;
        height: 132px;
        gap: 12px;
        color: #FFF;
        font-family: "AHBN";
        font-size: 28px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 33.6px */
        letter-spacing: 1.4px;
        text-transform: capitalize;
    }

    .online-training__features li:not(:last-child) {
        border-bottom: 1px solid #114D4B;
    }

    .online-training__column--left {
        width: 245px;
    }

    .online-free-desktop {
        display: flex;
        padding: 6px 16px;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 0px;
        bottom: 10px;
        border-radius: 12px;
        border: 1px solid var(--Secondary, #DB7070);
        color: #DB7070;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        width: 112px;
        height: 32px;
    }


    .surprise {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: row;
        padding: 56px;
        border-radius: 24px;
        background: var(--Background-100, #0A3B3B);
        justify-content: center;
        align-items: center;
        gap: 48px;
        margin-top: 80px;
    }

    .surprise-col2 {
        display: flex;
        flex-direction: column;

    }

    .surprise img {
        width: 180px;
        height: auto;
    }

    .surprise__title {
        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 57.6px */
        letter-spacing: 2.4px;
        text-transform: capitalize;
    }

    .surprise__title {
        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 57.6px */
        letter-spacing: 2.4px;
        text-transform: capitalize;
    }

    .surprise__text {
        color: #1EB4A7;
        font-family: "Montserrat";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 30px */
        margin-top: 16px;
    }

    .surprise__text-highlight {
        color: var(--Secondary, #DB7070);
        font-family: "Montserrat";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
    }

    .surprise__info {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        margin-top: 40px;
    }

    .how-it-works {
        position: relative;
        width: 786px;
        margin: auto;
        border-radius: 24px;
        padding: 50px;
        background: var(--Bacground-Black, #0C2124);
        box-shadow: 0px -55px 55px 0px rgba(6, 99, 93, 0.09), 0px 125px 75px 0px rgba(6, 99, 93, 0.05), 0px 14px 30px 0px rgba(6, 99, 93, 0.10);
        display: flex;
        flex-direction: row;
        margin-top: 80px;
    }

    .how-it-works__img {
        position: absolute;
        bottom: 40px;
        right: 20px;
        width: 350px;
        height: auto;
    }

    .how-it-works__title {
        color: #FFF;
        font-family: "AHBN";
        font-size: 64px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        /* 64px */
        letter-spacing: 3.2px;
        text-transform: capitalize;
    }

    .how-it-works__title-highlight {
        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 64px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 3.2px;
        text-transform: capitalize;
    }

    .how-it-works__buttons {
        display: flex;
        flex-direction: row;
        margin-top: 48px;
    }

    .courses {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        width: 786px;
        margin: 0 auto;
        gap: 24px;
        margin-top: 32px;
        flex-wrap: wrap;

    }

    .courses__title {
        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        /* 48px */
        letter-spacing: 2.4px;
        text-transform: capitalize;
    }

    .courses__title-highlight {
        color: #FFF;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 2.4px;
        text-transform: capitalize;
    }

    .course {
        position: relative;
        border-radius: 24px;
        background: #0C2124;
        padding: 24px;
    }

    #course2 {
        position: absolute;
        right: -35px;
        top: -75px;
    }

    .course3 {
        display: flex;
        flex-direction: row;
    }

    .course3 img {
        width: 70px;
        height: 103px;
    }

    .course3 ul {
        padding-top: 18px;
    }

    #course4 {
        width: calc(100% + 48px);
        max-width: calc(100% + 48px);
        /* full width + left/right padding */
        margin-left: -24px;
        margin-right: -24px;
        margin-top: 22px;
        display: block;
    }

    .course1 {
        position: relative;
        border-radius: 20px;
        background: linear-gradient(242deg, #1EB4A7 -1.4%, #009378 68.88%);
        height: 283px;
        overflow: hidden;
    }

    .course1 img {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .course h3 {
        color: #FFF;
        font-family: "AHBN";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 112.08%;
        /* 26.899px */
        letter-spacing: 1.2px;
        text-transform: capitalize;
        text-wrap: nowrap;
    }

    .course__info {
        margin-top: 47px !important;
        color: #D8D8D8;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 21px */
    }

    .course__info1 div {
        display: flex;
        flex-direction: row;
    }

    .course__info1 div img {
        margin-right: 8px;
    }

    .course__info1 {
        margin-top: 18px !important;
    }

    .course p {
        color: #D8D8D8;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 21px */
        margin-top: 18px;
    }

    .course div:not(:first-child) {
        margin-top: 8px;
    }

    .courses_left {
        display: flex;
        flex-direction: column;
        flex: 1;
        align-items: stretch;
        gap: 22px;
        flex-wrap: wrap;
    }

    .courses_main_container-mobile {
        display: none;
    }

    .courses_main_container {
        display: flex;
        padding: 80px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        align-self: stretch;
        border-radius: 80px;
        background: #0B2D2E;
        margin-top: 80px;
    }



    .course_txt_highlight {

        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 112.08%;
        /* 26.899px */
        letter-spacing: 1.2px;
        text-transform: capitalize;
    }


    .courses_right {
        display: flex;
        flex-direction: column;
        flex: 2;
        align-items: stretch;
        gap: 22px;
        flex-wrap: wrap;

    }

    .courses_row1 {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 20px;
    }

    .courses_row2 {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 20px;
    }

    .course li {
        color: #D8D8D8;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 21px */
        list-style-position: inside;
        list-style-type: circle;
    }

    .practice__title {
        color: #FFF;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 2.4px;
        text-transform: capitalize;
        margin-top: 80px;
    }

    .practice__title-highlight {
        color: #1EB4A7;
    }

    .practice {
        border-radius: 24px;
        background: var(--Bacground-Black, #0C2124);
        padding: 48px;
        /* Primary Shadow */
        box-shadow: 0px -222px 89px 0px rgba(6, 99, 93, 0.02), 0px -125px 75px 0px rgba(6, 99, 93, 0.05), 0px -55px 55px 0px rgba(6, 99, 93, 0.09), 0px -14px 30px 0px rgba(6, 99, 93, 0.10), 0px 222px 89px 0px rgba(6, 99, 93, 0.02), 0px 125px 75px 0px rgba(6, 99, 93, 0.05), 0px 55px 55px 0px rgba(6, 99, 93, 0.09), 0px 14px 30px 0px rgba(6, 99, 93, 0.10);
        display: flex;
        flex-direction: row;
        margin-top: 24px;
        gap: 120px;
    }

    .practice__app-icons {
        display: flex;
        flex-direction: row;
        position: absolute;
        bottom: 30px;
    }

    .practice__text {
        padding: 24px;
        border-radius: 12px;
        border: 1px solid #FFF;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 32px;
        margin-bottom: 32px;
        text-wrap: nowrap;
        min-width: 280px;
    }

    .practice__text img {
        margin-right: 10px;
    }

    .practise-col1 {
        position: relative;
    }

    .practise-col2 {
        display: flex;
        flex-direction: row;

        align-items: stretch;
    }

    .practise__left {
        display: flex;
        flex-direction: column;
    }

    .practise__left img {
        width: 150px;

    }

    .practise-stroke {
        stroke-width: 1px;
        stroke: rgba(30, 180, 167, 0.50);
        margin: 0 24px;
        height: 100%;
    }

    .practise__right {
        display: flex;
        flex-direction: column;
    }

    .practise__name {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .practise__text {
        margin-top: 12px;
    }

    .practise__car {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 112.08%;
        /* 17.933px */
        text-transform: capitalize;
        margin-top: 22px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .practise__exp {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 112.08%;
        /* 17.933px */
        text-transform: capitalize;
        margin-top: 22px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .stars {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 10px;
        justify-content: flex-start;
        color: #C3C7C8;
        font-family: "Montserrat";
        font-size: 12.5px;
        font-style: normal;
        font-weight: 500;
        text-transform: capitalize;
        margin-top: 16px;
    }

    .practise__star-text {
        margin-left: 4px;
    }

    .stars img {
        width: 20px;
        height: 20px;
    }

    .driver__name {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-top: 24px;
    }

    .review-stars {
        display: flex;
        flex-direction: row;
        margin-left: 16px;
        align-items: center;
    }

    .practise__time {
        border-radius: 6.854px;
        border: 0.699px solid #FFF;
        padding: 4.896px 10.491px;
        color: #6C7A7F;
        text-align: center;
        font-family: "Montserrat";
        font-size: 11.19px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-top: 6px;
    }

    .practise__day {
        color: #FFF;
        text-align: center;
        font-family: "Montserrat";
        font-size: 11.19px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .available-time {
        color: #DCDCDC;
    }

    .practise__time-selected {
        border-radius: 6.854px;
        background: #DB7070;
        border: 0.699px solid transparent;
        padding: 4.896px 10.491px;
        color: #DCDCDC;
        text-align: center;
        font-family: "Montserrat";
        font-size: 11.19px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-align: center;
    }

    .practise-time-selected {
        color: #FFF;
        text-align: center;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Noto Sans Armenian";
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
    }



    .tab3-lastrow {
        display: flex;
        padding: 16px;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        border-radius: 24px;
        border: 1px solid #FFF;
    }

    .tab3-title {
        color: var(--White, #FFF);
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Montserrat";
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 36px */
    }

    .tab3-pay {
        display: flex;
        width: 156px;
        height: 48px;
        padding: 12px 32px;
        justify-content: center;
        align-items: center;
        border-radius: 16px;
        background: #FFF;
        color: #0A3B3B;
        text-align: center;
        font-family: "AHBN";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }

    .tab3-price {
        color: #FFF;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Montserrat";
        font-size: 40px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
        /* 60px */
    }


    .practise-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .practice__time {
        display: flex;
        flex-direction: column;
    }

    .practice__time-text1 {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 10px;
    }

    .practice__time-text2 {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-top: 7px;
    }

    .practice-hour {
        color: #FFF;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Montserrat";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
    }

    .practise_reg {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: 32px;
        gap:4px;
    }

    .practise__reg-title {
        margin-top: 32px;

    }

    .practice__scheduled {
        margin-top: 32px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .practise__rev-text {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        margin-top: 8px;
        /* 24px */
    }

    .practice__btn {
        display: flex;
        width: 102px;
        height: 28px;
        padding: 10px 18px;
        justify-content: center;
        align-items: center;
        gap: 6px;
        border-radius: 9px;
        border: 1px solid #DB7070;
        background-color: transparent;
        color: #FFF;
        text-shadow: 0px 0px 4.227px rgba(102, 49, 0, 0.27);
        font-family: "AHBN";
        font-size: 11.423px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: capitalize;
    }

    .car-sm {
        width: 24px !important;
        height: 24px;
        margin-right: 8px;
    }

    .plans_title {
        margin-top: 80px;
        text-align: center;
        color: #FFF;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 2.4px;
    }

    .highlight {
        color: #1EB4A7;
    }

    .plan_tabs {

        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 8px;

        margin-top: 32px;
        margin-bottom: 18px;
    }

    .tab {
        cursor: pointer;
        padding: 8px 40px;

        color: #1EB4A7;
        font-family: "Montserrat";
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        /* 120% */
        letter-spacing: 1px;
        background: none;
        border: none;
    }

    .tab-active {
        background: #FFF;
        color: #0A3B3B;
        border-radius: 16px;
    }

    .tab1 {
        display: flex;
        flex-direction: row;
        gap: 22px;
    }

    .tab1-card {
        display: flex;
        flex-direction: column;
        padding: 24px;
        gap: 22px;
        border-radius: 24px;
        background: #0A3B3B;
        flex: 1;
    }

    .tab3 {
        display: flex;
        flex-direction: column;
    }

    .tab3-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        gap: 24px;
    }

    .tab3-row {
        width: 100%;
        padding: 32px 24px;

        border-radius: 24px;
        background: #0A3B3B;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .tab3-title {
        display: flex;
        flex-direction: row;
        align-items: center;
        font-family: "Montserrat";
        font-weight: 500;
        font-style: Medium;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0px;
        flex: 1;
    }

    .tab3-title img {
        margin-right: 16px;
    }

    .tab3-price {
        color: #FFF;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Montserrat";
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
        margin-right: 16px;
    }

    .practise-selected-col {
        display: flex;
        flex-direction: column;
    }

    .time-selector {
        display: flex;
        height: 48px;
        align-items: center;
        gap: 8px;
    }

    .btn-min {
        display: flex;
        padding: 12px;
        align-items: center;
        gap: 4px;
        border-radius: 16px;
        background: rgba(12, 33, 36, 0.40);
    }

    .btn-plus {
        display: flex;
        padding: 12px;
        align-items: center;
        gap: 4px;
        border-radius: 16px;
        background: var(--Bacground-Black, #0C2124);
    }

    .time-selector-sm {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: 20px;
    }

    .btn-min-sm {
        display: flex;
        padding: 4px;
        align-items: center;
        gap: 4px;
        border-radius: 4px;
        background: rgba(12, 33, 36, 0.40);
    }

    .btn-plus-sm {
        display: flex;
        padding: 4px;
        align-items: center;
        gap: 4px;
        border-radius: 4px;
        background: var(--Bacground-Black, #0C2124);
    }

    .practise-time-selected-sm {
        color: #FFF;
        text-align: center;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Noto Sans Armenian";
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 16px;
        /* 80% */
    }

    .plan_description_div {
        flex: 1;
        gap: 10px;
        display: flex;
        flex-direction: column;
    }

    .plan_description {
        display: flex;
        flex-direction: row;
        align-items: center;

    }

    .plan_description img {
        margin-right: 12px;
        width: 24px;
        height: 24px;
    }

    .plan_title {
        color: #FFF;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Montserrat";
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 30px */
        display: flex;
        flex-direction: row;
    }

    .plan_title img {
        margin-right: 16px;
    }

    .plan_price {
        color: #FFF;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Noto Sans Armenian";
        font-size: 40px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
        /* 60px */
    }

    .plan_btn {
        border-radius: 16px;
        background: #FFF;
        width: 100%;
        color: #0A3B3B;
        text-align: center;
        font-family: "AHBN";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
        padding: 12px 32px;
        align-self: flex-end;
    }

    .faq_title {
        color: #FFF;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 2.4px;
        text-align: center;
    }

}

/*  Desktop Styles */
@media (min-width: 1440px) {
    .training-free-mobile{
    display: none;
}
    .main__mobile {
        display: none;
    }

    .close-wrapper {
        display: none;
    }

    .nav__toggle {
        display: none;
    }

    .nav__menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-right: 20px;
        gap: 24px;
    }

    #navSignup {
        color: #FFF;
        text-shadow: 0px 0px 7.4px rgba(102, 49, 0, 0.27);
        font-family: "AHBN";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: capitalize;
        display: flex;
        height: 48px;
        padding: 18px 32px;
        justify-content: center;
        align-items: center;
        border-radius: 16px;
        background: var(--Secondary, #DB7070);
        cursor: pointer;
        border: none;
    }

    .how-img-mobile {
        display: none;
    }

    .container {
        width: 90%;
        max-width: 1246px;
        margin: 0 auto;
        padding-top: var(--space-m);
        padding-bottom: var(--space-m);
    }

    .site-header {
        margin: 0 auto;
        display: flex;
        flex-direction: column;

    }

    .site-header:after {
        content: '';
        position: absolute;
        right: 17%;
        top: 0;
        width: 815px;
        height: 671px;
        background-image: url(../img/road.svg);
        background-repeat: no-repeat;
        background-position: 100% 0;
        background-size: contain;
        display: block;
        z-index: -1;
    }

    .rate-date {
        margin-left: 4px;
        color: #C3C7C8;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .bottom-lines {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 3px;
        overflow: hidden;
    }

    .bottom-lines span {
        display: block;
        height: 4px;
        width: 381px;
    }

    .bottom-lines span:first-child {
        margin-right: 3px;
    }

    .bottom-lines span:last-child {
        margin-left: 3px;
    }

    .main__left {

        margin-top: 66px;
    }

    .main__right {
        width: 600px;
        height: 506px;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .main__img {
        max-width: 100%;
        height: auto;
        display: block;
        margin-right: 67px;
    }

    .nav {
        width: 1246px;
        margin: auto;
        margin-top: 18px;
        padding: 16px;
        background: rgba(182, 211, 227, 0.13);
        box-shadow: 0px 4px 24.5px 0px rgba(28, 46, 85, 0.10);
        backdrop-filter: blur(58.400001525878906px);
        border-radius: 16px;
        border: 1px solid #D7EFEE;
    }

    .main__desktop {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 1246px;
        margin: auto;
    }

    .main__title {
        color: #FFF;
        font-family: "AHBN";
        font-size: 64px;
        font-style: normal;
        font-weight: 400;
        line-height: 110%;
        /* 70.4px */
        letter-spacing: 3.2px;
        text-transform: capitalize;
        text-wrap: nowrap;
    }

    .main__text-highlight {
        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 64px;
        font-style: normal;
        font-weight: 400;
        line-height: 110%;
        letter-spacing: 3.2px;
        text-transform: capitalize;
    }

    .main__text {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 21px */
        margin-top: 8px;
    }

    .main__buttons {
        display: flex;
        flex-direction: row;
        margin-top: 112px;
    }


    .btn--right {
        margin-left: 12px;
    }

    .training-tabs__container {
        width: 1164px;
        margin: auto;
        overflow: hidden;
        display: flex;
        flex-direction: row;
    }

    .online-training__title {
        color: var(--Primary, #1EB4A7);
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 57.6px */
        letter-spacing: 2.4px;
        text-transform: capitalize;
    }

    .online-training-highlight {
        color: #FFF;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: 2.4px;
        text-transform: capitalize;
    }

    .online-training {
        display: flex;
        margin-top: 32px;
        padding: 40px;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        border-radius: 24px;
        background: #0C2124;
        box-shadow: 0px -222px 89px 0px rgba(6, 99, 93, 0.02), 0px -125px 75px 0px rgba(6, 99, 93, 0.05), 0px -55px 55px 0px rgba(6, 99, 93, 0.09), 0px -14px 30px 0px rgba(6, 99, 93, 0.10), 0px 222px 89px 0px rgba(6, 99, 93, 0.02), 0px -11px 75px 0px rgba(6, 99, 93, 0.05), 0px 14px 30px 0px rgba(6, 99, 93, 0.10), 0px 55px 55px 0px rgba(6, 99, 93, 0.09);
    }

    .online-training__column--center {
        width: 250px;
        height: 513px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


    .online-training__features li {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 390px;
        height: 132px;
        gap: 12px;
        color: #FFF;
        font-family: "AHBN";
        font-size: 28px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 33.6px */
        letter-spacing: 1.4px;
        text-transform: capitalize;
    }

    .online-training__features li:not(:last-child) {
        border-bottom: 1px solid #114D4B;
    }

    .online-training__column--left {
        width: 383px;
    }

    .online-free-desktop {
        display: flex;
        padding: 6px 16px;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 0px;
        bottom: 10px;
        border-radius: 12px;
        border: 1px solid var(--Secondary, #DB7070);
        color: #DB7070;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        width: 112px;
        height: 32px;
    }


    .surprise {
        width: 1344px;
        margin: auto;
        display: flex;
        flex-direction: row;
        padding: 56px;
        border-radius: 24px;
        background: var(--Background-100, #0A3B3B);
        justify-content: center;
        align-items: center;
        gap: 48px;
        margin-top: 80px;
    }

    .surprise-col2 {
        display: flex;
        flex-direction: column;

    }

    .surprise img {
        width: 230px;
        height: auto;
    }

    .surprise__title {
        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 57.6px */
        letter-spacing: 2.4px;
        text-transform: capitalize;
    }

    .surprise__title {
        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        /* 57.6px */
        letter-spacing: 2.4px;
        text-transform: capitalize;
    }

    .surprise__text {
        color: #1EB4A7;
        font-family: "Montserrat";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 30px */
        margin-top: 16px;
    }

    .surprise__text-highlight {
        color: var(--Secondary, #DB7070);
        font-family: "Montserrat";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
    }

    .surprise__info {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        margin-top: 40px;
    }

    .how-it-works {
        position: relative;
        width: 1248px;
        margin: auto;
        border-radius: 24px;
        padding: 50px;
        background: var(--Bacground-Black, #0C2124);
        box-shadow: 0px -55px 55px 0px rgba(6, 99, 93, 0.09), 0px 125px 75px 0px rgba(6, 99, 93, 0.05), 0px 14px 30px 0px rgba(6, 99, 93, 0.10);
        display: flex;
        flex-direction: row;
        margin-top: 80px;
    }

    .how-it-works__img {
        position: absolute;
        bottom: 40px;
        right: 20px;
    }

    .how-it-works__title {
        color: #FFF;
        font-family: "AHBN";
        font-size: 64px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        /* 64px */
        letter-spacing: 3.2px;
        text-transform: capitalize;
    }

    .how-it-works__title-highlight {
        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 64px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 3.2px;
        text-transform: capitalize;
    }

    .how-it-works__buttons {
        display: flex;
        flex-direction: row;
        margin-top: 48px;
    }

    .courses {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        width: 1248px;
        margin: 0 auto;
        gap: 24px;
        margin-top: 32px;

    }

    .courses__title {
        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        /* 48px */
        letter-spacing: 2.4px;
        text-transform: capitalize;
    }

    .courses__title-highlight {
        color: #FFF;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 2.4px;
        text-transform: capitalize;
    }

    .course {
        position: relative;
        border-radius: 24px;
        background: #0C2124;
        padding: 24px;
    }

    #course2 {
        position: absolute;
        right: -35px;
        top: -75px;
    }

    .course3 {
        display: flex;
        flex-direction: row;
    }

    .course3 img {
        width: 70px;
        height: 103px;
    }

    .course3 ul {
        padding-top: 18px;
    }

    #course4 {
        width: calc(100% + 48px);
        max-width: calc(100% + 48px);
        /* full width + left/right padding */
        margin-left: -24px;
        margin-right: -24px;
        margin-top: 22px;
        display: block;
    }

    .course1 {
        position: relative;
        border-radius: 20px;
        background: linear-gradient(242deg, #1EB4A7 -1.4%, #009378 68.88%);
        height: 283px;
        overflow: hidden;
    }

    .course1 img {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .course h3 {
        color: #FFF;
        font-family: "AHBN";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 112.08%;
        /* 26.899px */
        letter-spacing: 1.2px;
        text-transform: capitalize;
        text-wrap: nowrap;
    }

    .course__info {
        margin-top: 47px !important;
        color: #D8D8D8;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 21px */
    }

    .course__info1 div {
        display: flex;
        flex-direction: row;
    }

    .course__info1 div img {
        margin-right: 8px;
    }

    .course__info1 {
        margin-top: 18px !important;
    }

    .course p {
        color: #D8D8D8;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 21px */
        margin-top: 18px;
    }

    .course div:not(:first-child) {
        margin-top: 8px;
    }

    .courses_left {
        display: flex;
        flex-direction: column;
        flex: 1;
        align-items: stretch;
        gap: 22px;
    }

    .courses_main_container-mobile {
        display: none;
    }

    .courses_main_container {
        display: flex;
        padding: 80px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        align-self: stretch;
        border-radius: 80px;
        background: #0B2D2E;
        margin-top: 80px;
    }



    .course_txt_highlight {

        color: #1EB4A7;
        font-family: "AHBN";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 112.08%;
        /* 26.899px */
        letter-spacing: 1.2px;
        text-transform: capitalize;
    }


    .courses_right {
        display: flex;
        flex-direction: column;
        flex: 2;
        align-items: stretch;
        gap: 22px;

    }

    .courses_row1 {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 20px;
    }

    .courses_row2 {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 20px;
    }

    .course li {
        color: #D8D8D8;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 21px */
        list-style-position: inside;
        list-style-type: circle;
    }

    .practice__title {
        color: #FFF;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 2.4px;
        text-transform: capitalize;
        margin-top: 80px;
    }

    .practice__title-highlight {
        color: #1EB4A7;
    }

    .practice {
        border-radius: 24px;
        background: var(--Bacground-Black, #0C2124);
        padding: 48px;
        /* Primary Shadow */
        box-shadow: 0px -222px 89px 0px rgba(6, 99, 93, 0.02), 0px -125px 75px 0px rgba(6, 99, 93, 0.05), 0px -55px 55px 0px rgba(6, 99, 93, 0.09), 0px -14px 30px 0px rgba(6, 99, 93, 0.10), 0px 222px 89px 0px rgba(6, 99, 93, 0.02), 0px 125px 75px 0px rgba(6, 99, 93, 0.05), 0px 55px 55px 0px rgba(6, 99, 93, 0.09), 0px 14px 30px 0px rgba(6, 99, 93, 0.10);
        display: flex;
        flex-direction: row;
        margin-top: 24px;
        gap: 120px;
    }

    .practice__app-icons {
        display: flex;
        flex-direction: row;
        position: absolute;
        bottom: 30px;
    }

    .practice__text {
        padding: 24px;
        border-radius: 12px;
        border: 1px solid #FFF;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 32px;
        margin-bottom: 32px;
        text-wrap: nowrap;
        min-width: 365px;
    }

    .practice__text img {
        margin-right: 10px;
    }

    .practise-col1 {
        position: relative;
    }

    .practise-col2 {
        display: flex;
        flex-direction: row;

        align-items: stretch;
    }

    .practise__left {
        display: flex;
        flex-direction: column;
    }

    .practise__left img {
        width: 243px;

    }

    .practise-stroke {
        stroke-width: 1px;
        stroke: rgba(30, 180, 167, 0.50);
        margin: 0 24px;
        height: 100%;
    }

    .practise__right {
        display: flex;
        flex-direction: column;
    }

    .practise__name {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .practise__text {
        margin-top: 12px;
    }

    .practise__car {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 112.08%;
        /* 17.933px */
        text-transform: capitalize;
        margin-top: 22px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .practise__exp {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 112.08%;
        /* 17.933px */
        text-transform: capitalize;
        margin-top: 22px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .stars {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 10px;
        justify-content: flex-start;
        color: #C3C7C8;
        font-family: "Montserrat";
        font-size: 12.5px;
        font-style: normal;
        font-weight: 500;
        text-transform: capitalize;
        margin-top: 16px;
    }

    .practise__star-text {
        margin-left: 4px;
    }

    .stars img {
        width: 20px;
        height: 20px;
    }

    .driver__name {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-top: 24px;
    }

    .review-stars {
        display: flex;
        flex-direction: row;
        margin-left: 16px;
        align-items: center;
    }

    .practise__time {
        border-radius: 6.854px;
        border: 0.699px solid #FFF;
        padding: 4.896px 10.491px;
        color: #6C7A7F;
        text-align: center;
        font-family: "Montserrat";
        font-size: 11.19px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin-top: 6px;
    }

    .practise__day {
        color: #FFF;
        text-align: center;
        font-family: "Montserrat";
        font-size: 11.19px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .available-time {
        color: #DCDCDC;
    }

    .practise__time-selected {
        border-radius: 6.854px;
        background: #DB7070;
        border: 0.699px solid transparent;
        padding: 4.896px 10.491px;
        color: #DCDCDC;
        text-align: center;
        font-family: "Montserrat";
        font-size: 11.19px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-align: center;
    }

    .practise-time-selected {
        color: #FFF;
        text-align: center;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Noto Sans Armenian";
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
    }



    .tab3-lastrow {
        display: flex;
        padding: 16px;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        border-radius: 24px;
        border: 1px solid #FFF;
    }

    .tab3-title {
        color: var(--White, #FFF);
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Montserrat";
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 36px */
    }

    .tab3-pay {
        display: flex;
        width: 156px;
        height: 48px;
        padding: 12px 32px;
        justify-content: center;
        align-items: center;
        border-radius: 16px;
        background: #FFF;
        color: #0A3B3B;
        text-align: center;
        font-family: "AHBN";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
    }

    .tab3-price {
        color: #FFF;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Montserrat";
        font-size: 40px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
        /* 60px */
    }


    .practise-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .practice__time {
        display: flex;
        flex-direction: column;
    }

    .practice__time-text1 {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 10px;
    }

    .practice__time-text2 {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-top: 7px;
    }

    .practice-hour {
        color: #FFF;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Montserrat";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
    }

    .practise_reg {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: 32px;
        gap:4px;
    }

    .practise__reg-title {
        margin-top: 32px;

    }

    .practice__scheduled {
        margin-top: 32px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .practise__rev-text {
        color: #FFF;
        font-family: "Montserrat";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        margin-top: 8px;
        /* 24px */
    }

    .practice__btn {
        display: flex;
        width: 102px;
        height: 28px;
        padding: 10px 18px;
        justify-content: center;
        align-items: center;
        gap: 6px;
        border-radius: 9px;
        border: 1px solid #DB7070;
        background-color: transparent;
        color: #FFF;
        text-shadow: 0px 0px 4.227px rgba(102, 49, 0, 0.27);
        font-family: "AHBN";
        font-size: 11.423px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: capitalize;
    }

    .car-sm {
        width: 24px !important;
        height: 24px;
        margin-right: 8px;
    }

    .plans_title {
        margin-top: 80px;
        text-align: center;
        color: #FFF;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 2.4px;
    }

    .highlight {
        color: #1EB4A7;
    }

    .plan_tabs {

        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 8px;

        margin-top: 32px;
        margin-bottom: 18px;
    }

    .tab {
        cursor: pointer;
        padding: 8px 40px;

        color: #1EB4A7;
        font-family: "Montserrat";
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        /* 120% */
        letter-spacing: 1px;
        background: none;
        border: none;
    }

    .tab-active {
        background: #FFF;
        color: #0A3B3B;
        border-radius: 16px;
    }

    .tab1 {
        display: flex;
        flex-direction: row;
        gap: 22px;
    }

    .tab1-card {
        display: flex;
        flex-direction: column;
        padding: 24px;
        gap: 22px;
        border-radius: 24px;
        background: #0A3B3B;
        flex: 1;
    }

    .tab3 {
        display: flex;
        flex-direction: column;
    }

    .tab3-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        gap: 24px;
    }

    .tab3-row {
        width: 100%;
        padding: 32px 24px;

        border-radius: 24px;
        background: #0A3B3B;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .tab3-title {
        display: flex;
        flex-direction: row;
        align-items: center;
        font-family: "Montserrat";
        font-weight: 500;
        font-style: Medium;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0px;
        flex: 1;
    }

    .tab3-title img {
        margin-right: 16px;
    }

    .tab3-price {
        color: #FFF;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Montserrat";
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
        margin-right: 16px;
    }

    .practise-selected-col {
        display: flex;
        flex-direction: column;
    }

    .time-selector {
        display: flex;
        height: 48px;
        align-items: center;
        gap: 8px;
    }

    .btn-min {
        display: flex;
        padding: 12px;
        align-items: center;
        gap: 4px;
        border-radius: 16px;
        background: rgba(12, 33, 36, 0.40);
    }

    .btn-plus {
        display: flex;
        padding: 12px;
        align-items: center;
        gap: 4px;
        border-radius: 16px;
        background: var(--Bacground-Black, #0C2124);
    }

    .time-selector-sm {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: 20px;
    }

    .btn-min-sm {
        display: flex;
        padding: 4px;
        align-items: center;
        gap: 4px;
        border-radius: 4px;
        background: rgba(12, 33, 36, 0.40);
    }

    .btn-plus-sm {
        display: flex;
        padding: 4px;
        align-items: center;
        gap: 4px;
        border-radius: 4px;
        background: var(--Bacground-Black, #0C2124);
    }

    .practise-time-selected-sm {
        color: #FFF;
        text-align: center;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Noto Sans Armenian";
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 16px;
        /* 80% */
    }

    .plan_description_div {
        flex: 1;
        gap: 10px;
        display: flex;
        flex-direction: column;
    }

    .plan_description {
        display: flex;
        flex-direction: row;
        align-items: center;

    }

    .plan_description img {
        margin-right: 12px;
        width: 24px;
        height: 24px;
    }

    .plan_title {
        color: #FFF;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Montserrat";
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 30px */
        display: flex;
        flex-direction: row;
    }

    .plan_title img {
        margin-right: 16px;
    }

    .plan_price {
        color: #FFF;
        font-feature-settings: 'liga' off, 'clig' off;
        font-family: "Noto Sans Armenian";
        font-size: 40px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
        /* 60px */
    }

    .plan_btn {
        border-radius: 16px;
        background: #FFF;
        width: 100%;
        color: #0A3B3B;
        text-align: center;
        font-family: "AHBN";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 1.2px;
        padding: 12px 32px;
        align-self: flex-end;
    }

    .faq_title {
        color: #FFF;
        font-family: "AHBN";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 2.4px;
        text-align: center;
    }
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 940px;
    margin: 0 auto;
    margin-top: 48px;
}

.accordion-title {
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 20px;
    font-weight: 400;
    line-height: 24.38px;
    border-radius: 24px;
    border-bottom: 1px solid var(--Divider, #114D4B);
    padding: 24px;

    color: #fff;
    position: relative;
}

.accordion-title:before,
.accordion-title:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #8796A1;
    border-radius: 10px;
}

.accordion-title:after {
    right: 24px;
    height: 3px;
    width: 19px;
}

.accordion-title:before {
    right: 32px;
    height: 19px;
    width: 3px;
}

.accordion-title:hover::after,
.accordion-title:hover::before {
    background-color: #fff;
}

.accordion-title.active-title::before {
    display: none;
}

.accordion-title:hover {
    background-color: #000;
    color: #fff;
}

.accordion-content {
    display: none;
    padding: 15px;
    background-color: transparent;
}

.accordion-content.active {
    display: block;
}