body{
    font-family: "Ubuntu Sans", sans-serif !important;
    color: #000000;
    overflow-x: hidden;
}
html{
    overflow-x: hidden;
}
.ovhidden{
    overflow: hidden;
}


a{
  color: #313131;
  text-decoration: none !important;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
    font-weight: 500;
}
a:hover{
  text-decoration: none !important;
  transition: all .3s ease;
    -webkit-transition: all .3s ease;
}


ul{
  padding-left: 0px; 
  list-style-type: none;
  margin: 0
}
img{
    display: block;
  max-width: 100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

img.loadimg{
    opacity: 0;
    transform: scale(.95);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
img.loadimg.fade{
    opacity: 1.0;
    width: 100%;
    transform: scale(1);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

button{
    border: none;
    cursor: pointer;
    outline: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.h1, .h2, .h3, h1, h2, h3{
    font-weight: 600;
    color: #201E20;
}
.h4, .h5, .h6, h4, h5, h6{
    font-weight: 600;
    line-height: 1.4;
    color: #201E20;
}

.text-justify{
    text-align: justify;
}
@media(min-width: 1366px){
.cmpad{
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
}
@media(max-width: 1366px){
.cmpad{
  padding-left:80px;
  padding-right:80px;
}
}
@media(max-width: 991px){
.cmpad{
  padding-left:40px;
  padding-right:40px;
}

}
@media(max-width: 767px){
.cmpad{
  padding-left:15px;
  padding-right:15px;
}

}
@media(max-width: 575px){
html{
  font-size: 90%;
}

}





@media(max-width: 767px){
.h1, h1{
    font-size: 2.2rem;
}
.h2, h2{
    font-size: 1.75rem;
}
}
@media(max-width: 575px){
.h2, h2{
    font-size: 1.5rem;
}
.h1, h1{
    font-size: 2rem;
}
}



@media(min-width:768px){
::-webkit-scrollbar{width:10px;height:6px}
::-webkit-scrollbar-track{background-color:#eee}
::-webkit-scrollbar-thumb{background-color:#3a3a3a}
::-webkit-scrollbar-thumb:hover{background-color:#444}
}

.custscroll::-webkit-scrollbar,.custscroll::-webkit-scrollbar-thumb{border-radius:13px;width:6px;height:6px;background-clip:padding-box;background:transparent}
.custscroll::-webkit-scrollbar-track{background:transparent}
.custscroll:hover::-webkit-scrollbar-thumb{background-color:#ccc}
.custscroll::-webkit-scrollbar-thumb:hover{background-color:#999}


.custscrollA::-webkit-scrollbar{border-radius:13px;width:6px;height:6px;background-clip:padding-box;background:transparent}
.custscrollA::-webkit-scrollbar-track{background:transparent}
.custscrollA::-webkit-scrollbar-thumb{background-color:#2f2583;border-radius: 6px;}
.custscrollA::-webkit-scrollbar-thumb:hover{background-color:#2f2583}


p{
    margin-top: 0;
    color: #313131;
    font-size: 1rem;
    font-weight: 400;
}


.flexVcenter{
    display: flex;
    flex-flow: wrap;
    align-content: center;
}
.newssec .flexVcenter{
    padding-bottom: 32px;
}


@keyframes moveRight{
    0%{
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
    }
    50%{
        transform: translateX(5px);
        -webkit-transform: translateX(5px);
    }
    100%{
        transform: translate(0px);
        -webkit-transform: translate(0px);
    }
}
@keyframes moveLeft{
    0%{
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
    }
    50%{
        transform: translateX(-5px);
        -webkit-transform: translateX(-5px);
    }
    100%{
        transform: translate(0px);
        -webkit-transform: translate(0px);
    }
}
@keyframes moveDown{
    0%{
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
    }
    50%{
        transform: translateY(5px);
        -webkit-transform: translateY(5px);
    }
    100%{
        transform: translate(0px);
        -webkit-transform: translate(0px);
    }
}
@keyframes moveUp{
    0%{
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
    }
    50%{
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
    }
    100%{
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
    }
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/*PULSE*/
@keyframes pulse {
  from {
    -webkit-transform: scale3d(2, 2, 2);
    transform: scale3d(2, 2, 2) translateX(0);
  }

  50% {
    -webkit-transform: scale3d(2.1, 2.1, 2.1);
    transform: scale3d(2.1, 2.1, 2.1) translateX(5);
  }

  to {
    -webkit-transform: scale3d(2, 2, 2);
    transform: scale3d(2, 2, 2) translateX(0);
  }
}



.btn{
    padding: 10px 20px;
    display: inline-block;
    font-weight: 500;
    text-align: center;
    border-radius: 30px;
}
.mybtn-primary {
    position: relative;
    color: #fff;
    background-size: 200% auto;
    background-image: linear-gradient(to right, #C9299A 0%, #77178F 51%, #C9299A 100%);
    font-size: 1rem;
    border: 1px solid transparent;
    overflow: hidden;
    min-width: 141px;
    justify-content: center;
    z-index: 1;
    display: flex;
    height: 51px;
    align-items: center;
}

  .mybtn-primary:hover{
    background-position: right center;
  color: #fff;
  text-decoration: none;
  }



  .mybtn-secondary {
    position: relative;
    color: #fff;
    font-size: 1rem;
    background: #613195;
    border: 1px solid transparent;
    overflow: hidden;
    min-width: 141px;
    z-index: 1;
    display: flex;
    justify-content: center;
    height: 51px;
    align-items: center;
}

  .mybtn-secondary:hover{
    border: 1px solid transparent;
    background: #C9299A;
    color: #fff;
  }





.mybtn-third {
    position: relative;
    color: #613195;
    font-size: 1rem;
    background: #ffffff;
    border: 1px solid transparent;
    overflow: hidden;
    min-width: 141px;
    z-index: 1;
    display: flex;
    justify-content: center;
    height: 51px;
    align-items: center;
}

  .mybtn-third:hover{
    border: 1px solid transparent;
    background: #613195;
    color: #fff;
  }


  .mybtn-fill {
    position: relative;
    color: #ffffff;
    background: #613195;
    font-size: 1rem;
    padding: 5px 5px 5px 20px;
    border: 1px solid transparent;
    overflow: hidden;
    min-width: 128px;
    z-index: 1;
    display: flex;
    gap: 15px;
    height: 53px;
    align-items: center;
}
.mybtn-fill span{
    background: #ffffff;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
}


  .mybtn-fill:hover{
    border: 1px solid #613195;
    background: transparent;
    color: #613195;
  }
  .mybtn-fill:hover span{
    background: #613195;
  }
.mybtn-fill:hover span img{
    filter: brightness(0) invert(1);
  }


.clr-gld{
    color: #f9a91e;
    font-size: 1.3rem;
    font-weight: 600;
}





.morebtn{
  font-size: 15px;
    color: #ffffff;
    background-size: 200% auto;
    background-image: linear-gradient(to right, #C9299A 0%, #77178F 51%, #C9299A 100%);
    
    height: 31px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
}
.morebtn:hover{
    background-position: right center;
  color: #fff;
  text-decoration: none;
  }

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}






.btn.center{
    display: table;
    margin: auto;
}

.mybtn-group{
    display: flex;
    flex-flow: wrap;
    align-items: center;
    margin: -5px;
}
.mybtn-group .mybtn-primary,
.mybtn-group .mybtn-secondary,
.mybtn-group .mybtn-third,
.mybtn-group .white-outline{
    margin: 5px;
}
.white-outline{
    border:1px solid #fff;
    color: #fff;
    background-color: transparent;
    opacity: .75;
}
.white-outline:hover{
    opacity: 1;
    background: #fff;
}


.posrel{
    position: relative;
}

@media(max-width:575px){
.btn{
    font-size: .875rem;
}
}





/*---------------------------------------*/
/*::::::::::::::::HEADER:::::::::::::::::*/
/*---------------------------------------*/
header{
        background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /* height: 81px; */
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}
header.sticky{
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    background: #016795;
    border-bottom: 0px solid transparent;
}
header.sticky .headmain{
    box-shadow: none;
    margin-top: 0;
    padding-top: 0;
    padding: 0;
    background: transparent;
}

header.sticky .headmain .logocol{
    width: 170px;
    padding: 5px 0;
    -webkit-transition: all .3s linear;
}


header.sticky .headmain .menucol{
margin-top: 0px;
}

header .hedtop-full{
    background: #42BEED;
}
header .headtop{
    height: 30px;
    display: flex
;
    border-bottom: none;
    background: #12296c;
}
.sticky .headtop{
display: none!important;
height: 0;
}
header .headtop .hedtop1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
header .headtop .topmenu{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-weight: 500;
    align-content: center;
}
header .headtop .topmenu li a{
    color: #fff;
    cursor: pointer;
    font-size: 0.875rem;
}
header .headtop .topmenu li a:hover{
    color: #d2fbf4;
}
header .headtop .topmenu li a img{
    width: 20px;
    display: inline-block;
    margin-right: 10px;
}
header .headtop .topmenu .topmenumail{
    padding-right: 10px;
    border-right: 1px solid #ffffff17;
}
header .topmenuli{
    padding-right: 15px;
    border-right: 1px solid #ffffff29;
}


header.sticky .hedtop-full{
    margin-top: 0px;
    height: 0;
    -webkit-transition: all .3s linear;
}



header .headmain{
    display: flex;
    justify-content: space-between;
    gap: 15px;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    align-items: center;
    padding: 15px 0;
}
header .headmain .logocol{
    width: 202px;
    display: flex;
    align-items: center;
    z-index: 1;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}
/* header.sticky .headmain .logocol{
    width: 200px;
    margin-top: 0;
} */
header .headmain .logocol a{
    display: flex;
    width: 100%;
}
header .headmain .logocol a img{
    width: 100%;
}
header .headmain .logocol .innerlgo{
    display: none;
}
.innerbtn{
    display: none;
}

header .headmain .logocol .inerlogo{
  display: none;
}

/* header.sticky .headmain .logocol a img{
    height: 50px;
} */
header .headmain .menucol{
       flex: 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    gap: 8px;
    
}
.menuog{
    display: flex;
    align-items: center;
    gap: 15px;
}
.menutp{
        display: flex;
    gap: 20px;
}
.menutp p{
    color: #ffffff;
    font-weight: 400;
    font-size: 0.875rem;
    margin-bottom: 0px;
}
.menutp a{
color: #ffffff;
    font-weight: 400;
    font-size: 0.875rem;
}
    
header .headmain .menucol .mainmenu{
    display: flex;
    align-items: center;
    height: 100%;
}

header .megamenu{
    height: 100%;
    flex: 1 0 auto;
    margin: 0 10px;
       
}

header .normalmenu{
    position: relative;
}
header .megamenu a.mainli{
        display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 1rem;
    position: relative;
    color: #000000;
}


header .megamenu button.mainli{
    display: flex;
    align-items: center;
    font-weight: 400;
    position: relative;
}

header .megamenu .megalist{
padding: 15px 7px;
}

header .megamenu .megalist li a {
   display: flex
;
   
        font-weight: 500;
    font-size: 0.98rem;
    color: #313131;
    align-items: center;
    gap: 7px;
}
header .megamenu .megalist li{
 padding: 10px 4px;
}
header .megamenu .megalist li a{
 border-left: 2px solid transparent;
}
header .megamenu .megalist li:hover a{
   color: #613195;
   border-left: 2px solid #613195;
    padding-left: 6px;
  
}




header .megamenu .menuspn:hover a.mainli{
    color: #613195;
    font-weight: 500;
    
}
.menuspn{
    overflow: hidden;
     height: 100%;
     display: block;
}
@keyframes MoveUpInitial {
	to {
		transform: translate3d(0,-105%,0);
	}
}

@keyframes MoveUpEnd {
	from {
		transform: translate3d(0,100%,0);
	}
	to {
		transform: translate3d(0,0,0);
	}
}



header .megamenu.active a.mainli{
    color: #231F20;
}
header .megamenu-content {
    display: flex
;
    align-items: center;
    position: absolute;
    background-color: #fff;
    width: 100%;
    max-width: 800px;
    left: 0;
    border: none;
    z-index: 99;
    height: 0;
    padding: 0 15px;
    overflow: hidden;
    box-shadow: 1px 5px 20px 0px #00726729;
    line-height: 1.4;
    border-radius: .3rem;
}
header .normalmenu .megamenu-content{
    width: max-content;
    max-width: 463px;
    min-width: 200px;
}
header .megamenu:hover .megamenu-content {
    min-height: 280px;
    height: auto;
    align-items: flex-start;
    padding-top: 15px;
    animation-name: zoomIn;
    animation-duration: .4s;
    animation-iteration-count: 1;
}
header .normalmenu:hover .megamenu-content{
    padding: 0;
    /* padding-bottom: 5px; */
    min-height: auto;
    height: auto;
}
header .normalmenu .normlist{
    display: flex;
    flex-flow: column;
    font-size: .9rem;
    width: 100%;
}

header .normalmenu .normlist li a{
    color: #4f6b78;
    display: flex;
    padding: 8px 10px;
    border-bottom: 1px solid #0000000d;
}
header .normalmenu .normlist li a:hover{
    color: #000050;
}

header .iconmenulist li a {
    display: flex;
    gap: 10px;
    padding: 10px 10px;
    flex-direction: column;
    text-align: center;
}

header .iconmenulist li a img{
    opacity: 0.6;
    width: 24px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
header .iconmenulist li a:hover img{
    scale: 0.9;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}



header .iconmenulist {
    display: flex;
    flex-flow: wrap;
    margin: 0;
    width: 100%;
}
.iconmenulist li{
    padding: 5px;
}
.iconmenulist li a {
    display: flex;
    color: #000000ad;
    font-size: .875rem;
    align-items: center;
    transition: .3s;
    /* justify-content: center; */
    border: 1px solid #0166952d;
    padding: 8px 15px;
    border-radius: 0.3rem;
}
.iconmenulist li a:hover {
    border: 1px solid #0167957a;
   color: #016795;
}


.headertab {
    display: flex;
    gap: 1rem;
    width: 100%;
    height: 100%;
}
.headertab .sec2 {
    width: 230px;
}
.headertab .sec1 {
    width: calc(100% - 230px);
}

.headertab .nav-link {
    font-size: 0.9rem;
    color: #333;
    position: relative;
}

.headertab .nav-link:hover{
    color: #016795;
}
.headertab .nav-pills .nav-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #f1bb00;
    left: -7px;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    transition: 0.3s;
}
.headertab .nav-pills .nav-link.active:after {
    opacity: 1;
}
.headertab .nav {
    border-left: 1px solid #eee;
    padding-left: 10px;
    min-height: 285px;
}
.headertab .nav-pills .nav-link.active {
    background-color: #f1bb00;
    color: #fff;
    border-radius: 0.3rem;
}

.headertab .megalist li {
    flex: 1 0 33.33%;
    max-width: 33.33%;
}




.sizeUp{font-size:110%!important;}
.sizeNormal{font-size:100%!important;}
.sizeDown{font-size:90%!important;}

.themebtn.active{
    background-color: #2a2a2a !important;
    color: #fff !important;
    border-color: #2a2a2a !important;
}

.bottom-nav{
    border-bottom: none!important;
}
.enquiry{
 display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;   
    margin-left: 10px;
    min-width: 140px;
}
.enquiry img{
    width: 20px;
    display: inline-block;
    margin-right: 10px;
}

@media(max-width:1200px){
header .headmain .menucol .mainmenu{
    gap: 0;
}
header .megamenu{
    margin: 0 6px;
}
header .headmain .logocol{
    width: 150px;
}
}

@media(max-width:991px){
header .headtop{
    height: 36px;

}
header .megamenu button{
    background-color: transparent;
}
header .megamenu button img{
    width: 35px;
}
header.sticky .headtop{
    margin-top: 0px;
}
header .headmain .menucol{
            max-width: max-content;
}
header .megamenu{
    display: flex;
    align-items: center;
}

header.sticky .headmain .logocol{
    width: 100px;
}
header .headmain .menucol .menutop {
    width: 452px;
}
header .headmain .menucol .menutop{
    width: 452px;
}
}

@media(max-width:767px){
header .headtop .topmenu{
    display: none;
}
header .headtop{
    justify-content: center;
}
header .headmain .menucol .menutop{
    display: none;
}
}

@media(max-width:575px){
header .headmain .logocol{
    width: 125px;
}
header.sticky .headmain .logocol{
    width: 75px;
}
header .headtop .topsocial{
    display: none;
}

}



@media (min-width: 992px) {
    .header_resp {
        display: none;
    }
}
.header_resp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
.cd-dropdown-trigger {
    padding: 0;
    border-radius: 0;
}
.cd-dropdown-trigger .fa {
    font-size: 22px;
    color: #069548;
}

.cd-dropdown .hdtop {
    background-color: #fff;
    border-color: #069548;
    width: 100%;
    position: relative;
    z-index: 1;
    height: 75px;
    padding: 0;
    display: flex;
    flex-flow: wrap;
    border-bottom: 1px solid #f1f1f1;
}
.cd-dropdown .hdtop .menuadmin {
    display: flex;
    width: 100%;
    height: 75px;
    background: #016795;
}
.cd-dropdown {
    background-color: rgba(0, 0, 0, 0.7);
}
.cd-dropdown > .cd-dropdown-content {
    width: 70%;
    right: 30%;
    background-color: #00567d;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
}
.cd-dropdown-content {
    padding-top: 0;
}
.cd-dropdown-content ul {
    padding-top: 80px;
    background-color: #00567d;
}
.cd-dropdown-content a,
.cd-dropdown-content ul a {
    color: #016795;
    border: none;
    border-bottom: 1px solid #ddd;
}
.cd-dropdown .cd-close {
    right: 1rem;
    top: 18px;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 9;
    box-shadow: 6px 4px 15px rgba(0, 0, 0, 0.1);
    display: none;
}
.closebarz {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    left: 70%;
    cursor: zoom-out;
}

@media (max-width: 575px) {
    .cd-dropdown > .cd-dropdown-content {
        width: 80%;
        right: 20%;
    }
    .closebarz {
        left: 80%;
    }
}

@media (max-width: 360px) {
    .closebarz {
        display: none;
    }
    .cd-dropdown > .cd-dropdown-content {
        width: 100%;
        right: 0;
    }
    .cd-dropdown .cd-close {
        display: block;
    }
}

.cd-dropdown .logo {
    max-width: 150px;
    margin: 5px auto;
}
.cd-dropdown h2,
.cd-dropdown-content a,
.cd-dropdown-content ul a,
.cd-dropdown-content .cd-divider {
    padding: 0 15px;
}
.cd-dropdown-content a,
.cd-dropdown-content ul a {
    height: 38px;
    line-height: 38px;
    font-size: 0.875rem;
    border: none;
    margin: 8px;
    background-color: #fff;
    border-radius: 0.3rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.cd-dropdown-content a:hover,
.cd-dropdown-content ul a:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: rgb(1 103 149);
}

.cd-dropdown-content a:hover img{
    filter: brightness(0) invert(1);
}
.cd-dropdown-content ul a:hover img{
       filter: brightness(0) invert(1); 
}


.has-children > a::before,
.has-children > a::after,
.go-back a::before,
.go-back a::after {
    background: #016795;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.has-children > a:hover::before,
.has-children > a:hover::after,
.go-back a:hover::before,
.go-back a:hover::after {
    background-color: #ffffff;
}
.cd-dropdown-content a img {
    width: 22px;
    margin-right: 8px;
}
.cd-dropdown .cd-close::after,
.cd-dropdown .cd-close::before {
    background: #60606a;
    width: 1px;
    height: 15px;
}
.has-children > a::before,
.has-children > a::after,
.go-back a::before,
.go-back a::after {
    height: 1px;
}
.has-children > a img.img-menu {
    max-width: 20px;
    margin-right: 10px;
}
.hdtop .upic {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    flex: 1 0 180px;
    max-width: 180px;
}
.hdtop .upic a {
    height: 100%;
    margin: 0;
    border-radius: 0;
    padding: 0;
}
.hdtop .upic a:hover {
    background-color: transparent;
}
.hdtop .upic img {
    display: block;
    width: 180px;
}
.menu-user {
    flex: 1 0;
    color: #f7f7f7;
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 100%;
    background-color: #094ca0;
    padding-left: 15px;
}
.menu-user .uname {
    font-size: 14px;
}
.menu-user span {
    display: block;
    line-height: 20px;
    font-size: 12px;
}

.menubtn img{
    width: 25px;
    background-color: transparent;
}


@media (max-width: 480px) {
    .menu-acc p {
        line-height: 5px;
        font-size: 10px;
    }
    .menu-user {
        width: calc(100% - 70px);
    }
    .menu-acc a {
        font-size: 0.65rem;
    }
}







@media(max-width:767px){
    header .headtop{
        display: none;
    }
}


@media (min-width: 992px) and (max-width: 1199px){
    header .cmpad {
        padding-left: 15px;
        padding-right: 15px;
    }
    header .megamenu {
        margin: 0 6px;
    }
    header .megamenu.active a.mainli{
        font-family: 0.800rem;
    }
    .megamenudonate a{
        min-width: 121px;
        max-width: 121px;
    }
    header .headmain{
        gap: 10px;
        
    }
    
}



@keyframes zoomIn {
    from {
      opacity: 0;
      -webkit-transform: scale3d(0.3, 0.3, 0.3);
      transform: scale3d(0.3, 0.3, 0.3);
    }
  
    50% {
      opacity: 1;
    }
  }



/*::::::::::::::::SIDEMENU:::::::::::::::::*/

.sidebar {
    width: 350px;
    max-width: calc(100% - 1rem);
    height: calc(100vh - 2rem);
    position: fixed;
    z-index: 999;
    border-radius: 1rem;
    top: 1rem;
    right: 1rem;
    background: #FBF0F8;
  background-size: cover;
  background-repeat: no-repeat;
   
    padding: 1rem;
    /* transform: translateX(calc(100% + 1rem)); */

    transform-origin: right center;
    transform: perspective(1400px) rotateY(90deg);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease, visibility 0s 1.2s;

    overflow-y: hidden;
   transition: all .3s ease;
    -webkit-transition: all .3s ease;
  }
  .sidebar .sidelogo .logo {
    width: 150px;
    display: flex;
}

  .sidebar.active {
    /* transform: translateX(0);
    -webkit-transform: translateX(0);
    box-shadow: -15px 5px 20px rgb(0 0 0 / 10%); */
     transform: perspective(1400px) rotateY(0deg);
    opacity: 1;
    visibility: visible;
    transition:
        transform 1.2s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.6s ease;
  }
  .bgoverlay{
    content: '';
    position: fixed;
    z-index: 998;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: var(--green50);
    background: linear-gradient(90deg, rgb(35 158 95 / 0%) 0%, #158A8A 40%, #0572BC 100%);
    opacity: 0;
    cursor: zoom-out;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
  }
  .bgoverlay.active{
    width: 100%;
    opacity: .5;
  }
  
  .sidebar .sidecont{
    overflow: hidden;
    height: 100%;
    overflow-y: auto;
  }
  .sidebar .head{
    font-weight: 500;
    color: #333;
    font-size: 1rem;
  }
  .sidebar .head a{
    color: #333;
  }
  .sidebar .sidelist{
    display: flex;
    flex-direction: column;
  }
  
  .sidebar .sidelist a{
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    color: #313131;
    font-weight: 400;
    border-radius: .5rem;
    border-bottom: 1px solid transparent;
  }
  .sidebar .sidelist a:hover{
    color: #431970;
  }
  .sidebar .sidelist a .icon img {
    filter: brightness(0) opacity(0.3);
    -webkit-filter: brightness(0) opacity(0.3);
  }
  .sidebar .sidelist a:hover .icon img{
    filter: brightness(0) opacity(0.75);
    -webkit-filter: brightness(0) opacity(0.75);
  }
  
  .sidebar .sidelist .toggle-arrow {
    position: absolute;
    right: 5px;
    width: 20px;
    height: 20px;
    background-image: url(../img/icons/angledown.svg);
    background-size: contain;
    
    display: block;
    transition: transform 0.3s ease-in-out;
  }
  .sidelist li.open > a .toggle-arrow {
    transform: rotateX(180deg); 
    -webkit-transform: rotateX(180deg); 
  }
  
  .sidebar .mobidrop {
    display: none;
        margin: 10px 0;
    padding: 0 15px;
    border-radius: .5rem;
    background: transparent;
    box-shadow: 0 0px 25px -12px rgb(0 0 0 / 25%);
  }
  .sidebar .sidelist li.open > .mobidrop {
    display: block;
  }

  .sidelogo {
    border-bottom: 1px solid transparent;
    padding-bottom: .5rem;
    margin-bottom: .5rem;
}
  
.sidebar .nobg{
    padding: 10px;
    gap: 10px;
    align-items: center;
}
.sidebar .iconcard{
    display: flex;
    border: 1px solid #33333349;
    border-radius: 8px;
}
.sidebar .iconcard .icon {
margin-top: 0px;
    width: 30px;
    display: flex
;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    margin-bottom: 0px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2F2583, #F27103);
    justify-content: center;
    align-items: center;
}

.sidebar .social {
  display: flex;
  gap: 10px;
}
.sidebar .social a {
  display: flex;
    width: 32px;
    height: 32px;
    background-color: #de6910;
    color: rgb(255 255 255 / 95%);
    /* border-radius: 50%; */
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    
    transition: 0.3s;
    border-radius: 50%;
    padding: 6px;
}
.sidebar .social a:hover {
  background-color: #d2681f;
  color: white;
}
.sidebar .social li{
    list-style-type: none;
}



.sidebarspan{
    color: var(--second);
}

  @media(max-width:575px){
    .sidebar{
      height: 100%;
      top: 0;
      bottom: 0;
      right: 0;
      border-radius: 1rem 0 0 1rem;
    }
    
  }

.closebtn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border: none;
    border-radius: 50%;
    background-color: #ffffff;
    transition: transform 0.3s ease-in-out;
    -webkit-transition: transform 0.3s ease-in-out;
}
.closebtn:hover {
    /* border: 1px solid rgb(0 0 0 / 25%); */
    box-shadow: -2px 4px 10px rgb(0 0 0 / 15%);
}




/*---------------------------------------*/
/*:::::::::::::::::SLIDER::::::::::::::::*/
/*---------------------------------------*/
.slider{
    height: 730px;
    width: 100%;
    position: relative;
    top: 0;
    background: url(../img/images/banner-bac.svg);
    background-size: cover;
    background-repeat: no-repeat;
     padding-top: 105px;
     background-position: bottom;
}

.slider::after{
    content: '';
    position: absolute;
    bottom: 0;
    background: url(../img/slider/slider-bottom.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    left: 8%;
    height: 220px;
    border-radius: 25px 0 0 25px;
}

.bnr-txt{
     height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    position: relative;   
}

.bnr-hed{
         font-size: 3.4rem;
    color: #181718;
    font-weight: 700;
}
.bnr-hed span{
       background: -webkit-linear-gradient(90deg, #77178F, #C9299A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bnr-imge{
        height: 621px;
        position: relative;
    display: flex;
    align-items: center;
        justify-content: center;
        z-index: 1;
}
.bnr-imge img{
    width: 100%;
max-width: 515px;
}

.mylist{
    display: flex;
    flex-flow: column;
    margin-bottom: 1rem; 
}
.mylist li , .sublist li, .inlist li{
    position: relative;
    padding: 4px 0;
    padding-left: 31px;
    font-size: 1rem;
    font-weight: 400;
    color: #313131;
}
.mylist li:before , .sublist li::before, .inlist li::before{
    content: '';
    background-image: url(../img/icons/point.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 18px;
    height: 19px;
    position: absolute;
    left: 0;
    margin-top: 4px;
}
 

/*---------------------------------------*/
/*:::::::::::::::::ABOUT:::::::::::::::::*/
/*---------------------------------------*/   
.para {
    font-size: 1rem;
    color: #313131;
    font-weight: 400;
    line-height: 26px;
}
.about{
    position: relative;
}
.mainhed{
        font-size: 3.2rem;
    font-weight: 700;
    color: #181718;
}
.mainhed span{
    background: -webkit-linear-gradient(90deg, #77178F, #C9299A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hed-desc{
    max-width: 70%;
    margin: auto;
}

.abtcont{
    height: 100%;
    display: flex;
    
}

.abt img{
    max-width: 550px;
    width: 100%;
}

.aboutunder {
  background: linear-gradient(45deg, #C9299A, #77178F);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.aboutunder:after{
    content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
      pointer-events: none;
  background: url(../img/images/waveline.svg) no-repeat;
  background-size: cover;
  animation: pulse 8s linear infinite;
}




/*--------------------------------------------------------*/
/*:::::::::::::::::modules:::::::::::::::::*/
/*--------------------------------------------------------*/
.advntage2{
    margin-top: -140px;
}
.advntage3{
    margin-top: -280px;
}
.advantagescard{
   padding: 26px 35px;
    background: #ffffff;
    border-radius: 50px 0 50px 0;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 7px #00000017;
    z-index: 1;
     transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.advantagescard img{
    margin-bottom: 18px;
}
.advantagescard .cont{
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 9px;
}
.advantagescard .desc{
    font-size: 16px;
    color: #000000be;
    /* display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; */
    margin-bottom: 0px;
}

.advantagescard:hover{
  background: #C9299A;
   transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.advantagescard:hover p{
 color: #fff;
   transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.advantagescard:hover img{
 filter: brightness(0) invert(1);
   transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

/*--------------------------------------------------------*/
/*:::::::::::::::::students:::::::::::::::::*/
/*--------------------------------------------------------*/
.students{
    background: #FBF0F8;
}
.opportunity-student{
    max-width: 500px;
    width: 100%;
}
.listbxs{
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 7px #00000017;
    border-radius: 22px;
}
.listbxs h3{
    font-size: 24px;
    color: #78178F;
    font-weight: 600;
}

/*--------------------------------------------------------*/
/*:::::::::::::::::officers:::::::::::::::::*/
/*--------------------------------------------------------*/
.officerlst{
    background: #fff;
    padding: 16px;
    box-shadow: 0 0 7px #00000017;
    border-radius: 15px;
        gap: 10px;
    display: flex;
    flex-direction: column;
}
.officerlst .points{
    padding: 9px 15px;
    background: #FBF0F8;
    border-left: 2px solid #77178F;
    border-radius: 10px;
}
.officerlst .points p{
    color: #181718;
    margin-bottom: 0px;
}
.officerlst2{
    margin-top: 115px;
        margin-bottom: 25px;
}
.officers-img{
        position: relative;
    bottom: 0;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}
/*--------------------------------------------------------*/
/*:::::::::::::::::mobileapp:::::::::::::::::*/
/*--------------------------------------------------------*/
.mobileapp-full{
    padding: 55px;
    border-radius: 25px;
}
.mobilesecfull{
width: 694px;
}

.mobilesec{
position: relative;
}
.mobilesec .mobileapp-screen{
        max-width: 307px;
        position: relative;
        z-index: 1;
}
.mobileappbx{
        display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    background: linear-gradient(90deg, #77178f00 12%, #77178F 21%, #C9299A);
    border-radius: 17px;    
    position: absolute;
    width: 100%;
    bottom:20px;
    
}
.mobileappbx .mobilecardfll{
padding: 17px 24px;
padding-top: 7px;
}
.mobilecard{
    padding: 15px;
    background: #ffffffde;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    gap: 14px;
    margin-top: 10px;
}
.mobilecard span{
    width: 50px;
    height: 50px;
    background: #EED0E6;
    border-radius: 4px;
        display: flex;
    justify-content: center;
    align-items: center;
}
.mobilecard .crdttl{
    width: calc(100% - 64px);
}
.mobilecard .crdttl .cont{
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0px;
    line-height: 24px;
}

/*--------------------------------------------------------*/
/*:::::::::::::::::employer:::::::::::::::::*/
/*--------------------------------------------------------*/
.employercard{
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    gap: 18px;
    height: 100%;
}
.employercard img{
    width: 48px;
}
.employercard .crdttl{
    width: calc(100% - 66px);
}
.employercard .crdttl .cont{
    margin-bottom: 0px;
}
/*---------------------------------------*/
/*:::::::::::::::::analytics:::::::::::::::::*/
/*---------------------------------------*/  
.analyticscard{
padding-top: 50px;
    height: 100%;
}
.analyticscard .analyticsiconfll{
    display: flex;
}

.analyticscard .analticscont{
padding: 25px 16px;
}
.clr-w{
    color: #fff;
}
.analyticscard .analyticsicon{
position: relative;
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
    z-index: 1;
    
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    transform: rotate(0);
    background-color: #EED1E6;
    mask-image: url(../img/icons/analytics-icon-shape.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}
.analyticscard .analyticsicon::after{
content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #77178F, #C9299A);
   mask-image: url(../img/icons/analytics-icon-shape.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    transform: translateY(30px);
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.analyticscard .analyticsicon img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 45px;
    height: 45px;
    font-size: 45px;
    line-height: 1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%) rotate(0);
}
.analyticscard:hover .analyticsicon::after{
    transform: translateY(0);
    opacity: 1;
}
.analyticscard:hover .analyticsicon img{
        transform: translate(-50%, -50%) rotate(360deg);
        filter: brightness(0) invert(1);
}
.analyticscard .analticscont .cont{
    color:#000000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}
.analyticscard .hfll{
height: 100%;
    background: #FBF0F8;
    border-radius: 15px;
}

/*--------------------------------------------------------*/
/*:::::::::::::::::clients:::::::::::::::::*/
/*--------------------------------------------------------*/
.clientcard{
    height: 150px;
    padding: 8px;
    border-radius: 15px;
    border: 1px solid #6131952a;
        display: flex;
        flex-direction: column;
        gap: 5px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.clientcard img{
    height: 75px;
    width: 125px;
    object-fit: contain;
}
.clientcard .desc{
    font-size: 14px;
}
.clientcard:hover img{
 animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}




/*--------------------------------------------------------*/
/*:::::::::::::::::testimonials:::::::::::::::::*/
/*--------------------------------------------------------*/
.testmonialcmn{
    position: relative;
}
.testmonialcmn .opportunity-student{
    position: relative;
    z-index: 1;
}
.testefct{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 500px;
}
.testimonial-card {
      padding: 20px;
    position: relative;
}
.testimonial-card .author{
    display: flex;
    gap: 24px;
        align-items: center;
}
.testimonial-card .author .imgs{
    width: 80px;
    height: 80px;
    padding: 6px;
    border: 1px solid #C9299A;
    display: flex;
        align-items: center;
    justify-content: center;
    border-radius: 66%;
}
.testimonial-card .author .imgs img{
    border-radius: 66%;
}
.testimonial-card .author h4 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #313131;
  line-height: 26px;
}

.testimonial-card .author h4 span {
  font-size: 0.875rem;
  font-weight: 400;
}
.testimonial-card .testimonial-text{
    margin-top: 30px;
}





/* PAGINATION */
.testimonial-section .swiper-pagination {
      margin-top: 20px;
    position: relative !important;
}

.testimonial-section .swiper-pagination-bullet {
  background: #e3d6f5;
  opacity: 1;
      width: 11px;
    height: 11px;
    margin: 0 5px !important;
}

.testimonial-section .swiper-pagination-bullet-active {
  background: #6b2aa6;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .testimonial-card {
    
  }
.testimonial-text{
    margin-bottom: 20px;
}
  .testimonial-content {
    max-width: 100%;
  }

  .quote-icon {
    font-size: 70px;
  }
}

/*---------------------------------------*/
/*::::::::::::::::::blogs::::::::::::::*/
/*---------------------------------------*/
.blogcard{
    flex-direction: column;
   position: relative;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
     border-radius: 18px;
     background: transparent;
}
.blogcard .blogimg{
    border-radius: 18px;
}
.blogcard .date{
    position: absolute;
    bottom: 7px;
    left: 7px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    padding: 4px 11px;
    border-radius: 0 18px 0 18px;
    background: #77178F;
}
.blogcard .cont{
    padding-top: 20px;
}
.blogcard h5{
  margin-top: 0;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 500;
    color: #201E20;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blogcard p{
        color: #686868;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogdate{
    position: relative;
}



/*---------------------------------------*/
/*::::::::::::::::::FOOTER::::::::::::::*/
/*---------------------------------------*/

footer {
  background: #EED0E6;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 120px;
}
.fttops{
    background: linear-gradient(45deg, #C9299A, #77178F);
    padding: 50px 30px;
    border-radius: 12px;
    width: 100%;
    margin-top: -100px;
}
.fttops .ftcont h2{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}
.fttops .ftcont p{
    color: #fff;
    opacity: 88%;
}
.ft-logo {
    max-width: 100%;
    width: 150px;
    margin-bottom: 15px;
}

.ft-logo img {
    width: 100%
}
.ft-social {
    flex-direction: row;
    gap: 15px;
    display: flex;
}

.ft-social a {
    display: flex;
    width: 40px;
    height: 40px;
    background-color: #61319585;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
}
.ft-social a:hover span img{
     animation-name: zoomIn;
    animation-duration: .5s;
    animation-iteration-count: 1;
}
.quicklink{
    padding-left: 60px;
}
.quicklink h2 {
    font-size: 24px;
    font-weight: 500;
    color: #1E023D;
    margin-bottom: 8px;
}
.quicklink p {
        font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.quicklink p a{
    color: #313131;
    font-size: 15px;
    font-weight: 400;
}
.quicklink p a:hover{
    color: #000000;
}

.foot-list li a {
    display: flex;
    color: #313131;
    font-size: 16px;
    font-weight: 400;
}
.foot-list li a:hover{
    color: #0b0b0b;
}
.foot-list li p {
    display: flex;
    flex-direction: row;    
    align-items: flex-start;
    gap: 12px;
    line-height: 27px;
}

.foot-list li p .fticn {
       background: #613195;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
        margin-top: 4px;
}

.foot-list li p .fttxt {
    width: calc(100% - 50px);
    font-weight: 600;
}

.foot-list li {
    padding: 4px 0;
}
.collab-logo{
    display: flex;
    gap: 20px;
        align-items: center;
}
.ft-disc ul{
    display: flex;
    gap: 27px;
}
.ft-disc ul li a{
    font-size: 15px;
    font-weight: 400;
}
.ft-disc ul li a:hover{
    color: #0b0b0b;
}
.ft-bottom{
    border-radius: 14px;
    background: #fff;
    padding: 20px 35px;
    box-shadow: 0 0 6px #00000012;
    margin-top: 30px;
}
.cpyfll{
        display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 47px;    
    background: #eed0e6;
    border-top: 1px solid #d675bc33;
    margin-top: 40px;
}
.copy{
    color: #313131;
}
/*modal*/
.close{
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: none!important;
    outline: none;
    color: #220f3c;
}
.modal-dialog{
    max-width: 1000px !important;
}
.modal-header{
    border-bottom: none !important;
    padding: 0;
}
.modal-content, .modal{
    height: 100% !important;
    padding: .5rem;
}
.i-flex{
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #cec0a8;
    padding: 10px;
}
.sign{
    display: none;
}
.loginimg{
    border-radius: 15px;
}
.modal-sucess{
    width: 300px;
    height: auto!important;
    background: #fff!important;
    text-align: center;
}

#successModal .modal-dialog{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sucessimg{
    width: 65px;
    margin: auto;
}

.mobnav {
        background: transparent;
    padding: 0;
    margin-top: -18px;
    height: 100%;
    border-radius: 7px;
        
  }
  .mobnav img {
width: 28px;
    height: 29px;
    object-fit: contain;
  }



  .ftcont{
    flex: 1;
  }



@media(max-width:1199px){
     
    
    .bnr-hed{
        font-size: 2.8rem;
    }
   
}




@media(max-width:1024px){
.cta .mainhed{
    font-size: 2rem;
}

.bnr-hed{
    font-size: 1.9rem;
}


}



@media(max-width:991px){
.slider{
    padding-top: 91px;
    height: auto;
    padding-bottom: 45px;
}
.bnr-hed{
font-size: 2.4rem;
}
.bnr-txt{
    padding-top: 45px;
    padding-bottom: 45px;
}
.bnr-imge{
    height: auto;
}
.advantagescard {
    padding: 20px 23px;
}
.advntage3 {
    margin-top: 0;
}
.advntage2{
    margin-top: 70px;
}
.advntage1{
    margin-top: 140px;
}
.listbxs{
    margin-top: 25px;
}
.officerlst2{
    margin-top: 0px;
    margin-bottom: 0px;
}
.officerlst{
    height: 100%;
}
.officers-img{
    margin-top: 20px;
}
    .abt{
    margin-top: 20px;
}
.employercard .crdttl .cont br{
    display: none;
}
.employercard{
    align-items: flex-start;
}
.mobileapp-full{
    padding: 35px;
}
.mobilesecfull {
    width: 614px;
}
.mobilesec .mobileapp-screen{
    max-width: 250px;
}
.quicklink{
    padding-left: 0;
}


.instcont{
    padding-left: 0px!important;
}
.instcont .para{
    font-size: 20px;
}
.instcard{
    height: 100%;
}

.instcard .cont {
    font-size: 18px;
}
    .mainhed{
        font-size: 2.4rem;
    }
    .mainhed-sub{
        font-size: 1.5rem;
    }
    .clients-header h2{
        margin-bottom: 25px;
    }
    .clients-header h2 br{
        display: none;
    }
    .hed-desc{
        max-width: 100%;
    }
    .platform{
        height: auto;
        padding-bottom: 0px!important;
        border-radius: 70px 0 70px 0;
    }
.platfrom-img{
    position: relative;
}
.ctafull{
    height: auto;
    padding-bottom: 0px;
}
.cta-cont{
    width: 100%;
}
.ctaimg img {
    max-width: 475px;
    width: 100%;
}
.ctaimg{
    position: relative;
}

        .over-bag ul {
        overflow: hidden;
        overflow-x: auto;
        flex-flow: nowrap;
        padding-top: 15px;
    }
        .over-bag ul li {
        flex: 1 0 25%;
    }
    .over-bag{
        bottom: 45px;
    }
    
   
    .overview-ptrn {
        display: none;
            width: 130px;
        height: 152px;
        top: 15px;
        left: 0;
        opacity: 50%;}
    .overview-ptrn .star1{
    width: 20px;
    }
.overview-ptrn .star2{
    width: 40px;}
.overview-ptrn .star3{
    width: 30px;
}
.overview-ptrn .star4{
       max-width: 59px;
       margin-top: -80px;
}

header{
    height: auto;
}
.misionbx{
    padding: 12px;
}
.msg-main-sec .msg-sec1 {
    width: 275px;
}
.msg-main-sec .msg-sec2 {
    width: calc(100% - 275px);
    padding: 0 25px;
}

.galry-ttle {
    margin-top: 20px;
}

.ftrlogo{
    margin-bottom: 15px;
}
.overview-pen img{
width: 85px;
}

    .abt-img img{
        margin-left: 0;
        height: auto;
        margin-bottom: 15px;
    }
    .mision-full{
        margin-top: 10px;
    }
    .events-bx{
        margin-bottom: 15px;
    }
    .newsbutn .btn{
        display: none;
    }
    .callto{
        margin-top: 30px;
    }
    .ftmobb{
        display: none;
    }
    .menutp{
        display: none;
    }
    
    
    }



    




    @media(max-width:767px){
       .advntage1{
        margin-top: 0px;
       }
         .advntage2{
        margin-top: 0px;
       }
        .advntage3{
        margin-top: 0px;
       }
        .officerlst2{
            margin-top: 20px;
        }
        .officerlst{
height: auto;
        }
        .mobilesecfull{
            width: 100%;
        }
        .mobileapp-full {
        padding: 25px;
    }
        .mobileappbx{
            position: relative;
            background: transparent;
            bottom: 0;
        }
        .mobilesec {
    position: relative;
    padding: 15px;
    background: linear-gradient(90deg, #77178F, #C9299A);
    border-radius: 15px;
}
.mobilesec .mobileapp-screen {
        max-width: 190px;
    }
    .mobileappbx .mobilecardfll {
    padding: 0;
    padding-top: 10px;
    width: 100%;
}
           
        .bnr-txt{
            max-width: 100%;
            width: 100%;
            height: auto;
            padding: 15px 0;
        }


.ftcont{
    flex: auto;
}
.quicklink{
    margin-top: 20px;
}

        .over-bag ul li {
        flex: 1 0 33.33%;
    }
    .msg-main-sec .msg-sec1{
        width: 100%;
    }
    .msg-main-sec .msg-sec2 {
        width: 100%;
        padding: 15px 0  0 0;
    }

    .newssec .flexVcenter {
    padding-bottom: 32px;
    flex-direction: column;
    align-items: start;
}

        .ftlogo{
            flex-direction: column;
            text-align: center;
        }
        .ftlogo a {
            width: 210px;
            flex: none;
            padding-right: 0;
            border-right: none;
        }
    }
    





    @media(max-width:575px){

        .fttops .ftcont h2{
            font-size: 1.9rem;
        }
        .bnr-imge{
    height: auto;
}
    
    .quicklink h2{
        margin-top: 15px;
    }


.abt-countr{
    margin-bottom: 45px;
}

.comitmntfull{
    padding: 30px 18px;
}
.comitmntfull .mylist{
    margin-bottom: 0px;
}
.clientcard{
    height: 122px;
}
.clientcard img {
    height: 50px;
    width: 98px;
    object-fit: contain;
}
.quicklink{
    margin-top: 0;
}
.foot-list{
    margin-top: 0px!important;
}
        .navibtn .slidebtn:after{
            font-size: 12px;
        }
        .navibtn .slidebtn{
            width:22px;
            height: 22px;
        }
        .mainslidenav{
                top: 41% !important;
        }
        .main-sub{
            font-size: 1.1rem;
        }




        .mainhed{
            font-size: 1.9rem;
        }
        .mainhed br{
            display: none;
        }
        .clients-swiper::after{
            display: none;
        }
        .clients-swiper::before{
            display: none;
        }
        .clients-swiper2::after{
            display: none;
        }
        .clients-swiper2::before{
            display: none;
        }
        .clients-section{
            padding: 30px;
        }
        .mainhed-sub{
        font-size: 1.1rem;
    }
    .platform-row {
    align-items: flex-start;
    flex-direction: column;
}
.platfrom-img img {
    max-width: 240px;
}
.whycard h5{
    font-size: 1.3rem;
}
.ai-tracking{
    padding: 25px;
}
.ctafull{
    padding: 25px;
    padding-bottom: 0px;
}

.ft-disc ul{
   flex-wrap: wrap;
}





        .principla-msg{
            flex-direction: column;
        }
        .abt-card{
            flex: 1 1 calc(50% - 10px);
        }
        .abt-partt{
            flex-wrap: wrap;
        }
        .princi{
            max-width: 290px;
            width: 100%;
        }

        
       
    
    }