*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Plus Jakarta Sans", sans-serif !important;
}

/* Header Start */
header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 7%;
    background: transparent;
    position: absolute;
    z-index: 100;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}
header .header-left{
    width: 75%;
    display: flex;
    justify-content: space-between;
}
header .header-left .header-box{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
header .header-left i{
    font-size: calc(0.85rem + 0.5vw);
}
header .header-left a{
    font-size: calc(0.55rem + 0.5vw);
    color: #000;
    text-decoration: none;
    font-weight: 500;
}
header .header-right{
    width: 20%;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}
header .header-right i{
    width: 32px;
    height: 32px;
    line-height: 32px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: calc(0.6rem + 0.5vw);
    transition: all 0.2s ease;
}
header .header-right i:hover{
    background-color: #ce232d;
    color: #fff;
}
header i{
    color: #ce232d;
}

/* Media Queries */
@media screen and (min-width: 1230px) and (max-width: 1399px) {
    header{
        padding: 0.55rem 7%;
    }
    header .header-left i{
        font-size: calc(0.8rem + 0.5vw);
    }
    header .header-left a{
        font-size: calc(0.5rem + 0.5vw);
    }
    header .header-right{
        gap: 1.3rem;
    }
    header .header-right i{
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: calc(0.55rem + 0.5vw);
    }
}

@media screen and (min-width: 992px) and (max-width: 1229px) {
    header{
        padding: 0.5rem 7%;
    }
    header .header-left i{
        font-size: calc(0.75rem + 0.5vw);
    }
    header .header-left a{
        font-size: calc(0.45rem + 0.5vw);
    }
    header .header-right{
        gap: 1rem;
    }
    header .header-right i{
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: calc(0.5rem + 0.5vw);
    }
}

@media screen and (max-width: 767px) {
    header{
        display: none;
    }
}
/* Header End */

/* Navbar Start */
.navbar{
    background: transparent;
    padding: 1rem 5% 1rem 5%;
    position: absolute;
    top: 3rem;
    width: 100%;
    align-items: center;
    z-index: 200;
}
.navbar .navbar-brand img{
    width: 130px;
}
.navbar #navbarContent .navbar-nav{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.navbar .nav-link {
    color: #000 !important;
    font-weight: 600;
    font-size: calc(0.6rem + 0.5vw);
    padding: 0.6rem 0.5rem !important;
}
.navbar .nav-link:hover {
    color: #1d4a8a !important;
}
.navbar #nav-consultation-btn{
    background-color: #1d4a8a;
    color: #fff;
    width: max-content;
    font-weight: 500;
    font-size: calc(0.6rem + 0.5vw);
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border: none;
    border-radius: 5px;
    word-spacing: 3px;
    transition: all 0.2s ease;
}
.navbar #nav-consultation-btn:hover{
    background-color: #ce232d;
}

/* Nav Dropdown Customization */
.navbar .dropdown-menu{
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    background-color: #1d4a8a;
    border: none;
    border-radius: 10px;
    padding: 1.5rem 2rem;
    min-width: 650px;
    position: absolute;
    top: 100%;
    left: -215%;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: #cdcdcde5 0px 5px 15px;
}
.nav-item.dropdown:hover .dropdown-menu{
    display: flex !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-column{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.navbar .dropdown-header{
    color: #ededed;
    font-weight: 800;
    text-transform: uppercase;
    font-size: calc(0.5rem + 0.5vw);
    margin-bottom: 1rem;
    padding: 0;
    text-decoration: none;
}
.navbar .dropdown-header:hover{
    color: #fff;
}
.navbar .dropdown-item{
    width: max-content;
    color: #fff;
    padding: 0.4rem 0;
    font-size: calc(0.5rem + 0.5vw);
    background: transparent !important;
    border-bottom: 1.5px solid transparent;
}
.navbar .dropdown-item:hover{
    border-bottom: 1.5px solid #fff;
    transition: all 0.1s ease;
}

/* Media Queries */
@media screen and (min-width: 1230px) and (max-width: 1399px) {
    .navbar{
        padding: 0.8rem 5% 0.8rem 5%;
        top: 2.8rem;
    }
    .navbar .navbar-brand img{
        width: 119px;
    }
    .navbar #navbarContent .navbar-nav{
        gap: 1.8rem;
    }
    .navbar .nav-link {
        font-size: calc(0.55rem + 0.5vw);
        padding: 0.5rem 0.5rem !important;
    }
    .navbar #nav-consultation-btn{
        font-size: calc(0.55rem + 0.5vw);
        padding: 0.38rem 0.9rem;
    }

    /* Nav Dropdown Customization */
    .navbar .dropdown-menu{
        padding: 1.5rem 1.8rem;
        min-width: 500px;
        gap: 1.8rem;
    }
    .navbar .dropdown-header{
        font-size: calc(0.45rem + 0.5vw);
        margin-bottom: 0.8rem;
    }
    .navbar .dropdown-item{
        padding: 0.3rem 0;
        font-size: calc(0.45rem + 0.5vw);
        border-bottom: 1.3px solid transparent;
    }
    .navbar .dropdown-item:hover{
        border-bottom: 1.3px solid #fff;
    }
}

@media screen and (min-width: 992px) and (max-width: 1229px) {
    .navbar{
        padding: 0.6rem 5% 0.6rem 5%;
        top: 2.6rem;
    }
    .navbar .navbar-brand img{
        width: 105px;
    }
    .navbar #navbarContent .navbar-nav{
        gap: 1.6rem;
    }
    .navbar .nav-link {
        font-size: calc(0.5rem + 0.5vw);
        padding: 0.35rem 0.5rem 0.5rem 0.5rem !important;
    }
    .navbar #nav-consultation-btn{
        font-size: calc(0.45rem + 0.5vw);
        padding: 0.3rem 0.8rem;
    }

    /* Nav Dropdown Customization */
    .navbar .dropdown-menu{
        padding: 1rem 1.5rem;
        min-width: 450px;
        gap: 1.7rem;
    }
    .navbar .dropdown-header{
        font-size: calc(0.4rem + 0.5vw);
        margin-bottom: 0.7rem;
    }
    .navbar .dropdown-item{
        padding: 0.2rem 0;
        font-size: calc(0.4rem + 0.5vw);
        border-bottom: 1.1px solid transparent;
    }
    .navbar .dropdown-item:hover{
        border-bottom: 1.1px solid #fff;
    }
}

@media screen and (max-width: 767px) {
    .navbar{
        background: #fff;
        padding: 1rem 1rem 1rem 1rem;
        position: relative;
        top: 0;
    }
    .navbar .navbar-brand img{
        width: 90px;
    }
    .navbar-toggler{
        border: none;
        outline: none;
    }
    .navbar-toggler .navbar-toggler-icon{
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        filter: invert(1);
    }
    .navbar-toggler:focus{
        box-shadow: none;
    }
    #mobileMenu,
    #mobileCoursesMenu{
        width: 75%;
        background-color: #051e41;
    }
    #mobileMenu .navbar-brand,
    #mobileCoursesMenu .navbar-brand{
        background-color: #fff;
        border-radius: 8px;
        padding: 0.9rem;
    }
    #mobileMenu .navbar-brand img,
    #mobileCoursesMenu .navbar-brand img{
        width: 95px;
    }
    #mobileMenu .nav-link,
    #mobileCoursesMenu .nav-link{
        color: #fff;
        font-size: calc(0.8rem + 0.5vw);
        font-weight: 550;
        margin: 0.4rem 0;
    }
    #mobileMenu .nav-link.active{
        border-bottom: 2px solid #fff;
    }
    #mobileMenu .navbar-nav button{
        background-color: #ce232d;
        color: #fff;
        width: max-content;
        font-weight: 500;
        font-size: calc(0.75rem + 0.5vw);
        text-transform: uppercase;
        padding: 0.4rem 0.7rem;
        border: none;
        border-radius: 5px;
        word-spacing: 3px;
        transition: all 0.2s ease;
        margin-top: 2rem;
    }
    #mobileMenu .navbar-nav button:hover{
        background-color: #a60f19;
    }
    #mobileMenu .navbar-nav .social-row{
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    #mobileMenu .navbar-nav .social-row a{
        width: 35px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        background-color: #ce232d;
        border-radius: 50%;
        color: #fff;
        font-size: calc(1rem + 0.5vw);
    }
    #mobileMenu .navbar-nav .social-row a:hover{
        background-color: #a60f19;
    }

    #mobileCoursesMenu{
        padding-bottom: 4.5rem;
    }
}
/* Navbar End */

/* Banner Start */
.banner .banner-image{
    position: relative;
}
.banner .banner-image img{
    width: 100%;
}
.banner .banner-content{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 6%;
}
.banner .banner-form{
    background-color: #1d4a8a;
    padding: 1.5rem;
    border-radius: 10px;
    width: 30%;
    z-index: 120;
    margin-top: 7rem;
}
.banner form input{
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.6rem 0.7rem;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: calc(0.5rem + 0.5vw);
    color: #000;
}
.banner form input::placeholder{
    color: #858585;
}
.banner form #address{
    height: 4rem;
    text-align: top;
}
.banner form input[type="number"]::-webkit-inner-spin-button{
    display: none;
}
.banner form .choices{
    margin-bottom: 1rem !important;
}
.banner form .choices__inner{
    padding: 0.2rem 0.4rem;
    border-radius: 5px;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    background-color: #fff;
    font-size: calc(0.5rem + 0.5vw);
    color: #000;
}
.banner button{
    width: 100%;
    border: none;
    padding: 0.6rem 0;
    border-radius: 5px;
    background-color: #ce232d;
    font-size: calc(0.6rem + 0.5vw);
    font-weight: 600;
    color: #fff;
    transition: all 0.2s ease;
}
.banner button:hover{
    background-color: #a60f19;
}

/* Media Queries */
@media screen and (min-width: 1230px) and (max-width: 1399px) {
    .banner .banner-form{
        padding: 1.4rem;
        margin-top: 8rem;
    }
    .banner form input{
        margin-bottom: 0.85rem;
        padding: 0.58rem 0.6rem;
        font-size: calc(0.45rem + 0.5vw);
    }
    .banner form #address{
        height: 3.5rem;
    }
    .banner form .choices{
        margin-bottom: 0.85rem !important;
    }
    .banner form .choices__inner{
        padding: 0.3rem 0.4rem;
        font-size: calc(0.5rem + 0.5vw);
    }
    .banner button{
        padding: 0.55rem 0;
        font-size: calc(0.55rem + 0.5vw);
    }
}

@media screen and (min-width: 992px) and (max-width: 1229px) {
    .banner .banner-form{
        padding: 1rem;
        margin-top: 7rem;
    }
    .banner form input{
        margin-bottom: 0.8rem;
        padding: 0.55rem 0.6rem;
        font-size: calc(0.39rem + 0.5vw);
    }
    .banner form #address{
        height: 3rem;
    }
    .banner form .choices{
        margin-bottom: 0.8rem !important;
    }
    .banner form .choices__inner{
        padding: 0.5rem 0.4rem;
        font-size: calc(0.4rem + 0.5vw);
    }
    .banner button{
        padding: 0.5rem 0;
        font-size: calc(0.5rem + 0.5vw);
    }
}

@media screen and (max-width: 767px) {
    .banner .banner-content{
        position: relative;
        padding-right: 1rem;
        padding-left: 1rem;
    }
    .banner .banner-form{
        padding: 1rem;
        width: 100%;
        margin-top: 1.5rem;
    }
    .banner form input{
        margin-bottom: 0.8rem;
        padding: 0.73rem 0.7rem;
        font-size: calc(0.75rem + 0.5vw);
    }
    .banner form #address{
        height: 5rem;
    }
    .banner form .choices{
        margin-bottom: 0.8rem !important;
    }
    .banner form .choices__inner{
        padding: 0.4rem 0.4rem 0 0.4rem;
        font-size: calc(0.75rem + 0.5vw);
    }
    .banner button{
        padding: 0.65rem 0;
        font-size: calc(0.85rem + 0.5vw);
    }
}
/* Banner End */

/* About Start */
.about{
    padding: 5rem 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.about .about-image{
    width: 43%;
    position: relative;
}
.about .about-image img{
    width: 100%;
    border-radius: 60% 40% 54% 46% / 64% 69% 31% 36%;
}
.about .about-image .trusted-by-circle{
    width: 170px;
    height: 170px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    bottom: -3rem;
    left: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.about .about-image .trusted-by-circle span{
    font-size: calc(0.7rem + 0.5vw);
    font-weight: 700;
    color: #858585;
}
.about .about-image .trusted-by-circle span:nth-child(2){
    font-size: calc(1.5rem + 0.5vw);
    font-weight: 900;
    color: #ce232d;
}
.about .about-image .trusted-by-circle span:nth-child(1){
    margin-top: 0.5rem;
}
.about .about-image .ball{
    position: absolute;
}
.about .about-image #ball-1{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #1d4a8a;
    top: 4rem;
    left: 4rem;
}
.about .about-image #ball-2{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ce232d;
    top: 2rem;
    right: 6rem;
}
.about .about-content{
    width: 50%;
}
.about .about-content h2{
    font-size: calc(2rem + 0.5vw);
    font-weight: 700;
    color: #1d4a8a;
    margin-bottom: 1.7rem;
}
.about .about-content p{
    font-size: calc(0.6rem + 0.5vw);
    font-weight: 500;
    color: #000;
}
.about .about-content button{
    background-color: #ce232d;
    color: #fff;
    width: max-content;
    font-weight: 500;
    font-size: calc(0.6rem + 0.5vw);
    text-transform: uppercase;
    padding: 0.5rem 1.1rem;
    border: none;
    border-radius: 5px;
    word-spacing: 3px;
    margin-top: 1rem;
    transition: all 0.2s ease;
}
.about .about-content button:hover{
    background-color: #1d4a8a;
}

/* Media Queries */
@media screen and (min-width: 1230px) and (max-width: 1399px) {
    .about{
        padding: 4.5rem 7%;
    }
    .about .about-image .trusted-by-circle{
        width: 155px;
        height: 155px;
        bottom: -3.5rem;
        left: 5.5rem;
    }
    .about .about-image .trusted-by-circle span{
        font-size: calc(0.65rem + 0.5vw);
    }
    .about .about-image .trusted-by-circle span:nth-child(2){
        font-size: calc(1.3rem + 0.5vw);
    }
    .about .about-image #ball-1{
        width: 65px;
        height: 65px;
    }
    .about .about-image #ball-2{
        width: 30px;
        height: 30px;
    }
    .about .about-content h2{
        font-size: calc(1.8rem + 0.5vw);
        margin-bottom: 1.6rem;
    }
    .about .about-content p{
        font-size: calc(0.55rem + 0.5vw);
    }
    .about .about-content button{
        font-size: calc(0.55rem + 0.5vw);
        padding: 0.48rem 1rem;
        margin-top: 0.8rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1229px) {
    .about{
        padding: 4rem 7%;
    }
    .about .about-image .trusted-by-circle{
        width: 135px;
        height: 135px;
        bottom: -3rem;
        left: 6rem;
    }
    .about .about-image .trusted-by-circle span{
        font-size: calc(0.6rem + 0.5vw);
    }
    .about .about-image .trusted-by-circle span:nth-child(2){
        font-size: calc(1.2rem + 0.5vw);
    }
    .about .about-image #ball-1{
        width: 50px;
        height: 50px;
        left: 3rem;
    }
    .about .about-image #ball-2{
        width: 30px;
        height: 30px;
        right: 4.5rem;
    }
    .about .about-content h2{
        font-size: calc(1.6rem + 0.5vw);
        margin-bottom: 1.4rem;
    }
    .about .about-content p{
        font-size: calc(0.5rem + 0.5vw);
    }
    .about .about-content button{
        font-size: calc(0.5rem + 0.5vw);
        padding: 0.45rem 0.8rem;
        margin-top: 0.7rem;
    }
}

@media screen and (max-width: 767px) {
    .about{
        padding: 3rem 1rem;
    }
    .about .about-image{
        width: 100%;
    }
    .about .about-image .trusted-by-circle{
        width: 110px;
        height: 110px;
        bottom: -2rem;
        left: 2rem;
    }
    .about .about-image .trusted-by-circle span{
        font-size: calc(0.65rem + 0.5vw);
    }
    .about .about-image .trusted-by-circle span:nth-child(2){
        font-size: calc(1.2rem + 0.5vw);
    }
    .about .about-image #ball-1{
        width: 50px;
        height: 50px;
        top: 2.5rem;
        left: 1.5rem;
    }
    .about .about-image #ball-2{
        width: 25px;
        height: 25px;
        top: 1rem;
        right: 1rem;
    }
    .about .about-content{
        width: 100%;
        margin-top: 4rem;
    }
    .about .about-content h2{
        font-size: calc(1.3rem + 0.5vw);
        margin-bottom: 1.3rem;
    }
    .about .about-content p{
        font-size: calc(0.8rem + 0.5vw);
    }
    .about .about-content button{
        font-size: calc(0.75rem + 0.5vw);
        padding: 0.45rem 0.9rem;
        margin-top: 0.7rem;
    }
}
/* About End */

/* Director Start */
.director{
    padding: 3rem 7%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.director .director-content{
    width: 55%;
}
.director .director-content h3{
    font-size: calc(2rem + 0.5vw);
    font-weight: 700;
    color: #1d4a8a;
    margin-bottom: 2rem;
}
.director .director-content p{
    font-size: calc(0.6rem + 0.5vw);
    font-weight: 500;
    color: #000;
}
.director .director-content button{
    background-color: #ce232d;
    color: #fff;
    width: max-content;
    font-weight: 500;
    font-size: calc(0.6rem + 0.5vw);
    text-transform: uppercase;
    padding: 0.5rem 1.1rem;
    border: none;
    border-radius: 5px;
    word-spacing: 3px;
    margin-top: 1rem;
    transition: all 0.2s ease;
}
.director .director-content button:hover{
    background-color: #1d4a8a;
}
.director .director-image{
    width: 36%;
}
.director .director-image img{
    width: 100%;
    border-radius: 10px;
}

/* Media Queries */
@media screen and (min-width: 1230px) and (max-width: 1399px) {
    .director{
        padding: 2.5rem 7%;
    }
    .director .director-content h3{
        font-size: calc(1.8rem + 0.5vw);
        margin-bottom: 1.8rem;
    }
    .director .director-content p{
        font-size: calc(0.55rem + 0.5vw);
    }
    .director .director-content button{
        font-size: calc(0.55rem + 0.5vw);
        padding: 0.47rem 1rem;
        margin-top: 0.8rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1229px) {
    .director{
        padding: 2rem 7%;
    }
    .director .director-content h3{
        font-size: calc(1.6rem + 0.5vw);
        margin-bottom: 1.6rem;
    }
    .director .director-content p{
        font-size: calc(0.5rem + 0.5vw);
    }
    .director .director-content button{
        font-size: calc(0.5rem + 0.5vw);
        padding: 0.45rem 0.8rem;
        margin-top: 0.6rem;
    }
}

@media screen and (max-width: 767px) {
    .director{
        padding: 0.5rem 1rem;
        flex-direction: column-reverse;
    }
    .director .director-content{
        width: 100%;
    }
    .director .director-content h3{
        font-size: calc(1.3rem + 0.5vw);
        margin-bottom: 1.1rem;
        margin-top: 1.3rem;
    }
    .director .director-content p{
        font-size: calc(0.8rem + 0.5vw);
    }
    .director .director-content button{
        font-size: calc(0.75rem + 0.5vw);
        padding: 0.45rem 0.9rem;
        margin-top: 0.8rem;
    }
    .director .director-image{
        width: 100%;
    }
}
/* Director End */

/* Courses We Offer Start */
.courses-we-offer{
    padding: 2.5rem 7%;
}
.courses-we-offer h4,
.courses-we-offer h3{
    font-size: calc(2rem + 0.5vw);
    font-weight: 700;
    color: #1d4a8a;
    text-align: center;
}
.courses-we-offer .courses-card-row{
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.courses-we-offer .courses-card-row .course-card{
    width: 32%;
    box-shadow: rgba(0, 0, 0, 0.274) 0px 5px 10px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* push bottom elements down */
}
.courses-we-offer .courses-card-row .course-card img{
    width: 100%;
}
.courses-we-offer .courses-card-row .course-card .card-desc{
    padding: 1rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1; /* makes it take up all remaining space */
}
.courses-we-offer .courses-card-row .course-card span{
    display: block;
    font-size: calc(0.9rem + 0.5vw);
    font-weight: 800;
    color: #000;
}
.courses-we-offer .courses-card-row .course-card ul{
    margin-top: 1rem;
    flex-grow: 1; /* push button downward */
}
.courses-we-offer .courses-card-row .course-card ul li{
    font-size: calc(0.6rem + 0.5vw);
    font-weight: 500;
    color: #000;
}
.courses-we-offer .courses-card-row .course-card button{
    background-color: #ce232d;
    color: #fff;
    width: max-content;
    font-weight: 500;
    font-size: calc(0.6rem + 0.5vw);
    text-transform: uppercase;
    padding: 0.5rem 1.1rem;
    border: none;
    border-radius: 5px;
    word-spacing: 3px;
    margin-top: 1rem;
    transition: all 0.2s ease;
}
.courses-we-offer .courses-card-row .course-card button:hover{
    background-color: #1d4a8a;
}

/* Media Queries */
@media screen and (min-width: 1230px) and (max-width: 1399px) {
    .courses-we-offer{
        padding: 2rem 7%;
    }
    .courses-we-offer h4,
    .courses-we-offer h3{
        font-size: calc(1.8rem + 0.5vw);
    }
    .courses-we-offer .courses-card-row{
        margin-top: 2.7rem;
    }
    .courses-we-offer .courses-card-row .course-card .card-desc{
        padding: 0.8rem 0.8rem 0.8rem 0.8rem;
    }
    .courses-we-offer .courses-card-row .course-card span{
        font-size: calc(0.8rem + 0.5vw);
    }
    .courses-we-offer .courses-card-row .course-card ul{
        margin-top: 0.8rem;
    }
    .courses-we-offer .courses-card-row .course-card ul li{
        font-size: calc(0.55rem + 0.5vw);
    }
    .courses-we-offer .courses-card-row .course-card button{
        font-size: calc(0.55rem + 0.5vw);
        padding: 0.45rem 1rem;
        margin-top: 0.8rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1229px) {
    .courses-we-offer{
        padding: 1.5rem 7%;
    }
    .courses-we-offer h4,
    .courses-we-offer h3{
        font-size: calc(1.6rem + 0.5vw);
    }
    .courses-we-offer .courses-card-row{
        margin-top: 2.3rem;
    }
    .courses-we-offer .courses-card-row .course-card .card-desc{
        padding: 0.65rem 0.65rem 0.65rem 0.65rem;
    }
    .courses-we-offer .courses-card-row .course-card span{
        font-size: calc(0.7rem + 0.5vw);
    }
    .courses-we-offer .courses-card-row .course-card ul{
        margin-top: 0.7rem;
    }
    .courses-we-offer .courses-card-row .course-card ul li{
        font-size: calc(0.5rem + 0.5vw);
    }
    .courses-we-offer .courses-card-row .course-card button{
        font-size: calc(0.5rem + 0.5vw);
        padding: 0.4rem 0.8rem;
        margin-top: 0.6rem;
    }
}

@media screen and (max-width: 767px) {
    .courses-we-offer{
        padding: 2.2rem 1rem 1rem 1rem;
    }
    .courses-we-offer h4,
    .courses-we-offer h3{
        font-size: calc(1.4rem + 0.5vw);
    }
    .courses-we-offer .courses-card-row{
        margin-top: 1.5rem;
    }
    .courses-we-offer .courses-card-row .course-card{
        width: 100%;
        margin-bottom: 1.1rem;
    }
    .courses-we-offer .courses-card-row .course-card .card-desc{
        padding: 0.8rem 0.8rem 0.8rem 0.8rem;
    }
    .courses-we-offer .courses-card-row .course-card span{
        font-size: calc(1rem + 0.5vw);
    }
    .courses-we-offer .courses-card-row .course-card ul{
        margin-top: 0.8rem;
    }
    .courses-we-offer .courses-card-row .course-card ul li{
        font-size: calc(0.75rem + 0.5vw);
    }
    .courses-we-offer .courses-card-row .course-card button{
        font-size: calc(0.7rem + 0.5vw);
        padding: 0.45rem 0.9rem;
        margin-top: 0.7rem;
    }
}
/* Courses We Offer End */

/* Why Tiny Start */
.why-tiny{
    padding: 4rem 7%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.why-tiny .why-tiny-image{
    width: 43%;
}
.why-tiny .why-tiny-image img{
    width: 100%;
    border-radius: 10px;
}
.why-tiny .why-tiny-content{
    width: 50%;
}
.why-tiny .why-tiny-content h5{
    font-size: calc(2rem + 0.5vw);
    font-weight: 700;
    color: #1d4a8a;
    margin-bottom: 2rem;
}
.why-tiny .why-tiny-content b{
    font-size: calc(0.7rem + 0.5vw);
    color: #000;
}
.why-tiny .why-tiny-content p{
    font-size: calc(0.6rem + 0.5vw);
    font-weight: 500;
    color: #000;
    margin-top: 1rem;
}
.why-tiny .why-tiny-content button{
    background-color: #ce232d;
    color: #fff;
    width: max-content;
    font-weight: 500;
    font-size: calc(0.6rem + 0.5vw);
    text-transform: uppercase;
    padding: 0.5rem 1.1rem;
    border: none;
    border-radius: 5px;
    word-spacing: 3px;
    margin-top: 1rem;
    transition: all 0.2s ease;
}
.why-tiny .why-tiny-content button:hover{
    background-color: #1d4a8a;
}

/* Media Queries */
@media screen and (min-width: 1230px) and (max-width: 1399px) {
    .why-tiny{
        padding: 3.5rem 7%;
    }
    .why-tiny .why-tiny-content h5{
        font-size: calc(1.8rem + 0.5vw);
        margin-bottom: 1.8rem;
    }
    .why-tiny .why-tiny-content b{
        font-size: calc(0.65rem + 0.5vw);
    }
    .why-tiny .why-tiny-content p{
        font-size: calc(0.55rem + 0.5vw);
        margin-top: 0.8rem;
    }
    .why-tiny .why-tiny-content button{
        font-size: calc(0.55rem + 0.5vw);
        padding: 0.45rem 1rem;
        margin-top: 0.8rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1229px) {
    .why-tiny{
        padding: 3rem 7%;
    }
    .why-tiny .why-tiny-content h5{
        font-size: calc(1.6rem + 0.5vw);
        margin-bottom: 1.6rem;
    }
    .why-tiny .why-tiny-content b{
        font-size: calc(0.6rem + 0.5vw);
    }
    .why-tiny .why-tiny-content p{
        font-size: calc(0.5rem + 0.5vw);
        margin-top: 0.6rem;
    }
    .why-tiny .why-tiny-content button{
        font-size: calc(0.5rem + 0.5vw);
        padding: 0.4rem 0.8rem;
        margin-top: 0.6rem;
    }
}

@media screen and (max-width: 767px) {
    .why-tiny{
        padding: 1.5rem 1rem;
    }
    .why-tiny .why-tiny-image{
        width: 100%;
    }
    .why-tiny .why-tiny-content{
        width: 100%;
    }
    .why-tiny .why-tiny-content h5{
        font-size: calc(1.3rem + 0.5vw);
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }
    .why-tiny .why-tiny-content b{
        font-size: calc(0.9rem + 0.5vw);
    }
    .why-tiny .why-tiny-content p{
        font-size: calc(0.8rem + 0.5vw);
        margin-top: 0.8rem;
    }
    .why-tiny .why-tiny-content button{
        font-size: calc(0.75rem + 0.5vw);
        padding: 0.45rem 0.9rem;
        margin-top: 0.8rem;
    }
}
/* Why Tiny End */

/* Accreditations Start */
.accreditations{
    padding: 2rem 7%;
}
.accreditations h6{
    font-size: calc(2rem + 0.5vw);
    font-weight: 700;
    color: #1d4a8a;
    text-align: center;
}
.accreditations .accreditations-slider-container{
    background-color: #eaf2ff;
    padding: 4rem ;
    border-radius: 10px;
    margin-top: 3rem;
}
.accreditations .swiper.marquee-swiper{
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        white 10%,
        white 90%,
        transparent 100%
    );
}
.accreditations .swiper-wrapper.marquee-swiper{
    transition-timing-function: linear;
    align-items: center;
}
.accreditations .swiper-slide.marquee-swiper{
    width: 13rem;
    height: 13rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem;
}
.accreditations .swiper-slide.marquee-swiper img{
    width: 100%;
    object-fit: contain;
}

/* Media Queries */
@media screen and (min-width: 1230px) and (max-width: 1399px) {
    .accreditations{
        padding: 1.5rem 7%;
    }
    .accreditations h6{
        font-size: calc(1.8rem + 0.5vw);
    }
    .accreditations .accreditations-slider-container{
        padding: 3.5rem ;
        margin-top: 2.8rem;
    }
    .accreditations .swiper-slide.marquee-swiper{
        width: 12rem;
        height: 12rem;
        padding: 0.85rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1229px) {
    .accreditations{
        padding: 1rem 7%;
    }
    .accreditations h6{
        font-size: calc(1.6rem + 0.5vw);
    }
    .accreditations .accreditations-slider-container{
        padding: 3rem ;
        margin-top: 2.5rem;
    }
    .accreditations .swiper-slide.marquee-swiper{
        width: 11rem;
        height: 11rem;
        padding: 0.8rem;
    }
}

@media screen and (max-width: 767px) {
    .accreditations{
        padding: 1.5rem 1rem;
    }
    .accreditations h6{
        font-size: calc(1.4rem + 0.5vw);
    }
    .accreditations .accreditations-slider-container{
        padding: 1.5rem ;
        margin-top: 1.7rem;
    }
    .accreditations .swiper-slide.marquee-swiper{
        width: 11rem;
        height: 11rem;
    }
}
/* Accreditations End */

/* Testimonials Start */
.testimonials{
    padding: 3.5rem 7%;
}
.testimonials span{
    font-size: calc(0.8rem + 0.5vw);
    font-weight: 800;
    color: #ce232d;
    display: block;
    text-align: center;
}
.testimonials h6{
    font-size: calc(2rem + 0.5vw);
    font-weight: 700;
    color: #1d4a8a;
    text-align: center;
    margin-top: 1rem;
}
.testimonials .testimonials-swiper{
    padding: 3rem 0.5rem 3rem 0.5rem;
}
.testimonials .testimonial-card{
    box-shadow: rgba(0, 0, 0, 0.274) 0px 5px 10px;
    border-radius: 10px;
    overflow: hidden;
}
.testimonials .testimonial-card .card-top{
    background-color: #fff;
    padding: 2rem 1.5rem;
}
.testimonials .testimonial-card .card-top p{
    font-size: calc(0.6rem + 0.5vw);
    font-weight: 500;
    color: #000;
}
.testimonials .testimonial-card .card-top span{
    font-size: calc(0.7rem + 0.5vw);
    font-weight: 700;
    text-align: left;
}
.testimonials .testimonial-card .card-bottom{
    background-color: #777777;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
}
.testimonials .testimonial-card .card-bottom img:nth-child(1){
    width: 110px;
}
.testimonials .testimonial-card .card-bottom img:nth-child(2){
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    padding: 0.5rem;
}
.testimonials .swiper-pagination{
    margin-top: 25px;
    text-align: center;
    display: flex;
    justify-content: center;
    bottom: 0;
    gap: 0.5rem;
}
.testimonials .swiper-pagination-bullet{
    background: #ccc;
    opacity: 1;
    width: 15px;
    height: 15px;
}
.testimonials .swiper-pagination-bullet-active{
    background: #ce232d;
}
.testimonials .view-all-btn{
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}
.testimonials .view-all-btn button{
    background-color: #ce232d;
    color: #fff;
    width: max-content;
    font-weight: 500;
    font-size: calc(0.6rem + 0.5vw);
    text-transform: uppercase;
    padding: 0.5rem 1.1rem;
    border: none;
    border-radius: 5px;
    word-spacing: 3px;
    transition: all 0.2s ease;
}
.testimonials .view-all-btn button:hover{
    background-color: #1d4a8a;
}

/* Media Queries */
@media screen and (min-width: 1230px) and (max-width: 1399px) {
    .testimonials{
        padding: 3rem 7%;
    }
    .testimonials span{
        font-size: calc(0.7rem + 0.5vw);
    }
    .testimonials h6{
        font-size: calc(1.8rem + 0.5vw);
        margin-top: 0.8rem;
    }
    .testimonials .testimonials-swiper{
        padding: 2.5rem 0.5rem 3rem 0.5rem;
    }
    .testimonials .testimonial-card .card-top{
        padding: 1.7rem 1.2rem;
    }
    .testimonials .testimonial-card .card-top p{
        font-size: calc(0.55rem + 0.5vw);
    }
    .testimonials .testimonial-card .card-top span{
        font-size: calc(0.65rem + 0.5vw);
    }
    .testimonials .testimonial-card .card-bottom{
        padding: 1rem 1.2rem;
    }
    .testimonials .testimonial-card .card-bottom img:nth-child(1){
        width: 100px;
    }
    .testimonials .testimonial-card .card-bottom img:nth-child(2){
        width: 50px;
        height: 50px;
        padding: 0.45rem;
    }
    .testimonials .swiper-pagination{
        margin-top: 25px;
        gap: 0.5rem;
    }
    .testimonials .swiper-pagination-bullet{
        width: 12px;
        height: 12px;
    }
    .testimonials .view-all-btn{
        margin-top: 2.5rem;
    }
    .testimonials .view-all-btn button{
        font-size: calc(0.55rem + 0.5vw);
        padding: 0.45rem 1rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1229px) {
    .testimonials{
        padding: 2.5rem 7%;
    }
    .testimonials span{
        font-size: calc(0.65rem + 0.5vw);
    }
    .testimonials h6{
        font-size: calc(1.6rem + 0.5vw);
        margin-top: 0.6rem;
    }
    .testimonials .testimonials-swiper{
        padding: 2rem 0.5rem 2.5rem 0.5rem;
    }
    .testimonials .testimonial-card .card-top{
        padding: 1.3rem 0.8rem;
    }
    .testimonials .testimonial-card .card-top p{
        font-size: calc(0.5rem + 0.5vw);
    }
    .testimonials .testimonial-card .card-top span{
        font-size: calc(0.6rem + 0.5vw);
    }
    .testimonials .testimonial-card .card-bottom{
        padding: 0.8rem 1rem;
    }
    .testimonials .testimonial-card .card-bottom img:nth-child(1){
        width: 90px;
    }
    .testimonials .testimonial-card .card-bottom img:nth-child(2){
        width: 45px;
        height: 45px;
        padding: 0.4rem;
    }
    .testimonials .swiper-pagination{
        margin-top: 25px;
        gap: 0.4rem;
    }
    .testimonials .swiper-pagination-bullet{
        width: 11px;
        height: 11px;
    }
    .testimonials .view-all-btn{
        margin-top: 2rem;
    }
    .testimonials .view-all-btn button{
        font-size: calc(0.5rem + 0.5vw);
        padding: 0.4rem 0.8rem;
    }
}

@media screen and (max-width: 767px) {
    .testimonials{
        padding: 1rem 1rem;
    }
    .testimonials span{
        font-size: calc(0.77rem + 0.5vw);
    }
    .testimonials h6{
        font-size: calc(1.3rem + 0.5vw);
        margin-top: 0.6rem;
    }
    .testimonials .testimonials-swiper{
        padding: 1.2rem 0.5rem 2.5rem 0.5rem;
    }
    .testimonials .testimonial-card .card-top{
        padding: 1.1rem 0.8rem;
    }
    .testimonials .testimonial-card .card-top p{
        font-size: calc(0.8rem + 0.5vw);
    }
    .testimonials .testimonial-card .card-top span{
        font-size: calc(0.8rem + 0.5vw);
    }
    .testimonials .testimonial-card .card-bottom{
        padding: 0.7rem 1rem;
    }
    .testimonials .testimonial-card .card-bottom img:nth-child(1){
        width: 80px;
    }
    .testimonials .testimonial-card .card-bottom img:nth-child(2){
        width: 40px;
        height: 40px;
        padding: 0.35rem;
    }
    .testimonials .swiper-pagination{
        gap: 0.2rem;
    }
    .testimonials .swiper-pagination-bullet{
        width: 12px;
        height: 12px;
    }
    .testimonials .view-all-btn{
        margin-top: 1.7rem;
    }
    .testimonials .view-all-btn button{
        font-size: calc(0.7rem + 0.5vw);
    }
}
/* Testimonials End */

/* Video Testimonials Start */
.video-testimonials{
    padding: 1.5rem 7% 7rem 7%;
}
.video-testimonials h6{
    font-size: calc(2rem + 0.5vw);
    font-weight: 700;
    color: #1d4a8a;
    text-align: center;
}
.video-testimonials .vid-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3.2rem;
}
.video-testimonials .vid-row .vid-box{
    width: 31%;
    background-color: rgb(193, 193, 193);
    border-radius: 15px;
    height: 600px;
    overflow: hidden;
}

/* Media Queries */
@media screen and (min-width: 1230px) and (max-width: 1399px) {
    .video-testimonials{
        padding: 1rem 7% 6.5rem 7%;
    }
    .video-testimonials h6{
        font-size: calc(1.8rem + 0.5vw);
    }
    .video-testimonials .vid-row{
        margin-top: 3rem;
    }
    .video-testimonials .vid-row .vid-box{
        height: 560px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1229px) {
    .video-testimonials{
        padding: 1rem 7% 6rem 7%;
    }
    .video-testimonials h6{
        font-size: calc(1.6rem + 0.5vw);
    }
    .video-testimonials .vid-row{
        margin-top: 2.5rem;
    }
    .video-testimonials .vid-row .vid-box{
        height: 490px;
    }
}

@media screen and (max-width: 767px) {
    .video-testimonials{
        padding: 1.5rem 1rem 3rem 1rem;
    }
    .video-testimonials h6{
        font-size: calc(1.4rem + 0.5vw);
    }
    .video-testimonials .vid-row{
        margin-top: 2rem;
    }
    .video-testimonials .vid-row .vid-box{
        height: 70vh;
        width: 100%;
        margin-bottom: 1.1rem;
    }
}
/* Video Testimonials End */

/* Footer Start */
footer{
    background-color: #051e41;
}
.footer-content{
    padding: 5rem 7% 3rem 7%;
    color: #fff;
}
.footer-content .foot-contact-info{
    display: flex;
    justify-content: space-between;
}
.footer-content .foot-contact-info .box{
    display: flex;
    align-items: start;
    gap: 1.2rem;
    background-color: #10376d;
    width: 31%;
    border-radius: 10px;
    padding: 1.3rem;
}
.footer-content .foot-contact-info .box i{
    font-size: calc(1.2rem + 0.5vw);
    margin-top: 5px;
}
.footer-content .foot-contact-info .box span{
    display: block;
    font-size: calc(0.8rem + 0.5vw);
    font-weight: 700;
}
.footer-content .foot-contact-info .box p,
.footer-content .foot-contact-info .box a{
    display: block;
    font-size: calc(0.6rem + 0.5vw);
    color: #fff;
    text-decoration: none;
}
.footer-content .foot-map{
    margin-top: 3rem;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    background-color: #10376d;
}
.footer-copyright{
    background-color: #ce232d;
    padding: 1rem 0;
}
.footer-copyright p{
    font-size: calc(0.45rem + 0.5vw);
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin: 0;
}

/* Media Queries */
@media screen and (min-width: 1230px) and (max-width: 1399px) {
    .footer-content{
        padding: 4.5rem 7% 2.5rem 7%;
    }
    .footer-content .foot-contact-info .box{
        gap: 1.1rem;
        padding: 1.1rem;
    }
    .footer-content .foot-contact-info .box i{
        font-size: calc(1.1rem + 0.5vw);
        margin-top: 4px;
    }
    .footer-content .foot-contact-info .box span{
        font-size: calc(0.7rem + 0.5vw);
    }
    .footer-content .foot-contact-info .box p,
    .footer-content .foot-contact-info .box a{
        font-size: calc(0.55rem + 0.5vw);
    }
    .footer-content .foot-map{
        margin-top: 2.7rem;
        height: 235px;
    }
    .footer-copyright{
        padding: 0.8rem 0;
    }
    .footer-copyright p{
        font-size: calc(0.42rem + 0.5vw);
    }
}

@media screen and (min-width: 992px) and (max-width: 1229px) {
    .footer-content{
        padding: 4rem 7% 2rem 7%;
    }
    .footer-content .foot-contact-info .box{
        gap: 1rem;
        padding: 1rem;
    }
    .footer-content .foot-contact-info .box i{
        font-size: calc(1rem + 0.5vw);
        margin-top: 3px;
    }
    .footer-content .foot-contact-info .box span{
        font-size: calc(0.6rem + 0.5vw);
    }
    .footer-content .foot-contact-info .box p,
    .footer-content .foot-contact-info .box a{
        font-size: calc(0.5rem + 0.5vw);
    }
    .footer-content .foot-map{
        margin-top: 2.4rem;
        height: 210px;
    }
    .footer-copyright{
        padding: 0.65rem 0;
    }
    .footer-copyright p{
        font-size: calc(0.41rem + 0.5vw);
    }
}   

@media screen and (max-width: 767px) {
    .footer-content{
        padding: 1.5rem 1rem 2rem 1rem;
    }
    .footer-content .foot-contact-info{
        flex-wrap: wrap;
    }
    .footer-content .foot-contact-info .box{
        gap: 1rem;
        width: 100%;
        padding: 1.1rem;
        margin-bottom: 1.1rem;
    }
    .footer-content .foot-contact-info .box i{
        font-size: calc(1.1rem + 0.5vw);
    }
    .footer-content .foot-contact-info .box span{
        font-size: calc(1rem + 0.5vw);
    }
    .footer-content .foot-contact-info .box p,
    .footer-content .foot-contact-info .box a{
        font-size: calc(0.75rem + 0.5vw);
        margin-bottom: 0;
    }
    .footer-content .foot-map{
        margin-top: 1rem;
        height: 250px;
    }
    .footer-copyright{
        padding: 0.8rem 0;
    }
    .footer-copyright p{
        font-size: calc(0.7rem + 0.5vw);
    }
}
/* Footer End */

/* Apply Now Button Start */
.apply-btn{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.549) 0px 5px 15px;
    border-radius: 50px;
    padding: 0.6rem;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 500;
}
.apply-btn button{
    background-color: #ce232d;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 0.5rem 1rem;
    font-size: calc(0.49rem + 0.5vw);
    font-weight: 600;
    transition: 0.3s ease;
}
.apply-btn button:hover{
    background-color: #a60f19;
}
.apply-btn img{
    width: 40px;
    transition: all 0.2s ease;
}
.apply-btn img:hover{
    filter: brightness(90%) contrast(115%);
}

/* Media Queries */
@media screen and (min-width: 1230px) and (max-width: 1399px) {
    .apply-btn{
        padding: 0.55rem;
        bottom: 0.9rem;
    }
    .apply-btn button{
        padding: 0.45rem 0.8rem;
        font-size: calc(0.45rem + 0.5vw);
    }
    .apply-btn img{
        width: 35px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1229px) {
    .apply-btn{
        padding: 0.48rem;
        bottom: 0.8rem;
        gap: 0.45rem;
    }
    .apply-btn button{
        padding: 0.38rem 0.8rem;
        font-size: calc(0.39rem + 0.5vw);
    }
    .apply-btn img{
        width: 31px;
    }
}

@media screen and (max-width: 767px) {
    .apply-btn{
        padding: 0.4rem;
        right: 1.1rem;
        bottom: 1.3rem;
        gap: 0.4rem;
    }
    .apply-btn button{
        padding: 0.5rem 0.9rem;
        font-size: calc(0.65rem + 0.5vw);
    }
    .apply-btn img{
        width: 35px;
    }
}
/* Apply Now Button End */

/* Apply Now Modal Start */
#applyNowModal .modal-dialog{
    max-width: 48%;
}
#applyNowModal form .input-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}
#applyNowModal form .input-row input,
#applyNowModal form .input-row textarea{
    width: 48.5%;
    padding: 0.6rem 1rem;
    font-size: calc(0.55rem + 0.5vw);
    border: 1px solid #d7d7d7;
    border-radius: 3px;
    outline: none;
    background-color: #f9f9f9;
}
#applyNowModal form .input-row input::placeholder,
#applyNowModal form .input-row textarea::placeholder{
    color: #9b9b9b;
}
#applyNowModal form .input-row textarea{
    width: 100%;
    min-height: 8rem;
    resize: none;
    margin-top: -1.4rem;
}
#applyNowModal form .input-row input[type="number"]::-webkit-inner-spin-button{
    display: none;
}
#applyNowModal form button{
    width: 100%;
    padding: 0.6rem 0;
    background-color: #ce232d;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: calc(0.55rem + 0.5vw);
    font-weight: 600;
    transition: 0.3s ease;
}
#applyNowModal form button:hover{
    background-color: #a60f19
}

#applyNowModal form .input-row .choices{
    width: 48.5% !important;
    text-align: left;
}
#applyNowModal form .input-row .choices__inner,
#applyNowModal form .input-row .choices__list--single .choices__item,
#applyNowModal form .input-row .choices__list--dropdown .choices__item{
    font-size: calc(0.55rem + 0.5vw);
    white-space: nowrap;
}
#applyNowModal form .input-row .choices__list--dropdown .choices__item{
    font-size: calc(0.4rem + 0.5vw);
}
#applyNowModal form .input-row .choices[data-type*="select-one"]::after{
    display: none;
}

/* Media Queries */
@media screen and (min-width: 992px) and (max-width: 1229px) {
    #applyNowModal form .input-row{
        margin-bottom: 1rem;
    }
    #applyNowModal form .input-row input,
    #applyNowModal form .input-row textarea{
        padding: 0.58rem 0.9rem;
        font-size: calc(0.48rem + 0.5vw);
    }
    #applyNowModal form .input-row textarea{
        min-height: 6rem;
        margin-top: -1.45rem;
    }
    #applyNowModal form button{
        font-size: calc(0.5rem + 0.5vw);
    }

    #applyNowModal form .input-row .choices__inner,
    #applyNowModal form .input-row .choices__list--single .choices__item,
    #applyNowModal form .input-row .choices__list--dropdown .choices__item{
        font-size: calc(0.48rem + 0.5vw);
    }
    #applyNowModal form .input-row .choices__list--dropdown .choices__item{
        font-size: calc(0.35rem + 0.5vw);
    }
}

@media screen and (max-width: 767px) {
    #applyNowModal .modal-dialog{
        max-width: 100%;
    }
    #applyNowModal .modal-dialog .modal-content{
        padding: 0 !important;
    }
    #applyNowModal form .input-row{
        margin-bottom: 0.7rem;
    }
    #applyNowModal form .input-row input,
    #applyNowModal form .input-row textarea{
        padding: 0.6rem 1rem;
        font-size: calc(0.7rem + 0.5vw);
    }
    #applyNowModal form .input-row textarea{
        min-height: 6rem;
        margin-top: -0.6rem;
    }
    #applyNowModal form button{
        padding: 0.6rem 0;
        font-size: calc(0.8rem + 0.5vw);
        margin-top: 0.1rem;
    }

    #applyNowModal form .select-row{
        flex-wrap: wrap;
    }
    #applyNowModal form .input-row .choices{
        width: 100% !important;
        margin-bottom: 0.7rem;
    }

    #applyNowModal form .input-row .choices__inner,
    #applyNowModal form .input-row .choices__list--single .choices__item,
    #applyNowModal form .input-row .choices__list--dropdown .choices__item{
        font-size: calc(0.7rem + 0.5vw);
    }
    #applyNowModal form .input-row .choices__list--dropdown .choices__item{
        font-size: calc(0.7rem + 0.5vw);
    }
}
/* Apply Now Modal End */

/* Alert Popup Start */
.alert-popup{
    position: fixed;
    top: 40%;
    left: -100%;
    background-color: #1d4a8a;
    padding: 3.8rem 3rem 3.8rem 4rem;
    z-index: 199;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: rgb(255, 255, 255) 6px 6px 1.5px;
    transition: left 0.6s ease;
}
.alert-popup p{
    font-size: calc(0.75rem + 0.5vw);
    margin: 0;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.alert-popup i{
    font-size: calc(1.15rem + 0.5vw);
    position: absolute;
    right: 0.5rem;
    top: 0.2rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #fff;
}
.alert-popup i:hover{
    color: #dd2c38;
}
.alert-popup .bell-icon{
    width: 65px;
    height: 65px;
    position: absolute;
    right: 2rem;
    bottom: -2rem;
    background-color: #fff;
    padding: 0.9rem 0.8rem 0.9rem 1rem;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.alert-popup .bell-icon img{
    width: 100%;
}

/* Media Queries */
@media screen and (min-width: 1230px) and (max-width: 1399px) {
    .alert-popup{
        padding: 3.5rem 2.5rem 3.5rem 3.5rem;
        border-top-right-radius: 18px;
        border-bottom-right-radius: 18px;
        box-shadow: rgb(255, 255, 255) 5px 5px 1.5px;
    }
    .alert-popup p{
        font-size: calc(0.7rem + 0.5vw);
    }
    .alert-popup i{
        font-size: calc(1.05rem + 0.5vw);
        top: 0.15rem;
        padding: 0.48rem;
    }
    .alert-popup .bell-icon{
        width: 60px;
        height: 60px;
        bottom: -2rem;
        padding: 0.9rem 0.8rem 0.8rem 1rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1229px) {
    .alert-popup{
        padding: 3rem 2.2rem 3rem 3rem;
        border-top-right-radius: 14px;
        border-bottom-right-radius: 14px;
        box-shadow: rgb(255, 255, 255) 5px 5px 1.5px;
    }
    .alert-popup p{
        font-size: calc(0.65rem + 0.5vw);
    }
    .alert-popup i{
        font-size: calc(1rem + 0.5vw);
        top: 0.17rem;
        padding: 0.42rem;
    }
    .alert-popup .bell-icon{
        width: 55px;
        height: 55px;
        bottom: -1.9rem;
        padding: 0.8rem 0.7rem 0.7rem 0.9rem;
    }
}

@media screen and (max-width: 767px) {
    .alert-popup{
        top: 15%;
        padding: 1.6rem 1.5rem 1.8rem 2rem;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        box-shadow: rgb(255, 255, 255) 4px 4px 1.5px;
    }
    .alert-popup p{
        font-size: calc(0.75rem + 0.5vw);
    }
    .alert-popup i{
        font-size: calc(1.1rem + 0.5vw);
        top: 0.07rem;
        right: 0.2rem;
        padding: 0.4rem;
    }
    .alert-popup .bell-icon{
        width: 40px;
        height: 40px;
        bottom: -1.3rem;
        padding: 0.4rem 0.45rem 1rem 0.5rem;
    }
}
/* Alert Popup End */