:root {
    --dark-blue: #0a345e;
    --dark-blue-hover: #06223e;
    --blue: #1b80dc;
    --blue-hover: #125a9d;
    --gold: #cea05e;
    --gold-hover: #a37e49;
    --red: #f44336;
    --red-hover: #ca2c20;
    --light-gray: #f8f8f8;
    --warning: #fff2db;
    --warning-hover: #f1dfbc;
}

body {
    color: #2d2d2d;
    font-size: 16px;
}

.class-preview video {
    border: 15px solid #eeeeee;
    border-radius: 10px;
}

a {
    text-decoration: none;
    transition: all .25s;
}

.white-text {
    color: #ffffff;
}

.red-text {
    color: var(--red);
}

.dark-blue-text {
    color: var(--dark-blue);
}

.blue-text {
    color: var(--blue);
}

.gold-text {
    color: var(--gold);
}

.gray-text {
    color: #989898;
}

.red {
    background-color: var(--red);
    color: #ffffff;
}

.dark-blue {
    background-color: var(--dark-blue);
    color: #ffffff;
}

.blue {
    background-color: var(--blue);
    color: #ffffff;
}

.gold {
    background-color: var(--gold);
    color: #ffffff;
}

.light-gray {
    background-color: var(--light-gray);
}

ul {
    padding: 0;
}

.logo {
    display: inline-block;
    img {
        width: 200px;
    }
    .years {
        width: 120px;
    }
}

.container {
    position: relative;
}

nav {
    display: block;
    height: 130px;
    position: relative;
    ul {
        position: absolute;
        bottom: 0;
        right: 0;
        list-style: none;
        li {
            list-style: none;
            display: inline-block;
            a {
                color: #686868;
                display: inline-block;
                padding: 5px 20px 0;
                font-size: 18px;
                &:hover,
                &.active {
                    color: #2d2d2d;
                }
            }
        }
    }
}

hr {
    margin: 50px 0;
}

.rounded {
    border-radius: 25px;
}

.us,
.headquarters,
.contact-page,
.testimonials {
    img {
        width: 100%;
        border-radius: 15px;
    }
    ul {
        list-style: none;
        margin-top: 30px;
        li {
            list-style: none;
            display: block;
            a {
                color: #686868;
                display: inline-block;
                display: block;
                padding: 2px 30px 2px 0;
                &:hover,
                &.active {
                    color: #2d2d2d;
                }
            }
        }
    }
    .methodology.mt-10 {
        margin-top: 0;
        padding-top: 0;
        background: none;
    }
    .policy ul li {
        position: relative;
        &::before {
            content: "";
            position: absolute;
            width: 8px;
            height: 8px;
            display: block;
            background: #242424;
            border-radius: 4px;
            left: -20px;
            top: 8px;
        }
    }
    .accordion-body ul {
        margin-left: 30px;
    }
}

.sign-in {
    display: block;
    background: var(--red);
    color: #ffffff;
    padding: 5px 25px 8px;
    border-radius: 0 0 15px 15px;
    font-size: 15px;
    position: absolute;
    z-index: 20;
    top: 0;
    right: 20px;
    &:hover {
        background: var(--red-hover);
    }
}
.open-menu {
    display: none;
    position: absolute;
    width: 30px;
    height: 24px;
    right: 20px;
    bottom: 25px;
    &::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        border: 3px solid #686868;
        border-right: 0;
        border-left: 0;
    }
    &::after {
        content: "";
        position: absolute;
        top: calc(50% - 2px);
        left: 0;
        right: 0;
        border-top: 3px solid #686868;
    }
}
.close-menu {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 51;
    width: 30px;
    height: 30px;
    &::before {
        content: "";
        display: block;
        position: absolute;
        margin-top: 15px;
        rotate: 45deg;
        width: 30px;
        border-top: 3px solid #686868;
    }
    &::after {
        content: "";
        position: absolute;
        margin-top: 15px;
        display: block;
        rotate: -45deg;
        width: 30px;
        border-top: 3px solid #686868;
    }
}
.mobile-menu {
    display: none;
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(4px);
    ul {
        list-style: none;
        margin-top: 100px;
        li {
            list-style:none;
            a {
                font-size: 36px;
                display: block;
                text-align: center;
                color: #484848;
                padding: 10px;
            }
        }
    }
    &.open {
        display: block;
    }
}

.top-message {
    background: var(--gold);
    .container {
        .row {
            .col {
                p {
                    margin: 0;
                    text-align: center;
                    margin: 5px;
                    color: #ffffff;
                }
            }
        }
    }
}

footer {
    padding-top: 30px;
    background: var(--light-gray);
    .container {
        .row {
            .col {
                .copyright {
                    font-size: 15px;
                }
                ul {
                    margin-top: 15px;
                    list-style: none;
                    li {
                        list-style: none;
                        a {
                            color: #686868;
                            font-size: 15px;
                            &:hover {
                                color: #2d2d2d;
                            }
                        }
                    }
                }
                .gandhi {
                    color: var(--gold);
                    text-align: right;
                    font-size: 15px;
                    margin-top: 15px;
                    img {
                        width: 80px;
                    }
                    span {
                        color: #686868;
                    }
                }
            }
        }
    }
}

.carousel#main-banners {
    background-color: var(--dark-blue);
}

.carousel#main-banners .carousel-inner .carousel-item {
    height: 590px;
    background-size: 1440px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(1, 13, 25, .45);
    background-blend-mode: overlay;
    padding: 100px 0 0;
    .container {
        padding: 0 80px;
        .row {
            .col {
                p {
                    font-size: 24px;
                    color: #ffffff;
                    margin: 60px 0 40px;
                    max-width: 850px;
                    font-weight: 300;
                    line-height: 28px;
                    text-shadow: 2px 2px 4px rgba(1, 13, 25, .6);
                }
                .agenda {
                    width: 100%;
                }
            }
        }
    }
}

.giant {
    font-size: 64px !important;
    line-height: 64px !important;
    margin-top: -20px !important;
    max-width: 100% !important;
    strong {
        font-weight: 700 !important;
    }
}
.giant-2 {
    font-size: 56px !important;
    line-height: 56px !important;
    margin-top: -20px !important;
    max-width: 100% !important;
    strong {
        font-weight: 700 !important;
    }
}
.big {
    font-size: 20px !important;
    line-height: 26px !important;
}
.bigger {
    font-size: 30px !important;
    line-height: 34px !important;
}

.featured-text {
    text-align: center;
}

.course-logo {
    background-color: #ffffff;
    padding: 0 20px 20px;
    border-radius: 10px;
    display: inline-block;
    img {
        width: 100%;
        max-width: 550px;
    }
}

a.btn,
button.btn {
    display: inline-block;
    background: var(--dark-blue);
    color: #ffffff;
    padding: 10px 35px;
    border-radius: 25px;
    font-size: 19px;
    &:hover {
        background: var(--dark-blue-hover);
        color: #ffffff;
    }
    &.red-btn {
        background: var(--red);
        &:hover {
            background: var(--red-hover);
        }
    }
    &.gold-btn {
        background: var(--gold);
        &:hover {
            background: var(--gold-hover);
        }
    }
}

.online-enrollment {
    background: var(--warning);
    padding: 25px;
    font-size: 18px;
    a {
        float: right;
    }
}

.banner-years,
.flyer-years {
    width: 100%;
}
.flyer-years {
    display: none;
}

a[href="#video"] {
    background: #000000;
    overflow: hidden;
    display: block;
    border-radius: 20px;
    position: relative;
    img {
        width: 100%;
        border-radius: 20px;
        opacity: .45;
    }
    &::after {
        position: absolute;
        z-index: 10;
        content: "";
        width: 0;
        height: 0;
        border-top: 40px solid transparent;
        border-bottom: 40px solid transparent;
        border-left: 70px solid #ffffff;
        left: calc(50% - 35px);
        top: calc(45% - 20px);
    }
}

#video-short .modal-content {
    max-width: 480px;
    margin: 0 auto;
}

.mt-10 {
    margin-top: 100px;
}

h3 {
    font-size: 36px;
    font-weight: 700;
}

.social {
    text-align: right;
}

.video-preview-text {
    padding-left: 80px;
    h3 {
        margin-bottom: 40px;
    }
}

.course {
    width: 100%;
    min-height: 550px;
    background-color: var(--light-gray);
    background-size: fill;
    background-position: center;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    .title {
        background: rgba(255, 255, 255, .85);
        padding: 25px;
        text-align: center;
        position: absolute;
        bottom: 25px;
        img {
            width: 90%;
            margin-bottom: 20px;
        }
    }
}

.desktop {
    display: inline-block;
}
.mobile {
    display: none;
}

.course-selector {
    background: #f2f2f2;
    position: relative;
    z-index: 2;
    .container {
        text-align: center;
        a {
            display: block;
            border-radius: 10px 10px 0 0;
            padding: 15px 10px 25px;
            margin-top: 20px;
            opacity: .5;
            border-bottom: 0;
            margin-bottom: -1px;
            img {
                width: 75%;
            }
            &.active {
                background: #ffffff;
                opacity: 1;
                border: 1px solid #dddddd;
                border-bottom: 1px solid #ffffff;
            }
            &:hover {
                background: #ffffff;
                border: 1px solid #dddddd;
                &:not(.active) {
                    opacity: .8;
                }
                &.active {
                    border-bottom: 1px solid #ffffff;
                }
            }
        }
    }

    & + .space {
        height: 40px;
        background: #ffffff;
        border-top: 1px solid #dddddd;
        position: relative;
        z-index: 1;
    }
}

.course-logo {
    max-width: 450px;
    width: 100%;
    margin-top: 20px;
}

.course-banner {
    background-color: var(--dark-blue);
    & > div {
        padding: 60px 20px;
        background-size: 1440px;
        background-position: center;
        background-repeat: no-repeat;
        background-color: rgba(1, 13, 25, .6);
        background-blend-mode: overlay;
        img {
            height: 240px;
        }
    }
}

.methodology {
    background: var(--light-gray);
    padding: 80px 0;
    .number {
        width: 100px;
        height: 100px;
        display: block;
        border-radius: 50px;
        font-size: 48px;
        line-height: 95px;
        font-weight: 700;
        text-align: center;
    }
}

.carousel#headquarters {
    .carousel-inner {
        border-radius: 25px;
        .carousel-item {
            height: 420px;
            background-size: 100%;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 25px;
            overflow: hidden;
            .carousel-caption {
                left: 0;
                right: 0;
                background: rgba(0,0,0,.75);
                p {
                    margin: 0;
                }
            }
        }
    }
    .carousel-control-prev,
    .carousel-control-next {
        height: 80px;
        background: var(--dark-blue);
        border-radius: 6px;
        top: calc(50% - 40px);
        width: 80px;
        opacity: 1;
        &:hover {
            background: var(--dark-blue-hover);
        }
    }
    .carousel-control-prev {
        left: -40px;
    }
    .carousel-control-next {
        right: -40px;
    }
}

.carousel#testimonials {
    box-shadow: 2px 2px 20px rgba(0,0,0,.15);
    border-radius: 25px;
    margin-top: 30px;
    .carousel-inner .carousel-item {
        min-height: 180px;
        background: #ffffff;
        padding: 35px 55px;
        border-radius: 25px;
        p {
            margin: 0;
        }
    }
    .carousel-control-prev,
    .carousel-control-next {
        height: 50px;
        background: #ffffff;
        border: 1px solid #e5e5e5;
        border-radius: 25px;
        top: calc(50% - 25px);
        width: 50px;
        opacity: 1;
        &:hover {
            background: #f2f2f2;
        }
        span {
            filter: invert(1);
            opacity: .5;
        }
    }
    .carousel-control-prev {
        left: -25px;
    }
    .carousel-control-next {
        right: -25px;
    }
}

.qualities,
.counters {
    .col {
        p {
            background: var(--light-gray);
            border-radius: 25px;
            text-align: center;
            padding: 50px 0;
            min-height: 320px;
        }
        &:first-child {
            img {
                margin-right: -50px;
            }
        }
    }
}
.counters {
    .col {
        p {
            min-height: 50px;
        }
    }
}

.contact {
    background: var(--dark-blue);
    padding: 30px 50px 50px;
    border-radius: 30px;
    h3 {
        color: #ffffff;
    }
    .row {
        margin-top: 20px;
        .col {
            position: relative;
        }
    }
    form {
        input[type=text],
        input[type=email],
        textarea,
        select {
            background: rgba(255, 255, 255, .25);
            width: 100%;
            padding: 10px 20px;
            border-radius: 25px;
            border: 0;
            height: 50px;
            color: #ffffff;
            outline: none;
            &::placeholder {
                color: #ffffff;
                opacity: .5;
            }
        }
        textarea {
            resize: none;
            height: 200px;
        }
        .col:has(select) {
            display: none;
        }
        small {
            display: block;
            line-height: 20px;
            text-align: right;
            color: #ffffff;
        }
        button {
            position: absolute;
            right: 0;
            bottom: 0;
        }
        a {
            color: #ffffff;
            opacity: .65;
            text-decoration: underline;
            &:hover {
                opacity: 1;
            }
        }
    }
}

.testimonials {
    form {
        input[type=text],
        select {
            background: #f2f2f2;
            width: 100%;
            padding: 10px 20px;
            border-radius: 25px;
            border: 0;
            height: 50px;
            color: #424242;
            outline: none;
            margin-bottom: 20px;
            &::placeholder {
                color: #ffffff;
                opacity: .5;
            }
        }
        input[type=text]::placeholder {
            color: #000000;
        }
    }
    hr {
        margin: 10px 0;
    }
    .video-testimonials-list,
    .testimonials-list,
    .goals-list {
        margin: 0;
        li {
            padding: 35px;
            &:nth-child(even) {
                background: #f8f8f8;
            }
            a {
                display: inline;
                font-size: 14px;
                color: #0060aa;
            }
            .credit {
                margin-top: 20px;
                a {
                    font-size: 14px;
                    background: var(--dark-blue);
                    display: inline-block;
                    float: right;
                    color: #ffffff;
                    border-radius: 20px;
                    text-align: center;
                    padding: 2px 10px 3px;
                    &:hover {
                        background: var(--dark-blue-hover);
                    }
                }
            }
        }
    }
    .testimonials-list {
        li {
            vertical-align: top;
            width: 46%;
            border: 1px solid #dddddd;
            border-radius: 15px;
            display: inline-block;
            margin: 10px;
            &:nth-child(even) {
                background: #ffffff;
            }
        }
    }
    .video-testimonials-list {
        li {
            padding: 0;
            vertical-align: top;
            width: 30%;
            display: inline-block;
            margin: 10px;
            &:nth-child(even) {
                background: #ffffff;
            }
            a[href="#testimonial"] {
                padding: 0;
                background: transparent;
                display: block;
                overflow: hidden;
                border-radius: 15px;
                width: 100%;
                aspect-ratio: 9/16;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                &::after {
                    display: none;
                }
            }
            video {
                display: block;
            }
        }
    }
}

.pagination {
    justify-content: center;
    position: relative;
    li {
        a {
            padding: 0 5px;
            display: inline-block;
            &.active {
                font-weight: bold;
                color: #202020;
            }
        }
    }
}

.contact-page {
    .contact {
        .col:has(select) {
            display: block;
        }
        &.mt-10 {
            margin-top: 40px;
        }
    }
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 200px;
    height: 60px;
    padding: 5px;
    z-index: 20;
    & > a {
        color: #484848;
        font-size: 14px;
        display: block;
        position: absolute;
        border-radius: 30px;
        background: var(--warning);
        box-shadow: 4px 4px 12px rgba(0,0,0,.25);
        left: 0;
        right: 0;
        bottom: 0;
        height: 60px;
        line-height: 16px;
        padding: 15px 50px 10px 25px;
        &:hover {
            background: var(--warning-hover);
        }
        img {
            height: 50px;
            position: absolute;
            right: 5px;
            top: 5px;
        }
    }
    ul {
        display: none;
        background: #ffffff;
        border-radius: 15px;
        padding: 4px;
        list-style: none;
        margin-top: -10px;
        box-shadow: 2px 2px 8px rgba(0,0,0,.25);
        li {
            list-style: none;
            a {
                display: block;
                margin: 2px;
                padding: 5px 10px;
                background: #ffffff;
                color: #686868;
                border-radius: 8px;
                &:hover {
                    color: #424242 !important;
                    background: var(--light-gray) !important;
                }
            }
        }
    }
    &.active {
        height: 228px;
        ul {
            display: block;
        }
    }
}

.schedule {
    p {
        strong {
            display: block;
            padding: 0 0 4px;
            border-bottom: 1px solid #dddddd;
            margin-bottom: 5px;
        }
        background: var(--warning);
        padding: 20px;
        border-radius: 20px;
    }
}

.warning p {
    border-radius: 15px;
    padding: 20px;
}

.headquarter-info {
    margin-left: 0;
    margin-right: 0;
    border-radius: 20px;
}
