:root {
    --primary-color: #100f11;
    --secondary-color: #fff;
    --text-color: #000;
    --accent-color: #1d3c5d;
    --white-color: #ffffff;
    --divider-color: #100f1112;
    --dark-divider-color: #ffffff1a;
    --error-color: rgb(230, 87, 87);
    --default-font: "Onest", sans-serif; /*--accent-font : "Big Shoulders", sans-serif;*/
}
body {
    position: relative;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: var(--white-color);
}
::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    border-left: 1px solid var(--primary-color);
}
::-webkit-scrollbar {
    width: 7px;
    background-color: var(--accent-color);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}
::selection {
    color: var(--primary-color);
    background-color: var(--accent-color);
    filter: invert(1);
}
p {
    line-height: 1.6em;
    margin-bottom: 1.4em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--accent-font);
    font-weight: 700;
    line-height: 1.2em;
    color: var(--primary-color);
}
figure {
    margin: 0;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    outline: 0;
}
a:focus {
    text-decoration: none;
    outline: 0;
}
html,
body {
    width: 100%;
    overflow-x: clip;
}
.container {
    max-width: 1300px;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
    width: 1300px;
}
.image-anime {
    position: relative;
    overflow: hidden;
}
.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}
.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}
.row > * {
    padding-right: 15px;
    padding-left: 15px;
}
.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}
.row.no-gutters > * {
    padding-right: 0px;
    padding-left: 0px;
}
.btn-default {
    position: relative;
    display: inline-block;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    border-radius: 10px;
    text-transform: capitalize;
    color: #fff;
    background: var(--accent-color);
    padding: 15px 30px;
    border: none;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    z-index: 1;
}
.btn-default:hover {
    background: #000;
    color: var(--white-color);
}
.btn-default::before {
    /*content: '';*/
    position: absolute;
    top: 50%;
    right: 20px;
    bottom: 0;
    background-image: url("../images/arrow-primary.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    transition: 0.4s ease-in-out;
}
.btn-default:hover:before {
    transform: translateY(-50%) rotate(45deg);
    filter: brightness(0) invert(1);
}
.btn-default::after {
    /*content: '';*/
    display: block;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    border-radius: 0;
    transition: 0.4s ease-in-out;
    z-index: -1;
}
.btn-default:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}
.btn-default.btn-highlighted {
    background: transparent;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: 15px 40px 15px 20px;
}
.btn-default.btn-highlighted:hover {
    color: var(--primary-color);
}
.btn-default.btn-highlighted::after {
    background: var(--white-color);
}
.btn-default.btn-highlighted::before {
    background-image: url("../images/arrow-white.svg");
}
.btn-default.btn-highlighted:hover::before {
    filter: brightness(1) invert(1);
}
.readmore-btn {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;
    padding: 10px 25px;
    background: var(--accent-color); /* padding-right: 25px; */
    transition: all 0.3s ease-in-out;
}
.readmore-btn:hover {
    color: var(--white-color);
}
.readmore-btn:after {
    /*content: '';*/
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    transition: 0.3s ease-in-out;
}
.readmore-btn:hover:after {
    transform: translate(0px, -50%) rotate(45deg);
    filter: brightness(0) invert(1);
}
.cb-cursor:before {
    background: var(--accent-color);
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}
.loading-container {
    margin: 40px auto;
}
.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}
.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}
#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}
@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.bg-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0px;
}
.section-row {
    margin-bottom: 80px;
}
.section-row .section-title {
    margin-bottom: 0;
}
.section-title {
    margin-bottom: 40px;
}
.section-title h3 {
    display: inline-block;
    position: relative;
    background-position: left center;
    background-size: 20px auto;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4em;
    text-transform: uppercase;
    color: var(--primary-color); /*padding-left: 30px;*/
    margin-bottom: 10px;
}
.section-title h1 {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 0;
    cursor: none;
    text-align: left;
}
.section-title h2 {
    font-size: 35px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    cursor: none;
}
.section-title h1 span,
.section-title h2 span {
    color: var(--accent-color);
}
.section-title p {
    margin-top: 30px;
    margin-bottom: 0;
}
.section-title p span {
    font-size: 20px;
    font-weight: 600;
}
.section-title-content p {
    margin: 0;
}
.section-btn {
    text-align: right;
}
.section-content-btn .section-btn {
    text-align: left;
    margin-top: 20px;
}
.section-title.dark-section h3,
.section-title.dark-section h2,
.section-title.dark-section h1,
.section-title.dark-section p {
    color: var(--white-color);
}
.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}
.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}
.main-header {
    background: var(--secondary-color);
}
.main-header .bg-section {
    max-width: 100%;
    background: #fff;
}
.fmenu {
    width: 300px !important;
}
header.main-header .header-sticky {
    top: 0;
    margin: 0px;
    z-index: 100;
    position: relative;
    background: #1d3c5d;
    width: calc(100% - 0px);
}
header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}
header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-top: none;
    max-width: 100%;
    margin: 0 auto;
}
.navbar {
    padding: 5px 0;
    align-items: center;
}
.navbar-brand {
    padding: 0;
    margin: 0;
}
.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 20px 0 60px;
}
.main-menu .nav-menu-wrapper > ul {
    align-items: center;
    display: inline-flex;
}
.main-menu ul li {
    margin: 0;
    position: relative;
}
.main-menu ul li a {
    font-size: 15px;
    font-weight: 600;
    line-height: 1em;
    padding: 16px 25px !important;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}
.main-menu ul li.submenu > a:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}
.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: #b6c335;
}
.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 255px;
    border-radius: 0px;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--accent-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}
.main-menu ul li.submenu:first-child ul {
    width: 235px;
}
.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}
.main-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
    padding: 0px 0;
}
.main-menu ul li.submenu ul li.submenu > a:after {
    content: "\f105";
    float: right;
}
.main-menu ul ul li {
    margin: 0;
    padding: 0;
}
.main-menu ul ul li a {
    color: #fff;
    line-height: 20px;
    padding: 12px 20px !important;
    transition: all 0.3s ease-in-out;
}
.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: #fff;
    background-color: #b6c335; /* padding: 8px 20px 8px 23px !important; */
}
.main-menu ul li.highlighted-menu {
    display: none;
}
.header-contact-box {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-contact-btn {
    display: flex;
    align-items: center;
}
.header-contact-box .header-booking-btn.nbtn a {
    color: #000;
    font-size: 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #000;
    text-align: center;
    line-height: 20px;
}
.header-contact-box .header-booking-btn.nbtn a:hover {
    color: #fff;
    background: #b6b822;
    border-color: #b6b822;
}
.header-contact-btn .icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.header-contact-btn .icon-box img {
    width: 100%;
    max-width: 25px;
}
.header-contact-now-content {
    width: calc(100% - 65px);
}
.header-contact-now-content h3 {
    font-size: 20px;
}
.header-contact-now-content h3 a {
    color: inherit;
}
.responsive-menu,
.navbar-toggle {
    display: none;
}
.responsive-menu {
    top: 0;
    position: relative;
}
.slicknav_btn {
    background: #fff;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 0px;
}
.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--primary-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}
.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}
.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}
.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
    background-color: var(--primary-color);
}
.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}
.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
    background-color: var(--primary-color);
}
.slicknav_menu {
    /*position: absolute;*/
    position: relative;
    width: 100%;
    padding: 0;
    background: var(--accent-color);
}
.slicknav_menu ul {
    margin: 5px 0;
}
.slicknav_menu ul ul {
    margin: 0;
}
.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 8px 20px;
    color: var(--white-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}
.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--primary-color);
}
.slicknav_menu ul ul li a {
    padding: 8px 20px 8px 30px;
}
.slicknav_arrow {
    font-size: 0 !important;
}
.slicknav_arrow:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--white-color);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}
.slicknav_open > a .slicknav_arrow:after {
    transform: translateY(-50%) rotate(-180deg);
    color: #b6b821;
}
.hero {
    background-color: var(--secondary-color);
}
.hero-section {
    position: relative;
    background-image: url("../images/hero-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 150px 0 400px;
}
.hero-section:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    opacity: 70%;
    z-index: 1;
}
.hero-section.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.hero-section.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-section.hero-slider-layout {
    background: none;
    padding: 0;
}
.hero-section.hero-slider-layout .hero-slide {
    position: relative;
    background: url("../images/banner-1.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 150px 0 00px; /*height: 100vh;*/
    height: 80vh;
}
.hero-section.hero-slider-layout .hero-slide.slide-2 {
    background: url("../images/banner-2.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.hero-section.hero-slider-layout .hero-slide.slide-3 {
    background: url("../images/banner-3.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.hero-section.hero-slider-layout .hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #100f1185;
    opacity: 70%;
    z-index: 1;
}
.hero-section.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.hero-section.hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-section.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 10px;
    text-align: right;
    z-index: 2;
    color: #fff;
    right: 0;
    padding-right: 50px;
}
.top-header {
    background-color: #f8f9fa; /* Light gray or your color */
    border-bottom: 1px solid #ddd;
}
.bottom-header {
    background-color: #ffffff; /* White or your color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.navbar-nav > li {
    margin: 0 10px;
}
.navbar-nav .dropdown-menu {
    margin-top: 0;
}
.hero-section.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--dark-divider-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}
.hero-section.hero-slider-layout
    .hero-pagination
    .swiper-pagination-bullet-active {
    background: #fff;
}
.hero-content {
    position: relative; /*max-width: 980px;*/
    text-align: left;
    margin: 0 auto;
    z-index: 2;
    margin-top: 50px;
}
.hero-content .section-title p {
    font-size: 20px;
    font-weight: 500;
}
.hero-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 20px 40px;
}
.hero-cta-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px 50px;
    background-color: var(--white-color);
    padding: 80px; /*margin-top: -230px;*/
    z-index: 1;
}
.hero-intro-video-image,
.hero-cta-contetnt {
    width: calc(50% - 25px);
}
.hero-intro-video-image {
    position: relative;
}
.hero-intro-video-image figure {
    display: block;
}
.hero-intro-video-image img {
    width: 100%;
    aspect-ratio: 1 / 0.57;
    object-fit: cover;
    filter: brightness(50%);
}
.video-play-button.btn-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.video-play-button a {
    position: relative;
    background: var(--accent-color);
    background-size: 200% auto;
    border-radius: 100%;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
    cursor: none;
}
.video-play-button a:hover {
    background: var(--white-color);
}
.video-play-button a:before {
    content: "";
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 40px solid var(--white-color);
    opacity: 40%;
    backdrop-filter: blur(200px);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}
.video-play-button a:after {
    content: "";
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 40px solid var(--white-color);
    opacity: 40%;
    backdrop-filter: blur(200px);
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
    animation-delay: 0.3s;
}
@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
.video-play-button a i {
    font-size: 20px;
    color: var(--white-color);
    margin-left: 3px;
    transition: all 0.4s ease-in-out;
}
.video-play-button a:hover i {
    color: var(--accent-color);
}
.hero-cta-item {
    display: flex;
    margin-bottom: 40px;
}
.hero-cta-item:last-child {
    margin-bottom: 0;
}
.hero-cta-item .icon-box {
    margin-right: 30px;
}
.hero-cta-item .icon-box img {
    width: 100%;
    max-width: 50px;
}
.hero-cta-item-content {
    width: calc(100% - 80px);
}
.hero-cta-item-content h3 {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.hero-cta-item-content p {
    margin: 0;
}
.hero-client-slider {
    padding: 20px 0;
    background: #fff;
}
.hero-client-slider .company-logo {
    text-align: center;
}
.hero-client-slider .company-logo img {
    /*width: 100%;*/
    height: 100px;
}
.about-us.logo-sec {
    background: #edeaea54;
}
.placements-sec .tabs {
    margin-bottom: 0px;
}
.about-us {
    padding: 60px 0;
}
.about-us-image {
    position: relative;
    background-image: url("../images/about-image-bg.svg");
    background-repeat: no-repeat;
    background-position: top 70px right 45px;
    background-size: 98px auto;
    padding: 0 30px 0px 0;
    margin-right: 0px;
}
.about-img-1 figure,
.about-img-2 figure {
    display: block;
}
.about-img-1 img,
.about-img-2 img {
    width: 100%;
    object-fit: cover;
}
.about-img-1 img {
    /*aspect-ratio: 1 / 0.89;*/
}
.about-img-2 {
    max-width: 315px;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 7px solid var(--white-color);
    z-index: 1;
}
.about-img-2 img {
    aspect-ratio: 1 / 1.238;
}
.about-contact-box {
    position: absolute;
    bottom: 0px;
    left: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 2;
}
.about-contact-box:after {
    content: "";
    position: absolute;
    top: 0;
    right: calc(100% - 70px);
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #b6b821;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}
.about-contact-box:hover:after {
    right: 0;
}
.about-contact-box .icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-contact-box .icon-box img {
    position: relative;
    width: 100%;
    max-width: 40px;
    z-index: 1;
    filter: invert(1);
}
.about-contact-content {
    position: relative;
    width: calc(100% - 70px);
    padding: 10px 45px 10px 20px;
    background: var(--secondary-color);
}
.about-contact-content p,
.about-contact-content h3 {
    position: relative;
    z-index: 1;
}
.about-contact-content p {
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}
.about-contact-box:hover .about-contact-content p {
    color: var(--primary-color);
}
.about-contact-content h3 {
    font-size: 20px;
    font-weight: 600;
}
.about-contact-content h3 a {
    color: inherit;
}
.about-us-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}
.mission-vision-item {
    width: calc(50% - 15px);
}
.mission-vision-item h3 {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.mission-vision-item p {
    margin: 0;
}
.about-us-footer {
    /*display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 50px;*/
}
.about-us-footer a {
    color: #000;
}
.about-us-footer.content {
    display: flex;
    flex-wrap: wrap; /*align-items: center;*/
    gap: 20px 50px;
}
.tec-content {
    margin-top: 20px;
}
.about-us-footer h4 {
    font-weight: 500;
    margin-bottom: 5px;
}
.about-us-footer p {
    margin-bottom: 10px;
}
.company-experience-box {
    width: calc(47% - 25px);
}
.company-experience-box {
    background-color: var(--accent-color);
    padding: 10px 35px;
    text-align: center;
}
.company-experience-box h3 {
    font-size: 24px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.company-experience-box h2 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 5px;
}
.company-experience-box p {
    color: #fff;
    text-transform: capitalize;
    margin: 0;
}
.about-us-footer-content {
    width: calc(53% - 25px);
}
.our-services {
    position: relative;
    background: #fff;
    padding: 50px 0;
}
@keyframes servicebgmove {
    from {
        background-position: right bottom;
    }
    to {
        background-position: right 100vw bottom;
    }
}
.our-services .container {
    position: relative;
    z-index: 1;
}
.service-item {
    position: relative;
}
.service-image a,
.service-image figure {
    display: block;
    cursor: none;
}
.service-image figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        179.58deg,
        rgba(16, 15, 17, 0) 57.38%,
        rgba(16, 15, 17, 0.8) 83.52%
    );
    width: 100%;
    height: 100%;
    z-index: 1;
}
.service-image img {
    width: 100%;
    aspect-ratio: 1 / 1.24;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}
.service-item:hover .service-image img {
    transform: scale(1.1);
}
.service-body {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 30px;
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}
.service-item:hover .service-body {
    transform: translateY(0);
}
.service-item-content .icon-box {
    margin-bottom: 15px;
}
.service-item-content .icon-box img {
    width: 100%;
    max-width: 40px;
}
.service-title h3 {
    font-size: 24px;
    color: var(--white-color);
}
.service-title h3 a {
    color: inherit;
}
.service-readmore-btn {
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
.service-item:hover .service-readmore-btn {
    visibility: visible;
    opacity: 1;
    margin-top: 15px;
}
.services-pagination {
    position: relative;
    text-align: center;
    margin-top: 50px;
}
.services-pagination .swiper-pagination-bullet {
    height: 16px;
    width: 16px;
    background: var(--white-color);
    opacity: 1;
    margin: 0 3px;
    border-radius: 0;
    transition: all 0.4s ease-in-out;
}
.services-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
}
.section-footer-text {
    margin-top: 50px;
    text-align: center;
}
.section-footer-text p {
    margin-bottom: 0;
}
.section-footer-text p a {
    color: var(--accent-color);
    text-transform: capitalize;
    font-weight: 700;
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}
.section-footer-text p a:hover {
    color: var(--primary-color);
}
.why-choose-us {
    padding: 100px 0 0;
    background: url("../images/why-choose-us-bg.png") no-repeat;
    background-position: bottom center;
    background-size: 45% auto;
}
.why-choose-item {
    display: flex;
    margin-bottom: 60px;
}
.why-choose-item:last-child {
    margin-bottom: 0;
}
.why-choose-item .icon-box {
    margin-right: 30px;
}
.why-choose-item .icon-box img {
    max-width: 50px;
}
.why-choose-item-content {
    width: calc(100% - 80px);
}
.why-choose-item-content h3 {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.why-choose-item-content p {
    margin: 0;
}
.why-choose-image img {
    width: 100%;
    aspect-ratio: 1 / 1.41;
    object-fit: cover;
}
.what-we-do {
    background: linear-gradient(
        180deg,
        var(--primary-color) 75%,
        transparent 25%
    );
    padding: 100px 0 50px;
}
.what-we-do-content {
    margin-right: 20px;
}
.what-we-do-list {
    padding: 0px;
    background: var(--white-color); /*box-shadow: 0px 20px 50px 0px #0000000D;*/
}
.what-we-do-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.what-we-do-list ul li {
    color: var(--primary-color);
    line-height: 1.5em;
    text-transform: capitalize;
    background: url("../images/icon-check.svg") no-repeat;
    background-position: left top;
    background-size: 24px auto;
    border-bottom: 1px solid var(--divider-color);
    padding: 0 0 10px 40px;
    margin-bottom: 10px;
}
.what-we-do-list ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.what-we-do-img figure {
    display: block;
}
.what-we-do-img img {
    width: 100%;
    aspect-ratio: 1 / 0.775;
    object-fit: cover;
}
.what-we-do-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 40px;
    margin-top: 100px;
}
.what-we-do-info h3 {
    font-size: 24px;
    text-transform: capitalize;
}
.our-courses {
    padding: 50px 0 70px;
}
.course-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}
.course-image a,
.course-image figure {
    display: block;
    cursor: none;
}
.course-image figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        179.58deg,
        rgba(16, 15, 17, 0) 57.38%,
        rgba(16, 15, 17, 0.8) 83.52%
    );
    width: 100%;
    height: 100%;
    z-index: 1;
}
.course-image img {
    width: 100%;
    aspect-ratio: 1 / 1.18;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}
.course-item:hover .course-image img {
    transform: scale(1.1);
}
.course-body {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 30px;
    z-index: 1;
}
.course-item-content h3 {
    font-size: 24px;
    color: var(--white-color);
}
.course-item-content h3 a {
    color: inherit;
}
.course-readmore-btn {
    margin-top: 20px;
}
.how-it-work {
    background: url("../images/how-it-work-bg.png"), var(--secondary-color);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 60px 0;
}
.how-it-work-image figure {
    display: block;
}
.how-it-work-image img {
    width: 100%;
    aspect-ratio: 1 / 0.95;
    object-fit: cover;
}
ul.review-list {
    line-height: 25px;
}
ul.review-list li {
    margin-bottom: 10px;
}
.how-it-work-steps {
    margin-left: 30px;
}
.about-us-footer .how-it-work-steps h2 {
    padding: 10px 0px;
}
.how-work-step-item {
    position: relative;
    display: flex;
    margin-bottom: 20px;
}
.how-work-step-item:last-child {
    margin-bottom: 0;
}
.how-work-step-item:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(30px, 60px);
    border-left: 3px dashed var(--divider-color);
    height: 100%;
    z-index: 0;
}
.how-work-step-item:last-child:after {
    display: none;
}
.how-work-step-no {
    position: relative;
    background-color: var(--accent-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}
.how-work-step-no:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #b7b920;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}
.how-work-step-item:hover .how-work-step-no:before {
    transform: scale(1);
}
.how-work-step-no h2 {
    position: relative;
    color: #fff;
    font-size: 28px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}
.how-work-step-item:hover .how-work-step-no h2 {
    color: var(--accent-color);
}
.how-work-step-content {
    width: calc(100% - 90px);
}
.how-work-step-content h3 {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.how-work-step-content p {
    margin: 0;
}
.our-pricing {
    padding: 60px 0;
}
.pricing-item {
    background: var(--secondary-color);
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
}
.pricing-header {
    margin-bottom: 30px;
}
.pricing-header h3 {
    font-size: 24px;
    text-transform: capitalize;
}
.pricig-body {
    /*border-bottom: 1px solid var(--divider-color);*/ /*margin-bottom: 30px;*/
    padding-bottom: 30px;
}
.pricig-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricig-body ul li {
    color: #fff;
    position: relative;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 20px;
}
.pricig-body ul li:last-child {
    margin-bottom: 0;
}
.pricig-body ul li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url("../images/icon-check.svg") no-repeat;
    background-position: left top;
    background-size: cover;
    height: 22px;
    width: 22px;
}
.pricing-footer {
    margin-bottom: 40px;
}
.pricing-price {
    margin-bottom: 15px;
}
.pricing-price h2 {
    font-size: 48px;
    color: var(--accent-color);
}
.pricing-price h2 sub {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    bottom: 0;
}
.pricing-content p {
    margin-bottom: 0;
}
.pricing-btn .btn-default {
    display: block;
    text-align: center;
    padding: 16px 20px;
}
.pricing-btn .btn-default::before {
    display: none;
}
.pricing-item.highlighted-box {
    background-color: var(--accent-color);
}
.pricing-item.highlighted-box .pricig-body ul li,
.pricing-item.highlighted-box .pricing-price h2,
.pricing-item.highlighted-box .pricing-price h2 sub,
.pricing-item.highlighted-box .pricing-content p,
.pricing-item.highlighted-box .pricing-btn a:hover {
    color: var(--primary-color);
}
.pricing-item.highlighted-box .pricig-body ul li::before {
    filter: brightness(0) invert(0);
}
.pricing-item.highlighted-box .pricing-btn .btn-default {
    background: var(--primary-color);
    color: var(--accent-color);
}
.pricing-item.highlighted-box .pricing-btn .btn-default::after {
    background: var(--white-color);
}
.pricing-benefit-list {
    margin-top: 30px;
}
.pricing-benefit-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px 60px;
}
.pricing-benefit-list ul li {
    display: flex;
    align-items: center;
}
.pricing-benefit-list ul li img {
    max-width: 20px;
    margin-right: 15px;
}
.book-appointment {
    position: relative;
    background: url("../images/book-appointment-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 60px 0;
}
.book-appointment::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 70%;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.book-appointment .container {
    position: relative;
    z-index: 1;
}
.book-appointment-content {
    margin-right: 20px;
}
.book-appointment-content h2 {
    font-size: 30px;
}
.book-appointment-content .section-title h3,
.book-appointment-content .section-title h2 {
    color: var(--white-color);
}
.appointment-info-list {
    display: flex;
    gap: 40px 80px;
    flex-wrap: wrap;
}
.appointment-info-item {
    width: calc(50% - 40px);
}
.appointment-info-item.location-info-item {
    width: 100%;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 40px;
}
.appointment-info-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.appointment-info-title img {
    width: 100%;
    max-width: 24px;
    margin-right: 15px;
}
.appointment-info-title h3 {
    font-size: 24px;
    color: var(--white-color);
}
.appointment-info-content p {
    color: var(--white-color);
    margin-bottom: 2px;
}
.appointment-info-content p:last-child {
    margin-bottom: 0;
}
.appointment-info-content p a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}
.appointment-info-content p a:hover {
    color: #ffb120;
}
.book-appointment-form {
    background: var(--white-color);
    padding: 50px;
}
.book-appointment-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: var(--text-color);
    background-color: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 0;
    padding: 17px 20px;
    box-shadow: none;
    outline: none;
}
.book-appointment-form .form-control.form-select {
    padding: 17px 35px 17px 20px;
}
.book-appointment-form .form-control.form-select option {
    font-weight: 500;
    color: var(--primary-color);
}
.book-appointment-form .form-control::placeholder {
    color: var(--text-color);
}
.our-testimonials {
    padding: 60px 0;
    background: #f5f3f3;
}
.testimonial-slider .swiper-wrapper {
    cursor: none;
}
.testimonial-item {
    border: 1px solid var(--divider-color);
    padding: 30px;
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.testimonial-rating i {
    color: var(--accent-color);
}
.testimonial-rating-conuter h3 {
    font-size: 24px;
}
.testimonial-content {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.testimonial-content p {
    margin-bottom: 0;
}
.testimonial-author {
    display: flex;
    align-items: center;
}
.author-image {
    margin-right: 15px;
}
.author-image img {
    width: 100%;
    max-width: 60px;
}
.author-content {
    width: calc(100% - 75px);
}
.author-content h3 {
    font-size: 24px;
    text-transform: capitalize;
}
.testimonial-pagination {
    position: relative;
    text-align: center;
    margin-top: 50px;
}
.testimonial-pagination .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 3px;
    border-radius: 0;
    transition: all 0.4s ease-in-out;
}
.testimonial-pagination .swiper-pagination-bullet-active {
    width: 22px;
    background: var(--accent-color);
}
.our-faqs {
    padding: 60px 0;
}
.faq-accordion {
    margin-bottom: 15px;
}
.faq-accordion .accordion-item .accordion-body li {
    /*list-style-type: circle;*/
    margin-bottom: 10px;
    line-height: 25px;
    color: #fff;
}
.faq-accordion h6 {
    color: #fff !important;
}
.faq-accordion .accordion-item {
    background: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 0;
    margin-bottom: 30px;
    padding: 0;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}
.faq-accordion .accordion-header .accordion-button {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4em;
    background: var(--accent-color);
    border-bottom: 1px solid var(--divider-color);
    padding: 24px 60px 20px 30px;
    transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-item .accordion-body tr td {
    border-color: #fff;
    color: #fff;
}
.faq-accordion .accordion-header .accordion-button.collapsed {
    color: #000;
    background: transparent;
    border-bottom: none;
    padding: 24px 60px 24px 30px;
}
.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: "\f107";
    font-family: "FontAwesome";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    transform: translateY(-50%) rotate(-180deg);
    color: #000;
}
.faq-accordion .accordion-item .accordion-body {
    background-color: var(--accent-color);
    padding: 20px 30px 24px;
}
.faq-accordion .accordion-item .accordion-body p {
    color: #fff;
}
.faq-accordion .accordion-item .accordion-body p:last-child {
    margin: 0;
}
.faq-image {
    position: relative;
    margin-left: 0px;
}
.faq-image figure {
    display: block;
}
.faq-image figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(16, 15, 17, 0) 4.85%,
        rgba(16, 15, 17, 0.9) 77.07%
    );
    width: 100%;
    height: 100%;
    z-index: 1;
}
.faq-image figure img {
    width: 100%;
    aspect-ratio: 1 / 0.88;
    object-fit: cover;
}
.faq-image .appointment-info-list {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 1;
}
.faq-image .appointment-info-list .appointment-info-item {
    position: relative;
}
.faq-image .appointment-info-list .appointment-info-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: -40px;
    bottom: 0;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
    z-index: 1;
}
.faq-image
    .appointment-info-list
    .appointment-info-item:nth-child(2n + 2)::before,
.faq-image .appointment-info-list .appointment-info-item:last-child::before {
    display: none;
}
.our-blog {
    padding: 100px 0 70px;
}
.post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}
.post-featured-image {
    margin-bottom: 20px;
}
.post-featured-image a {
    cursor: none;
    display: block;
    overflow: hidden;
}
.post-featured-image figure {
    display: block;
}
.post-featured-image img {
    aspect-ratio: 1 / 0.873;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}
.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}
.post-item-content {
    margin-bottom: 20px;
}
.post-item-content h3 {
    font-size: 24px;
    line-height: 1.4em;
}
.post-item-content h3 a {
    display: inline-block;
    color: inherit;
}
.post-item-btn .readmore-btn:hover {
    color: var(--primary-color);
}
.post-item-btn .readmore-btn:hover:after {
    filter: brightness(0) invert(0);
}
.main-footer {
    background: url(../images/footer-bg.png), var(--primary-color);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    padding: 80px 0 0;
}
.footer-logo {
    margin-bottom: 0px;
}
.about-footer-content {
    margin-bottom: 30px;
}
.about-footer-content p {
    color: var(--white-color);
    margin-bottom: 0;
}
.footer-contact-list {
    display: inline-block;
    background-color: var(--accent-color);
    padding: 15px;
}
.footer-contact-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list ul li {
    margin-bottom: 15px;
}
.footer-contact-list ul li:last-child {
    margin-bottom: 0;
}
.footer-contact-list ul li a {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}
.footer-contact-list ul li a:hover {
    color: var(--white-color);
}
.footer-contact-list ul li a img {
    width: 100%;
    max-width: 20px;
    margin-right: 12px;
    transition: all 0.3s ease-in-out;
}
.footer-contact-list ul li a:hover img {
    filter: brightness(0) invert(1);
}
.footer-link-box {
    display: flex;
    gap: 30px 80px;
    flex-wrap: wrap;
    margin-left: 60px;
}
.footer-links {
    padding-left: 0px;
}
.footer-links svg {
    margin-right: 8px;
}
.footer-links::before {
    content: "";
    position: absolute;
    top: 0;
    right: -40px;
    bottom: 0;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
}
.footer-links:nth-child(3n + 3)::before,
.footer-links:last-child::before {
    display: none;
}
.footer-links h3 {
    font-size: 24px;
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 30px;
}
.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-links ul li {
    color: var(--white-color);
    text-transform: capitalize;
    line-height: 1.7em;
    margin-bottom: 15px;
}
.footer-links ul li:last-child {
    margin-bottom: 0;
}
.footer-links ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}
.footer-links ul li a:hover {
    color: var(--accent-color);
}
.footer-contact-info,
.footer-newsletter-form {
    width: calc(39% - 53.33px);
}
.footer-info-item {
    display: flex;
    align-items: baseline;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.footer-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.footer-info-item .icon-box {
    margin-right: 10px;
}
.footer-info-item .icon-box img {
    width: 100%;
    max-width: 24px;
}
.footer-info-content {
    width: calc(100% - 34px);
}
.footer-info-content p {
    color: var(--white-color);
    margin-bottom: 2px;
}
.footer-info-content p:last-child {
    margin-bottom: 0;
}
.footer-newsletter-form .form-group .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    background: var(--white-color);
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 18px 20px;
}
.footer-newsletter-form .form-group .form-control::placeholder {
    color: var(--text-color);
}
.footer-newsletter-form .form-group .btn-default {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    margin-top: 20px;
}
.footer-newsletter-form .form-group .btn-default:hover {
    color: var(--primary-color);
}
.footer-newsletter-form .form-group .btn-default::after {
    background: var(--white-color);
}
.footer-newsletter-form .form-group .btn-default::before {
    display: none;
}
.footer-copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 60px;
    padding: 60px 0;
}
.footer-copyright-text p {
    color: var(--white-color);
    margin-bottom: 0;
}
.footer-social-links {
    text-align: right;
}
.footer-social-links ul {
    list-style: none;
    line-height: 1em;
    padding: 0;
    margin: 0;
}
.footer-social-links ul li {
    display: inline-block;
    margin-right: 15px;
    transition: all 0.3s ease-in-out;
}
.footer-social-links ul li:last-child {
    margin-right: 0;
}
.footer-social-links ul li a {
    background: var(--white-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.footer-social-links ul li a:hover {
    background: var(--accent-color);
}
.footer-social-links ul li a i {
    font-size: 22px;
    color: inherit;
}
.page-header {
    background-color: var(--secondary-color);
    padding-bottom: 0px;
}
.page-header-section {
    position: relative;
    background: url("../images/page-header-bg.webp");
    padding: 115px 0;
}
.page-header-section:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 70%;
}
.page-header-box {
    position: relative;
    text-align: center;
    z-index: 1;
}
.page-header-box h1 {
    display: inline-block;
    font-size: 50px;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 15px;
    cursor: none;
}
.page-header-box h1 span {
    color: var(--accent-color);
}
.page-header-box ol {
    margin: 0;
    padding: 0;
    justify-content: center;
}
.page-header-box ol li.breadcrumb-item {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white-color);
}
.breadcrumb-item + .breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, ">");
}
.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}
.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
}
.driving-excellence {
    position: relative;
    padding: 60px 0;
    background: url("../images/driving-excellence-bg.png"),
        var(--secondary-color);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: auto;
}
.excellence-counter-item {
    display: flex;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}
.excellence-counter-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.excellence-body-counter {
    width: 20%;
}
.excellence-body-counter h2 {
    font-size: 48px;
    text-transform: uppercase;
}
.excellence-counter-content {
    width: 80%;
}
.excellence-counter-content h3 {
    font-size: 24px;
    line-height: 1.4em;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.excellence-counter-content p {
    margin: 0;
}
.driving-excellence-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-left: 30px;
}
.excellence-item {
    position: relative;
    width: calc(50% - 15px);
    background: var(--white-color);
    padding: 30px;
    overflow: hidden;
}
.excellence-item:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-color);
    z-index: 0;
    transition: all 0.3s ease-in-out;
}
.excellence-item:hover:after {
    top: auto;
    height: 100%;
}
.excellence-item .icon-box {
    position: relative;
    margin-bottom: 40px;
    z-index: 1;
}
.excellence-item .icon-box img {
    width: 100%;
    max-width: 50px;
    transition: all 0.4s ease-in-out;
}
.excellence-item:hover .icon-box img {
    filter: brightness(0) invert(0);
}
.excellence-item-content {
    position: relative;
    z-index: 1;
}
.excellence-item-content h3 {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.excellence-item-content p {
    margin: 0;
    transition: all 0.4s ease-in-out;
}
.excellence-item:hover .excellence-item-content p {
    color: var(--primary-color);
}
.student-experience {
    padding: 50px 0 100px;
}
.student-experience-image {
    position: relative;
    background: url("../images/student-experience-image-bg-2.svg") no-repeat;
    background-position: top right;
    background-size: 80px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-right: 20px;
    align-items: end;
}
.student-experience-image:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 58px;
    bottom: 0;
    left: 40%;
    transform: translateX(-50%);
    background: url("../images/student-experience-image-bg-1.svg") no-repeat;
    background-position: bottom center;
    background-size: cover;
    z-index: 0;
}
.student-experience-img-box-1 {
    position: relative;
    width: calc(45% - 15px);
    padding-bottom: 40px;
    z-index: 1;
}
.student-experience-img-box-2 {
    position: relative;
    width: calc(55% - 15px);
    z-index: 1;
}
.student-experience-img-1 figure,
.student-experience-img-2 figure,
.student-experience-img-3 figure,
.student-experience-img-4 figure {
    display: block;
}
.student-experience-img-1 img,
.student-experience-img-2 img,
.student-experience-img-3 img,
.student-experience-img-4 img {
    width: 100%;
    object-fit: cover;
}
.student-experience-img-1 {
    margin-bottom: 30px;
}
.student-experience-img-1 img {
    aspect-ratio: 1 / 1.475;
}
.student-experience-img-2 img {
    aspect-ratio: 1 / 1.17;
}
.student-experience-img-3 {
    margin-bottom: 30px;
}
.student-experience-img-3 img {
    aspect-ratio: 1 / 0.87;
}
.student-experience-img-4 img {
    aspect-ratio: 1 / 1.277;
}
.student-experience-body {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}
.student-experience-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.student-experience-item:last-child {
    margin-bottom: 0;
}
.student-experience-item .icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}
.student-experience-item .icon-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}
.student-experience-item:hover .icon-box:before {
    transform: scale(1);
}
.student-experience-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 50px;
    z-index: 1;
}
.student-experience-item-content {
    width: calc(100% - 110px);
}
.student-experience-item-content h3 {
    font-size: 24px;
    line-height: 1.4em;
    text-transform: capitalize;
}
.student-experience-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 40px;
}
.student-experience-rating h3 {
    color: var(--accent-color);
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.student-experience-rating p {
    text-transform: capitalize;
    margin: 0;
}
.our-team {
    padding: 100px 0 70px;
}
.team-item {
    background: var(--secondary-color);
    height: calc(100% - 30px);
    margin-bottom: 30px;
}
.team-image a {
    display: block;
    cursor: none;
    overflow: hidden;
}
.team-image img {
    width: 100%;
    aspect-ratio: 1 / 1.126;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}
.team-item:hover .team-image img {
    transform: scale(1.1);
}
.team-body {
    padding: 20px;
}
.team-content {
    margin-bottom: 20px;
}
.team-content h3 {
    font-size: 24px;
    text-transform: capitalize;
}
.team-content h3 a {
    color: inherit;
}
.team-social-icon ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}
.team-social-icon ul li a {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}
.team-social-icon ul li a i {
    color: inherit;
    font-size: 16px;
}
.team-social-icon ul li a:hover {
    background: var(--accent-color);
}
.our-core-value {
    position: relative;
    padding: 60px 0;
    background: url("../images/driving-excellence-bg.png"),
        var(--secondary-color);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.core-value-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}
.core-value-content {
    width: calc(55% - 15px);
}
.core-value-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}
.core-value-content-box {
    width: calc(53% - 15px);
}
.core-value-item {
    margin-bottom: 40px;
}
.core-value-item .icon-box {
    margin-bottom: 20px;
}
.core-value-item .icon-box img {
    width: 100%;
    max-width: 50px;
}
.core-value-item-content h3 {
    font-size: 24px;
    text-transform: capitalize;
}
.core-value-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.core-value-list ul li {
    background: url("../images/icon-check.svg") no-repeat;
    background-position: left top;
    background-size: 22px auto;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 20px;
}
.core-value-list ul li:last-child {
    margin-bottom: 0;
}
.core-value-btn {
    margin-top: 40px;
}
.core-value-body-img {
    width: calc(47% - 15px);
}
.core-value-body-img figure {
    display: block;
}
.core-value-body-img img {
    width: 100%;
    aspect-ratio: 1 / 1.21;
    object-fit: cover;
}
.core-value-image {
    position: relative;
    width: calc(45% - 15px);
    padding-bottom: 45px;
}
.core-value-img figure {
    display: block;
}
.core-value-img img {
    width: 100%;
    aspect-ratio: 1 / 1.03;
    object-fit: cover;
}
.footer-contact-list.core-value-contact-info {
    position: absolute;
    bottom: 0;
    left: 55%;
    width: max-content;
    transform: translateX(-50%);
    border: 3px solid var(--secondary-color);
    animation: contactbox 3s infinite linear alternate;
    z-index: 1;
}
@keyframes contactbox {
    50% {
        left: 45%;
    }
}
.our-faqs.about-our-faqs {
    background: transparent;
}
.our-faqs.about-our-faqs p {
    margin-top: 0px;
}
.page-services {
    padding: 100px 0 70px;
}
.page-services .service-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}
.page-service-single {
    padding: 60px 0;
}
.page-single-sidebar {
    position: sticky;
    top: 20px;
    margin-right: 20px;
}
.page-single-category-list {
    border: 1px solid var(--divider-color);
    margin-bottom: 60px;
}
.page-single-category-list h3 {
    font-size: 24px;
    color: var(--white-color);
    text-transform: uppercase;
    background: var(--accent-color);
    padding: 18px 30px;
}
.page-single-category-list ul {
    list-style: none;
    margin: 0;
    padding: 30px;
}
.page-single-category-list ul li {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.page-single-category-list ul li:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}
.page-single-category-list ul li a {
    position: relative;
    display: block;
    line-height: 1.4em;
    text-transform: capitalize;
    color: var(--text-color);
    padding-right: 30px;
    transition: all 0.4s ease-in-out;
}
.page-single-category-list ul li:hover a {
    color: var(--primary-color);
}
.page-single-category-list ul li a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("../images/arrow-accent.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 14px;
    height: 14px;
    transition: all 0.4s ease-in-out;
}
.page-single-category-list ul li a:hover::before {
    transform: translateY(-50%) rotate(45deg);
    filter: brightness(0) invert(0);
}
.sidebar-cta-box {
    position: relative;
    background: url("../images/campus.webp"), no-repeat;
    background-size: cover;
    padding: 40px 30px;
}
.sidebar-cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 50%;
    width: 100%;
    height: 100%;
}
.sidebar-cta-logo {
    position: relative;
    margin-bottom: 40px;
    z-index: 1;
}
.sidebar-cta-logo img {
    width: 100%;
    max-width: 173px;
}
.cta-content {
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}
.cta-content h3 {
    font-size: 24px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 15px;
}
.cta-content p {
    color: var(--white-color);
    margin-bottom: 0;
}
.cta-contact-buttons {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 1;
}
.cta-contact-buttons .btn-default:hover {
    color: #fff;
}
.cta-contact-buttons .btn-default::after {
    background: var(--white-color);
}
.cta-contact-buttons .btn-default:hover:before {
    filter: none;
}
.cta-contact-btn {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}
.cta-contact-btn img {
    width: 100%;
    max-width: 20px;
    margin-right: 5px;
}
.cta-contact-btn:hover {
    color: var(--accent-color);
}
.service-single-slider {
    margin-bottom: 0px;
}
.service-single-slider .swiper-slide figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 66.79%,
        rgba(16, 15, 17, 0.8) 100%
    );
    width: 100%;
    height: 100%;
    z-index: 0;
}
.service-single-slider .swiper-slide img {
    width: 100%;
    aspect-ratio: 1 / 0.598;
    object-fit: cover;
}
.service-single-slider.library img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.service-single-slider .service-pagination {
    position: absolute;
    bottom: 30px;
    text-align: center;
    z-index: 1;
}
.service-single-slider .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    background: var(--white-color);
    opacity: 1;
    margin: 0 3px;
    border-radius: 0;
    transition: all 0.4s ease-in-out;
}
.service-single-slider .swiper-pagination-bullet-active {
    width: 22px;
    background: var(--accent-color);
}
.service-entry {
    margin-bottom: 60px;
}
.service-entry p {
    margin-bottom: 20px;
}
.service-entry p:last-child {
    margin-bottom: 0;
}
.service-entry h2 {
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.service-entry h2 span {
    color: var(--accent-color);
}
.service-entry h3 {
    font-size: 24px;
    margin-bottom: 15px;
}
.service-entry ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-entry ul li {
    background: url("../images/icon-check.svg") no-repeat;
    background-position: left top 2px;
    background-size: 22px auto;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 20px;
}
.service-entry ul li:last-child {
    margin-bottom: 0;
}
.service-expert-box,
.service-technique-box {
    margin-top: 60px;
}
.service-expert-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.service-expert-item {
    width: 100%;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.service-expert-item:nth-child(even) {
    flex-direction: row-reverse;
}
.service-expert-content,
.service-expert-image {
    width: calc(50% - 15px);
}
.service-expert-content {
    background: var(--accent-color);
    padding: 40px;
}
.service-expert-content .icon-box {
    margin-bottom: 70px;
}
.service-expert-content .icon-box img {
    width: 100%;
    max-width: 60px;
}
.service-expert-item-content p {
    color: var(--primary-color);
    margin-bottom: 0;
}
.service-expert-image figure {
    display: block;
    height: 100%;
}
.service-expert-image img {
    width: 100%;
    aspect-ratio: 1 / 0.86;
    object-fit: cover;
}
.service-technique-image {
    margin-top: 40px;
}
.service-technique-image figure {
    display: block;
}
.service-technique-image img {
    width: 100%;
    aspect-ratio: 1 / 0.346;
    object-fit: cover;
}
.service-technique-list-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    margin-top: 40px;
}
.service-technique-list-item {
    width: calc(50% - 15px);
}
.page-blog {
    padding: 60px 0;
}
.page-pagination {
    margin-top: 30px;
    text-align: center;
}
.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}
.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 0px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}
.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--accent-color);
    color: var(--white-color);
}
.page-single-post {
    padding: 60px 0;
}
.post-single-meta ol li {
    font-size: 16px;
    color: var(--white-color);
    margin-right: 15px;
}
.post-single-meta ol li:last-child {
    margin-right: 0;
}
.post-single-meta ol li i {
    font-size: 16px;
    color: var(--white-color);
    margin-right: 5px;
}
.post-image {
    position: relative;
    margin-bottom: 30px;
}
.post-image figure {
    display: block;
    overflow: hidden;
}
.post-image img {
    width: 100%;
    aspect-ratio: 1 / 0.5;
    object-fit: cover;
}
.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.post-entry:after {
    content: "";
    display: block;
    clear: both;
}
.post-entry a {
    color: var(--accent-color);
}
.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 0.417em;
}
.post-entry h1 {
    font-size: 80px;
}
.post-entry h2 {
    font-size: 48px;
}
.post-entry h3 {
    font-size: 40px;
}
.post-entry h4 {
    font-size: 30px;
}
.post-entry h5 {
    font-size: 24px;
}
.post-entry h6 {
    font-size: 16px;
}
.post-entry p {
    margin-bottom: 20px;
}
.post-entry p:last-child {
    margin-bottom: 0;
}
.post-entry p strong {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}
.post-entry ol {
    margin: 0 0 30px;
}
.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}
.post-entry ol li,
.post-entry ul li {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}
.post-entry ul li:last-child {
    margin-bottom: 0;
}
.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}
.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}
.post-entry blockquote {
    background: url("../images/icon-blockquote.svg"), var(--accent-color);
    background-repeat: no-repeat;
    background-position: 30px 30px;
    background-size: 50px;
    border-radius: 0px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}
.post-entry blockquote p {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5em;
    color: var(--primary-color);
}
.post-entry blockquote p:last-child {
    margin-bottom: 0;
}
.tag-links {
    font-family: var(--accent-font);
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.post-tags .tag-links a {
    display: inline-block;
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1em;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 0px;
    padding: 11px 20px;
    transition: all 0.3s ease-in-out;
}
.post-tags .tag-links a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
.post-social-sharing {
    text-align: right;
}
.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}
.post-social-sharing ul li:last-child {
    margin-right: 0;
}
.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 0px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}
.post-social-sharing ul li:hover a {
    background: var(--primary-color);
    color: var(--white-color);
}
.post-social-sharing ul li a i {
    font-size: 16px;
    color: inherit;
}
.page-courses {
    padding: 100px 0 70px;
}
.page-course-single {
    padding: 60px 0;
}
.course-category-list {
    margin-bottom: 0px;
    border: 1px solid #1d3c5d;
    border-radius: 0px 0px 15px 15px;
}
.course-category-list h3 {
    font-size: 24px;
    color: var(--white-color);
    text-transform: uppercase;
    background: var(--accent-color);
    padding: 18px 30px;
}
.course-category-list ul {
    margin: 0;
    padding: 30px 20px;
    list-style: none;
}
.course-category-list ul li {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4em;
    text-transform: capitalize;
    color: var(--primary-color);
    /*display: flex;*/
    display: block;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 25px;
    padding-bottom: 25px;
}
.course-category-list ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.course-category-list ul li span {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    width: 52%;
}
.course-featured-image {
    margin-bottom: 40px;
}
.course-featured-image figure {
    display: block;
}
.course-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.598;
    object-fit: cover;
}
.course-entry {
    margin-bottom: 0px;
}
.course-entry p {
    margin-bottom: 20px;
}
.course-entry p:last-child {
    margin-bottom: 0;
}
.course-entry h2 {
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.course-entry h2 span {
    color: var(--accent-color);
}
.course-entry ul {
    display: flex;
    gap: 20px 30px;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}
.course-entry ul li {
    width: calc(50% - 15px);
    background: url("../images/icon-check.svg") no-repeat;
    background-position: left top 2px;
    background-size: 22px auto;
    line-height: 1.5em;
    padding-left: 30px;
}
.course-confidence-box,
.course-navigate-box {
    margin-top: 30px;
}
.course-confidence-box ul {
    margin-top: 0px;
}
.course-navigate-info {
    background: var(--secondary-color);
}
.course-navigate-info-item {
    width: calc(25% - 20px);
}
.course-navigate-info-item .icon-box {
    margin-bottom: 30px;
}
.course-navigate-info-item .icon-box img {
    width: 100%;
    max-width: 50px;
}
.course-navigate-item-content h3 {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.course-navigate-item-content h3 b {
    font-size: 24px;
    font-weight: 700;
    margin-right: 5px;
}
.course-navigate-video-image {
    position: relative;
}
.course-navigate-image figure {
    display: block;
}
.course-navigate-image img {
    width: 100%;
    aspect-ratio: 1 / 0.511;
    object-fit: cover;
    filter: brightness(60%);
}
.page-team {
    padding: 100px 0 70px;
}
.page-team-single {
    padding: 60px 0;
}
.team-about-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px 60px;
    margin-bottom: 100px;
}
.team-single-image {
    width: calc(50% - 30px);
}
.team-single-image figure {
    display: block;
}
.team-single-image img {
    width: 100%;
    aspect-ratio: 1 / 1.01;
    object-fit: cover;
}
.team-about-content {
    width: calc(50% - 30px);
}
.team-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}
.team-contact-box {
    width: calc(50% - 15px);
    display: flex;
    background-color: var(--white-color);
    border: 1px solid var(--divider-color);
    padding: 30px 20px;
    box-shadow: 0px 20px 50px 0px #0000000d;
}
.team-contact-box .icon-box {
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.team-contact-box .icon-box img {
    width: 100%;
    max-width: 24px;
}
.team-contact-content {
    width: calc(100% - 55px);
}
.team-contact-content h3 {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.team-contact-content p {
    margin: 0;
}
.team-about-content .team-social-icon {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 10px;
    margin-bottom: 40px;
}
.team-social-icon h3 {
    font-size: 24px;
    text-transform: capitalize;
}
.team-emergency-box {
    background: var(--accent-color);
    padding: 20px;
}
.team-emergency-box ul {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}
.team-emergency-box ul li {
    color: var(--primary-color);
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.team-emergency-box ul li a {
    display: block;
    color: inherit;
}
.team-emergency-box ul li img {
    max-width: 24px;
    margin-right: 10px;
}
.team-education-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
}
.team-education-qualification,
.team-contact-form {
    width: calc(50% - 30px);
}
.team-education-qualification .section-title {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}
.team-qualification-item {
    display: flex;
    margin-bottom: 40px;
}
.team-qualification-item:last-child {
    margin-bottom: 0;
}
.team-qualification-item .icon-box {
    background: var(--accent-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}
.team-qualification-item .icon-box img {
    width: 100%;
    max-width: 30px;
}
.team-qualification-content {
    width: calc(100% - 90px);
}
.team-qualification-content h3 {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.team-qualification-content p {
    margin: 0;
}
.page-pricing {
    padding: 60px 0;
}
.page-testimonials {
    padding: 100px 0 70px;
}
.page-testimonials .testimonial-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}
.page-gallery {
    padding: 60px 0 30px;
}
.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}
.page-gallery-box .photo-gallery a {
    cursor: none;
}
.page-gallery-box .photo-gallery figure {
    display: block;
}
.page-gallery-box .photo-gallery img {
    width: 100%;
    aspect-ratio: 1 / 0.87;
    object-fit: cover;
}
.page-video-gallery {
    padding: 100px 0 70px;
}
.video-gallery-image {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}
.video-gallery-image a {
    position: relative;
    display: block;
    cursor: none;
}
.video-gallery-image a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}
.video-gallery-image:hover a::before {
    opacity: 40%;
    visibility: visible;
    transform: scale(1);
}
.video-gallery-image a::after {
    content: "\f04b";
    font-family: "FontAwesome";
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    font-size: 20px;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}
.video-gallery-image:hover a::after {
    opacity: 1;
    visibility: visible;
}
.video-gallery-image img {
    aspect-ratio: 1 / 0.87;
    object-fit: cover;
}
.page-faqs {
    padding: 60px 0;
}
.page-faqs-catagery .page-faq-accordion {
    margin-bottom: 60px;
}
.page-faqs-catagery .page-faq-accordion:last-child {
    margin-bottom: 0px;
}
.page-contact-us {
    padding: 60px 0;
}
.contact-us-box {
    display: flex;
    flex-wrap: wrap;
}
.contact-us-content,
.contact-us-form {
    width: 50%;
}
.contact-us-content {
    position: relative;
    background: url("../images/contact-us-image.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px;
}
.contact-us-content:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        270.39deg,
        rgba(16, 15, 17, 0) 0.34%,
        #100f11 99.66%
    );
    z-index: 0;
}
.contact-info-item {
    position: relative;
    display: flex;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
    z-index: 1;
}
.contact-info-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.contact-info-item .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white-color);
    transform: scale(0);
    height: 100%;
    width: 100%;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}
.contact-info-item:hover .icon-box::before {
    transform: scale(1);
}
.contact-info-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}
.contact-info-item:hover .icon-box img {
    filter: brightness(1) invert(1);
}
.contact-info-content {
    width: calc(100% - 80px);
}
.contact-info-content p {
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 5px;
}
.contact-info-content h5 {
    color: #fff;
    font-weight: 600;
}
.contact-info-content h5 a {
    color: #fff;
    transition: all 0.4s ease-in-out;
}
.contact-info-content h5 a:hover {
    color: #b6b821;
}
.contact-social-list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px 20px;
    z-index: 1;
}
.contact-social-list h3 {
    color: #fff;
    font-size: 24px;
    text-transform: capitalize;
}
.contact-social-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    list-style: none;
    line-height: 1em;
    padding: 0;
    margin: 0;
}
.contact-social-list ul li a {
    background: var(--white-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.contact-social-list ul li a:hover {
    background: var(--accent-color);
    color: var(--white-color);
}
.contact-social-list ul li a i {
    font-size: 24px;
    color: inherit;
}
.contact-us-form {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    box-shadow: 0px 20px 50px 0px #0000000d;
    padding: 50px;
}
.contact-us-form .section-title p {
    margin-top: 20px;
}
.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: var(--text-color);
    background-color: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 0px;
    padding: 18px 20px;
    box-shadow: none;
    outline: none;
}
.contact-form .form-control::placeholder {
    color: var(--text-color);
}
.google-map .container-fluid {
    padding: 0;
}
.google-map-iframe,
.google-map-iframe iframe {
    width: 100%;
}
.page-book-appointment {
    padding: 60px 0;
}
.page-book-appointment .book-appointment-form {
    border: 1px solid var(--divider-color);
    background-color: var(--white-color);
    box-shadow: 0px 20px 50px 0px #0000000d;
}
.page-appointment-content .appointment-info-title h3 {
    color: var(--primary-color);
}
.page-appointment-content .appointment-info-content p {
    color: var(--text-color);
}
.page-appointment-content .appointment-info-item.location-info-item {
    border-color: var(--divider-color);
}
.error-page {
    padding: 60px 0;
}
.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}
.error-page-image img {
    width: 100%;
    max-width: 60%;
}
.error-page-content {
    text-align: center;
}
.error-page-content-body p,
.error-page-content .section-title {
    margin-bottom: 20px;
} /************* CUSTOM CSS *****************/
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.section-header h4 {
    margin: 0;
    font-weight: bold;
}
.swiper-button {
    background: #eee;
    border-radius: 50%;
    padding: 5px 10px;
    margin-left: 5px;
    cursor: pointer;
}
.swiper-button i {
    color: #333;
}
.event-card,
.announcement-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
}
.announce-box {
    padding: 30px 20px 10px;
    border-radius: 10px;
    border: 1px solid #d8d7d7;
}
.announce-box .child {
    border-bottom: none;
}
.event-card img {
    width: 32%;
    object-fit: cover;
}
.event-info {
    padding: 15px;
    flex: 1;
}
.event-info h5 {
    font-weight: bold;
    color: #1e355e;
    padding-bottom: 5px;
}
.event-info p {
    margin: 3px 0;
    font-size: 14px;
    padding-bottom: 5px;
}
.announcement-card {
    gap: 15px;
    display: flex;
    padding: 25px 0px;
    border-radius: 0px;
    border-bottom: 1px solid #d8d7d7;
}
.announcement-card .date {
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    font-weight: bold;
    height: 40px;
    display: inline-grid;
}
.announcement-card .date span:first-child {
    font-size: 13px;
}
.date .month {
    height: 28px;
    padding: 5px 15px;
    text-align: center;
    border-radius: 5px;
    background: #1e355e;
}
.announcement-card .date span:last-child {
    font-size: 16px;
    color: #000;
    margin-top: 10px;
}
.announcement-details {
    flex: 1;
}
.announcement-details h6 {
    color: #1e355e;
    font-weight: bold;
    margin-bottom: 5px;
}
.announcement-details p {
    margin: 0;
    font-size: 14px;
}
.announcement-location {
    margin-top: 5px;
    font-size: 13px;
    color: #333;
}
.announcement-location i {
    margin-right: 5px;
}
@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }
    .event-card img {
        width: 100%;
        height: 200px;
    }
    .announcement-card {
        flex-direction: column;
    }
}
.bg-grey {
    background: #f6f6f7;
}
.courses-section {
    position: relative;
    background: #fff;
    padding: 60px 0;
}
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.course-card {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}
.course-card:hover {
    transform: translateY(-5px);
}
.course-card .icon-bg {
    /*width: 40px;*/ /*height: 40px;*/ /*min-width: 40px;*/
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    color: white;
}
.light-green {
    background: #eafaf5;
}
.light-pink {
    background: #fff4f5;
}
.light-yellow {
    background: #fff8e6;
}
.light-cream {
    background: #fdf9f2;
}
.light-purple {
    background: #f9f0fd;
}
.light-blue {
    background: #def2fe;
}
.light-indigo {
    background: #efeffb;
}
.light-violet {
    background: #f7f3fe;
}
.light-red {
    background: #fededf;
}
.facility-section {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
    gap: 40px;
}
.facility-left {
    flex: 1 1 250px;
}
.facility-left h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 5px;
}
.facility-left h2 {
    font-size: 28px;
    color: #1c3c6b;
    margin: 0 0 20px;
}
.facility-left p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}
.facility-grid {
    flex: 2 1 500px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); /*gap: 20px;*/
}
.facility-box {
    text-align: center;
    padding: 40px 20px;
    cursor: pointer;
    transition: 0.3s;
    border-left: 1px solid #e1dfdfde;
    border-right: 1px solid #e1dfdfde;
    border-bottom: 1px solid #e1dfdfde;
    border-top: none;
}
.facility-box.line1 {
    border-left: none;
    border-bottom: none;
}
.facility-box.line2 {
    border-left: none;
    border-bottom: none;
}
.facility-box.line3 {
    border-bottom: none;
}
.facility-box.line4 {
    border-right: none;
    border-bottom: none;
}
.facility-box.line5 {
    border-right: 0px;
}
.facility-box.line {
    border: 0px;
}
.facility-box.active,
.facility-box:hover {
    background-color: #3498db;
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.facility-box img {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}
.facility-box.active img,
.facility-box:hover img {
    filter: brightness(0) invert(1);
}
.facility-box span {
    font-size: 14px;
    display: block;
}
@media (max-width: 768px) {
    .facility-section {
        flex-direction: column;
        align-items: center;
    }
    .facility-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 480px) {
    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #2f80ed;
    padding: 30px 120px;
    color: white;
}
.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1 1 200px;
    margin: 15px;
    max-width: 250px;
}
.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #4d9dfb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.stat-text h3 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}
.stat-text p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
} /* Responsive */
@media (max-width: 768px) {
    .stats-section {
        justify-content: center;
    }
    .stat-box {
        max-width: 100%;
        justify-content: flex-start;
    }
}
.sports-section {
    text-align: center; /*padding: 30px 20px;*/
    font-family: Arial, sans-serif;
}
.sports-section h4 {
    color: #888;
    margin-bottom: 5px;
}
.sports-section h2 {
    color: #1b2d4a;
    font-size: 28px;
    margin-bottom: 30px;
}
.sports-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.sports-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.sports-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.sports-card:hover img {
    transform: scale(1.05);
}
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end; /*padding: 20px;*/
    opacity: 0;
    transition: opacity 0.3s ease;
}
.sports-card:hover .overlay {
    opacity: 1;
}
.overlay-content {
    color: #000;
    padding: 10px;
    margin-right: 10px;
    background: #fff;
    text-align: left;
}
.overlay-content h3 {
    margin: 0;
    font-size: 20px;
}
.overlay-content p {
    font-size: 14px;
    margin-top: 5px;
}
.our-services.why-section {
    background: #f0f7ff;
}
.left {
    flex: 1;
    min-width: 280px;
}
.tabs button {
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
}
.tab-content {
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
}
.top-space {
    margin-top: 30px;
}
.top-space .box.box1 {
    margin-bottom: 10px;
}
.bottom-space .box.box3 {
    margin-bottom: 10px;
}
.tab-content ul {
    padding-left: 0px;
    text-align: center;
}
.left li::marker {
    /* display: none !important; */ /* list-style: none; */
    content: "";
}
#mission li {
    text-align: left;
}
.tab-content ul li {
    padding-bottom: 15px;
    list-style-type: none;
}
.tab-content ul li::before {
    content: "✨";
    margin-right: 5px;
}
.about-btn {
    padding: 10px 20px;
    background: #1e3a8a;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.right {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    flex: 1;
}
.box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.box-number {
    position: absolute;
    bottom: 50px;
    left: 70%;
    font-size: 60px;
    font-weight: bold;
    color: #fff; /* background: rgba(0, 0, 0, 0.5); */
    padding: 5px 10px;
    border-radius: 4px;
    float: right;
}
.box-caption {
    background: #1e3a8a;
    color: #fff;
    text-align: center;
    padding: 15px 10px;
    font-weight: bold;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}
.college-section {
    margin: 0 auto;
    text-align: center;
    padding: 60px 0px;
}
.college-section h2 {
    font-size: 32px;
    color: #1e3a8a;
    margin-bottom: 10px;
}
.college-section p.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}
.college-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}
.college-image {
    flex: 1;
    min-width: 300px;
}
.college-image img {
    width: 60%;
    border-radius: 12px;
    max-height: 450px;
    object-fit: cover;
    float: left;
}
.college-content {
    position: absolute;
    right: 0;
    bottom: 30px;
    background-color: #ecefe9;
    padding: 50px 60px;
    max-width: 600px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.college-content small {
    text-transform: uppercase;
    color: #666;
    font-weight: bold;
}
.college-content h3 {
    font-size: 24px;
    color: #1e1e1e;
    margin: 10px 0;
}
.college-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}
.college-content a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #1e3a8a;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}
@media (max-width: 900px) {
    .college-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .college-content {
        position: static;
        margin-top: -20px;
        max-width: 100%;
    }
}
.gallery-section {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}
.gallery-section small {
    font-weight: 600;
    color: #888;
    letter-spacing: 1px;
}
.gallery-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #1e3a8a;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}
.gallery-image {
    width: 100%;
    overflow: hidden;
}
.gallery-image img {
    border-radius: 15px;
    transition: transform 0.4s ease;
}
.gallery-card:hover img {
    transform: scale(1.05);
}
.gallery-content {
    padding: 25px 30px 10px 0px;
    text-align: left;
}
.gallery-content .date {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}
.gallery-content h4 {
    font-size: 17px;
    color: #111;
    margin: 0;
}
@media (max-width: 600px) {
    .gallery-content h4 {
        font-size: 16px;
    }
}
.footer {
    background: #1d3c5d;
    color: oklch(70.7% 0.022 261.325);
    padding: 40px 20px 50px;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}
.footer-column {
    flex: 1 1 220px;
    min-width: 220px;
}
.footer-column.footer-contact p {
    margin-bottom: 0.8em !important;
}
.footer-logo img {
    max-width: 230px;
    margin-bottom: 15px;
}
.footer p {
    font-size: 16px;
    line-height: 1.6;
    display: inline-flex;
}
.footer-column h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}
.footer-links li {
    list-style: none;
    margin-bottom: 20px;
} /*.footer-links li::before { content: "⚡"; margin-right: 8px; font-weight: bold; color: oklch(70.7% .022 261.325); filter: brightness(0) invert(1); }*/
.footer-toggle {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}
.footer-toggle::after {
    content: "+";
    position: absolute;
    right: 20%;
}
.footer-toggle.active::after {
    content: "-";
}
.footer-links {
    display: none;
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}
.footer-links li,
.footer-links p {
    font-size: 14px;
    margin: 15px 0;
}
@media screen and (min-width: 769px) {
    .footer-column {
        margin-top: 15px;
    }
    .footer p {
        width: 100%;
    }
    .footer-toggle::after {
        display: none;
    }
    .footer-links {
        display: block !important;
    }
}
.footer-links a {
    font-size: 18px;
    text-decoration: none;
    color: oklch(70.7% 0.022 261.325);
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-contact i {
    top: 6px;
    margin-right: 8px;
    color: oklch(70.7% 0.022 261.325);
    position: relative;
}
.footer-social {
    margin-top: 20px;
}
.footer-social a {
    width: 35px;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s;
    border: 1px solid oklch(70.7% 0.022 261.325);
    padding: 7px;
    border-radius: 50%;
}
.footer-social a:hover {
    background: #afbb37;
}
.footer-bottom {
    text-align: center;
    color: #aaa;
    font-size: 15px; /* margin-top: 40px; */
    border-top: 1px solid #87858563;
    padding-top: 30px;
    padding-bottom: 10px;
    width: 100%;
}
.footer-bottom a {
    color: #f17721;
}
.footer-bottom span {
    color: #bdc644;
    font-weight: 600;
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        flex: 100%;
    }
    .footer-links li::before {
        display: none;
    }
} /***************************************************/
@media only screen and (max-width: 1840px) {
    .bg-section {
        width: calc(100% - 100px);
        margin-left: 50px;
        margin-right: 50px;
        max-width: 100%;
    }
}
@media only screen and (max-width: 1560px) {
    .bg-section {
        width: calc(100% - 0px);
        margin-left: 0px;
        margin-right: 0px;
    }
    .our-services::after {
        bottom: 11px;
        width: 233px;
        height: 230px;
    }
}
@media only screen and (max-width: 1024px) {
    .header-contact-btn {
        display: none;
    }
}
@media only screen and (max-width: 991px) {
    body {
        font-size: 16px;
    }
    .navbar {
        padding: 20px 0;
    }
    .main-header .navbar-brand img {
        max-width: 150px;
    }
    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }
    .responsive-menu,
    .navbar-toggle {
        display: block;
    }
    .header-btn {
        display: none;
    }
    .bg-section {
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
        border-radius: 0;
    }
    .btn-default {
        font-size: 16px;
        padding: 14px 35px 14px 15px;
    }
    .btn-default.btn-highlighted {
        padding: 11px 35px 11px 15px;
    }
    .btn-default::before {
        right: 15px;
    }
    .readmore-btn {
        font-size: 16px;
        padding-right: 20px;
    }
    .section-row {
        margin-bottom: 40px;
    }
    .section-row .section-title.section-title-center {
        max-width: 100%;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .section-title h1 {
        font-size: 55px;
    }
    .section-title h2 {
        font-size: 38px;
    }
    .section-title p {
        margin-top: 10px;
    }
    .section-title-content {
        margin-top: 10px;
    }
    .section-btn {
        text-align: left;
    }
    .section-content-btn .section-btn {
        margin-top: 15px;
    }
    .hero-section {
        padding: 50px 0 250px;
    }
    .hero-section.hero-slider-layout .hero-slide {
        padding: 50px 0 100px;
    }
    .hero-section.hero-slider-layout .hero-pagination {
        bottom: 15px;
    }
    .hero-section.hero-slider-layout
        .hero-pagination
        .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    .hero-content .section-title p {
        font-size: 16px;
    }
    .hero-btn {
        gap: 20px 30px;
    }
    .hero-cta-box {
        padding: 50px;
        margin-top: -200px;
    }
    .hero-intro-video-image,
    .hero-cta-contetnt {
        width: 100%;
    }
    .hero-cta-item {
        margin-bottom: 30px;
    }
    .hero-cta-item .icon-box {
        margin-right: 20px;
    }
    .hero-cta-item-content {
        width: calc(100% - 70px);
    }
    .hero-cta-item-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .hero-client-slider {
        padding: 30px 0;
    }
    .about-us {
        padding: 50px 0;
    }
    .about-us-image {
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .about-contact-box .icon-box img {
        max-width: 30px;
    }
    .about-us-body {
        margin-bottom: 30px;
    }
    .mission-vision-item h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .company-experience-box {
        padding: 25px;
    }
    .company-experience-box h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .company-experience-box h2 {
        font-size: 38px;
    }
    .our-services {
        padding: 50px 0;
    }
    .our-services::before {
        height: 20%;
    }
    .our-services::after {
        bottom: 8px;
        width: 150px;
        height: 148px;
    }
    .service-image img {
        aspect-ratio: 1 / 1.1;
    }
    .service-body {
        left: 20px;
        bottom: 20px;
    }
    .service-item-content .icon-box {
        margin-bottom: 10px;
    }
    .service-title h3 {
        font-size: 22px;
    }
    .services-pagination {
        margin-top: 40px;
    }
    .services-pagination .swiper-pagination-bullet {
        height: 12px;
        width: 12px;
    }
    .section-footer-text {
        margin-top: 20px;
    }
    .our-services .section-footer-text {
        margin-bottom: 30px;
    }
    .why-choose-us {
        padding: 50px 0 0;
        background-size: 90% auto;
    }
    .why-choose-box,
    .why-choose-item {
        margin-bottom: 30px;
    }
    .why-choose-item .icon-box {
        margin-right: 20px;
    }
    .why-choose-item-content {
        width: calc(100% - 70px);
    }
    .why-choose-item-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .why-choose-image {
        text-align: center;
    }
    .why-choose-image img {
        max-width: 50%;
    }
    .what-we-do {
        padding: 50px 0 25px;
    }
    .what-we-do-content {
        margin: 0 0 30px 0;
    }
    .what-we-do-list {
        padding: 30px;
    }
    .what-we-do-list ul li {
        background-size: 20px auto;
        padding: 0 0 20px 30px;
        margin-bottom: 20px;
    }
    .what-we-do-img img {
        aspect-ratio: 1 / 0.56;
    }
    .what-we-do-info {
        gap: 20px 30px;
        margin-top: 40px;
    }
    .what-we-do-info h3 {
        font-size: 22px;
    }
    .our-courses {
        padding: 25px 0 20px;
    }
    .course-image img {
        aspect-ratio: 1 / 1.08;
    }
    .course-body {
        left: 20px;
        bottom: 20px;
        right: 20px;
    }
    .course-item-content h3 {
        font-size: 22px;
    }
    .course-readmore-btn {
        margin-top: 15px;
    }
    .how-it-work {
        padding: 50px 0;
    }
    .how-it-work-content {
        margin-bottom: 30px;
    }
    .how-it-work-image img {
        aspect-ratio: 1 / 0.56;
    }
    .how-it-work-steps {
        margin: 0;
    }
    .how-work-step-item {
        margin-bottom: 40px;
    }
    .how-work-step-item:after {
        transform: translate(25px, 50px);
    }
    .how-work-step-no {
        width: 50px;
        height: 50px;
        margin-right: 20px;
    }
    .how-work-step-no h2 {
        font-size: 24px;
    }
    .how-work-step-content {
        width: calc(100% - 70px);
    }
    .how-work-step-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .our-pricing {
        padding: 50px 0;
    }
    .pricing-item {
        padding: 30px;
    }
    .pricing-header {
        margin-bottom: 20px;
    }
    .pricing-header h3 {
        font-size: 22px;
    }
    .pricig-body ul li {
        padding-left: 25px;
        margin-bottom: 15px;
    }
    .pricig-body ul li:before {
        height: 18px;
        width: 18px;
        top: 2px;
    }
    .pricig-body {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .pricing-footer {
        margin-bottom: 30px;
    }
    .pricing-price {
        margin-bottom: 10px;
    }
    .pricing-price h2 {
        font-size: 38px;
    }
    .pricing-price h2 sub {
        font-size: 16px;
    }
    .pricing-btn .btn-default {
        padding: 14px 15px;
    }
    .pricing-benefit-list {
        margin-top: 5px;
    }
    .pricing-benefit-list ul {
        gap: 15px 30px;
    }
    .pricing-benefit-list ul li img {
        max-width: 18px;
        margin-right: 10px;
    }
    .book-appointment {
        padding: 50px 0;
    }
    .book-appointment-content {
        margin: 0 0 30px 0;
    }
    .appointment-info-list {
        gap: 30px 80px;
    }
    .appointment-info-title {
        margin-bottom: 10px;
    }
    .appointment-info-title img {
        max-width: 22px;
        margin-right: 10px;
    }
    .appointment-info-title h3 {
        font-size: 22px;
    }
    .appointment-info-item.location-info-item {
        padding-top: 30px;
    }
    .book-appointment-form {
        padding: 30px;
    }
    .book-appointment-form .form-control {
        padding: 14px 15px;
    }
    .our-testimonials {
        padding: 50px 0;
    }
    .testimonial-item {
        padding: 20px;
    }
    .testimonial-header {
        gap: 10px;
        margin-bottom: 15px;
    }
    .testimonial-rating-conuter h3 {
        font-size: 22px;
    }
    .testimonial-content {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .author-image img {
        max-width: 50px;
    }
    .author-content {
        width: calc(100% - 65px);
    }
    .author-content h3 {
        font-size: 22px;
    }
    .testimonial-pagination {
        margin-top: 30px;
    }
    .our-faqs {
        padding: 50px 0;
    }
    .faq-accordion .accordion-header .accordion-button.collapsed {
        padding: 15px 45px 15px 20px;
    }
    .faq-accordion .accordion-header .accordion-button {
        font-size: 22px;
        padding: 15px 45px 15px 20px;
    }
    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        right: 20px;
        font-size: 20px;
    }
    .faq-accordion .accordion-item .accordion-body {
        padding: 15px 20px 20px;
    }
    .faq-image {
        margin: 30px 0 0;
    }
    .faq-image figure img {
        aspect-ratio: 1 / 0.66;
    }
    .faq-image .appointment-info-list {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
    .our-blog {
        padding: 50px 0 20px;
    }
    .post-featured-image {
        margin-bottom: 15px;
    }
    .post-item-content {
        margin-bottom: 15px;
    }
    .post-item-content h3 {
        font-size: 22px;
    }
    .main-footer {
        padding: 40px 0 0;
    }
    .about-footer {
        margin-bottom: 30px;
    }
    .footer-logo {
        margin-bottom: 15px;
    }
    .about-footer-content {
        margin-bottom: 20px;
    }
    .footer-contact-list ul li {
        margin-bottom: 10px;
    }
    .footer-link-box {
        margin-left: 0;
        gap: 30px 40px;
    }
    .footer-links {
        width: calc(22% - 26.67px);
    }
    .footer-links::before {
        right: -20px;
    }
    .footer-links h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .footer-links ul li {
        margin-bottom: 10px;
    }
    .footer-contact-info,
    .footer-newsletter-form {
        width: calc(39% - 26.67px);
    }
    .footer-info-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .footer-newsletter-form .form-group .form-control {
        padding: 12px 16px;
    }
    .footer-newsletter-form .form-group .btn-default {
        padding: 16px;
        margin-top: 15px;
    }
    .footer-copyright {
        margin-top: 30px;
        padding: 30px 0;
    }
    .page-header {
        padding-bottom: 0px;
    }
    .page-header-section {
        padding: 80px 0;
    }
    .page-header-box h1 {
        font-size: 55px;
        margin-bottom: 10px;
    }
    .page-header-box ol li.breadcrumb-item {
        font-size: 16px;
    }
    .driving-excellence {
        padding: 50px 0;
    }
    .driving-excellence-content {
        margin-bottom: 30px;
    }
    .excellence-counter-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .excellence-body-counter {
        width: 12%;
    }
    .excellence-body-counter h2 {
        font-size: 38px;
    }
    .excellence-counter-content {
        width: 88%;
    }
    .excellence-counter-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .driving-excellence-list {
        margin-left: 0;
    }
    .excellence-item {
        padding: 20px;
    }
    .excellence-item .icon-box {
        margin-bottom: 30px;
    }
    .excellence-item-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .student-experience {
        padding: 25px 0 50px;
    }
    .student-experience-image {
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .student-experience-body {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .student-experience-item .icon-box {
        width: 70px;
        height: 70px;
        margin-right: 20px;
    }
    .student-experience-item .icon-box img {
        max-width: 40px;
    }
    .student-experience-item-content {
        width: calc(100% - 90px);
    }
    .student-experience-item-content h3 {
        font-size: 22px;
    }
    .student-experience-rating h3 {
        font-size: 22px;
        margin-bottom: 5px;
    }
    .our-team {
        padding: 50px 0 20px;
    }
    .team-image img {
        aspect-ratio: 1 / 0.98;
    }
    .team-content {
        margin-bottom: 15px;
    }
    .team-content h3 {
        font-size: 22px;
    }
    .our-core-value {
        padding: 50px 0;
    }
    .core-value-content,
    .core-value-image {
        width: 100%;
    }
    .core-value-item {
        margin-bottom: 30px;
    }
    .core-value-item-content h3 {
        font-size: 22px;
    }
    .core-value-list ul li {
        background-position: left top 2px;
        background-size: 18px auto;
        padding-left: 25px;
    }
    .core-value-btn {
        margin-top: 30px;
    }
    .core-value-body-img img {
        aspect-ratio: 1 / 0.9;
    }
    .core-value-img img {
        aspect-ratio: 1 / 0.6;
        object-position: top center;
    }
    .page-services {
        padding: 50px 0 20px;
    }
    .page-service-single {
        padding: 50px 0;
    }
    .page-single-sidebar {
        position: initial;
        margin: 0 0 30px 0;
    }
    .page-single-category-list {
        margin-bottom: 30px;
    }
    .page-single-category-list h3 {
        font-size: 22px;
        padding: 14px 20px;
    }
    .page-single-category-list ul {
        padding: 20px;
    }
    .page-single-category-list ul li {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .page-single-category-list ul li a {
        padding-right: 25px;
    }
    .page-single-category-list ul li a::before {
        width: 12px;
        height: 12px;
    }
    .sidebar-cta-box {
        padding: 30px 20px;
    }
    .sidebar-cta-logo {
        margin-bottom: 30px;
    }
    .cta-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .service-single-slider {
        margin-bottom: 30px;
    }
    .service-single-slider .service-pagination {
        bottom: 20px;
    }
    .service-entry {
        margin-bottom: 40px;
    }
    .service-entry p {
        margin-bottom: 10px;
    }
    .service-entry h2 {
        font-size: 38px;
        margin-bottom: 10px;
    }
    .service-entry h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .service-entry ul li {
        padding-left: 25px;
        margin-bottom: 15px;
        background-size: 16px auto;
    }
    .service-expert-box,
    .service-technique-box {
        margin-top: 40px;
    }
    .service-expert-item-list {
        margin-top: 30px;
    }
    .service-expert-content {
        padding: 30px;
    }
    .service-expert-content .icon-box {
        margin-bottom: 40px;
    }
    .service-expert-content .icon-box img {
        max-width: 50px;
    }
    .service-expert-image img {
        width: 100%;
        aspect-ratio: 1 / 0.68;
        object-fit: cover;
    }
    .service-technique-image,
    .service-technique-list-box {
        margin-top: 30px;
    }
    .page-blog {
        padding: 50px 0;
    }
    .page-pagination {
        margin-top: 10px;
    }
    .page-single-post {
        padding: 50px 0;
    }
    .post-single-meta ol li {
        font-size: 16px;
    }
    .post-single-meta ol li i {
        font-size: 16px;
    }
    .post-image {
        margin-bottom: 20px;
    }
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6 {
        margin: 0 0 0.4em;
    }
    .post-entry h2 {
        font-size: 38px;
    }
    .post-entry p {
        margin-bottom: 15px;
    }
    .post-entry ol li,
    .post-entry ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .post-entry blockquote {
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }
    .post-entry blockquote p {
        font-size: 16px;
    }
    .post-tags {
        margin-bottom: 20px;
    }
    .tag-links {
        font-size: 22px;
    }
    .post-tags .tag-links a {
        padding: 10px 15px;
    }
    .post-social-sharing ul {
        text-align: left;
    }
    .page-courses {
        padding: 50px 0 20px;
    }
    .page-course-single {
        padding: 50px 0;
    }
    .course-category-list {
        margin-bottom: 30px;
    }
    .course-category-list h3 {
        font-size: 22px;
        padding: 14px 20px;
    }
    .course-category-list ul {
        padding: 20px;
    }
    .course-category-list ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .course-featured-image {
        margin-bottom: 30px;
    }
    .course-featured-image img {
        aspect-ratio: 1 / 0.49;
    }
    .course-entry {
        margin-bottom: 40px;
    }
    .course-entry p {
        margin-bottom: 15px;
    }
    .course-entry h2 {
        font-size: 38px;
        margin-bottom: 15px;
    }
    .course-entry ul {
        gap: 15px 20px;
        margin-bottom: 15px;
    }
    .course-entry ul li {
        width: calc(50% - 10px);
        padding-left: 25px;
        background-size: 16px auto;
    }
    .course-confidence-box,
    .course-navigate-box {
        margin-top: 40px;
    }
    .course-confidence-box ul {
        margin-top: 30px;
    }
    .course-navigate-info {
        padding: 20px;
        margin-top: 30px;
    }
    .course-navigate-info-item .icon-box {
        margin-bottom: 20px;
    }
    .course-navigate-info-item .icon-box img {
        max-width: 40px;
    }
    .course-navigate-item-content h3 b {
        font-size: 22px;
    }
    .page-team {
        padding: 50px 0 20px;
    }
    .page-team-single {
        padding: 50px 0;
    }
    .team-about-box {
        margin-bottom: 50px;
    }
    .team-single-image,
    .team-about-content {
        width: 100%;
    }
    .team-single-image img {
        aspect-ratio: 1 / 0.8;
    }
    .team-about-content .team-social-icon,
    .team-contact-list {
        margin-bottom: 30px;
    }
    .team-contact-box {
        padding: 20px;
    }
    .team-contact-content h3 {
        font-size: 22px;
    }
    .team-social-icon h3 {
        font-size: 22px;
    }
    .team-emergency-box {
        padding: 15px;
    }
    .team-education-qualification,
    .team-contact-form {
        width: 100%;
    }
    .team-education-qualification .section-title {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .team-qualification-item {
        margin-bottom: 30px;
    }
    .team-qualification-item .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 20px;
    }
    .team-qualification-item .icon-box img {
        max-width: 26px;
    }
    .team-qualification-content {
        width: calc(100% - 70px);
    }
    .team-qualification-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .page-pricing {
        padding: 50px 0;
    }
    .page-testimonials {
        padding: 50px 0 20px;
    }
    .page-gallery {
        padding: 50px 0 20px;
    }
    .page-video-gallery {
        padding: 50px 0 20px;
    }
    .page-faqs {
        padding: 50px 0;
    }
    .page-faqs-catagery .page-faq-accordion {
        margin-bottom: 40px;
    }
    .page-contact-us {
        padding: 50px 0;
    }
    .contact-us-content,
    .contact-us-form {
        width: 100%;
    }
    .contact-us-content {
        padding: 50px;
    }
    .contact-info-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .contact-info-item .icon-box {
        height: 50px;
        width: 50px;
    }
    .contact-info-item .icon-box img {
        max-width: 26px;
    }
    .contact-info-content {
        width: calc(100% - 70px);
    }
    .contact-info-content h3 {
        font-size: 22px;
    }
    .contact-social-list h3 {
        font-size: 22px;
    }
    .contact-social-list ul li a {
        width: 40px;
        height: 40px;
    }
    .contact-social-list ul li a i {
        font-size: 22px;
    }
    .contact-us-form {
        padding: 30px;
    }
    .contact-form .form-control {
        font-size: 16px;
        padding: 15px;
    }
    .google-map-iframe,
    .google-map-iframe iframe {
        height: 500px;
    }
    .page-book-appointment {
        padding: 50px 0;
    }
    .page-appointment-content {
        margin-bottom: 30px;
    }
    .error-page {
        padding: 50px 0;
    }
    .error-page-image {
        margin-bottom: 20px;
    }
    .error-page-content-body p,
    .error-page-content .section-title {
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 767px) {
    .section-row {
        margin-bottom: 30px;
    }
    .section-title h1 {
        font-size: 28px;
    }
    .section-title h2 {
        font-size: 26px;
    }
    .hero-content .section-title p {
        font-size: 16px;
    }
    .hero-cta-box {
        padding: 30px;
    }
    .hero-cta-item .icon-box {
        margin-right: 10px;
    }
    .hero-cta-item .icon-box img {
        max-width: 40px;
    }
    .hero-cta-item-content {
        width: calc(100% - 50px);
    }
    .hero-cta-item-content h3 {
        font-size: 20px;
    }
    .hero-client-slider .company-logo img {
        height: 80px;
    }
    .about-us-image {
        max-width: 100%;
        background-size: 60px auto;
        background-position: top 48px right 10px;
        padding: 0 0px 0px 0;
    }
    .about-img-2 {
        max-width: 180px;
        border-width: 5px;
    }
    .about-contact-box {
        bottom: 25px;
    }
    .about-contact-box .icon-box {
        width: 45px;
        height: 45px;
    }
    .about-contact-box .icon-box img {
        max-width: 20px;
    }
    .about-contact-box:after {
        right: calc(100% - 45px);
    }
    .about-contact-content {
        width: calc(100% - 45px);
        padding: 5px 10px 5px 5px;
    }
    .about-contact-content p {
        margin-bottom: 2px;
    }
    .about-contact-content h3 {
        font-size: 16px;
    }
    .about-us-body {
        gap: 20px;
    }
    .mission-vision-item {
        width: 100%;
    }
    .mission-vision-item h3 {
        font-size: 20px;
    }
    .company-experience-box,
    .about-us-footer-content {
        width: 100%;
    }
    .company-experience-box {
        padding: 20px;
    }
    .company-experience-box h3 {
        font-size: 20px;
    }
    .company-experience-box h2 {
        font-size: 26px;
    }
    .our-services::before {
        animation: none;
    }
    .our-services::after {
        width: 100px;
        height: 98px;
    }
    .service-item-content .icon-box img {
        max-width: 35px;
    }
    .service-title h3 {
        font-size: 20px;
    }
    .why-choose-item .icon-box img {
        max-width: 40px;
    }
    .why-choose-item-content {
        width: calc(100% - 50px);
    }
    .why-choose-item-content h3 {
        font-size: 20px;
    }
    .why-choose-image img {
        max-width: 60%;
    }
    .what-we-do {
        background: linear-gradient(
            180deg,
            var(--primary-color) 87%,
            transparent 23%
        );
    }
    .what-we-do-list {
        padding: 0px;
        margin-top: 30px;
    }
    .what-we-do-list ul li {
        padding: 0 0 15px 30px;
        margin-bottom: 15px;
    }
    .what-we-do-info {
        gap: 15px;
        margin-top: 30px;
    }
    .what-we-do-info h3 {
        font-size: 20px;
    }
    .course-item-content h3 {
        font-size: 20px;
    }
    .how-work-step-item {
        margin-bottom: 30px;
    }
    .how-work-step-item:after {
        transform: translate(20px, 40px);
    }
    .how-work-step-no {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    .how-work-step-no h2 {
        font-size: 20px;
    }
    .how-work-step-content {
        width: calc(100% - 50px);
    }
    .how-work-step-content h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .pricing-item {
        padding: 20px;
    }
    .pricing-header h3 {
        font-size: 20px;
    }
    .pricing-price h2 {
        font-size: 26px;
    }
    .pricing-benefit-list ul {
        gap: 10px;
    }
    .pricing-benefit-list ul li {
        width: calc(50% - 5px);
        font-size: 12px;
    }
    .pricing-benefit-list ul li img {
        max-width: 16px;
        margin-right: 5px;
    }
    .appointment-info-list {
        gap: 25px;
    }
    .appointment-info-item {
        width: 100%;
    }
    .appointment-info-item.location-info-item {
        padding-top: 0;
        border-top: none;
    }
    .appointment-info-title h3 {
        font-size: 20px;
    }
    .appointment-info-title img {
        max-width: 20px;
    }
    .book-appointment-form {
        padding: 20px;
    }
    .testimonial-rating-conuter h3,
    .author-content h3 {
        font-size: 20px;
    }
    .faq-accordion .accordion-header .accordion-button {
        font-size: 20px;
        padding: 15px 40px 15px 15px;
    }
    .faq-accordion .accordion-header .accordion-button.collapsed {
        padding: 15px 40px 15px 15px;
    }
    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        right: 15px;
        font-size: 16px;
    }
    .faq-accordion .accordion-item .accordion-body {
        padding: 15px;
    }
    .faq-image figure img {
        aspect-ratio: 1 / 1.05;
    }
    .faq-image .appointment-info-list {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    .post-item-content h3 {
        font-size: 20px;
    }
    .footer-contact-list {
        display: block;
    }
    .footer-links,
    .footer-contact-info,
    .footer-newsletter-form {
        width: 100%;
    }
    .footer-links h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .footer-info-item {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .footer-copyright {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        padding: 15px 0;
    }
    .page-header-box h1 {
        font-size: 28px;
    }
    .page-header-box ol li.breadcrumb-item {
        font-size: 16px;
    }
    .excellence-body-counter {
        width: 20%;
    }
    .excellence-body-counter h2 {
        font-size: 28px;
    }
    .excellence-counter-content {
        width: 80%;
    }
    .excellence-counter-content h3 {
        font-size: 20px;
    }
    .excellence-item {
        width: 100%;
    }
    .excellence-item .icon-box {
        margin-bottom: 20px;
    }
    .excellence-item .icon-box img {
        max-width: 40px;
    }
    .excellence-item-content h3 {
        font-size: 20px;
    }
    .student-experience-image {
        max-width: 100%;
        gap: 20px;
        padding-right: 10px;
        background-size: 60px auto;
    }
    .student-experience-image:after {
        width: 60px;
        height: 38px;
    }
    .student-experience-img-box-1 {
        width: calc(45% - 10px);
        padding-bottom: 20px;
    }
    .student-experience-img-box-2 {
        width: calc(55% - 10px);
    }
    .student-experience-img-1,
    .student-experience-img-3 {
        margin-bottom: 20px;
    }
    .student-experience-item .icon-box {
        width: 60px;
        height: 60px;
        margin-right: 10px;
    }
    .student-experience-item .icon-box img {
        max-width: 35px;
    }
    .student-experience-item-content {
        width: calc(100% - 70px);
    }
    .student-experience-item-content h3 {
        font-size: 20px;
    }
    .student-experience-footer {
        gap: 20px;
    }
    .student-experience-rating h3 {
        font-size: 20px;
    }
    .student-experience-rating p {
        font-size: 14px;
    }
    .team-content h3 {
        font-size: 20px;
    }
    .core-value-content-box,
    .core-value-body-img {
        width: 100%;
    }
    .core-value-item {
        margin-bottom: 20px;
    }
    .core-value-item .icon-box {
        margin-bottom: 10px;
    }
    .core-value-item .icon-box img {
        max-width: 40px;
    }
    .core-value-btn {
        margin-top: 20px;
    }
    .page-single-category-list h3,
    .cta-content h3 {
        font-size: 20px;
    }
    .service-single-slider .swiper-slide img {
        aspect-ratio: 1 / 0.8;
    }
    .service-single-slider .swiper-pagination-bullet {
        height: 8px;
        width: 8px;
    }
    .service-single-slider .swiper-pagination-bullet-active {
        width: 16px;
    }
    .service-single-slider {
        margin-bottom: 20px;
    }
    .service-entry {
        margin-bottom: 30px;
    }
    .service-entry h2 {
        font-size: 26px;
    }
    .service-entry h3 {
        font-size: 20px;
    }
    .service-entry ul li {
        margin-bottom: 10px;
    }
    .service-expert-box,
    .service-technique-box {
        margin-top: 30px;
    }
    .service-expert-item-list,
    .service-expert-item {
        gap: 20px;
    }
    .service-expert-content,
    .service-expert-image {
        width: 100%;
    }
    .service-expert-content {
        padding: 20px;
    }
    .service-expert-content .icon-box {
        margin-bottom: 25px;
    }
    .service-expert-content .icon-box img {
        max-width: 40px;
    }
    .service-expert-image figure {
        height: auto;
    }
    .service-expert-image img {
        aspect-ratio: 1 / 0.625;
    }
    .service-technique-image,
    .service-technique-list-box {
        margin-top: 20px;
    }
    .service-technique-image img {
        aspect-ratio: 1 / 0.61;
    }
    .service-technique-list-item {
        width: 100%;
    }
    .post-image img {
        aspect-ratio: 1 / 0.7;
    }
    .post-entry blockquote {
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }
    .post-entry blockquote p {
        font-size: 16px;
    }
    .post-entry h2 {
        font-size: 26px;
    }
    .tag-links {
        font-size: 20px;
    }
    .post-tags .tag-links a {
        font-size: 16px;
    }
    .course-category-list h3 {
        font-size: 20px;
    }
    .course-category-list ul li {
        font-size: 16px;
    }
    .course-featured-image {
        margin-bottom: 20px;
    }
    .course-featured-image img {
        aspect-ratio: 1 / 0.7;
    }
    .course-entry {
        margin-bottom: 30px;
    }
    .course-entry h2 {
        font-size: 26px;
    }
    .course-entry ul {
        gap: 10px;
    }
    .course-entry ul li {
        width: 100%;
    }
    .course-confidence-box,
    .course-navigate-box {
        margin-top: 30px;
    }
    .course-confidence-box ul {
        margin-top: 20px;
    }
    .course-navigate-info {
        gap: 20px;
    }
    .course-navigate-info-item {
        width: calc(50% - 10px);
    }
    .course-navigate-item-content h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .course-navigate-item-content h3 b {
        font-size: 20px;
    }
    .course-navigate-item-content p {
        font-size: 14px;
    }
    .course-navigate-video-image {
        width: 100%;
    }
    .team-single-image img {
        aspect-ratio: 1 / 1.05;
    }
    .team-contact-list {
        gap: 20px;
    }
    .team-contact-box {
        width: 100%;
    }
    .team-contact-content h3 {
        font-size: 20px;
    }
    .team-social-icon h3 {
        font-size: 20px;
    }
    .team-emergency-box ul li img {
        max-width: 20px;
    }
    .team-qualification-item .icon-box {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    .team-qualification-item .icon-box img {
        max-width: 22px;
    }
    .team-qualification-content {
        width: calc(100% - 50px);
    }
    .team-qualification-content h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .contact-us-content {
        padding: 20px;
    }
    .contact-info-item .icon-box {
        height: 40px;
        width: 40px;
        margin-right: 10px;
    }
    .contact-info-item .icon-box img {
        max-width: 22px;
    }
    .contact-info-content {
        width: calc(100% - 50px);
    }
    .contact-info-content h3 {
        font-size: 20px;
    }
    .contact-social-list h3 {
        font-size: 20px;
    }
    .contact-us-form {
        padding: 20px;
    }
    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }
    .error-page-image img {
        max-width: 100%;
    }
}
.bottom-marquee {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #3c779d;
    color: white;
    font-weight: bold;
    padding: 10px 0;
    z-index: 9999;
    overflow: hidden;
}
.bottom-marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
    padding-left: 100%;
}
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.paused {
    animation-play-state: paused !important;
}
.bottom-marquee span {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}
.bottom-marquee span a {
    color: #bdc644;
    font-weight: 600;
}
@media (max-width: 600px) {
    .bottom-marquee span {
        font-size: 14px;
    }
}
.bg-1 {
    padding: 33px 20px;
    border-radius: 20px; /*background: #f8f6f6;*/
    background: #1d3c5d;
}
.bg-1 h4 {
    color: #fff;
}
.campus-section {
    padding: 0px 15px 30px 15px;
}
.campus-section .campus-button {
    text-align: right;
}
.campus-button a {
    background-color: black;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.course-card {
    transition: 0.3s ease;
    cursor: pointer;
}
.course-card:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
}
@media (max-width: 480px) {
    .top-header.bg-section .d-flex {
        width: 100% !important;
        display: inline-block !important;
    }
    .top-header.bg-section .d-flex img {
        max-height: 100px !important;
        max-width: 100% !important;
    }
    .header-contact-box.d-flex.gap-2 {
        display: inline-flex !important;
        text-align: center;
        width: 100% !important;
        padding: 0px 50px;
        margin-top: 10px;
    }
    .stats-section {
        padding: 30px 10px;
    }
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        width: 100%;
    }
    .hero-section.hero-slider-layout .hero-slide {
        padding: 50px 0 00px; /*height: 100vh;*/
        height: 50vh;
    }
    .announcement-card .date {
        text-align: left;
        display: block;
    }
    .sports-card {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    .college-image {
        min-width: 100%;
    }
    .college-image img {
        width: 100%;
    }
    .footer-social.mbspace {
        margin-top: 0px;
        margin-bottom: 35px;
    }
    .foot-cprt {
        line-height: 30px;
    }
    .footer p {
        display: block;
    }
    .our-services.bg-grey .campus-button {
        text-align: center;
    }
    .college-content {
        padding: 50px 30px 30px;
    }
}
.appointment-info-title i {
    color: #fff;
    margin-right: 10px;
}
.placement-section h2 {
    color: #fff;
    margin-bottom: 10px;
}
.placement-section p {
    font-size: 17px;
    margin-bottom: 8px;
}
/* Desktop Style (default) */
.social-icons {
    position: fixed;
    top: 20%;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #000;
    padding: 10px 10px 10px 5px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
.social-icons a {
    background: #333;
    color: white;
    padding: 10px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    transition: 0.3s;
    font-size: 16px;
}
.social-icons a:hover {
    background: #b6b821;
}

/* Mobile Style */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 100px !important;
    }
    .social-icons {
        width: 100%;
        bottom: 35px;
        top: auto;
        flex-direction: row;
        justify-content: space-around;
        padding: 8px 0;
        border-radius: 0;
    }
    .social-icons a {
        padding: 15px;
        font-size: 18px;
    }
    .fb_icon {
        padding: 15px 18px !important;
    }
    #backToTop {
        bottom: 100px !important;
    }
}
#backToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    width: 45px;
    text-align: center;
    right: 5px;
    z-index: 999;
    font-size: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    outline: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}
#backToTop:hover {
    background-color: #0056b3;
}
.logo {
    width: 70%;
    display: flex;
}
.logo a {
    width: 15%;
    align-items: center;
}
.logo-content {
    width: 85%;
    padding-left: 15px;
}
.logo-content h1 {
    color: #1d3c5d;
    font-size: 30px;
}
.font-normal {
    font-weight: 400;
}
.logo-content p {
    color: #1d3c5d;
    margin-bottom: 0px;
    font-weight: 400;
}
.tec-banner {
    background: #3f1271;
    padding: 0px; /*border-radius: 10px;*/
    overflow: hidden;
}
.banner-inner {
    display: flex;
    align-items: center;
}
.banner-left {
    width: 35%;
}
.banner-left img {
    border-radius: 10px;
}
.banner-right {
    width: 100%; /*flex: 1; padding-left: 30px;*/
}
.tec-swiper {
    width: 100%;
    height: 100%;
}
.tec-banner .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a9243;
    color: #fff;
    border-radius: 50px;
    font-size: 24px;
    font-weight: bold;
    height: 100%;
}
.blink-highlight {
    animation: blinkEffect 1.5s infinite;
}
@keyframes blinkEffect {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}
.btn-pill {
    display: inline-block;
    padding: 12px 30px;
    background: #ffeb3b;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 0 0px #ffeb3b;
    animation: pulse 2s infinite;
    transition: all 0.3s ease-in-out;
}
.btn-pill:hover {
    transform: scale(1.06);
    box-shadow: 0 0 15px rgba(255, 235, 59, 0.6);
}
.about-us-footer td {
    padding: 10px;
    border: 1px solid #000;
}
.about-us-footer h3 {
    margin: 15px 0px 10px;
}
.txt_box h3 {
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.carousel-control-prev {
    width: 3%;
    height: 25%;
    left: -40px;
    top: 100px;
    background: #000;
}
.carousel-control-next {
    width: 3%;
    height: 25%;
    right: -40px;
    top: 100px;
    background: #000;
}
.page-gallery h6{
    padding: 30px 0px 20px 0px;
}
.pay-img img {
    aspect-ratio: 0;
}
.tabs {
    width: 100%;
    max-width: 350px;
    background: #fff;
    border-right: 2px solid #eee;
}
.tabs button {
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    background: #f4f4f4;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    line-height: 25px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.tabs button.active {
    background: #1d3c5d;
    color: #fff;
}
.content {
    flex: 1;
    padding: 0px 20px;
    background: #fff;
}
.content p {
    /*text-align: center;*/
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 10px;
}
.carousel::-webkit-scrollbar {
    display: none;
}
.carousel img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}
.tab-content h2 {
    text-align: center;
    margin-bottom: 25px;
}
.mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #002f5f;
    color: #fff;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.tab-link.active {
    font-weight: bold; /* Optional visual feedback */
}
.tabs.home_sec {
    display: flex;
    gap: 30px;
    max-width: 450px !important;
    margin-bottom: 15px;
    background: none;
    border: none;
    border-bottom: 1px solid #c6c4c4;
}
.tabs.home_sec .tab-link {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    padding: 5px 0;
    position: relative;
    margin-bottom: 2px;
}
.tabs.home_sec .tab-link.active {
    color: #1a4c8f;
}
.tabs.home_sec .tab-link.active::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1a4c8f;
}
.tab-content {
    font-size: 15px;
    color: #444;
}
.tab-content ul {
    list-style: none;
    padding-left: 0;
}
.tab-content li {
    margin: 8px 0;
    font-size: 15px;
    display: flex;
    text-align: left;
}
.tab-content .icon {
    color: #7ac143; /* green sparkle like in screenshot */
    margin-right: 8px;
    font-size: 14px;
}




@media (max-width: 768px) {
    .tabs {
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 1000;
        display: none;
        flex-direction: column;
        border: 1px solid #ccc;
    }
    .tabs.open {
        display: flex;
    }
    .container {
        flex-direction: column;
    }
    .tabs button {
        font-size: 16px;
        padding: 15px;
        border-bottom: 1px solid #ccc;
    }
    .carousel img {
        max-width: 90%;
        margin: auto;
        padding-bottom: 20px;
    }
    .tabs {
        max-width: 100%;
        display: flex;
        overflow-x: auto;
    }
    .tabs button {
        flex: 1;
        white-space: nowrap;
        border-right: 1px solid #ddd;
        border-bottom: none;
    }
    .carousel img {
        max-width: 80%;
        margin: auto;
    }
    .tabs {
        display: none;
        flex-direction: column;
        gap: 5px;
        background-color: #fff;
        padding: 10px;
        border: 1px solid #ddd;
        position: relative;
    }
    .tabs.active {
        width: 95%;
        display: block;
        position: sticky;
    }
    .tab-link {
        background: none;
        border: none;
        padding: 10px;
        text-align: left;
        font-size: 18px;
        width: 100%;
    }
    .tab-link.active {
        font-weight: bold;
    }
    .header-booking-btn.nbtn {
        margin-bottom: 20px;
    }
    .mobile-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        display: flex;
    }
    .mobile-header h2 {
        margin: 0;
        color: #fff;
        font-size: 22px;
    }
    .hamburger {
        font-size: 30px;
        cursor: pointer;
        position: relative;
        z-index: 2000;
    }
    .tab-content h2 {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .page-course-single {
        padding-top: 0px;
    }
}
@media (max-width: 480px) {
    .logo {
        width: 100%;
        display: block;
        text-align: center;
        padding-top: 10px;
    }
    .logo-content {
        width: 100%;
        padding-left: 0px;
    }
    .logo-content h1 {
        font-size: 22px;
        margin-top: 10px;
    }
    .logo-content p {
        font-size: 14px;
    }
    .header-contact-box.d-flex.gap-2 {
        padding: 0px 15px;
        justify-items: center;
        justify-content: center;
    }
}
.mou_card {
  padding: 20px;
  background: #fff;
  min-height: 280px;
  /*min-height: 300px;*/
  border-radius: 10px;
  margin-bottom: 25px;
  transition: transform 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.mou_card:hover {
  transform: translateY(-5px);
}
.mou_card p {
  margin: 6px 0;
  font-size: 14px;
  color: #555;
}
.mou_card .tag {
  display: inline-block;
  background: #3498db;
  color: #fff;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 12px;
  margin-bottom: 10px;
}
.mou_card .highlight {
  font-weight: bold;
  color: #27ae60;
}
@media (max-width: 480px) {
  .mou_card {
    padding: 15px;
    min-height: auto;
  }
  .mou_card h3 {
    font-size: 16px;
  }
  .mou_card p {
    font-size: 13px;
  }
}
.faculty-card {
  display: flex;
  max-width: 700px;
  background: #f9fcfd;
  border-radius: 10px;
  box-sizing: border-box;
  flex-direction: column;
  margin: 0 auto 20px auto;
  border: 1px solid #dcdcdc;
}
.faculty-title {
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 15px 5px 15px;
  border-bottom: 2px solid #1c4281;
}
.faculty-content {
  gap: 15px;
  display: flex;
  padding: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.faculty-content.sc {
    align-items: flex-start;
}
.faculty-photo img {
  width: 200px;
  height: auto;
  background: #fff;
  object-fit: cover;
  border-radius: 6px;
}
.faculty-info {
  flex: 1;
  min-width: 200px;
}
.faculty-info h3 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}
.degree,
.email {
  margin: 0;
  color: #000;
  font-size: 0.9rem;
}
.subtitle {
  color: #000;
  margin: 5px 0 0 0;
  font-size: 0.9rem;
}
.faculty-footer {
  text-align: right;
  padding: 0 15px 15px 15px;
}
.faculty-footer .btn-view {
  color: #fff;
  padding: 6px 14px;
  font-size: 0.9rem;
  border-radius: 2px;
  background: #d94958;
  text-decoration: none;
  transition: background 0.3s ease;
}
.faculty-footer .btn-view:hover {
  background: #009846;
  color: #fff !important;
}
.faculty-card.light-box {
  background: #00984678;
}
.faculty-card.light-box .faculty-title {
  /*color: #fff;*/
}
.faculty-card.light-box p {
  /*color: #fff;*/
}
.faculty-info p {
    margin-bottom: 10px;
}
@media (max-width: 600px) {
  .faculty-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .faculty-footer {
    text-align: center;
  }
}