*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif !important;

}

a{
    text-decoration: none;
}
ul{
    list-style: none;
}
html, body{
  /*   overflow-x: hidden; */
    scroll-behavior: smooth;
    
}
.card{
    border: none;
}

.object-fit{
    object-fit: cover;
}
.radius-16{
border-radius: 16px;
}
.para p,.para-div p,.para-div ul li{
    font-size: 15px;
    line-height: 20px;
color: rgba(80, 79, 79, 1);
font-weight: 400;
}
.para-div ul li{
    color: #000 !important;
}

:root {

    --primary-color:rgba(1, 149, 255, 1);
    --secondary-color: rgba(255, 136, 0, 1);
    
  }
  .text-orange{
    color: var(--secondary-color);
  }
@media screen and (min-width:991px){
    .para p{
        font-size: 18px;
        line-height: 29px;
    }
    .para-div p,.para-div ul li{
        font-size: 16px;
        line-height: 26px;
    }
}



.plane-button-wrapper {
  position: relative;
/*   display: inline-block; */
}
.other-slide .plane-button-wrapper{
	text-align:center;
}

@media (min-width: 991px) {
    .other-slide .plane-button-wrapper {
        text-align: left;
    }
}

.slick-active 
.plane-button {
  position: relative;
  background: #004aad;
      text-transform: uppercase;
  
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
/*   overflow: hidden; */
  z-index: 2;
}
.plane-button:before{
	content: "";
    position: absolute;
    top: -11px;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #ff8800 !important;
    width: 70px;
    height: 70px;
    transition: all 0.3s ease;
	z-index:-1;
}



/* Plane styling */
.plane-path-plane {
  position: absolute;
  top: 24px;
    left: 32px;
    width: 16px;
    height: 15px;
  opacity: 1;
  pointer-events: none;

  offset-path: path("M 0 -35 A 35 35 0 1 1 0 35 A 35 35 0 1 1 0 -35");
  offset-rotate: auto;
  transform: translate(-50%, -50%);
}

/* Trigger animation */
.plane-button:hover .plane-path-plane {
  animation: flyLoopTakeoff 2.5s ease-in-out forwards;
  opacity: 1;
}

/* Combined loop + takeoff animation */
@keyframes flyLoopTakeoff {
  0% {
    offset-distance: 0%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  60% {
    offset-distance: 100%;
    transform: translate(-50%, -50%) scale(1);
	   opacity: 1;
  }
  100% {
    offset-distance: 100%;
    transform: translate(150px, -150px) scale(1.3) rotate(-15deg);
    opacity: 0;
  }
}

/* Clouds (behind plane as exhaust trail) */
.cloud {
  position: absolute;
  font-size: 20px;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.cloud-1 {
  top: 25px;
  left: 35px;
}

.cloud-2 {
  top: 28px;
  left: 20px;
}

.cloud-3 {
  top: 22px;
  left: 40px;
}

.plane-button:hover .cloud-1 {
  animation: cloudTrail 1.5s ease-out 1.4s forwards;
}

.plane-button:hover .cloud-2 {
  animation: cloudTrail 1.5s ease-out 1.5s forwards;
}

.plane-button:hover .cloud-3 {
  animation: cloudTrail 1.5s ease-out 1.6s forwards;
}

@keyframes cloudTrail {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.9);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(100px, -100px) scale(1.3);
  }
}
















/* ~~~~~~~~~~~~~~~~~~~~~~~~~~ Header ~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.sticky-nav {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background-color: #fff; /* Make sure background is not transparent */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
  transition: all 0.3s ease;
}


header .header-info{
    background: #1c1b1f;
}
header .header-info span, header .header-info a{
    color: #86838c;
}

header .header-social-icons svg{
    margin-right: 25px;

}
/* Navbar */
header .navbar{
    position: relative;
   border-top: 1px solid #c3c3c3;
   border-bottom: 1px solid #c3c3c3;
}

/* @media screen and (max-width:768px){
header .navbar-brand img {
    width:80px;
    height: 80px;
}
} */

header .navbar-nav li a{
font-size: 18px;
text-transform: capitalize;
color: #000;
font-weight: 400;
    
}




header  .btn{
    width: 178px;
    height: 54px;
    color: #fff;
    border-radius: 8px;
    background-color: var(--secondary-color);
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;

}

header  .btn:hover{
     background-color: var(--secondary-color);
     color: #fff;
}


header  .btn span {
    font-size: 13px;
    letter-spacing: 1px;
    -webkit-transition: top 0.5s;
    transition: top 0.5s;
    font-weight: 600;
    text-transform: uppercase;
}
@media only screen and (min-width: 991px)  {
    header  .btn span {
        font-size: 16px;
    }
}
header  .btn-text-one {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

header  .btn-text-two {
    position: absolute;
    width: 100%;
    top: 150%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

header  .btn:hover .btn-text-one {
    top: -100%;
}

header .btn:hover .btn-text-two {
    top: 50%;
}

.mega-current-menu-item a{
	color:var(--secondary-color) !important;
}
.mega-current-menu-item:hover a{
	color:#fff !important;
}
header .navbar button {
    outline: none;
    box-shadow: none !important;
}
#mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner, #mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::before, #mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::after {
    width: 60px !important;
    height: 6px !important;
    background-color:rgba(9, 38, 59, 1) !important;
}
#mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
    top: 12px !important;}
    #mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
    top: 24px  !important;
}
/* end of hamburger */
 .banner-1{
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.5)),url('../../images/banner1.webp')no-repeat center/cover;
    height:100vh;
    /* width: 100vw; */
}

.main-menu{
        display: flex;
        align-items: center;
        gap:25px;
    }


.pop-call{
    background: #fee1c3;
    height: 60px;
    width: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
@media screen and (min-width:991px){
    
    .contact-menu{
        display: none !important;
    }
    .info-listing  li{
        position: relative;
    }
     .info-listing li:after{
        content: '';
        position: absolute;
        width: 1px;
        height: 14px;
        background: #fff;
        right: -24px;
        top: 5px;
    
    }
    .info-listing li:last-child:after{
        content: none !important;
    }
   
}

.uppernav{

background-color: var(--primary-color);
}

.social-list ul {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
    gap: 5px;
    padding-left: 0;
}


.uppernav .social-list ul li{
    padding: 4px 6px;
}

.left-col ul{
    display: flex;
    justify-content: space-around;
}
.left-col ul li a{

font-size: 14px;
line-height: 22px;
color: #fff;
font-weight: 500;
}
.navbar>.container-fluid{
	    justify-content: space-between !important;
}
.logo-title{
	color: rgba(34, 69, 93, 1);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

/*---------------banner--------------------*/
.banner-area,.banner-slider{
	overflow-x:hidden;
}
.banner-item{
	position:relative;
}

.first-slide::before {
	    clip-path: polygon(66% 0, 100% 0%, 100% 100%, 0% 200%) !important;
}

.first-slide::after {
	       clip-path: polygon(113% 0, 76% 106%, 115% 118%) !important;
}

.banner-item::before {
    position: absolute;
    z-index: 2;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    background: #09263b91;
    clip-path: polygon(0 0, 30% 0, 75% 100%, 0% 100%);
}

.banner-item::after {
    position: absolute;
    z-index: 2;
    content: "";
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    background: #0319318f;
    clip-path: polygon(30% 100%, 0 37%, 0 100%);
}
.banner-content{
	position:absolute;
	top:50%;
	left:5%;
	transform:translateY(-50%);
	z-index:99;
}

.banner-title{
	color:#fff;
	font-size: 35px;
    line-height: 1.1em;
    letter-spacing: -0.02em;
}


.banner-item img{
	width:100%;
	height:70vh;
	object-fit:cover;
	object-position:left;
}
.slick-dotted.slick-slider {
    margin-bottom: 0px;
}
.banner-slider .slick-arrow{
	display:none !important;
}

.banner-slider .slick-dots li button:before {
    opacity: 0 !important; 
   
}
.banner-slider .slick-dots li.slick-active button{
	background:var(--secondary-color) !important;
}
.banner-slider .slick-dots li button{
	background:#fff;
	border-radius:50%;
	width: 15px;
    height: 15px;
}
.banner-slider .slick-dots {
	    bottom: 20px;
	    z-index: 9999;
}
.sub-title{
color: var(--secondary-color);
font-weight: 400;
font-size: 17px;
line-height: 100%;
letter-spacing: 0%;
text-transform: uppercase;
}

.reg-btn button {
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 500;
    display: inline-block;
    text-align: center;
   
    padding: 0.4em 1.4em;
    border: none;
    border-radius: 9px;
    background-color: var(--secondary-color);
    position: relative;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1); */
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
  }
  
  .reg-btn button:before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color:#000;
    z-index: -1;
     border-radius: 10px;
  }
  
  .reg-btn button:hover, .reg-btn button:focus {
    color: white !important;
  }
  
  .reg-btn button:hover:before, .reg-btn button:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
    
  }
  
  .reg-btn button:active {
    transform: scale(0.9);
  }




  .radius-btn button:hover:before, .radius-btn button:focus:before {
border-radius: 25px;
  }

  .reg-btn2 button{
    background: rgba(248, 247, 245, 1) !important;
    color: var(--secondary-color) !important;
  }
  .reg-btn2 button:before {
background: #0b88c8 !important;

  }
  
 .banner-para p{

    font-size: 18px;
line-height: 30px;
color: #fff;
font-weight: 400;
  }
  
/**/
/* From Uiverse.io by alexmaracinaru */ 
.banner-item .cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.banner-item .cta:before {
	content: "";
    position: absolute;
    top: -11px;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #ff8800 !important;
    width: 70px;
    height: 70px;
    transition: all 0.3s ease;

}

.banner-item .cta span {
	text-transform:uppercase;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}

.banner-item .cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #ff8800;
  stroke-width: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.banner-item .cta:hover:before {
  width: 100%;
  background: #b1dae7;
}

.banner-item .cta:hover svg {
  transform: translateX(0);
}
.banner-item .cta:hover svg{
	stroke: #fff;
}
.banner-item .cta:active {
  transform: scale(0.95);
}

/**/

  @media only screen and (min-width:991px) {
	  .banner-title {
    		color: #fff;
		   font-size: 68px; 
	  }
	  .first-slide .banner-content{
	right:5% !important;
	left:unset;
}
	  .first-slide .banner-title{
		          font-size: 60px;
	  }
	  .first-slide h3.banner-title{
		  font-size: 33px;
	  }
	  .banner-item img{
	width:100%;
	}
  .banner-para p{
        font-size: 18px;
    }
    .reg-btn button {
        padding: 0.7em 2em;
        border-radius: 8px;
    }
	  .banner-item img{
	height:100vh;
	object-position:top;
}
  }
/*---------------banner--------------------*/



/*marquee*/

.marquee {
    background: rgba(9, 38, 59, 1);
    height: 55px;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.new-container {
    display: flex;
    width: max-content;
    gap: 30px; 
    animation: marquee 20s linear infinite;
}

.cat {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 400;
    font-size: 17px;
    /* line-height: 30px; */
    letter-spacing: 0%;
    text-transform: uppercase;
    white-space: nowrap;
}

.cat span img {

    margin-left: 30px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* Moves only half so no jump */
}

  /*marquee*/

/*----usp-section---------*/
.featured-section{
    background: url('../../images/featured-bg.webp') no-repeat center/cover;
}


.inner-img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    margin-left: 5%;
    position: relative;
}

.inner-img::before {
    content: "";
    position: absolute;
    top: -3.5%;
    left: 1%;
    height: 100%;
    width: 100%;
    border: 5px solid var(--secondary-color);
    border-radius: 16px;
    z-index: 2;
}

.inner-img img {
    object-fit: cover;
    margin-left: -5%;
    position: relative;
    z-index: 1;
}



.inner-img2::before {
    content: "";
    position: absolute;
    top: 4%;
    /*left: -7%;*/
    height: 100%;
    width: 100%;
    border: 5px solid var(--primary-color);
    border-radius: 16px;
    z-index: 2;
}

.featured-section .card:hover,.services-section .card:hover,.event-row .card:hover{
    background: linear-gradient(163.47deg, #FFFFFF 67.37%, #0195FF 460.84%) !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 2px solid var(--primary-color);
    transition: all 0.5s ease;
    cursor: pointer;
}
.featured-section .card:hover .reg-btn2 button,.services-section .card:hover .reg-btn2 button,.event-row .card:hover .reg-btn2 button{
background: var(--secondary-color) !important;
color: #fff !important;
}
.sec-title{
    font-size: 20px;
    line-height: 26px;
    color: rgba(34, 69, 93, 1);
    font-weight:600;;
    position: relative;
    text-transform: uppercase;
    
}



@media only screen and (min-width: 991px) {
    .sec-title{
        font-size: 30px;
        line-height: 45px;
    }
	.featured-section .inner-img,.about-sec .inner-img{
		height:480px;
	}
}

@media only screen and (min-width: 991px) {
	.lg-font{
		font-size: 40px !important;
      
        font-weight: 700 !important;
	}
}

.course-block .course-meta{
    border-top: 1px solid #f4f0f0;
    margin: 25px 0 0;
    padding: 25px 0 0;
}

.course-meta ul{
    justify-content: space-between;
}
.course-meta ul li{
    font-size: 13px;
line-height: 29px;
color: #58595e;
font-weight: 500;
}


/*@media screen and (min-width:768px) and (max-width:991px)  {
    .top-subjects{
        margin-top: -20%;
    }
}
@media screen and (max-width:767px){
    .top-subjects{
        margin-top: -45%;
    }
}*/
.subject-block .card,.event-row .card{
    overflow: hidden;
border-radius: 16px;
background-color: #ffffff;
border: 2px solid rgba(192, 228, 254, 1);
transition: all 0.5s ease;
}
.featured-section .card img{
    width: 38px;
    height: 38px;
}


.service-icon{
background: #fff;
position: absolute;
bottom: -13%;
left: 5%;
width: 72px;
height: 72px;
border-radius: 50%;
padding: 15px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
display: flex;
justify-content: center;
align-items: center;
}
.service-icon img{
    width: 100%;
    height: 100%;
}
.subject-block .course-name{
    color: rgba(34, 69, 93, 1);
    font-weight: 600;
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0%;
/*     margin-top: 20px; */
    
}

.subject-block p{
    font-size: 12px;
line-height: 23px;
color:rgba(107, 106, 106, 1);
font-weight: 400;
margin-top: 10px;
margin-bottom: 0;
}


@media screen and (min-width:991px){
    .subject-block .course-name{
        font-size: 22px;
        line-height: 30px;
    }
    .subject-block p{
        font-size: 15px;
    }
}

/*----featured section---------*/


/*----about us-----*/
.section-info{
    display: inline-block;
    padding: 3px 18px;
    border: 1px solid var(--primary-color);
    border-radius: 35px;
    color: var(--primary-color);
    text-transform: uppercase;
}
/*----about us-----*/

/*----services section-----*/
.services-section{
    background: rgba(251, 251, 250, 1);
}
.services-section .card .img-container{
    overflow: hidden;
}
.services-section .card img{
    transition: all 0.5s ease;
}
.services-section .card:hover img{
     transform: scale(1.1);
     transition: all 0.5s ease;
}

/*----services section-----*/

/*---why choose us----*/
.why-choose-us{
 background: rgba(251, 251, 250, 1) url('../../images/wcu-bg.webp') no-repeat center/cover;
}
.wcu .card-body{
    gap: 20px;
}
.why-choose-us .inner-content{
background: #fff;
border-radius: 32px;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.why-choose-us img{
    border-radius: 16px;
}

 .block-section{
    background: rgba(1, 149, 255, 1);
    display: block;
    position: relative;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 10px;
    margin-left: -3%;
}

.section-about .block-section{
    position: absolute;
    right: 1%;
    border-radius: 0;
}
.section-about  .block-container{
    border: 1px dashed #fff;
    padding: 10px;
    border-radius: 0;
}
.section-about .star-div{
    width: 100px;
    height: 100px;
    background: none;
}
.block-container{
    display: flex;
    align-items: center;
    gap: 10px;
}
.star-div{
    background: #fff;
    border-radius: 9px;
    width: 158px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.star-div img{
    margin: 0;
    padding:0px;
    border-radius: 7px;
}
.why-choose-us .inner-img2::before {
    border: 5px solid var(--secondary-color) !important;
}
/*---why choose us----*/

/* usp section */
.usp-section{
    background: url('../../images/about-banner.webp') no-repeat right/contain ;
  
}
.usp-card .card{
    border-radius: 10px !important;
}
@media screen and (max-width:768px){
    .usp-section{
        background: url('../../images/about-banner.webp') no-repeat;
        background-size: cover;
      
    }

}
@media screen and (min-width:991px){
    .section-about{
   background: url('../../images/about-us-images-bg-shape.png') no-repeat left/contain ;
}
    .star-div{
    width: 158px;
    height: 100px;
    }
    .star-div img{
   
    padding: 7px;
}
}
/* usp section */








/*---------why learn---------*/
.why-learn-section{
    background: url('../../images/why-learn-bg.webp') no-repeat;
}
.why-learn-section .sec-title:after{
    content: none;
}
.para{
    font-size: 18px;
    line-height: 31px;
    color: #333333;
    font-weight: 600;
    
}

.features .card-block{
    background: #fff;
    align-items: center;
    box-shadow: 0 0 30px #eee;

}
.features .card-block h4{
    font-weight: bold;
}
.features .card-block p{
    margin-bottom: 0;
}
/*---------why learn---------*/




/*---------------counter----------*/
.counter-section .card{
    background: transparent;
}
.counter-section .card-title{
    color: #ff5421;
    font-size: 42px;
    font-weight: 900;
    line-height: 51px;
    font-family: "Nunito", Sans-serif;

}
.counter-section .card-text{
    color: #505050;
    font-size: 22px;
    font-weight: 700;
}
.counter-section .row{ 
    background: url('../../images/dotted-shape.webp') no-repeat; 
}

@media only screen and (min-width: 991px){
    .counter-section .row{ 
        background: url('../../images/dotted-img.webp') no-repeat center !important; 
}
}


/*---------------counter----------*/

/*---------------faq form---------*/
.sticky-section {
  position: sticky;
  top: 100px;
  align-self: flex-start;
  z-index: 10;
}
.faq-schema-wrapper {
  max-height: 100vh;
  overflow-y: auto;
/*   padding-right: 15px;  */
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.faq-schema-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.bg-aliceblue {
    background: aliceblue;
}


.form-container .form-control::placeholder{
    color: #fff;
}
.mb-30{
    margin-bottom: 30px;
}
.form-container input[type="submit"]{
    background-color: #ab2c06;
    margin: 0px 0px 0px 0px;
    padding: 13px 35px 13px 35px;
    outline: none;
    border: none;
    padding: 12px 40px;
    border-radius: 3px;
    display: inline-block;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}
.faq-form .section-title,.faq-block .title{
    font-size: 30px;
    line-height: 46px;
    font-weight: 800;
}

@media only screen and (min-width: 991px)  {
    .faq-form .section-title,.faq-block .title{
        font-size: 36px;
    }
}
.faq-schema .accordion-body{
       background: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    color: #515151;
    padding: 0 40px;
    padding-bottom: 35px;
    width: 100%;

}
.faq-schema .accordion-header{
	position: relative;
    overflow: hidden;
	border-radius: 20px;
    -webkit-border-radius: 20px;
}
.faq-schema .accordion-button::before
{
	position: absolute;
    width: 52px;
    height: 101px;
	-webkit-border-radius: 28px;
	background-color:#d0ecfe;
    content: "";
    top: -22px;
    right: 4px;
    z-index: 2;
	transform: rotate(-134deg);
}
.accordion-button{
	    background-color: transparent;
}
.faq-schema .accordion-header button{
     position: relative;
    font-weight: 500;
    line-height: 31px;
    font-size: 20px;
    cursor: pointer;
    padding: 29px 40px;
    padding-right: 70px;
}
.accordion-button:not(.collapsed) {
    background: #fff;
    color: #000;
    font-weight: 800;
	box-shadow:none;
}
.faq-schema .accordion-item{
	margin-bottom: 20px;
    border: 1px solid #d0ecfe;
	border-radius: 20px;
    -webkit-border-radius: 20px;
}
.accordion-button:not(.collapsed)::after {
    color: #fff;
}
.accordion-button::after{
	content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M12 4.5v15m7.5-7.5h-15'/%3E%3C/svg%3E");
	background-image:none;
    position: absolute;
    right: 27px;
    top: 23px;
    width: 42px;
    height: 41px;
    display: flex;
    background-color: #fff;
    -webkit-border-radius: 50%;
    z-index: 4 !important;
    box-shadow: 0px 4px 7px rgba(178, 190, 205, 0.29);
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}
.accordion-button:not(.collapsed)::after{
	    background-image:none;
		content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M5 12h14'/%3E%3C/svg%3E");
}
.form-section{
	background:#edf3f5;
}

.form-section .form-row{
	border-radius: 15px;
    background: #fff;
    overflow: hidden;
}
/*---------------faq form---------*/

/*-----process step------*/
.process-step{
    background: linear-gradient(180deg, #F3F5F9 0%, #FFFFFF 100%);
}
.process-tabs .nav-tabs{
    padding: 10px 0;
    border: none;
    position: relative;
    overflow: hidden;
}
.process-tabs .nav-tabs .nav-link{
    background: none;
    border: none;
    border-radius: 50%;
    z-index: 2;
    padding: 0;
}
.process-tabs .nav-tabs .nav-link span{
background: #fff;
box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
border-radius: 50%;
font-weight: 600;
font-size: 24px;
text-align: center;
text-transform: uppercase;
border: none;
height: 60px;
width: 60px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.5s ease;
}
.process-tabs .nav-tabs .nav-link:hover{
    background: none;
    border: none;
    transition: all 0.5s ease;
}
    .process-tabs .nav-tabs .nav-link.active span{
        background: var(--primary-color);
        color: #fff;
        border-radius: 50%;
        box-shadow: none;
        transition: all 0.5s ease;
    }
    .process-tabs .nav-tabs .nav-link.active{
        background: #fff;
        border: 1px dashed var(--primary-color);
        border-radius: 50%;
        height: 90px;
        width: 94px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease;
    }

    .process-tabs .nav-tabs:after{
        content: url('../../images/dashed-line.svg');
        top: 37%;
        right: 0;
        left: 0;
        margin: 0 auto;
        position: absolute;
        z-index: 1;
    }
    .process-tabs .img-div{
        position: relative;
    }
   .process-count{
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 700;
    font-size: 32px;
    line-height: 26px;
    color: rgba(230, 229, 229, 1);
   }   
   .tab-content .card:hover{
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    cursor: pointer;

}

.process-img{
    position: relative;
}
.sticky-img{
	display:none;
}
@media only screen and (min-width: 991px)  {
.sticky-img{
	display:block;
    background: #0195ff;
    color: #ddf1ff;
    position: absolute;
    top: 38%;
    right: -12%;
    transform: rotate(90deg);
    font-size: 34px;
    font-weight: 700;
    padding: 10px 22px;
    text-transform: uppercase;
}
}
.process-img img{
    border-radius: 10px;
   
}

@media screen and (min-width:991px){
.process-img img{
    width: 400px;
}
}
/*-----process step------*/
/*----------testimonial-------------*/

.testimonials{
    background: url('../../images/testi-banner.webp') no-repeat center/cover;
}


.services-ticker-block {
    position: relative;
    display:flex; 
    align-items:center;
    overflow-x: hidden;
  }
  
  .stb_line_single {
    position: relative;
    white-space: nowrap;
    padding: 0;
    will-change: transform;
  }
  .stb-item {
    width: 420px;
    box-sizing: border-box;
    padding: 0;
    display: inline-block;
    margin-right: 1rem;
  
  }
  .stb-item .client-name{
color: rgba(0, 117, 201, 1);
font-weight: 400;
font-size: 16px;
line-height: 22px;
letter-spacing: 0%;

 }
  .stb_line_single .card {
    height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  }
  
  .stb_line_single .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 5px;
  }
  .client-review {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  .client-review p{
    margin: 0;
    font-style: italic;
  }
  .client-meta p{
    margin: 0;
  }
/*----------testimonial-------------*/

/*----------------profile-----------*/
.ics-profile .sec-title:after{
    content: none;
}
.ics-profile .para{
    font-weight: 600;
}
/*----------------profile-----------*/


/*--------------events-----------*/


.blog-slider .slick-dots{
    display: none !important;
}
.event-row .card{
  border-radius: 15px;
filter: drop-shadow(0px 6px 6.5px rgba(12,13,12,0.05));
background-color: #ffffff;
transition: all 0.5s ease;
height: 500px;
}
.event-row .card .img-div{
    height:190px;
    overflow: hidden;
    transition: all 0.5s ease;
}
.event-row .card .img-div img{
    width: 100%;
}
.event-row .card:hover img{
transform: scale(1.2);
transition: all 0.5s ease;
}
.event-row .card:hover .reg-btn2 button{
    background: var(--secondary-color) !important;
    color: #fff !important;
}
.event-row .event-title a{
    font-size: 18px;
line-height: 29px;
color:rgba(34, 69, 93, 1);
font-weight: 600;
}
.event-desc{
    border-top: 1px solid #efefef;
    margin-top: 20px;
    padding-top: 20px;
}
.event-btn{
  font-size: 14px;
line-height: 29px;
color: #58595e;
font-weight: 400;
}
.event-row .img-div img{
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: all 0.5s ease;

}
.event-row .items{
    margin: 0 10px;
}

.slick-arrow{
    background: var(--secondary-color);
}
.slick-arrow.slick-disabled{
    background: rgba(244, 244, 244, 1) !important;
}
.blog-cat{
    display: block;
    width: 130px;
height: 27px;
border-radius: 13px;
background-color: var(--secondary-color);
    font-size: 12px;
text-transform: uppercase;
color: #ffffff;
font-weight: 600;
text-align: center;
padding:5px 10px;
margin-top: -10px;
position: relative;
margin-top: -33px;
}


.blog-row .slick-prev,.blog-row .slick-next{
    top: 115%;
}
.blog-row .slick-prev{
    left: 45%;
}
.blog-row .slick-next{
    right: 45%;
}
.related-post img{
    object-fit:cover;
}
.single-post{
    background: aliceblue;
}
.single-post h2,.single-post h3,.single-post h4{
	        font-size: x-large;
	margin-bottom: 15px;
}
.single-post b,.single-post strong{
	    font-weight: 600;
}
.single-post table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  overflow-x: auto;
  display: block; /* allows horizontal scroll if too wide */
  white-space: nowrap;
}

.single-post table tr:first-child {
  background: #0d6efd;
  color: #fff;
  font-weight: bold;
}

.single-post table td {
  padding: 10px 12px;
  border: 1px solid #ddd;
  text-align: left;
}

.single-post table tr:nth-child(even) {
  background: #f9f9f9;
}


.pagination{
        justify-content: center;
    gap: 15px;

}
.page-numbers{
    background: #ffffff;
    color: #ff8800;
    padding: 5px 10px;
    border: 2px solid #ff8800;
}
.page-numbers.current{
        background: #ff8800;
        color: #fff;
}
.blog-list p,.blog-list p span,.blog-list ul li,.blog-list ul li span{
    font-size: 16px;
    line-height: 29px;
    color: #000;
}
.blog-list b{

    font-weight: 600;
}


.slick-arrow{
    border-radius: 50%;
    width: 48px;
    height: 48px;
    z-index: 999;
}
.slick-arrow:hover{
    background: var(--secondary-color);
}
.slick-prev:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m4.431 12.822l13 9A1 1 0 0 0 19 21V3a1 1 0 0 0-1.569-.823l-13 9a1.003 1.003 0 0 0 0 1.645'/%3E%3C/svg%3E");
    opacity: 1;
    font-size: 0;
}
  .slick-next:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2em' height='2em' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    opacity: 1;
    font-size: 0;
}
  
  .slick-prev:hover:before{
    /* content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1.5em' height='1.5em' viewBox='0 0 256 256'%3E%3Cpath fill='black' d='M224 128a8 8 0 0 1-8 8H59.31l58.35 58.34a8 8 0 0 1-11.32 11.32l-72-72a8 8 0 0 1 0-11.32l72-72a8 8 0 0 1 11.32 11.32L59.31 120H216a8 8 0 0 1 8 8'/%3E%3C/svg%3E"); */
    opacity: 1;
}
  
  
    .slick-next:hover:before{
      /* content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1.5em' height='1.5em' viewBox='0 0 256 256'%3E%3Cpath fill='black' d='m221.66 133.66l-72 72a8 8 0 0 1-11.32-11.32L196.69 136H40a8 8 0 0 1 0-16h156.69l-58.35-58.34a8 8 0 0 1 11.32-11.32l72 72a8 8 0 0 1 0 11.32'/%3E%3C/svg%3E"); */
      opacity: 1;
    }
      .slick-prev.slick-disabled:before{
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23f80' d='m4.431 12.822l13 9A1 1 0 0 0 19 21V3a1 1 0 0 0-1.569-.823l-13 9a1.003 1.003 0 0 0 0 1.645'/%3E%3C/svg%3E");
        opacity: 0.25;
    }

    .slick-next.slick-disabled:before {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23f80' d='M5.536 21.886a1 1 0 0 0 1.033-.064l13-9a1 1 0 0 0 0-1.644l-13-9A1 1 0 0 0 5 3v18a1 1 0 0 0 .536.886'/%3E%3C/svg%3E");
    }
.border-style{
        border: 1px solid #EDF3F5;
    padding: 35px 30px;
    border-radius: 20px;
        box-shadow: rgb(100 100 111 / 10%) 0px 7px 29px 0px;
}
.cat-item{
        position: relative;
    margin-bottom: 13px;
    padding-bottom: 13px;
    border-bottom: 1px solid #E7E9EE;
    padding-top: 0;
}
.cat-item a{
        color: #57586b;
        font-size: 16px;
            display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
}
.searchform{
    position:relative;
}
.searchform input[type="text"],.searchform label{
        margin-bottom: 0;
    width: 100%;
    background: #F3F4F5;
    height: 60px;
    border: 0;
    color: #000;
    padding:0 0 0 20px;
}
.searchform span{
    position:absolute;
}
.searchform span:after{
   
        color: #fff;
    font-family: FontAwesome;
    content: "\f002";
    font-size: 23px;
    position: absolute;
    right: 19px;
    top: 12px;
    pointer-events: none;

}
#searchsubmit{
    position: absolute;
    top: 7px;
    font-size: 18px;
    color: #fff;
    height: 46px;
    width: 46px;
    right: 8px;
    background: transparent;
    margin-top: 0;
    background-color: #00cc99;
    border-radius: 3px;
    border:none;
}


@media only screen and (min-width: 991px){
    .event-row .event-title a{
        font-size: 18px;
        line-height: 20px;
    }
}
@media only screen and (max-width: 768px){
    .event-row .card {
    filter: none !important;
    border: 1px solid rgb(224, 224, 224);
 
}
}

@media only screen and (max-width: 767px) {
    .blog-row .slick-prev{
        left: 35%;
    }
    .blog-row .slick-next{
        right: 35%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 990px){
    .blog-row .slick-prev{
        left: 38%;
    }
    .blog-row .slick-next{
        right: 38%;
    }
}
.tag-list{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    margin: -10px;
}
.blog-content-meta{
    background:#edf3f5;
}
.tag-list a,.blog-content-meta .tags a{
        display: block;
        background:  #000;
    color: #787B84;
    border: 1px solid #787B84;
    min-height: 36px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 14px !important;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 500;
    padding: 2px 17px 5px;
    margin: 7px;
    position: relative;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    
}

.blog-content-meta .list ul{
    display:flex;
 
}

.tag-list a:hover,.blog-content-meta .tags a:hover{
    background:#ff712b;
   
    color:#fff;
}
.blog-list ul {
    columns: 1 !important;
}
.service-quick li:hover a{
    color:#ff712b;
}
.service-quick li:last-child{
    border-bottom:none;
}
.blog-meta ul{
    display:flex;
    padding:0;
    gap:25px;
}
.blog-meta ul li{
        color: gray;
    font-weight: 500;
}

.comment input[type="submit"]{
    font-size: 16px;
    font-weight: 600;
    text-transform: None;
    color: #fff;
    border-style: none;
    padding: 21px 50px 23px;
    align-self: center;
    position: relative;
    display: inline-block;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    line-height: 1.1;
    letter-spacing: -.3px;
    transition: all 0.2s cubic-bezier(0.68, 0.01, 0.58, 0.75);
    background-color: #ff712b;
}

.comment input[type="text"],.comment input[type="email"],.comment input[type="url"],.comment textarea{
    width:100%;
      background: #F3F4F5;
    color: #000;
    border: 0;
    height: 60px;
    margin-bottom: 20px;
    border: 2px solid transparent;
    padding: 20px;
}
.comments-area{
    border-top:1px solid #d5d3d3;
    padding-top:5%;
}

/*--------------events-----------*/

/*footer cta*/
.footer-cta{
    background: url('../../images/cta-bg.webp') no-repeat center/cover;
   padding-bottom: 40%;
    position: relative;

}
@media only screen and (min-width: 991px){
    .footer-cta{
        
         padding-bottom: 10%;
    }
}
.footer-logo-title{
font-weight: 600;
font-size: 32px;
line-height: 36px;
letter-spacing: 0%;
text-align: center;
text-transform: uppercase;
color: rgba(34, 69, 93, 1);
}
.footer-logo-subtitle{
font-weight: 400;
font-size: 24px;
line-height: 36px;
letter-spacing: 0%;
text-align: center;
color: rgba(151, 151, 151, 1);

}
.overlay-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* or your desired size */
    height: 100%; /* optional */
    object-fit: cover; /* optional */
    z-index: 1;
    pointer-events: none; /* allows clicks to go through */
  }
.email-info::before{
    content: '';
    height: 1px;
    width: 50px;
    background: #ffffff45;
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translate(-50%, 0);
    
}
/*footer cta*/

/*footer*/



.footer-title{
font-size: 19px;
line-height: 24px;
color:var(--secondary-color);
font-weight: 500;

}


.firstrow{
    border-top: 1px solid rgba(237, 237, 237, 1);
}

.firstrow>div{
    border-right: 1px solid rgba(237, 237, 237, 1);
}
.firstrow>div:last-child{
    border-right: none;
}
footer .icon{
     width: 39px;
    height: 39px;
    border-radius: 19px;
    filter: drop-shadow(0 0 14.5px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0 0 3.5px rgba(12, 13, 12, 0.05));
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    display: flex;
    justify-content: center;
    align-items: center;
}
   

footer p,.copyright a{
    font-size: 14px;
line-height: 20px;
color: #797979;
font-weight: 500;

}
.course-list ul {
    padding: 0;
}
.course-list ul li{
    display: flex;
    align-items: flex-start;
}
.course-list ul li:before{
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cpath fill='%230c88c8' d='m17.578 4.432l-2-1.05C13.822 2.461 12.944 2 12 2s-1.822.46-3.578 1.382l-2 1.05c-1.773.93-2.816 1.478-3.462 2.21l9.04 4.52l9.04-4.52c-.646-.732-1.688-1.28-3.462-2.21m4.17 3.532l-8.998 4.5v9.44c.718-.179 1.535-.607 2.828-1.286l2-1.05c2.151-1.129 3.227-1.693 3.825-2.708c.597-1.014.597-2.277.597-4.8v-.117c0-1.893 0-3.076-.252-3.978M11.25 21.904v-9.44l-8.998-4.5C2 8.866 2 10.05 2 11.941v.117c0 2.525 0 3.788.597 4.802c.598 1.015 1.674 1.58 3.825 2.709l2 1.049c1.293.679 2.11 1.107 2.828 1.286'/%3E%3C/svg%3E");
    margin-right: 10px;
    margin-top: 10px;
}
.contact-links ul li::before{
    content: none !important;
}
footer  .contact-info a{
font-size: 20px;
line-height: 24px;
color: #0f1721;
font-weight: 600;

}
.course-list ul li a{
  font-size: 15px;
line-height: 32px;
color: #56575d;
font-weight: 500;
 
}
footer .course-list ul li a{
    display: flex;
}
footer .recent-blogs .featured-img{
object-fit: cover;
}
footer .recent-blogs h6{
    margin-bottom: 0;
    color: #5e5e5e;
}
.copyright{
    border-top: 1px solid #d9d9d9;
}

.copyright ul li a{
    color: rgba(60, 60, 59, 1);
}


/*footer*/


/*innerpages*/

.innerpage-banner::before {
    position: absolute;
    z-index: -1;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.97;
    background:linear-gradient(323deg, rgb(0 0 0 / 26%) 30%, rgb(255 255 255 / 67%) 57.94%, rgb(255 255 255 / 77%) 100%);
    /*background: linear-gradient(233deg, rgb(0 0 0 / 19%) 30%, rgb(255 255 255 / 87%) 57.94%, rgb(255 255 255 / 9%) 100%);*/
}
.breadcrumb{
    display: inline-block;
    background: #fff;
}
.breadcrumb span{
    font-weight: 700;
    font-size: 14px;
}


.breadcrumb a{
    color: #000;
    
}

.breadcrumb__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 1.2;
}
/* .para-div ul{
    padding-left: 0;
} */
@media only screen and (min-width: 991px)  {
    .breadcrumb__title {
        font-size: 60px;
    }
    .para-div ul{

    padding-left: 2rem;
    columns: 2;
}
}
/*about us*/
.img-radius{
    border-radius: 15px;
}



.wcu-section{
background: url('../../images/about_img4.webp')no-repeat bottom right;
background-color: #EDF3F5;
}
.wcu .row .item .card{
    position: relative;
}
.wcu .row .item .card:before{

    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 60px;
    /* background-color: #FE6C3F; */
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "";
}
.wcu .row .item:first-child .card:before{
    background-color: #FFBD0F;
}
.wcu .row .item:nth-child(2) .card:before{
    background-color: #897CB5;
}
.wcu .row .item:nth-child(3) .card:before{
    background-color: #FE6C3F;
}

.wcu .row .item:nth-child(4) .card:before{
    background-color: #00CC99;
}
.wcu .row .item:last-child .card:before{
    background-color: #0091FF;
}


.subtitle{
    font-size: 13px;
    display: inline-block;
    color:#afafaf;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-top: 20px;
    font-weight: 700;
    transition: all .3s ease;
}
.subtitle:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 43px;
    height: 5px;
    border-radius: 5px;
    background: #ff712b;
    content: "";
}
.layer-image-wrapper{
    position: absolute;
    bottom: -110px;
    border-radius: 50%;
    -webkit-transform: rotate(0deg);
    display: block;
    width: inherit;
    max-width: 100%;
    height: inherit;
    max-height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
.layer-image{
    transition: all 1s ease;
    display: inline-block;
    position: relative;
    border-radius: 50%;
    border-style: solid;
    border-width: 15px;
    border-color: #fff;
    overflow: hidden;
}


.block-container h2{
    color: #fff;
    font-size: 30px;
    font-weight: 600;
}
.block-container h6{
    color: #fff;
    font-weight: 500;
    margin: 0;
    padding: 0;
}
.circle-div{
    padding: 18px;
    background-color: #0c88c8;
    border-radius: 50%;
    position: absolute;
    left: 0;
    bottom:0;
}
.inner-circle{
    text-align: center;
    padding: 30px;
    background-color: var(--theme-color1);
    border-radius: 50%;
    border-style: dashed;
    border-width: 2px;
    border-color: #fff;
}
.inner-circle img{
    width: 65px;
}

.para-div ul li{
    margin-bottom: 15px;
/*     display: flex; */
	position:relative;
}
.para-div ul li:before{
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1.3em' height='1.3em' viewBox='0 0 48 48'%3E%3Cdefs%3E%3Cmask id='ipSCheckOne0'%3E%3Cg fill='none' stroke-linejoin='round' stroke-width='4'%3E%3Cpath fill='%23fff' stroke='%23fff' d='M24 44a19.937 19.937 0 0 0 14.142-5.858A19.937 19.937 0 0 0 44 24a19.938 19.938 0 0 0-5.858-14.142A19.937 19.937 0 0 0 24 4A19.938 19.938 0 0 0 9.858 9.858A19.938 19.938 0 0 0 4 24a19.937 19.937 0 0 0 5.858 14.142A19.938 19.938 0 0 0 24 44Z'/%3E%3Cpath stroke='%23000' stroke-linecap='round' d='m16 24l6 6l12-12'/%3E%3C/g%3E%3C/mask%3E%3C/defs%3E%3Cpath fill='%23ff5421' d='M0 0h48v48H0z' mask='url(%23ipSCheckOne0)'/%3E%3C/svg%3E");
/* margin-right: 12px; */
	position: absolute;
    left: -28px;
	    top: 5px;
}
 .mission-section{
     background: url('../../images/maps-blue-dots.webp') #09263bc4  no-repeat center/cover; 
    background-blend-mode: multiply;
    color: #fff;
    overflow: hidden;
   
}
.mission-section  .mission-img img{
    clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
}
    /*
.mission-overlay{
  
    background-color: #faf8f7;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: "";
    display: block;
    z-index: 0;
} */
/*about us*/
/*contact*/
.contact-info h5{
    font-size: 16px;
}
.contact-us h6{
	font-size:12px;
	font-weight:700;
	line-height:1.5em;
}

.contact-info .item{
	    padding: 21px 21px 21px 21px;
	color:#fff;
}


.contact-info .item{
	background:#363636;
}

.contact-info .icon-img{
	height: 65px;
    width: 65px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-block{
	border-top:4px solid #ff5421;
	    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
}

.mb-20{
	margin-bottom:20px;
}
.contact-block form input[type="submit"]{
	font-size:12px;
	font-weight:600;
	line-height:1em;
	letter-spacing:2px;
	padding:20px 0;
	text-transform:uppercase;
}
.form-container .form-control{
    width: 100%;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #0451a1;
    /* background-color: #7c99c938; */
    border-radius: 3px;
    padding: 10px 18px;
}
.form-container .form-control::placeholder{
    color: #000;
}
.mb-30{
    margin-bottom: 30px;
}
.form-container input[type="submit"]{
	width:100%;
    background-color:#0451A1;
    margin: 0px 0px 0px 0px;
    padding: 13px 35px 13px 35px;
    outline: none;
    border: none;
    padding: 12px 40px;
    border-radius: 3px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}
.faq-form .section-title,.faq-block .title,.contact-us .title{
    font-size: 22px;
    line-height: 25px;
    font-weight: 800;
}
.faq-block{
	background:#fff;
	border-top:5px solid #ff5421;
}
@media only screen and (min-width: 991px)  {
    .faq-form .section-title,.faq-block .title,.contact-us .title{
        font-size: 36px;
		 line-height: 46px;
    }
	
}

/*contact us*/



/*innerpages*/

.uacf7-step table{
	width:100%;
}
.uacf7-prev,.uacf7-next{
	color: #ffffff;
    padding: 11px 40px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: #0c88c8;
}
.assessment-form form{
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.uacf7-multisetp-form{
	background: #fafcff;
    padding: 50px 20px;
}



.wpcf7-form label {
	font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
}
@media only screen and (min-width: 991px)  {
	.uacf7-multisetp-form{
		padding: 50px 50px;
	}
	.wpcf7-form label {
		font-size: 15px;
	}
}
.form-control {
	    border: 1px solid #8f8f8f;
    border-radius: 6px;
    height: 50px;
}
/* @media only screen and (min-width: 991px)  {
	.form-control {
		height: 45px;
	}
} */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #000;
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

.uacf7-multisetp-form .wpcf7-list-item{
	position:relative;
}
.wpcf7-form-control-wrap input[type="checkbox"]{
	height: 25px;
    width: 25px;
    margin-right:5px;
	position:absolute;
}
.wpcf7-form-control-wrap .wpcf7-list-item-label{
	margin-left:35px;
}
.wpcf7-checkbox label{
	display:flex !important;
}
.wpcf7-list-item {
	    margin: 18px 0 0 1em !important;
}
.required{
	color:red;
}
#assessmentform{
	padding:0;
}
 .gallery-img img{
        height: 200px;
} 
@media only screen and (min-width: 991px)  {
	.modal-dialog{
		    max-width: 70%;
	}
    .gallery-img img{
        height: 100%;
}  
}

/* .review-form .wpcf7-form label {
    display: inline-block !important;
} */
.review-form label{
	font-size:18px;
	font-weight:600;
	display:inline-block !important;
}
.assessment-form form input[type="submit"]{
    color: #fff;
    border-radius: 8px;
    background-color: #ff712b;
    float: right;
    padding: 10px 15px;
    border: none;
    font-weight: bold;
}



.tp-eligible-item-blue{
    background-color: #0c88c7 !important;
}

.tp-eligible-item {
    background: #696969;
    overflow: hidden;
    position: relative;
    z-index: 1;

}
.tp-section-subtitle{
    color: #FFF8F8;
    font-size: 15px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 1.65px;
    text-transform: uppercase;
    margin-bottom: 7px;
}
.tp-section-title{
    font-weight: 700;
    line-height: 1.209;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #fff;
    font-size: 22px;
}
.tp-section p {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 33px;
    text-transform: capitalize;
    margin-bottom: 0;
}
.tp-eligible-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.tp-eligible-shape-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.tp-eligible-btn {
    margin-top: -8px;
}
.tp-eligible-btn a {
    height: 55px;
    width: 55px;
    line-height: 50px;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.27);
    background: #fff;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.07);
    transform: translateY(26px);
	
}
.tp-eligible-btn a:hover{
	border:2px solid #ff712b;
}
.cta {
    position: relative;
    margin: auto;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    
  }
  
  .cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #b1dae7;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
  }
  
  .cta span {
    position: relative;
    font-family: Mont-Trial-bold;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #234567;
  }
  
  .cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #234567;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
  }
  
  .cta:hover:before {
    width: 100%;
    background: #b1dae7;
  }
  
  .cta:hover svg {
    transform: translateX(0);
  }
  
  .cta:active {
    transform: scale(0.95);
  }


  .service-usp .img-divi{
    width: 145px;
  }
  .service-usp .img-divi img{
    width: 100%;
  }
  #wpcf7-f18-o1 textarea{
    height: 200px;
  }
.bg-bluelight{
    background: #e4e4e4;
}
  .service-quick ul{
    padding-left: 0;
}
.service-quick ul li{
    margin-bottom: 7px;
}
.service-quick ul li a{
    display: block;
    padding: 14px 30px 14px 24px;
    position: relative;
    background-color:#0195ff1c;
    color: #182333;
    z-index: 1;
    font-weight: 500;
    font-size: 19px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.service-quick ul li a:before,.service-quick .current-menu-item a:before{
    content: "";
    width: 4px;
    top: 0;
    left: 0;
    background: #eaeaea;
    height: 100%;
    position: absolute;
    -webkit-transition: background .2s linear;
    transition: background .2s linear;
    z-index: 1;
}
.service-quick ul li a:after,.service-quick .current-menu-item a:after{
    content: "";
    width: 0;
    height: 100%;
    background:var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: width .3s linear;
    transition: width .3s linear;
    z-index: -2;
}
.service-quick ul li a:hover,.service-quick .current-menu-item a{
    color: #fff;
    border-color: transparent;
    z-index: 9;
}
.service-quick ul li a:hover:before,.service-quick .current-menu-item a:before{
    color: #fff;
    border-color: transparent;
    z-index: 9;
    background: var(--secondary-color);
}
.service-quick ul li a:hover:after,.service-quick .current-menu-item a:after{
    width: 100%;
    background-color:var(--primary-color);
}
.single-contact {
    background: rgb(6 107 179);
}
.info-data a,.info-data h4{
    font-size: 19px;
   /* font-weight: 600;*/
}

.new-submit{
        border: 2px solid #0195ff !important;
        background-color: #ffffff !important;
        color: #0195ff !important;
}
.image-widget{
    position: relative;
    overflow: hidden;

}
.image-widget:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.image-widget:hover:after{
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}
.leaf-ul{
    padding: 0;
}
.leaf-ul li{
    display: flex;
    margin: 10px 0;
}
.leaf-ul li:before{
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1.5em' height='1.5em' viewBox='0 0 36 36'%3E%3Cpath fill='%23dd2e44' d='M36 20.917c0-.688-2.895-.5-3.125-1s3.208-4.584 2.708-5.5s-5.086 1.167-5.375.708c-.288-.458.292-3.5-.208-3.875s-5.25 4.916-5.917 4.292s1.542-10.5 1.086-10.698s-3.419 1.365-3.793 1.282C21.002 6.042 18.682 0 18 0s-3.002 6.042-3.376 6.125s-3.337-1.48-3.793-1.282s1.752 10.073 1.085 10.698C11.25 16.166 6.5 10.875 6 11.25s.08 3.417-.208 3.875c-.289.458-4.875-1.625-5.375-.708s2.939 5 2.708 5.5s-3.125.312-3.125 1s8.438 5.235 9 5.771s-2.914 2.802-2.417 3.229c.576.496 3.839-.83 10.417-.957V35a1 1 0 1 0 2 0v-6.04c6.577.127 9.841 1.453 10.417.957c.496-.428-2.979-2.694-2.417-3.229s9-5.084 9-5.771'/%3E%3C/svg%3E");
margin-right: 10px;
transform: rotate(26deg);
}

.content-cta{
    background: url('../../images/visa.webp') #c95e14 no-repeat center/cover;
    background-blend-mode: multiply;
}
.content-cta h5{
        font-size: 15px;
    font-weight: 300;
}
.overlay-image{
    position: absolute;
    right: 0;
    z-index: 999;
}

.para-div b{
    display: contents;
}
.full-content,.full-contents{
  display: none;
 
}

.stb-item:hover .excerpt,.stb-item:hover .excerpts {
  display: none;

}

.stb-item:hover .full-content ,.stb-item:hover .full-contents{
  display: block ;
  color: #000;

}
/* sm 11_05_25 */

.lft-col-scroll {
    position: sticky;
    top: 20px;
    left: 0;
    transition: all 0.3s ease-in-out;
}
.lft-col-scroll-faq{
    top: 50px;
}
.count-span{
	width: 47px;
    height: 47px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    font-weight:600;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
}

.wcu .row .item:first-child .count-span{
    background-color: #FFBD0F;
}
.wcu .row .item:nth-child(2) .count-span{
    background-color: #897CB5;
}
.wcu .row .item:nth-child(3) .count-span{
    background-color: #FE6C3F;
}

.wcu .row .item:nth-child(4) .count-span{
    background-color:#0091FF;
}

/* sm 11_05_25 end */

