.custom-mobile-menu{
    text-align: end;
    display: none;
}
#nav-wrapper {
  position: fixed;
  height: 0%;
  top: 0%;
  z-index: 99;
  width: 100%;
  background-color: #2b2b2b;
  animation-name: slideup;
  animation-duration: 300ms;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  display: none;
}
#nav-wrapper.active {
  animation-name: slidedown;
  animation-duration: 300ms;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}
#nav-wrapper.active li {
  opacity: 0;
  width: 100%;
}
#nav-wrapper.active li:nth-child(1) {
  animation-name: listdown;
  animation-duration: 300ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 100ms;
}
#nav-wrapper.active li:nth-child(2) {
  animation-name: listdown;
  animation-duration: 600ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 100ms;
}
#nav-wrapper.active li:nth-child(3) {
  animation-name: listdown;
  animation-duration: 900ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 100ms;
}
#nav-wrapper.active li:nth-child(4) {
  animation-name: listdown;
  animation-duration: 1200ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 100ms;
}
#nav-wrapper.active li:nth-child(5) {
  animation-name: listdown;
  animation-duration: 1500ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 100ms;
}
#nav-wrapper.active li:nth-child(6) {
  animation-name: listdown;
  animation-duration: 1800ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 100ms;
}

@keyframes slidedown {
  0% {
    opacity: 0;
    height: 0%;
  }
  20% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    height: 100%;
  }
}
@keyframes slideup {
  0% {
    opacity: 1;
    height: 100%;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    height: 0%;
  }
}
@keyframes listdown {
  0% {
    opacity: 0;
    transform: rotateY(-45deg);
  }
  70% {
    transform: rotateY(-45deg);
    opacity: 0.3;
  }
  85% {
    transform: rotateY(30deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
#nav {
    height: 100vh;
    width: 100%;
    user-select: none;
    touch-action: none;
    background-color: #2b2b2b;
    
    display: flex;
    align-items: start;
    justify-content: center;
    padding-top: 55px;
    display: none;
}
.custom-mobile-nav {
    transition: top 1.1s ease 0.4s;
    z-index: 30;
    padding: 0;
    margin: 0;
    align-content: center;
    height: 100%;
    display: flex;
    flex-flow: wrap;
    gap: 15px;
}
.custom-mobile-nav li {
    text-align: center;
    margin-bottom: 20px;
    list-style: none;
}
.custom-mobile-nav li a {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    position: relative;
    transition: .3s ease-in-out;
}
.custom-mobile-nav li a:hover, li a:focus {
  color: lightgrey;
}
.cus-sub-menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding-left: 0;
}
.cus-sub-menu li{
    text-align: center;
    margin-bottom: 10px;
}
.cus-sub-menu li a{
    font-size: 16px;
}
.cus-has-submenu.active .cus-sub-menu {
    max-height: 500px;
}
.cus-has-submenu > a::after {
    content: "\f107";
    position: absolute;
    right: -25px;
    font-size: 18px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    top: 2px;
    transition: .3s ease-in-out;
}
.cus-has-submenu.active > a::after {
    transform: rotate(180deg);
}
.brand {
  color: #2b2b2b;
  background-repeat: no-repeat;
  height: 42px;
  cursor: pointer;
  margin-left: 14px;
  margin-top: 15px;
}
.brand a {
  color: #2b2b2b;
  font-weight: 900;
  font-size: 22px;
  padding: 7px 7px 7px 7px;
  background-color: lightgrey;
}

.hamburger {
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    overflow: visible;
    width: 100%;
}
.hamburger:hover, .hamburger:focus {
  color: inherit;
  border: none;
  background-color: transparent;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  width: 40px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

/* * Spring Reverse */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.32s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 1700px) {
    header.header {
        padding: 35px 95px 0 140px;
    }
    section.sec5 .serving-areas {
        height: 617px;
    }
    section.sec5 .main.active {
        flex-basis: calc(450px);
    }
    section.sec5 .serving-areas {
        --cards-closed-size: 270px;
    }
    section.sec5 .main {
        padding-top: 190px;
    }
    header.header .menu-header ul li {
        margin-left: 35px;
    }
    section.sec8 .head h2 {
        font-size: 56px;
    }
    section.sec8 .tab-content .disc .more a {
        padding: 6px 32px;
    }
    
    .amb-sec-one {
        padding: 70px 100px 0;
    }
    
    .amb-sec-two {
        padding: 70px 0 0;
    }
    
    .report-banner {
        height: 80vh;
    }
    
    .rb-left-content h1 {
        font-size: 56px;
    }
    
    .report-sec-head {
        margin-bottom: 60px;
    }
    
    .report-card{
        margin-bottom: 50px;
    }
    
    .report-sec {
        padding: 50px 100px 20px;
    }
    
    .os-sec-card p {
        min-height: 96px;
    }
    
    .academy-sec1 {
        padding: 70px 0 50px;
    }
    
    .academy-sec1 p {
        margin: 0px 70px 30px;
    }
    
    .empowering-banner .head {
        padding: 0 0 80px 140px;
    }
    
    .est-left img {
        height: 420px;
    }
    
    .emp-sec-three{
        height: 400px;
    }
    
    .banner.studio .head h4 {
        max-width: 70%;
    }
    
    .banner .head a {
        margin-top: 20px;
    }
    
    .studio-sec2 {
        padding: 60px 145px;
    }
    
    .studio-sec3 {
        padding: 30px 135px 60px;
    }
    
    .studio-sec4 {
        padding: 60px 100px;
    }
    
    .studio-sec4 .head {
        margin-bottom: 30px;
    }
    
    .studio-sec4 .main .pic img {
        height: 495px;
    }
    
    .sec3.studio-sec5 {
        padding: 50px 0;
    }
    section.sec8 .tab-content .pic img{
        width:100%;
    }
    section.sec8 .tab-content .disc {
    padding-right: 50px;
}
section.sec8 .left-head {
    padding-left: 55px;
}
.sec4 .head {
    max-width: 90%;
}
    
}
@media screen and (max-width: 1500px) {
    header.header .menu-header ul li a {
        font-size: 16px;
    }
    .sec3 .main h3 {
        font-size: 50px;
    }
    .sec3 .head {
        max-width: 90%;
    }
    body .head h2 {
        font-size: 52px !important;
    }
    .sec4 .acc_img_container img {
        height: 500px;
    }
    .sec4 {
        padding: 70px 40px;
        height: 750px;
    }
    section.sec5 .left-head h3 {
        font-size: 38px;
        line-height: 38px;
    }
    section.sec5 .left-head .join a {
        padding: 8px 25px;
        font-size: 17px;
    }
    section.sec5 .serving-areas {
        height: 601px;
    }
    section.sec5 .main {
        padding-top: 210px;
    }
    section.sec5 .main .icon img {
    max-width: 60px;
    }
    section.sec5 .main .disc h5 {
        color: #fff;
        font-weight: 700;
        font-size: 18px;
        margin: 14px 0 0;
    }
    section.sec5 .serving-areas {
        --cards-closed-size: 270px;
    }
    section.sec5 .main.active {
        flex-basis: calc(320px);
    }
    section.sec5 .main .disc p {
        font-size: 18px;
        line-height: 22px;
        max-width: 430px;
    }
    .sec7 .disc h4 {
        font-size: 32px;
    }
    section.sec8 .tab-content .pic img {
        width: 100%;
    }
    section.sec8 .tab-content .disc {
        padding-right: 20px;
    }
    section.sec9 {
        padding: 70px 0 70px;
    }
    section.sec10 {
        padding: 120px 0;
    }
    .sec7 .bg-img,.sec7 .disc {
        height: 600px;
    }
    
    .amb-sec-two {
        padding: 30px 0 0;
    }
    
    .theme-heading{
        font-size: 54px;
    }
    
    .membership-card-header .free-badge{
         font-size: 54px;
    }
    
    .membership-card-header h4{
        font-size: 28px;
    }
    
    .as-thre-tabs .nav-pills .nav-link{
        padding: 25px;
        font-size: 32px;
    }
    
    .banner .head h4{
        font-size: 30px;
    }
    
    .sec3-startup .main{
        padding: 30px 15px 30px;
    }
    
    .sec3-startup .main .disc h3{
        font-size: 28px;
    }
    
    .sec3-startup .main .disc p {
        font-size: 18px;
    }
    
    .sec3-startup .main{
        min-height: 335px;
    }
    
    .sec4-startup .pic img {
        height: 250px;
    }
    
    .sec4-startup .main h5 {
        font-size: 28px;
    }
    
    .rb-left-content h1 {
        font-size: 48px;
    }
    
    .emp-sec-six .ess-left img {
        height: 580px;
    }
    
    .banner .head h4 {
        font-size: 28px;
    }
    
    .est-left-content h4 {
        font-size: 32px;
    }
    
    .esf-box {
        padding: 40px;
    }
    
    .emp-sec-four {
        padding: 60px 0;
    }
    
    .card-body {
        padding-top: 0;
    }
    
    .esf-right img {
        height: 360px;
    }
    
    .studio-sec2 {
        padding: 60px 135px;
    }
    
    .studio-sec4 .main .pic img {
        height: 435px;
    }

}
@media(max-width: 1536px) {
    section.sec5 .main.active {
        flex-basis: calc(400px);
    }
    section.sec5 .serving-areas {
        --cards-closed-size: 251px;
    }
    section.sec5 .main .disc p {
        max-width: 360px;
    }
    .banner .head{
        padding-top: 150px;
    }
}
@media (max-width: 1440px){
    section.sec5 .serving-areas {
        --cards-closed-size: 227px;
    }
    section.sec8 .left-head ul li{
        padding-bottom: 14px;
        padding-top: 12px;
    }
    section.sec8 .left-head ul li a .text-wrapper .letters {
        font-size: 18px;
    }
    
    .rb-left-content h1 {
        font-size: 46px;
    }
    
    .report-card h4 {
        margin: 20px 0 0 0;
    }
    
    .startups-fillter {
        margin: 50px 20vh 10px;
    }
    
    .os-sec-card {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .our-startup-sec {
        padding: 50px 30px 50px;
    }
    
    .banner .head h4 {
        font-size: 26px;
    }
    
    .est-left img {
        height: 360px;
    }
    
    .est-left-content h4 {
        font-size: 30px;
    }
    
    .est-left-content p {
        font-size: 15px;
    }
    
    .emp-sec-four .container-fluid {
        padding: 0 145px;
    }
    
    .esf-box {
        padding: 40px 23px;
    }
    
    .emp-sec-four-content {
        font-size: 34px;
    }
    
    .emp-sec-six {
        padding: 50px 0;
    }
    
}
@media(max-width: 1366px){
    section.sec5 .serving-areas {
        --cards-closed-size: 206px;
    }
    .aci-text {
        padding: 0 30px;
    }
    .aci-wrapper:hover .aci-text h1 {
        left: -58px;
    }
    .aci-text p{
        font-size: 22px;
    }
    .about-contact-info:nth-of-type(2) .aci-wrapper:hover .aci-text h1{
        left: -118px;
    }
    .about-contact-info:nth-of-type(3) .aci-wrapper:hover .aci-text h1 {
        left: -118px;
    }
    .asf-head h3{
        font-size: 52px;
    }
    .card-cus{
        padding: 50px 25px 40px;
    }
    .about-sec-one h2{
        font-size: 52px;
    }
    .sec-11-latest p{
            font-size: 52px;
    }
    
    .banner.startup .head h4 {
        max-width: 65%;
    }
    
    .sec3-startup .main .disc h3 {
        font-size: 22px;
    }
    
    .sec3-startup .main {
        min-height: 280px;
    }
    
    .sec3-startup .main .disc p {
        font-size: 17px;
        line-height: 22px;
    }
    
    
}
@media(max-width: 1280px){
    body .head h2 {
        font-size: 48px !important;
    }
    body .head p {
        font-size: 18px !important;
    }
    .banner .head h4 {
        font-size: 24px;
    }
    .banner .head a {
        margin-top: 30px;
    }
    section.sec5 .serving-areas {
        --cards-closed-size: 192px;
    }
    section.sec5 .main .icon img {
        max-width: 50px;
    }
    .sec3 .main h3{
        font-size: 48px;
    }
    .sec3 .main h6{
        font-size: 18px;
    }
    
    .sec4-startup {
        padding: 40px 50px;
        background-color: #29317610;
    }
    
    .sec4-startup .main h5 {
        font-size: 25px;
    }
    
    .sec3-startup .main .disc p {
        font-size: 15px;
        line-height: 20px;
    }
    
    .sec3-startup .main .disc h3 {
        font-size: 20px;
    }
    
    header.header {
        padding: 35px 95px 0 70px;
    }
    
    .report-banner {
        padding: 0 60px;
    }
    
    .theme-heading {
        font-size: 48px;
    }
    
    .theme-content {
        font-size: 18px;
    }
    
    .report-sec {
        padding: 50px 50px 20px;
    }
    
    .report-card-img .rc-image {
        height: 375px;
    }
    
    .os-sec-card p {
        min-height: 122px;
    }
    
    .contact-sec-one {
        padding: 50px 80px;
    }
    
    .contact-sec-one .theme-heading{
        margin-bottom: 20px !important;
    }
    
    .cso-right-card {
        height: 275px;
        margin-top: 40px;
    }
    
    .cso-rc-content h1 {
        font-size: 22px;
    }
    
    .cso-rc-content {
        padding: 15px;
    }
    
    .cso-right-form form {
        padding: 30px;
    }
    
    .terms-condition-banner h1 {
        font-size: 54px;
    }
    
    .terms-condition-banner {
        height: 50vh;
    }
    
    .term-condition-content {
        padding: 60px 0 0;
    }
    
    .term-condition-faq {
        padding: 50px 10px 80px;
    }
    
    .empowering-banner .head {
        padding: 0 0 80px 75px;
    }
    
    .est-left-content h4 {
        font-size: 26px;
    }
    
    .est-left-content {
        padding: 10px 10px;
    }
    
    .emp-sec-four .container-fluid {
        padding: 0 85px;
    }
    
    .banner .bg-img {
        padding-left: 5.5%;
    }
    
    .studio-sec2 {
        padding: 60px 55px;
    }
    
    .studio-sec3 {
        padding: 30px 45px 60px;
    }
    
    .studio-sec4 .main .pic img {
        height: 365px;
    }

}

@media(max-width: 1100px){
    header.header {
        padding: 30px 40px 0 40px;
    }
}
@media(max-width: 1024px){
    
    header.header .menu-header ul li {
        margin-left: 22px;
    }
    header.header{
        padding: 35px 85px 0 80px;
    }
    .sec4 .acc_img_container img{
        max-width: 100%;
    }
    .sec4{
        height: 870px;
    }
    section.sec5 .left-head {
        padding: 100px 100px;
        text-align: center;
    }
    section.sec5 .serving-areas {
        --cards-closed-size: 208px;
    }
    .sec6 .disc h6{
        font-size: 18px;
    }
    .banner button.slick-arrow{
        bottom: 20px;
    }
    section.sec8{
        padding: 67px 0 50px;
    }
    section.sec8 .left-head {
        padding-left: 55px;
    }
    section.sec8 .tab-content .disc .points{
        margin-bottom: 32px;
    }
    section.sec8 .tab-content .disc .now a{
        font-size: 16px;
        padding: 11px 22px 11px 22px;
    }
    section.sec8 .tab-content .disc .more a{
        font-size: 16px;
        padding: 6px 22px;
    }
    section.sec8 .tab-content .disc h3{
        margin: 0 0 20px;
    }
    section.sec10 button.slick-prev.slick-arrow{
        right: 20px;
    }
    .asf-head p{
        font-size: 18px;
    }
    .about-sec-four {
        padding: 80px 80px;
    }
    .about-sec-one .aso-main-content{
        padding: 0 40px;
    }
    .about-sec-one p{
        font-size: 20px;
    }
    .about-sec-one{
        padding: 0 80px 100px;
    }
    .aso-left img{
        width: 100%;
    }
    .aso-right h5{
        font-size: 18px;
    }
    .about-sec-two{
        padding: 0 80px;
    }
    .ast-left p{
        font-size: 20px;
    }
    .ast-left h5{
        font-size: 18px;
    }
    .ast-right img{
            width: 410px;
    }
    .about-sec-three-updated .container-fluid{
        padding: 0 90px 0 90px;
    }
    .astu-card h4{
        font-size: 20px;
    }
    .aci-wrapper:hover .aci-text h1{
        left: -109px;
    }
    .aci-wrapper:hover .aci-text p {
        padding: 0 152px 0 0;
    }
        .about-contact-info:nth-of-type(2) .aci-wrapper:hover .aci-text h1 {
        left: -153px;
    }
    .about-contact-info:nth-of-type(2) .aci-wrapper:hover .aci-text h1 {
        left: -153px;
    }
    .about-contact-info:nth-of-type(3) .aci-wrapper:hover .aci-text h1 {
        left: -152px;
    }
    .sec-11-latest p {
        font-size: 42px;
        padding: 0 70px;
    }
    .about-banner h1{
        font-size: 64px;
    }
    
    .ast-tabs .nav-pills .nav-link{
        padding: 15px;
    }
    
    .ast-tabs .nav-link-content h4 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .amb-sec-three {
        padding: 70px 30px;
    }
    
    .as-thre-tabs .nav-pills .nav-link {
        padding: 20px;
        font-size: 30px;
    }
    
    .membership-card {
        padding: 20px;
    }
    
    .membership-card-header .free-badge {
        font-size: 48px;
        margin-bottom: 22px;
    }
    
    .membership-card-header h4 {
        font-size: 24px;
    }
    
    .membership-card-btn{
        margin: 40px auto 10px;
    }
    
    .theme-heading {
        font-size: 48px;
    }
    
    .ast-tabs .nav-link-content h6 {
        font-size: 18px;
    }
    
    .ast-tabs .nav-link-content p {
        font-size: 16px;
    }
    
    .ast-tabs .tab-pane {
        padding: 34px;
    }
    
    .tab-content-list li .tcl-content h4 {
        font-size: 30px;
    }
    
    .membership-card-header {
        margin-bottom: 20px;
    }
    
    .membership-card .feature-list li {
        font-size: 18px;
    }
    
    .sec2-startup .right-pic .disc h3 {
        font-size: 72px;
    }
    
    .sec3-startup {
        padding: 80px 0px;
    }
    
    .sec3-startup .main .disc h3 {
        font-size: 18px;
    }
    
    body .head h2 {
        font-size: 28px !important;
    }
    
    .sec4-startup {
        padding: 40px 20px 40px 0px;
    }
    
    .sec4-startup .main .inner{
        padding: 20px 10px 20px 30px;
    }
    
    .sec4-startup .main h5 {
        font-size: 22px;
        line-height: 26px;
    }
    
    .sec4-startup .pic img {
        height: 180px;
    }
    
    .sec3-startup {
        padding: 40px 0px;
    }
    
    .report-banner {
        height: 50vh;
    }
    
    .rb-left-content h1 {
        font-size: 38px;
    }
    
    .theme-heading {
        font-size: 28px;
    }
    
    .theme-content {
        font-size: 16px;
    }
    
    .report-card-img .rc-image {
        height: 285px;
    }
    
    .report-card h4 {
        font-size: 16px;
        margin: 15px 0 0 0;
    }
    
    .report-card {
        margin-bottom: 30px;
    }
    
    .acadmey-banner {
        height: 50vh;
    }
    
    .banner .head {
        padding-top: 100px;
    }
    
    .startups-fillter {
        margin: 50px 5vh 10px;
    }
    
    .os-sec-card {
        padding: 10px;
    }
    
    .os-sec-card p {
        font-size: 14px;
    }
    
    .os-sec-card a{
        font-size: 15px;
        padding: 0 16px 0 18px;
        height: 38px;
    }
    
    .academy-sec1 p {
        margin: 0px 60px 30px;
    }
    
    .member-ship-card{
        padding: 30px 15px;
    }
    
    .member-ship-card h1 {
        margin: 25px 0 3px;
        font-size: 30px;
    }
    
    .member-ship-card img {
        width: 60px;
        height: 60px;
    }
    
    .membership-sec3 {
        padding: 40px 40px;
    }
    
    .membership-sec3 p {
        font-size: 21px;
        margin-bottom: 20px;
        line-height: 26px;
    }
    
    .contact-us-banner {
        height: 50vh;
    }
    
    .cso-left-card h1 {
        font-size: 28px;
    }
    
    .cso-left-card p {
        font-size: 20px;
    }
    
    .cso-left-card a {
        font-size: 20px;
    }
    
    .cso-right-card {
        height: 195px;
    }
    
    .cso-right-form form button {
        font-size: 20px;
        height: 45px;
        padding: 0 50px;
    }
    
    .cso-right-form form textarea.form-control {
        height: 200px;
    }
    
    .cso-right-form form .form-control {
        height: 45px;
    }
    
    .cso-rc-content h1 {
        font-size: 18px;
    }
    
    .cso-rc-content button {
        height: 42px;
        font-size: 15px;
        padding: 0 20px;
    }

    .cso-left-card {
        margin-bottom: 30px;
    }
    
    .terms-condition-banner {
        height: 50vh;
        align-items: center;
        padding-bottom: 0;
    }
    
    .empowering-banner .bg-img {
        height: 45vh;
    }
    
    .banner .head h4 {
        font-size: 21px;
        line-height: 28px;
    }
    
    .banner .head h2 br{
        display: none;
    }
    
    .est-left img {
        height: auto;
    }
    
    .est-left-content h4 {
        font-size: 21px;
    }
    
    .est-left-content p {
        font-size: 13px;
    }
    
    .est-right .theme-heading span {
        font-size: 34px;
    }
    
    .emp-sec-two .cards {
        height: 40vh;
    }
    
    .emp-sec-three-card {
        margin-right: 40px;
    }
    
    .emp-sec-three-card p {
        font-size: 28px;
    }
    
    .emp-sec-three {
        height: 290px;
    }
    
    .esf-box .theme-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .esf-box-list li p {
        font-size: 18px;
    }
    
    .emp-sec-four .container-fluid {
        padding: 0 50px;
    }
    
    .esf-box {
        padding: 40px 15px;
    }
    
    .emp-sec-four-content {
        font-size: 30px;
    }
    
    .emp-sec-five .container-fluid {
        padding: 0 40px;
    }
    
    .esf-accordian .btn-link{
        font-size: 16px;
    }
    
    .esf-right img {
        height: auto;
    }
    
    .esf-right img {
        height: auto;
    }
    
    .ess-right-bottom-content .theme-content {
        font-size: 20px;
    }
    
    .ess-right-bottom-content {
        padding: 0 5px;
    }
    
    .ess-right-bottom-content {
        padding: 0 5px;
    }
    
    .studio-sec2 .main .disc h4 {
        font-size: 16px;
    }
    
    .studio-sec2 .main {
        padding: 10px 5px;
    }
    
    .studio-sec2 .main .disc p {
        font-size: 16px;
    }
    
    .studio-sec3 .acc_right .set .content ul li p {
        font-size: 18px;
    }
    
    .studio-sec4 {
        padding: 60px 70px;
    }
    
    .studio-sec4 .main .pic img {
        height: 295px;
    }
    
    .studio-sec4 .main .desc{
        padding: 0 10px;
    }
    
    .studio-sec4 .main .desc h6 {
        font-size: 14px;
    }
    
    .studio-sec4 .main .desc p {
        font-size: 14px;
        line-height: 16px;
    }
    
    .sec3 .main h3 {
        font-size: 42px;
    }
    
    .sec3 .main h6 {
        font-size: 17px;
    }
    
    .studio-sec6 {
        padding: 50px 0;
    }
    
    .studio-sec6 .main h3 {
        font-size: 26px;
    }
    
    .studio-sec6 .main p {
        font-size: 16px;
    }
    
    .studio-sec6 .main {
        padding: 20px 15px;
    }
    
    .tabs-menu_career li a {
        font-size: 16px;
        letter-spacing: 0px;
        padding: 10px 25px;
    }
    
    .academy-sec1{
        padding: 50px 0 50px;
    }
    
    .tab-career-card {
        padding: 20px;
        margin-bottom: 0;
    }
    
    .tab-career-card h1 {
        font-size: 18px;
    }
    
    .tab-career-card span {
        margin: 8px 0 20px;
    }
    
    .tab-career-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .acadmey-sec3 {
        padding: 50px 90px;
    }
    
    .about-banner {
        height: 50vh;
    }
    
    .about-banner h1 {
        padding-top: 100px;
    }
    
    .tabs-menu_career{
        gap: 10px;
    }



}
@media(max-width: 991px){
    .menu-header{
        display: none;
    }
    
    .custom-mobile-nav {
        display: flex;
    }
    
    #nav-wrapper {
      display: block;
    }
    
    #nav {
        display: block;
        z-index: 1;
        position: relative;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .custom-mobile-menu{
        display: block;
        width: 12%;
        position: fixed !important;
        right: 20px;
        top: 15px;
    }
    body .head h2 {
        font-size: 42px !important;
    }
    .banner .head h4 {
        font-size: 20px;
        line-height: 26px;
    }
    .banner .head p{
        margin: 10px 0 0;
    }
    .banner .head a {
        margin-top: 20px;
        font-size: 16px;
    }
    body .head p{
        font-size: 16px !important;
    }
    .sec3 .main h3 {
        font-size: 42px;
    }
    .sec3 .main h3 {
        font-size: 42px;
    }
    .sec3 .row.stats .col-sm-12{
        justify-content: space-around;
    }
    .sec4 {
        height: auto;
    }
    .acc_img_container{
        height: 500px;
    }
    .sec4 .acc_img_container img{
        height: 100%;
    }
    .sec4-blank-space{
        display: none;
    }
    section.sec5 .head{
        margin-bottom: 50px;
    }
    section.sec5 .left-head{
        padding: 50px 100px;
    }
    section.sec5 .serving-areas {
        --cards-closed-size: 197px;
    }
    .sec6 .main{
        margin-bottom: 30px;
    }
    .sec7 .bg-img, .sec7 .disc {
        height: 400px;
        border-radius: 20px;
    }
    section.sec8 .left-head {
        padding-left: 0;
    }
    section.sec8 .left-head ul{
        display: flex;
        align-items: center;
        border-bottom: 1px solid #293176;
        margin-bottom: 40px;
        justify-content: space-between;
    }
    section.sec8 .left-head ul li.current{
            border: none;
    }
    section.sec8 .left-head ul li{
            border: none;
    }
    .testimonial-box{
        opacity: 1;
    }
    .sec10-blank-col{
        display: none;
    }
    section.sec10 {
        padding: 120px 50px
    }
    section.sec10 .left-head {
        text-align: center;
        margin-bottom: 60px;
    }
    section.sec10 p{
        font-size: 16px;
    }
    section.sec10 .disc {
        padding-right: 100px;
    }
    .sec11 .apply a{
        font-size: 16px;
    }
    .sec11 .join a{
        font-size: 16px;
    }
    section.sec5 .left-head h3{
        font-size: 32px;
    }
    section.sec5 .left-head p{
        font-size: 16px;
    }
    section.sec5 .left-head .join a{
                font-size: 16px;
    }
    section.sec10 h3{
            font-size: 42px;
    }
    .sec11 .head h2{
        margin-bottom: 20px;
    }
        section.sec8 .left-head ul li::before{
        content: none;
    }
    section.sec8 .left-head ul li:hover::before{
        content: none;
    }
    section.sec8 .left-head ul li:hover{
        transform: translateX(0);
    }
    .about-sec-one p{
        text-align: center;
    }
    .aso-right{
        margin-top: 20px;
    }
    .aso-right h5{
        text-align: center;
    }
    .ast-left {
        text-align: center;
    }
    .ast-right img{
        margin-top: 30px;
    }
        .about-sec-two {
        padding: 50px 80px 0;
    }
    .about-sec-three-updated .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .about-sec-three-updated .col-lg-6{
        flex: 0 0 50%;
        max-width: 50%;
    }
    .aci-text{
        padding: 0;
        text-align: center;
    }
    .aci-wrapper:hover .aci-text h1 {
        left: 0;
    }
    .aci-wrapper .aci-text h1 {
        font-size: 45px;
    }
    .aci-wrapper:hover .aci-text p {
        padding: 0;
    }
    .aci-wrapper:hover .aci-text p{
        text-align: center;
    }
    .aci-wrapper:hover .aci-text a{
        text-align: center;
    }
    .aci-wrapper {
        height: 100%;
        flex-flow: wrap;
    }
    .aci-wrapper .aci-content{
        height: 300px;
    }
    .aci-map{
            height: 300px;
    }
    .aci-wrapper:hover .aci-content {
        width: 100%;
    }
    .aci-wrapper:hover .aci-content {
        width: 100%;
    }
    .aci-wrapper:hover .aci-map{
        width: 100%;
    }
    .aci-map{
        width: 100%;
    }
    .about-contact-info:nth-of-type(2) .aci-wrapper:hover .aci-text h1{
        left: 0;
    }
    .about-contact-info:nth-of-type(3) .aci-wrapper:hover .aci-text h1 {
        left: 0;
    }
    .sec-11-latest p {
        font-size: 36px;
        padding: 0 70px;
    }
    .asf-head h3{
        font-size: 42px;
    }
        .asf-head p {
        font-size: 16px;
    }
    .asf-head h6{
            font-size: 18px;
            margin: 10px 0 40px;
    }
        .about-sec-one h2 {
        font-size: 42px;
    }
    .about-sec-one p {
        font-size: 16px;
    }
    .aci-text p {
        margin: 10px 0;
    }
    .aci-wrapper:hover .aci-content .aci-content-short-img{
        display: none;
    }
    
    .amb-sec-two {
        padding: 30px 30px 0;
    }
    
    .tab-content-list{
        height: auto;
    }
    
    .tab-content-list li{
        margin-bottom: 30px;
    }
    
    .membership-card {
        margin-bottom: 20px;
    }
    
    .banner .head {
        padding-top: 100px;
    }
    
    .sec2-startup .main .disc p{
        font-size: 16px;
    }
    
    .sec2-startup .right-pic img {
        height: 380px;
    }
    
    .sec2-startup .right-pic .disc p {
        font-size: 18px;
    }
    
    .sec2-startup .right-pic .disc h3 {
        font-size: 72px;
        line-height: 76px;
    }
    
    .sec3-startup .main {
        padding: 20px 10px 20px;
    }
    
    .sec3-startup .main .disc p {
        font-size: 13px;
        line-height: 18px;
    }
    
    .sec3-startup .main {
        min-height: 260px;
    }
    
    .banner .bg-img {
        height: 50vh;
    }
    
    .sec4-startup .main h5 {
        font-size: 18px;
        line-height: 22px;
    }
    
    .sec4-startup .main .inner {
        padding: 20px 10px 20px 20px;
    }
    
    .sec4-startup .main h5:before{
        left: -15px;
        top: 6px;
    }
    
    .sec4-startup .pic img {
        height: auto;
    }
    
    .report-banner .rb-right-img {
        display: none;
    }
    
    .report-banner {
        height: 50vh;
        padding: 250px 0 0;
        text-align: center;
    }
    
    .rb-left-content {
        height: auto;
    }
    
    .report-card-img {
        width: auto;
    }
    
    .report-card-img .rc-image {
        height: auto;
    }
    
    .report-sec .col-lg-3 {
        width: 50%;
    }
    
    .report-sec-head {
        margin-bottom: 50px;
    }
    
    .startups-fillter {
        padding: 15px 5px;
        margin: 30px 5vh 10px;
    }
    
    .startups-filter-btn{
        font-size: 14px;
    }
    
    .our-startup-sec {
        padding: 30px 30px 30px;
    }
    
    .banner .head {
        padding-top: 40px;
    }
    
    .ms-card-checklist li {
        gap: 7px;
        margin-bottom: 10px;
    }
    
    .ms-cc-checkmar-content {
        font-size: 14px;
        line-height: 1.2;
    }
    
    .member-ship-card h1 {
        margin: 20px 0 3px;
        font-size: 26px;
    }
    
    .member-ship-card p {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .academy-sec1 {
        padding: 40px 0 40px;
    }
    
    .membership-sec3 h1 {
        font-size: 30px;
    }
    
    .membership-sec3 p {
        font-size: 18px;
        line-height: 22px;
    }
    
    .member-ship-sec {
        padding: 20px 0 60px;
    }
    
    .contact-sec-one {
        padding: 50px 20px;
    }
    
    .cso-right-card {
        height: 345px;
    }
    
    #faqAccordion .btn-link {
        font-size: 17px;
         padding: 20px;
    }
    
    .banner .head h4{
        max-width: 100%;
    }
    
    .est-left-content p {
        font-size: 15px;
    }
    
    .emp-sec-two .cards {
        height: 50vh;
    }
    
    .emp-sec-four .col-lg-6{
        margin-bottom: 30px;
    }
    
    .emp-sec-four .col-lg-6:nth-child(2){
        margin-bottom: 0px;
    }
    
    .emp-sec-four-content {
        font-size: 25px;
    }
    
    .esf-right img {
        margin-top: 30px;
    }
    
    .emp-sec-six .ess-left img {
        height: auto;
        margin-bottom: 20px;
    }
    
    .emp-sec-six .container-fluid {
        padding: 0 40px;
    }
    
    .banner.studio .head {
        padding-top: 280px;
    }
    
    .banner.studio .head h4 {
        max-width: 80%;
    }
    
    .studio-sec2 {
        padding: 50px 35px;
    }
    
    .studio-sec2 .main .disc p {
        font-size: 13px;
    }
    
    .studio-sec2 .main .disc h4 {
        font-size: 14px;
    }
    
    .studio-sec2 .main .icon img {
        width: 70%;
    }
    
    .studio-sec3 .head {
        margin-bottom: 30px;
    }
    
    .studio-sec3 .acc_right .set {
        padding: 12px 15px 15px;
        margin: 0 0px 20px;
    }
    
    .studio-sec3 {
        padding: 30px 45px 40px;
    }
    
    .studio-sec4 {
        padding: 40px 40px;
    }
    
    .studio-sec4 .head p {
        line-height: 20px;
    }
    
    .studio-sec4 .main .pic img {
        height: 235px;
    }
    
    .sec3 .main h6 {
        font-size: 16px;
    }
    
    .sec3 .main h3 {
        font-size: 38px;
    }
    
    .sec3 .main {
        margin: 10px 0 0;
    }
    
    .studio-sec6 .head {
        margin-bottom: 30px;
    }
    
    .studio-sec6 .main p {
        margin: 0;
    }
    
    .tabs-menu_career li a {
        font-size: 15px;
        padding: 10px 15px;
        margin-bottom: 30px;
    }
    
    .tab-career-card {
        padding: 15px;
    }
}
@media(max-width: 768px){
    section.sec5 .serving-areas{
        --cards-closed-size: 156px;
    }
    section.sec5 .main.active {
        flex-basis: calc(300px);
    }
    section.sec5 .main .disc p {
        max-width: 280px;
    }
        .footer .col-sm-12.one:first-child{
        flex: 0 0 40%;
        max-width: 216%;
    }
    .footer .col-sm-12.one{
        flex: 0 0 30%;
        max-width: 32%;
        margin-bottom: 30px;
    }
    .footer .last-bottom{
        margin-top: 10px;
    }
    .sec-11-latest p{
        font-size: 28px;
    }
        .about-sec-one .aso-main-content {
        padding: 0;
    }
}
@media(max-width: 767px){
    .sec3 .main {
        width: 30%;
    }
    .sec3 .main h3 {
        font-size: 32px;
    }
    .sec3 .main h6 {
        font-size: 16px;
    }
    .sec3{
            padding: 40px 0 20px;
    }
    .acc_img_container {
        height: 350px;
    }
    section.sec5 .left-head .join {
        padding-top: 30px;
    }
    section.sec5 .serving-areas {
        --cards-closed-size: 100%;
        flex-flow: wrap;
    }
    section.sec5 .main.active{
        flex-basis: 100%;
    }
    section.sec5 .main.active .disc p{
        position: relative;
        top: 0;
    }
    section.sec5 .serving-areas {
        height: auto;
    }
    section.sec5 .main {
        padding-top: 0;
    }
    section.sec5 .main{
        height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 100px;
    }
    section.sec5 .main .disc p{
        top: 0;
        max-width: 100%;
        opacity: 1;
        visibility: visible;
        position: relative;
    }
        section.sec8 .tab-content .pic img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
        section.sec8 .tab-content .disc {
        margin-top: 40px;
        padding: 0;
    }
    
    footer.footer {
        padding: 30px 0 0;
    }
    
    .footer .hosd {
        display: none;
    }
}
@media(max-width: 575px){
    header.header .col-sm-2 {
        width: 100%;
        flex: 0 0 22%;
        max-width: 22%;
        margin: 0 auto;
    }
    
    header.header .col-sm-10 {
        display: none;
    }
    
    .menu-main-menu-container.accordion-nav {
        width: 100%;
    }
    
    .nav1 {
        padding-top: 20px;
         background-image: linear-gradient(93deg, #293176, #c33737b0);
    }
    
    .nav1 .push-logo img {
        width: 100%;
        object-fit: contain;
       
    }
        
    
    .sec3 .head h2{
        font-size: 32px !important;
    }
    body .head p {
        font-size: 16px !important;
    }
    .sec3 .row.stats .col-sm-12{
                flex-flow: wrap;
    }
    .sec3 .main {
        width: 60%;
        margin-bottom: 20px;
    }
    .sec4 .head{
        max-width: 100%;
    }
        body .head h2 {
        font-size: 32px !important;
    }
        .acc_img_container {
        height: 300px;
    }
    .sec4 .acc_right .set a{
            font-size: 18px;
    }
    .acc_right .content p{
            font-size: 16px;
    }
    section.sec5 .left-head h3 {
        font-size: 26px;
    }
        section.sec5 .left-head .join {
        padding-top: 10px;
    }
        section.sec5 .left-head .join a {
        font-size: 14px;
    }
    section.sec5 .main{
                padding: 0 20px;
    }
    
    .sec6 {
        padding: 30px 0;
    }
    
    .sec6 .col-sm-6{
        width: 50%;
    }
    
    .sec6 .main::before{
        display: none;
    }
    
    .sec6 .main {
        display: flex;
        padding: 10px 20px;
        min-height: 170px;
    }
    
    .sec7 .slick-arrow{
        right: 20px;
    }
    .sec7 .slick-next.slick-arrow{
            left: 20px;
    }
        .sec7 .disc h4 {
        font-size: 22px;
        text-align: center;
    }
    section.sec8 .left-head ul {
        flex-flow: wrap;
        border: none;
        justify-content: stretch;
        gap: 20px;
    }
    section.sec8 .left-head ul li.current {
        border: 0px solid #C33737;
        background-color: #fff;
    }
    section.sec8 .left-head ul li.current a {
        color: #293176;
    }
    section.sec8 .left-head ul li {
        border: 1px solid #ffffff;
        border-radius: 10px;
        padding: 10px 30px;
        margin-bottom: 0;
    }
    
    section.sec8 {
        padding: 35px 0 50px;
    }
    
    section.sec8 .left-head ul li::after{
        display: none;
    }
    
    section.sec8 .disc .col-sm-6{
        wisth: 50%
    }
    
    section.sec10 .icon img{
        margin: 0 auto;
        margin-bottom: 30px;
    }
    section.sec10 .disc {
        padding-right: 0;
        text-align: center;
    }
        section.sec10 button.slick-prev.slick-arrow {
        right: 0px;
    }
        section.sec10 button.slick-prev.slick-arrow {
        right: 0px;
    }
    .footer .col-sm-12.one:first-child{
        flex: 0 0 50%;
        max-width: 216%;
    }
    .footer .col-sm-12.one{
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 30px;
    }
        .banner .head h4 {
        font-size: 18px;
        line-height: 1;
    }
    .banner .head a{
        padding: 12px 18px;
    }
    .about-banner{
        height: 70vh;
    }
    .aci-text{
        width: 100%;
        padding: 0 20px;
    }
    .aci-text p{
        font-size: 18px;
        font-weight: 400;
    }
    .sec-11-latest p{
        font-size: 22px;
    }
    .aso-left img{
        width: 230px;
    }
    .aso-right h5{
                font-size: 16px;
    }
    .about-sec-one {
        padding: 0 20px 100px;
    }
    .about-sec-four {
        padding: 60px 20px;
    }
    .asf-head h3{
        font-size: 32px;
    }
        .about-sec-one h2 {
        font-size: 32px;
    }
        .about-sec-one {
        padding: 0 20px 30px;
    }
        .about-sec-two {
        padding: 50px 20px 0;
    }
        .ast-left p {
        font-size: 16px;
    }
        .ast-left h5 {
        font-size: 16px;
    }
        .ast-right img {
        width: 300px;
    }
    .ast-right{
            text-align: center;
    }
    .astu-card{
        min-height: auto;
    }
    .aci-wrapper .aci-text h1 {
        font-size: 32px;
    }
    .aci-text p{
                font-size: 16px;
    }    .asf-card-head h1{
            font-size: 28px;
    }
    .asf-card p{
        font-size: 16px;
    }
    .astu-title{
            font-size: 32px;
    }
        .about-banner h1 {
        font-size: 54px;
        padding-top: 60px;
    }
        header.header {
        padding: 35px 20px 0 20px;
    }
    
    .card-cus {
        min-height: auto;
    }
    
    .amb-sec-one {
        padding: 40px 0px 20px;
    }
    
    .amb-sec-one .col-lg-6{
        width: 50%;
    }
    
    .theme-heading {
        font-size: 28px;
    }
    
    .theme-content {
        font-size: 15px;
    }
    
    .banner.startup .head h4 {
        max-width: 95%;
    }
    
    .sec2-startup .right-pic img {
        height: 320px;
        object-fit: contain;
    }
    
    .sec2-startup {
        padding: 40px 0 0;
    }
    
    .asf-boxe {
        padding: 30px 10px;
        gap: 10px;
        height: 120px;
        margin-bottom: 30px;
        flex-direction: column;
    }
    
    .asf-boxe-content h1 {
        font-size: 26px;
        text-align: center;
    }
    
    .asf-boxe-content p {
        font-size: 14px;
    }
    
    .asf-boxe img {
        width: 40px;
    }
    
    .sec2-startup .col-sm-8 .col-sm-4 {
        width: 33.33%;
    }
    
    .sec2-startup .head {
        margin-bottom: 20px; 
    }
    
    .sec2-startup .right-pic {
        margin-top: 30px;
    }
    
    .sec3-startup .col-sm-3 {
        width: 50%;
    }
    
    .sec3-startup .main {
        margin-bottom: 20px;
        min-height: 220px;
    }
    
    .sec3-startup .head {
        margin-bottom: 30px;
    }
    
    .sec3-startup {
        padding: 40px 0px 20px;
    }
    
    .sec4-startup .marquee-wrapper {
        padding: 40px 0;
    }
    
    .sec3-startup .main .icon img {
        width: 36%;
    }
    
    .sec4-startup .main .inner {
        left: 80px;
    }
    
    .sec4-startup .main {
        margin-bottom: 40px;
    }
    
    .sec4-startup .main span.count{
        opacity: 1;
        top: 10px;
        font-size: 50px;
        line-height: 50px;
    }
    
    .sec4-startup .right_col .main .inner{
        right: 0px;
        left: auto;
    }
    
    .sec4-startup .right_col .main span.count {
        right: 0;
    }
    
    .sec4-startup .main h5 br {
        display: none;
    }
    
    .sec4-startup .main h5 {
        font-size: 17px;
    }
    
    .report-banner {
        padding: 200px 0 0;
    }
    
    .rb-left-content h1 {
        font-size: 28px;
    }
    
    .report-sec {
        padding: 30px 10px 20px;
    }
    
    .report-card h4 {
        font-size: 14px;
    }
    
    .os-sec-card p {
        min-height: auto;
    }
    
    .startups-filter-item select {
        margin: 10px 0 0;
    }
    
    .startups-filter-btn{
        margin-top: 10px;
    }
    
    .startups-fillter {
        padding: 5px 5px 15px;
    }
    
    .academy-sec1 p {
        margin: 0px 0px 30px;
    }
    
    .academy-sec1 {
        padding: 20px 0 20px;
    }
    
    .member-ship-card {
        margin-bottom: 20px;
        height: auto;
    }
    
    .membership-sec3 h1 {
        font-size: 28px;
        line-height: 32px;
    }
    
    .membership-sec3 p {
        font-size: 16px;
        line-height: 20px;
    }
    
    .membership-sec3 {
        padding: 30px 20px;
    }
    
    .member-ship-sec {
        padding: 20px 0 30px;
    }
    
    .member-ship-card img {
        width: 40px;
        height: 40px;
    }
    
    .contact-sec-one {
        padding: 20px 20px;
    }
    
    .cso-right-form form .form-btn {
        gap: 10px;
        margin-top: 20px;
    }
    
    .cso-right-form form button {
        font-size: 18px;
        height: 35px;
        padding: 0 40px;
    }
    
    .cso-right-card {
        height: auto;
        flex-direction: column;
    }
    
    .contact-sec-one .social-icon {
        gap: 10px;
    }
    
    .contact-sec-one .social-icon li {
        margin: 0 10px;
    }
    
    .contact-sec-one .social-icon li i {
        font-size: 26px;
    }

    .cso-right-form form {
        padding: 10px;
    }
    
    .cso-right-form form label {
        font-size: 18px;
    }
    
    .terms-condition-banner h1 {
        font-size: 28px;
    }
    
    .term-condition-content {
        padding: 30px 0 0;
    }
    
    .term-condition-content p {
        font-size: 18px;
    }
    
    .term-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .term-section:before {
        margin-right: 5px;
        font-size: 1.5rem;
    }
    
    .term-section {
        margin-bottom: 25px;
    }
    
    #faqAccordion .btn-link {
    font-size: 13px;}
    
    .sec4 .head h2 {
        width: 100%;
    }
    
    section.sec5 .head h2 {
        width: 70%;
        margin: 0 auto 10px;
    }
    
    .about-sec-one h2 {
        margin: 0 auto 10px;
        width: 90%;
    }
    
    .sec2-startup .right-pic .disc h3 {
        font-size: 52px;
        line-height: 46px;
    }
    
    .sec2-startup .right-pic .disc h4 {
        font-size: 32px;
    }
    
    .sec2-startup .right-pic .disc p {
        font-size: 16px;
    }
    
    .empowering-banner .head {
        padding: 0 0 30px 20px;
    }
    
    .empowering-banner .bg-img {
        height: auto !important;
    }
    
    .empowering-banner .head{
        padding-top: 150px !important;
    }
    
    .empowering-banner .head h2{
        font-size: 18px !important;
    }
    
    .empowering-banner .head h4{
        font-size: 14px !important;
    }
    
    .emp-sec-one h1 {
        width: 80%;
        margin: 0 auto;
    }
    
    .emp-sec-one {
        padding: 30px 0;
    }
    
    .emp-sec-two {
        padding: 30px 0 !important;
    }
    
    .emp-sec-two {
        padding: 30px 0 !important;
    }
    
    .emp-sec-two .est-right {}
    
    .emp-sec-two .est-right h1 {
        font-size: 24px;
    }
    
    .emp-sec-two .container-fluid {
        padding: 0 20px;
    }
    
    .emp-sec-two .est-right h1 span {
        font-size: 26px;
    }
    
    .est-left-content h4 {
        font-size: 16px;
    }
    
    .est-left-content p {
        font-size: 12px;
        line-height: 15px;
    }
    
    .emp-sec-four .container-fluid {
        padding: 0 20px;
    }
    
    .esf-box .theme-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .esf-box-list li h6 {
        font-size: 18px;
    }
    
    .esf-box-list li p {
        font-size: 15px;
    }
    
    .esf-box {
        padding: 30px 10px;
    }
    
    .emp-sec-four {
        padding: 40px 0;
    }
    
    .emp-sec-four-content {
        font-size: 20px;
    }
    
    .emp-sec-five {
        padding: 40px 0;
    }
    
    .emp-sec-six .ess-right h1{
        font-size: 26px;
    }
    
    .emp-sec-six .ess-right h1 span{
        font-size: 24px;
    }
    
    .ess-right-bottom-content .theme-heading {
        font-size: 19px;
    }
    
    .emp-sec-five .container-fluid {
        padding: 0 20px;
    }
    
    .emp-sec-six .container-fluid {
        padding: 0 20px;
    }
    
    .emp-sec-five .theme-heading {
        font-size: 24px;
    }
    
    .banner.studio .head h4 {
        max-width: 100%;
    }
    
    .banner.studio .head {
        padding-top: 220px;
    }
    
    .banner.studio .head .join {
        margin-right: 0px;
    }
    
    .studio .head a {
        padding: 10px 15px;
    }
    
    .studio-sec2 .main {
        margin: 0 0 20px;
    }
    
    .studio-sec2 {
        padding: 30px 5px;
    }
    
    .studio-sec2 .col-sm-3 {
        width: 50%;
    }
    
    .studio-sec2 .main .disc h4 {
        font-size: 16px;
    }
    
    .studio-sec2 {
        padding: 30px 5px 0;
    }
    
    .studio-sec3 {
        padding: 30px 10px 10px;
    }
    
    .studio-sec2 .col-sm-3 {
        width: 50%;
    }
    
    .studio-sec4 .main {
        margin-bottom: 20px;
    }
    
    .studio-sec4 .main .pic img {
        height: auto;
    }
    
    .studio-sec4 {
        padding: 40px 10px;
    }
    
    .studio-sec5 .col-sm-3 {
        width: 50%;
    }
    
    .one.one1 .row {
    }
    
    .studio-sec6 .main {
        width: 100%;
    }
    
    .one.one1 .col-sm-6 {
        padding: 0;
    }
    
    .studio-sec7 {
        padding: 30px 0;
    }
    
    .studio-sec7 .head {
        text-align: center;
    }
    
    .studio-sec4 .head h2 {
        margin: 0 auto 10px;
        width: 85%;
    }
    
    .deal-dock-sec1.academy-sec1 p {
        max-width: 100%;
    }
    
    .tabs-menu_career {
        flex-direction: column;
    }
    
    .tabs-menu_career {
        flex-flow: wrap;
        margin-bottom: 20px;
    }
    
    .tabs-menu_career li a {
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
    }
    
    .tabs-menu_career li {
        width: 48%;
    }
    
    .tab-career-card {
        margin-bottom: 30px;
    }
    
    .sec-career_cus {
        padding-bottom: 30px;
    }
    
    .acadmey-sec3.deal-dock-sec3 {
        padding: 30px 10px;
    }
}
@media screen and (min-width: 320px) and (max-width: 495px) {
    header.header{
        padding: 5px 30px 0 30px;
    }
    .banner .bg-img.bg-vid{
        height: 60vh;
    }
    .banner .bg-vid video{
        height: 100%;
    }
    .header .logo img{
        width: 100%;
    }
    .banner button.slick-arrow.slick-prev {
        left: 55% !important;
    }
    .banner button.slick-arrow.slick-next{
        left: 45% !important;
    }
    .banner button.slick-arrow{
        bottom: 0px !important;
    }
        body .head h2 {
        font-size: 24px !important;
    }
    .banner .head h4{
        font-size: 16px;
    }
    .banner .head a{
        font-size: 14px;
    }
    .banner .bg-img{
        height: 60vh;
    }
    .banner button.slick-arrow{
        display: none !important;
    }
    .sec3 .head h2 {
        font-size: 24px !important;
    }
    body .head p {
        font-size: 14px !important;
    }
    
    .footer .head{
        text-align: center;
    }
    
    .footer .head p{
        max-width: 100%;
    }
    .sec2-banner ul li h5{
        font-size: 14px;
    }
    .sec3 .main h3 {
        font-size: 24px;
    }
    .sec3 .main h6 {
        font-size: 14px;
    }
    .sec3 .main{
        margin: 30px 0 0;
    }
    .sec4{
        padding: 30px 20px;
    }
    .sec4 .head{
        margin: 0 auto 40px;
    }
    .acc_right .content p {
        font-size: 14px;
    }
        section.sec5 .left-head {
        padding: 50px 20px;
    }
    section.sec5 .left-head .join a{
        padding: 8px 18px;
        font-weight: 400;
    }
    section.sec5 .left-head .join a img{
        margin-left: 5px;
        width: 22px;
    }
    section.sec5 .main .disc p{
        font-size: 14px;
    }
    
    .sec6 .disc h4{
        font-size: 24px;
        margin: 12px 0 6px;
    }
    .sec6 .disc h6{
        font-size: 14px;
    }
    .sec7 .bg-img, .sec7 .disc{
        height: 250px;
    }
    .sec7 .disc h4 {
        font-size: 18px;
    }
    .sec7 .slick-arrow{
        width: 30px;
        height: 30px;
    }
    section.sec8 .left-head ul{
        justify-content: center;
    }
    section.sec8 .left-head ul li{
                width: 100%;
    }
    section.sec8 .tab-content .disc h3{
        font-size: 24px;
    }
    section.sec8 .tab-content .disc .now a img{
        width: 8px;
        font-size: 14px;
        width: 8px;
    }
    .testimonial-box .testimonial-comment{
        font-size: 16px;
            margin: 12px 0 20px;
    }
    .testimonial-box .testimonial-user .tu-name{
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    .testimonial-box .testimonial-user .tu-info h4{
        margin-bottom: 5px;
        font-size: 18px;
    }
    .testimonial-box i.fa-quote-left{
        left: 40px;
        top: -23px;
        font-size: 55px;
    }
    section.sec9{
            padding: 50px 0 50px;
    }
    section.sec10 {
        padding: 120px 20px;
    }
    section.sec10 h3{
        font-size: 32px;
    }
    section.sec10 p {
        font-size: 14px;
    }
    section.sec10 .icon img {
        width: 45px;
        margin-bottom: 20px;
    }
    section.sec10 .disc h4{
        font-size: 24px;
    }
    section.sec10 button.slick-next.slick-arrow {
        left: 0px;
    }
    section.sec10 {
        padding: 50px 20px;
    }
    .sec11 .apply a{
        font-size: 14px;
        margin-bottom: 10px;
        padding: 9px 18px 8px 18px;
        font-weight: 300;
    }
    .sec11 .join{
        margin-left: 0;
        display: block;
    }
    .sec11 .join a {
        font-size: 14px;
        padding: 9px 24px 9px 24px;
        font-weight: 300;
    }
    .footer .col-sm-12.one:first-child{
        flex: 0 0 100%;
    }
    .footer .col-sm-12.one{
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    .footer ul li a {
        font-size: 14px;
    }
    .footer h3 {
        margin: 0 0 15px;
    }
    .sec11 .head h2{
        font-size: 20px !important;
        margin-bottom: 10px;
    }
    .sec11 {
        padding: 50px 0 30px;
    }
    .hamburger-inner{
        width: 100%;
    }
    .hamburger-inner::before, .hamburger-inner::after{
        width: 100%;
    }
    section.sec5 .left-head h3{
                font-size: 24px;
    }
    section.sec5 .left-head p{
        font-size: 14px;
    }
    section.sec8 .head{
        margin-bottom: 50px;
    }
    section.sec8 .left-head ul li{
        padding: 10px 20px;
    }
    section.sec8 .left-head ul li a .text-wrapper .letters{
        font-size: 16px;
    }
    section.sec8 .left-head ul li a span {
        font-weight: 300;
        font-size: 14px;
    }
    section.sec8 .tab-content .disc .now a {
        font-size: 14px;
        font-weight: 400;
    }
    .footer .social ul li a{
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    section.sec9 .head{
        margin-bottom: 30px;
    }
    .testimonial-box .testimonial-user .tu-info p{
        font-size: 14px;
    }
        .about-banner {
        height: 25vh;
    }
    .about-banner h1 {
        font-size: 28px;
    }
        .asf-head h3 {
        font-size: 24px;
        width: 87%;
        margin: 0 auto 10px;
    }
        .asf-head p {
        font-size: 14px;
    }
        .about-sec-four {
        padding: 25px 10px;
    }
    .asf-card-head h1{
            font-size: 22px;
    }
    .asf-card p{
        font-size: 14px;
    }
        .about-sec-one h2 {
        font-size: 24px;
    }
        .about-sec-one p {
        font-size: 14px;
    }
        .aso-right h5 {
        font-size: 14px;
    }
        .ast-left p {
        font-size: 14px;
            margin-bottom: 20px;
    }
        .ast-left h5 {
        font-size: 14px;
    }
        .about-sec-three-updated .container-fluid {
        padding: 0 20px 0 20px;
        
    }
    .astu-title{
            font-size: 28px;
            margin-bottom: 20px;
    }
        .astu-card h4 {
        font-size: 18px;
    }
        .aci-wrapper .aci-text h1 {
        font-size: 26px;
    }
        .aci-text p {
        font-size: 14px;
    }
    .aci-text a{
        font-size: 14px;
    }
    .sec-11-latest p {
        font-size: 14px;
        padding: 0;
    }
    .sec-11-latest.sec11 .apply a{
            font-size: 14px;
    }
    .astu-card img{
            width: 45px;
    }
    .hamburger-box{
    width: 100%;
    }
    .custom-mobile-nav li a{
            font-size: 18px;
    }
    .cus-has-submenu > a::after{
        font-size: 16px;
    }
    
    .aso-left::before {
        border-top-left-radius: 40px;
    }
    
    .amb-sec-two{
        padding: 10px 0px 0;
    }
    
    .ast-tabs .nav-link img {
        width: 60px;
    }
    
    .ast-tabs .nav-link-content h4 {
        font-size: 23px;
        margin-bottom: 10px;
    }
    
    .ast-tabs .nav-link-content p {
        font-size: 15px;
    }
    
    .ast-tabs .tab-pane {
        padding: 20px;
    }
    
    .tab-content .tab-content-head h4 {
        font-size: 22px;
    }
    
    .tab-content .tab-content-head p {
        font-size: 16px;
    }
    
    .tab-content-list li .tcl-content h4 {
        font-size: 22px;
    }
    
    .tab-content-list li .tcl-content p {
        font-size: 16px;
    }
    
    .tab-content-list li {
        gap: 10px;
    }
    
    .tab-content-list li img {
        width: 50px;
    }
    
    .amb-sec-three {
        padding: 70px 0px 30px;
    }
    
    .as-thre-tabs .nav-pills .nav-link {
        padding: 15px;
        font-size: 20px;
    }
    
    .membership-card-header h4 {
        font-size: 20px;
    }
    
    .membership-card-header .free-badge {
        font-size: 42px;
        margin-bottom: 22px;
    }
    
    .membership-card {
        padding: 15px;
    }
    
    .membership-card .feature-list li {
        font-size: 16px;
    }
    
    .membership-card .benefits-section h3 {
        font-size: 25px;
    }
    
    .membership-card .benefits-section ul li {
        font-size: 16px;
    }


}