:root {
    --white: #fff;
    --dark-white: #9d9ca7;
    --btn-red-col: #f30000;
    --black: #000;
}
* {
    margin: 0;
    padding: 0;
    font-family: "montserrat", sans-serif;
}
ul {
    margin-bottom: 0;
}
a {
    text-decoration: none;
}
p {
    word-break: break-word;
}

.msg {
    width: 100%;
    margin: 5px auto;
    padding: 8px;
    border-radius: 5px;
    list-style: none;
}

.error {
    color: #884b4b;
    border: 1px solid #884b4b;
    background: #f5bcbc;
}

.success {
    color: #3a6e3a;
    border: 1px solid #3a6e3a;
    background-color: #bcf5bc;
}

.main-header {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    z-index: 99;
}

.auto-container {
    position: static;
    width: 100%;
    max-width: 1170px;
    padding: 0px 15px;
    margin: 0 auto;
}

.header-top {
    background: #1a1544;
    color: var(--white);
    padding: 12px 0;
    font-size: 12px;
    position: relative;
}
.header-top .auto-container {
    display: flex;
}

.header-top .auto-container .header-top-left {
    flex: 1;
}
.header-top .auto-container .header-top-left ul {
    list-style: none;
    padding-left: 0;
    display: flex;
}
.header-top .auto-container .header-top-left ul li {
    display: inline-block;
    text-align: center;
    height: 100%;
}
.header-top .auto-container .header-top-left ul li:nth-child(2) {
    margin-left: 10px;
}
.header-top .auto-container .header-top-left ul li a {
    text-decoration: none;
    color: var(--white);
}
.header-top .auto-container .header-top-left ul li i {
    color: var(--dark-white);
}
.header-top .auto-container .header-top-right {
}
.header-top .auto-container .header-top-right ul {
    list-style: none;
    display: flex;
}
.header-top .auto-container .header-top-right ul li {
    margin-left: 15px;
    cursor: pointer;
}
.header-top .auto-container .header-top-right ul li:hover a {
    color: var(--dark-white);
}
.header-top .auto-container .header-top-right ul li a {
    text-decoration: none;
    color: var(--white);
}

.main-menu {
    position: fixed;
    width: 100%;
    padding: 12px 0;
    background: #141414;
    transition: background-color 200ms linear;
}
.main-menu.transparent_header {
    background: transparent;
}
.main-menu.scrolled {
    top: 0;
    background-color: #141414;
    transition: background-color 200ms linear;
    box-shadow: 0 10px 20px rgb(0 0 0 / 20%);
}
.main-menu .auto-container {
    display: flex;
}
.main-menu .auto-container .logo-box img {
    height: 40px;
}

.main-menu .auto-container .menu-area {
    display: flex;
    flex: 1;
    align-items: center;
}
.main-menu .auto-container .menu-area nav {
    flex: 1;
    display: flex;
    justify-content: center;
    height: 100%;
}
.main-menu .auto-container .menu-area nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    height: 100%;
}
.main-menu .auto-container .menu-area nav ul li {
    display: inline-flex;
    align-items: center;
    margin: 0 20px;
    height: 100%;
}
.main-menu .auto-container .menu-area .menu-right-content {
    display: flex;
    align-items: center;
    flex: 0.2;
    justify-content: space-between;
}
.main-menu .auto-container .menu-area .menu-right-content .search-btn {
    cursor: pointer;
    color: var(--white);
    font-size: 20px;
    padding: 0 10px;
}
.main-menu .auto-container .menu-area .menu-right-content .search-btn:hover {
    color: var(--dark-white);
}
.main-menu .auto-container .menu-area .menu-right-content .hamburger-menu {
    display: none;
    padding: 10px 10px;
}
.main-menu
    .auto-container
    .menu-area
    .menu-right-content
    .hamburger-menu
    .toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-size: cover;
    color: #fff;
    width: 1.5em;
    height: 1.5em;
    display: block;
}
.main-menu .auto-container .menu-area nav ul li a {
    color: var(--white);
    text-decoration: none;
}
.main-menu .auto-container .menu-area nav ul li a:hover {
    color: var(--dark-white);
}
.contact-btn,
.click-btn {
    display: flex;
    background: var(--btn-red-col);
    border-radius: 20px;
    color: var(--white);
    transition: all 0.2s ease;
}

.contact-btn:hover,
.click-btn:hover {
    background: #a40f0f;
    transition: all 0.2s ease;
}
.contact-btn a,
.click-btn a {
    text-decoration: none;
    color: var(--white);
    font-weight: 330;
    font-size: 12px;
    padding: 8px 12px;
}

.main-menu li.current > a {
    text-decoration: underline !important;
    text-underline-offset: 6px;
}

.main-menu .auto-container .menu-area nav ul .nav-dropdown {
    position: relative;
}
.main-menu .auto-container .menu-area nav ul .nav-dropdown .nav-dropdown-menu {
    position: absolute;
    background: var(--white);
    width: 200px;
    top: 100%;
    box-shadow: 2px 2px 5px 1px rgb(0 0 0 / 5%),
        -2px 0px 5px 1px rgb(0 0 0 / 5%);
    padding-left: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    height: auto;
    transform: translate(-20%, 30px);
    transition: all 0.5s ease;
    overflow-y: auto;
    max-height: calc(100vh - 120px);
}
.main-menu
    .auto-container
    .menu-area
    nav
    ul
    .nav-dropdown:hover
    .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-20%, 10px);
    transition: all 0.5s ease;
}
.main-menu
    .auto-container
    .menu-area
    nav
    ul
    .nav-dropdown
    .nav-dropdown-menu
    li {
    display: block;
    position: relative;
    border-bottom: 1px solid #eeeeee;
    width: 100%;
    margin: 0;
}

.main-menu
    .auto-container
    .menu-area
    nav
    ul
    .nav-dropdown
    .nav-dropdown-menu
    li:hover {
    background: var(--dark-white);
}

.main-menu
    .auto-container
    .menu-area
    nav
    ul
    .nav-dropdown
    .nav-dropdown-menu
    li
    a {
    color: #000;
    padding: 11px 30px;
    display: block;
}
main {
    min-height: 100vh;
    padding-top: 106px;
}
.banner-section {
    min-height: 400px;
}
.banner-section .item {
    overflow: hidden;
    padding: 30px 0px 30px 0px;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 720px;
}
.banner-section .item .image-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    min-height: 100%;
    transition: all 6000ms linear;
    transform: scale(1);
}
.banner-section .active .item .image-layer {
    transform: scale(1.15);
}

/* css style to fix unresponsive layout of loading each image div on new row line when page load for banner hompegae slider , so as to reduce contenful layout shift of the web page */
.banner-section .owl-stage {
    position: relative;
    height: 720px;
    width: max-content;
}
.banner-section .owl-item {
    display: block;
    position: relative;
    overflow: hidden;
    height: 100%;
    float: left;
}
/* ------- css style to fix unresponsive layout of loading each image div on new row line when page load for banner hompegae slider , so as to reduce contenful layout shift of the web page */

.banner-section .owl-item:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    left: 0px;
    top: 0px;
    right: 0px;
    z-index: 1;
}
.banner-section .item .content-box {
    padding-top: 60px;
    position: relative;
    z-index: 5;
    min-height: 300px;
}
.banner-section .item .content-box.centred {
    text-align: center;
}
.banner-section .content-box h5 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 17px;
    text-transform: uppercase;
    opacity: 0;
    padding-right: 55px;
    position: relative;
    display: inline-block;
    padding-right: 55px;
    transform: translateY(50px);
    transition: all 700ms ease;
}
.banner-section .content-box h5:before {
    position: absolute;
    content: "";
    background: var(--white);
    width: 45px;
    height: 2px;
    top: 10px;
    right: 0px;
}
.banner-section .active .content-box h5 {
    opacity: 1;
    transform: translateY(0);
}

.banner-section .content-box .list-item {
    position: relative;
    display: block;
    margin-bottom: 17px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1000ms ease;
}

.banner-section .active .content-box .list-item {
    opacity: 1;
    transform: translateX(0);
}

.banner-section .content-box .list-item li {
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
    line-height: 30px;
    color: #fff;
    font-weight: 400;
}

.banner-section .content-box h1 {
    position: relative;
    display: block;
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 700ms ease;
}
.banner-section .active .content-box h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 500ms;
}

.banner-section .content-box .btn-box {
    position: relative;
    opacity: 0;
    transform: translateY(100px);
    transition: all 1500ms ease;
}

.banner-section .active .content-box .btn-box {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1500ms;
}

.banner-section .content-box .btn-box .theme-btn {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    line-height: 30px;
    font-weight: 700;
    color: #fff !important;
    padding: 10px 38px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
    transition: all 500ms ease;
    text-decoration: none;
    padding: 10px 28px;
    margin-right: 30px;
}
.theme-btn.style-one {
    background: var(--btn-red-col);
    border-radius: 30px;
}

.banner-section .content-box .btn-box .theme-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: -1;
    background-color: #fff;
    transition: all 0.3s;
    transform: scaleY(0);
    transform-origin: left top;
    border-radius: 30px;
}

.banner-section .content-box .btn-box .theme-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #222;
    transition: all 0.3s;
    transform: scaleY(0);
    transform-origin: left top;
    border-radius: 30px;
}

.banner-section .content-box .btn-box .theme-btn:hover::before {
    transform: scaleY(1);
}

.banner-section .content-box .btn-box .theme-btn:hover::after {
    transition-delay: 0.2s;
    transform: scaleY(1);
}

.banner-section .content-box .btn-box .banner-btn-two {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    border: 1px solid #fff;
    text-align: center;
    padding: 13px 34px;
}

.banner-section .content-box .btn-box .banner-btn-two:hover {
    color: var(--btn-red-col);
}

.banner-section .content-box .btn-box .banner-btn-two:before {
    position: absolute;
    content: "";
    background: #fff;
    width: 0%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    transition: all 500ms ease;
}

.banner-section .content-box .btn-box .banner-btn-two:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 0%;
    height: 100%;
    right: 0px;
    top: 0px;
    z-index: -1;
    transition: all 500ms ease;
}

.banner-section .content-box .btn-box .banner-btn-two:hover:before,
.banner-section .content-box .btn-box .banner-btn-two:hover:after {
    width: 50%;
}

.banner-section .content-box .btn-box .question-btn svg {
    height: 25px;
    width: 35px;
}
.banner-section .content-box .btn-box .question-btn span {
    color: var(--white);
    font-size: 12px;
}
.banner-section .content-box .btn-box .question-btn span:hover {
    color: var(--dark-white);
}

.owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
}
.owl-theme .owl-nav .owl-prev,
.owl-theme .owl-nav .owl-next {
    background: transparent;
    margin: 0;
}
.owl-theme .owl-nav .owl-prev img,
.owl-theme .owl-nav .owl-next img {
    width: 1.1rem;
    height: 1.1rem;
}

.click-btn {
    display: inline-flex;
    border-radius: 10px;
    width: max-content;
}

.head-text {
    font-weight: 300;
    font-size: 22px;
    display: flex;
    align-items: center;
}

.head-text span {
    margin-right: 8px;
}

.head-text i {
    font-size: 22px;
    margin-left: 4px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 100;
}

.banner-advert {
    padding-top: 80px;
    padding-bottom: 40px;
}

.banner-advert .banner-advert-cover-box {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
        rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    padding: 10px;
    height: 100%;
}

.banner-advert .banner-advert-cover-box .banner-advert-text-box .first-head {
    font-weight: 700;
    font-size: 1rem;
    color: #3121b0;
    margin-top: 10px;
    display: block;
}

.banner-advert .banner-advert-cover-box .banner-advert-text-box .second-head {
    font-size: 0.8rem;
    font-weight: 400;
    display: block;
}

.banner-advert .banner-advert-cover-box .banner-advert-text-box .third-head {
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
}

.banner-advert .banner-advert-img-box img {
    width: 100%;
    height: auto;
}

.banner-advert h2 {
    font-weight: 700;
    font-size: 2.6rem;
    color: #1a1544;
}
.banner-advert p {
    font-size: 1.4rem;
    font-weight: 300;
}
.banner-advert .click-btn a {
    font-size: 1rem;
    font-weight: 400;
    padding: 20px 36px;
}

.banner-advert .banner-advert-heading {
    text-align: center;
}

.banner-advert .banner-advert-heading h2 {
    font-size: 2.2rem;
    font-weight: 900;
}

.who-we-are {
    padding-top: 100px;
    padding-bottom: 60px;
}

.who-we-are .who-we-are-img-box img {
    width: 100%;
    height: auto;
}

.who-we-are h2 {
    font-weight: 700;
    font-size: 2.6rem;
    color: #1a1544;
}
.who-we-are p {
    font-size: 1.4rem;
    font-weight: 300;
}
.who-we-are .click-btn a {
    font-size: 1rem;
    font-weight: 400;
    padding: 20px 36px;
}

.our-programs {
    padding-top: 60px;
    padding-bottom: 60px;
}

.our-programs .col-md-4 {
    min-height: 100%;
    display: flex;
}
.our-programs .our-programs-heading {
    text-align: center;
}
.our-programs .our-programs-heading h2 {
    color: #1a1544;
    font-weight: 900;
    font-size: 3rem;
}
.our-programs .head-text {
    display: block;
}

.our-programs .each-program-box {
    background: var(--white);
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 400px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 60px;
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100%;
}

.our-programs .each-program-box .img-box {
    padding: 10px;
}

.our-programs .each-program-box .cont-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.our-programs .each-program-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 20px;
}

.our-programs .each-program-box .program-btn-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    height: 100%;
    justify-content: center;
}
.our-programs .each-program-box .click-btn {
    margin-top: 20px;
}
.our-programs .each-program-box .click-btn a {
    font-size: 16px;
}
.blog-section {
    padding-top: 40px;
    padding-bottom: 60px;
}
.blog-section .head-text {
    display: block;
}
.blog-section .blog-section-heading {
    text-align: center;
    padding: 20px 2px;
}
.blog-section .blog-section-heading h2 {
    color: #1a1544;
    font-weight: 800;
    font-size: 2rem;
}
.fun-fact {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fun-fact .fun-fact-box {
    width: 100%;
    height: 150px;
    background: #1a1544;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.fun-fact .fun-fact-box .fun-fact-num {
    font-weight: 800;
    font-size: 3.8rem;
    line-height: 100%;
}
.fun-fact .fun-fact-box .fun-fact-text {
    font-weight: 400;
    font-size: 0.8rem;
    color: #9d9ca7;
    line-height: 0.8rem;
    margin-top: 10px;
}

.why-choose-us {
    padding-top: 100px;
    padding-bottom: 100px;
}

.why-choose-us .head-text {
    text-align: center;
    display: block;
}
.why-choose-us .head-text-heading {
    text-align: center;
    font-weight: 900;
    font-size: 3rem;
    color: #1a1544;
}
.why-choose-us .why-choose-us-desc-cont {
    padding-top: 50px;
}
.why-choose-us .why-choose-us-desc {
    padding-top: 50px;
    padding-right: 0;
}
.why-choose-us .why-choose-img-box {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}
.why-choose-us .why-choose-img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.why-choose-us .why-choose-us-text-cont {
    display: flex;
    justify-content: center;
    align-items: center;
}
.why-choose-us .why-choose-us-text-cont h3 {
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 46px;
    color: #1a1544;
}
.why-choose-us .why-choose-us-text-cont p {
    font-size: 1.4rem;
}
.testimonials {
    padding-top: 180px;
    padding-bottom: 100px;
    background: #1a1544;
}
.testimonials .head-text {
    text-align: center;
    display: block;
    color: var(--white);
}
.testimonials .head-text-heading {
    text-align: center;
    font-weight: 900;
    font-size: 3rem;
    margin-top: 20px;
    color: var(--white);
}
.testimonials .testimonial-slider {
    padding-top: 100px;
}
.testimonials .owl-theme .owl-nav {
    bottom: 0;
    position: relative;
    margin-top: 30px;
}
.testimonials .testimonial-slider .owl-item {
    color: var(--white);
}

.testimonials .testimonial-slider .owl-item .item {
    padding: 10px 3rem;
}

.testimonials .testimonial-slider .testimonial-apostrophe {
    margin-bottom: 20px;
}

.testimonials .testimonial-slider .testimonial-apostrophe img {
    height: 2.6rem;
    width: auto;
}

.testimonials .testimonial-slider .testimonial-text p {
    font-size: 1rem;
}

.testimonials .testimonial-slider .testimonial-avatar-section {
    display: flex;
}

.testimonials
    .testimonial-slider
    .testimonial-avatar-section
    .testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #9d9ca7;
}
.testimonials
    .testimonial-slider
    .testimonial-avatar-section
    .testimonial-avatar
    img {
    height: 100%;
    width: auto;
    object-position: center;
    object-fit: cover;
}

.testimonials
    .testimonial-slider
    .testimonial-avatar-section
    .testimonial-avatar-dets {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
}
.testimonials
    .testimonial-slider
    .testimonial-avatar-section
    .testimonial-avatar-dets
    span {
    font-size: 0.75rem;
    line-height: 0.75rem;
}
.testimonials
    .testimonial-slider
    .testimonial-avatar-section
    .testimonial-avatar-dets
    span:nth-child(1) {
    font-weight: bold;
    margin-bottom: 2px;
}
.testimonials
    .testimonial-slider
    .testimonial-avatar-section
    .testimonial-avatar-dets
    span:nth-child(2) {
    font-weight: lighter;
    margin-top: 2px;
}

.contact-us {
    padding-top: 80px;
    padding-bottom: 100px;
    background: #1a1544;
}
.contact-us .head-text {
    text-align: center;
    display: block;
    color: var(--white);
}
.contact-us .head-text-heading {
    text-align: center;
    font-weight: 900;
    font-size: 3rem;
    color: var(--white);
}
.contact-us .head-text-desc {
    text-align: center;
    color: var(--dark-white);
    font-size: 1.2rem;
    font-weight: lighter;
}
.contact-us .contact-us-cont {
    margin-top: 60px;
}
.contact-us .contact-us-cont .contact-us-img-cont,
.contact-us .contact-us-cont .contact-us-form {
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
}
.contact-us .contact-us-cont .contact-us-img-cont .contact-us-img {
    overflow: hidden;
    max-height: 800px;
}
.contact-us .contact-us-cont .contact-us-img-cont .contact-us-img img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s linear;
    transform: scale(1);
}
.contact-us .contact-us-cont .contact-us-img-cont .contact-us-img img:hover {
    transition: all 0.5s linear;
    transform: scale(1.15);
}
.contact-us .contact-us-cont .contact-us-form {
    height: 100%;
}
.contact-us .contact-us-cont .contact-us-form form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
.contact-us .contact-us-cont .contact-us-form label {
    color: var(--white);
    padding: 15px 0;
    font-size: 1rem;
    font-weight: 300;
}
.contact-us .contact-us-cont .contact-us-form label span {
    color: red;
}
.contact-us .contact-us-cont .contact-us-form input,
.contact-us .contact-us-cont .contact-us-form textarea {
    border-radius: 0;
    background: #36306d;
    border: none;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 300;
}
.contact-us .contact-us-cont .contact-us-form input:focus {
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}
.contact-us .contact-us-cont .contact-us-form button {
    border: none;
    background: #f30000;
    padding: 1rem 1rem;
    margin-top: 10px;
}
.contact-us .contact-us-cont .contact-us-form button:hover {
    background: var(--dark-white);
}

.call-to-action {
    padding-top: 60px;
    padding-bottom: 140px;
    background: #1a1544;
    text-align: center;
    color: var(--white);
}
.call-to-action span {
    font-weight: 300;
    font-size: 1rem;
}
.call-to-action h2 {
    font-size: 2.4rem;
    font-weight: 600;
}
.call-to-action button {
    background: #f30000;
    border-radius: 15px;
    border: none;
    padding: 20px 6rem;
}
.call-to-action button:hover {
    background: var(--dark-white);
}
.call-to-action button a {
    color: var(--white);
}

footer {
    background: #0e0225;
    margin-top: 12px;
    padding-top: 60px;
    padding-bottom: 60px;
}
footer .row .col-md-3 {
    display: flex;
    flex-direction: column;
    color: var(--white);
    height: 100%;
}
footer .row .col-md-3 h3 {
    font-weight: 500;
    font-size: 1rem;
}
footer .row .col-md-3 ul {
    list-style: none;
    padding: 0;
}
footer .row .col-md-3 ul li a {
    color: var(--white);
    font-weight: 300;
    font-size: 0.8rem;
    transition: all 0.5s ease;
}
footer .row .col-md-3 ul li a:hover {
    color: var(--dark-white);
    margin-left: 4px;
    transition: all 0.5s ease;
}
footer .footer-site-desc .footer-logo-box {
    max-width: 200px;
}
footer .footer-site-desc .footer-logo-box img {
    max-width: 100%;
}
footer .footer-site-desc p {
    font-weight: 300;
    font-size: 0.8rem;
    margin-top: 20px;
}
footer .row .footer-useful-links ul li,
footer .row .footer-our-programs ul li,
footer .row .footer-contact-us .footer-contact-desc li {
    margin-bottom: 10px;
}
footer .row .footer-contact-us .footer-contact-desc li {
    display: flex;
}
footer .row .footer-contact-us .footer-contact-desc li a {
    padding-left: 8px;
}

footer .row .footer-contact-us .footer-social-media-links {
    display: flex;
    justify-content: space-between;
    max-width: 150px;
}

.search-overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(
        0,
        0,
        0,
        0.9
    ); /* Black with a little bit see-through */
}
.search-overlay .search-overlay-closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 2.5rem;
    cursor: pointer;
    color: white;
}

.search-overlay .search-overlay-closebtn:hover {
    color: #ccc;
}
.search-overlay .search-overlay-form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.search-overlay .search-overlay-form form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.search-overlay input[type="text"] {
    padding: 15px;
    font-size: 1rem;
    border: none;
    float: left;
    width: 80%;
    background: var(--white);
    max-width: 400px;
    outline: none;
}

.search-overlay input[type="text"]:hover {
    background: #f1f1f1;
}

.search-overlay button {
    float: left;
    width: 20%;
    padding: 15px;
    background: var(--btn-red-col);
    color: var(--white);
    font-size: 17px;
    border: none;
    cursor: pointer;
    max-width: 200px;
}

.search-overlay button:hover {
    background: var(--dark-white);
}

.mobile-menu {
    height: 100%; /* 100% Full-height */
    width: 100%; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Stay on top */
    top: 0; /* Stay at the top */
    right: 0;
    display: none;
    background-color: #000000d1; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
}

.mobile-menu .mobile-menu-closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 2rem;
    margin-left: 50px;
    color: var(--white);
    cursor: pointer;
    z-index: 1;
    transition: all 0.9s ease;
    transform: rotate(0deg);
}
.mobile-menu .mobile-menu-closebtn:hover {
    color: var(--dark-white);
    transition: all 0.9s ease;
}
.mobile-menu .mobile-menu-closebtn.mobile-menu-closebtn_rotate {
    transform: rotate(360deg);
    transition: all 0.9s ease;
}
.mobile-menu .mobile-menu-area {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 300px;
    height: 100%;
    position: fixed;
    right: 0;
    overflow-y: auto;
    background: #1a1544;
    padding-top: 60px; /* Place content 60px from the top */
    transform: translateX(101%);
    transition: all 0.5s ease;
}

.mobile-menu .mobile-menu-area.mobile_menu_visible {
    transition: all 0.5s ease;
    transform: translateX(0%);
}
.mobile-menu .mobile-menu-area nav {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .mobile-menu-area nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding-left: 0;
}
.mobile-menu .mobile-menu-area nav ul li {
    display: block;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .mobile-menu-area nav ul li a {
    color: var(--white);
    position: relative;
    display: block;
    line-height: 2rem;
    padding: 10px 25px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}
.mobile-menu .mobile-menu-area nav ul li a:hover {
    color: var(--dark-white);
}

.mobile-menu .mobile-menu-area nav ul li.current > a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-left: 5px solid #fff;
    transition: all 500ms ease;
    height: 100%;
}

.mobile-menu .mobile-menu-area .mobile-nav-dropdown .mobile-nav-dropdown-menu {
    display: none;
}
.mobile-menu
    .mobile-menu-area
    .mobile-nav-dropdown
    .mobile-nav-dropdown-menu.mobile-menu-active {
    display: block;
    animation: slide-down-mobile-menu-dropdown 2.3s ease-out;
}
.mobile-menu
    .mobile-menu-area
    .mobile-nav-dropdown
    .mobile-nav-dropdown-menu
    li
    a {
    margin-left: 20px;
}
.mobile-menu .mobile-menu-area .mobile-nav-dropdown .mobile-menu-drp-ico {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    border-radius: 2px;
    transition: all 500ms ease;
}
.mobile-menu .mobile-menu-area .mobile-nav-dropdown .mobile-menu-drp-ico i {
    transition: all 500ms ease;
}

.mobile-menu
    .mobile-menu-area
    .mobile-nav-dropdown
    .mobile-menu-drp-ico.mobile-menu-open {
    background: #fff;
    color: #3b3b3b;
    transition: all 500ms ease;
}
.mobile-menu
    .mobile-menu-area
    .mobile-nav-dropdown
    .mobile-menu-drp-ico.mobile-menu-open
    i {
    transform: rotate(90deg);
    transition: all 500ms ease;
}

.float-whatsapp-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 32px;
    left: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float-whatsapp-btn {
    margin-top: 16px;
}

.bread-crumb-section {
    position: relative;
    width: 100%;
    padding: 90px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 12px;
}

.bread-crumb-section:before {
    position: absolute;
    content: "";
    background: #000;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    opacity: 0.7;
}

.bread-crumb-section h1 {
    margin-bottom: 4px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    text-align: center;
}
.bread-crumb-section ul {
    list-style: none;
    justify-content: center;
    display: flex;
}
.bread-crumb-section ul li {
    position: relative;
    display: inline-block;
    font-size: 0.8rem;
    color: #fff;
    padding-right: 12px;
    margin-right: 5px;
}

.bread-crumb-section ul li:before {
    position: absolute;
    content: "";
    background: #fff;
    width: 3px;
    height: 1px;
    top: 50%;
    right: 0px;
}
.bread-crumb-section ul li:last-child:before {
    display: none;
}
.bread-crumb-section ul li a {
    color: #fff;
}
.bread-crumb-section ul li a:hover {
    color: var(--dark-white);
}
.contact-heading-section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.contact-heading-section .contact-heading {
    text-align: center;
}
.contact-heading-section .contact-heading .head-text {
    justify-content: center;
}
.contact-heading-section .contact-heading h2 {
    font-weight: 700;
}
.contact-heading-section .contact-icon-cont {
    margin-top: 80px;
    align-items: stretch;
}

.contact-heading-section .contact-icon-cont .inner-box {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    justify-content: center;
    align-items: center;
    padding: 58px 30px 54px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
    height: 100%;
    width: 100%;
}

.contact-heading-section .contact-icon-cont .inner-box h3 {
    font-weight: 600;
}

.contact-heading-section .contact-icon-cont .inner-box .icon-box {
    margin-bottom: 30px;
}
.contact-heading-section .contact-icon-cont .inner-box .icon-box i {
    font-size: 80px;
    display: inline-block;
    background: -webkit-linear-gradient(0deg, #20476a, #3381c9 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.map-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #1a1544;
}
.map-section .map-box {
    position: relative;
    display: block;
    height: 550px;
}
.about-us-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.about-us-section .about-desc-cont {
    color: var(--white);
    background: #1a1544;
    padding: 50px 20px 30px 20px;
}

.about-us-section .about-desc-cont .head-text span {
    font-weight: 600;
}

.about-us-section h2 {
    font-size: 1.5rem;
    margin-top: 20px;
    font-weight: 700;
}
.about-us-section p {
    font-weight: 300;
}

.about-us-section p.about-value-text {
    font-weight: 300;
}

.about-us-section .img-box {
    padding: 10px;
    background: #1a1544ad;
    display: flex;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.about-us-section .img-box:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(
        left,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(255, 255, 255, 0)),
        to(rgba(255, 255, 255, 0.3))
    );
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.about-us-section .img-box:hover:before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}
.about-us-section .img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.career-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.career-section .career-desc-cont {
    color: var(--black);
    background: ##f3f3f3;
    padding: 50px 20px 30px 20px;
}

.career-section .career-desc-cont .career-head-text {
    font-weight: 700;
    color: #4c0fc1;
}

.career-section p {
    font-weight: 400;
    font-size: 1.4rem;
}

.career-section .click-btn a {
    font-size: 1rem;
    font-weight: 700;
    padding: 8px 20px;
}

.career-section .img-box {
    padding: 10px;
    background: #1a1544ad;
    display: flex;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.career-section .img-box:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(
        left,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(255, 255, 255, 0)),
        to(rgba(255, 255, 255, 0.3))
    );
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.career-section .img-box:hover:before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}
.career-section .img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.custom_design .head-text {
    text-align: center;
    display: block;
}

.custom_design .head-text-heading {
    text-align: center;
    font-weight: 900;
    font-size: 2.2rem;
}

.custom_design .head-text-desc {
    text-align: center;
    font-size: 1.2rem;
    font-weight: lighter;
}

.grecaptcha-badge {
    visibility: hidden;
}

/*cookie consent design*/

#cookiePopup {
    background-color: #ffffff;
    position: fixed;
    font-size: 14px;
    width: 70vw;
    max-width: 42.85em;
    box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);
    font-family: "Poppins", sans-serif;
    text-align: justify;
    line-height: 1.8em;
    padding: 2em 1.4em;
    border-radius: 6px;
    transition: all 0.5s ease-in;
    z-index: 9999999999999999;
}
#cookiePopup img {
    display: block;
    width: 3.75em;
    transform: translateZ(0);
    position: relative;
    margin: auto;
}
#cookiePopup p {
    text-align: center;
    margin: 1.4em 0;
}
#cookiePopup button {
    background-color: #6859fe;
    border: none;
    color: #ffffff;
    font-size: 1em;
    padding: 1em 1.4em;
    display: block;
    position: relative;
    margin: auto;
    border-radius: 5px;
}
#cookiePopup a {
    color: #6859fe;
}
#cookiePopup.hide {
    visibility: hidden;
    bottom: 0;
    right: 2em;
}
#cookiePopup.show {
    visibility: visible;
    bottom: 2em;
    right: 2em;
}

/*cookie consent design*/

#preloader_div {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#preloader_div img {
    object-fit: fill;
    display: block;
    object-position: center;
}

.facilitator-section {
    padding-top: 80px;
    padding-bottom: 40px;
}

.facilitator-section .facilitator-section-cover-box {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
        rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    padding: 10px;
    height: 100%;
}

.facilitator-section
    .facilitator-section-cover-box
    .facilitator-section-text-box
    .first-head {
    font-weight: 700;
    font-size: 0.9rem;
    color: #3121b0;
    margin-top: 10px;
    display: block;
}

.facilitator-section
    .facilitator-section-cover-box
    .facilitator-section-text-box
    .second-head {
    font-size: 0.8rem;
    font-weight: 400;
    display: block;
}

.facilitator-section
    .facilitator-section-cover-box
    .facilitator-section-text-box
    .third-head {
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
}

.facilitator-section
    .facilitator-section-cover-box
    .facilitator-section-text-box
    .third-head
    i {
    font-size: 1rem;
    color: #3121b0;
}

.facilitator-section .facilitator-section-img-box img {
    width: 100%;
    height: auto;
}

.facilitator-section .facilitator-section-heading {
    text-align: center;
}

.facilitator-section .facilitator-section-heading h2 {
    font-size: 2rem;
    font-weight: 900;
}

.unique-shadow-button {
    border-width: 3px;
    --tw-border-opacity: 1;
    background-color: transparent;
    border-color: rgb(0 0 0 / var(--tw-border-opacity));
    --tw-shadow: 5px 5px 0px #202054;
    --tw-shadow-colored: 5px 5px 0px var(--tw-shadow-color);
    --tw-shadow-color: #202054;
    --tw-shadow: var(--tw-shadow-colored);
    transition-duration: 0.15s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);

    color: #111;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 8px 20px;
    border-style: solid;
    display: inline-block;

    width: max-content;
    text-align: center;
    word-wrap: break-word;
}

.unique-shadow-button,
.unique-shadow-button:hover {
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.unique-shadow-button:hover {
    background-color: #202054;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    --tw-shadow: 5px 5px 0px #202054;
    --tw-shadow-colored: 5px 5px 0px var(--tw-shadow-color);
    --tw-shadow-color: #f30000;
    --tw-shadow: var(--tw-shadow-colored);
}

.home-banner-advert .unique-shadow-button {
    font-size: 0.7rem;
    padding: 4px 15px;
}

.home-banner-advert.banner-advert .banner-advert-cover-box {
    position: relative;
}

.home-banner-advert.banner-advert .banner-advert-cover-box:before {
    background-color: transparent;
    border: 3px solid #000;
    border-right-width: 0;
    border-top-width: 0;
    bottom: -6px;
    content: "";
    height: 100%;
    left: -6px;
    position: absolute;
    width: 100%;
    z-index: -1;
}

.tech_bootcamp_section .header_text {
    color: #790606;
    font-weight: 800;
    line-height: normal;
    font-size: 3.2rem;
}

.tech_bootcamp_section .header_text_button {
    display: flex;
}

@media only screen and (max-width: 37.5em) {
    #cookiePopup {
        width: 100%;
    }
    #cookiePopup.hide {
        bottom: 2em;
        right: 0;
    }
    #cookiePopup.show {
        right: 0;
        bottom: 0;
    }
}

@media only screen and (max-width: 1200px) {
    .tech_bootcamp_section .header_text {
        font-size: 2.4rem;
        text-align: center;
    }

    .tech_bootcamp_section .header_text_button {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-top .auto-container {
        flex-direction: column;
    }
    .header-top .auto-container .header-top-right ul {
        justify-content: center;
        padding-left: 0;
        margin-top: 14px;
    }
    .header-top .auto-container .header-top-left ul {
        justify-content: center;
    }
    .main-menu .auto-container .menu-area nav {
        display: none;
    }
    .main-menu .auto-container .menu-area .menu-right-content {
        flex: 1;
        justify-content: flex-end;
    }
    .main-menu .auto-container .menu-area .menu-right-content .hamburger-menu {
        display: block;
    }
    .main-menu .auto-container .menu-area .menu-right-content .contact-btn {
        display: none;
    }

    main {
        padding-top: 150px;
    }

    .banner-section .content-box h1 {
        font-size: 2rem;
    }

    /* css style to fix unresponsive layout of loading each image div on new row line when page load for banner hompegae slider , so as to reduce contenful layout shift of the web page */
    .banner-section .owl-stage {
        height: 680px;
    }

    .banner-section .item {
        height: 680px;
    }
    /* -----css style to fix unresponsive layout of loading each image div on new row line when page load for banner hompegae slider , so as to reduce contenful layout shift of the web page */

    .head-text {
        margin-top: 20px;
    }

    .why-choose-us .why-choose-us-text-cont {
        padding-top: 40px;
    }
    .why-choose-us .head-text-heading {
        font-size: 2.3rem;
    }

    .testimonials .head-text-heading {
        font-size: 2.3rem;
    }

    .testimonials .testimonial-slider .owl-item .item {
        padding: 0;
    }

    .testimonials .testimonial-slider .testimonial-apostrophe img {
        height: 2rem;
    }

    .contact-us .contact-us-cont .contact-us-form form {
        padding: 1rem 0;
    }

    .head-text {
        font-size: 16px;
    }
    .our-programs .each-program-box h3 {
        font-size: 1.2rem;
    }
    .our-programs .our-programs-heading h2 {
        font-size: 2.3rem;
    }

    .contact-us .head-text-heading {
        font-size: 2.3rem;
    }
    .contact-us .head-text-desc {
        font-size: 1rem;
    }
    .contact-us .contact-us-cont .contact-us-img-cont,
    .contact-us .contact-us-cont .contact-us-form {
        padding: 0;
    }
    .call-to-action h2 {
        font-size: 1.8rem;
    }
    .call-to-action button {
        padding: 15px 3rem;
    }

    .career-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .about-section .col-md-6 {
        padding-top: 30px;
    }
    .tech_bootcamp_section .header_text {
        font-size: 1.4rem;
        text-align: center;
    }
    .tech_bootcamp_section .header_text_button {
        justify-content: center;
    }
}
@media (max-width: 576px) {
    .header-top .auto-container .header-top-left ul {
        flex-direction: column;
        align-items: center;
    }

    /* css style to fix unresponsive layout of loading each image div on new row line when page load for banner hompegae slider , so as to reduce contenful layout shift of the web page */
    .banner-section .owl-stage {
        height: 640px;
    }

    .banner-section .item {
        height: 640px;
    }
    /* ------css style to fix unresponsive layout of loading each image div on new row line when page load for banner hompegae slider , so as to reduce contenful layout shift of the web page */
}

@keyframes slide-down-mobile-menu-dropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}
