@import url(https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Syne:wght@400;500;600;700;800&display=swap);

:root {
    --heading: 'Open Sans', sans-serif;
    --subHeading: 'Caveat', cursive
}

body {
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased
}

.container {
    max-width: 1200px
}

li,
p {
    font-size: 15px;
    font-weight: 400
}

a,
a:hover {
    text-decoration: none;
    color: currentColor
}

header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1111
}

.navbar-brand {
    margin-right: 0;
    margin-left: 110px
}

.navbar-nav {
    flex-direction: row;
    gap: 20px
}

.hero_sliderWrapper {
    position: relative;
    z-index: 1
}

.navbar-nav .nav-link {
    padding-right: 8px;
    padding-left: 8px;
    background: #000
}

.navbar-nav .nav-link img {
    filter: brightness(0) invert(1);
    transition: all .3s ease
}

.navbar-nav .nav-link:hover img {
    filter: unset
}

.hero_sliderWrapper::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: rgb(0 0 0 / 40%);
    z-index: 0
}

.hero_textSliderWrapper {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff
}

.hero_textSliderWrapper h6 {
    font-family: var(--subHeading);
    font-size: 30px
}

.hero_textSliderWrapper h3 {
    font-family: var(--heading);
    font-size: 50px;
    font-weight: 700;
    white-space: nowrap
}

.hero_btn {
    text-decoration: none;
    font-size: 15px;
    width: fit-content;
    padding: 6px 40px;
    transition: all .2s ease;
    display: block;
    margin: 20px 0;
    color: #ff5722;
    font-family: var(--heading);
    position: relative;
    overflow: hidden;
    outline: 1px solid #ff5722;
    border-radius: 20px;
    border: unset;
    font-weight: 600;
    background: 0 0
}

.hero_textSliderWrapper .hero_btn {
    margin: 20px auto;
    color: #fff;
    outline-color: #fff
}

.hero_btn:hover {
    background: #5956f0;
    color: #fff;
    box-shadow: 0 10px 30px -10px rgb(0 0 0 / 33%);
    outline-offset: 3px;
    outline-style: dashed;
    outline-color: #5956f0
}

.hero_sliderSection .swiper-slide {
    overflow: hidden
}

.hero_sliderSection .swiper-slide .hero_imgSliderWrapper img {
    transform: scale(1.2);
    transition: all 4s;
    width: 100%;
    height: 100vh;
    object-fit: cover
}

.hero_sliderSection .swiper-slide-active .hero_imgSliderWrapper img {
    transform: scale(1)
}

.hero_sliderSection .swiper-slide-active .hero_textSliderWrapper h6 {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.hero_sliderSection .swiper-slide-active .hero_textSliderWrapper h3 {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.hero_sliderSection .swiper-slide-active .hero_textSliderWrapper .hero_btn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: 2s
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.swiper-pagination-bullet {
    width: 15px;
    height: 3px;
    border-radius: 0;
    background-color: #fff;
    transition: all .3s ease
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
    width: 25px
}

.swiper-pagination {
    bottom: 20px !important
}

#about_section {
    position: relative;
    padding: 6rem 0
}

.abt_imgWrapper {
    text-align: right;
    position: relative
}

.abt_imgWrapper .heroAbt_img {
    margin-right: 50px;
    box-shadow: 0 10px 20px -10px;
    border-radius: 10px
}

.abt_imgWrapperSub {
    position: absolute;
    background: #2a84b3;
    width: 240px;
    background: radial-gradient(circle, rgb(233 211 58) 0, rgb(247 139 105) 100%);
    bottom: -64px;
    padding: 20px;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, .4)
}

.abt_imgWrapperSubInner {
    text-align: center
}

.abt_imgWrapperSubInner h3 {
    font-family: Caveat;
    font-size: 18px;
    font-weight: 400;
    color: #000
}

.abt_imgWrapperSubInner h3 span {
    display: block;
    font-weight: 600;
    color: #000;
    font-size: 25px;
    font-family: var(--heading)
}

.abt_imgWrapperSubInner .hero_btn {
    margin: 0 auto;
    font-size: 14px;
    padding: 5px 10px;
    background: #ff5722;
    color: #fff;
    outline-color: #ff5722
}

.abt_imgWrapperSubInner h2 {
    left: 46%;
    position: absolute;
    font-weight: 900;
    font-size: 50px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 10px #2a25b22e;
    bottom: -80px
}

.abt_imgWrapperSubInner img:nth-child(1) {
    position: absolute;
    top: -37px;
    left: 90px;
    z-index: -1;
    -webkit-animation: pulse 4s infinite;
    animation: pulse 4s infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.abt_textWrapper {
    position: relative
}

.abt_textWrapper h1 {
    width: 65%;
    font-size: 30px;
    color: #000;
    font-weight: 700;
    font-family: var(--heading);
    margin-bottom: 15px
}

.abt_textWrapper h1 span {
    color: #ff5722
}

.abt_textWrapper p {
    font-size: 15px;
    color: #000;
    word-spacing: 1px;
    letter-spacing: .5px;
    line-height: 24px
}

.abt_textWrapper ul {
    padding-left: 0;
    list-style: none
}

.abt_textWrapper li {
    padding-left: 30px;
    position: relative;
    width: 80%;
    margin-bottom: 10px;
    text-transform: capitalize;
    letter-spacing: .5px;
    line-height: 24px
}

.abt_textWrapper li::after {
    position: absolute;
    content: '';
    width: 25px;
    height: 25px;
    background: url(../images/icons/right_arrow.png);
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    top: 0
}

#cp_section {
    position: relative;
    padding: 6rem 0 8rem;
    background: #f5d7c2
}

.wave_bgsrt {
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.wave_bgbtm {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0
}

.wave_bgsrt img {
    width: 100%;
    height: 120px
}

.wave_bgbtm img {
    width: 100%;
    height: 80px
}

.cp_rightImgwrapper {
    position: relative;
    cursor: pointer
}

.cp_rightImgwrapper .ftimg {
    width: 100%;
    padding: 5px;
    background: #fdcba7;
    border-radius: 10px;
    box-shadow: 0 10px 20px -10px rgb(0 0 0);
    transition: all .2s ease-in
}

.cp_rightImgwrapper:hover .ftimg {
    background: #ff7246;
    cursor: pointer
}

.cp_rightTextwrapper {
    position: absolute;
    bottom: 0;
    padding: 30px 10px 20px;
    width: 100%;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(360deg, #000, transparent);
    text-align: center;
    transition: all .3s;
    opacity: 1
}

.cp_rightTextwrapper h4 {
    font-size: 20px;
    color: #ff7246;
    font-family: var(--heading);
    letter-spacing: -.4px;
    margin-bottom: 0;
    transition: all .25s ease
}

.cp_rightImgwrapper:hover .cp_rightTextwrapper h4 {
    transform: translateY(-5px)
}

.cp_leftWrapper {
    padding-right: 50px
}

.cp_leftWrapper h3 {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--heading)
}

.cp_leftWrapper p {
    font-size: 15px;
    color: #000;
    word-spacing: 1px;
    letter-spacing: .5px;
    line-height: 24px
}

#count_stats {
    padding: 6rem 0 4rem;
    position: relative
}

#counter-box {
    text-align: center
}

.count_stats .row .col-lg-3:nth-child(1) #counter-box {
    color: #ff5722
}

.count_stats .row .col-lg-3:nth-child(2) #counter-box {
    color: #4a56c3
}

.count_stats .row .col-lg-3:nth-child(3) #counter-box {
    color: #d7bc04
}

.count_stats .row .col-lg-3:nth-child(4) #counter-box {
    color: #2bc361
}

#counter-box h3 {
    font-size: 18px;
    padding-bottom: 5px;
    border-bottom: 1px dashed;
    width: fit-content;
    margin: 0 auto 10px;
    font-weight: 600
}

#counter-box .counter {
    font-size: 50px;
    font-weight: 700;
    position: relative
}

#counter-box .counter::after {
    position: absolute;
    content: '+';
    font-size: 30px;
    margin-left: 5px;
    margin-top: -5px
}

#eventsSection {
    padding: 70px 0 40px;
    position: relative;
    overflow: hidden
}

#eventsSection::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    inset: 0;
    background: #fff;
    background: linear-gradient(90deg, #f5f5f5 50%, #fff 50%);
    z-index: -1
}

.events_section {
    color: #000;
    margin-right: 50px;
    border: 1px solid #d9d9d9
}

.events_sectionHeading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #d9d9d9
}

.events_sectionHeading h3 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    font-family: var(--heading)
}

.events_sectionHeading a {
    font-size: 15px;
    font-family: var(--heading);
    padding: 2px 10px;
    border: 1px solid #000;
    border-radius: 15px;
    text-transform: capitalize;
    transition: all .25s
}

.events_sectionHeading a:hover {
    background: #fff;
    color: #ff5722;
    border-color: #ff5722
}

.events_sectionWrapper {
    max-height: 470px;
    height: 100%;
    overflow: auto
}

.events_sectionInner {
    position: relative;
    padding: 10px;
    border-bottom: 1px solid #d9d9d9
}

.event_date img {
    width: 15px
}

.event_date span {
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-left: 5px
}

.event_details h4 {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
    margin: 5px 0 5px
}

.event_details p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12px;
    letter-spacing: .5px;
    margin-bottom: 0;
    font-weight: 400
}

.events_sectionWrapper::-webkit-scrollbar {
    width: 5px
}

.events_sectionWrapper::-webkit-scrollbar-track {
    background: #fff
}

.events_sectionWrapper::-webkit-scrollbar-thumb {
    background: #c0bfbf;
    border-radius: 10px
}

.events_sectionWrapper::-webkit-scrollbar-thumb:hover {
    background: #555
}

.quick_enq {
    position: relative;
    padding-left: 50px
}

.filled-background {
    background-color: #00ff7f
}

.quick_enq label {
    font-size: 14px;
    font-family: var(--heading);
    display: block;
    margin: 8px 0;
    color: #636336;
    font-weight: 600
}

.quick_enq .form-row {
    position: relative
}

.quick_enq .form-row:first-child label {
    margin-top: 0
}

.quick_enq label .star {
    color: #fa0000
}

.quick_enq .form-control {
    border-radius: 0;
    height: 40px;
    padding-left: 30px
}

.quick_enq .form-control:focus {
    box-shadow: unset;
    border-color: #ff5722
}

.quick_enq textarea.form-control {
    border-radius: 0;
    height: auto
}

.quick_enq .form-row img {
    width: 20px;
    position: absolute;
    top: 40px;
    left: 5px;
    opacity: .8
}

.quick_enq h3 {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--heading);
    width: fit-content;
    margin-bottom: 15px;
    padding-bottom: 4px;
    border-bottom: 1px dashed #ff5722
}

.quick_suc {
    width: 100%;
    padding: 30px;
    height: 100vh;
    background-color: #00000094;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 9999;
    display:none;
}
.quick_sucInner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    max-width: 300px;
    width: 100%;
    padding: 30px;
    border-radius: 10px;
}
.quick_suc .hero_btn {
    padding: 3px 20px;
    margin: 0 auto;
    text-transform: capitalize
}

.quick_suc h3 {
    font-size: 30px;
    font-family: var(--heading);
    color: #ff5722;
    font-weight: 700
}

#course_section {
    position: relative
}

.course_wrapper {
    width: 90%;
    margin: 0 auto
}

.course_rightInner:hover img {
    transform: scale(1.2) rotate(5deg)
}

.course_rightInner {
    position: relative;
    overflow: hidden
}

.course_leftSection {
    position: relative
}

.course_leftSection::after {
    position: absolute;
    content: '';
    width: 150px;
    height: 150px;
    background-image: url(../images/icons/study\ \(4\).png);
    background-repeat: no-repeat;
    background-size: contain;
    animation: shakex 20s linear infinite;
    z-index: -1
}

@keyframes shakex {
    0% {
        transform: translateX(-70px)
    }

    50% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-70px)
    }
}

.course_leftSectionInner h3 {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--heading);
    width: 67%;
    margin-bottom: 15px;
    padding-bottom: 4px;
    border-bottom: 1px dashed #ff5722;
    margin-left: auto
}

.course_leftSectionInner p {
    text-align: right;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: .5px;
    line-height: 24px
}

.course_rightSection {
    padding-left: 30px
}

.course_rightInner img {
    width: 100%;
    transition: all .4s
}

.course_righttextInner {
    background: #ff7246;
    color: #fff;
    padding: 30px 15px;
    z-index: 1;
    position: relative
}

.course_righttextInner h3 {
    font-size: 22px;
    font-family: var(--heading);
    font-weight: 600
}

.course_righttextInner p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: .5px;
    line-height: 24px;
    margin-bottom: 0
}

#img_gallery {
    padding: 2rem 0 4rem
}

.imgGallery {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(2, 1fr);
    row-gap: 10px;
    column-gap: 10px
}

.imgGallery img {
    width: 100%;
    position: relative
}

.imgGallery a {
    position: relative
}

.imgGallery a::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: rgb(0 0 0 / 60%);
    background-image: url(../images/icons/view_icon.png);
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all .3s ease
}

.imgGallery a:hover::after {
    opacity: 1
}

.imgGallery a:nth-child(2),
.imgGallery a:nth-child(4) {
    grid-column-end: span 2;
    grid-row-end: span 2
}

.heading h3 {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--heading);
    width: fit-content;
    margin: 0 auto 25px
}

.chat-icon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #fff;
    border-radius: 100%;
    z-index: 99
}

footer {
    padding: 4rem 0 1rem;
    position: relative;
    background-color: #34373c;
    color: #fff
}

.footer_logoWrapper {
    display: flex;
    align-items: flex-start;
    justify-content: left;
    gap: 20px
}

.footer_logoWrapper img:nth-child(1) {
    width: 110px
}

.footer_logoWrapper img:nth-child(2) {
    width: 90px
}

.footerConnect a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: fit-content
}

.footerConnect img {
    width: 30px
}

.footerL {
    text-align: center;
    padding-right: 55px
}

.footerL img {
    width: 150px
}

.fc3 img {
    height: 25px;
    object-fit: contain;
    transition: all .2s
}

.fc3 img:hover {
    filter: brightness(0) invert(1)
}

.footerConnect h4 {
    margin-bottom: 0;
    font-size: 22px;
    font-family: var(--heading);
    font-weight: 400
}

.footer_topSec {
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #646464
}

.footer_bottom_left h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-family: var(--heading);
    font-weight: 600
}

.footer_bottom_left .hero_btn {
    padding: 3px 15px;
    font-size: 14px
}

.footer_bottom_left ul {
    list-style: none;
    padding-left: 0
}

.footer_bottom_left .quicklinks li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    transition: all .25s;
    color: #b1a9a9;
    width: fit-content
}

.footer_bottom_left .quicklinks li a {
    transition: all .25s
}

.footer_bottom_left .quicklinks li a:hover {
    color: #ff5722;
    padding-left: 5px
}

.footer_bottom_left .quicklinks li::after {
    position: absolute;
    content: '';
    width: 25px;
    height: 20px;
    background-image: url(../images/icons/right_arrow.png);
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    top: 3px
}

.footer_bottom_left .form-control {
    background: #626262;
    border-color: #626262;
    border-radius: 0;
    margin-bottom: 10px;
    color: #ff5722
}

.footer_bottom_left p {
    color: #b1a9a9
}

.footer_bottom_left .form-control::placeholder {
    font-size: 14px;
    color: #ccc9c8;
    font-weight: 600;
    font-weight: var(--heading);
    transition: all .2s
}

.footer_bottom_left .form-control:focus {
    color: #ff5722;
    background-color: #34373c;
    border-color: #ff5722;
    outline: 0;
    box-shadow: unset
}

.footer_bottom_left .form-control:focus::placeholder {
    color: #ff5722
}

.conad li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    transition: all .25s;
    color: #b1a9a9;
    width: fit-content
}

.conad li::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    top: 3px
}

.conad li:nth-child(1):after {
    background-image: url(../images/icons/fcLocation.svg)
}

.conad li:nth-child(2):after {
    background-image: url(../images/icons/phone.svg)
}

.conad li:nth-child(3):after {
    background-image: url(../images/icons/fcMail.svg);
    background-size: 16px
}

.footerCredit {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    color: #b1a9a9
}

.footerCredit p {
    margin-bottom: 0;
    font-size: 14px
}

.footerCredit p:hover a {
    color: #ff5722;
    transition: all .25s
}

.social_connect {
    position: fixed;
    top: 50%;
    left: 0;
    z-index: 111;
    transform: translateY(-50%)
}

.social_connect::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 30px 30px 0;
    border-color: transparent #000 transparent transparent;
    transform: rotate(45deg);
    bottom: 61px;
    left: -7px;
    transition: all .3s;
    z-index: -1
}

.social_connect::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 30px 30px 0;
    border-color: transparent #000 transparent transparent;
    transform: rotate(-45deg);
    top: 61px;
    left: -7px;
    transition: all .3s;
    z-index: -1
}

.social_connect:hover::before {
    top: -40px
}

.social_connect:hover::after {
    bottom: -40px
}

.social_connect ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    transform: translateX(-40px);
    transition: all .3s ease;
    transition-delay: .15s;
    position: relative
}

.social_connect ul::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background-size: 20px;
    background-color: #000;
    background-repeat: no-repeat;
    background-image: url(../images/icons/arrow-right.png);
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    transition: all .2s;
    z-index: -1
}

.social_connect:hover ul::after {
    left: 0
}

.social_connect:hover ul {
    transform: translateX(0)
}

.social_connect ul li a {
    line-height: 40px;
    display: block;
    width: 40px;
    text-align: center;
    border-bottom: 1px solid #565050;
    transition: all .25s;
    background-color: #111
}

.social_connect ul li:hover a {
    background-color: #fff
}

.social_connect ul li:last-child a {
    border-bottom: unset
}

.social_connect img {
    width: 20px
}

#breadcrumb_area {
    padding: 150px 0 100px;
    position: relative;
    color: #fff;
    background: url(../images/breadcrumb.jpg);
    background-size: cover;
    background-position: center;
    z-index: 1;
    background-repeat: no-repeat
}

#breadcrumb_area::after {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: -1
}

#breadcrumb_area::before {
    position: absolute;
    content: '';
    background: url(../images/breadcrumb_after.svg);
    width: 100%;
    height: 160px;
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
    bottom: 0
}

.breadcrumb_heading h2 {
    font-size: 40px
}

.breadcrumb_heading ul {
    display: flex;
    list-style: none;
    padding-left: 0;
    gap: 30px;
    color: #f3f3f3
}

.breadcrumb_heading ul li {
    position: relative;
    font-weight: 600;
    font-size: 15px
}

.breadcrumb_heading ul li::after {
    position: absolute;
    content: '';
    width: 2px;
    height: 14px;
    right: -15px;
    top: 5px;
    background: #fff;
    transform: rotate(15deg)
}

.breadcrumb_heading ul li:last-child::after {
    display: none
}

#about_pSection {
    position: relative;
    padding: 5rem 0
}

.about_pSectionInnerRight img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 20px -10px rgb(0 0 0 / 20%)
}

.about_pSectionInnerLeft h3 {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 0;
    width: 68%
}

.about_pSectionInnerLeft p {
    font-size: 15px;
    color: #000;
    word-spacing: 1px;
    letter-spacing: .5px;
    line-height: 24px
}

.ptlg_top {
    padding-top: 80px
}

.pdngrgt {
    padding-right: 40px
}

.pdnglft {
    padding-left: 40px
}

.abtbtnSec {
    height: 100%;
    background: #fffcf0;
    border-radius: 10px;
    margin: 0 5px;
    padding: 20px 15px;
    box-shadow: 0 10px 20px -10px rgb(0 0 0 / 20%);
    position: relative;
    z-index: 1
}

.abtbtnSec img {
    position: absolute;
    width: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: .2
}

#gd_wrapper {
    position: relative;
    padding: 5rem 0
}

.tyi_1104fp {
    border-bottom: unset;
    justify-content: center;
    width: 830px;
    margin: 0 auto 20px
}

.tyi_1104fp.nav-tabs .nav-link {
    border: unset;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    position: relative
}

.tyi_1104fp .nav-item::after {
    position: absolute;
    content: '';
    width: 2px;
    height: 50%;
    background-color: #000;
    right: -5px;
    top: 50%;
    transform: translateY(-50%)
}

.tyi_1104fp li.nav-item:last-child::after {
    display: none
}

.tyi_1104fp.nav-tabs .nav-item.show .nav-link,
.tyi_1104fp.nav-tabs .nav-link.active {
    background-color: unset;
    font-weight: 700
}

.tyi_1104fp.nav-tabs .nav-link.active::after {
    position: absolute;
    content: '';
    width: 75%;
    height: 2px;
    background-color: #ec1f1f;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    transition: all .2s
}

.tyi_1104fp .nav-item {
    position: relative
}

.tyi_1105fp {
    position: relative;
    background: #f0f0f0;
    padding: 2rem 0
}

.tyi_1107fp img {
    transform: scale(.7);
    transition: all .3s;
    opacity: .6;
    width: 100%
}

.tyi_1106fp .swiper-slide.swiper-slide-active .tyi_1107fp img {
    transform: scale(1);
    margin-top: 0;
    opacity: 1
}

.tyi_2101fp {
    background-color: #f0f0f0;
    padding: 2rem 0 3rem
}

.tyi_2103fp {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    position: relative
}

.tyi_2103fp h3 {
    position: relative;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: normal;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 20px
}

.tyi_2103fp h3::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--logo-color);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: all .2s
}

.tyi_2103fp p {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500
}

.tyi_2103fp .hero_btn {
    margin: 50px auto 0
}

#tyi_3101fp {
    padding: 2.5rem 0;
    background-color: #e8e8e8
}

.tyi_3102fp {
    max-width: 80%
}

.tyi_3103fp {
    display: flex;
    gap: 20px
}

.tyi_3103fp button {
    position: relative;
    border: unset;
    background: unset;
    font-size: 20px;
    padding: 0;
    font-weight: 500
}

.tyi_3103fp button:first-child::after {
    position: absolute;
    content: '';
    width: 2px;
    height: 70%;
    background-color: #000;
    right: -10px;
    top: 50%;
    transform: translateY(-50%)
}

.tyi_3104fp {
    position: relative;
    margin-top: 20px
}

.tyi_3104fp ul {
    -webkit-column-count: 3;
    -webkit-column-gap: 45px;
    -moz-column-count: 3;
    -moz-column-gap: 45px;
    column-count: 3;
    column-gap: 45px;
    padding-left: 0;
    list-style: none;
    line-height: 22px;
    display: none
}

.tyi_3103fp button.active {
    font-weight: 700
}

.ai.active,
.rr.active {
    display: block;
    transition: all .3s
}

.tyi_3104fp ul li {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500
}

#md_section {
    position: relative;
    padding: 5rem 0
}

.team_wrapper_outer {
    display: flex;
    position: relative
}

.team_wrapper_left_wrapper {
    width: 30%;
    text-align: center;
    padding: 25px 20px 15px;
    border: 2px dashed #ff7246;
    position: relative
}

.team_wrapper_left_wrapper img:first-child {
    width: 120px;
    border-radius: 50%;
    height: 120px;
    object-fit: cover;
    object-position: center
}

.team_wrapper_left_wrapper img:last-child {
    width: 200px;
    object-fit: contain;
    height: auto
}

.team_wrapper_left_wrapper h3 {
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.4;
    color: #282828;
    font-size: 22px;
    letter-spacing: -.04em;
    margin-top: 15px;
    margin-bottom: 10px
}

.team_wrapper_left_wrapper h6 {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    font-weight: 700
}

.team_wrapper_right_wrapper {
    width: 70%;
    position: relative;
    padding-left: 30px
}

.team_wrapper_right_wrapper ul {
    position: relative;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px
}

#academics_section {
    padding: 5rem 0;
    position: relative
}

.addmission_leftWrapper {
    position: relative;
    padding-right: 50px
}

.addmission_leftWrapper ul {
    padding-left: 0;
    list-style: none
}

.outerLi {
    margin-bottom: 5px
}

.outerLi h3 {
    position: relative;
    padding-left: 25px;
    font-size: 22px;
    font-weight: 700
}

.outerLi p {
    padding-left: 25px
}

.outerLi h3::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../images/icons/admission_arrow.svg);
    left: 0;
    top: 4px;
    transform: rotate(180deg)
}

.innerLi {
    position: relative;
    padding-left: 50px;
    margin-bottom: 8px
}

.innerLi::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/icons/right_arrow.png);
    left: 25px;
    top: 2px;
    background-size: 20px
}

#admission_section {
    padding: 5rem 0;
    position: relative
}

.pl0 {
    padding: 20px 30px;
    box-shadow: 0 10px 20px -10px rgb(0 0 0 / 30%);
    position: sticky;
    top: 0
}

.pl0 .form-control {
    padding-left: 15px
}

#news_Section {
    position: relative;
    padding: 5rem 0
}

.news_section_Wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all .25s ease-in-out;
    margin-bottom: 20px
}

.news_section_Wrapper:hover {
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, .2)
}

.ns_imgWrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px
}

.ns_imgWrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    position: relative;
    border-radius: 20px;
    transition: all .8s ease-in
}

.ns_imgWrapper::after {
    position: absolute;
    content: '';
    width: 50%;
    height: 100%;
    right: -50%;
    top: -50%;
    background-color: rgba(0, 0, 0, .4);
    z-index: 1;
    transition: all .25s ease-in
}

.ns_imgWrapper::before {
    position: absolute;
    content: '';
    width: 50%;
    height: 100%;
    left: -50%;
    bottom: -50%;
    background-color: rgba(0, 0, 0, .4);
    z-index: 1;
    transition: all .25s ease-in
}

.news_section_Wrapper:hover .ns_imgWrapper::after {
    right: 0;
    top: 0
}

.news_section_Wrapper:hover .ns_imgWrapper::before {
    left: 0;
    bottom: 0
}

.news_section_Wrapper:hover .ns_imgWrapper img {
    transform: scale(1.05)
}

.ns_txtWrapper {
    padding: 0 15px 15px;
    position: relative
}

.eventDate {
    position: relative;
    top: -25px;
    z-index: 1;
    width: 55px;
    height: 55px;
    background: #fa0000;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px -10px rgb(0 0 0 / 50%)
}

.eventDate span {
    display: block;
    width: 100%
}

.eventDate span:first-child {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px
}

.eventDate span:last-child {
    font-size: 12px;
    font-family: var(--subHeading);
    line-height: 12px;
    font-weight: 700;
    text-transform: uppercase
}

.ns_news_Wrapper h3 {
    font-family: var(--subHeading);
    color: #ff7246;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.ns_news_Wrapper p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0
}

#galSection {
    position: relative;
    padding: 5rem 0 3.8rem
}

.photo_details_wrapper {
    margin-bottom: 20px
}

.photo_details_imgWrapper {
    position: relative;
    z-index: 1
}

.photo_details_imgWrapper::after {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    inset: 0;
    opacity: 0;
    transition: all .25s ease;
    z-index: 1
}

.photo_details_imgWrapper::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .25s ease;
    background-image: url(../images/icons/view_icon.png);
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-self: center;
    opacity: 0;
    z-index: 2
}

.photo_details_imgWrapper:hover::after,
.photo_details_imgWrapper:hover::before {
    opacity: 1
}

.photo_details_imgWrapper img {
    width: 100%;
    height: 280px;
    object-fit: cover
}

.photo_details_textWrapper {
    margin-top: 15px
}

.photo_details_textWrapper h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: -.4px
}

#franchise_section {
    position: relative;
    padding: 5rem 0
}

#ourSchool_section {
    padding: 5rem 0 4rem;
    position: relative
}

.ourSchool_sectionWrapper {
    position: relative;
    height: 250px;
    margin-bottom: 20px;
    box-shadow: 0 10px 15px -10px rgb(0 0 0 / 30%);
    overflow: hidden
}

.ourSchool_sectionWrapper:hover .ourSchool_imgWrapper img {
    transform: scale(1.2) rotate(2deg)
}

.ourSchool_imgWrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
    overflow: hidden;
    transition: all .3s ease
}

.ourSchool_textWrapper {
    background: #ff7246de;
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center
}

.ourSchool_textWrapper a {
    color: #fff;
    width: 100%;
    line-height: 60px
}

#con_section {
    padding: 5rem 0;
    position: relative
}

.con_formWrapper {
    padding-right: 40px
}

.con_formWrapper label {
    margin: 0;
    margin-bottom: 5px;
    font-weight: 400
}

.g_map {
    padding-top: 5rem
}

.g_map iframe {
    width: 100%;
    height: 450px
}

.conDetailsWrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    box-shadow: 0 10px 20px -10px rgb(0 0 0 / 30%)
}

.conInner {
    width: 50%;
    padding: 20px;
    height: 230px
}

.conInner:nth-child(1),
.conInner:nth-child(4) {
    background-color: #ff7246;
    color: #fff
}

.conInner:nth-child(1) h3,
.conInner:nth-child(4) h3 {
    border-bottom: 1px dashed #fff
}

.conInner h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--heading);
    width: fit-content;
    margin-bottom: 15px;
    padding-bottom: 4px;
    border-bottom: 1px dashed #ff5722
}

#facilitySection {
    padding: 5rem 0 0
}

.lg-next,
.lg-prev {
    width: 2.25rem;
    height: 2.25rem
}

.lg-next::before,
.lg-prev::after {
    position: absolute;
    content: '';
    width: 2.25rem;
    height: 2.25rem;
    background: url(../images/icons/gal_arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35px;
    top: 0;
    left: 0;
    opacity: .6;
    transition: all .2s
}

.lg-next::before {
    transform: rotate(180deg)
}

.lg-close::after {
    position: absolute;
    content: '' !important;
    width: 2.25rem;
    height: 2.25rem;
    background: url(../images/icons/galclose.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35px;
    top: 10px;
    right: 10px;
    opacity: .6;
    transition: all .2s
}

.lg-download::after {
    position: absolute;
    content: '' !important;
    width: 2.25rem;
    height: 2.25rem;
    background: url(../images/icons/galdownlaod.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px;
    opacity: .6;
    transition: all .2s;
    right: 50px;
    top: 10px
}

.lg-close:hover::after,
.lg-download:hover::after,
.lg-next:hover::before,
.lg-prev:hover::after {
    opacity: 1
}

.innserGalListiingWrapper {
    padding-top: 5rem !important
}

.innserGalListiing {
    display: flex;
    flex-wrap: wrap;
    gap: 2%
}

.innserGalListiing>* {
    width: 23.5%
}

.innserGalListiing a img {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    object-fit: cover;
    object-position: top
}

#news_detailSection {
    position: relative;
    padding: 5rem 0 4rem
}

.news_detailWrapper {
    position: relative;
    padding: 10px;
    border: 1px solid #f2f2f2
}

.news_detailImgWrapper img {
    width: 100%
}

.event_date {
    font-size: 14px;
    position: relative;
    margin: 10px 0;
    font-weight: 500;
    color: #646464
}

.news_detailTextWrapper h3 {
    color: #ff7246;
    font-size: 24px
}

.lg-container.lg-show {
    z-index: 9999;
    position: relative
}

@media only screen and (max-width:1200px) {
    .container {
        max-width: 1100px
    }
}

@media only screen and (max-width:1100px) {
    .container {
        max-width: 992px;
        padding: 0 20px
    }

    .offcanvas {
        max-width: 300px;
        width: 100%
    }

    #about_pSection,
    #academics_section,
    #admission_section,
    #con_section,
    #facilitySection,
    #franchise_section,
    #galSection,
    #gd_wrapper,
    #md_section,
    #news_Section,
    #news_detailSection,
    #ourSchool_section {
        padding: 2rem 0
    }

    .pdngrgt {
        padding-right: 20px
    }

    .course_righttextInner h3 {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .abt_imgWrapperSubInner img:nth-child(1) {
        left: 0
    }

    .abt_imgWrapper .heroAbt_img {
        margin-right: 25px
    }

    .abt_imgWrapperSubInner h2 {
        left: 52%;
        position: absolute;
        font-weight: 900;
        font-size: 40px;
        text-transform: uppercase;
        color: #fff;
        text-shadow: 0 0 10px #2a25b22e;
        bottom: -70px
    }

    #about_section {
        padding: 6rem 0 2rem
    }

    .course_leftSectionInner h3 {
        text-align: right;
        width: 85%
    }

    .course_rightSection {
        padding-left: 0
    }

    .wave_bgsrt img {
        height: 70px
    }

    .wave_bgbtm img {
        height: 60px
    }

    #cp_section {
        padding: 4rem 0 5rem
    }

    .conad li {
        word-break: break-all
    }
}

@media only screen and (max-width:880px) {
    #breadcrumb_area::before {
        background-position: bottom
    }

    .navbar-nav {
        display: none
    }
}

@media only screen and (max-width:480px) {
    .navbar {
        flex-direction: row-reverse
    }

    .navbar-brand {
        margin-left: 0
    }

    .navbar-brand img:nth-child(1) {
        width: 85px
    }

    .navbar-brand img:nth-child(2) {
        width: 70px
    }

    .hero_textSliderWrapper {
        max-width: 80%;
        width: 100%;
        top: 60%
    }

    .cp_leftWrapper {
        padding-right: 0
    }

    .hero_textSliderWrapper h3 {
        font-size: 36px;
        white-space: normal
    }

    .photo_details_textWrapper h3 {
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        letter-spacing: -.4px;
        color: #ff5722
    }

    .galSection .row>* {
        width: 50%
    }

    .photo_details_imgWrapper img {
        height: 160px
    }

    .pdngrgt {
        padding-right: 0
    }

    .about_pSectionInnerLeft h3 {
        width: 100%;
        color: #ff5722;
        font-size: 25px
    }

    .about_pSectionInnerRight img {
        margin-bottom: 20px
    }

    #breadcrumb_area {
        padding: 100px 0 75px
    }

    .innserGalListiing>* {
        width: 48.5%
    }

    .innserGalListiingWrapper {
        padding-top: 2rem !important
    }

    .innserGalListiing a img {
        margin-bottom: 10px
    }

    #img_gallery {
        padding: 2rem 0 2rem
    }

    .addmission_leftWrapper {
        padding-right: 0;
        margin-top: 40px
    }

    .outerLi h3 {
        padding-left: 25px;
        font-size: 18px;
        font-weight: 500;
        line-height: 24px
    }

    .innerLi {
        padding-left: 25px
    }

    .innerLi::after {
        left: 0
    }

    .rr {
        flex-direction: column-reverse
    }

    .footerConnect {
        margin-bottom: 15px
    }

    .count_stats .row>*,
    .smsc_50>* {
        width: 50%;
        padding-right: calc(var(--bs-gutter-x) * .3);
        padding-left: calc(var(--bs-gutter-x) * .3)
    }

    #counter-box .counter {
        font-size: 30px;
        margin-bottom: 20px
    }

    #counter-box h3 {
        font-size: 14px
    }

    #count_stats {
        padding: 3rem 0 0
    }

    #about_section {
        padding: 3rem 0 2rem
    }

    .abt_textWrapper h1,
    .abt_textWrapper li {
        width: 100%
    }

    .abt_textWrapper h1 {
        font-size: 29px;
    }

    .imgGallery {
        grid-template-columns: repeat(3, 1fr)
    }

    .course_wrapper {
        width: 100%
    }

    .course_leftSectionInner h3 {
        text-align: left !important;
        width: 100%;
        font-size: 25px;
        width: fit-content;
        margin-left: 0
    }

    .course_leftSectionInner p {
        text-align: left !important
    }

    .course_leftSectionInner .hero_btn {
        margin-left: 0 !important
    }

    .course_righttextInner {
        padding: 10px 5px
    }

    .course_righttextInner h3 {
        font-size: 18px;
        font-family: var(--heading);
        font-weight: 500;
        -webkit-line-clamp: 2;
        line-height: 24px
    }

    .course_righttextInner p {
        -webkit-line-clamp: 3;
        color: #e5e5e5;
        line-height: 20px
    }

    .course_rightInner img {
        height: 150px;
        object-fit: cover
    }

    .wave_bgbtm img,
    .wave_bgsrt img {
        height: 40px
    }

    #eventsSection::after {
        background: linear-gradient(45deg, #ec7753 0, #ffab00 100%)
    }

    .events_section {
        margin-right: 0;
        border: 1px solid #f5b243
    }

    .cp_leftWrapper h3,
    .events_sectionHeading h3,
    .quick_enq h3 {
        font-size: 25px
    }

    .event_date span {
        position: relative;
        top: 2px;
        color: #fff;
        font-weight: 400
    }

    .event_date img {
        filter: brightness(0) invert(1)
    }

    .events_section {
        color: rgb(255 255 255)
    }

    .events_sectionHeading a {
        border: 1px solid #e5e5e5
    }

    .event_details p {
        color: #e5e5e5 !important
    }

    .quick_enq {
        padding-left: 0;
        padding-top: 50px
    }

    #eventsSection .form-control {
        background-color: #ffce9a;
        border: 1px solid #ed7950
    }

    #eventsSection .quick_enq label {
        color: #fff
    }

    #eventsSection .quick_enq .hero_btn {
        color: #fff;
        outline-color: #fff
    }

    #eventsSection .quick_enq h3 {
        color: #fff
    }

    .ourSchool_textWrapper a {
        color: #fff;
        line-height: 18px;
        font-size: 15px;
        display: block;
        word-break: break-word
    }

    .ourSchool_textWrapper {
        background: #00000094;
        padding: 10px
    }

    .ourSchool_imgWrapper img,
    .ourSchool_sectionWrapper {
        height: 170px
    }

    .pl0 {
        box-shadow: unset;
        padding: 0
    }

    .con_formWrapper {
        padding-right: 0
    }

    .conInner {
        width: 100%;
        height: auto
    }

    .conInner:nth-child(3) {
        background-color: #ff7246;
        color: #fff
    }

    .conInner:nth-child(4) {
        background-color: unset;
        color: #000
    }

    .news_detailTextWrapper .event_date span {
        color: #646464
    }

    .hero_sliderSection .swiper-slide .hero_imgSliderWrapper img {
        height: 55vh
    }

    .tyi_1104fp {
        width: 100%
    }

    .tyi_1104fp .nav-item {
        width: 50%
    }

    .tyi_1104fp.nav-tabs .nav-link {
        margin: 0 auto;
        font-size: 16px
    }

    .tyi_1104fp .nav-item::after {
        display: none
    }

    .tyi_1104fp.nav-tabs .nav-item.show .nav-link,
    .tyi_1104fp.nav-tabs .nav-link.active {
        font-weight: 500
    }

    .tyi_1107fp img {
        transform: scale(.9)
    }

    #facilitySection {
        padding-bottom: 0
    }

    .team_wrapper_outer {
        flex-wrap: wrap
    }

    .team_wrapper_left_wrapper,
    .team_wrapper_right_wrapper {
        width: 100%
    }

    .team_wrapper_right_wrapper {
        padding-left: 0;
        margin-top: 20px
    }

    .mb-sm-0 {
        margin-bottom: 0 !important
    }

    .pb0 {
        padding-bottom: 0 !important
    }

    .pdnglft {
        padding-left: 0
    }

    .ptlg_top {
        gap: 20px;
        padding-top: 20px
    }

    .footerConnect img {
        width: 20px
    }

    .fc3 ul {
        gap: 0 !important
    }

    .fc3 ul li {
        margin-right: 10px
    }

    .footerCredit {
        flex-wrap: wrap;
        text-align: center
    }

    .footerCredit p {
        width: 100%
    }

    .footerCredit p a {
        display: block
    }

    .breadcrumb_heading h2 {
        font-size: 30px
    }

    .footerL {
        text-align: left;
        padding-right: 0
    }

    .innserGalListiing a img {
        height: 160px
    }
}









.fix-bt {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999999999;
    right: 9px;
    writing-mode: tb-rl;
}
.fix-bt a {
    padding: 20px 9px;
    color: #fff;
    background-color: #007cba;
    text-decoration: none;
    font-size: 17px;
    letter-spacing: 0.55px;
    font-weight: 100;
    font-family: cursive;
}
@media only screen and (max-width: 552px) {
    .fix-bt {
        width: 100%;
        position: fixed;
        top: initial;
        transform: initial;
        z-index: 9;
        right: 0;
        writing-mode: initial;
        bottom: 0;
    }
    .fix-bt a {
        padding: 11px 20px;
        color: #fff;
        background-color: #007cba;
        text-decoration: none;
        font-size: 17px;
        letter-spacing: 0.55px;
        font-weight: 100;
        font-family: sans-serif;
        display: flex;
        justify-content: center;
    }
    .abt_imgWrapper{
        display:none;
    }
}
.pagination a {
    margin: 2px;
    padding: 0.3em 0.64em 0.43em 0.64em;
    background-color: #fa0000;
    text-decoration: none;
    color: #fff;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    -webkit-border-radius: .125rem;
    border-radius: .125rem;
}
.loading-overlay{width:100%;height:100%;background:rgba(0,0,0,.5);position:fixed;z-index:9999;inset: 0;display:none; }
.loading-overlay img{width:100px; }