.white {
  color: #fff;
}
.post-content h3 {
  font-weight: 700;
}
.bg-grey {
  background-color: #f7f7f7;
}

.bg-purple {
  background-color: #382767;
}
.bg-blue {
  background-color: #1681c4;
}

/* Universities slides Start*/
.slick-slider {
  /* background-color: #fff; */
}
.slick-slider div {
  gap: 5px;
  /* background-color: transparent !important; */
}



.slick-slider img {
  width: 100% !important;
  height: 100px !important;
  object-fit: contain !important;
  margin: 0 auto;
  display: none;
}

.slick-slide > div {
    background-color: #ffffff;
    margin: 15px 10px 15px 10px;
    text-align: center;
    /* border: 1px solid #ccc; */
    /* box-shadow: 2px 0px 8px #888888; */
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    transition: transform 0.4s;
    display: grid;
    /* box-shadow: 2px 0px 3px rgba(0, 0, 0, 0.2); */
}


.slick-slide > div:hover {
    transform: scale(1.1);
}

.slick-slide > div > div {
  padding: 10px;
  display: flex;
  vertical-align: middle;
}

/* Universities slides Ends*/

.wptb-heading .wptb-item--title span {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: .2px;
  text-transform: uppercase;
}

.uni-img img {
  height: auto;
  width: 160px;
}
.wptb-item--title span {
  color: #1681c4;
}

.wptb-service-one hr {
  border: #382767;
  border-top: 4px solid #382767;
  opacity: 1;
  margin-top: 30px;
}
.sp-easy-accordion .sp-ea-single .ea-header a {
  font-size: 1.125rem !important;
  font-family: "Inter" !important;
  font-weight: 400;
  padding: 10px 10px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}
.sp-easy-accordion .sp-ea-single .ea-header{
  font-size: 8px !important;
}
#sp-ea-291.sp-easy-accordion > .sp-ea-single {
  border: 1px solid #cfcfcf;
  /* border-bottom: 0px none; */
  /* border-color: #000; */
  border-radius: 0px;
}

.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-body{
  padding: 10px 10px;
}
.sp-easy-accordion>.sp-ea-single>.sp-collapse>.ea-body p:first-of-type{
  font-size: 15px !important;
  line-height: 20px;
}


.sp-easy-accordion .sp-ea-single .ea-header {
  border-bottom: 1px solid var(--color-light);
  border-color: rgba(var(--color-white-rgb), 0.4);
}

.home .sp-ea-single:nth-child(n+7) {
    display: none;
}

@media only screen and (max-width: 416px) {
  .header .social-box ul{
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .wptb-country-tab .wptb-country-tab--details {
    padding: 40px;
  }
}

@media only screen and (max-width: 1600px) {
  .wptb-country-tab .wptb-country-tab--details {
    padding: 40px;
  }
}

.footer-upper-contact a:hover {
  color: #382768;
}

.cf-choose ul {
  list-style: none;
  width: auto;
}

.cf-choose li::before {
  content: "\f26e";
  font-family: "bootstrap-icons";
  margin-right: 15px;
  border: 0.5px solid #fff;
  background-color: #1681c4;
  border-radius: 50%;
  font-size: 27px;
}

.cf-choose li {
  font-size: 20px;
  padding: 15px;
  display: inline-flex;
}

/* Social Link */
.btn-social-icon {
  background-color: #fff;
  border-radius: 0%;
  font-family: "bootstrap-icons";
  color: #382767;
}
.social-icons {
  text-align: left;
  margin: 15px 0;
}
.social-icons i {
  font-size: 24px;
}
.social-icons a {
  border: 1px solid #aaaaaa;
  border-radius: 5px;
  margin: 5px;
  padding: 5px;
  vertical-align: middle;
}
.social-icons a:hover {
  scale: 1.05;
  animation-delay: 100;
  color: #a31e25;
}
.social-icons i {
  vertical-align: middle;
}
.social-icons .twitter-x {
  color: #000000;
}
.social-icons .instagram {
  color: #c3357d;
}

.social-icons .linkedin {
  color: #0a7eb9;
}

.social-icons .facebook {
  color: #415e9b;
}

.social-icons .whatsapp {
  color: #00893a;
}
.sharethis {
  border: none !important;
  font-size: 18px;
}

/* loader pre loader */
/* Define the keyframe animation for background change */
@keyframes changeBackground {
  0% {
    background-color: #001C53; /* Initial background color */
  }
  100% {
    background-color: #00893a; /* Final background color */
  }
}

/* Loader styles */
#loader {
  height: 100%;
  width: 100%;
  background-color: #001C53;
  position: fixed;
  z-index: 99999999;
  top: 0;
  transition: all ease 0.7s;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: changeBackground 0.7s ease 2.4s forwards; /* Apply the animation with delay */
  text-align:center;
}

#loader h1 {
  font-size: 64px;
  color: transparent;
  background: linear-gradient(to right, #fff, #fff);
  -webkit-background-clip: text;
  position: absolute;
  /* text-stroke: .5px white; */
  opacity: 0;
  font-weight: 900;
  animation-name: load;
  animation-duration: 2.0s;
  animation-delay: 0.2s;
  /* animation-timing-function: ; */
  text-transform: uppercase;
}

#loader h1:nth-child(2) {
  animation-delay: 2.4s;
}

/* #loader h1:nth-child(3) {
  animation-delay: 3.6s;
} */

@keyframes load {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 600px) {
  #loader h1 {
    font-size: 9vw;
    
  }
}
.logo-img{
  a{
    padding: 10px !important;
    height: 98px;
  }
  a:before{
    height: 0px !important;
  }
  img{
    width: 200px;
    display: flex;
    margin-top: 14px;
  }
}
.footer-upper-contact{
  padding: 25px 20px;
}

.dst-link a{
  color: #001C53;
}

/* common front setting */
.wptb-image-box1 .wptb-item--inner{
  padding-top: 50px;
}
.section, section{
  padding: 20px 0;
}

/* Destination Front Page*/
.wptb-image-box1 .wptb-item--inner .wptb-item--icon{
  border: 4px solid #31AF00;
  img{
    border-radius: 50%;
  }
}

.how-we-work{
  .wptb-item--image{
    width: 100px;
    height: 100px;
    padding: 30px 0;
  }
  i{
    font-size: 40px;
    /* line-height: 36px !important; */
    color: #fff;
    /* font-weight: 300 !important; */!im;!i;!;
  }
}

.wptb-image-box1 .wptb-item--inner .wptb-item--icon

.destination{
  h4 a{
    color: #001C53 !important;
    font-size: 26px !important;
    font-weight: 600 !important;
  }
  .swiper-slide-active{
    h4 a{
      color: #001C53 !important;
      font-size: 28px !important;
      font-weight: 600 !important;
    }
    h4 a:hover{
      color: #0F5A8B !important;
    }
    /* .wptb-line-paper:before, .wptb-line-paper:after{
      border-top: 1px dotted #0F5A8B !important;
    } */
  }
}

.cf-row{
  justify-content: center !important;
}
.cf-foot > li > a::before {
  font-family: bootstrap-icons !important;
  content: "\f287";
  font-size: 6px;
  padding-right: 10px;
}

.cf-h3{
  font-size: 26px;
  font-weight: 600;
}
@media screen and (max-width: 575px){
  .wptb-contact-infos .wptb-image-box1 .wptb-item--inner .wptb-item--icon{
        width: 55px;
        height: 55px;
        padding: 10px;
  }
  .wptb-contact-infos .wptb-image-box1 .wptb-item--inner .wptb-item--holder{
    min-height: auto;
    padding-top: 30px;
    text-align: center;
    border-width: 0px;
    border-radius: 0px 0px;
  }
  .wptb-image-box1 .wptb-item--inner .wptb-item--title{
    margin-bottom: 5px;
  }             
  .wptb-image-box1 .wptb-item--inner .wptb-item--description{
    margin-bottom: 0px !important;
  }
}

@media only screen and (max-width: 416px) {
  .section, section{
    padding: 15px 0;
  }
  .wptb-heading .wptb-item--title span{
    font-size: 26px;
  }
  .wptb-image-box1 .wptb-item--inner{
    padding-top: 0px;
  }
  .cf-box{
    padding-top: 35px !important;
  }
  .destination{
    h4 a{
      color: #001C53 !important;
      font-size: 24px !important;
      font-weight: 600 !important;
    }
    .swiper-slide-active{
    h4 a{
      color: #001C53 !important;
      font-size: 24px !important;
      font-weight: 600 !important;
    }
  }

  
  
}

