@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Proza+Libre:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&family=Quicksand:wght@300..700&family=Radio+Canada:ital,wght@0,300..700;1,300..700&display=swap');

/* shortcut css */
.relative {
    position: relative;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.width-50 {
    width: 50%;
}

.flex {
    display: flex;
}

.flex-start {
    align-items: flex-start;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

.justify-right {
    justify-content: flex-end;
}

.align-center {
    display: flex;
    align-items: center;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.gap-25 {
    gap: 25px;
}

.gap-30 {
    gap: 30px;
}

.gap-35 {
    gap: 35px;
}

.gap-50 {
    gap: 50px;
}

.gap-75 {
    gap: 75px;
}

.txt-center {
    text-align: center;
}

.mr-45 {
    margin-right: 45px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-5 {
    margin-top: 5px;
}

.mb-300 {
    margin-bottom: 350px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-60 {
    margin-bottom: 60px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-70 {
    padding-bottom: 70px;
}

.pt-25 {
    padding-top: 25px;
}

.mb-150 {
    margin-bottom: 150px;
}

/* shortcut css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #343434;
    font-family: "Open Sans", sans-serif;
    line-height: 1.7em;
    font-size: 18px;
}

a {
    text-decoration: none;
    color: #191919;
    cursor: pointer;

}

ul li {
    list-style: none;
}

.img-responsive {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.above-header {
    background: #222222;
    padding: 12px 0;
}

.above-header a {
    font-family: "Proza Libre", sans-serif;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    color: #fff;
}

.above-header-left a {
    border-right: 2px solid #fff;
    padding-right: 20px;
}

.above-header-left a:last-child {
    border: none;
}

.nav a {
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.5s ease-in-out;
    position: relative;
}
.nav a.active{
    color: #BF030A;
    position: relative;
}

header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 99999;
}

.dropdownmenu {
    position: absolute;
    top: 100%;
    min-width: 230px;
    padding: 10px 20px;
    background: #fff;
    list-style: none;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-left: 10px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.dropdownmenu li {
    padding-bottom: 10px;
    text-transform: uppercase;

}

.dropdownmenu li a {
    font-size: 14px;
    line-height: 24px;
}
.ham-icon{
    display: none;
}
.dropdown-nav:hover .dropdownmenu {
    position: absolute;
    opacity: 1;
    top: 185%;
    z-index: 99;
    visibility: visible;
    transition: all 0.3s ease-in-out;
}

.nav a:hover {
    color: #BF030A;
    transition: all .5s ease-in-out;

}

.nav a:hover::after {
    opacity: 1;
    left: 0;
    transition: all .5s ease-in-out;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 20px;
    background: linear-gradient(269.8deg, #D91F26 0%, #A60309 88.93%);
    height: 2px;
    left: -10px;
    opacity: 0;
    bottom: 0;
    transition: all .5s ease-in-out;
}

.nav a:last-child::after {
    display: none;
}

.logo {
    height: 75px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    height: 50px;
    width: 2px;
    background: #000;
    top: 50%;
    right: -70px;
    transform: translateY(-50%);
}

.primary-btn {
    background: linear-gradient(260.61deg, #AF050C 15.09%, #D2050C 81.81%);
    box-shadow: 0px 4px 8px 0px #5F5E5E40;
    padding: 12px 28px;
    border-radius: 30px;
    color: #fff;
    font-family: Quicksand;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 0;
    overflow: hidden;

}

.primary-btn:hover::after {
    top: -40%;
}

.primary-btn::after {
    z-index: 1;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: 110%;
    left: 50%;
    background-color: #16171a;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
}


h1 {
    font-family: "Quicksand", sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 65px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;

}

h2 {
    font-family: Quicksand;
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
    color: #BF030A;
    text-transform: uppercase;
}

.hero-text-section {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
}

.white-btn {
    background: #fff;
    box-shadow: 0px 4px 8px 0px #5F5E5E40;
    padding: 15px 70px;
    border-radius: 30px;
    color: #BF030A;
    font-family: Quicksand;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all .8s ease-in-out;

}

.white-btn:hover {
    color: #fff;
    transition: all .8s ease-in-out;
}

.white-btn:hover::after {
    top: -40%;
}

.white-btn::after {
    z-index: 1;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: 110%;
    left: 50%;
    background-color: #BF030A;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
}

.below-hero-box {

    border-radius: 21px;
    width: 190px;
    height: 180px;
    border: 1px solid #BF030A;
    position: relative;
    z-index: 2;

}

.below-hero-box p {

    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    color: #fff;

}

.below-hero-box::after {
    position: absolute;
    content: '';
    background: linear-gradient(223.28deg, rgba(191, 3, 10, 0.93) 8.25%, #D81C23 84.21%);
    transform: rotate(45deg);
    border-radius: 40px;
    width: 190px;
    height: 180px;
    z-index: -1;
}

.below-header-dots {
    position: absolute;
    top: -70px;
    left: 0;
}

.about-section {
    height: 800px;
}

.about-bg {
    position: absolute;
    top: -50px;
    left: 275px;
}

.left-about-img {
    position: absolute;
    left: 0;
    top: 0px;
    width: 520px;
    height: 620px;
}

.right-about-content {
    float: right;
    width: 55%;
}

.right-about-content h2 {
    font-family: Open Sans;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    position: relative;
    text-align: right;
    margin-bottom: 35px;
}

.right-about-content h2 img {
    position: absolute;
    bottom: -10px;
    right: 0;
}

.right-about-content p {
    font-size: 24px;
    font-weight: 400;
    line-height: 48px;
    text-align: right;

}

.right-about-content a {
    float: right;
}

.right-about-content .white-btn {
    border: 1px solid #BF030A;
    font-family: Quicksand;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;

}

.service-bg {
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
}

.service-section h2 {
    width: 100%;
    padding-bottom: 150px;
}

.service-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-items: center;
    width: 60%;
    margin: 0 auto;
}

.service-box {
    position: relative;
    cursor: pointer;
    transition: all .5s ease-in-out;
    overflow: hidden;


}

.service-box:hover .service-img {
    border: 2px solid #BF030A;
    transition: all .5s ease-in-out;
}

.service-box:hover .service-btn {
    background: #BF030A;
    color: #fff;
    transition: all .5s ease-in-out;
}

.service-btn img {
    transition: all .5s ease-in-out;
}

.service-box:hover .service-btn img {
    filter: brightness(0) invert(1);
    transition: all .5s ease-in-out;
}

.service-box:nth-child(odd) {
    margin-top: -45px;
}

.service-box:nth-child(odd) .service-btn {
    bottom: 45px;
}

.service-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    gap: 50px;
    background: #fff;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    padding: 10px;
    transition: all .5s ease-in-out;
}

.service-btn p {
    font-family: Open Sans;
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;
}

.service-img {
    width: 320px;
    height: 320px;
    border: 2px solid #fff;
    border-radius: 80px 0px 80px 0px;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

.service-dotted-box {
    position: absolute;
    left: -80px;
    top: -70px;

}

.service-red-box {
    position: absolute;
    height: 40px;
    width: 40px;
    background: #BF030A;
    left: -80px;
    top: -120px;
}

.small-dotted-box {
    position: absolute;
    bottom: -50px;
    right: -50px;
}

.service-red-box2 {
    position: absolute;
    right: -45px;
    bottom: 190px;
    height: 40px;
    width: 40px;
    background: #BF030A;
}

.services-right {
    position: absolute;
    right: 0;
    top: 0;
}
.courses-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.courses-box {
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.courses-box:hover .courses-img {
    border: 2px solid #BF030A;
    transition: all .5s ease-in-out;
}

.courses-box .service-btn img {
    filter: brightness(0) invert(0);
    transition: all .5s ease-in-out;
}

.courses-box:hover .service-btn {
    color: #BF030A;
    transition: all .5s ease-in-out;
}

.courses-box:hover .service-btn img {
    filter: none;
    transition: all .5s ease-in-out;
}

.courses-img {
    border: 2px solid #fff;
    border-radius: 0px 80px 0px 0px;
    overflow: hidden;
    height: 325px;
    transition: all .5s ease-in-out;
}

.string-arrow {
    position: absolute;
    bottom: -200px;
    right: 0;
}

.blog-box .blog-img {
    border-radius: 10px 10px 70px 10px;
    overflow: hidden;
    height: 360px;
    cursor: pointer;
}

.date-box {
    background: #BF030A;
    font-family: Quicksand;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 0;
    right: 20px;
    padding: 8px;

}

.blog-box .primary-btn {
    font-family: Open Sans;
    font-size: 14px;
    font-weight: 800;
    line-height: 19px;
}

.blog-box .bottom-content {
    position: absolute;
    bottom: 40px;
    left: 20px;
}

.blog-box .bottom-content p {
    font-family: Quicksand;
    font-size: 16px;
    font-weight: 700;
    line-height: 36px;
    color: #fff;

}

.round-box {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #fff;
}

.round-box img {
    width: 25px;
    height: 25px;
    margin-top: 4px;
}

.blog-thread {
    position: absolute;
    top: -50px;
    left: 0;
}

.testimonial-box {
    padding-top: 140px;
    padding-bottom: 30px;
    background: linear-gradient(95.1deg, #BF030A -7.2%, #8D0308 90.62%);
    border-radius: 10px;
    width: 70%;
    margin: 0 auto;

}

.testimonial-header-box {
    position: absolute;
    top: 30px;
    left: -20px;
    padding: 0 60px;
    background: #fff;
    box-shadow: 0px 4px 4px 0px #83808040;

}

.testimonial-header-box h2 {
    font-family: Quicksand;
    font-size: 32px;
    font-weight: 700;
    line-height: 60px;


}

.testi-triangle {
    position: absolute;
    z-index: 9;
    left: -59px;
}

.appost {
    position: absolute;
    top: -45px;
    right: 30px;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #BF030A;
    font-family: Radio Canada;
    font-size: 120px;
    font-weight: 700;
    line-height: 60px;
    color: #BF030A;

}

#testi-carousel {
    padding: 0 50px;
}

#testi-carousel p {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    color: #fff;

}

.testi-pic-box {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    border: 4px solid #fff;
    overflow: hidden;
}

.testimonial-box h4 {
    font-family: Quicksand;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: #fff;

}

.testi-name p {
    font-weight: 700;
}

#testi-carousel .owl-nav button {
    position: absolute;
    background: transparent;
    border-radius: 50% !important;
    border: 1px solid #fff;
    height: 45px;
    top: auto;
    bottom: -10px;
    left: auto;
    width: 45px;
    z-index: 1;
    cursor: pointer;
    transition: all .5s ease-in-out;

}

#testi-carousel .owl-nav button:hover {
    background: #fff;
    transition: all .5s ease-in-out;
}

#testi-carousel .owl-nav .owl-next {
    right: 70px;
}

#testi-carousel .owl-nav .owl-prev {
    right: 10px;
}

#testi-carousel .owl-nav button img {
    width: 30px;
    height: 17px;
    filter: brightness(0) invert(1);
    transition: all .5s ease-in-out;
}

#testi-carousel .owl-nav button:hover img {
    filter: none;
    transition: all .5s ease-in-out;
}

.testimonial-bg {
    position: absolute;
    left: 0;
    top: -200px;
}

footer {
    background: #1a1a1a;
    padding-top: 50px;
    padding-bottom: 30px;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    justify-content: space-between;
    gap: 100px;
    color: #fff;
    position: relative;
    z-index: 3;
}

.footer-wrapper a {
    color: #fff;
}

.logo-footer {
    width: 150px;
    height: 60px;
}

.footer-wrapper h4 {
    font-weight: bold;
    font-size: 20px;
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
}

.footer-wrapper h4::after {
    position: absolute;
    content: '';
    bottom: -5px;
    height: 1px;
    width: 100%;
    background: #fff;
    left: 0;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.footer-wrapper .quick-links li {
    padding-bottom: 10px;
}

.footer-wrapper .quick-links li a {
    font-size: 16px;
}

.copyright {
    background: #fff;
    padding: 10px 0;
    margin-top: 100px;
}

.copyright p {
    font-size: 12px;
    display: flex;
    justify-content: center;
    font-weight: bold;
    gap: 5px;
}

.copyright span {
    color: #BF030A;
}

/* ABOUT section */
.about-hero {
    background-color: #BF030A;
    background-image: url('/assets/images/about-hero.png');
    padding: 90px 0;
}

.about-hero h2 {
    color: #fff;
    width: 50%;
    margin: 0 auto;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 700;
    line-height: 45px;
}

.about-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
}

.about-page-left h4 {
    font-family: Quicksand;
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
    color: #BF030A;
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-page-left h4::after {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 80%;
    background: #000;
    top: 50%;
    transform: translateY(-50%);
}

.about-page-left p {
    font-family: Open Sans;
    font-size: 20px;
    font-weight: 400;
    line-height: 38px;
    text-align: justify;
}

.about-detail-img {
    width: 450px;
    height: 430px;
}

.about-detail-attach {
    position: absolute;
    bottom: -50px;
    left: 50px;
}

.about-detail-attach-img {
    background-image: url('/assets/images/about-detail-attach.svg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 130px;
    height: 100px;
}

.about-detail-attach p {
    font-family: Quicksand;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.about-arrow {
    position: absolute;
    bottom: -70px;
    left: -200px;
}

.about-dropdown-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.dropdown {
    border-width: 1px 0px 1px 0px;
    border-style: solid;
    border-color: #656565;
    padding: 20px 15px;
    cursor: pointer;
    background-color: #fff;
    width: 550px;
    transition: all 0.3s ease-in-out;
}

.dropdown-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    color: #373737;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
}

.plus-icon {
    font-size: 40px;
    transition: transform 0.3s ease-in-out;
}

.minus {
    font-size: 40px;
    color: #BF030A;
    transition: transform 0.3s ease-in-out;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.dropdown-content h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 60px;
    text-decoration: underline
}

.uni-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.uni-box {
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.uni-box img {
    transition: all .3s ease-in-out;
}

.uni-box:hover>img:first-child {
    transform: scale(1.1);
    transition: all .3s ease-in-out;
}

.uni-logo {
    position: absolute;
    z-index: 2;
    width: 100%;
    background: #FFFFFFC2;
    bottom: 40px;
    left: 0;
    padding: 8px 0;
}

.blog-tab {
    margin-bottom: 30px;
    border-bottom: 1px solid #A7A1A1;
}

.blog-tab button {
    color: #262525;
    font-weight: 700;
    font-family: Nunito, sans-serif;
    font-size: 20px;
    background: none;
    border: none;
    position: relative;
    margin-right: 70px;
    padding-bottom: 20px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.blog-tab button:hover {
    color: #BF030A;
    transition: all .5s ease-in-out;
}

.blog-tab button.active {
    color: #BF030A;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 4px solid #BF030A;
    transition: all .5s ease-in-out;
}

.blog-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.tabcontent .blog-wrapper .blog-box .blog-img {
    border-radius: 0;
}

.tabcontent {
    display: none;
}

/* contact page */
.contact-header {
    background-color: #BF030A;
    padding-top: 80px;
    padding-bottom: 110px;
    margin-bottom: 700px;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
}

h3 {
    font-family: Quicksand;
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
    color: #fff;
    text-transform: uppercase;

}

.contact-form-box {
    padding-left: 80px;
    border: 1px solid #191919;
    border-radius: 25px;
    background: #fff;
    position: absolute;
    width: 75%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-top: 20px;
}

form {
    padding: 100px 0;
}

.form-controller {
    padding: 16px 12px;
    border: 1px solid #464545;
    border-radius: 4px;
    background: #fff;
}

.contact-info-box {
    background: #000;
    padding: 240px 50px;

}

.contact-info-box ul li a {
    color: #fff;
}

textarea {
    height: 200px;
    resize: none;
    font-family: open sans;
}

textarea::placeholder {
    font-family: open sans;
}

form .primary-btn {
    border-radius: 0;
    outline: none;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}

.responsive-map iframe {
    width: 100%;
    height: 600px;

}

.blog-details-header {
    padding-left: 20px;
}

.blog-details-header p {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    color: #545454;
}

.blog-details-header h2 {
    font-size: 24px;
    line-height: 30px;
}

.blog-details-header::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    border-left: 2px solid #000;
    height: 100%;

}

.blog-detail-wrapper {
    padding: 15px 30px;
    padding-bottom: 80px;
    box-shadow: 0px 4px 4px 0px #90878740;

}

.blog-detail-img img {
    border-radius: 10px;
    overflow: hidden;
}

.blog-img-holder::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 99%;
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.blog-img-holder .testimonial-header-box {
    background: #BF030A;
    z-index: 3;
}

.blog-img-holder .testimonial-header-box h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    color: #fff;

}

.social-links-wrapper {
    position: absolute;
    right: -15px;
    top: 40px;
    z-index: 3;
}

.social-link-box {
    background: #BF030A;
    padding: 12px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.social-link-box:hover {
    background: #000;
    transition: all .5s ease-in-out;
}

.social-link-box:first-child {
    margin-bottom: 5px;
}

.blog-detail-wrapper .blog-top-text {
    font-family: Open Sans;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    color: #545454;
}

.blog-detail-wrapper p {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: justified;
    color: #222222;

}

.tab {
    cursor: pointer;
    padding: 12px 10px;
    margin-bottom: 0;
    border-width: 1px 0px 1px 0px;
    border-style: solid;
    border-color: #E1E1E1;


}

.tab-content-container {
    flex: 1;
}

.tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0px 0px 8px 0px #00000040;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.tab-content.inactive {
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
}

.tab-content h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 42px;
    color: #BF030A;

}

.tab-content p {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    color: #222222;
}

.course-img {
    height: 450px;
    width: 100%;
}

.tab.active {
    background: #ECECEC;
    color: #BF030A;
}
.mobile-menu-contents {
    display: none;
}
.cmnt-icon{
    margin-bottom: 15px;
}
.cmnt{
    padding: 0;
}
.cmnt .form-controller{
    width: 100%;
    padding: 40px 30px;
}
.cmnt-txt{
    border: 1px solid #7a7a7a;
    padding: 15px 8px;
    border-radius: 4px;
    width: 100%;
}
.cmnt-txt-box .testi-pic-box{
width: 120px;
height: 120px;
flex-shrink: 0;
}
.custom-prev, .custom-next{
    background: #FFFFFF8F;

    padding: 15px;
    position: absolute;
    bottom: 10px;
    z-index: 2;
    cursor: pointer;
}
.custom-prev{
    left: 14em;
}
.custom-next{
    left: 10em;
}
  /* Define slide down animation */
  .swiper {
    width: 100%;
    height: 76vh;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}
.swiper-slide{
    position: relative;
}
.hero-text-section{
    position: absolute;
    z-index: 2;
}
.swiper-slide::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); 
    z-index: 1;
}
@media(min-width: 1600px){
    .container{
        width: 1400px;
    }
    .below-header-dots {
        left: 225px;
    }
    .about-bg {
        left: auto;
        right: 0;
        top: -100px;
    }
    .left-about-img {
        width: 650px;
        height: 650px;
    }
    .blog-thread {
        left: 170px;
    }
    .service-dotted-box {
        top: -110px;
    }
    .service-red-box {
        
        top: -160px;
    }
    .courses-img {
        height: 440px;
    }
    .blog-box .blog-img {
       
        height: 450px;
   
    }
    .testimonial-box {
        padding-top: 150px;
        padding-bottom: 65px;
     
        width: 80%;
       
    }
}

@media (max-width:1200px) {
    .container {
        width: 90%;
    }

    .logo {
        height: 50px;
    }

    .logo::after {
        height: 30px;
        right: -30px;
    }

    .nav a {
        font-size: 15px;
    }

    .gap-50 {
        gap: 40px;
    }

    h1 {
        font-size: 32px;
        line-height: 45px;

    }

    .white-btn {
        padding: 15px 50px;
    }

    .owl-prev {
        left: 12em;
    }

    .owl-next {
        left: 8em;
        right: auto;
    }

    .owl-nav button {
        width: 70px;
    }

    .left-about-img {
        width: 430px;
        height: 510px;
    }

    .about-bg {
        top: -50px;
        left: 0px;
    }

    .right-about-content h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .right-about-content p {
        font-size: 18px;
        line-height: 36px;
    }

    h2 {
        font-size: 28px;
        line-height: 45px;
    }

    .service-wrapper {
        gap: 20px;
        width: 80%;
    }
    .service-btn p {
        font-size: 18px;
    }
    .blog-box .bottom-content {
        padding-right: 20px;
    }

    .blog-box .bottom-content p {
        font-size: 14px;
        line-height: 25px;

    }
    .courses-section .mr-45 {
        margin-right: 0px;
    }
    .testimonial-header-box h2 {
        font-size: 24px;
      
    }
    .testimonial-box h4 {
        font-size: 24px;
    }
    .footer-wrapper {
       gap: 40px;
    }
    .mb-150{
        margin-bottom: 80px;
    }
    .mb-300{
        margin-bottom: 225px;
    }
    .about-section {
        height: 700px;
    } 
    .about-hero h2 {
    
        width: 75%;
        font-size: 18px;
        line-height: 36px;
    }
    .about-dropdown-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    .dropdown-title {
        font-size: 20px;
    }
    .dropdown {
      
        width: 440px;
     
    }
    .contact-form-box{
        width: 90%;
    }
}
@media (max-width: 992px){
    .above-header a {
        
        font-size: 12px;
        line-height: 16px;
    }
    .gap-20 {
        gap: 15px;
    }
    .above-header-left a {
       
        padding-right: 15px;
    }
    .nav{
        display: none;
    }
    h1 {
        font-size: 24px;
        line-height: 42px;
    }
    .white-btn {
        padding: 12px 35px;
        font-size: 16px;
    }
    .gap-30 {
        gap: 24px;
    }
    .owl-nav button {
        width: 55px;
        height: 40px;
    }
    .owl-nav button img{
        width: 25px;
        height: 25px;
        margin-top: 5px;
    }
    .custom-prev {
        left: 10em;
    }
    .custom-next {
        left: 6.7em;
    }
    .custom-prev, .custom-next{
        padding: 10px;
    }
    .below-hero-box::after {
        width: 160px;
        height: 150px;
    }
    .below-hero-box {
        width: 160px;
        height: 150px;
      
    }
    .below-hero-box p {
        font-size: 18px;
        line-height: 28px;
    }
    .left-about-img {
        width: 330px;
        height: 400px;
    }
    .about-section {
        height: 600px;
    }
    .about-bg {
        top: 5px;
    }
    .mb-300 {
        margin-bottom: 250px;
    }
    .service-img {
        width: 275px;
        height: 275px;
    }
    .service-wrapper {
        gap: 40px;
        width: 80%;
    }
    .service-dotted-box {
       
        width: 520px;
    }
    .service-red-box2 {
        right: -50px;
       
    }
    .courses-wrapper{
        grid-template-columns: 1fr 1fr;
    }
    .blog-wrapper{
        grid-template-columns: 1fr 1fr;
    }
    .testimonial-box{
        width: 100%;
    }
    .footer-wrapper {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
        gap: 25px;
    }
    .testimonial-section.mb-300{
        margin-bottom: 150px;
    }
    .ham-icon{
        width: 40px;
        height: 40px;
        display: block;
    }
    .cross-icon{
        width: 30px;
        height: 30px;
        display: block;
    }
    .mobile-menu-contents {
        display: block;
        padding: 20px;
        background: #fff;
        position: fixed;
        left: -250px;
        opacity: 0;
        top: 0;
        /* overflow: hidden; */
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        height: 100%;
        width: 100%;
        box-shadow: 0 14px 32px rgb(0 0 0 / 10%);
        overflow-y: scroll;
        z-index: 99999;
    }
    .mobile-menu-contents.active {
        visibility: visible;
        opacity: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
    .menu-header-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
    }
    .menu-header-wrapper .logo::after{
        display: none;
    }
    .header-contents {
        padding-bottom: 15px;
        padding-left: 15px;
        position: relative;
    }
    .header-contents a {
        font-weight: 500;
        font-size: 16px;
    }
    .accordian {
        display: block !important;
        position: absolute;
        top: 0;
        left: 30%;
    }


    .accordian.active {
        display: block !important;
    }




    .acc-content {
        display: none;
        margin: 0 1rem;
        padding-left: 1rem;
        padding-top: 20px;
        overflow: hidden;

        font-size: 18px;
        font-weight: 600;
        /* border-bottom: 1px solid #ccc; */
    }

    .acc-content a {
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        font-weight: 400;

    }
    .about-hero h2 {
    
        width: 75%;
        font-size: 18px;
        line-height: 36px;
    }
    .about-dropdown-wrapper {
        grid-template-columns: 1fr;
    }
    .about-hero {
        padding: 65px 0;
    }
    .about-detail-wrapper {
        grid-template-columns: 1fr;
    }
    .about-page-left p {
        font-size: 18px;
        line-height: 32px;
    }
    .about-detail-section{
        margin-bottom: 150px;
    }
    .dropdown {
        width: 100%;
    }
    .dropdown-title {
        font-size: 18px;
    }
    .uni-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    .contact-form-box{
        gap: 50px;
        padding-left: 45px;
    }
    h3 {
       
        font-size: 25px;
     
    }
    .swiper {
        height: 75VH;
      }
}
@media (max-width:680px){
    .above-header-wrapper{
        flex-direction: column;
        gap: 20px;
    }
    .above-header a {
        font-size: 10px;
    }
    .above-header a img{
        width: 20px;
        height: 20px;
    }
    .below-hero{
        flex-direction: column;
        align-items: center;
    }
    .right-about-content {
        width: 100%;
        margin-top: 450px!important;
    }
    .left-about-img {
        width: 100%;
        height: 400px;
    }
    .about-bg {
        top: 330px;
        height: 760px;
    }
    .about-section {
        height: 1000px;
        overflow: hidden;
    }
    .service-wrapper{
        grid-template-columns: 1fr;
    }
    .service-dotted-box {
        left: -40px;
        top: 90px;
        width: 300px;
    }
    .service-box:nth-child(odd) {
        margin-top: 0;
    }
    .service-section h2 {
        padding-bottom: 60px;
    }
    .service-red-box {
        height: 30px;
        width: 30px;
        left: -40px;
        top: 45px;
    }
    .courses-wrapper {
        grid-template-columns: 1fr;
    }
    .blog-wrapper {
        grid-template-columns: 1fr;
    }
    .blog-thread {

        top: 50px;
       
    }
    .testimonial-header-box h2 {
        font-size: 18px;
        line-height: 42px;
    }
    .testimonial-header-box{
        padding: 0 40px;
    }
    .testi-triangle {
        left: -39px;
    }
    .appost {
        top: -40px;
        right: 30px;
        height: 70px;
        width: 70px;
    }
    .appost img{
        width: 40px;
        height: 40px;
    }
    .testimonial-box {
        padding-top: 100px;
        padding-bottom: 65px;
    }
    #testi-carousel {
        padding: 0 35px;
    }
    #testi-carousel .owl-nav button {
        bottom: -50px;
      
    }
    .testimonial-box h4 {
        font-size: 18px;
    }
    #testi-carousel p {
        font-size: 14px;
        line-height: 30px;
    }
    .testi-pic-box {
        width: 120px;
        height: 120px;
    }
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .swiper-slide{
        height: 400px;
    }
    h1 {
        font-size: 18px;
        line-height: 34px;
    }
    .hero-text-section {
        width: 90%;
    }
    .white-btn {
        padding: 10px 28px;
        font-size: 15px;
    }
    .owl-prev {
        left: 6em;
    }
    .owl-next {
        left: 2.7em;
    }
    .about-hero h2 {
        font-size: 18px;
        line-height: 32px;
        width: 100%;
    }
    .about-detail-img {
        width: 350px;
        height: 375px;
    }
    .about-page-left h4 {
        
        font-size: 20px;
       
        line-height: 34px;
       margin-bottom: 20px;
    }
    .about-page-left p {
        font-size: 16px;
        line-height: 28px;
    }
    h2 {
        font-size: 22px;
        line-height: 38px;
    }
    .uni-wrapper {
        grid-template-columns: 1fr;
    }
    .cmnt-txt p{
        font-size: 14px;
        line-height: 28px;
    }
    .blog-detail-wrapper p {
        font-size: 15px;
        line-height: 28px;
        
    }
    .blog-details-header h2 {
        font-size: 18px;
        line-height: 30px;
    }
    .blog-detail-img{
        height: 400px;
    }
    .blog-img-holder::after{
        height: 100%;
    }
    .mb-60 {
        margin-bottom: 40px;
    }
    .blog-img-holder .testimonial-header-box h4 {
        font-size: 18px;
        line-height: 50px;
    }
    .pb-50 {
        padding-bottom: 30px !important;
    }
    .blog-detail-wrapper p {
        font-size: 14px;
    }
    .cmnt .form-controller {
        padding: 20px;
    }
    .cmnt-txt-box{
        flex-direction: column;
    }
    .mt-80 {
        margin-top: 40px;
    }
    .blog-detail-wrapper {
        padding: 15px 20px;
    }
    .blog-tab button{
margin-right: 40px;
    }
    .contact-form-box{
        grid-template-columns: 1fr;
        padding: 0 30px;
    }
   .form-controller{
    width: 275px;
   }
   .contact-form-box form{
    padding-bottom: 0;
    padding-top: 50px;
   }
   .contact-form-box form .primary-btn{
    width: 275px;
   }
   .contact-info-box {
    background: #000;
    padding: 80px 30px;
    width: 275px;
    margin-bottom: 50px;
}
.courses-content-wrapper{
    flex-direction: column;
}
.gap-20 {
    gap: 10px;
}
.above-header-left a {
    padding-right: 10px;
}
.above-header-left a {
    padding-right: 8px;
}
.custom-prev, .custom-next{
    padding: 8px;
}
.custom-prev{
    left: 3em;
}
.custom-next{
    left: 5.9em;
}
.swiper {
    height: 60VH;
  }

}