/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
}
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: unset;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #F15A26;
}
html::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 50rem;
}
a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}
ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
body {
    color: #000;
    font-family: "Lora Regular";
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 181.25%;
}
a,
a:hover,
a:focus {
    color: #F15A26;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}
h1,
h2,
h3,
h4,
p {
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}
h1{
    font-family: "LondrinaSolid Regular";
    font-weight: normal;
}
h2, h3, h4, h5{
    font-family: "Lora Bold";
    font-weight: normal;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
main {
    overflow: clip;
}
img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}
.w-100 {
    width: 100% !important;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.text-center {
    text-align: center;
}
.container-fluid {
    padding: 0 40px;
}
.fixed-btn {
    position: fixed;
    right: 20px;
    bottom: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}
.wp{
    width: 96px;
    height: 96px;
    background: #29A71A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}
.wp:hover{
    scale: 1.05;
    transform: translateY(-20px);
}
.enq-btn {
    color: #000;
    font-family: "League Spartan SemiBold";
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    overflow: clip;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 30px;
    background: #FFC107;
    height: 165.277px;
    width: 45.149px;
    z-index: 1;
    &:after{
    inset: 0;
    background: #4D2D8C;
    content: "";
    z-index: -1;
    position: absolute;
    scale: 0 1;
    transition: all .5s;
    transform-origin: right;
    }
    &:hover,
    &:focus{
        color: #FFF;
        img{
            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7456%) hue-rotate(112deg) brightness(97%) contrast(104%);
        }
        &::after{
            scale: 1 1;
        }
    }
}
.enq-btn:hover::after,
.enq-btn:focus-visible::after {
    scale: 1 1;
    transform-origin: right;
}
/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}
.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}
.popup .popup__content {
    width: 50%;
    padding: 0px;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}
.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #F15A26;
    transition: all .5s;
    z-index: 9;
}
.popup .popup__content .close:hover {
    background-color: #000;
}
.popup .popup__content .close:hover span {
    background-color: #FFF;
}
.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #FFF;
}
.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}
.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}
.left {
    display: flex;
    align-items: end;
    background: linear-gradient(rgb(255 255 255 / 0%), rgb(255 255 255 / 47%)), url(../img/join-thumbnail.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
.left .logo{
    height: auto;
    position: relative;
    z-index: 1;
}
.right {
    padding: 30px;
    background: #FFF;
    .title{
        margin-bottom: 20px;
        color: #F15A26;
        padding-block: 0;
    }
}
/**************************************
                Helper Class
**************************************/
.sec-gap {
    padding: 60px 0;
}
.pb-80 {
    padding-bottom: 60px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-40{
    margin-bottom: 40px;
}
p{
    color: #000;
    font-family: "Lora Regular";
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 181.25%;
}
.title {
    color: #000;
    font-family: "Lora Bold";
    font-size: 39px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 4px;
}
.sub-section-title{
    color: #000;
    font-family: "Lora Regular";
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    line-height: 166.667%;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    span{
        display: inline-block;
        width: 23px;
        height: 1px;
        background: #000;
    }
}
.section-title {
    color: #161616;
    font-family: "Lora Bold";
    font-size: 48px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 17px
}
.card-title{
    color: #FFF;
    font-family: "Lora SemiBold";
    font-size: 21px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}
.primary-btn {
    border-radius: 8px;
    background: #F15A26;
    padding: 20px 45px;
    color: #FFF;
    font-family: "Lora Bold";
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 14px;
}
.primary-btn:before,
.primary-btn:after,
.secondary-btn::before,
.secondary-btn::after {
  content: "";
  z-index: -1;
  width: calc(100% + 40px);
  height: 100%;
  position: absolute;
  top: 0;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
  transition: transform 0.6s;
}
.primary-btn:before,
.secondary-btn::before {
  left: calc(-100% - 40px);
}
.primary-btn:after,
.secondary-btn::after {
  left: 100%;
  transform: rotate(180deg);
    background: #000;
}
.primary-btn:hover:before,
.secondary-btn:hover:before {
  transform: translateX(100%);
}
.primary-btn:hover:after,
.secondary-btn:hover:after {
  transform: rotate(180deg) translateX(100%);
}
.primary-btn:hover {
    color: #FFF;
}
.primary-btn:focus{
    color: #FFF;
}
.secondary-btn{
    background: #000;
    border: none;
    padding: 17px 26px;
}
.secondary-btn::after {
  background: #F15A26;
}
.secondary-btn:hover {
    color: #FFF;
    img{
        filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(9%) hue-rotate(168deg) brightness(108%) contrast(102%);
    }
}
.secondary-btn:focus{
    color: #FFF;
} 
.form-control {
    font-family: "Domine Bold";
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: normal;
    display: flex;
    align-items: center;
    color: #0A0A0A;
    padding: 19px 20px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    border: 1px solid #000;
    background: #FFF;
    width: 100%;
    outline: none;
}
.form-control::placeholder{
    color: #0A0A0A;
}
.form-control:focus {
    border-color: #F15A26;
}
form .btn-group {
    justify-content: center;
}
form .primary-btn{
    border: 0;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    &:hover{
        color: #FFF;
        background: #000;
    }
}
input,
input:focus {
    outline: none;
    box-shadow: none !important;
}
label {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}
.form-group {
    position: relative;
}
.form-label{
    color: #FFF;
    font-family: "League Spartan Bold";
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 125%;
}
.interest-group{
    ul{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px 20px;
        width: 70%;
        li{
            width: 47%;
            display: flex;
            align-items: center;
            gap: 10px;
        }
    }
    input[type="checkbox"]{
        width: 15px;
        height: 15px;
        border-radius: 2px;
        cursor: pointer;
    }
}
.checkbox-lab{
    color: #FFF;
    font-family: "Roboto Regular";
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 0;
}
.italic {
    font-style: italic;
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}
/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}
/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}
.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}
.slideInRight {
    animation-name: slideInRight;
}
/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}
/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}
.zoomReverseIn {
    animation-name: zoomReverseIn;
}
/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}
.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}
/*******************************
	Menu
*******************************/
header {
    position: relative;
    z-index: 999;
    right: 0;
    left: 0;
    transition: all .5s;
    background: #FFF;
}
.topbar{
    padding-top: 13px;
    .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }
}
.header-btn-group{
    display: flex;
    align-items: center;
    gap: 14px;
    .primary-btn{
        font-size: 17px;
        padding: 12px 22px;
    }
}
.social-media-links{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    h5{
        color: #000;
        font-family: "Lora Bold";
        font-size: 16px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-right: 10px;
    }
    a{
        width: 33px;
        height: 33px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #EFEDED;
        transition: 0.5s;
        &:hover{
            background: #F15A26;
            border-color: #F15A26;
            img{
                filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(239deg) brightness(105%) contrast(101%);
            }
        }
    }
}
.call-btn{
    border: none;
    gap: 10px;
    font-family: "Lora Bold";
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    color: #000;
    display: flex;
    align-items: center;
    small{
        color: #000;
        font-family: "Lora Regular";
        font-size: 15px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
    }
    &:hover{
        color: #F15A26;
    }
}
.call-icon{
    width: 50px;
    height: 50px;
    background: #F15A26;
    padding: 12px;
    border-radius: 50%;
}
.bottombar{
    background: #000;
}
nav {
  position: relative;
  margin: 0 auto
}

#menu,
#menu .main-menu ul,
#menu .main-menu ul li,
#menu .main-menu ul li a,
#menu #head-mobile {
  border: 0;
  list-style: none;
  line-height: 1.2;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

#menu {
  position: relative;
  display: flex;
  align-items: center;
}

#menu>.main-menu>ul>li {
  float: left;
  padding-inline: 25px;
}

#menu>.main-menu>ul>li>a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
  font-family: "Lora Bold";
  padding: 20px 0;
  display: inline-block;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  &::after{
    content: '';
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 70%;
    height: 2px;
    background: #F15A26;
    scale: 0 0;
    transform-origin: left;
    transition: all .5s;
  }
}
#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
  &::after{
    scale: 1 1;
  }
}
#menu .main-menu #menu li.has-sub{
    ul.sub-menu li.current-menu-item {
        background: #000 !important;
		a{
			color: #FFF;
		}
    }
}
.has-sub{
  margin-right: 15px;
}
#menu>.main-menu>ul>li:hover,
#menu .main-menu ul li.current-menu-item:hover,
#menu .main-menu ul li.current-menu-item,
#menu .main-menu ul li.has-sub.current-menu-item:hover {
  background: #e9cba400 !important;
  -webkit-transition: background .3s ease;
  -ms-transition: background .3s ease;
  transition: background .3s ease;
}
#menu .main-menu ul .current-menu-parent li.current-menu-item{
	    background: #F15A26 !important;
	a{
		color:#fff;
	}
}
#menu>.main-menu>ul>li.has-sub>a::before {
  top: 24px;
    right: -14px;
  transition: all .4s;
  content: "";
  position: absolute;
  z-index: 11;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-left: 1px solid;
  transform: rotate(225deg);
}
/* #menu>.main-menu>ul>li:hover>a, #menu .main-menu ul li.current-menu-item>a {
    color: #F15A26;
} */
#menu .main-menu ul ul {
    position: absolute;
    left: -9999px;
    box-shadow: 0px 12px 10px 0px #0000004f;
    width: auto;
}

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: rgb(255, 255, 255);
    transition: all .25s ease
}


#menu li:hover>ul {
    left: auto
}

#menu li:hover>ul>li {
    height: 36px;
    display: block;
    align-items: center;
}

#menu ul ul ul {
    margin-left: 100%;
    top: 0
}

#menu ul ul li a {
    padding: 10px 20px;
    width: auto;
    font-family: "Lora Bold";
    font-size: 16px;
    text-decoration: none;
    font-weight: normal;
    white-space: nowrap;
    display: block;
    color: #000;
    font-style: normal;
    line-height: normal;
}

#menu .main-menu ul ul li:last-child>a,
#menu .main-menu ul ul li.last-item>a {
    border-bottom: 0
}

#menu .main-menu ul ul li:hover a {
    color: #FFF;
    background-color: #000;
}
#menu .main-menu ul ul li.has-sub ul li a{
    background-color: #fff;
    color: #000;
    &:hover{
        background-color: #D2B450;
        color: #fff;
    }

}
#menu .main-menu ul ul li.has-sub>a:after {
    position: absolute;
    top: 13px;
    right: 11px;
    width: 8px;
    height: 8px;
    display: block;
    content: '';
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
    transition: all .4s;
}


#menu .main-menu ul ul li.has-sub:hover,
#menu .main-menu ul li.has-sub ul li.has-sub ul li:hover {
    background: #ffffff
}

#menu ul ul ul li.active a {
    border-left: 1px solid #333
}

#menu>.main-menu>ul>li.has-sub>ul>li.active>a,
#menu .main-menu>ul ul>li.has-sub>ul>li.active>a {
    border-top: 1px solid #333
}

#menu .main-menu ul li.current-menu-item ul li a {
    color: #000;
}

#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}
.search-container{
    position: absolute;
    right: 0;
}
.search-box{
    position: relative;
}
.search-icon{
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.search-input{
    border-radius: 10px;
    background: rgba(38, 38, 38, 0.32);
    padding: 13px;
    border: none;
    color: #EAEAEA;
    font-family: "League Spartan Regular";
    font-size: 17px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    &::placeholder{
        color: #EAEAEA;
    }
}
/* Search Popup Overlay */
.search-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 76%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.search-popup-overlay.active {
    display: flex;
    opacity: 1;
}
/* Search Popup Content */
.search-popup-content {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    form{
        position: relative;
        .search-icon {
            right: 7px;
        }
    }
}
.search-popup-overlay.active .search-popup-content {
    transform: scale(1);
}
/* Close Button */
.close-search {
    position: absolute;
    top: 0px;
    right: 8px;
    width: 30px;
    height: 30px;
    border: none;
    background: #FFC107;
    color: #1C1C1C;
    border-radius: 50%;
    cursor: pointer;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
/* Search Input in Popup */
.popup-search-input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #4CAF50;
}

.search-popup-content h3 {
    margin-bottom: 15px;
    color: #333;
}
@media screen and (max-width:992px) {
    header {
        position: relative;
        width: 100%;
    }

    #menu .main-menu ul li.current-menu-item ul li a {
        color: #ffffff;
    }

    nav {
        width: 100%
    }

    #menu {
        width: 100%
    }

    #menu ul {
        width: 100%;
        display: none;
    }

    #menu .main-menu {
        width: 100%;
        position: fixed;
        height: 100% !important;
        background-color: #212020;
        transform: translateX(-100%);
        transition: all .4s;
        top: 0;
        left: 0;
        padding: 50px;
        overflow-y: scroll;
    }

    #menu .main-menu.open {
        transform: translateX(0%);
        z-index: 9;
    }
    #menu > .main-menu > ul > li > a {
      &::after {
          width: 10%;
          bottom: 10px;
      }
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
      display: none;
    }
    #menu .main-menu ul li {
        width: 100%;
    }

    #menu .main-menu ul li:hover {
        background: #363636
    }

    #menu .main-menu ul ul li,
    #menu li:hover>ul>li {
        height: auto
    }

    #menu .main-menu ul li a,
    #menu .main-menu ul ul li a {
        width: 100%;
        border-bottom: 0;
        color: #ffffff;
    }

    #menu>.main-menu>ul>li {
        float: none
    }

    #menu ul ul li a {
        padding-left: 25px
    }

    #menu ul ul li {
        background: #1b268600 !important
    }


    #menu ul ul ul li a {
        padding-left: 35px
    }

    #menu ul ul li a {
        color: #ddd;
        background: none
    }

    #menu ul ul li:hover>a,
    #menu ul ul li.active>a {
        color: #fff
    }

    #menu .main-menu ul ul {
        box-shadow: none;
    }

    #menu .main-menu ul ul,
    #menu .main-menu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
        top: 0;
        transform: unset;
        height: auto;
    }

    #menu .main-menu ul ul.open {
        transform: unset;
        background: #ffffff1a;
    }

    #menu>ul>li.has-sub>a:after,
    #menu>ul>li.has-sub>a:before,
    #menu ul ul>li.has-sub>a:after,
    #menu ul ul>li.has-sub>a:before {
        display: none
    }

    #menu #head-mobile {
        display: block;
        padding: 23px;
        color: #ddd;
        font-size: 12px;
        font-weight: 700
    }

    .hamburger {
        width: 55px;
        height: 48px;
        position: absolute;
        right: 0;
        top: -25px;
        cursor: pointer;
        z-index: 12399994;
    }

    .hamburger:after {
        position: absolute;
        top: 24px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #F15A26;
        border-bottom: 2px solid #F15A268C;
        content: '';
    }

    .hamburger:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 12px;
        right: 10px;
        display: block;
        height: 2px;
        width: 35px;
        background: #F15A26;
        content: '';
    }

    .hamburger.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 35px;
        background: #F15A26;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .hamburger.menu-opened:before {
        top: 23px;
        background: #F15A26;
        width: 35px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    #menu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 5px;
        top: 0;
        display: block;
        border-left: 0;
        height: 55px;
        width: 70px;
        cursor: pointer;
        background: #ffffff1a;
    }

    /* #menu .submenu-button.submenu-opened {
      background:#1b268600;
  } */

    #menu ul ul .submenu-button {
        height: 56px;
        width: 68px;
        background: rgb(255 255 255 / 3%);
    }

    #menu .submenu-button:after {
        position: absolute;
        top: 19px;
        right: 28px;
        width: 10px;
        height: 10px;
        display: block;
        content: '';
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
        transition: all .4s;
    }

    #menu ul ul .submenu-button:after {
       top: 25px;
        right: 27px;
    }

    #menu ul ul .submenu-button.submenu-opened:after {
        top: 16px;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 26px;
    }


    #menu ul ul .submenu-button:before {
        top: 12px;
        right: 16px
    }

    #menu .submenu-button.submenu-opened:before {
        display: none
    }

    #menu ul ul ul li.active a {
        border-left: none
    }

    #menu>ul>li.has-sub>ul>li.active>a,
    #menu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }
    #menu .main-menu ul ul li.has-sub>a:after{
        display: none;
    }
}
.flex-box {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    margin-left: 8px;
}

.logo{
    transition: all .5s;
}
header.sticky {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
    background-color: #fff;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
/* nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    z-index: 999;
    transition: ease-in-out .4s;

} */
.btn-group {
    display: flex;
    width: 100%;
}
/************************************* Home Page **************************************/
.banner {
    position: relative;
    .container{
        position: absolute;
        inset: 0;
        z-index: 1;
        .row{
            height: 100%;
            .col-lg-5:last-child{
                display: flex;
                align-items: center;
            }
        }
    }
}
.banner-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -9px;
}
.banner-content{
    padding-top: 40px;
    h1{
        color: #FFF;
        font-family: "LondrinaSolid Regular";
        font-size: 145px;
        font-style: normal;
        font-weight: normal;
        line-height:  86.207%;
        text-transform: uppercase;
        rotate: -4.92deg;
        text-shadow: 15px 8px 0px #000;
    }
    h2{
        display: inline-block;
        border-radius: 8px;
        background: #0B0B0B;
        color: #FFF;
        -webkit-text-stroke-width: 3px;
        -webkit-text-stroke-color: #F15A26;
        font-family: "LondrinaSolid Black";
        font-size: 62px;
        font-style: normal;
        font-weight: normal;
        line-height: 32.258%;
        text-transform: uppercase;
        padding: 30px;
        rotate: -9.225deg;
        float: right;
        span{
            -webkit-text-stroke-width: 0;
            color: #FFF;
            display: inline-block;
            font-family: "Lora Medium";
            font-size: 42px;
            font-style: normal;
            font-weight: normal;
            line-height: 47.619%;
            text-transform: lowercase;
        }
    }
    .btn-group{
        margin-top: 180px;
    }
}
.banner-btn{
    color: #0D0B0B;
    font-size: 26px;
    padding: 18px 36px;
    background: #FFF;
    box-shadow: 6px 8px 0px 0px #000;
    &::after{
        background: #F8D030;
    }
    &:hover{
        color: #000;
        box-shadow: 10px 12px 0px 0px #000;
        transform: translateY(-5px);
    }
    &:focus{
        color: #0D0B0B;
    }
}
.banner-form{
    border-radius: 20px;
    background: #FFF;
    overflow: hidden;
    margin-left: 70px;
    .text-center{
        padding-block: 20px;
        background: #F8D030;
    }
    p{
        color: #000;
        font-family: "Domine Regular";
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: 0;
    }
    form{
        padding: 25px;
        .btn-group{
            justify-content: flex-start;
        }
        .primary-btn{
            width: auto;
            padding: 20px 50px;
            font-size: 25px;
        }
    }
}
/* =============== About =============== */
.about{
    position: relative;
    .counter-item{
        border-radius: 20px;
        background: #F15A26;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        h3{
            font-size: 86px;
            margin-bottom: 20px;
        }
        h3, p{
            color: #FFF;
        }
    }
}
.back-flower{
    position: absolute;
    left: 0;
    bottom: 0;
}
.about-img{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
    }
    &:hover{
        img{
            scale: 1.05;
        }
    }
}
/*******************************
        Counter
*******************************/
.counter{
    background: #FAECE7;
}
.counter-item{
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 37px 0 rgba(0, 0, 0, 0.13);
    height: 100%;
    padding: 25px;
    position: relative;
    padding-left: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 1s;
    h3{
        color: #000;
        font-family: "Lora Bold";
        font-size: 53px;
        font-style: normal;
        font-weight: normal;
        line-height: 67.925%;
        margin-bottom: 15px;
        transition: 0.4s;
    }
    p{
        line-height: normal;
        margin-bottom: 0;
        transition: 0.4s;
    }
    &:hover{
        background: #F15A26;
        transform: translateY(-5px);
        .counter-icon{
            background: #FFF;
            img{
                transform: rotateY(180deg);
                filter: brightness(0) saturate(100%) invert(52%) sepia(53%) saturate(5639%) hue-rotate(348deg) brightness(98%) contrast(92%);
            }
        }
        h3, p{
            color: #FFF;
        }
    }
}
.counter-icon{
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 77px;
    height: 77px;
    background: #F15A26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.8s;
}
/*******************************
        Siliguri Banner
*******************************/
.siliguri-banner{
    background: url(../img/siliguri-overlay.webp) no-repeat;
    background-size: cover;
    padding-block: 90px;
    .section-title{
        font-size: 53px;
        color: #fff;
    }
    p{
        color: #FFF;
    }
    .btn-group{
        justify-content: center;
    }
}
.slick-slide{
    margin: 0 15px;
}
.slick-list{
    margin: 0 -15px;
}
.slick-arrow{
    width: 33px;
    height: 33px;
    background: #000;
    border-radius: 50%;
    z-index: 2;
    transition: 0.5s;
    top: 35%;
    &::before {
        position: absolute;
        content: '';
        width: 70%;
        height: 70%;
        left: 55%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: url(../img/slide-arrow.webp) no-repeat;
        background-size: contain;
        background-position: center;
        transition: 0.5s;
    }
    &:hover,
    &:focus{
        background: #000;
    }
}
.slick-prev{
    left: -60px;
    &::before{
        left: 45%;
        transform: translate(-50%, -50%) rotate(180deg);
    }
}
.slick-next{
    right: -60px;
}
/*******************************
        Courses
*******************************/
.courses{
    position: relative;
    z-index: 1;
    &::after{
        content: '';
        position: absolute;
        width: 43%;
        height: 100%;
        background: url(../img/course-bg.webp) no-repeat;
        background-size: cover;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
    }
}
.courses-box{
    border-radius: 20px;
    background: #FFEFE9;
    overflow: hidden;
}
.courses-content{
    padding: 25px;
    padding-top: 40px;
    position: relative;
    .card-title{
        width: 310px;
        height: 81px;
        position: absolute;
        border-radius: 0 50px 50px 0;
        background: #F15A26;
        padding: 16px;
        display: flex;
        align-items: center;
        left: 0;
        top: -60px;
        box-shadow: -30px 10px 0px 0px #000;
    }
    .secondary-btn{
        &::after{
            background: #F15A26;
        }
        &:hover{
            color: #FFF;
            img{
                filter: unset;
            }
        }
    }
}
/*******************************
    Success
*******************************/
.success{
    position: relative;
    display: flex;
    justify-content: end;
    .container{
        position: absolute;
        inset: 0;
    }
}
.succes-box-content{
    position: relative;
    width: 54.5%;
}
.success-bg1{
    position: absolute;
    object-fit: cover;
    height: 100%;
    left: 0;
    top: 0;
}
.success-bg2{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.success-content{
    position: absolute;
    top: 0;
    left: 0;
    padding: 40px;
    padding-right: 27%;
    .section-title, p{
        color: #FFF;
    }
}
.success-slider{
    position: absolute;
    width: 124%;
    left: -240px;
    top: 240px;
    .slick-arrow{
        background: transparent;
        width: 50px;
        height: 20px;
        top: 115%;
        left: 25%;
        &::before{
            background: url(../img/slick-arrow2.webp) no-repeat;
            width: 100%;
            height: 100%;
            background-size: contain;
        }
    }
    .slick-list{
        border-radius: 20px;
    }
    .slick-next{
        top: 116%;
        left: 30%;
    }
}
.success-card{
    border-radius: 20px;
    background: #FFF;
    padding: 30px;
    img{
        border-radius: 20px;
        margin-bottom: 10px;
        width: 100%;
        height: 100%;
    }
    .card-title{
        color: #000;
        font-size: 25px;
        margin-bottom: 5px;
    }
    p{
        margin-bottom: 0;
    }
}
/*******************************
    Join
*******************************/
.join{
    position: relative;
    .sub-section-title{
        justify-content: center;
    }
    &::after {
        content: '';
        position: absolute;
        width: 43%;
        height: 100%;
        background: url(../img/join-bg.webp) no-repeat;
        background-size: 100%;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
    }
    .container{
        padding-left: 35px;
    }
}
.join-img{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    &:hover{
        .join-bg{
            scale: 1.05;
        }
    }
}
.play-btn {
    width: 114px;
    height: 114px;
    background: #F15A26;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.play-btn:before{
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 114px;
    height: 114px;
    background: rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.join-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -10px;
}
.join-card{
    width: 100%;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 30px;
    padding-left: 80px;
    z-index: 1;
    margin-bottom: 40px;
    .card-title{
        color: #161616;
        font-size: 26px;
    }
    p{
        margin-bottom: 0;
    }
    &::after{
        position: absolute;
        content: '';
        width: 22%;
        height: 100%;
        background: url(../img/join-vector.webp) no-repeat;
        background-size: cover;
        border-radius: 0 20px 20px 0;
        right: 0;
        top: 0;
        z-index: -1;
    }
    &:hover{
        .card-title{
            color: #F15A26;
        }
        .join-icon{
            img{
                transform: rotateY(180deg);
            }
        }
    }
}
.join-icon{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
    width: 90px;
    height: 90px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.join-content{
    padding-right: 50px;
    .secondary-btn::after{
        background: #FFF0B2;
    }
    .secondary-btn:hover{
        color: #3b3b3b;
    }
}
/*******************************
     International
*******************************/
.international{
    background: url(../img/international-bg.webp) no-repeat;
    background-size: cover;
    padding: 70px 0;
    .section-title{
        color: #FFF;
    }
    h5{
        color: #161616;
        font-family: "Lora Bold";
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
    }
    p{
        font-size: 17px;
        margin-bottom: 0;
    }
}
.international-img-card{
    width: 169px;
    height: 116px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 4px 19px 0 rgba(0, 0, 0, 0.25);
    margin-top: -50px;
    margin-bottom: 20px;
    transition: 0.5s;
}
.international-box{
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.15);
    padding: 31px;
    transition: 0.5s;
    &:hover{
        .international-img-card{
            box-shadow: 0 4px 24px 0 #f159265b;
        }
    }
}
.international-slider{
    .slick-slide{
        margin: 40px 15px;
    }
    .slick-arrow{
        top: 50%;
        background: #FFF;
        &::before{
            filter: brightness(0) saturate(100%) invert(0%) sepia(97%) saturate(7392%) hue-rotate(265deg) brightness(76%) contrast(100%);
            width: 80%;
            height: 80%;
        }
    }
}
/*******************************
        Abroard
*******************************/
.abroard{
    .row{
        position: relative;
        z-index: 1;
        &::after{
            position: absolute;
            content: '';
            width: 403px;
            height: 391px;
            background: #EDEDED;
            border-radius: 50%;
            top: -85px;
            right: -100px;
            z-index: -1;
        }
    }
}
.abroard-box{
    border-radius: 30px;
    overflow: hidden;
    &:hover{
        .abroard-img{
            .abroard-thumbnail1{
                scale: 1.05;
            }
            .play-btn{
                background: #F15A26;
                bottom: 20px;
            }
        }
    }
}
.abroard-thumbnail1{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -10px;
}
.abroard-content{
    background: #F15A26;
    text-align: center;
    padding-block: 35px;
    h3{
        color: #FFF;
        font-family: "Lora Bold";
        font-size: 34px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
    }
}
.abroard-img{
    position: relative;
    .play-btn{
        width: 85px;
        height: 85px;
        padding: 25px;
        background: rgba(0, 0, 0, 0.51);
        backdrop-filter: blur(6.5px);
        outline: 1px solid #FFF;
        outline-offset: 14px;
        left: unset;
        right: 45px;
        top: unset;
        transform: unset;
        bottom: -20px;
        img{
            margin-left: 10px;
        }
        &::before{
            width: 85px;
            height: 85px;
        }
    }
}
/*******************************
       Placed
*******************************/
.placed{
    background: url(../img/placed-bg.webp) no-repeat;
    background-size: cover;
}
.placed-box{
    border-radius: 20px;
    overflow: hidden;
    background: #FFF;
    text-align: center;
    padding: 50px 20px;
    position: relative;
    z-index: 1;
    h4{
        color: #FFF;
        font-family: "Lora Bold";
        font-size: 26px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: 20px;
    }
    .btn-group{
        justify-content: center;
        .primary-btn{
            font-size: 17px;
            font-family: "Lora SemiBold";
            padding: 11px 17px;
            &::after{
                background: #FFF;
            }
            &:hover{
                color: #000;
            }
        }
    }
    &::after{
        position: absolute;
        content: '';
        width: 389px;
        height: 389px;
        border-radius: 50%;
        background: #E2511F;
        bottom: -130px;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
        transition: 0.8s;
    }
    &:hover{
        &::after{
            width: 689px;
            height: 689px;
            bottom: 50%;
            transform: translate(-50%, 50%);
        }
    }
}
.placed-img{
    overflow: hidden;
    border-radius: 50%;
    border: 15px solid #D9D9D9;
    width: 224px;
    height: 224px;
    margin-inline: auto;
    margin-bottom: 20px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.placed-slider{
    .slick-arrow {
        top: 50%;
    }
}
/*******************************
        Gallery
*******************************/
.gallery{
    background: url(../img/gallery-bg.webp) no-repeat;
    background-size: cover;
    .row:first-child{
        justify-content: space-between;
        .btn-group{
            justify-content: flex-end;
        }
    }
    .section-title, p{
        color: #FFF;
    }
    
}
.gallery-card{
    border-radius: 20px;
    overflow: hidden;
    display: block;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
    }
    &:hover{
        img{
            scale: 1.05;
        }
    }
}
/*******************************
        News
*******************************/
.news{
    background: url(../img/news-bg.webp) no-repeat;
    background-size: 50%;
    background-position: left;
    .sub-section-title{
        img{
            filter: brightness(0) saturate(100%) invert(0%) sepia(99%) saturate(28%) hue-rotate(65deg) brightness(90%) contrast(100%);
        }
    }
}
.news-box{
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 12px 5px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}
.news-content{
    padding: 30px;
}
.user-admin{
    color: #000;
    font-family: "Lora Regular";
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 181.25%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.news-title{
    color: #000;
    font-family: "Lora SemiBold";
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 15px;
}
.news-img{
    position: relative;
    .news-img-bg{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
    }
    .date{
        position: absolute;
        top: 20px;
        left: 20px;
    }
}
.news-slider{
    .slick-slide{
        margin: 30px 15px;
    }
    .slick-arrow{
        width: 40px;
        height: 40px;
        left: -48%;
        top: 52%;
        &::before{
            width: 80%;
            height: 80%;
        }
    }
    .slick-next{
        left: -42%;
    }
}
/*******************************
        Event
*******************************/
.event-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -10px;
}
.event-box{
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    &::before{
        position: absolute;
        content: '';
        inset: 0;
        border-radius: 20px;
        background: linear-gradient(1deg, #000 6.28%, rgba(159, 159, 159, 0.00) 80.16%);
    }
    &:hover{
        .event-title{
            color: #F15A26;
        }
    }
}
.event-box-content{
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 57px 60px;
    .user-admin{
        color: #FFF;
        margin-bottom: 0;
        img{
            filter: brightness(0) saturate(100%) invert(100%) sepia(10%) saturate(3%) hue-rotate(256deg) brightness(114%) contrast(100%);
        }
    }
}
.event-box-content-top{
    display: flex;
    align-items: center;
    gap: 25px;
}
.date{
    color: #FFF;
    font-family: "Lora Regular";
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    border-radius: 10px;
    background: #F15A26;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 14px;
    margin-bottom: 0;
}
.event-title{
    color: #FFF;
    font-family: "Lora SemiBold";
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: 150%;
    transition: 0.5s;
}
.event-card{
    border-radius: 20px;
    background: #FFEFE9;
    padding: 20px;
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    .event-title{
        color: #000;
        font-size: 23px;
        margin-bottom: 20px;
        line-height: 120%;
    }
    &:hover{
        .event-title{
            color: #F15A26;
        }
    }
}
.event-card-img{
    border-radius: 20px;
    width: 157px;
    height: 122px;
}
.event-card-content{
    .date{
        display: inline-flex;
    }
}
.event-sidebar{
    height: 100%;
}
/*******************************
    Testimonial 
*******************************/
.testimonial{
    background: url(../img/testimonial-bg.webp) no-repeat;
    background-size: cover;
    .sub-section-title{
        color: #FFF;
        span{
            background: #FFF;
        }
        img{
            filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(105%) contrast(102%);
        }
    }
    .section-title, p{
        color: #FFF;
    }
}
.testi-card{
    border-radius: 30px;
    background: #FFF;
    padding: 25px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    p{
        color: #000;
        font-style: italic;
        line-height: 168.75%;
        margin-bottom: 8px;
    }
    &::before, &::after{
        position: absolute;
        content: '';
        width: 338px;
        height: 338px;
        background: #F15A26;
        border-radius: 50%;
        left: -170px;
        top: -180px;
        z-index: -1;
    }
    &::after{
        width: 443px;
        height: 443px;
        background: #FFF5F1;
        top: unset;
        left: unset;
        bottom: -130px;
        right: -120px;
    }
}
.testi-card-head{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
    .placed-img{
        width: 134px;
        height: 134px;
        border-width: 8px;
        margin-bottom: 0;
    }
}
.profile-rating{
    h4{
        color: #000;
        font-family: "Lora SemiBold";
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: 10px;
    }
}
.rating{
    display: flex;
    align-items: center;
    gap: 4px;
    i{
        width: 25px;
        height: 24px;
        background: url(../img/star.webp) no-repeat;
        background-size: contain;
    }
}
.testi-card-bottom{
    display: flex;
    align-items: center;
    gap: 20px;
    span{
        display: inline-block;
        width: 77%;
        height: 1px;
        background: #000;
    }
}
.coma{
    width: 61px;
    height: 61px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testi-slider{
    .slick-arrow{
        top: 50%;
        background: #FFF;
        &::before{
            filter: brightness(0) saturate(100%) invert(0%) sepia(97%) saturate(7392%) hue-rotate(265deg) brightness(76%) contrast(100%);
            width: 80%;
            height: 80%;
        }
    }
}
/*******************************
    Awards
*******************************/
.awards{
    position: relative;
    &::after {
        content: '';
        position: absolute;
        width: 45%;
        height: 100%;
        background: url(../img/course-bg.webp) no-repeat;
        background-size: cover;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
    }
}
.awards-img{
    border-radius: 20px;
    overflow: hidden;
    display: block;
    transition: 0.5s;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
    }
    &:hover{
        box-shadow: 0px 0px 20px 5px #00000047;
        scale: 1.05;
        img{
            scale: 1.03;
        }
    }
}
/*******************************
        Training
*******************************/
.training{
    background: url(../img/training-bg.webp) no-repeat;
    background-size: cover;
     .sub-section-title{
        color: #FFF;
        span{
            background: #FFF;
        }
        img{
            filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(105%) contrast(102%);
        }
    }
    .section-title, p{
        color: #FFF;
    }
}
.training-box{
    border-radius: 30px;
    overflow: hidden;
    &:hover{
        .training-img{
            img{
                scale: 1.05;
            }
            .play-btn{
                bottom: 10px;
            }
        }
    }
}
.training-img{
    position: relative;
    .play-btn{
        width: 66px;
        height: 66px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 24px;
        outline: 11px solid rgba(217, 217, 217, 0.58);
        left: unset;
        right: 45px;
        top: unset;
        transform: unset;
        bottom: -30px;
        img{
            margin-left: 3px;
        }
        &::before{
            width: 78px;
            height: 78px;
        }
    }
}
.training-img-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -10px;
}
.training-content{
    background: #FFF;
    padding: 50px 30px;
    h3{
        color: #000;
        font-family: "Lora SemiBold";
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
    }
}
/*******************************
    Faq 
*******************************/
.accordion__item {
    margin: 20px auto;
    transition: .5s;
    position: relative;
    border-radius: 12px;
    background: #FFEFE9;
    &:hover{
        background: #F15A26;
        .accordion__title,
        .accordion__content p{
            color: #FFF;
        }
        /* .accordion__title::after{
            background: #FFF;
            color: #000;
        } */
    }
}
.accordion__item .accordion__title {
    position: relative;
    display: block;
    color: #000;
    font-family: "Lora SemiBold";
    font-size: 17px;
    line-height: 170%;
    padding: 25px 25px;
    padding-right: 60px;
    margin-bottom: 0px;
    font-style: normal;
    font-weight: normal;
    line-height: 125%;
    text-decoration: none;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    transition: all .5s;
}
.accordion__title.accordion-active {
    border-radius: 8px 8px 0 0;
    padding-bottom: 15px;
}
.accordion__title::after {
    content: '+';
    position: absolute;
    width: 34px;
    height:34px;
    background: #000;
    right: 13px;
    top: 18px;
    font-size: 20px;
    color: #fff;
    border-radius: 50%;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.accordion__title.accordion-active::after{
    transform: rotate(180deg);
    content: '-';
}
.accordion__item .accordion__content {
    padding: 25px;
    margin-bottom: 0;
    padding-right: 45px;
    display: none;
    padding-top: 0;
    p{
        line-height: 181.25%;
        margin-bottom: 0;
    }
}
.faq-img{
    border-radius: 20px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -20px;
    }
    &:hover{
        img{
            scale: 1.05;
        }
    }
}
/****************************
        Industry Testimonial
******************************/
.industry-testimonial{
    background: #F15A26;
     .sub-section-title{
        color: #FFF;
        span{
            background: #FFF;
        }
        img{
            filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(105%) contrast(102%);
        }
    }
    .section-title, p{
        color: #FFF;
    }
}
.industry-box{
    text-align: center;
    .rating{
        justify-content: center;
    }
    h4{
        color: #FFF;
        font-family: "Lora Bold";
        font-size: 27px;
        font-style: normal;
        font-weight: normal;
        line-height: 107.407%;
        margin-bottom: 11px;
    }
    h5{
        color: #FFF;
        font-family: "Lora Medium";
        font-size: 21px;
        font-style: normal;
        font-weight: normal;
        line-height: 104.762%;
    }
}
.industry-box-top{
    padding: 50px 70px;
    padding-bottom: 80px;
    background: #FFF;
    border-radius: 30px;
    text-align: center;
    margin-bottom: -80px;
    p{
        color: #000;
        font-family: "Lora Medium";
        font-size: 21px;
        font-style: italic;
    }
}
.industry-admin{
    width: 144px;
    height: 144px;
    border-radius: 50%;
    border: 15px solid #FFF;
    overflow: hidden;
    margin-inline: auto;
    margin-bottom: 16px;
}
.industry-slider{
    padding-inline: 70px;
    .slick-arrow{
        width: 30px;
        height: 56px;
        background: transparent;
        top: 30%;
        &::before{
            background: url(../img/slider-arrow-big.webp) no-repeat;
            background-size: contain;
            width: 100%;
            height: 100%;
            left: 50%;
            top: 50%;
        }
    }
    .slick-prev{
        left: -30px;
    }
    .slick-next{
        right: -30px;
    }
}
/****************************
        Get A Quote
******************************/
.get-a-guote{
    background: url(../img/get-a-quote-bg.webp) no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    &::after{
        position: absolute;
        content: '';
        inset: 0;
        background: rgba(0, 0, 0, 0.60);
        z-index: -1;
    }
    .section-title, p{
        color: #fff;
    }
    .col-lg-6{
        padding-inline: 30px;
    }
    form .primary-btn:hover{
        background: #4D2D8C;
        color: #FFF;
    }
}
/****************************
        Footer
******************************/
footer {
    background: #000;
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
    ul{
        li{
            transition: 0.4s;
            margin-bottom: 10px;
            &:hover{
                transform: translateX(10px);
                a{
                    color: #F15A26;
                }
            }
            a{
                display: flex;
                align-items: flex-start;
                color: #FFF;
                font-family: "Lora Regular";
                font-size: 16px;
                font-style: normal;
                font-weight: normal;
                line-height: 175%;
                gap: 11px;
                img{
                    margin-top: 4px;
                }
            }
        }
    }
    .col-lg-4{
        border-radius: 20px;
        position: relative;
        z-index: 1;
        &::before{
            position: absolute;
            content: '';
            width: 168%;
            height: 120%;
            background: #212020;
            left: -300px;
            top: 50%;
            transform: translateY(-50%);
            z-index: -1;
            border-radius: 20px;
        }
    }
    p, a{
        color: #fff;
        line-height: 137%;
        margin-bottom: 0;
    }
    .social-media-links{
        gap: 10px;
        a{
            width: 53px;
            height: 53px;
            background: #FFF;
        }
    }
    .col-lg-6{
        margin-top: 105px;
    }
    .btn-group{
        flex-wrap: wrap;
        gap: 24px;
        .primary-btn{
            width: 48%;
            justify-content: center;
            font-size: 25px;
            padding: 26px 20px;
             font-family: "Lora SemiBold";
        }
    }

}
.social-media{
    margin-top: 80px;
}
.footer-img{
    position: absolute;
    border-radius: 20px 0 0 0;
    right: 0;
    bottom: 0;
}
.footer-title{
    color: #FFF;
    font-family: "Lora Bold";
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 20px;
}
.footer-sub-title{
    color: #FFF;
    font-family: "Lora SemiBold";
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 175%;
    margin-bottom: 3px;
    display: block;
}
.footer-card{
    padding: 15px 10px;
    padding-left: 80px;
    border-radius: 8px;
    background: #212020;
    position: relative;
    margin-bottom: 18px;
}
.footer-icon{
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F15A26;
    border-radius: 50%;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}
.copyright {
    margin-top: 50px;
    p{
        font-size: 20px;
        margin-bottom: 20px;
    }
}
.copyright a {
    color: #F67809;
    text-decoration: underline;
    transition: 0.5s;
    &:hover{
        color: #F15A26;
    }
}
/*******************************
  Footer Menu
********************************/
.mobile-bottom-menu {
    background: bottom/cover no-repeat #4D2D8C;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 99;
    display: none;
    box-shadow: 0 -5px 9px 0 #b1b1b124
}

.mobile-bottom-menu ul li {
    display: inline-block;
    height: 60px;
    padding-top: 6px;
    position: relative;
    width: 60px
}

.mobile-bottom-menu ul {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-inline:10px}

.whatsapp {
    position: relative;
    width: 54px
}

.whatsapp .f-wp {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    width: 54px;
    height: 54px;
    top: -40px
}

.icon-box:after,.icon-box:before {
    content: '';
    left: 0;
    width: 100%;
    opacity: 0
}

.mobile-bottom-menu ul li a {
    width: 20%;
    font-size: 15px;
    color: #fff;
    line-height: 6px
}

.mobile-bottom-menu ul li a img {
    filter: brightness(0) saturate(100%) invert(98%) sepia(47%) saturate(0%) hue-rotate(285deg) brightness(114%) contrast(100%);
    margin-bottom: -5px
}

.mobile-bottom-menu ul li.active a img,.mobile-bottom-menu ul li:hover a img {
    filter: brightness(0) saturate(100%) invert(77%) sepia(74%) saturate(1464%) hue-rotate(350deg) brightness(100%) contrast(106%);
}

.f-wp img {
    border-radius: 50%;
    box-shadow: 0 5px 0 -.88px #0000003d;
    margin-bottom: -6px
}

.mobile-bottom-menu ul li.active::before {
    content: '';
    background-color: #FFC107;
    position: absolute;
    height: 3px;
    top: -1px;
    left: 8px;
    right: 8px
}
.mobile-bottom-menu ul li.active a{
    color: #FFC107;
}
/*******************************
  Inner Page
********************************/
.inner-banner{
    position: relative;
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0.95;
        background: linear-gradient(4deg, #1E1A1A 23.8%, rgba(0, 0, 0, 0.02) 92.07%);
    }
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: flex-end;
        z-index: 1;
    }
    .banner-content{
        padding-bottom: 94px;
        width: 70%;
        h1{
            color: #FFF;
            font-family: "Lora Bold";
            font-size: 49px;
            font-style: normal;
            font-weight: normal;
            line-height: 128.571%;
            rotate: unset;
            text-shadow: none;
            margin-bottom: 36px;
            text-transform: none;
            span{
                text-transform: uppercase;
            }
        }
        .btn-group{
            margin-top: 0;
        }
    }
}
/* Course About */
.course-about{
    position: relative;
    &::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 100%;
        background: url(../img/course-details-about-img-bg.webp) no-repeat;
        background-size: cover;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
    }
}
.course-about-img{
    position: relative;
    height: 100%;
    img{
        border-radius: 30px;
    }
}
.course-details-about-img1{
    width: 80%;
}
.course-details-about-img2{
    position: absolute;
    right: 20px;
    bottom: 0;
    width: 60%;
    box-shadow: 22px 16px 0 0 #000;
}
.course-about-content{
    h4, h5{
        color: #000;
        font-family: "Lora SemiBold";
        font-size: 23px;
        font-style: normal;
        font-weight: normal;
        line-height: 139.13%;
        margin-bottom: 5px;
    }
    h5{
        font-size: 16px;
        margin-bottom: 15px;
    }
}
/* Explore */
.explore{
    background: url(../img/explore-bg.webp) no-repeat;
    background-size: cover;
    .btn-group{
        gap: 20px;
    }
    .secondary-btn{
        background: #FFF;
        color: #191919;
        padding-inline: 54px;
        &:hover{
            color: #FFF;
        }
    }
}
/* Course Why Choose */
.course-why{
    background: url(../img/course-details-why-choose-bg1.webp) no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    .section-title, p{
        color: #FFF;
    }
    p{
        margin-bottom: 50px;
    }
    .join-img{
        height: 100%;
    }
}
.course-why-bg{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.course-why-card{
    border-radius: 20px;
    background: #FFF;
    text-align: center;
    padding: 35px;
    height: 100%;
    h5{
        color: #161616;
        font-family: "Lora SemiBold";
        font-size: 21px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        transition: 0.5s;
    }
    &:hover{
        h5{
            color: #E2511F;
        }
        img{
            transform: rotateY(180deg);
        }
    }
}
/* Job Role */
.job-role{
    background: url(../img/job-role-bg.webp) no-repeat;
    background-size: cover;
}
.job-role-icon{
    width: 80px;
    height: 72px;
    border-radius: 15px;
    background: #F15A26;
    display: flex;
    align-items: center;
    justify-content: center;
}
.job-role-card{
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    transition: 0.5s;
    height: 100%;
    p{
        color: #161616;
        font-family: "Lora SemiBold";
        font-size: 21px;
        line-height: normal;
        margin-bottom: 0;
        width: 70%;
    }
}
.job-role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 25px 0 rgb(0 0 0 / 42%);
    img{
        scale: 1.1;
    }
}

/* Placement */
.placement{
    background: url(../img/placed-bg.webp) no-repeat;
    background-size: cover;
}
.placement-box{
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0.44;
        background: #272727;
    }
    .play-btn{
        width: 80px;
        height: 80px;
        padding: 20px;
        padding: 28px;
        img{
            margin-left: 5px;
        }
        &::before{
            width: 80px;
            height: 80px;
        }
    }
    &:hover{
        .placement-img{
            scale: 1.1;
        }
    }
}
.placement-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -10px;
}
/* Academic */
.academic{
    background: #272626;
    position: relative;
    z-index: 1;
    .row:first-child {
        justify-content: space-between;
    }
    .section-title, p{
        color: #FFF;
    }
    &::after {
        content: '';
        position: absolute;
        width: 40%;
        height: 100%;
        background: url(../img/academic-bg.webp) no-repeat;
        background-size: cover;
        left: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
    }
}
.academic-box{
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.5s;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
    }
    &:hover{
        transform: translateY(-10px);
        img{
            scale: 1.1;
        }
    }
}
.academic-content{
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(0deg, #000 -5.36%, rgba(102, 102, 102, 0.05) 86.59%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    padding-bottom: 49px;
    h5{
        color: #FFF;
        font-family: "Lora Bold";
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: 9px;
    }
    p{
        margin-bottom: 0;
    }
}
/* Get In Touch */
.get-in-touch{
    background: url(../img/get-in-touch-bg.webp) no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    p{
        margin-bottom: 50px;
    }
    &::before{
        content: '';
        position: absolute;
        width: 50%;
        height: 50%;
        left: 0;
        bottom: 0;
        background: #F15A26;
        border-radius: 0 600px 0 0;
        z-index: -1;
    }
    .banner-form{
        margin-left: 20px;
        border-radius: 20px;
        background: #161616;
        box-shadow: 0 4px 26px 0 rgba(0, 0, 0, 0.25);
        .text-center{
            background: #F15A26;
            padding-block: 26px;
        }
        .title{
            font-size: 45px;
            color: #FFF;
        }
        p{
            color: #FFF;
            font-size: 21px;
            margin-bottom: 0;
        }
        .form-control{
            padding: 21px 20px;
        }
        .primary-btn:hover{
            background: #FFF;
            color: #F15A26;
        }
    }
}
.get-in-touch-content{
    img{
        border-radius: 30px;
        width: 90%;
    }
}
/*******************************
  Responsive
********************************/
/*************************************
    Home Page
*************************************/
@media (max-width: 1600px),
(max-width: 1536px){
    .right{
        .text-center{
            padding-block: 0;
        }
    }
    #menu>.main-menu>ul>li {
        padding-inline: 20px;
    }
    .banner-content {
        padding-right: 70px;
        h1 {
            font-size: 115px;
            float: right;
            margin-bottom: 10px;
        }
        h2{
            font-size: 52px;
            margin-bottom: 60px;
            span {
                font-size: 34px;
            }
        }
        .btn-group{
            margin-top: 0;
            padding-left: 75px;
        }
    }
    .banner-btn{
        font-size: 22px;
    }
    .banner-form {
        margin-left: 90px;
        & form {
            padding: 20px;
            .primary-btn {
                font-size: 20px;
                padding: 16px 46px;
            }
        }
        p {
            font-size: 16px;
        }
    }
    .title {
        font-size: 32px;
    }
    .text-center {
        padding-block: 15px;
    }
    .form-control{
        padding: 17px 16px;
    }
    .join-card {
        margin-bottom: 38px;
    }
    footer {
        padding-top: 140px;
        padding-bottom: 30px;
    }
    .footer-img {
        width: 720px;
    }
    .success-slider {
        left: -205px;
    }
    .inner-banner {
        .banner-content {
            padding-bottom: 94px;
            width: 70%;
            padding-right: 0;
            .btn-group{
                padding-left: 0;
            }
        }
    }
}
@media (max-width: 1440px),
(max-width: 1366px){
    .right {
        padding: 20px;
    }
    .popup .popup__content {
        width: 60%;
    }
    .sec-gap {
        padding: 50px 0;
    }
    p{
        font-size: 14px;
        margin-bottom: 0.5rem;
        line-height: 171.25%;
    }
    .wp {
        width: 76px;
        height: 76px;
        padding: 15px;
        border-radius: 15px;
    }
    .topbar {
        padding-top: 7px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 15px;
        padding: 15px 0px;
    }
    #menu ul ul li a {
        font-size: 15px;
    }
    #menu>.main-menu>ul>li {
        padding-inline: 18px;
    }
    #menu > .main-menu > ul > li > a {
        &::after {
            bottom: 11px;
        }
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        top: 20px;
        right: -11px;
        width: 7px;
        height: 7px;
    }
    .has-sub {
        margin-right: 10px;
    }
    .logo{
        width: 158px;
    }
    .social-media-links {
        h5 {
            font-size: 14px;
            margin-right: 8px;
        }
    }
    .header-btn-group {
        .primary-btn {
            font-size: 14px;
            padding: 10px 18px;
        }
    }
    .call-btn {
        font-size: 20px;
        small {
            font-size: 13px;
        }
    }
    .call-icon {
        width: 42px;
        height: 42px;
    }
    .banner-content {
        padding-top: 25px;
        h1 {
            font-size: 100px;
        }
        h2 {
            font-size: 42px;
            padding: 25px;
            span {
                font-size: 26px;
            }
        }
    }
    .banner-btn {
        font-size: 18px;
        padding: 14px 32px;
    }
    .banner-form {
        p {
            font-size: 14px;
        }
        .text-center {
            padding-block: 12px;
        }
        & form {
            padding: 15px;
            .primary-btn {
                font-size: 16px;
                padding: 13px 43px;
            }
        }
    }
    .title {
        font-size: 26px;
    }
    .form-control{
        font-size: 13px;
        padding: 13px 12px;
    }
    .section-title {
        font-size: 38px;
        margin-bottom: 10px;
    }
    .about {
        & .counter-item {
            h3 {
                font-size: 70px;
                margin-bottom: 10px;
            }
        }
    }
    .primary-btn{
        font-size: 16px;
        padding: 16px 40px;
    }
    .secondary-btn{
        padding: 13px 20px;
    }
    .counter-item {
        padding: 18px;
        padding-left: 98px;
        h3 {
            font-size: 43px;
            margin-bottom: 10px;
        }
    }
    .counter-icon {
        width: 67px;
        height: 67px;
        left: 18px;
    }
    .siliguri-banner {
        padding-block: 40px;
        .section-title {
            font-size: 43px;
        }
    }
    .card-title{
        font-size: 16px;
    }
    .courses-content {
        padding: 17px;
        padding-top: 30px;
        .card-title {
            width: 270px;
            height: 61px;
            padding: 17px;
            top: -50px;
        }
    }
    .slick-arrow {
        width: 28px;
        height: 28px;
    }
    .success-content {
        padding: 30px;
        padding-right: 11%;
    }
    .success-slider {
        left: -175px;
        top: 170px;
        .slick-arrow {
            width: 40px;
            height: 17px;
        }
        .slick-prev{
            top: 114.5%;
        }
    }
    .success-card{
        padding: 20px;
        .card-title{
            font-size: 21px;
        }
    }
    .join-icon {
        width: 70px;
        height: 70px;
        padding: 17px;
    }
    .join-card{
        padding-left: 70px;
        border-radius: 16px;
        margin-bottom: 25px;
        .card-title {
            font-size: 20px;
        }
        &::after{
            border-radius: 0 16px 16px 0;
        }
    }
    .join {
        .container {
            padding-left: 50px;
        }
    }
    .play-btn {
        width: 100px;
        height: 100px;
        padding: 33px;
        img{
            margin-left: 5px;
        }
        &::before{
            width: 100px;
            height: 100px;
        }
    }
    .international {
        padding: 60px 0;
        h5 {
            font-size: 16px;
        }
        p{
            font-size: 15px;
        }
    }
    .international-img-card {
        width: 155px;
        height: 100px;
        padding: 20px;
    }
    .international-box{
        border-radius: 17px;
        padding: 21px;
    }
    .mb-40{
        margin-bottom: 30px;
    }
    .abroard-content {
        padding-block: 28px;
        h3 {
            font-size: 28px;
        }
    }
    .abroard-img {
        .play-btn {
            width: 75px;
            height: 75px;
            &::before {
                width: 75px;
                height: 75px;
            }
            img {
                margin-left: 6px;
            }
        }
    }
    .placed-img{
        width: 200px;
        height: 200px;
        border: 12px solid #D9D9D9;
    }
    .placed-box {
        padding: 30px 10px;
        h4 {
            font-size: 22px;
            margin-bottom: 15px;
        }
        .btn-group {
            .primary-btn {
                font-size: 14px;
                padding: 11px 17px;
            }
        }
    }
    .user-admin {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .news-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .news-slider {
        .slick-arrow {
            width: 30px;
            height: 30px;
        }
    }
    .date {
        font-size: 14px;
        gap: 10px;
        padding: 11px 14px;
        img{
            width: 20px;
        }
    }
    .event-box-content {
        padding: 37px 40px;
    }
    .event-title {
        font-size: 18px;
    }
    .event-card {
        padding: 15px;
        gap: 20px;
        margin-bottom: 15px;
    }
    .event-card {
        .event-title {
            font-size: 19px;
            margin-bottom: 15px;
        }
    }
    .testi-card-head {
        .placed-img {
            width: 114px;
            height: 114px;
        }
    }
    .profile-rating {
        h4 {
            font-size: 18px;
        }
    }
    .testi-card {
        &::before{
            width: 318px;
            height: 318px;
        }
        &::after {
            width: 413px;
            height: 413px;
        }
    }
    .training-content {
        padding: 40px 30px;
        h3 {
            font-size: 16px;
        }
    }
    .training-img {
        .play-btn {
            width: 55px;
            height: 55px;
            padding: 20px;
            outline: 9px solid rgba(217, 217, 217, 0.58);
            bottom: -25px;
            &::before{
                width: 55px;
                height: 55px;
            }
        }
    }
    .accordion__item .accordion__title {
        font-size: 15px;
        padding: 18px 18px;
        padding-right: 50px;
    }
    .accordion__title.accordion-active {
        padding-bottom: 8px;
    }
    .accordion__item .accordion__content {
        padding: 18px;
        margin-bottom: 0;
        padding-right: 45px;
        padding-top: 0;
    }
    .accordion__title::after {
        width: 24px;
        height: 24px;
        font-size: 14px;
        top: 15px;
        right: 10px;
    }
    .industry-slider {
        padding-inline: 50px;
        .slick-arrow {
            width: 20px;
            height: 46px;
            top: 26%;
        }
    }
    .industry-box-top {
        padding: 30px 50px;
        padding-bottom: 70px;
    }
    .industry-admin {
        width: 124px;
        height: 124px;
        border: 12px solid #FFF;
        margin-bottom: 12px;
    }
    .industry-box {
        h4 {
            font-size: 22px;
            margin-bottom: 6px;
        }
        h5 {
            font-size: 17px;
        }
    }
    footer {
        padding-top: 100px;
        & ul {
            & li {
                a {
                    font-size: 14px;
                    gap: 6px;
                    img{
                        width: 18px;
                    }
                }
            }
        }
        .col-lg-4 {
            &::before {
                width: 129%;
                height: 110%;
                left: -110px;
                border-radius: 20px;
                top: 47%;
            }
        }
        .social-media-links {
            a {
                width: 43px;
                height: 43px;
                padding: 8px;
            }
        }
        .btn-group {
            .primary-btn {
                width: 46%;
                font-size: 21px;
                padding: 20px 15px;
            }
        }
        .col-lg-6 {
            margin-top: 75px;
        }
    }
    .footer-title{
        font-size: 20px;
        margin-bottom: 15px;
    }
    .footer-icon{
        width: 44px;
        height: 44px;
        padding: 13px;
    }
    .footer-card {
        padding: 13px 10px;
        padding-left: 70px;
    }
    .footer-img {
        width: 590px;
    }
    .copyright {
        p {
            font-size: 16px;
            margin-bottom: 10px;
        }
    }
    .rating{
        i{
            width: 20px;
            height: 19px;
        }
    }
    /*************************
        Inner Pages
    ***************************/
    .inner-banner {
        .banner-content {
            padding-bottom: 64px;
            padding-top: 0;
            h1{
                font-size: 39px;
                margin-bottom: 26px;
            }
        }
    }
    .course-about-content {
        h4, h5 {
            font-size: 19px;
            margin-bottom: 5px;
        }
        h5 {
            font-size: 14px;
            margin-bottom: 15px;
        }
    }
    .course-why-card {
        padding: 30px;
        h5 {
            font-size: 17px;
        }
    }
    .job-role-card {
        gap: 25px;
        padding: 12px 16px;
        p {
            font-size: 17px;
        }
    }
    .job-role-icon {
        width: 70px;
        height: 62px;
        padding: 13px;
    }
    .academic {
        &::after {
            width: 48%;
        }
    }
    .academic-content {
        padding: 20px;
        padding-bottom: 29px;
        h5 {
            font-size: 20px;
            margin-bottom: 5px;
        }
    }
    .get-in-touch {
        & .banner-form {
            .title {
                font-size: 35px;
            }
            p{
                font-size: 17px;
            }
            .form-control {
                padding: 17px 15px;
            }
        }
    }
}
@media (max-width:1199.99px){
    .popup .popup__content {
        width: 70%;
    }
    .sec-gap {
        padding: 40px 0;
    }
    .topbar {
        .container {
            gap: 15px;
        }
    }
    .social-media-links {
        a {
            width: 24px;
            height: 24px;
            padding: 6px;
        }
        h5{
            font-size: 13px;
            margin-right: 4px;
        }
    }
    .header-btn-group {
        gap: 8px;
        .primary-btn {
            font-size: 12px;
        }
    }
    .call-btn {
        font-size: 17px;
        small {
            font-size: 12px;
        }
    }
    #menu>.main-menu>ul>li {
        padding-inline: 11px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 14px;
        padding: 12px 0px;
    }
    #menu ul ul li a {
        font-size: 14px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        top: 15px;
        right: -10px;
    }
    #menu > .main-menu > ul > li > a {
        &::after {
            bottom: 9px;
        }
    }
/*     #menu li:hover>ul>li {
        height: 34px;
    } */
    .banner {
        height: 530px;
    }
    .banner-content {
        padding-top: 20px;
        h1 {
            font-size: 80px;
        }
        h2 {
            font-size: 32px;
            padding: 20px;
            margin-bottom: 30px;
            span {
                font-size: 22px;
            }
        }
        .btn-group {
            padding-left: 45px;
        }
    }
    .banner-btn {
        font-size: 17px;
        padding: 12px 26px;
    }
    .banner-form {
        margin-left: 20px;
        p {
            font-size: 13px;
        }
    }
    .title {
        font-size: 24px;
    }
    .form-control {
        font-size: 12px;
        padding: 11px 10px;
    }
    .counter-item {
        h3 {
            font-size: 36px;
            margin-bottom: 5px;
        }
    }
    .about {
        & .counter-item {
            h3 {
                font-size: 60px;
            }
        }
    }
    .slick-next {
        right: -37px;
    }
    .slick-prev {
        left: -37px;
    }
    .success-card{
        padding: 15px
    }
    .success-content{
        padding: 20px;
        padding-right: 5%;
    }
    .success {
        height: 530px;
    }
    .success-slider{
        left: -75px;
        .slick-arrow {
            left: 15%;
            top: 112%;
        }
        .slick-next {
            left: 23%;
            top: 113.5%;
        }
    }
    .join {
        .container {
            padding-left: 33px;
        }
        &::after {
            width: 100%;
            background-size: contain;
        }
    }
    .join-content {
        padding-right: 0px;
    }
    .join-card {
        padding-left: 55px;
        margin-bottom: 20px;
    }
    .abroard-img {
        .play-btn {
            outline-offset: 7px;
        }
    }
    .abroard {
        & .row {
            &::after {
                width: 290px;
                height: 290px;
                right: -70px;
            }
        }
    }
    .mb-40{
        margin-bottom: 20px;
    }
    .news {
        background-size: 74%;
    }
    .news-content {
        padding: 15px;
    }
    .event-box-content {
        padding: 27px 20px;
    }
    .date {
        font-size: 14px;
        gap: 7px;
        padding: 9px 10px;
        img {
            width: 18px;
        }
    }
    .event-card-img {
        border-radius: 16px;
        width: 137px;
        height: 102px;
    }
    .event-card {
        gap: 15px;
        padding: 10px;
        .event-title {
            margin-bottom: 10px;
        }
    }
    .event-card-content {
        .date {
            width: 44%;
        }
    }
    .testi-card {
        padding: 15px;
    }
    .testi-card-head {
        .placed-img {
            width: 100px;
            height: 100px;
            border-width: 7px;
        }
    }
    .profile-rating {
        h4 {
            font-size: 16px;
        }
    }
    .testi-card {
        &::before {
            width: 290px;
            height: 290px;
        }
        &::after {
            width: 390px;
            height: 390px;
        }
    }
    .coma {
        width: 51px;
        height: 51px;
    }
    .testi-card-bottom {
        span {
            width: 72%;
        }
    }
    .awards {
        &::after {
            width: 64%;
        }
    }
    .industry-slider {
        .slick-prev {
            left: -15px;
        }
        .slick-next {
            right: -15px;
        }
    }
    footer {
        & .col-lg-4 {
            &::before {
                width: 110%;
                left: -32px;
                top: 49%;
            }
        }
        .social-media-links {
            a {
                width: 36px;
                height: 36px;
                padding: 8px;
            }
        }
    }
    .footer-img {
        width: 500px;
    }
    .fixed-btn {
        bottom: 22%;
    }
     /*************************
        Inner Pages
    ***************************/
    .inner-banner {
        .banner-content {
            padding-bottom: 44px;
            h1 {
                font-size: 34px;
                margin-bottom: 16px;
            }
        }
    }
    .course-about {
        &::after {
            width: 62%;
        }
    }
    .course-details-about-img1 {
        width: 90%;
    }
    .course-details-about-img2 {
        bottom: 95px;
    }
    .course-why-card {
        padding: 18px;
        img{
            width: 75px;
        }
    }
    .job-role-card {
        gap: 15px;
        padding: 12px 14px;
        p{
            font-size: 16px;
        }
    }
    .get-in-touch {
        .banner-form {
            margin-left: 10px;
        }
        p {
            margin-bottom: 40px;
        }
    }
    .academic {
        &::after {
            width: 53%;
        }
    }

}
@media (max-width: 991.99px){
    .left {
        align-items: end;
        background: #FFF;
        justify-content: center;
        background-size: cover;
        background-position: center;
    }
    .has-sub{
        span:first-child{
            display: none;
        }
    }
    #menu>.main-menu>ul>li>a {
        font-size: 16px;
        padding: 20px 0;
    }
    #menu>.main-menu>ul>li {
        padding-inline: 5px;
    }
    #menu ul ul li a {
        padding: 12px 20px;
    }
    #menu .main-menu ul ul li:hover a {
        background-color: #F15A26;
        color: #FFF;
    }
    .sec-gap {
        padding: 30px 0;
    }
    .bottombar{
        width: 100%;
        position: absolute;
        top: 50%;
        right: 0;
        background: transparent;
    }
    header{
        .social-media-links {
            display: none;
        }
    }
    .header-btn-group{
        display: none;
    }
    .call-btn{
        font-size: 19px;
        small {
            font-size: 14px;
        }
    }
    .flex-box {
        margin-right: 70px;
    }
    .banner-content {
        padding-right: 50px;
        h1 {
            font-size: 80px;
            float: unset;
        }
        .btn-group {
            padding-left: 0px;
        }
    }
    .banner-form {
        margin-left: 0;
    }
    .about {
        & .counter-item {
            text-align: center;
            h3{
                margin-bottom: 20px;
            }
        }
    }
    .counter-item {
        padding: 33px;
        padding-left: 98px;
    }
    .success-content {
        padding: 15px;
        padding-right: 3%;
    }
    .success-slider{
        top: 190px;
    }
    .success{
        flex-direction: column;
        height: auto;
    }
    .success-bg1 {
        position: relative;
        object-fit: cover;
        left: unset;
        top: unset;
    }
    .succes-box-content{
        position: relative;
        width: 100%;
    }
    .success-slider{
        left: 25px;
        top: 140px;
        .slick-arrow{
            left: 0;
        }
        .slick-next{
            left: 5%;
        }
    }
    .join{
        .row{
            .col:last-child{
                order: -1;
            }
        }
        .container {
            padding-left: 15px;
        }
    }
    .join-content{
        .join-card{
            margin-left: 40px;
        }
        .btn-group{
            justify-content: center;
        }
    }
    .international {
        padding: 20px 0;
    }
    .slick-prev {
        left: -32px;
    }
    .slick-next {
        right: -32px;
    }
    .abroard-content {
        h3 {
            font-size: 22px;
        }
    }
    .abroard-box {
        border-radius: 20px;
    }
    .abroard {
        & .row {
            &::after {
                width: 210px;
                height: 210px;
                top: -30px;
            }
        }
    }
    .abroard-img {
        .play-btn {
            width: 65px;
            height: 65px;
            right: 22px;
            bottom: -15px;
            &::before{
                width: 65px;
                height: 65px;
            }
        }
    }
    .news {
        background-size: cover;
    }
    .news-content-tab-rs {
        padding: 0;
    }
    .news-slider {
        .slick-arrow {
            width: 30px;
            height: 30px;
            z-index: 4;
            left: 0;
            top: 0;
        }
        .slick-next{
            left: 6%;
        }
    }
    .date {
        font-size: 14px;
        padding: 10px 14px;
    }
    .event-card {
        .event-title {
            margin-bottom: 15px;
        }
    }
    .event-card-content {
        .date {
            width: 32%;
        }
    }
    .testi-card-head {
        justify-content: flex-start;
        .placed-img {
            margin-inline: unset;
        }
    }
    .faq{
        .row{
            .col:last-child{
                order: -1;
            }
        }
    }
    .training {
        background-position: right;
    }
    footer {
        padding-top: 60px;
        & .col-lg-4 {
            &::before {
                width: 108%;
                left: -28px;
                top: 49%;
                height: 104%;
                border-radius: 0 10px 10px 0;
            }
        }
        .col-lg-6 {
            margin-top: 25px;
        }
    }
    .social-media{
        margin-top: 15px;
    }
    .footer-img {
        display: none;
    }
    .copyright {
        margin-top: 25px;
    }
    .fixed-btn {
        bottom: 30%;
    }
    .copyright {
        text-align: center;
    }
    .rating {
        i {
            width: 15px;
            height: 14px;
        }
    }
    /*************************
        Inner Pages
    ***************************/
    .inner-banner {
        .banner-content {
            width: 80%;
            padding-bottom: 34px;
            h1{
                font-size: 30px;
            }
        }
    }
    .course-about {
        &::after {
            width: 70%;
            height: 45%;
        }
    }
    .course-details-about-img1 {
        width: 70%;
    }
    .course-details-about-img2 {
        width: 40%;
        box-shadow: 16px 10px 0 0 #000;
        bottom: -20px;
        right: 80px;
    }
    .course-why{
        .row{
            .col:last-child{
                order: -1;
            }
        }
        p{
            margin-bottom: 30px;
        }
    }
    .placement-box {
        .play-btn {
            width: 60px;
            height: 60px;
            padding: 22px;
            &::before{
                width: 60px;
                height: 60px;
            }
            img {
                margin-left: 3px;
            }
        }
    }
    .academic {
        &::after {
            width: 74%;
            height: 55%;
        }
    }
    .get-in-touch {
        text-align: center;
        p {
            margin-bottom: 20px;
        }
        &::before {
            width: 90%;
            height: 20%;
            bottom: 50%;
            transform: translateY(50%);
            border-radius: 0 400px 0 0;
        }
    }
    .get-in-touch-content {
        img {
            width: 70%;
        }
    }
}
@media (max-width: 575.98px){
    .form-control {
        font-size: 14px;
        padding: 11px 6px;
    }
    .right {
        padding: 15px;
        .title {
            margin-bottom: 10px;
        }
    }
    .popup .popup__content {
        width: 80%;
    }
    .primary-btn {
        font-size: 13px;
        padding: 13px 25px;
            gap: 7px;
    }
    p{
        font-size: 13px;
    }
    .popup .popup__content {
        width: 90%;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 14px;
        padding: 15px 0;
    }
    #menu ul ul li a {
        font-size: 14px;
        white-space: wrap;
        padding: 9px 14px;
        border-bottom: 1px solid #ffffff1a !important;
    }
    #menu .main-menu {
        padding: 20px;
        padding-top: 30px;
    }
    #menu .submenu-button {
        height: 36px;
        width: 50px;
        top: 6px;
    }
    #menu > .main-menu > ul > li > a {
        &::after {
            bottom: 14px;
        }
    }
    #menu .submenu-button:after {
        right: 20px;
        top: 10px;
    }
    #menu .submenu-button.submenu-opened:after {
        top: 15px;
    }
    .sec-gap {
        padding: 20px 0;
    }
    .call-btn{
        span{
            display: none;
        }
    }
    .flex-box{
        margin-right: 45px;
    }
    .topbar {
        padding-top: 4px;
    }
    .logo {
        width: 130px;
    }
    .banner-form{
        display: none;
    }
    .banner {
        height: 310px;
    }
    .banner-content {
        padding-right: 0;
        h1 {
            font-size: 60px;
            text-shadow: 5px 4px 0px #000;
            margin-bottom: 25px;
        }
        h2 {
            font-size: 26px;
            padding: 14px;
            margin-bottom: 30px;
            -webkit-text-stroke-width: 1px;
            float: unset;
            margin-left: 80px;
            span{
                font-size: 16px;
            }
        }
    }
    .banner-btn {
        font-size: 15px;
        padding: 11px 20px;
        box-shadow: 4px 5px 0px 0px #000;
    }
    .banner-img{
        object-position: left;
    }
    .wp {
        width: 56px;
        height: 56px;
        padding: 10px;
        border-radius: 10px;
    }
    .fixed-btn {
        right: 2px;
    }
    .about {
        & .counter-item {
            border-radius: 10px;
            h3 {
                font-size: 40px;
                margin-bottom: 5px;
            }
        }
    }
    .about-img {
        border-radius: 10px;
    }
    .secondary-btn {
        padding: 13px 20px;
    }
    .section-title {
        font-size: 28px;
        margin-bottom: 4px;
    }
    .sub-section-title {
        font-size: 10px;
        span{
            width: 15px;
        }
        img{
            width: 20px;
        }
    }
    .siliguri-banner {
        .section-title {
            font-size: 31px;
        }
    }
    .siliguri-banner {
        padding-block: 5px;
    }
    .slick-prev {
        left: -10px;
    }
    .slick-next {
        right: -10px;
    }
    .card-title {
        font-size: 14px;
    }
    .courses-content {
        .card-title {
            width: 245px;
        }
    }
    .courses-box {
        border-radius: 10px;
    }
    .succes-box-content {
        height: 450px;
    }
    .success-card {
        border-radius: 10px;
        img{
            border-radius: 10px;
        }
        padding: 8px;
        .card-title{
            font-size: 16px;
        }
        p{
            line-height: 141%;
        }
    }
    .success-slider {
        left: 15px;
        top: 160px;
        .slick-slide{
            margin: 0 10px;
        }
        .slick--list{
            margin: 0 -10px;
        }
        .slick-list {
            border-radius: 10px;
        }
        .slick-arrow{
            top: 111.5%;
        }
        .slick-prev{
            top: 109.5%;
        }
        .slick-next{
            left: 10%;
        }
    }
    .join-img {
        border-radius: 10px;
    }
    .play-btn {
        width: 60px;
        height: 60px;
        padding: 20px;
        &::before{
            width: 60px;
            height: 60px;
        }
    }
    .join-icon {
        width: 60px;
        height: 60px;
        padding: 15px;
        position: relative;
        margin-inline: auto;
        transform: unset;
        top: unset;
        left: unset;
        margin-top: -35px;
        margin-bottom: 5px;
    }
    .join-content {
        .join-card {
            margin-left: 0;
            padding: 10px;
            margin-top: 35px;
            text-align: center;
            border-radius: 10px;
            .card-title {
                font-size: 15px;
                margin-bottom: 5px;
            }
            &::after{
                border-radius: 10px;
            }
        }
    }
    .international {
        h5 {
            font-size: 15px;
        }
        p{
            font-size: 13px;
        }
    }
    .international-img-card {
        width: 133px;
        height: 75px;
        padding: 35px;
        border-radius: 7;
    }
    .international-slider{
        padding-inline: 30px;
    }
    
    .international-box {
        border-radius: 7px;
        padding: 13px;
    }
    .abroard-box {
        border-radius: 10px;
    }
    .abroard-content {
        padding-block: 18px;
        h3 {
            font-size: 18px;
        }
    }
    .abroard-img {
        .play-btn {
            width: 45px;
            height: 45px;
            padding: 15px;
            &::after{
                width: 45px;
                height: 45px;
            }
        }
    }
    .placed-slider{
        padding-inline: 20px;
    }
    .placed-box {
        h4 {
            font-size: 18px;
            margin-bottom: 10px;
        }
    }
    .secondary-btn{
        img{
            width: 20px;
        }
    }
    .placed-img {
        width: 180px;
        height: 180px;
        border: 8px solid #D9D9D9;
    }
    .mb-40 {
        margin-bottom: 0px;
    }
    .gallery-card{
        border-radius: 10px;
    }
    .gallery {
        & .row:first-child {
            margin-bottom: 15px;
            .btn-group {
                justify-content: flex-start;
            }
        }
    }
    .news{
        .mb-20{
            margin-bottom: 5px;
        }
    }
    .news-slider {
        .slick-next {
            left: 11%;
        }
    }
    .news-box {
        border-radius: 10px;
    }
    .news-title {
        font-size: 15px;
        margin-bottom: 7px;
    }
    .event-title {
        font-size: 13px;
    }
    .event-box-content {
        padding: 15px 10px;
    }
    .date {
        font-size: 12px;
        border-radius: 5px;
        img {
            width: 14px;
        }
    }
    .event{
        .mb-20{
            margin-bottom: 10px;
        }
    }
    .event-box{
        border-radius: 10px;
        &::before{
            border-radius: 10px;
        }
    }
    .event-card-img {
        border-radius: 6px;
        width: 100px;
        height: 80px;
    }
    .event-card {
        border-radius: 10px;
        gap: 10px;
        .event-title {
            font-size: 15px;
            margin-bottom: 5px;
        }
    }
    .event-card-content {
        .date {
            width: 55%;
        }
    }
    .testi-card-head {
        .placed-img {
            width: 90px;
            height: 90px;
            border-width: 6px;
        }
    }
    .testi-card {
        border-radius: 15px;
    }
    .testi-slider{
        padding-inline: 20px;
    }
    .awards-img{
        border-radius: 10px;
    }
    .awards{
        .mb-20 {
            margin-bottom: 10px;
        }
    }
    .training-box {
        border-radius: 15px;
        overflow: hidden;
    }
    .training{
        .btn-group{
            margin-top: 10px;
        }
    }
    .training-content {
        padding: 30px 20px;
        h3 {
            font-size: 14px;
        }
    }
    .training-img {
        .play-btn {
            width: 44px;
            height: 44px;
            padding: 15px;
            outline: 6px solid rgba(217, 217, 217, 0.58);
            right: 25px;
        }
    }
    .faq-img{
        border-radius: 10px;
    }
    .accordion__item .accordion__title {
        font-size: 15px;
        padding: 12px 12px;
        padding-right: 35px;
    }
    .accordion__item {
        margin: 10px auto;
        border-radius: 6px;
    }
    .accordion__item .accordion__content {
        padding: 12px;
        padding-right: 28px;
    }
    .accordion__title.accordion-active {
        padding-bottom: 4px;
    }
    .industry-box-top {
        p {
            font-size: 14px;
        }
    }
    .industry-box-top {
        padding: 10px 20px;
        padding-bottom: 70px;
        border-radius: 15px;
    }
    .industry-slider {
        padding-inline: 20px;
    }
    .industry-admin{
        width: 104px;
        height: 104px;
        border: 8px solid #FFF;
        margin-bottom: 10px;
    }
    .industry-slider {
        .slick-prev {
            left: -10px;
        }
        .slick-next {
            right: -10px;
        }
    }
    .industry-box {
        h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        h5 {
            font-size: 14px;
        }
    }
    .footer-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    footer {
        padding-top: 40px;
        padding-bottom: 10px;
        & ul {
            & li {
                margin-bottom: 6px;
                & a {
                    font-size: 13px;
                    line-height: 149%;
                    gap: 4px;
                    img {
                        width: 14px;
                        margin-top: 3px;
                    }
                }
            }
        }
        .btn-group {
            gap: 10px;
            .primary-btn {
                width: 48%;
                font-size: 15px;
                padding: 12px 15px;
                border-radius: 6px;
            }
        }
        & .col-lg-4 {
            &::before {
                height: 108%;
            }
        }
    }
    .footer-sub-title {
        font-size: 15px;
    }
    .footer-card {
        margin-bottom: 10px;
    }
    .copyright{
        p{
            font-size: 13px;
            margin-bottom: 5px;
        }
    }
    /*************************
        Inner Pages
    ***************************/
    .inner-banner {
        height: 200px;
        .banner-content{
            width: 100%;
            text-align: center;
            padding-bottom: 14px;
            .btn-group{
                justify-content: center;
            }
            h1 {
                font-size: 24px;
                margin-bottom: 5px;
            }
        }
        &::after {
            background: linear-gradient(4deg, #1E1A1A 23.8%, rgb(0 0 0 / 55%) 92.07%);
        }
    }
    .course-about-img {
        img {
            border-radius: 15px;
        }
    }
    .course-details-about-img2 {
        box-shadow: 6px 5px 0 0 #000;
        bottom: -10px;
        right: 20px;
    }
    .course-about {
        &::after {
            width: 80%;
            height: 25%;
        }
    }
    .course-about-content {
        h4, h5 {
            font-size: 14px;
            margin-bottom: 2px;
        }
        h5 {
            font-size: 13px;
            margin-bottom: 8px;
        }
    }
    .course-why {
        p {
            margin-bottom: 20px;
        }
    }
    .course-why-card {
        border-radius: 10px;
        padding: 10px;
        img {
            width: 50px;
        }
        h5 {
            font-size: 14px;
        }
    }
    .job-role-icon {
        width: 55px;
        height: 47px;
        padding: 12px;
        border-radius: 8px;
    }
    .job-role-card {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 10px;
        padding: 10px;
        gap: 5px;
        p {
            font-size: 12px;
        }
    }
    .explore{
        .btn-group{
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
    }
    .placement-box {
        border-radius: 15px;
        .play-btn {
            width: 50px;
            height: 50px;
            padding: 18px;
            &::before{
                width: 50px;
                height: 50px;
            }
        }
    }
    .academic-box {
        border-radius: 15px;
    }
    .academic-content {
        border-radius: 15px;
        padding: 10px;
        padding-bottom: 19px;
        h5 {
            font-size: 17px;
            margin-bottom: 0px;
        }
    }
    .academic {
        &::after {
            width: 80%;
            height: 20%;
        }
    }
    .get-in-touch {
        p {
            margin-bottom: 10px;
        }
        .banner-form{
            display: block;
            border-radius: 10px;
            .title{
                font-size: 22px;
            }
            p{
                font-size: 13px;
            }
            .text-center {
                padding-block: 16px;
            }
            .form-control {
                padding: 13px 10px;
                border-radius: 7px;
                font-size: 13px;
            }
            .mb-20{
                margin-bottom: 0;
            }
        }
    }
    .get-in-touch-content {
        img {
            border-radius: 15px;
            width: 80%;
        }
    }
    .get-in-touch {
        text-align: center;
        &::before {
            width: 95%;
            height: 10%;
            bottom: 60%;
            border-radius: 0 200px 0 0;
        }
    }
}
/* =================================================
   INDIA MAP SECTION (100% ISOLATED & SAFE)
   Only works inside .india-section
   ================================================= */

.india-section{
    background:#fff;
    padding:90px 0;
    overflow:hidden;
}


/* container */
.india-section .india-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}


/* heading */
.india-section .section-title{
    text-align:center;
    font-size:42px;
    font-weight:700;
    margin-bottom:60px;
    letter-spacing:.5px;
}


/* ================= LAYOUT ================= */

.india-section .india-map-flex{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:120px;
}


/* ================= MAP ================= */

.india-section .india-map{
    flex:0 0 560px;
}

.india-section .india-map img{
    width:100%;
    height:auto;
    border-radius:16px;
    box-shadow:0 15px 45px rgba(0,0,0,0.12);
    transition:.3s;
}

.india-section .india-map img:hover{
    transform:scale(1.02);
}


/* ================= LOCATIONS ================= */

.india-section .india-locations{
    flex:1;
}


/* title above list */
.india-section .india-locations::before{
    content:"Our Branches";
    display:block;
    font-size:26px;
    font-weight:700;
    margin-bottom:25px;
    color:#222;
}


/* grid layout */
.india-section .india-locations ul{
    list-style:none;
    padding:0;
    margin:0;

    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:18px 40px;
}


/* buttons */
.india-section .india-locations a{
    display:block;
    padding:12px 18px;
    border-radius:10px;
    background:#fff4ec;
    color:#ff4d00;
    font-weight:600;
    text-decoration:none;
    text-align:center;

    transition:.3s ease;
}


/* hover */
.india-section .india-locations a:hover{
    background:#ff4d00;
    color:#fff;
    transform:translateX(6px);
    box-shadow:0 8px 20px rgba(255,77,0,0.25);
}


/* ================= MOBILE ================= */

@media(max-width:992px){

    .india-section .india-map-flex{
        flex-direction:column;
        gap:45px;
        text-align:center;
    }

    .india-section .india-map{
        flex:unset;
        width:100%;
        max-width:500px;
    }

    .india-section .india-locations ul{
        grid-template-columns:1fr;
    }
}
