@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
body{
    height: 100vh;
}
*{
    font-family: "Onest", sans-serif;
    transition: all 0.3s ease-in 0.1s;
}
.no-scroll{
    overflow: hidden;
}
.text-blue{
    color: #00334E;
    font-weight: 600;
}
.text-green{
    color: #526D2D;
    font-weight: 600;
}
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 2;
    background-color: #00B5F1;
}
#btn-back-to-top[title]:hover {
    background-color: #00334E;
}
[data-title]:hover:after {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}
[data-title]:after {
    content: attr(data-title);
    background-color: #526d2db0;
    color: #f7f4f4;
    font-size: 14px;
    position: absolute;
    padding:5px;
    left: -200%;
    white-space: nowrap;
    opacity: 0;
    z-index: 9;
    visibility: hidden;
    border-radius: 5px;
}
[data-title] {
    position: relative;
}
.nav{
    position: fixed;
    top: 0;
    z-index: 3;
    opacity: 1;
    display: block;
}
.nav.hidden {
    opacity: 0;
}

.nav:hover {
    opacity: 1; 
}
.nav.nodisplay{
    display: none;
}
.nav .display{
    display: block;
}
@media(max-width:1024px){
    .nav.hidden {
        display: none;
    }
    
    .nav:hover {
        opacity: 1; 
    }
}
.nav .topbluebar{
    width: 100%;
    background-color: #00B5F1;
}
.nav .navtext{
    color: #00334E !important;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 18px;
    &:hover{
        color: #526D2D !important;
    }
}
.nav .active{
    color: #526D2D !important;
    border-bottom: 5px solid #526D2D;
}
.nav .loginbtn{
    background-color: #00334E;
    color: #f7f4f4 !important;
    font-size: 20px;
    font-weight: 600;
    height: 45px;
    width: 110px;
    border-radius: 10px;
}
.nav .topnavicon{
    width: 30px;
    height:30px;
}
.nav .topnavtext{
    text-decoration: none;
    color: #f7f4f4;
    font-weight: 500;
}
.navbar img{
    width: 270px;
    height: 60px;
}
.nav .dropdown-item:hover{
    background-color: transparent !important;
}
.nav .navbar-toggler{
    border: none !important;
}
.nav .navbar-toggler:focus{
    box-shadow: none !important;
}
.nav .dropdown-menu{
    background-color: #f7f4f4; 
    border:none;
}
@media(max-width:1176px){
    .nav .navtext{
        color: #00334E !important;
        font-size: 16px;
        font-weight: 600;
        padding-bottom: 18px;
        &:hover{
            color: #526D2D !important;
        }
    }
}
@media(max-width:1024px){
    .nav .navtext{
        color: #00334E !important;
        font-size: 14px;
        font-weight: 600;
        padding-bottom: 22px;
    }
}
@media(max-width:991px){
    .nav .navbar-nav{
        width: 40%;
        margin-left: auto;
        background-color: #f7f4f4ee;
    }
    .nav .dropdown-menu{
        background-color: transparent; 
        border:none;
    }
}
@media(max-width:660px){
    .nav .navbar-nav{
        width: 50%;
        margin-left: auto;
        background-color: #f7f4f4ee;
    }
}
@media(max-width:426px){
    .nav .navbar-nav{
        width: 70%;
        margin-left: auto;
        background-color: #f7f4f4ee;
    }
    .nav .navtext{
        color: #00334E !important;
        font-size: 14px;
        font-weight: 600;
        padding-bottom: 10px;
    }
}
/* ham btn */

.navbar-toggler{
    width: 30px;
    height: 20px;
    position: relative;
    transition: .5s ease-in-out;
    color: #00334E;
  }

  .navbar-toggler, .navbar-toggler:focus, .navbar-toggler:active, .navbar-toggler-icon:focus{
    outline: none;
    box-shadow: none;
    border: 0;
    position: relative;
  }
  .navbar-toggler span{
    margin: 0;
    padding: 0;
  }

  .toggler-icon{
    display: block;
    position: absolute;
    height: 1.5px;
    width: 100%;
    background: #00334E;
    border-radius: 1px;
    opacity:1px;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }
  .middle-bar{
    margin-top: 0px;
  }

  .navbar-toggler .top-bar{
    margin-top: 0px;
    height: 1.5px;
    transform: rotate(135deg);
  }

  .navbar-toggler .middle-bar{
    opacity: 0;
    filter: alpha(opacity=0);
  }

  .navbar-toggler .bottom-bar{
    margin-top: 0px;
    height: 1.5px;
    transform: rotate(-135deg);
  }

  .navbar-toggler.collapsed .top-bar{
    margin-top: -20px;
    transform: rotate(0deg);
  }

  .navbar-toggler.collapsed .middle-bar{
    opacity: 1;
    filter: alpha(opacity=100);
  }

  .navbar-toggler.collapsed .bottom-bar{
    margin-top: 20px;
    transform: rotate(0deg);
  }

.navbar-collapse {
    max-height: 100vh; 
}
@media (max-height: 500px) {
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }
}
@media (max-height: 450px) {
    .navbar-collapse {
        max-height: 70vh;
        overflow-y: auto;
    }
}
/* Adjusting the toggler button and padding for small screens */
.navbar-toggler {
    margin-bottom: 10px; /* Add spacing below the toggler if needed */
}

/* For very small screens, reduce padding inside the navbar */
@media (max-height: 450px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem; /* Reduce padding to make more room */
    }
}

/* home */
.home{
    background-color: #f7f4f4;
}
.home .text{
    font-size: 40px;
    color: #f7f4f4;
    z-index: 1;
    font-weight: 600;
}
@media(max-width:1024px){
    .home .text{
        font-size: 30px;
    }
    .nav .navbar-collapse {
        margin-top: 0px !important;
    }
}
@media(max-width:769px){
    .home .text{
        font-size: 20px;
    }
    .home{
        margin-top: 115px !important;
        background-color: #f7f4f4;
    }
}
@media(max-width:450px){
    .navbar img{
        width: 150px;
        height: 60px;
    }
}
@media(max-width:427px){
    .home .text{
        font-size: 10px;
    }
    .nav .topnavtext{
        font-size: 14px;
        text-decoration: none;
        color: #f7f4f4;
        font-weight: 500;
    }
}
@media(max-width:380px){
    .navbar img{
        width: 160px;
        height: 60px;
    }
    .nav .topnavtext{
        font-size: 14px;
        text-decoration: none;
        color: #f7f4f4;
        font-weight: 500;
    }
}
@media(max-width:350px){
    .navbar img{
        width: 130px;
        height: 60px;
    }
    .nav .topnavtext{
        font-size: 12px;
        text-decoration: none;
        color: #f7f4f4;
        font-weight: 500;
    }
}
@media(max-width:320px){
    .navbar img{
        width: 130px;
        height: 60px;
    }
    .nav .topnavtext{
        font-size: 10px;
        text-decoration: none;
        color: #f7f4f4;
        font-weight: 500;
    }
}
/* Idea lab section */

.idealab{
    background-color: #F5f5f5;
}
.idealab .heading1{
    color: #00334E;
    font-size: 40px;
    font-weight: 600;
}
.idealab .topicon{
    width: 80px;
    height: 80px;
}
.idealab .top1{
    border-bottom: 5px solid #f5f5f5;
    cursor: pointer;
}
.idealab .top2{
    border-bottom: 5px solid #f5f5f5;
    cursor: pointer;
}
.idealab .top3{
    border-bottom: 5px solid #f5f5f5;
    cursor: pointer;
}
.idealab .active{
    border-bottom: 5px solid #526D2D;
    .toptext{
        color: #526D2D;
    }
}
.idealab .toptext{
    font-size: 22px;
    color: #545758;
    font-weight: 600;
}
.idealab .s1text{
    font-size: 18px;
    color: #545758;
    text-align: justify;
}
.idealab .row2{
    display: none;
}
.idealab .row2 .icon{
    width: 80px;
    height: 80px;
}
.idealab .row2 .text1{
    color: #00334E;
    font-size: 22px;
    font-weight: 600;
}
.idealab .row2 .text2{
    color: #545758;
    font-size: 18px;
    text-align: justify;
}
.idealab .row3{
    display: none;
}
.idealab .row3 .icon{
    width: 55px;
    height: 55px;
}
.idealab .row3 .text1{
    color: #00334E;
    font-size: 23px;
    font-weight: 600;
}
.idealab .row3 .text2{
    color: #545758;
    font-size: 18px;
    text-align: justify;
}
.idealab .row1img{
    width: 515px;
    height: 450px;
}

@media(max-width:1024px){
    .idealab .heading1{
        color: #00334E;
        font-size: 36px;
        font-weight: 600;
    }
    .idealab .row1img{
        width: 460px;
        height: 400px;
    }
    .idealab .s1text{
        font-size: 16px;
        color: #545758;
    }
    .idealab .topicon{
        width: 70px;
        height: 70px;
    }
    .idealab .row2 .icon{
        width: 70px;
        height: 70px;
    }
    .idealab .row2 .text1{
        color: #00334E;
        font-size: 20px;
        font-weight: 600;
    }
    .idealab .row2 .text2{
        color: #545758;
        font-size: 16px;
    }
    .idealab .row3 .icon{
        width: 55px;
        height: 55px;
    }
    .idealab .row3 .text1{
        color: #00334E;
        font-size: 23px;
        font-weight: 600;
    }
    .idealab .row3 .text2{
        color: #545758;
        font-size: 16px;
    }
}
@media(max-width:769px){
    .idealab .heading1{
        color: #00334E;
        font-size: 36px;
        font-weight: 600;
    }
    .idealab .row1img{
        width: 420px;
        height: 360px;
    }
    .idealab .s1text{
        font-size: 16px;
        color: #545758;
    }
    .idealab .topicon{
        width: 50px;
        height: 50px;
    }
    .idealab .toptext{
        font-size: 18px;
        color: #545758;
        font-weight: 600;
    }
    .idealab .row2 .icon{
        width: 60px;
        height: 60px;
    }
    .idealab .row2 .text1{
        color: #00334E;
        font-size: 20px;
        font-weight: 600;
    }
    .idealab .row2 .text2{
        color: #545758;
        font-size: 16px;
    }
    .idealab .row3 .icon{
        width: 45px;
        height: 45px;
    }
    .idealab .row3 .text1{
        color: #00334E;
        font-size: 20px;
        font-weight: 600;
    }
    .idealab .row3 .text2{
        color: #545758;
        font-size: 16px;
    }
}
@media(max-width:426px){
    .idealab .heading1{
        color: #00334E;
        font-size: 32px;
        font-weight: 600;
    }
    .idealab .row1img{
        width: 320px;
        height: 260px;
    }
    .idealab .s1text{
        font-size: 14px;
        color: #545758;
    }
    .idealab .topicon{
        width: 50px;
        height: 50px;
    }
    .idealab .toptext{
        font-size: 14px;
        color: #545758;
        font-weight: 600;
    }
    .idealab .row2 .icon{
        width: 50px;
        height: 50px;
    }
    .idealab .row2 .text1{
        color: #00334E;
        font-size: 18px;
        font-weight: 600;
    }
    .idealab .row2 .text2{
        color: #545758;
        font-size: 14px;
    }
    .idealab .row3 .icon{
        width: 35px;
        height: 35px;
    }
    .idealab .row3 .text1{
        color: #00334E;
        font-size: 18px;
        font-weight: 600;
    }
    .idealab .row3 .text2{
        color: #545758;
        font-size: 14px;
    }
}
/* our support */

.oursupport1{
    display: flex;
}
.oursupport2{
    display: none;
}
.our-support{
    background-color: #F5f5f5;
}
.our-support .heading1{
    color: #00334E;
    font-size: 40px;
    font-weight: 600;
}
.our-support .text{
    color: #545758;
    font-size: 20px;
    text-align: justify;
}
.our-support .text1{
    color: #F7F4F4;
    font-size: 22px !important;
    font-weight: 500;
    text-align: center;
    padding-bottom: 30px;
}
.our-support  .text-2{
    color: #F7F4F4;
    font-size: 18px;
    text-align: left;
    display: none;
}
.our-support .b1{
    width: 320px;
    border-radius: 10px;
    height: 500px;
    background-image: url("/assets/idealab/Fundingandsponsorship.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.our-support .bluebox{
    padding-top: 32px;
    border-radius: 10px;
    background-color: #00334edb;
    height: 100px;
    width: 100%;
    position: absolute;
    bottom: 0;
}
.our-support .b1:hover .bluebox{
    height: 500px;
    padding-left: 30px;
    padding-right: 20px;
}
.our-support .b1:hover .text-2{
    display: inline;
    font-size: 18px;
    text-align: left;
    padding-top: 30px;
}
.our-support .b1:hover .text1{
    text-align: center;
}
.our-support .b2{
    width: 320px;
    border-radius: 10px;
    height: 500px;
    background-image: url("/assets/idealab/Mentorshipandtraining.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.our-support .b2:hover .bluebox{
    height: 500px;
    padding-left: 30px;
    padding-right: 20px;
}
.our-support .b2:hover .text-2{
    display: inline;
    font-size: 18px;
    text-align: left;
    padding-top: 30px;
}
.our-support .b2:hover .text1{
    text-align: center;
}
.our-support .b3{
    width: 320px;
    border-radius: 10px;
    height: 500px;
    background-image: url("/assets/idealab/Resourcesharing.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.our-support .b3:hover .bluebox{
    height: 500px;
    padding-left: 30px;
    padding-right: 20px;
}
.our-support .b3:hover .text-2{
    display: inline;
    font-size: 18px;
    text-align: left;
    padding-top: 30px;
}
.our-support .b3:hover .text1{
    text-align: center;
}
.our-support .b4{
    width: 320px;
    border-radius: 10px;
    height: 500px;
    background-image: url("/assets/idealab/colloborativeprojects.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.our-support .b4:hover .bluebox{
    height: 500px;
    padding-left: 30px;
    padding-right: 20px;
}
.our-support .b4:hover .text-2{
    display: inline;
    font-size: 18px;
    text-align: left;
    padding-top: 30px;
}
.our-support .b4:hover .text1{
    text-align: center;
}
.our-support .b5{
    width: 320px;
    border-radius: 10px;
    height: 500px;
    background-image: url("/assets/idealab/labandestablishment.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.our-support .bluebox{
    padding-top: 32px;
    border-radius: 10px;
    background-color: #00334edb;
    height: 100px;
    width: 100%;
    position: absolute;
    bottom: 0;
}
.our-support .b5:hover .bluebox{
    height: 500px;
    padding-left: 30px;
    padding-right: 20px;
}
.our-support .b5:hover .text-2{
    display: inline;
    font-size: 18px;
    text-align: left;
    padding-top: 30px;
}
.our-support .b5:hover .text1{
    text-align: center;
}
/* //carousel */

.cards-wrapper {
    /* max-width: 1100px; */
    width: 100%;
    position: relative;
}
.cards-wrapper i {
    top: 50%;
    height: 50px;
    width: 50px;
    font-size: 1.25rem;
    position: absolute;
    line-height: 50px;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.1s linear;
}
.cards-wrapper i:active{
    transform: translateY(-50%) scale(0.85);
}
.cards-wrapper i:first-child{
    left: -22px;
}
.cards-wrapper i:last-child{
    right: -22px;
}
.cards-wrapper .cards-carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 4) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.cards-carousel::-webkit-scrollbar {
    display: none;
}
.cards-carousel.no-transition {
    scroll-behavior: auto;
}
.cards-carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}
.cards-carousel.dragging .slide-card {
    cursor: grab;
    user-select: none;
}
.cards-carousel :where(.slide-card, .slide-img) {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cards-carousel .slide-card {
    scroll-snap-align: start;
    height: 500px;
    list-style: none;
    /* cursor: pointer; */
    padding-bottom: 15px;
    flex-direction: column;
    border-radius: 8px;
}
.slide-card .slide-img img {
    width: 350px;
    height: 250px;
    object-fit: fill;
    border-radius: 10%;
}
.cards-carousel .slide-card p {
    /* margin: 30px 0 5px; */
    color: #f7f4f4;
    font-size: 18px;
    font-weight: 500;
}
.agritechsection5 .div{
    padding-top: 55px;
}
#left{
    cursor: pointer;
    transform: translate(20px,-40px);
}
#right{
    cursor: pointer;
    transform: translate(-20px,-40px);
}
@media(max-width:1300px){
    .slide-card .slide-img img {
        width: 300px;
        height: 250px;
        object-fit: fill;
        border-radius: 10%;
    }
    .agritechsection5 .div{
        padding-top: 55px;
    }
}
@media(max-width:1092px){
    .slide-card .slide-img img {
        width: 250px;
        height: 200px;
        object-fit: fill;
        border-radius: 10%;
    }
    #left{
        transform: translate(20px,-40px);
    }
    #right{
        transform: translate(-20px,-40px);
    }
}
@media(max-width:991.5px){
    .slide-card .slide-img img {
        width: 200px;
        height: 150px;
        object-fit: fill;
        border-radius: 10%;
    }
    #left{
        transform: translate(-20px,-60px);
    }
    #right{
        transform: translate(21px,-60px);
    }
    .icon{
        width: 40px;
        height: 40px;
    }
}
@media(max-width:769px){
    .slide-card .slide-img img {
        width: 180px;
        height: 135px;
        object-fit: fill;
        border-radius: 10%;
    }
    #left{
        transform: translate(10px,-60px);
    }
    #right{
        transform: translate(-4px,-60px);
    }
}
@media screen and (max-width: 900px) {
.cards-wrapper .cards-carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
}
}
@media(max-width:600px){
    #left{
        transform: translate(50px,-60px);
    }
    #right{
        transform: translate(-51px,-60px);
    }
}
@media screen and (max-width: 600px) {
    .cards-wrapper .cards-carousel {
        grid-auto-columns: 100%;
    }
}
@media screen and (max-width: 425px) {
    #left{
        transform: translate(50px,-60px);
    }
    #right{
        transform: translate(-51px,-60px);
    }
    .slide-card .slide-img img {
        width: 150px;
        height: 100px;
        object-fit: fill;
        border-radius: 10%;
    }
    .cards-carousel .slide-card {
        scroll-snap-align: start;
        height: 100%;
        list-style: none;
        /* cursor: pointer; */
        padding-bottom: 15px;
        flex-direction: column;
        border-radius: 8px;
    }
}
@media screen and (max-width: 320px) {
    #left{
        transform: translate(25px,-60px);
    }
    #right{
        transform: translate(-26px,-60px);
    }
    
}
@media(max-width:1400px){
    .our-support .b1{
        width: 280px;
        border-radius: 10px;
        height: 500px;
        background-image: url("/assets/idealab/Fundingandsponsorship.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b2{
        width: 280px;
        border-radius: 10px;
        height: 500px;
        background-image: url("/assets/idealab/Mentorshipandtraining.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b3{
        width: 280px;
        border-radius: 10px;
        height: 500px;
        background-image: url("/assets/idealab/Resourcesharing.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b4{
        width: 280px;
        border-radius: 10px;
        height: 500px;
        background-image: url("/assets/idealab/colloborativeprojects.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b5{
        width: 280px;
        border-radius: 10px;
        height: 500px;
        background-image: url("/assets/idealab/labandestablishment.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
}

@media(max-width:1200px){
    .our-support .b1{
        width: 230px;
        border-radius: 10px;
        height: 450px;
        background-image: url("/assets/idealab/Fundingandsponsorship.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b1:hover .bluebox{
        height: 450px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b1:hover .text-2{
        display: inline;
        font-size: 16px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b1:hover .text1{
        padding-bottom: 30px;
    }
    .our-support .b2{
        width: 230px;
        border-radius: 10px;
        height: 450px;
        background-image: url("/assets/idealab/Mentorshipandtraining.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b2:hover .bluebox{
        height: 450px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b2:hover .text-2{
        display: inline;
        font-size: 16px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b2:hover .text1{
        padding-bottom: 30px;
    }
    .our-support .b3{
        width: 230px;
        border-radius: 10px;
        height: 450px;
        background-image: url("/assets/idealab/Resourcesharing.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b3:hover .bluebox{
        height: 450px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b3:hover .text-2{
        display: inline;
        font-size: 16px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b3:hover .text1{
        padding-bottom: 30px;
    }
    .our-support .b4{
        width: 230px;
        border-radius: 10px;
        height: 450px;
        background-image: url("/assets/idealab/colloborativeprojects.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b4:hover .bluebox{
        height: 450px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b4:hover .text-2{
        display: inline;
        font-size: 16px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b4:hover .text1{
        padding-bottom: 30px;
    }
    .our-support .b5{
        width: 230px;
        border-radius: 10px;
        height: 450px;
        background-image: url("/assets/idealab/labandestablishment.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b5:hover .bluebox{
        height: 450px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b5:hover .text-2{
        display: inline;
        font-size: 16px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b5:hover .text1{
        padding-bottom: 30px;
    }
    .our-support .bluebox{
        padding-top: 22px;
        border-radius: 10px;
        background-color: #00334edb;
        height: 100px;
        width: 100%;
        position: absolute;
        bottom: 0;
    }
    .our-support .text1{
        padding-top: 10px;
        color: #F7F4F4;
        font-size: 18px !important;
        font-weight: 500;
        text-align: center;
        padding-bottom: 0px;
        &:hover{
            padding-bottom: 10px;
        }
    }
}
@media(max-width:1024px){
    .our-support .heading1{
        color: #00334E;
        font-size: 36px;
        font-weight: 600;
    }
    .our-support .text{
        color: #545758;
        font-size: 18px;
        text-align: justify;
    }
}
@media(max-width:993px){
    .oursupport1{
        display: none;
    }
    .oursupport2{
        display: flex;
    }
    .our-support .b1{
        width: 45%;
        border-radius: 10px;
        height: 350px;
        background-image: url("/assets/idealab/Fundingandsponsorship.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b1:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b1:hover .text-2{
        display: inline;
        font-size: 18px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b1:hover .text1{
        text-align: left;
    }
    .our-support .b2{
        width: 45%;
        border-radius: 10px;
        height:350px;
        background-image: url("/assets/idealab/labandestablishment.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b2:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b2:hover .text-2{
        display: inline;
        font-size: 18px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b2:hover .text1{
        text-align: left;
    }
    .our-support .b3{
        margin-top: 20px;
        width: 45%;
        border-radius: 10px;
        height: 350px;
        background-image: url("/assets/idealab/Mentorshipandtraining.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b3:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b3:hover .text-2{
        display: inline;
        font-size: 18px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b3:hover .text1{
        text-align: left;
    }
    .our-support .b4{
        margin-top: 20px;
        width: 45%;
        border-radius: 10px;
        height: 350px;
        background-image: url("/assets/idealab/Resourcesharing.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b4:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b4:hover .text-2{
        display: inline;
        font-size: 18px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b4:hover .text1{
        text-align: left;
    }
    .our-support .b5{
        margin-top: 20px;
        width: 45%;
        border-radius: 10px;
        height: 350px;
        background-image: url("/assets/idealab/colloborativeprojects.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b5:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b5:hover .text-2{
        display: inline;
        font-size: 18px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b5:hover .text1{
        text-align: left;
    }
    .our-support .bluebox{
        padding-top: 22px;
        border-radius: 10px;
        background-color: #00334edb;
        height: 100px;
        width: 100%;
        position: absolute;
        bottom: 0;
    }
    .our-support .text1{
        padding-top: 10px;
        color: #F7F4F4;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        padding-bottom: 30px;
    }
    .our-support .heading1{
        color: #00334E;
        font-size: 36px;
        font-weight: 600;
    }
    .our-support .text{
        color: #545758;
        font-size: 16px;
        text-align: justify;
    }
}
@media(max-width:766px){
    .oursupport1{
        display: none;
    }
    .oursupport2{
        display: flex;
    }
    .our-support .b1{
        width: 45%;
        border-radius: 10px;
        height: 350px;
        background-image: url("/assets/idealab/Fundingandsponsorship.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b1:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b1:hover .text-2{
        display: inline;
        font-size: 16px !important;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b1:hover .text1{
        text-align: left;
    }
    .our-support .b2{
        width: 45%;
        border-radius: 10px;
        height:350px;
        background-image: url("/assets/idealab/labandestablishment.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b2:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b2:hover .text-2{
        display: inline;
        font-size: 16px !important;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b2:hover .text1{
        text-align: left;
    }
    .our-support .b3{
        margin-top: 20px;
        width: 45%;
        border-radius: 10px;
        height: 350px;
        background-image: url("/assets/idealab/Mentorshipandtraining.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b3:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b3:hover .text-2{
        display: inline;
        font-size: 16px !important;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b3:hover .text1{
        text-align: left;
    }
    .our-support .b4{
        margin-top: 20px;
        width: 45%;
        border-radius: 10px;
        height: 350px;
        background-image: url("/assets/idealab/Resourcesharing.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b4:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b4:hover .text-2{
        display: inline;
        font-size: 16px !important;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b4:hover .text1{
        text-align: left;
    }
    .our-support .b5{
        margin-top: 20px;
        width: 45%;
        border-radius: 10px;
        height: 350px;
        background-image: url("/assets/idealab/colloborativeprojects.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b5:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b5:hover .text-2{
        display: inline;
        font-size: 16px !important;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b5:hover .text1{
        text-align: left;
    }
    .our-support .bluebox{
        padding-top: 22px;
        border-radius: 10px;
        background-color: #00334edb;
        height: 100px;
        width: 100%;
        position: absolute;
        bottom: 0;
    }
    .our-support .text1{
        padding-top: 10px;
        color: #F7F4F4;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        padding-bottom: 30px;
    }
    .our-support .heading1{
        color: #00334E;
        font-size: 36px;
        font-weight: 600;
    }
    .our-support .text{
        color: #545758;
        font-size: 16px;
        text-align: justify;
    }
}
@media(max-width:430px){
    .our-support .b1{
        width: 70%;
        border-radius: 10px;
        height: 350px;
        background-image: url("/assets/idealab/Fundingandsponsorship.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b1:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b1:hover .text-2{
        display: inline;
        font-size: 18px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b2{
        margin-top: 20px;
        width: 70%;
        border-radius: 10px;
        height:350px;
        background-image: url("/assets/idealab/labandestablishment.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b2:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b2:hover .text-2{
        display: inline;
        font-size: 18px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b3{
        margin-top: 20px;
        width: 70%;
        border-radius: 10px;
        height: 350px;
        background-image: url("/assets/idealab/Mentorshipandtraining.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b3:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b3:hover .text-2{
        display: inline;
        font-size: 18px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b4{
        margin-top: 20px;
        width: 70%;
        border-radius: 10px;
        height: 350px;
        background-image: url("/assets/idealab/Resourcesharing.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b4:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b4:hover .text-2{
        display: inline;
        font-size: 18px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b5{
        margin-top: 20px;
        width: 70%;
        border-radius: 10px;
        height: 350px;
        background-image: url("/assets/idealab/colloborativeprojects.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b5:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b5:hover .text-2{
        display: inline;
        font-size: 18px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .bluebox{
        padding-top: 22px;
        border-radius: 10px;
        background-color: #00334edb;
        height: 100px;
        width: 100%;
        position: absolute;
        bottom: 0;
    }
    .our-support .text1{
        padding-top: 10px;
        color: #F7F4F4;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        padding-bottom: 30px;
    }
    .our-support .heading1{
        color: #00334E;
        font-size: 32px;
        font-weight: 600;
    }
    .our-support .text{
        color: #545758;
        font-size: 14px;
        text-align: justify;
    }
}
@media(max-width:320px){
    .our-support .b1{
        width: 70%;
        border-radius: 10px;
        height: 350px;
        background-image: url("/assets/idealab/Fundingandsponsorship.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b1:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b1:hover .text-2{
        display: inline;
        font-size: 16px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b2{
        margin-top: 20px;
        width: 70%;
        border-radius: 10px;
        height:350px;
        background-image: url("/assets/idealab/labandestablishment.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b2:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b2:hover .text-2{
        display: inline;
        font-size: 16px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b3{
        margin-top: 20px;
        width: 70%;
        border-radius: 10px;
        height: 350px;
        background-image: url("/assets/idealab/Mentorshipandtraining.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b3:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b3:hover .text-2{
        display: inline;
        font-size: 16px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b4{
        margin-top: 20px;
        width: 70%;
        border-radius: 10px;
        height: 350px;
        background-image: url("/assets/idealab/Resourcesharing.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b4:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b4:hover .text-2{
        display: inline;
        font-size: 16px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .b5{
        margin-top: 20px;
        width: 70%;
        border-radius: 10px;
        height: 350px;
        background-image: url("/assets/idealab/colloborativeprojects.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
    }
    .our-support .b5:hover .bluebox{
        height: 350px;
        padding-left: 30px;
        padding-right: 20px;
    }
    .our-support .b5:hover .text-2{
        display: inline;
        font-size: 16px;
        text-align: left;
        padding-top: 30px;
    }
    .our-support .bluebox{
        padding-top: 22px;
        border-radius: 10px;
        background-color: #00334edb;
        height: 100px;
        width: 100%;
        position: absolute;
        bottom: 0;
    }
    .our-support .text1{
        padding-top: 10px;
        color: #F7F4F4;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        padding-bottom: 30px;
    }
    .our-support .heading1{
        color: #00334E;
        font-size: 32px;
        font-weight: 600;
    }
    .our-support .text{
        color: #545758;
        font-size: 14px;
        text-align: justify;
    }
}
/* our services section */

.our-service{
    background-color: #F5f5f5;
}
.our-service .heading1{
    color: #00334E;
    font-size: 40px;
    font-weight: 600;
}
.our-service .text{
    color: #545758;
    font-size: 20px;
    text-align: justify;
}
.our-service .box1 img{
    width: 80px;
    height: 80px;
    background-color: #00334E;
    padding: 10px;
    border-radius: 10px;
    position:absolute;
    left: -35px;
    top: -30px;
}
.our-service .text1{
    color: #00334E;
    font-size: 20px;
    font-weight: 600;
    padding-top: 60px;
    transition: all 0s ease-in 0s !important;
}
.our-service .text2{
    font-size: 18px;
    color: #545758;
    transition: all 0s ease-in 0s !important;
    text-align: left;
}
.our-service .p1{
    width: 290px;
    background-image: none;
    border-radius: 10px;
    background-color: #00334e0e;
    position: relative;
    padding: 0px 30px 10px 30px;
    transition: all 0s ease-in 0s !important;
    &:hover{
        background-image: url("/assets/idealab/Internship&Placement.png");
        background-repeat: no-repeat;
        background-size: cover;
    }
}
.our-service .p1:hover .t1{
    opacity: 0;
}
.our-service .box2 img{
    width: 80px;
    height: 80px;
    background-color: #526D2D;
    padding: 10px;
    border-radius: 10px;
    position:absolute;
    left: -35px;
    top: -30px;
}
.our-service .p2{
    width: 290px;
    border-radius: 10px;
    background-color: #00334e0e;
    position: relative;
    padding: 0px 30px 10px 30px;
    &:hover{
        background-image: url("/assets/idealab/CurriculamdevelopmentandDesign.png");
        background-repeat: no-repeat;
        /* background-position: center; */
        background-size: cover;
    }
}
.our-service .p2:hover .t2{
    opacity: 0;
}
.our-service .box3 img{
    width: 80px;
    height: 80px;
    background-color: #00B5F1;
    padding: 10px;
    border-radius: 10px;
    position:absolute;
    left: -35px;
    top: -30px;
}
.our-service .p3{
    width: 290px;
    border-radius: 10px;
    background-color: #00334e0e;
    background-position: center;
    position: relative;
    padding: 0px 30px 10px 30px;
    &:hover{
        background-image: url("/assets/idealab/WorkshopsandTrainingprogram.jpeg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
}
.our-service .p3:hover .t3{
    opacity: 0;
}
.our-service .box4 img{
    width: 80px;
    height: 80px;
    background-color: #FFB10D;
    padding: 10px;
    border-radius: 10px;
    position:absolute;
    left: -35px;
    top: -30px;
}
.our-service .p4{
    width: 290px;
    border-radius: 10px;
    background-color: #00334e0e;
    position: relative;
    background-position: center;
    padding: 0px 30px 10px 30px;
    &:hover{
        background-image: url("/assets/idealab/Researchanddevelopment.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
}
.our-service .p4:hover .t4{
    opacity: 0;
}

@media(max-width:1400px){
    .our-service .p1{
        width: 270px;
    }
    .our-service .p2{
        width: 270px;
    }
    .our-service .p3{
        width: 270px;
    }
    .our-service .p4{
        width: 270px;
    }

    .our-service .box1 img{
       
        position:absolute;
        left: -8px;
        
    }
    .our-service .box2 img{
        position:absolute;
        left: -8px;
    }
    .our-service .box3 img{
        position:absolute;
        left: -8px;
    }
    .our-service .box4 img{
        position:absolute;
        left: -8px;
    }
}

/* @media(max-width:1200px){
    .our-service .p1{
        width: 220px;
    }
    .our-service .p2{
        width: 220px;
    }
    .our-service .p3{
        width: 220px;
    }
    .our-service .p4{
        width: 220px;
    }
} */

@media(max-width:1200px){
    .our-service .p1{
        width: 40%;
        height: 300px;
    }
    .our-service .p2{
        width: 40%;
        height: 300px;
    }
    .our-service .p3{
        width: 40%;
        height: 300px;
        margin-top: 50px;
    }
    .our-service .p4{
        width: 40%;
        height: 300px;
        margin-top: 50px;
    }
} 
@media(max-width:1025px){
    .our-service .p1{
        width: 40%;
    }
    .our-service .p2{
        width: 40%;
    }
    .our-service .p3{
        width: 40%;
    }
    .our-service .p4{
        width: 40%;
    }
    .our-service .heading1{
        color: #00334E;
        font-size: 36px;
        font-weight: 600;
    }
    .our-service .text{
        color: #545758;
        font-size: 18px;
        text-align: justify;
    }
}

@media(max-width:993px){
    .our-service .p1{
        width: 45%;
    }
    .our-service .p2{
        width: 45%;
    }
    .our-service .p3{
        width: 45%;
        margin-top: 50px;
    }
    .our-service .p4{
        width: 45%;
        margin-top: 50px;
    }
    .our-service .heading1{
        color: #00334E;
        font-size: 36px;
        font-weight: 600;
    }
    .our-service .text{
        color: #545758;
        font-size: 16px;
        text-align: justify;
    }
}


@media(max-width:767px){
    .our-service .p1{
        height: 350px;
        width: 80%;
    }
    .our-service .p2{
        width: 80%;
        margin-top: 50px;
        height: 350px;
    }
    .our-service .p3{
        width: 80%;
        height: 350px;
        margin-top: 50px;
    }
    .our-service .p4{
        width: 80%;
        height: 350px;
        margin-top: 50px;
    }
}

@media(max-width:426px){
    .our-service .text2{
        font-size: 16px;
    }
    .our-service .p1{
        height: 280px;
        width: 70%;
    }
    .our-service .p2{
        height: 280px;
        width: 70%;
        margin-top: 50px;
    }
    .our-service .p3{
        height: 280px;
        width: 70%;
        margin-top: 50px;
    }
    .our-service .p4{
        height: 280px;
        width: 70%;
        margin-top: 50px;
    }
    .our-service .heading1{
        color: #00334E;
        font-size: 32px;
        font-weight: 600;
    }
    .our-service .text{
        color: #545758;
        font-size: 14px;
        text-align: justify;
    }
    .our-service .box1 img{
        width: 60px;
        height: 60px;
        background-color: #00334E;
        padding: 10px;
        border-radius: 10px;
        position:absolute;
        left: -35px;
        top: -30px;
    }
    .our-service .box2 img{
        width: 60px;
        height: 60px;
        background-color: #526D2D;
        padding: 10px;
        border-radius: 10px;
        position:absolute;
        left: -35px;
        top: -30px;
    }
    .our-service .box3 img{
        width: 60px;
        height: 60px;
        background-color: #00B5F1;
        padding: 10px;
        border-radius: 10px;
        position:absolute;
        left: -35px;
        top: -30px;
    }
    .our-service .box4 img{
        width: 60px;
        height: 60px;
        background-color: #FFB10D;
        padding: 10px;
        border-radius: 10px;
        position:absolute;
        left: -35px;
        top: -30px;
    }
    .our-service .text1{
        color: #00334E;
        font-size: 20px;
        font-weight: 600;
        padding-top: 20px;
        transition: all 0s ease-in 0s !important;
    }
}

@media(max-width:355px){
    .our-service .p1{
        height: auto;
    }
    .our-service .p2{
        height: auto;
    }
    .our-service .p3{
        height: auto;
    }
    .our-service .p4{
        height: auto;
    }
}
@media(max-width:320px){
    .our-service .heading1{
        color: #00334E;
        font-size: 25px;
        font-weight: 600;
    }
    .our-service .text{
        color: #545758;
        font-size: 14px;
        text-align: justify;
    }
}   

/* swiper */

.swiper {
    width: 100%;
    padding-top: 50px;
  }
  
  .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: #00334E;
  }
  
  .swiper-pagination-bullet {
    background-color: #00334E;
  }
  
  /* Make images responsive */
  .swiper-slide img {
    width: 80px;
    height: 80px;
  }
  
  /* Adjust Swiper on smaller screens */
  @media (max-width: 768px) {
    .swiper-slide {
      width: 100% !important;
    }
  }
  

/* pdf download section */

.doc-sec{
    width: 100%;
    /* height: 100%; */
    background-color: #f5f5f5;
}

.doc-sec .heading1{
    color: #00334E;
    font-size: 35px;
    font-weight: 600;
    padding-bottom: 80px;
}
.doc-sec .icon{
    width: 200px;
    height: 200px;
}
.doc-sec .btn{
    padding: 5px 25px;
    margin-top: 50px;
    color: #00334E;
    border: 2px solid #00334E;
    font-size: 18px;
    &:hover{
        color: #f7f4f4 ;
        background-color: #00334E;
    }
}
.half:hover{
    background-color: #5457580d;
}

@media(max-width:1024px){
    .doc-sec .heading1{
        font-size: 30px;
        padding-bottom: 50px;
    }
    .doc-sec .icon{
        width: 150px;
        height: 150px;
    }
}
@media(max-width:865px){
    .doc-sec .heading1{
        height: 140px;
    }
}
@media(max-width:769px){
    .doc-sec .heading1{
        font-size: 28px;
        padding-bottom: 50px;
    }
    .doc-sec .icon{
        width: 120px;
        height: 120px;
    }
}
@media(max-width:575px){
    .doc-sec .heading1{
        height: auto;
    }
}
@media(max-width:426px){
    .doc-sec .heading1{
        font-size: 24px;
        padding-bottom: 20px;
    }
    .doc-sec .icon{
        width: 100px;
        height: 100px;
    }
    .doc-sec .btn{
        padding: 5px 25px;
        margin-top: 25px;
        color: #00334E;
        border: 2px solid #00334E;
        font-size: 14px;
        &:hover{
            color: #f7f4f4 !important;
            background-color: #00334E;
        }
    }
}
@media(max-width:321px){
    .doc-sec .heading1{
        font-size: 20px;
        padding-bottom: 20px;
    }
    .doc-sec .icon{
        width: 80px;
        height: 80px;
    }
    .doc-sec .btn{
        padding: 5px 25px;
        margin-top: 25px;
        color: #00334E;
        border: 2px solid #00334E;
        font-size: 14px;
        &:hover{
            color: #f7f4f4 !important;
            background-color: #00334E;
        }
    }
}

/* testimonial */
.testimonial {
    background-color: #F7F4F4;
}
.testimonial .topheading{
    font-size: 25px;
    font-weight: 600;
}
.testimonial .heading1{
    color: #00334E;
    font-size: 40px;
    font-weight: 600;
}
.testimonial .testitext{
    position: relative;
    
    height: 400px;
}
.testimonial .texttest{
    position: absolute;
    background-color: #f6f0f7;
    height: 200px;
    width: 628px;
    top: 22%;
    left: 20.5%;
    z-index: 1;
    border-radius: 20px;
}
.testimonial .people{
    position: absolute;
    top: 12%;
    left: 22%;
    z-index: 2;
    width: 100px;
    height: 100px;
}
.testimonial .vector{
    position: absolute;
    top: 15%;
    right: 29%;
    width: 380px !important;
    height: 320px;
}
.testimonial .nametext{
    position: absolute;
    left: 32%;
    top:25%;
    z-index: 2;
    color: #00334E;
    font-weight: 600;
    font-size: 18px;
}
.testimonial .rating{
    width: 110px;
    position: absolute;
    top: 39%;
    left: 22%;
    z-index: 2;
}
.testimonial .indicators{
    margin-top: 80px;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #00334E !important;
}
.testimonial .carousel-indicators{
    top: 80% !important;
}
@media(max-width:1400px){
    .testimonial .texttest{
        position: absolute;
        background-color: #f6f0f7;
        height: 200px;
        width: 628px;
        top: 22%;
        left: 15.5%;
        z-index: 1;
        border-radius: 20px;
    }
    .testimonial .vector{
        position: absolute;
        top: 15%;
        right: 26%;
        width: 380px !important;
        height: 320px;
    }
}
@media(max-width:1200px){
    .testimonial .texttest{
        position: absolute;
        background-color: #f6f0f7;
        height: 200px;
        width: 628px;
        top: 22%;
        left: 12%;
        z-index: 1;
        border-radius: 20px;
    }
    .testimonial .people{
        position: absolute;
        top: 12%;
        left: 14%;
        z-index: 2;
        width: 100px;
        height: 100px;
    }
    .testimonial .vector{
        position: absolute;
        top: 15%;
        right: 18%;
        width: 380px !important;
        height: 320px;
    }
    .testimonial .nametext{
        position: absolute;
        left: 28%;
        top:25%;
        z-index: 2;
        color: #00334E;
        font-weight: 600;
        font-size: 18px;
    }
    .testimonial .rating{
        width: 110px;
        position: absolute;
        top: 39%;
        left: 14%;
        z-index: 2;
    }
}
@media(max-width:1024px){
    .testimonial .topheading{
        font-size: 23px;
        font-weight: 600;
    }
    .testimonial .heading1{
        color: #00334E;
        font-size: 36px;
        font-weight: 600;
    }
}
@media(max-width:992px){
    .testimonial .topheading{
        font-size: 25px;
        font-weight: 600;
    }
    .testimonial .heading1{
        color: #00334E;
        font-size: 40px;
        font-weight: 600;
    }
    .testimonial .testitext{
        position: relative;
        height: 400px;
    }
    .testimonial .texttest{
        position: absolute;
        background-color: #f6f0f7;
        height: 200px;
        width: 628px;
        top: 22%;
        left: 5%;
        z-index: 1;
        border-radius: 20px;
    }
    .testimonial .people{
        position: absolute;
        top: 17%;
        left: 14%;
        z-index: 2;
        width: 80px;
        height: 80px;
    }
    .testimonial .vector{
        position: absolute;
        top: 15%;
        right: 0%;
        width: 380px !important;
        height: 320px;
    }
    .testimonial .nametext{
        position: absolute;
        left: 28%;
        top:25%;
        z-index: 2;
        color: #00334E;
        font-weight: 600;
        font-size: 18px;
    }
    .testimonial .rating{
        width: 100px;
        position: absolute;
        top: 39%;
        left: 14%;
        z-index: 2;
    }
}
@media(max-width:768px){
    .testimonial .topheading{
        font-size: 23px;
        font-weight: 600;
    }
    .testimonial .heading1{
        color: #00334E;
        font-size: 36px;
        font-weight: 600;
    }
    .testimonial .testitext{
        position: relative;
        height: 400px;
    }
    .testimonial .texttest{
        position: absolute;
        background-color: #f6f0f7;
        height: 200px;
        width: 428px;
        top: 22%;
        left: 10%;
        z-index: 1;
        font-size: 14px;
        border-radius: 20px;
    }
    .testimonial .people{
        position: absolute;
        top: 19%;
        left: 14%;
        z-index: 2;
        width: 75px;
        height: 75px;
    }
    .testimonial .vector{
        position: absolute;
        top: 15%;
        right: 3%;
        width: 380px !important;
        height: 320px;
    }
    .testimonial .nametext{
        position: absolute;
        left: 31%;
        top:25%;
        z-index: 2;
        color: #00334E;
        font-weight: 600;
        font-size: 16px;
    }
    .testimonial .rating{
        width: 90px;
        position: absolute;
        top: 39%;
        left: 14%;
        z-index: 2;
    }
}
@media(max-width:530px){
    .testimonial .topheading{
        font-size: 23px;
        font-weight: 600;
    }
    .testimonial .heading1{
        color: #00334E;
        font-size: 36px;
        font-weight: 600;
    }
    .testimonial .testitext{
        position: relative;
        height: 400px;
    }
    .testimonial .texttest{
        position: absolute;
        background-color: #f6f0f7;
        height: 200px;
        width: 378px;
        top: 22%;
        left: 10%;
        z-index: 1;
        font-size: 14px;
        border-radius: 20px;
    }
    .testimonial .people{
        position: absolute;
        top: 19%;
        left: 14%;
        z-index: 2;
        width: 75px;
        height: 75px;
    }
    .testimonial .vector{
        position: absolute;
        top: 15%;
        right: 3%;
        width: 300px !important;
        height: 320px;
    }
    .testimonial .nametext{
        position: absolute;
        left: 31%;
        top:25%;
        z-index: 2;
        color: #00334E;
        font-weight: 600;
        font-size: 16px;
    }
    .testimonial .rating{
        width: 90px;
        position: absolute;
        top: 39%;
        left: 14%;
        z-index: 2;
    }
}
@media(max-width:427px){
    .testimonial .topheading{
        font-size: 20px;
        font-weight: 600;
    }
    .testimonial .heading1{
        color: #00334E;
        font-size: 34px;
        font-weight: 600;
    }
    .testimonial .testitext{
        position: relative;
        height: 400px;
    }
    .testimonial .texttest{
        position: absolute;
        background-color: #f6f0f7;
        height: 200px;
        width: 378px;
        top: 22%;
        left: 0%;
        z-index: 1;
        font-size: 14px;
        border-radius: 20px;
    }
    .testimonial .people{
        position: absolute;
        top: 19%;
        left: 4%;
        z-index: 2;
        width: 75px;
        height: 75px;
    }
    .testimonial .vector{
        position: absolute;
        top: 15%;
        right: 0%;
        width: 300px !important;
        height: 320px;
    }
    .testimonial .nametext{
        position: absolute;
        left: 25%;
        top:25%;
        z-index: 2;
        color: #00334E;
        font-weight: 600;
        font-size: 16px;
    }
    .testimonial .rating{
        width: 90px;
        position: absolute;
        top: 39%;
        left: 4%;
        z-index: 2;
    }
}
@media(max-width:400px){
    .testimonial .topheading{
        font-size: 20px;
        font-weight: 600;
    }
    .testimonial .heading1{
        color: #00334E;
        font-size: 34px;
        font-weight: 600;
    }
    .testimonial .testitext{
        position: relative;
        height: 400px;
    }
    .testimonial .texttest{
        position: absolute;
        background-color: #f6f0f7;
        height: 200px;
        width: 328px;
        top: 22%;
        left: 0%;
        z-index: 1;
        font-size: 12px;
        border-radius: 20px;
    }
    .testimonial .people{
        position: absolute;
        top: 19%;
        left: 4%;
        z-index: 2;
        width: 70px;
        height: 70px;
    }
    .testimonial .vector{
        position: absolute;
        top: 15%;
        right: 0%;
        width: 280px !important;
        height: 320px;
    }
    .testimonial .nametext{
        position: absolute;
        left: 25%;
        top:25%;
        z-index: 2;
        color: #00334E;
        font-weight: 600;
        font-size: 14px;
    }
    .testimonial .rating{
        width: 90px;
        position: absolute;
        top: 39%;
        left: 4%;
        z-index: 2;
    }
}
/* success story section */

.success-story {
    width: 100%;
    /* height: 100%; */
    background-color: #f5f5f5;
}
.success-story .heading1{
    color: #00334E;
    font-size: 40px;
    font-weight: 600;
}

.success-story .sildercontaienr{
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.success-story .slider{
    position: relative;
    margin-top: 55px;
    margin-bottom: 0px;
    width: 100%;
    height: 500px;
    overflow: hidden;
    transform: translateX(-88px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.success-story .item{
    position: absolute;
    width: 410px;
    height: 400px;
    text-align: justify;
    margin-top: 10px;
    border-radius: 10px;
    transition:  0.5s;
    left: calc(50% - 110px);
    top: 0;
}
.success-story .item img{
    width: 410px;
    height: 360px;
    border-radius: 21px;
}
.success-story .slidertext{
    background-color: #00334E90;
    color: #fff;
    text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.675);
    font-size: 20px;
    font-weight: 600;
    transform: translateY(-88px);
    border-bottom-right-radius: 21px;
    border-bottom-left-radius: 21px;
    z-index: 1;
    padding-top: 14px;
    padding-bottom: 14px;
}

#next{
    position: absolute;
    right: 50px;
    top: 30%;
    z-index: 1;
    color: #00334E;
}
#prev{
    position: absolute;
    left: 227px;
    top: 30%;
    z-index: 1;
}
#prev, #next{
    color: #00334E;
    background: none;
    border: none;
    font-size: xxx-large;
    font-family: monospace;
    font-weight: bold;
}
.success-story .icon{
    width: 50px;
    height: 50px;
}

@media (max-width:1200px){
    #next{
        position: absolute;
        right: 40px;
        top: 30%;
        z-index: 1;
        color: #00334E;
    }
    #prev{
        position: absolute;
        left: 210px;
        top: 30%;
        z-index: 1;
    }
}
@media (max-width:1120px){
    #next{
        position: absolute;
        right: 30px;
        top: 30%;
        z-index: 1;
        color: #00334E;
    }
    #prev{
        position: absolute;
        left: 200px;
        top: 30%;
        z-index: 1;
    }
}
@media (max-width:1080px){
    #next{
        position: absolute;
        right: 20px;
        top: 30%;
        z-index: 1;
        color: #00334E;
    }
    #prev{
        position: absolute;
        left: 210px;
        top: 30%;
        z-index: 1;
    }
}
@media (max-width:1024px) {
    .success-story .heading1{
        font-weight: 600;
        font-size: 36px;
        color: #00334E;
    }
    .success-story .slider{
        position: relative;
        margin-top: 80px;
        width: 100%;
        height: 300px;
        overflow: hidden;
        transform: translateX(-40px);
    }
    .success-story .item{
        position: absolute;
        width: 300px;
        height: 300px;
        text-align: justify;
        border-radius: 10px;
        transition:  0.5s;
        left: calc(50% - 110px);
        top: 0;
    }
    .success-story .item img{
        width: 300px;
        height: 260px;
        border-radius: 21px;
    }
    .success-story .slidertext{
        background-color: #00334E90;
        color: #fff;
        text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.675);
        font-size: 16px;
        font-weight: 600;
        transform: translateY(-76px);
        border-bottom-right-radius: 21px;
        border-bottom-left-radius: 21px;
        z-index: 1;
    }
    #next{
        position: absolute;
        right: 70px;
        top: 30%;
        z-index: 1;
        color: #00334E;
    }
    #prev{
        position: absolute;
        left: 150px;
        top: 30%;
        z-index: 1;
    }
  }

@media (max-width:992px){
    #next{
        position: absolute;
        right: 50px;
        top: 30%;
        z-index: 1;
        color: #00334E;
    }
    #prev{
        position: absolute;
        left: 130px;
        top: 30%;
        z-index: 1;
    }
}

@media (max-width:770px) {
    .success-story .heading1{
        font-weight: 600;
        font-size: 36px;
        color: #00334E;
    }
    .success-story .slider{
        position: relative;
        margin-top: 80px;
        width: 100%;
        height: 300px;
        overflow: hidden;
        transform: translateX(-10px);
    }
    .success-story .item{
        position: absolute;
        width: 250px;
        height: 300px;
        text-align: justify;
        border-radius: 10px;
        transition:  0.5s;
        left: calc(50% - 110px);
        top: 0;
    }
    .success-story .item img{
        width: 250px;
        height: 240px;
        border-radius: 21px;
    }
    .success-story .slidertext{
        background-color: #00334E90;
        color: #fff;
        text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.675);
        font-size: 14px;
        font-weight: 600;
        transform: translateY(-70px);
        border-bottom-right-radius: 21px;
        border-bottom-left-radius: 21px;
        z-index: 1;
    }
    #next{
        position: absolute;
        right: 10px;
        top: 30%;
        z-index: 1;
        color: #00334E;
    }
    #prev{
        position: absolute;
        left: 40px;
        top: 30%;
        z-index: 1;
    }
}
@media (max-width:698px) {
    .success-story .heading1{
        font-weight: 600;
        font-size: 32px;
        color: #00334E;
    }
    .success-story .slider{
        position: relative;
        margin-top: 80px;
        width: 100%;
        height: 250px;
        overflow: hidden;
        transform: translateX(0px);
    }
    .success-story .item{
        position: absolute;
        width: 220px;
        height: 250px;
        text-align: justify;
        border-radius: 10px;
        transition:  0.5s;
        left: calc(50% - 110px);
        top: 0;
    }
    .success-story .item img{
        width: 220px;
        height: 230px;
        border-radius: 21px;
    }
    .success-story .slidertext{
        background-color: #00334E90;
        color: #fff;
        text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.675);
        font-size: 12px;
        font-weight: 600;
        transform: translateY(-64px);
        border-bottom-right-radius: 21px;
        border-bottom-left-radius: 21px;
        z-index: 1;
    }
    #next{
        position: absolute;
        right: 10px;
        top: 30%;
        z-index: 1;
        color: #00334E;
    }
    #prev{
        position: absolute;
        left: 10px;
        top: 30%;
        z-index: 1;
    }
}
@media (max-width:426px) {
    .success-story .heading1{
        font-weight: 600;
        font-size: 30px;
        color: #00334E;
    }
    .success-story .slider{
        position: relative;
        margin-top: 20px;
        width: 100%;
        height: 250px;
        overflow: hidden;
        transform: translateX(-5px);
        margin-bottom: 20px;
    }
    .success-story .item{
        position: absolute;
        width: 220px;
        height: 250px;
        text-align: justify;
        border-radius: 10px;
        transition:  0.5s;
        left: calc(50% - 110px);
        top: 0;
    }
    .success-story .item img{
        width: 220px;
        height: 240px;
        border-radius: 21px;
    }
    .success-story .slidertext{
        background-color: #00334E90;
        color: #fff;
        text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.675);
        font-size: 10px;
        font-weight: 600;
        transform: translateY(-58px);
        border-bottom-right-radius: 21px;
        border-bottom-left-radius: 21px;
        z-index: 1;
    }
    #next{
        position: absolute;
        right: 10px;
        top: 45%;
        z-index: 1;
        color: #00334E;
    }
    #prev{
        position: absolute;
        left: 10px;
        top: 45%;
        z-index: 1;
    }
  }
@media (max-width:375px) {
    .success-story .heading1{
        font-weight: 600;
        font-size: 25px;
        color: #00334E;
    }
    .success-story .slider{
        position: relative;
        margin-top: 20px;
        width: 100%;
        height: 180px;
        overflow: hidden;
        transform: translateX(0px);
    }
    .success-story .item{
        position: absolute;
        width: 180px;
        height: 180px;
        text-align: justify;
        border-radius: 10px;
        transition:  0.5s;
        left: calc(50% - 110px);
        top: 0;
    }
    .success-story .item img{
        width: 180px;
        height: 150px;
        border-radius: 21px;
    }
    .success-story .slidertext{
        background-color: #00334E90;
        color: #fff;
        text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.675);
        font-size: 10px;
        font-weight: 600;
        transform: translateY(-57px);
        border-bottom-right-radius: 21px;
        border-bottom-left-radius: 21px;
        z-index: 1;
    }
    #next{
        position: absolute;
        right: 50px;
        top: 30%;
        z-index: 1;
        color: #00334E;
    }
    #prev{
        position: absolute;
        left: 10px;
        top: 30%;
        z-index: 1;
    }
}
@media (max-width:320px) {
    .success-story .heading1{
        font-weight: 600;
        font-size: 20px;
        color: #00334E;
    }
    .success-story .slider{
        position: relative;
        margin-top: 20px;
        width: 280px;
        height: 180px;
        overflow: hidden;
        transform: translateX(20px);
    }
    .success-story .item{
        position: absolute;
        width: 220px;
        height: 130px;
        text-align: justify;
        border-radius: 10px;
        transition:  0.5s;
        left: calc(50% - 110px);
        top: 0;
    }
    .success-story .item img{
        width: 220px;
        height: 130px;
        border-radius: 21px;
    }
    #next{
        position: absolute;
        right: -10px;
        top: 20%;
        z-index: 1;
        color: #00334E;
    }
    #prev{
        position: absolute;
        left: -8px;
        top: 20%;
        z-index: 1;
    }
    .success-story .icon{
        width: 40px;
        height: 40px;
    }
}
@media (max-width:300px) {
    .success-story .heading1{
        font-weight: 600;
        font-size: 20px;
        color: #00334E;
    }
    .success-story .slider{
        position: relative;
        margin-top: 20px;
        width: 200px;
        height: 120px;
        overflow: hidden;
        transform: translateX(40px);
    }
    .success-story .item{
        position: absolute;
        width: 200px;
        height: 100px;
        text-align: justify;
        border-radius: 10px;
        transition:  0.5s;
        left: calc(50% - 110px);
        top: 0;
    }
    .success-story .item img{
        width: 200px;
        height: 100px;
        border-radius: 21px;
    }
}
/* footer */

.footer{
    width: 100%;
    /* height: 100%; */
    background-color: #00B5F14e;
}
.footer .footerrow{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-left: 10px;
    margin-right: 10px;
}
.footer .carousel{
    border-radius: 21px !important;
    width: 85%;
}
.footer .carousel-indicators{
    display: none;
}
.footer .carousel-inner{
    border-radius: 21px !important;
}
.carousel-caption {
    width: 100%;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    left: 0 !important;
    bottom: 0 !important;
  }
/* .carousel-caption p{
        text-align: justify;
        width: 60%;
} */
  .carousel-item:hover .carousel-caption {
    opacity: 1;
  }

.footer .footer-img{
    height: 445px; 
    width:65%;
    object-fit: fill;
    border-radius: 21px !important;
}

.footer .text{
    font-size: 30px;
    padding-bottom: 10px;
    padding-left: 5px;
    font-weight: 600;
    color: #00334E;
}
/* form */
.footer .contact{
    display: flex;
    flex-direction: row;
}

.contact-form {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.contact-form p {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 500;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: none;
    resize: none;
    &::placeholder{
        font-size: 12px;
    }
}

.contact-form textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: none;
    resize: none;
    &::placeholder{
        font-size: 12px;
    }
}
.contact-form button {
    padding: 10px;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #218838;
}

/* form css */

.contact-form {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-form p {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 500;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.social-media {
    display: flex !important;
}
.social-media .socialicon{
    width: 40px;
    height: 40px;
    margin: 10px;
}
.contact .info {
    width: 100%;
    background: #fff;
  }
  .contact .info i {
    font-size: 20px;
    color: #3f43fd;
    float: left;
    width: 44px;
    height: 44px;
    background: #f0f0ff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
  }
  .contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #010483;
  }
  .contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #0205a1;
  }
  .contact .info .email, .contact .info .phone {
    margin-top: 40px;
  }
  .contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
    color: #fff;
  }
  .contact .php-email-form {
    width: 100%;
    background: #00334E;
    padding: 20px;
    border-radius: 20px;
    height: 445px;
  }
  .contact .php-email-form .form-group {
    padding-bottom: 8px;
  }
  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  .contact .php-email-form .error-message br + br {
    margin-top: 25px;
  }
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }
  .contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 10px;
    box-shadow: none;
    font-size: 12px;
  }
  .contact .php-email-form input {
    height: 44px;
    background-color: #EDEDED;
    border: 0px;
    &::placeholder{
        font-size: 12px;
    }
  }
  .contact .php-email-form textarea {
    padding: 10px 12px;
    resize: none;
    background-color: #EDEDED;
    border: 0px;
  }
  .contact .php-email-form button[type=button] {
    background: #00B5F1;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    pointer-events: auto !important; /* Ensure it is clickable */
    visibility: visible !important; 
  }
  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

@media(max-width:1024px){
    .footer .text{
        font-size: 25px;
    }
    .footer .carousel{
        border-radius: 21px !important;
        width: 100%;
    }
}

@media(max-width:767.5px){
    .footer .text{
        font-size: 25px;
        text-align: center;
    }
    .footer .footerrow{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-direction: column;
    }
    .footer .carousel{
        border-radius: 21px !important;
        width: 100%;
    }
    .footer .footer-img{
        /* transform: rotate(-90deg); */
        height: 400px; 
        width:100%;
        object-fit: fill;
        border-radius: 21px !important;
    }
    .footer .contact{
        display: flex;
        flex-direction: column;
    }
}
@media (max-width:426px){
    .social-media {
        padding-top: 20px;
    }
    .footer .footer-img{
        height: 300px; 
        width:100%;
        object-fit: fill;
        border-radius: 21px !important;
    }
}
.otpformbackground{
    /* background-image: url('/assets/idealab/Group 388.png') !important; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    height: 100vh;
}
@media(max-width:1200px){
    .otpformbackground{
       /* background-image: none !important;  */
       background-image: url('/assets/idealab/Group 389.png') !important;
       background-position: left;
    }
}
@media(max-height:550px){
    .otpformbackground{
        height: 100%;
    }
}
/* form style */
.formsection{
    height: 90vh;
}
.form{
    /* margin-top: 100px !important; */
    background-color: #F7F4F4;
    /* width: 70%;  */
    border-radius: 20px;
   
    /* padding: 40px; */
    /* box-shadow: 2px 2px 2px #00334e72; */
}
.form .logo{
    width: auto;
    height: 80px;
}
.form .part1{
    background-color: #00b5f136;
    border-radius: 20px;
    padding: 30px;
}
.form .text1{
    color: #526D2D;
    font-weight: 600;
    font-size: 25px;
}
.form a{
    text-decoration: none;
    color:#141A1D;
    font-size: 16px;
    font-weight: 400;
    &:hover{
        color: #141A1D;
    }
}
.form .heading1{
    color: #00334E;
    font-size:  30px;
    font-weight: 500;
}
.form label{
    color: #545758;
    font-size: 14px;
}
.form .input{
    border: none;
    height: 40px;
    background-color: #5457581a;
    border-radius: 8px;
    &:focus{
        border: none;
        outline: none;
    }
}
.form .text2{
    color: #00334E;
    font-weight: 500;
}
.form .butn{
    background-color: #00B5F1;
    color: #F7F4F4;
    font-size: 18px;
    padding: 5px 25px;
    font-weight: 500;
    border-radius: 10px;
}
.form .tc{
    color: #00B5F1;
    font-weight: 500;
}
/* .messagetext1{
    opacity: 1;

} */
.messagetext1 {
    opacity: 1;
    color: transparent;
    font-size: 14px;
    margin: 0px;
    transition: opacity 0.3s ease-in-out; /* Smooth transition */
}

/* When an error is present, make the error message visible */
.messagetext1.visible {
    opacity: 1;
    color: red;
}
.messagetext2{
    opacity: 0;
}
.messagetext3{
    opacity: 0;
}
.messagetext4{
    opacity: 1;
    height: 30px;
}
.form .icon{
    width: 20px;
    height: 20px;
}
.inputotp{
    font-size: 20px;
    text-align: center;
    width: 45px;
}
/* .form .timerlink:disabled{
    color: #00334E;
    font-weight: 500;
    padding-bottom: 5px;
} */
.form .timerlink{
    color: #00334E;
    font-weight: 500;
    padding-bottom: 5px;
}
.form .timerlink:hover{
    text-decoration: underline !important;
}
/* .disabled{
    cursor: not-allowed !important;
} */
#check{
    width: 20px;
    height: 20px;
}
@media(max-width:1300px){
    .form {
        padding: 20px;
        width: 80%;
    }
}
@media(max-width:1025px){
    .formsection{
        height: 100%;
    }
    .form{
        width: 80%; 
    }
    .inputotp{
        font-size: 20px;
        text-align: center;
        width: 35px;
        height: 35px !important;
    }
    .form .timerlink{
        font-size: 14px;
        color: #00334E;
        font-weight: 500;
        padding-bottom: 5px;
    }
    .form .timer{
        font-size: 14px;
    }
}
@media(max-width:992px){
    .form{
        width: 80%; 
    }
    .formsection{
        height: 100%;
    }
    .inputotp{
        font-size: 16px;
        text-align: center;
        width: 25px;
        height: 25px !important;
    }
}
@media(max-width:769px){
    .form .logo{
        width: auto;
    }
    .form{
        width: 90%; 
        padding: 20px;
    }
    .formsection{
        height: 100%;
    }
    .form .part1{
        background-color: #00b5f136;
        border-radius: 20px;
        padding: 30px;
    }
    .form .text1{
        color: #526D2D;
        font-weight: 600;
        font-size: 20px;
    }
    .form a{
        text-decoration: none;
        color:#141A1D;
        font-size: 14px;
        font-weight: 400;
        &:hover{
            color: #141A1D;
        }
    }
    .form .heading1{
        color: #00334E;
        font-size:  20px;
        font-weight: 500;
    }
    .form label{
        color: #545758;
        font-size: 16px;
    }
    .form .input{
        border: none;
        height: 40px;
        background-color: #5457581a;
        border-radius: 8px;
        &:focus{
            border: none;
            outline: none;
        }
    }
    .form .text2{
        color: #00334E;
        font-weight: 500;
    }
    .form .butn{
        background-color: #00B5F1;
        color: #F7F4F4;
        font-size: 18px;
        padding: 5px 25px;
        font-weight: 500;
        border-radius: 10px;
        &:hover{
            color: #F7F4F4;
        }
    }
    .inputotp{
        font-size: 16px;
        text-align: center;
        width: 25px;
        height: 25px !important;
    }
}
@media(max-width:706px){
    .form{
        width: 100%; 
        padding: 20px;
    }
}
@media(max-width:569px){
    .form{
        overflow-y: scroll;
    }
    .formsection{
        height: 100%;
    }
    .inputotp{
        font-size: 16px;
        text-align: center;
        width: 40px;
        height: 40px !important;
    }
    .form .butn{
        background-color: #00B5F1;
        color: #F7F4F4;
        font-size: 16px;
        padding: 5px 25px;
        font-weight: 500;
        border-radius: 10px;
        margin-bottom: 10px;
        &:hover{
            color: #F7F4F4;
        }
    }
}
.errormessage{
    opacity: 0;
    font-weight: 500;
}

@media(max-width:426px){
    .form {
        margin-top: 0px !important;
        height: 95vh;
        box-shadow: none;
    }
    .form .part1{
        background-color: #00b5f136;
        border-radius: 20px;
        padding: 10px 15px 5px 15px !important;
        margin-bottom: 10px;
    }
    .form .logo{
        width: auto;
        height: 50px;
    }
    .form .addtext{
        font-size: 14px;
        margin-bottom: 0 !important;
    }
    .form .text1{
        color: #526D2D;
        font-weight: 600;
        font-size: 20px;
        padding-top: 5px !important;
        margin-bottom: 5px !important;
    }
    .form .heading1{
        color: #00334E;
        font-size:  20px;
        font-weight: 500;
        margin-bottom: 0px;
        padding-top:5px ;
    }
    .form .part2{
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .form .i1{
        padding-bottom: 0 !important;
    }
    .form .i2{
        padding-bottom: 0 !important;
    }
    .form .btnnext{
        padding-top: 0 !important;
    }
    .form{
        width: 100%; 
        padding: 10px 20px;
    }
}
@media(max-height:550px){
    .formsection{
        height: 100%;
    }
}
@media(max-height:650px){
    .popup-form {
        height: 85%;
    }
    .form{
        overflow-y: scroll;
    }
}
.downloadtext{
    color: #00B5F1;
    font-size: 20px;
    /* margin:3rem 0; */
}

.form .link2{
    text-decoration: none;
    color:#00334E;
    font-size: 16px;
    border: 2px solid #00334E;
    font-weight: 400;
    width: 150px;
    &:hover{
        color: #EDEDED;
        background-color: #00334E;
    }
}