/* General Style */
/* @font-face {
    font-family: 'Philosopher';
    src: url(../fonts/philosopher.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Lato';
    src: url(../fonts/lato.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
} */
/* Root Style */
:root {
    /* Main heading color */
    --heading-color: #112015;
    /* Primary color for the site, often used for buttons, links, etc. */
    --color-main: #EC1C24;
    /* Darker shade of the primary color, used for hover states or dark background elements */
    --color-darker: #1D4026;
    /* Lighter shade of the primary color, for lighter elements or backgrounds */
    --color-lighter: #99c7a3;
    /* Subtle background color, used for subtle backgrounds or areas with less emphasis */
    --color-subtle: #fff;
    /* Border color, used for borders and dividers */
    --color-border: #fdfdfd;
    /* Error color, usually red, used for form validation or error messages */
    --color-error: #E22D2D;
    /* Warning color, yellow, used for warning messages or indicators */
    --color-warning: #E2D52D;
    /* Information color, blue, used for info messages or alert indicators */
    --color-info: #2663cf;
    /* Success color, green, used for success messages or successful actions */
    --color-success: #20bd3c;
    /* Text color 1 for headers*/
    --text-color-1: #696969;
    /* Text color 2 for body text */
    --text-color-2: #c7c7c7;
    /* Font family for main headers */
    --font-1: "Nunito Sans, sans-serif";
    /* Font family for body text or secondary headers */
    --font-2: "Lato";
}

/* Header Styles */
h1 {
    font-size: 80px;
    /* Large font size for main headers */
    font-weight: 500;
    /* Medium font weight */
    line-height: 1.1em;
    /* Slightly compact line height */
    letter-spacing: -1.3px;
    /* Tight letter spacing for a cleaner look */
    font-family: "Nunito Sans", sans-serif;
    /* Applying the main header font */
}

span {
    font-family: "Nunito Sans", sans-serif;

}

h2,
h3,
h4,
h5,
h6 {
    /* Standard header styles with decreasing font sizes */
    font-weight: 500;
    line-height: 1.2em;
    font-family: "Nunito Sans", sans-serif;
    /* Using the same font for all header tags */
}

h2 {
    font-size: 56px;
    /* Slightly smaller than h1 */
    letter-spacing: -1.3px;
}

h3 {
    font-size: 40px;
    letter-spacing: -1.1px;
}

h4 {
    font-size: 32px;
    letter-spacing: -1px;
}

h5 {
    font-size: 24px;
    letter-spacing: -0.8px;
}

h6 {
    font-size: 16px;
    letter-spacing: -0.6px;
}

/* Link and Image Styling */
a {
    text-decoration: none;
    /* Remove underline from links */
    cursor: pointer;
    /* Change cursor to pointer on hover */
}

img {
    object-fit: cover;
    width: 100%;
    /* Ensures images cover their container without distortion */
}

/* Text Style */
.heading {
    color: var(--heading-color);
    /* Main heading color */
}

.sub-heading {
    color: var(--color-main);
    /* Sub-heading color */
}

.text-subtitle {
    font-family: "Nunito Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1, 2;
    letter-spacing: -0.8px;
}

.text-grey {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    color: var(--text-color-1);
}

.text-white {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    color: white;
}

.text-silver {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    color: var(--text-color-2);
}

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

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

.font-1,
.philosopher {
    font-family: "Nunito Sans", sans-serif;
    /* Font family for headers */
}

.font-2,
.lato {
    font-family: var(--font-2);
    /* Font family for body text */
}

/* Icon Circle Styles */
.icon-circle-37-main,
.icon-circle-32,
.icon-circle-32-main,
.icon-circle-17,
.icon-circle-17-main,
.icon-circle-15-main {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: transparent;
    font-size: 16px;
    cursor: pointer;
}

.icon-circle-37-main {
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-main);
    color: var(--color-main);
}

.icon-circle-32 {
    width: 32px;
    height: 32px;
    border: 1px solid white;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.icon-circle-32:hover {
    color: var(--color-darker);
    background-color: var(--color-subtle);
    border: 1px solid var(--color-subtle);
}

.icon-circle-32-main {
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-main);
    color: var(--color-main);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.icon-circle-32-main:hover {
    color: white;
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
}

.icon-circle-17 {
    width: 17px;
    height: 17px;
    border: 1px solid white;
    font-size: 15px;
    color: white;
}

.icon-circle-17-main {
    width: 17px;
    height: 17px;
    border: 1px solid var(--color-main);
    font-size: 15px;
}

.icon-circle-15-main {
    width: 15px;
    height: 15px;
    border: 1px solid var(--color-main);
    font-size: 13px;
}

/* Testimonial Circle Styles */
.testimonial-circle {
    width: 45px;
    height: 45px;
    background-color: grey;
    border-radius: 50%;
    margin-left: -7px;
}

.testimonial-circle-first {
    width: 45px;
    height: 45px;
    background-color: grey;
    border-radius: 50%;
}

/* Color Utility Classes */
.c-white {
    color: white;
}

.c-silver {
    color: var(--text-color-2);
}

.c-main {
    color: var(--color-main);
}

.c-black {
    color: black;
}

.c-text {
    color: rgb(255, 254, 250, 0.6);
}

.c-semi-black {
    color: var(--heading-color);
}

.c-semi-transparent {
    color: #00000080;
}

.c-grey {
    color: var(--text-color-1);
}

/* Background Utility Classes */
.bg-subtle {
    background-color: var(--color-subtle);
}

.bg-semi-white {
    background-color: var(--color-border) !important;
}

.bg-darker {
    background-color: var(--color-darker) !important;
}

.bg-grey {
    background-color: var(--text-color-1);
}

.bg-main {
    background-color: var(--color-main);
}

/* Font Size Utility Classes */
.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fs-26 {
    font-size: 26px;
}

.fs-48 {
    font-size: 48px;
}

/* Width Utility Classes */
.w-10 {
    width: 10%;
}

.w-20 {
    width: 20%;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.w-80 {
    width: 80%;
}

.w-90 {
    width: 90%;
}

.w-100 {
    width: 100%;
}

/* Button Styles */
.btn-light,
.btn-dark {
    background-color: var(--color-main);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    max-width: fit-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: "Nunito Sans", Sans-serif;
    font-weight: 700;

}

.btn-light:hover {
    background-color: white;
    color: var(--color-main);
    border: 1px solid var(--color-main);
}

.btn-dark:hover {
    background-color: var(--color-darker);
    color: white;
}

/* Navbar Styles */
button.nav-link {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

button.nav-link:hover {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

button.nav-link:focus {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}


/* Default Width */
.width-base {
    width: 1220px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}


/* Navbar Style */
.navbar-toggler {
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    box-shadow: none;
    outline: none;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 0;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
    border: none;
}

.navbar-toggler-icon {
    display: block;
    height: 1px;
    width: 30px;
    background-color: white;
    border-radius: 2px;
    transition: none;
}

.navbar-toggler-icon:nth-child(3) {
    width: 22px;
    height: 2px;
    margin-left: 8px;
}

.offcanvas.show .nav-link {
    color: var(--text-color-1);
    font-size: 12px;
}

.offcanvas.show .nav-link:hover {
    color: var(--color-main);
}

.nav-link {
    color: var(--text-color-2);
    font-size: 15px;
    font-family: "Nunito Sans", sans-serif;

}

.nav-link:hover {
    color: white;
}

.dropdown {
    border-radius: 10px;
}

.dropdown-toggle {
    box-shadow: none !important;
}

.dropdown-menu {
    padding: 10px;
    color: var(--text-color-2);
    min-width: 200px;
}

.dropdown-menu a {
    padding-top: 10px;
    padding-bottom: 10px;
}

.dropdown-menu:hover a:hover {
    color: #fff;
    background-color: var(--color-main);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}


/* Hero Style */
.content-m {
    margin-top: 6rem;
}

.section-m {
    margin-top: 9rem;
    width: 1220px;
}

/* .hero-title {
    width: 73%;
} */

.banner-title {
    width: 100%;
    font-size: 80px;
    font-weight: 500;
    line-height: 1, 1px;
    letter-spacing: -1.3px;
}

.hero-subtitle {
    /* width: 60%; */
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
}

.hero-subtext {
    width: 70%;
}

.bg-hero {
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
}

.header {
    /* background-color: rgba(17, 32, 21, 0.6); */
    /* padding-bottom: 100px; */
    position: absolute;
    top: 0;
    z-index: 999;
    width: 100%;
}

.border-hero {
    /* border-bottom: 1px solid #c4c4c4; */
    /* background-color: var(--color-main); */
    /* padding: 0 60px; */
}

.top-navbar {
    background-color: var(--color-main);
}

.form-container {
    background: rgba(255, 255, 255, 0.0);
    border-radius: 10px;
    padding: 20px;
    max-width: 1000px;
    width: 100%;
    border: 1px solid white;
}

.form-control,
.form-control:focus,
.form-control::placeholder {
    background: rgba(255, 255, 255, 0.0);
    color: white;
    box-shadow: none;
    outline: none;
    border-color: white;
    font-family: "Nunito Sans", sans-serif;
    padding: 10px;
}

.form-control:focus {
    background-color: white;
    color: black;
}

.date {
    color-scheme: dark;
}


/* About Style */
.about-bg {
    background-image: linear-gradient(rgba(17, 32, 21, 0.6), rgba(17, 32, 21, 0.6)), url('../images/about-overlay.jpg');
    background-size: cover;
    background-position: center;
    height: 512px;
}

.img-about {
    border-radius: 10px;
    width: 100%;
}

.img-about-last {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.title-about {
    font-family: "Nunito Sans", sans-serif;
    font-size: 56px;
    font-weight: 500;
    line-height: normal;
    /* letter-spacing: -1.3px; */
    color: #151515;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 20px;
}

.title-about span {
    color: var(--color-main);
}

/* CEO Quote Style */
.bg-ceo {
    background-image: linear-gradient(rgba(17, 32, 21, 0.6), rgba(17, 32, 21, 0.6)), url('../images/images-ZV8482W.jpg');
    width: 100%;
    background-size: cover;
    background-position: center;
}

.ceo-quote {
    margin: auto;
    width: 60%;
    padding-left: 0;
    padding-right: 0;
}

.signature {
    width: 160px;
    height: 34px;
}

.card {
    border: 1px solid #c4c4c4;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    border: 1px solid var(--color-main);
}

.card-body {
    background-color: var(--color-subtle);
    border-radius: 10px;
    padding: 30px;
}


/* Choose Us Style */
.bg-choose-us {
    background-image: linear-gradient(rgba(17, 32, 21, 0.6), rgba(17, 32, 21, 0.6)), url('../images/images-PZE6K9S.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.bg-darker {
    background-color: var(--color-darker);
}

.choose-position {
    top: -200px;
    left: 0;
    right: 0;
    margin: auto;
}


/* Services Style */
.bg-service-1 {
    background-image: url('../images/service-1.jpg');
    min-height: 455px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.bg-service-2 {
    background-image: url('../images/service-2.jpg');
    min-height: 455px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.bg-service-3 {
    background-image: url('../images/service-3.jpg');
    min-height: 455px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.bg-service-4 {
    background-image: url('../images/service-4.jpg');
    min-height: 455px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.custom-card {
    max-width: 35%;
    width: max-content;
    background: var(--color-border);
    border: 1px solid #c4c4c4;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    left: 5%;
    bottom: 10%;
}


/* Showcase Style */
.custom-card-1 {
    background: var(--color-border);
    border: 1px solid #c4c4c4;
    border-radius: 10px;
    overflow: hidden;
}

.subtext-showcase {
    width: 550px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    color: var(--text-color-1);
    text-align: center;
}

.img-showcase {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.last-img-showcase {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* FAQS Style */
.img-faqs {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accordion,
.accordion-button,
.accordion-item,
.accordion-header,
.accordion-body {
    border: none !important;
    box-shadow: none !important;
}

.accordion-button {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.6px;
    color: var(--text-color-1);
    background-color: var(--color-border);
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--heading-color);
    background-color: transparent !important;
}

.accordion-button:hover {
    background-color: #e9ecef;
}

.accordion-button:active {
    background-color: transparent !important;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-item {
    border: 1px solid #c4c4c4 !important;
    border-radius: 10px;
}

.accordion-header,
.accordion-body,
.accordion-button {
    border-radius: 10px !important;
}


/* Blog Post Style */
.img-blog-post {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    transform-origin: center;
}

.img-wrapper {
    overflow: hidden;
}

.img-blog-post-2 {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    transform-origin: center;
}

.img-blog-post-2:hover {
    transform: scale(1.1);
}

.img-blog-post-3 {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.custom-card-2 {
    background: var(--color-border);
    border: 1px solid #c4c4c4;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
}

.custom-card-2:hover .img-blog-post {
    transform: scale(1.1) rotate(3deg);
}

.learn-link {
    transition: color 0.3s ease;
}

.learn-link:hover {
    color: var(--text-color-1);
}

.blog-link {
    color: var(--color-main);
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;

}

.blog-link:hover {
    color: var(--heading-color);
}


/* Video Style */
.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    /* Aspect ratio 16:9 */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Team Style */
.img-team {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.img-team {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.team-member .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.team-member .team-name {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 11;
}

.team-member:hover .overlay {
    opacity: 1;
}

.team-member:hover .team-name {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


/* Contact Style */
.form-container-2 {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    font-family: "Nunito Sans", sans-serif;

}

.form {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid var(--text-color-2);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
}

.form-row.full-width {
    flex-direction: column;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--text-color-1);
}

.form-input,
.form-textarea {
    border: none;
    border-bottom: 1px solid var(--text-color-2);
    padding: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: var(--color-border);
    outline: none;
}

.form-textarea {
    resize: none;
}

.form-button {
    width: 100%;
    align-self: center;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: var(--color-main);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-button:hover {
    background-color: var(--color-darker);
}

.form-select {
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid var(--text-color-2);
    padding: 8px;
    font-size: 14px;
    background-color: transparent;
    transition: border-color 0.3s;
    appearance: none;
}

.form-select:focus {
    border-bottom-color: var(--color-border);
    outline: none;
    box-shadow: none;
}

.form-select::-ms-expand {
    display: none;
}

.form-select-wrapper {
    position: relative;
}

.form-select-wrapper::after {
    font-size: 12px;
    color: var(--text-color-2);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.popup-message {
    display: none;
    background-color: var(--color-border);
    color: var(--heading-color);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.border-radius-10 {
    border-radius: 10px;
}

.contact-image {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.contact-card {
    width: 65%;
    width: max-content;
    background: var(--color-border);
    border: 1px solid #c4c4c4;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    right: 10%;
    bottom: 8%;
}

.maps {
    width: 100%;
    height: 420px;
    transition: filter 0.5s;
    display: block;
}


/* Packages Style */
.package-card {
    border: 1px solid var(--text-color-2);
    border-radius: 10px;
    padding: 32px;
    position: relative;
}

.package-card:hover {
    border: 1px solid var(--text-color-1);
}


/* 404 Style */
.bg-404 {
    background-image: linear-gradient(rgba(17, 32, 21, 0.6), rgba(17, 32, 21, 0.6)), url('../images/about-overlay.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;


}


/* Transition Style */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-in, transform 0.8s ease-in;
}

.fade-in.visible {
    opacity: 1;
}


/* Footer Style */
.email-input {
    flex: 1;
    background-color: transparent;
    color: white;
    border: none;
    outline: none;
}

.email-input::placeholder {
    color: white;
    opacity: 0.8;
}

.email-input:focus {
    outline: none;
}

.newsletter-container {
    border-bottom: #c9c9c9 1px solid;
    width: 60%;
}

.newsletter-container:hover {
    border-bottom: white 1px solid;
}

.btn-newsletter {
    background: transparent;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
}

.btn-newsletter i {
    color: #c9c9c9;
}

.btn-newsletter:hover i {
    color: white;
}

.footer-link:hover {
    color: white;
}

.footer-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-top: 24px;
}

.footer-links li {
    margin: 10px 0;
}

.footer-logo {
    width: 224px;
    height: 56px;
    object-fit: cover;
}

.subtext-footer {
    width: 60%;
}

.footer-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}


/* Other Style */
.large-padding {
    /* padding-bottom: 200px; */
}

.partner-margin {
    margin-top: -200px;
}


/* Media Query */
@media screen and (max-width: 1220px) {
    .section-m {
        margin-top: 8rem;
        width: 100%;
    }

    .width-base {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 992px) {
    h1 {
        font-size: 60px;
        line-height: 1.1em;
        font-family: "Nunito Sans", sans-serif;

    }

    h2 {
        font-size: 40px;
        line-height: 1.2em;
        font-family: "Nunito Sans", sans-serif;

    }

    h3 {
        font-size: 28px;
        line-height: 1.2em;
        font-family: "Nunito Sans", sans-serif;

    }

    h4 {
        font-size: 24px;
        line-height: 1.2em;
        font-family: "Nunito Sans", sans-serif;

    }

    h5 {
        font-size: 22px;
        line-height: 1, 1em;
        font-family: "Nunito Sans", sans-serif;

    }

    h6 {
        font-size: 16px;
        line-height: 1, 2em;
        font-family: "Nunito Sans", sans-serif;

    }

    /* .border-hero {
        display: none;
    } */

    .hero-title {
        margin-top: 24px;
        width: 95%;
        line-height: normal;
    }

    .hero-subtitle {
        width: 80%;
    }

    .section-m {
        margin-top: 3rem;
        width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }

    .width-base {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 32px;
        padding-right: 32px;
    }

    .img-about {
        border-radius: 10px;
        width: 100%;
    }

    .img-about-last {
        border-radius: 10px;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .ceo-quote {
        width: 90%;
        padding-left: 0;
        padding-right: 0;
    }

    .signature {
        width: 148px;
        height: 32px;
    }

    .custom-card {
        max-width: 60%;
        position: absolute;
        left: 5%;
        bottom: 10%;
    }

    .img-faqs {
        width: 100%;
        height: 100%;
        max-height: 512px;
    }

    .newsletter-container {
        width: 100%;
    }

    .contact-image {
        max-height: 512px;
        border-radius: 10px;
    }

    .dropdown-menu {
        border: none;
    }

    .dropdown-item {
        background-color: white !important;
        font-size: 12px;
        color: var(--text-color-1) !important;
    }

    .dropdown-item:hover {
        color: var(--color-main) !important;
    }
}

@media screen and (max-width: 450px) {
    h1 {
        font-size: 40px;
        font-family: "Nunito Sans", sans-serif;

    }

    h2 {
        font-size: 32px;
        font-family: "Nunito Sans", sans-serif;

    }

    h3 {
        font-size: 24px;
        font-family: "Nunito Sans", sans-serif;

    }

    h4 {
        font-size: 22px;
        font-family: "Nunito Sans", sans-serif;

    }

    h5 {
        font-size: 18px;
        font-family: "Nunito Sans", sans-serif;

    }

    h6 {
        font-size: 16px;
        font-weight: 500;
        font-family: "Nunito Sans", sans-serif;

    }

    .hero-title {
        margin-top: 24px;
        width: 100%;
        line-height: normal;
    }

    .banner-title {
        margin-top: 24px;
        line-height: normal;
        font-size: 24px;
    }

    .hero-subtitle {
        width: 100%;
    }

    .hero-subtext {
        width: 100%;
    }

    .section-m {
        margin-top: 3rem;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .width-base {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .img-about {
        border-radius: 10px;
        width: 100%;
        height: 100%;
    }

    .img-about-last {
        border-radius: 10px;
        width: 100%;
        height: 256px;
    }

    .title-about {
        font-size: 32px;
    }

    .text-subtitle {
        font-size: 18px;
    }

    .ceo-quote {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .signature {
        width: 70px;
        height: 15px;
    }

    .bg-service-1 {
        background-image: none;
        min-height: 10px;
    }

    .bg-service-2 {
        background-image: none;
        min-height: 10px;
    }

    .bg-service-3 {
        background-image: none;
        min-height: 10px;
    }

    .bg-service-4 {
        background-image: none;
        min-height: 10px;
    }

    .custom-card {
        max-width: 100%;
        position: static;
    }

    .subtext-showcase {
        width: 100%;
    }

    .last-img-showcase {
        border-radius: 10px;
        width: 100%;
        height: 100%;
        max-height: 256px;
        object-fit: cover;
    }

    .img-faqs {
        width: 100%;
        height: 100%;
        max-height: 256px;
    }

    .subtext-footer {
        width: 100%;
    }

    .newsletter-container {
        width: 100%;
    }

    .about-bg {
        background-image: linear-gradient(rgba(17, 32, 21, 0.6), rgba(17, 32, 21, 0.6)), url('img/about-overlay.jpg');
        background-size: cover;
        background-position: center;
        height: 400px;
    }

    .contact-image {
        border-radius: 10px;
    }

    .contact-card {
        width: 90%;
        left: 0;
        right: 0;
        margin: auto;
    }

    .dropdown-menu {
        border: none;
    }

    .dropdown-item {
        background-color: white !important;
        font-size: 12px;
        color: var(--text-color-1) !important;
    }

    .dropdown-item:hover {
        color: var(--color-main) !important;
    }
}


.hero-section h1 {
    font-family: "Nunito Sans", Sans-serif;
    font-size: 53px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 69px;
    color: #FFFFFF;
    line-height: normal;
}

.hero-section .btn-light {
    background-color: var(--color-main);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    max-width: fit-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
}

.top-navbar span a {
    color: #fff;
    font-size: 18px;
}


.main-logo img {
    width: 300px;
}

@media screen and (max-width: 576px) {
    .main-logo img {
        width: 200px;
    }

    .hero-section h1 {
        font-size: 30px;
    }

}


.hero-section .col-lg-7 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

@media screen and (min-width: 992px) {
    .hero-section .swiper-container .swiper-slide .image {
        /* transform: scale(1); */
        padding-top: 100px; 
    }
}


/* why-choose-section */
.why-choose-section {
    position: relative;
}

.why-choose-section .image img {
    width: 80%;
}

@media screen and (max-width: 576px) {
    .why-choose-section .image img {
        width: 100%;
    }
}

/* .why-choose-section .image:after{
    content: "";
    position: absolute;
    top: 4;
    left: 0;
    background-image: url(/images/about-shape-1.png);
    background-repeat: no-repeat;
    background-size: 10%;
    width: 100%;
    height: 100%;
}
.why-choose-section .image::before{
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    z-index: 1;
    background-image: url(/images/about-shape-2.png);
    background-repeat: no-repeat;
    background-size: 10%;
    width: 100%;
    height: 100%;
} */
@media screen and (max-width: 576px) {
    .why-choose-section .image::before {
        background-size: 100%;
    }
}

/* why-choose-section */




/* youtube-section */
.youtube-section .title-about {
    text-transform: capitalize;
    margin-bottom: 0;
}

.youtube-section .youtube-content iframe {
    width: 100%;
    height: 240px;
    border-radius: 24px;
}

.youtube-section .swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: var(--color-main) !important;
}

/* youtube-section */



/* courses-section */
.courses-section {
    padding: 60px 0;
}

.courses-section .title-about {
    text-transform: uppercase;

}

.courses-section .course {
    background-color: #fff;
    border-radius: 20px;
    padding: 14px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    text-align: center;
    margin: 14px 0;
}

.courses-section .course h2 {
    font-size: 24px;
    padding: 20px 0;
    border-bottom: 1px solid #bdbdbd;
}

.courses-section .course .btn a {
    color: var(--color-main);
    font-size: 20px;
    font-weight: 700;
}

.courses-section .course .btn a:hover {
    transform: scale(1.1);
}

/* courses-section */


/* features-section */
.features {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.features .title-about {
    text-align: center;
    margin-bottom: 0;
}

.features p {
    text-align: center;
}

.features .col-lg-3 {
    background-image: url(/images/about-shape-1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
}

.features .card {
    border-radius: 50%;
    text-align: center;
    padding: 35px 0px 35px 0px;
    background-image: url(/images/feaature_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
    background-color: transparent;
    margin: 14px 0;
}

.features .card h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-top: 14px;
}

.features .card .icon img {
    width: 70px;
}

/* features-section */


/* students-section */
.students-section {
    padding: 60px 0 30px 0;
}

@media screen and (max-width: 576px) {
    .students-section {
        padding: 30px 0;
    }
}

.students-section .title-about {
    text-transform: capitalize;
    margin-bottom: 0;
}

.students-section .swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: var(--color-main) !important;
}

/* students-section */


/* testimonial-section */
.testimonial-section {
    padding: 60px 0 30px 0;
    margin-bottom: 60px;
}

@media screen and (max-width: 576px) {
    .testimonial-section {
        padding: 20px 0 20px 0;
    }
}

.testimonial-section .title-about {
    text-transform: capitalize;
    margin-bottom: 0;
}

.testimonial-section .swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: var(--color-main) !important;
}

.testimonial-section .testimonial-content {
    background-color: var(--color-main);
    border-radius: 14px;
    padding: 20px;
    color: #fff;
    text-align: center;
}

.testimonial-section .testimonial-content .profile {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-section .testimonial-content .profile .star {
    display: flex;
    align-items: center;
}

.testimonial-section .testimonial-content .profile .star img {
    width: 18px;
}

.testimonial-section .testimonial-content .profile .image {
    width: 40px;
}

.testimonial-section .testimonial-content .profile .name {
    padding: 0 10px;
}

.testimonial-section .testimonial-content .profile h3 {
    font-size: 20px;
    text-align: left;
    margin-bottom: 0;
}

/* testimonial-section */




/* count-section */
.count-section {
    padding: 60px 0;
    background-image: url(/images/count-bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.count-section::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    z-index: 1;
    background-color: #000000;
    opacity: 0.63;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    background-repeat: no-repeat;
    background-size: 10%;
    width: 100%;
    height: 100%;
}

.count-section .width-base {
    z-index: 2;
    position: sticky;
}

.count-section .count {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-right: 1px solid #fff;
}

@media screen and (max-width: 992px) {
    .count-section .count {
        border: none;
    }
}

.count-section .count-parent {
    background-color: var(--color-main);
    padding: 20px 0;
}

.count-section .count-parent .count-1 {
    border: none;
}

.count-section .count .count-num {
    transition: all 0.5s ease-in-out;
}

.count-section .count span {
    transition: all 0.5s ease-in-out;
    font-size: 56px;
    margin: 0 0 10px 6px;
}

/* count-section */





/* blog-section */
.blog-section {
    padding: 60px 0 30px 0;
    margin-bottom: 60px;
}

@media screen and (max-width: 576px) {
    .blog-section {
        padding: 20px 0 20px 0;
    }
}

.blog-section .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 576px) {
    .blog-section .title {
        flex-direction: column;
        align-items: start;
        margin-bottom: 14px;
    }

    .blog-section .title-about {
        margin-bottom: 0;
    }
}

.blog-section .title .btn-dark {
    margin: 0;
}

.blog-section .title .btn-dark:hover {
    background-color: #fff;
    color: var(--color-main);
    border: 1px solid var(--color-main);
}


.blog-section .blog-content .middle-content {
    display: flex;
    align-items: center;
    padding: 4px;
    gap: 20px;
    margin-bottom: 10px;
}

.blog-section .blog-content .middle-content h5 {
    font-size: 12px;
    color: #bdbdbd;
    margin: 0;
}

.blog-section .blog-content .middle-content .date {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-section .blog-content .middle-content .comment {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-section .blog-content .middle-content .icon {
    width: 16px;
}

.blog-section .blog-content .content {
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 0 0 10px 10px;
}

.blog-section .blog-content .content .text-subtitle {
    margin: 8px 0;
    color: var(--color-main);
    font-size: 20px;
}

.blog-section .blog-content .content .read_more_btn {
    margin: 10px 0;
    color: var(--color-main);
    padding: 8px 0;
}

.blog-section .blog-content .content .read_more_btn:hover {
    text-decoration: underline;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.blog-section .swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: var(--color-main) !important;
}



.blog-section .image img {
    width: 100%;
    max-height: 350px;
}

/* blog-section */

/* footer-section */


.footer-section {
    padding: 60px 0 0 0;
    background-image: url(/images/footer_bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.footer-section::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    z-index: 1;
    background-color: var(--color-main);
    opacity: 0.89;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    background-repeat: no-repeat;
    background-size: 10%;
    width: 100%;
    height: 100%;
}

.footer-section .width-base {
    z-index: 2;
    position: sticky;
}

.footer-section .width-base {
    padding-bottom: 0;
}

.footer-section .width-base .content {
    padding: 0 10px;
}

.footer-section .width-base .content .logo {
    margin-bottom: 14px;
}

.footer-section .width-base .content p {
    color: #fff;
    font-size: 14px;
}

.footer-section .width-base .content span {
    color: #fff;
    font-size: 14px;
}

.footer-section .width-base .content i img {
    width: 16px;
}

.footer-section .width-base .content .footer-links li a {
    color: #fff;
}

.footer-section .width-base .content.getin_touch p {
    margin: 0 0 0 6px;
}

.footer-section .footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: #fff;
    border-top: 1px solid #fff;
    margin-top: 30px;
}

@media screen and (max-width: 450px) {
    .footer-section .text-subtitle {
        font-size: 22px;
    }
}




/* registration-section */
.registration-section {
    padding: 60px 0 30px 0;
    margin-bottom: 60px;
    background-color: #f5f5f5;
}

@media screen and (max-width: 576px) {
    .registration-section {
        padding: 20px 0 20px 0;
    }
}

.registration-section .title-about {
    text-transform: capitalize;
    font-size: 40px;
}

.registration-section form {
    /* width: 700px; */
    padding: 10px;
}

@media screen and (max-width: 992px) {
    .registration-section form {
        width: 100%;
    }
}

.registration-section .form-row {
    /* display: flex; */
    /* gap: 20px; */
    margin-bottom: 15px;
}

.registration-section .form-row input,
.form-row select,
textarea {
    width: 100%;
    padding: 12px;
    background-color: #ffffff;
    border-width: 0px 0px 1px 0px;
    border-radius: 5px 5px 5px 5px;
    font-size: 14px;
}

@media screen and (min-width: 992px) {

    .registration-section .form-row input,
    .form-row select,
    textarea {
        width: 47%;
    }
}

.registration-section textarea {
    width: 100%;
    height: 100px;
    resize: none;
}

.registration-section .submit-btn {
    width: 100%;
    background-color: red;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.registration-section .submit-btn:hover {
    background-color: darkred;
}





/* google-review-section */
.google-review-section {
    padding: 30px 0 60px 0;
}

@media screen and (max-width: 576px) {
    .google-review-section {
        padding: 20px 0 20px 0;
    }
}

.google-review-section .title-about {
    text-transform: capitalize;
}

.google-review-section .card {
    display: flex;
    flex-direction: row;
    padding: 24px;
    border: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media screen and (max-width: 992px) {
    .google-review-section .card {
        flex-direction: column;
        gap: 14px;
    }
}


.google-review-section .card .profile {
    width: 100px;
}

.google-review-section .card .content {
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media screen and (max-width: 992px) {
    .google-review-section .card .content {
        flex-direction: column;
        gap: 14px;
        align-items: start;
    }
}

.google-review-section .card .content a {
    font-size: 20px;
    color: #151515;
    font-weight: 600;
}

.google-review-section .card .content .reviews {
    display: flex;
    padding: 10px;
    align-items: center;
}

.google-review-section .card .content .reviews .star {
    display: flex;
    padding: 10px;
}

.google-review-section .card .content .reviews h5 {
    font-size: 34px;
    font-weight: 700;
    color: #FBB828;
    margin: 0;
}

.google-review-section .card .content .reviews .star img {
    width: 16px;
}

.google-review-section .card .content .btn {
    padding: 10px 14px;
    background-color: #1f67e7;
    border-radius: 40px;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: space-between;
}

.google-review-section .card .content .btn img {
    width: 26px;
    margin-left: 8px;
}

.google-review-section .swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: var(--color-main) !important;
}

.google-review-section .review_card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    align-items: start;
    margin: 10px;
}

.google-review-section .review_card .top {
    display: flex;
    align-items: center;
}

.google-review-section .review_card .top .profile {
    width: 50px;
}

.google-review-section .review_card .top .details {
    margin-left: 10px;
}

.google-review-section .review_card .top .details .name {
    font-size: 22px;
    font-weight: 800;
}

.google-review-section .review_card .top .details .time {
    font-size: 14px;
}

.google-review-section .review_card .content {
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.google-review-section .review_card .bottom {
    padding: 0 10px;
    width: 100%;
}

.google-review-section .review_card .bottom .reviews {
    padding: 10px 0;
}

.google-review-section .review_card .bottom .reviews .star {
    display: flex;
}

.google-review-section .review_card .bottom .reviews .star img {
    width: 20px;
}

/* google-review-section */



/* header tobbar section */

.top-navbar .left-section {
    gap: 14px;
}

@media screen and (max-width: 992px) {
    .top-navbar .left-section {
        flex-direction: column;
        padding: 10px 0;
        gap: 5px;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 992px) {
    .top-navbar .right-section {
        justify-content: center;
        padding-bottom: 10px;
    }
}

/* header tobbar section end*/

/* breadcrumb section start*/
.breadcrumb {
    padding: 200px 0 100px 0;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 992px) {
    .breadcrumb {
        padding: 300px 0 100px 0;
    }
}
.breadcrumb::after{
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    z-index: -1;
    background-color: rgba(17, 32, 21, 0.6);
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    background-repeat: no-repeat;
    background-size: 10%;
    width: 100%;
    height: 100%;
  }

.breadcrumb .title {
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
}

.breadcrumb .button-area {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    padding: 4px 8px;
    border-radius: 24px;
    border: 1px solid #fff;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb .button-area a {
    font-size: 16px;
    color: #fff;
    margin: 0 10px;
}

.breadcrumb .button-area a:hover {
    text-decoration: underline;
}

.breadcrumb .button-area h3 {
    font-size: 16px;
    color: #fff;
    margin: 0 10px;
    line-height: normal;
}

/* breadcrumb section end*/





/* about us page why choose start*/

.about-why-choose-section {
    padding: 40px 0;
    background-color: #f5f5f5;
    position: relative;
}

.about-why-choose-section .width-base::before {
    content: "";
    position: absolute;
    right: 50%;
    bottom: -50px;
    z-index: 1;
    background-color: var(--color-main);
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    background-repeat: no-repeat;
    width: 2px;
    height: 100px;
}

/* about us page why choose end*/


/* about-vision-section start*/
.about-vision-section {
    padding: 60px 0;
}

.about-vision-section .vision {
    padding: 30px;
    border: 1px solid #bdbdbd;
    border-radius: 14px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 576px) {
    .about-vision-section .vision {
        padding: 14px;
        margin: 10px 0;
    }
}

.about-vision-section .vision:hover {
    border: none;
    background-color: var(--color-main);
    color: #fff;
    transition: cubic-bezier(1s);
}


.about-vision-section .vision .image {
    width: 60px;
    margin: 20px 0;
}

.about-vision-section .vision h4 {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: #151515;
}

.about-vision-section .vision p {
    text-align: center;
    color: var(--text-color-1);
}

.about-vision-section .vision:hover .image i img {
    color: white;
}

.about-vision-section .vision:hover h4 {
    color: white;
}

.about-vision-section .vision:hover p {
    color: white;
}

/* about-vision-section end*/


/* advantages-section start*/
.about-advantages-section {
    padding: 40px 0;
    background-color: #f5f5f5;
    position: relative;
}

.about-advantages-section .advantage-card {
    padding: 70px 30px 30px 30px;
    border-radius: 14px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    height: 260px;

}

@media screen and (max-width: 992px) {
    .about-advantages-section .advantage-card {
        padding: 80px 20px 20px 20px;
        margin: 80px 0;
    }

    .about-advantages-section .advantage-card {
        height: 75%;
    }
}

@media screen and (max-width: 767px) {
    .about-advantages-section .advantage-card {
        padding: 80px 20px 20px 20px;
        margin: 40px 0;
    }

}

@media screen and (max-width: 576px) {
    .about-advantages-section .advantage-card {
        padding: 60px 20px 20px 20px;
        margin: 50px 0;
    }
}

.about-advantages-section .advantage-card .image {
    margin: 20px 0;
    position: absolute;
    top: -30%;
    background-color: var(--color-main);
    padding: 20px;
    border-radius: 50%;
}

.about-advantages-section .advantage-card h4 {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-main);
}

.about-advantages-section .advantage-card p {
    text-align: center;
    color: var(--text-color-1);
}

/* advantages-section end*/







/* courses page start*/

.courses-section_1 {
    padding: 20px 0;
}

.courses-section_1 .title-about {
    text-transform: uppercase;
}

.courses-section_1 .heaading-tag {
    padding: 14px 0;
}

.courses-section_1 .heaading-tag h2 {
    font-size: 30px;
}

.courses-section_1 .heaading-tag p {
    margin-bottom: 14px;
}

.courses-section_1 .course {
    background-color: #fff;
    border-radius: 20px;
    padding: 14px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    text-align: center;
    margin: 14px 0;
}

.courses-section_1 .course h2 {
    font-size: 24px;
    padding: 20px 0;
    border-bottom: 1px solid #bdbdbd;
}

.courses-section_1 .course .btn a {
    color: var(--color-main);
    font-size: 20px;
    font-weight: 700;
}

.courses-section_1 .course .btn a:hover {
    transform: scale(1.1);
}

/* courses-section */





/* advantages-section start*/
.services-section {
    padding: 40px 0;
    background-color: #f5f5f5;
}

.services-section .advantage-card {
    padding: 20px;
    border-radius: 14px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.services-section .advantage-card .image {
    margin: 20px 0;
    /* position: absolute;
    top: -30%; */
    background-color: var(--color-main);
    padding: 20px;
    border-radius: 50%;
}

.services-section .advantage-card .image img {
    width: 40px;
}

.services-section .advantage-card h4 {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-main);
}

.services-section .advantage-card p {
    text-align: center;
    color: var(--text-color-1);
}

/* advantages-section end*/



.faq-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--color-main);
}

.faq-section .accordion .accordion-header {
    background-color: var(--color-main);
    border: none !important;
    cursor: pointer;

}

.faq-section .accordion-item {
    border: none !important;
}

.faq-section .accordion .accordion-header h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.faq-section .accordion-button:not(.collapsed)::after {
    color: #fff;
}

.faq-section .accordion-button {
    background-color: var(--color-main);

}

.faq-section .accordion-button::after {
    background-image: url(/images/accordion_arrow.svg) !important;
}

.faq-section .accordion-button:hover {
    background-color: var(--color-main) !important;

}

.faq-section .accordion-collapse {
    padding: 10px;
}





.courses_detail_section{
    padding: 40px 0;
}
@media screen and (max-width: 767px) {
    .courses_detail_section{
        padding: 10px 0;
    }
}
.courses_detail_section .image-section{
    border-radius: 20px;
    object-fit: cover;
    overflow: hidden;
}

.courses_detail_section .course-detail{
    padding: 20px 0;
}
.courses_detail_section .course-detail ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.courses_detail_section .course-detail ul li{
    list-style: none;
    margin: 10px 0;
}
.courses_detail_section .course-detail ul li .tab-item{
    padding: 10px 20px;
    color: var(--color-main);
    list-style: none;
    background-color: #f5f5f5;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}
/* .courses_detail_section .course-detail ul .tab-item.active{
    padding: 10px 20px;
    color: #151515;
    list-style: none;
} */

.courses_detail_section .course-detail .content-section{
    margin-top: 24px;
}
.courses_detail_section .course-detail .content-section h4{
    color: var(--color-main);
    margin-bottom: 14px;
    font-size: 30px;
    font-weight: 800;
}
.courses_detail_section .course-detail .content-section .content{
    padding: 20px;
    border-radius: 14px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin: 40px 0;
}




.courses_detail_section .course-detail .content-section #our_specialities ul{
    justify-content: start;
    padding: 0;
}
.courses_detail_section .course-detail .content-section #our_specialities ul li{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    width: 49%;
    margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
    .courses_detail_section .course-detail .content-section #our_specialities ul li{
        width: 100%;
    }
}
.courses_detail_section .course-detail .content-section #our_specialities ul li .img img{
    width: 30px;
}



.courses_detail_section .course-detail .content-section #course_features ul{
    justify-content: start;
    padding: 0;
}
.courses_detail_section .course-detail .content-section #course_features ul li{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    width: 49%;
    margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
    .courses_detail_section .course-detail .content-section #course_features ul li{
        width: 100%;
    }
}
.courses_detail_section .course-detail .content-section #course_features ul li .img img{
    width: 30px;
}





.courses_detail_section .course-detail .content-section #duration .table{
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d6d6d6 !important;
  }

.courses_detail_section .course-detail .content-section #duration .table thead th {
    background-color: #e3f2fd; /* Light blue */
    text-align: center;
  }
.courses_detail_section .course-detail .content-section #duration .table td {
    text-align: center;
  }
.courses_detail_section .course-detail .content-section #duration .custom-border {
    border: 1px solid #dee2e6;
    background: #fff;
  }
  .courses_detail_section .course-detail .content-section #duration .table tbody{
    background: #fff;
  }

.courses_detail_section .course-detail .content-section #duration .table-header{
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #151515;
    margin-top: 30px;
}
 /* Highlight the second row in tbody */
 .courses_detail_section .course-detail .content-section #duration .table tbody tr:nth-child(2) {
    background-color: #a2a2a2; /* Light gray */
  }



  
.courses_detail_section .course-detail .content-section .btn{
    background-color: var(--color-main);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 24px;
    max-width: fit-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: "Nunito Sans", Sans-serif;
    font-weight: 700;
    float: right;
}

.courses_detail_section .course-detail .content-section .btn:hover {
    background-color: white;
    color: var(--color-main);
    border: 1px solid var(--color-main);
}




.partner_img_section{
    padding: 40px 0;
}
@media screen and (max-width: 767px) {
    .partner_img_section{
        padding: 0;
    }
    .partner_img_section .width-base{
        padding: 0;
    }
}





 /* gallery page */

.gallery-section{
    padding: 40px 0;
}
@media screen and (max-width: 767px) {
    .gallery-section{
        padding: 10px 0;
    }
}
.gallery-section .tag h3{
    padding: 10px;
    background-color: var(--color-main);
    border-radius: 24px;
    width: 100%;
    text-align: center;
    margin: 10px 0;
    font-size: 20px;
    color: #fff;
}
.gallery-section .image-tile img{
    cursor: pointer;
    overflow: hidden;
    object-fit: cover;
    padding: 10px;

}

#imageModal .modal-content{
    /* width: 50%; */
    background: transparent;
}



 /* blog-section */
.blog-section .btn a{
    background-color: var(--color-main);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    max-width: fit-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: "Nunito Sans", Sans-serif;
    font-weight: 700;
    text-align: center;
}



.blog-detail-section-1{
    padding: 40px 0;
}
@media screen and (max-width: 767px) {
    .blog-detail-section-1{
        padding: 10px 0;
    }
}

.blog-detail-section-1 h4{
   font-size: 24px;
   font-weight: 700;
   color: #151515;
   margin-bottom: 14px;
}
.blog-detail-section-1 .image{
    overflow: hidden;
    border-radius: 20px;
    margin: 10px 0;
 }




 /* contact page */

 .contact-section{
    padding: 40px 0;
}
@media screen and (max-width: 767px) {
    .contact-section{
        padding: 10px 0;
    }
}

 


/* registration-section */
.contact-us-section {
    padding: 60px 0 30px 0;
    margin-bottom: 60px;
    background-color: #f5f5f5;
}

@media screen and (max-width: 576px) {
    .contact-us-section {
        padding: 20px 0 20px 0;
    }
}

.contact-us-section .title-about {
    text-transform: Uppercase;
    font-size: 56px;
}

.contact-us-section form {
    /* width: 700px; */
    padding: 10px;
}

@media screen and (max-width: 992px) {
    .contact-us-section form {
        width: 100%;
    }
}

.contact-us-section .form-row {
    /* display: flex; */
    /* gap: 20px; */
    /* margin-bottom: 15px; */
}

.contact-us-section .form-row input,
.form-row select,
textarea {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border-width: 0px 0px 1px 0px;
    border-radius: 5px 5px 5px 5px;
    font-size: 14px;
    color: #fff;
}

@media screen and (min-width: 992px) {

    .contact-us-section .form-row input,
    .form-row select,
    textarea {
        width: 100%;
    }
}

.contact-us-section textarea {
    width: 100%;
    height: 100px;
    resize: none;
}

.contact-us-section .submit-btn {
    background-color: var(--color-main);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    max-width: fit-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: "Nunito Sans", Sans-serif;
    font-weight: 700;
}

.contact-us-section .submit-btn:hover {
    background-color: darkred;
}

.contact-us-section .box{
    background-color: var(--color-main);
    border-radius: 24px;
    overflow: hidden;
    margin-top: 30px;
}

.contact-us-section .form-section{
    background-color: #373737;
    border-radius: 24px;
    padding: 20px;

}

.contact-us-section .left{
    padding: 20px;
    color: #fff;
}
@media screen and (max-width: 776px) {
    .contact-us-section .left{
        padding: 30px 20px;
        color: #fff;
    }
}
.contact-us-section .left h4{
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}







/* contact-details-section */
.contact-details-section {
    padding: 60px 0 30px 0;
    margin-bottom: 60px;
    background-color: #f5f5f5;
}

@media screen and (max-width: 576px) {
    .contact-details-section {
        padding: 20px 0 20px 0;
    }
}
.contact-details-section .map-container {
    overflow: hidden;
    border-radius: 20px;
}

.contact-details-section .contact-info{
    /* position: absolute; */
    background-color: var(--color-main);
    padding: 24px;
    border-radius: 24px;
    margin-bottom: 30px;
}
.contact-details-section .contact-info .contact-info-item{
    color: #fff;
    padding: 0 20px;
}







/* error-section */
.error-section {
    padding: 60px 0 30px 0;
    margin-bottom: 60px;
    background-color: #f5f5f5;
}

@media screen and (max-width: 576px) {
    .error-section {
        padding: 20px 0 20px 0;
    }
}
.error-section .box-title h3{
    font-size: 50px;
    font-weight: 700;
  }
  
.error-section .box-title h6{
    font-size: 20px;
    margin-top: 10px;
  }
  
  .error-section .box-title p{
    color: #999999;
    margin: 30px 0;
  }
  .error-section .box-title .btn .tf-btn{
    background-color: var(--color-main);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    max-width: fit-content;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: "Nunito Sans", Sans-serif;
    font-weight: 700;
  }



  .hero-section{
    position: relative;
  }
  .hero-section::after{
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    z-index: 0;
    background-color: rgba(17, 32, 21, 0.6);
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    background-repeat: no-repeat;
    background-size: 10%;
    width: 100%;
    height: 100%;
  }
  


  .hero-section .hero-1{
    padding-top: 240px;
  }
  @media screen and (min-width: 992px) {
    .hero-section .hero-1{
        padding-top: 160px;
      }
}



 /* gour team section */

 .our-team-section{
    padding: 40px 0;
}
@media screen and (max-width: 767px) {
    .our-team-section{
        padding: 10px 0;
    }
}

.our-team-section .nav-tabs .nav-link{
    font-size: 18px;
    font-weight: 700;
    margin-right: 10px;
}
@media screen and (max-width: 767px) {
    .our-team-section .nav-tabs .nav-link{
        margin-bottom: 10px;
        width: 100%;
        margin-right: 0;
    }
}
.our-team-section .nav-tabs .nav-link.active{
    background: var(--color-main);
    color: white;
    font-size: 18px;
    font-weight: 700;
}
.our-team-section .nav-tabs .nav-link.active:hover{
    background: var(--color-error);
    color: white;
}
.our-team-section .nav-tabs .nav-link:hover{
    background-color: #f5f5f5;
    color: #151515;
}

.our-team-section .tab-content .team-card{
    position: relative;
    border-radius: 20px;
}
.our-team-section .tab-content .team-card:hover .content{
    height: 100%;
    
}
.our-team-section .tab-content .team-card .image{
    overflow: hidden;
    border-radius: 14px;
}
.our-team-section .tab-content .team-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.our-team-section .tab-content .team-card .content{
    position: absolute;
    bottom: 0;
    padding: 20px 10px;
    background-image: linear-gradient(-180deg, rgba(21, 21, 21, 1), rgba(21, 21, 21, 0));
    width: 100%;
    border-radius: 14px;
    transition: transform 0.9s ease;

}
.our-team-section .tab-content .team-card .content h4{
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.our-team-section .tab-content .team-card .content p{
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}