/* =====================================================
           GLOBAL RESET
        ===================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-width: 320px;

    font-family:
        "Roboto",
        Arial,
        Helvetica,
        sans-serif;

    color: #111b4e;
    background: #ffffff;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    outline: none;
    cursor: pointer;
}

section {
    width: 100%;
}


/* =====================================================
           COLORS
        ===================================================== */

:root {
    --orange: #009dff;
    --blue: #1436d4;
    --dark-blue: #111d55;
    --navy: #0e204f;
    --white: #ffffff;
    --text: #111b4e;
    --light-gray: #f5f6fa;
}


/* =====================================================
           TOP BAR
        ===================================================== */

.topbar {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 77px;

    background-color: var(--orange);
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 25px;

    z-index: 2000;

    transform: translateZ(0);
}


/* =====================================================
           SOCIAL MEDIA AREA
        ===================================================== */

.top-left {
    display: flex;
    align-items: center;
    gap: 18px;
}


.social-link {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;

    transition:
        background-color .2s ease,
        color .2s ease,
        transform .2s ease,
        border-color .2s ease;
}


.social-link:hover {
    background-color: #ffffff;
    color: var(--orange);

    transform: translateY(-3px);

    border-color: #ffffff;
}


.social-link svg {
    width: 21px;
    height: 21px;

    fill: currentColor;
}


/* =====================================================
           TOP RIGHT / SEARCH
        ===================================================== */

.top-right {
    height: 100%;

    display: flex;
    align-items: center;
}


.top-search {
    width: 310px;
    height: 48px;

    display: flex;
    align-items: center;

    background: #ffffff;

    border-radius: 7px;

    overflow: hidden;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, .12);
}


.top-search input {
    width: 100%;
    height: 100%;

    padding: 0 16px;

    border: 0;
    outline: none;

    color: #111b4e;

    font-size: 16px;
}


.top-search input::placeholder {
    color: #777;
}


.top-search button {
    width: 58px;
    height: 100%;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1134c9;
    color: #ffffff;

    transition:
        background-color .2s ease;
}


.top-search button:hover {
    background-color: #0b2bad;
}


.top-search button svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}


/* =====================================================
           WHITE NAVIGATION
        ===================================================== */

.navbar {
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    width: 100%;
    height: 90px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 1999;
    border-bottom: 1px solid #eeeeee;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, .08);

    transform: translateZ(0);
}


/* =====================================================
           LOGO
        ===================================================== */

.logo {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
    min-width: 0;
}


.logo-image {
    width: 65px;
    height: 65px;

    object-fit: contain;
    object-position: center;

    flex-shrink: 0;
}


.logo-text {
    min-width: 0;

    display: flex;
    flex-direction: column;
}


.logo-title {
    color: #111b4e;

    font-size: 28px;
    line-height: 1.1;

    font-weight: 900;

    white-space: nowrap;
}


.logo-subtitle {
    margin-top: 6px;

    color: #555968;

    font-size: 13px;
    line-height: 1.2;

    font-weight: 700;

    white-space: nowrap;
}


/* =====================================================
           DESKTOP NAVIGATION
        ===================================================== */

.nav-links {
    display: flex;
    align-items: center;

    gap: 45px;

    margin-left: auto;
}


.nav-links a {
    color: var(--text);

    font-size: 20px;
    font-weight: 500;

    white-space: nowrap;

    transition: color .2s ease;
}


.nav-links a:hover,
.nav-links a.active {
    color: var(--orange);
}


.nav-links .search {
    font-size: 30px;
    line-height: 1;
}


/* =====================================================
           HAMBURGER
        ===================================================== */

.hamburger {
    display: none;

    width: 48px;
    height: 48px;

    padding: 8px;

    background-color: transparent;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 6px;

    flex-shrink: 0;
}


.hamburger span {
    display: block;

    width: 30px;
    height: 3px;

    background-color: var(--dark-blue);

    border-radius: 3px;

    transition:
        transform .3s ease,
        opacity .3s ease;
}


.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}


.hamburger.active span:nth-child(2) {
    opacity: 0;
}


.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* =====================================================
           MOBILE MENU
        ===================================================== */

.mobile-menu {
    display: none;

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    background-color: #ffffff;

    border-top: 1px solid #eeeeee;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .12);

    z-index: 1998;
}


.mobile-menu.show {
    display: block;
}


.mobile-menu a {
    display: block;

    width: 100%;

    padding: 16px 22px;

    color: var(--text);

    font-size: 17px;
    font-weight: 500;

    border-bottom: 1px solid #eeeeee;

    background-color: #ffffff;

    transition:
        color .2s ease,
        background-color .2s ease;
}


.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--orange);
    background-color: #f8f8f8;
}


/* =====================================================
           HERO
        ===================================================== */

.hero {

    position: relative;
    min-height: 520px;
    padding: 70px 40px 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-size: cover;
    background-position: center;

    color: #fff;
    overflow: hidden;
}

.hero::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background:
        linear-gradient(90deg,
            rgba(25, 20, 42, .15),
            rgba(25, 20, 42, .05));

    pointer-events: none;
}


.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1510px;

    margin: 0 auto;

    padding: 130px 40px 90px;
}


.hero-title {
    max-width: 920px;

    margin: 0 0 40px;

    color: #ffffff;

    font-size: 52px;
    line-height: 1.18;

    font-weight: 900;
}


.hero-small {
    max-width: 1150px;

    margin-bottom: 48px;

    color: #ffffff;

    font-size: 20px;
    line-height: 1.6;

    font-weight: 500;
}


.hero-buttons {
    display: flex;
    align-items: stretch;

    flex-wrap: wrap;
}


.hero-btn {
    width: 300px;
    min-height: 80px;

    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    
    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;
    font-weight: 700;

    text-align: center;

    transition:
        opacity .2s ease,
        transform .2s ease;
}


.hero-btn:hover {
    opacity: .92;
    transform: translateY(-2px);
}


.hero-btn.orange {
    background-color: var(--orange);
}


.hero-btn.blue {
    background-color: var(--blue);
}


/* =====================================================
           SLIDER INDICATOR
        ===================================================== */

.slider-indicator {
    position: absolute;

    right: 18%;
    top: 50%;

    width: 6px;
    height: 82px;

    z-index: 3;
}


.slider-indicator::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 6px;
    height: 82px;

    background:
        linear-gradient(to bottom,
            var(--orange) 0 50%,
            rgba(255, 255, 255, .5) 50% 100%);
}


/* =====================================================
           INSTRUCTOR SECTION
        ===================================================== */

.instructor-section {
    width: 100%;
    min-height: 540px;

    display: flex;

    background-color: var(--dark-blue);

    overflow: hidden;
}


.instructor-left {
    position: relative;

    width: 25%;
    min-height: 540px;

    background-color: #111d55;

    background-image:
        radial-gradient(circle at 30% 0%,
            rgba(37, 53, 122, .7),
            transparent 35%);
}


.dot-pattern {
    position: absolute;

    top: 0;
    left: 0;

    width: 255px;
    height: 140px;

    background-image:
        radial-gradient(#9da8cf 2px,
            transparent 3px);

    background-size: 24px 20px;

    opacity: .8;
}


.circle-lines {
    position: absolute;

    right: -20px;
    bottom: 0;

    width: 195px;
    height: 180px;

    border-radius: 100% 0 0 0;

    border-top:
        2px solid rgba(255, 255, 255, .65);
}


.circle-lines::before,
.circle-lines::after {
    content: "";

    position: absolute;

    border-radius: 100% 0 0 0;

    border-top:
        2px solid rgba(255, 255, 255, .5);
}


.circle-lines::before {
    inset: 25px;
}


.circle-lines::after {
    inset: 50px;
}


/* =====================================================
           INSTRUCTOR CONTENT
        ===================================================== */

.instructor-content {
    position: relative;

    width: 75%;
    min-height: 540px;

    padding: 55px 8% 60px;

    background-color: var(--orange);
}


.instructor-content h2 {
    margin: 0 0 35px;

    color: #ffffff;

    font-size: 72px;
    line-height: 1.15;

    font-weight: 900;
}


.instructor-content p {
    max-width: 1080px;

    margin: 0 0 60px;

    color: #ffffff;

    font-size: 23px;
    line-height: 1.7;

    font-weight: 500;
}


.instructor-button {
    width: 360px;
    min-height: 90px;

    padding: 20px;

    background-color: var(--blue);
    color: #ffffff;

    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;
    font-weight: 500;

    transition:
        background-color .2s ease,
        transform .2s ease;
}


.instructor-button:hover {
    background-color: #0d2bbb;
    transform: translateY(-3px);
}


/* =====================================================
           FOOTER
        ===================================================== */

.footer {
    position: relative;

    width: 100%;
    min-height: 440px;

    padding: 100px 30px 70px;

    display: grid;

    grid-template-columns:
        25% 25% 25% 25%;

    background:
        linear-gradient(135deg,
            #0d204d,
            #19255e);

    color: #ffffff;

    overflow: hidden;
}


.footer::before {
    content: "";

    position: absolute;

    right: -130px;
    top: 0;

    width: 560px;
    height: 500px;

    background:
        linear-gradient(135deg,
            transparent 35%,
            rgba(255, 255, 255, .035) 35% 50%,
            transparent 50% 65%,
            rgba(255, 255, 255, .025) 65%);

    transform: rotate(8deg);
}


.footer-column {
    position: relative;

    z-index: 2;

    min-width: 0;

    padding: 0 20px;
}


.footer-logo {
    margin-left: 0;
}


.footer-logo .logo-title {
    color: #ffffff;
}


.footer-logo .logo-subtitle {
    color: #ffffff;
}


.footer h3 {
    margin: 0 0 40px;

    color: #ffffff;

    font-size: 29px;
    line-height: 1.2;

    font-weight: 700;
}


.footer ul {
    list-style: none;

    margin: 0;
    padding: 0;
}


.footer li {
    margin-bottom: 20px;

    color: #ffffff;

    font-size: 20px;
    line-height: 1.5;
}


.footer li::before {
    content: "»";

    margin-right: 15px;

    font-weight: 700;
}


.footer li a:hover {
    color: var(--orange);
}


.footer-contact {
    color: #ffffff;

    font-size: 19px;
    line-height: 1.8;
}


/* =====================================================
           BACK TO TOP
        ===================================================== */

.back-top {
    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    background-color: var(--orange);
    color: #ffffff;

    font-size: 26px;
    font-weight: 700;

    z-index: 2100;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: .85;

    transition:
        opacity .2s ease,
        transform .2s ease;
}


.back-top:hover {
    opacity: 1;
    transform: translateY(-3px);
}


/* =====================================================
           TABLET
        ===================================================== */

@media screen and (max-width: 1200px) {

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 17px;
    }

    .hero-content {
        padding-left: 50px;
        padding-right: 50px;
    }

    .hero-title {
        font-size: 55px;
    }

    .instructor-content {
        padding-left: 60px;
        padding-right: 60px;
    }

    .instructor-content h2 {
        font-size: 58px;
    }

    .top-search {
        width: 260px;
    }
}


/* =====================================================
           TABLET / SMALL LAPTOP
        ===================================================== */

@media screen and (max-width: 950px) {

    /* TOP BAR */

    .topbar {
        height: 65px;
        padding: 0 15px;
    }


    .top-left {
        gap: 10px;
    }


    .social-link {
        width: 37px;
        height: 37px;
    }


    .social-link svg {
        width: 18px;
        height: 18px;
    }


    .top-search {
        width: 220px;
        height: 42px;
    }


    .top-search input {
        font-size: 14px;
        padding: 0 12px;
    }


    /* NAVBAR */

    .navbar {
        top: 65px;
        height: 95px;

        padding: 0 25px;
    }


    .nav-links {
        display: none;
    }


    .hamburger {
        display: flex;
    }


    /* HERO */

    .hero {
        position: relative;
        min-height: 520px;
        padding: 70px 40px 60px;

        display: flex;
        align-items: center;
        justify-content: center;

        background-size: cover;
        background-position: center;

        color: #fff;
        overflow: hidden;
    }


    .hero-content {
        padding:
            144px 35px 80px;
    }


    .hero-title {
        font-size: 48px;
        margin-bottom: 35px;
    }


    .hero-small {
        font-size: 17px;
        margin-bottom: 40px;
    }


    .hero-btn {
        width: 240px;
        min-height: 75px;
        font-size: 18px;
    }


    /* INSTRUCTOR */

    .instructor-section {
        display: block;
    }


    .instructor-left {
        display: none;
    }


    .instructor-content {
        width: 100%;

        padding:
            60px 40px;
    }


    .instructor-content h2 {
        font-size: 50px;
    }


    .instructor-content p {
        font-size: 19px;
        margin-bottom: 45px;
    }


    /* FOOTER */

    .footer {
        grid-template-columns:
            1fr 1fr;

        row-gap: 60px;

        padding:
            80px 30px;
    }
}


/* =====================================================
           MOBILE
        ===================================================== */

@media screen and (max-width: 600px) {

    /* TOP BAR */

    .topbar {
        height: 60px;
        padding: 0 10px;
    }


    .top-left {
        gap: 6px;
    }


    .social-link {
        width: 32px;
        height: 32px;

        border-width: 1.5px;
    }


    .social-link svg {
        width: 16px;
        height: 16px;
    }


    .top-search {
        width: 155px;
        height: 38px;
    }


    .top-search input {
        min-width: 0;

        padding: 0 9px;

        font-size: 12px;
    }


    .top-search button {
        width: 42px;
    }


    .top-search button svg {
        width: 18px;
        height: 18px;
    }


    /* NAVBAR */

    .navbar {
        top: 60px;
        height: 85px;

        padding: 0 15px;
    }


    /* LOGO */

    .logo {
        gap: 8px;
    }


    .logo-image {
        width: 52px;
        height: 52px;
    }


    .logo-title {
        font-size: 20px;
    }


    .logo-subtitle {
        margin-top: 4px;
        font-size: 9px;
    }


    /* HAMBURGER */

    .hamburger {
        width: 45px;
        height: 45px;

        padding: 5px;
    }


    .hamburger span {
        width: 28px;
        height: 3px;
    }


    /* MOBILE MENU */

    .mobile-menu a {
        padding: 15px 20px;
        font-size: 16px;
    }


    /* HERO */

    .hero {
        margin-top: 145px;
        min-height: 542px;

        background-position:
            center center;
    }


    .hero-content {
        padding:
            0px 4px 129px;
    }


    .hero-title {
        font-size: 38px;
        line-height: 1.15;

        margin-bottom: 30px;
    }


    .hero-small {
        font-size: 20px;
        line-height: 1.6;

        margin-bottom: 35px;
    }


    .hero-buttons {
        width: 100%;

        display: flex;

        flex-direction: column;

        flex-wrap: nowrap;
    }


    .hero-btn {
        width: 100%;
        min-height: 70px;
        font-size: 17px;
    }

    .hero-btn.orange {
        background-color: #fff;
        color: #0007d5;
        border-radius: 20px;
    }

    .bt2 {
        display: none;
    }


    .slider-indicator {
        display: none;
    }


    /* INSTRUCTOR */

    .instructor-content {
        padding:
            55px 25px 60px;
    }


    .instructor-content h2 {
        font-size: 39px;
        line-height: 1.15;

        margin-bottom: 30px;
    }


    .instructor-content p {
        font-size: 17px;
        line-height: 1.65;

        margin-bottom: 40px;
    }


    .instructor-button {
        width: 100%;
        min-height: 72px;

        font-size: 18px;
    }


    /* FOOTER */

    .footer {
        display: flex;

        flex-direction: column;

        gap: 45px;

        padding:
            70px 25px;
    }


    .footer-column {
        padding: 0;
    }


    .footer-logo {
        margin-left: 0;
    }


    .footer h3 {
        font-size: 25px;
        margin-bottom: 25px;
    }


    .footer li {
        font-size: 17px;
    }


    .footer-contact {
        font-size: 16px;
    }


    /* BACK TO TOP */

    .back-top {
        right: 15px;
        bottom: 15px;

        width: 45px;
        height: 45px;

        font-size: 23px;
    }
}


/* =====================================================
           VERY SMALL PHONES
        ===================================================== */

@media screen and (max-width: 380px) {

    .social-link {
        width: 29px;
        height: 29px;
    }


    .social-link svg {
        width: 14px;
        height: 14px;
    }


    .top-search {
        width: 125px;
    }


    .top-search input {
        font-size: 10px;
    }


    .top-search button {
        width: 35px;
    }


    .logo-image {
        width: 45px;
        height: 45px;
    }


    .logo-title {
        font-size: 18px;
    }


    .logo-subtitle {
        font-size: 8px;
    }


    .hero-title {
        font-size: 34px;
    }


    .hero-small {
        font-size: 24px;
    }
}


/* =====================================================
           REDUCED MOTION
        ===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}


/* =====================================================
   WHO WE ARE SECTION
===================================================== */

.who-we-are {

    width: 100%;

    background: #ffffff;

    padding: 22px 0 35px;

}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.who-container {

    width: 100%;

    max-width: 1600px;

    margin: 0 auto;

    padding: 0 30px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    column-gap: 70px;

    align-items: start;

}


/* =====================================================
   IMAGE
===================================================== */

.who-image {

    width: 100%;

    overflow: hidden;

}


.who-image img {

    display: block;

    width: 100%;

    height: 680px;

    object-fit: cover;

    object-position: center;

}


/* =====================================================
   CONTENT
===================================================== */

.who-content {

    width: 100%;

    padding-top: 0;

}


/* =====================================================
   HEADING
===================================================== */

.who-content h2 {

    margin: 0;

    color: #3c4a58;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: .2px;

}


/* =====================================================
   YELLOW UNDERLINE
===================================================== */

.yellow-line {

    width: 73px;

    height: 5px;

    margin-top: 25px;

    margin-bottom: 31px;

    background-color: #ffb800;

}


/* =====================================================
   INTRODUCTION
===================================================== */

.who-intro {

    max-width: 690px;

    margin: 0 0 85px;

    color: #29445d;

    font-size: 23px;

    line-height: 1.52;

    font-weight: 400;

}


/* =====================================================
   FEATURE ITEM
===================================================== */

.who-feature {

    width: 100%;

    display: grid;

    grid-template-columns: 92px 1fr;

    column-gap: 25px;

    align-items: start;

    margin-bottom: 55px;

}


/* =====================================================
   FEATURE ICON BOX
===================================================== */

.who-feature-icon {

    width: 82px;

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    color: #ffb800;

    font-size: 48px;

    line-height: 1;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .08);

}


/* =====================================================
   FEATURE CONTENT
===================================================== */

.who-feature-content {

    min-width: 0;

}


.who-feature-content h3 {

    margin: 0 0 15px;

    color: #3c4a58;

    font-size: 24px;

    line-height: 1.3;

    font-weight: 800;

}


.who-feature-content p {

    max-width: 620px;

    margin: 0;

    color: #29445d;

    font-size: 21px;

    line-height: 1.6;

    font-weight: 400;

}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media screen and (min-width: 1500px) {

    .who-container {

        max-width: 1600px;

        padding:
            0 35px;

        column-gap: 75px;

    }


    .who-image img {

        height: 680px;

    }


    .who-content h2 {

        font-size: 43px;

    }


    .who-intro {

        font-size: 23px;

    }

}


/* =====================================================
   LAPTOP
===================================================== */

@media screen and (max-width: 1200px) {

    .who-container {

        padding:
            0 25px;

        column-gap: 45px;

    }


    .who-image img {

        height: 590px;

    }


    .who-content h2 {

        font-size: 37px;

    }


    .who-intro {

        font-size: 20px;

        margin-bottom: 55px;

    }


    .who-feature {

        grid-template-columns:
            75px 1fr;

        column-gap: 20px;

        margin-bottom: 42px;

    }


    .who-feature-icon {

        width: 68px;

        height: 68px;

        font-size: 39px;

    }


    .who-feature-content h3 {

        font-size: 21px;

    }


    .who-feature-content p {

        font-size: 18px;

    }

}


/* =====================================================
   TABLET
===================================================== */

@media screen and (max-width: 900px) {

    .who-we-are {

        padding:
            20px 0 45px;

    }


    .who-container {

        grid-template-columns:
            1fr;

        gap: 40px;

        padding:
            0 25px;

    }


    .who-image {

        width: 100%;

    }


    .who-image img {

        width: 100%;

        height: 500px;

    }


    .who-content {

        width: 100%;

    }


    .who-content h2 {

        font-size: 35px;

    }


    .who-intro {

        max-width: 100%;

        margin-bottom: 55px;

        font-size: 19px;

    }


    .who-feature-content p {

        max-width: 100%;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media screen and (max-width: 600px) {

    .who-we-are {

        padding:
            0 0 30px;

    }


    .who-container {

        display: flex;

        flex-direction: column;

        gap: 0;

        padding: 0;

    }


    /* ---------------------------------------------
       IMAGE
    --------------------------------------------- */

    .who-image {

        width: 100%;

        margin: 0;

    }


    .who-image img {

        width: 100%;

        height: 310px;

        object-fit: cover;

        object-position: center;

    }


    /* ---------------------------------------------
       CONTENT
    --------------------------------------------- */

    .who-content {

        width: 100%;

        padding:
            20px 12px 0;

    }


    /* ---------------------------------------------
       HEADING
    --------------------------------------------- */

    .who-content h2 {

        font-size: 25px;

        line-height: 1.2;

    }


    .yellow-line {

        width: 44px;

        height: 3px;

        margin-top: 14px;

        margin-bottom: 20px;

    }


    /* ---------------------------------------------
       INTRO
    --------------------------------------------- */

    .who-intro {

        margin:
            0 0 52px;

        font-size: 15px;

        line-height: 1.55;

    }


    /* ---------------------------------------------
       FEATURES
    --------------------------------------------- */

    .who-feature {

        display: grid;

        grid-template-columns:
            58px 1fr;

        column-gap: 13px;

        align-items: start;

        margin-bottom: 38px;

    }


    /* ---------------------------------------------
       ICON
    --------------------------------------------- */

    .who-feature-icon {

        width: 52px;

        height: 52px;

        font-size: 30px;

        box-shadow:
            0 5px 18px rgba(0, 0, 0, .08);

    }


    /* ---------------------------------------------
       FEATURE TITLE
    --------------------------------------------- */

    .who-feature-content h3 {

        margin:
            0 0 9px;

        font-size: 16px;

        line-height: 1.3;

    }


    /* ---------------------------------------------
       FEATURE TEXT
    --------------------------------------------- */

    .who-feature-content p {

        margin: 0;

        font-size: 13px;

        line-height: 1.65;

    }

}


/* =====================================================
   VERY SMALL PHONES
===================================================== */

@media screen and (max-width: 380px) {

    .who-image img {

        height: 280px;

    }


    .who-content {

        padding:
            18px 11px 0;

    }


    .who-content h2 {

        font-size: 23px;

    }


    .who-intro {

        font-size: 14px;

    }


    .who-feature {

        grid-template-columns:
            53px 1fr;

        column-gap: 10px;

    }


    .who-feature-icon {

        width: 47px;

        height: 47px;

        font-size: 27px;

    }


    .who-feature-content h3 {

        font-size: 15px;

    }


    .who-feature-content p {

        font-size: 12px;

        line-height: 1.6;

    }

}

/*Cards */
.cards1 {
    padding-bottom: 30px;
    padding-top: 30px;
    margin: 30px auto;
    align-content: center;
    text-align: center;
    justify-content: center;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    gap: .7rem;

}

.mainbox1 {
    box-shadow: 0 .3rem .5rem gray;
    width: 170px;
    padding-top: 15px;
    margin: 7px;
    border-radius: 30px 4px;
}

.mainbox1 h2 {
    border-radius: 5px;
    padding: 3px;
    background-color: #fff;
    width: 80%;
    text-align: center;
    font-family: sans-serif;
    font-size: 17px;
    margin: 20px auto 0;
    font-weight: bold;
    color: #09035b;
}


.mainbox1 a p {
    text-align: center;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
}

.mainbox1 a :hover {
    color: #ffd000;

}

.mainbox1 button {
    background-color: rgb(47, 0, 255);
    border-radius: 10px;
    padding-top: 5px;
    padding-left: 7px;
    padding-right: 7px;
    padding-bottom: 5px;
    margin-bottom: 100px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    border: none;
}

/*cards end */

.item-orange {
    border-bottom: 3px solid #0dcaf0;
    background-color: #fd7e14;
}

.item-green {
    border-bottom: 3px solid #fd7e14;
    background-color: #20c997;
}

.item-cyan {
    border-bottom: 3px solid #fd7e14;
    background-color: #0dcaf0;
}

.item-pink {
    border-bottom: 3px solid #fd7e14;
    background-color: #f3268c;
}

.item-red {
    border-bottom: 3px solid #fd7e14;
    background-color: #df1529;
}

/* Bottom quick bar */
.quick-bar {
    background-color: #00aeff;
    justify-items: center;
    bottom: 20px;
    left: 50%;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    padding: 10px 15px;
    width: 90%;
    max-width: 400px;
    z-index: 599;
}

.quick-item {
    text-align: center;
    flex: 1;
    padding: 8px 0;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.2s;
}

.quick-item:hover {
    background-color: #000dff2e;
}

.quick-item i {
    font-size: 20px;
    color: #007aff;
    margin-bottom: 5px;
}

.quick-item span {
    display: block;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
}

@media (min-width: 600px) {
    .quick-bar {
        display: none;
        /* Only show on mobile */
    }
}

@media (max-width: 600px) {
    .dwaf {
        display: none;
    }
}

.icon {
    color: #fd7e14;
    background: #fff;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
    font-size: 32px;
    transition: ease-in-out 0.3s;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);

}

/* Cards end */

.hero-title {
    max-width: 920px;
    margin: 0 0 40px;
    color: #ffffff;
    font-size: 52px;
    line-height: 1.18;
    font-weight: 900;
}

/* Tablet */
@media screen and (max-width: 950px) {
    .hero-title {
        font-size: 45px;
    }
}

/* Mobile */
@media screen and (max-width: 600px) {
    .hero-title {
        font-size: 38px;
        line-height: 1.15;
        margin-bottom: 30px;
        transform: translateY(-20px);
    }
}

/* Small phones */
@media screen and (max-width: 380px) {
    .hero-title {
        font-size: 34px;
        transform: translateY(-30px);
    }
}
