@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: #061a22;
  box-sizing: border-box;
    

}
  
a {
  font-family: 'Poppins', sans-serif;
  color: #29ABE2;
  text-decoration: none;
}
  
a:hover {
  color: #00b3ff;
  text-decoration: none;
}
ul li{
  list-style-type: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Rubik', sans-serif;
}
  
  /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
  
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}
  
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
  
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #106eea;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

  
/* Loader  Setup */

.page-loader{
	width: 100%;
	height: 100vh;
	position: fixed;
	background: #061a22;
	z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
	
}

.earth-wrapper {
  position: absolute;
  margin: 0 auto;
  width: 100%;
  padding-top: 2.7rem;
}

.earth {
  width: 160px;
  height: 160px;
  background: url("https://zupimages.net/up/19/34/6vlb.gif");
  border-radius: 100%;
  background-size: 340px;
  animation: earthAnim 12s infinite linear;
  margin: 0 auto;
  border: 1px solid #CDD1D3;
}

@keyframes earthAnim {
  0% {background-position-x: 0;}
  100% {background-position-x: -340px;}
}

@media screen and (max-width: 420px) {
  .departure_city {
    left: 0;
    right: 0;
    top: 30%;
    position: absolute;
    margin: 0 auto;
  }
  
  .arrival_city {
    left: 0;
    right: 0;
    top: 93%;
    position: absolute;
    margin: 0 auto;
  }
}

/* Page Loader  */
.loader {
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  max-width: 35rem;
  height: 30rem;
  margin: 0 auto;
}

.wait {
  margin: 5rem 0;
}
.iata_code {
  font-size: 6rem;
  opacity:0.3;
  top: 60px;
  position: absolute;
  color: #fff;
}
.loader .wait{
  color:  #0099cc;
}

.departure_city {
  left: 0;
}

.arrival_city {
  right: 1.5rem;
}

.plane {
  position: absolute;
  margin: 0 auto;
  width: 100%;
}

.plane-img {
  -webkit-animation: spin 2.5s linear infinite;
  -moz-animation: spin 2.5s linear infinite;
  animation: spin 2.5s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Loader  Setup Ended  */





  
  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  
  /*--------------------------------------------------------------
  # Top Bar
  --------------------------------------------------------------*/
#topbar {
  background: #061a22;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
}
  
#topbar .contact-info i a{
  padding-left: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;

}
#topbar .contact-info i a:hover{
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}
  
#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: none;
}
#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
  background: linear-gradient(to bottom, #25363d 0%,#061a22 100%);
  /* background: #061a22; */
  transition: all 0.5s;
  z-index: 997;
  height: 100px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
  height: 100px;
}

#header .logo {
  margin: 0;
}

#header .logo a img {
  max-height: 80px;
  width: 100%;
}

.scrolled-offset {
  margin-top: 100px;
}
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #29ABE2;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #29ABE2;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #061a22;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ffffff;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
  
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}
  
  /**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  display: none !important;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.fa-xmark {
  color: #fff;
}
  
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
  }

  .navbar ul {
    display: none;
  }
}
  
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #ccc;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
  
.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #29ABE2;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
  
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #29ABE2;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
  
  /*--------------------------------------------------------------*/
/* Cont us Watsapp  */
 
.whatsapp_sec {
  position: fixed;
  left: 0;
  background: #26d367;
  padding: 10px 15px 11px 20px;
  width: 100%;
  max-width: 182px;
  z-index: 999;
  border-radius: 0 4px 4px 0;
  text-align: left;
  transform: translate3d(-133px,0,0);
  box-shadow: 0 19px 18px 5px rgba(50,50,93,.03),0 8px 16px -8px rgba(0,0,0,.03);
  transition: all .3s ease
}

.whatsapp_sec:hover {
  transform: translate3d(0,0,0)
}

a.whatsapp_sec:before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: red;
  display: block;
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  right: 7px;
  top: -2px;
}

.whatsapp_sec svg {
  max-width: 20px;
  float: right;
  margin: 3px 0;
}

.whatsapp_sec span {
  color: #fff;
}

.sid_sl {
  position: fixed;
  bottom: 25%;
  width: 50px;
  min-height: 210px;
  z-index: 99;
}

.sid_sl:after,.sid_sl:before {
  display: table;
  width: 100%;
  clear: both;
  content: " ";
}

/* .pay_onlinefy .asde {
    position: absolute;
    left: -18px;
    top: 50px;
    display: block;
    width: max-content;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

a.pay_onlinefy {
    z-index: 999;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 150px;
    color: #fff;
    font-size: 15px;
    display: none;
}

a.pay_onlinefy svg {
    float: left;
    position: absolute;
    left: 14px;
    bottom: 21px;
} */

.aslkdje_dsd {
  display: table;
  width: 100%;
  height: 100%;
  background: #26d367;
  border-radius: 0 4px 4px 0;
  overflow: hidden;
  transition: all .3s ease;
}

.aslkdje_dsd:hover {
  background: #21be5c;
}

/* Hero Sections  */
.HeroSections{
 
}
.owl-item {
  width: 100%; 
  position: relative;
}

.item img{
  width: 100vw;
  height: 100vh;
}
.caption-txt{
  position: absolute;
  top: 0;
  left: 15%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;

}
.caption-txt h2{
  font-size: 3.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 10px;
  color: #29ABE2;
}
.caption-txt h4{
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0;
  padding-right: 10px;
  margin-bottom: 0;
  color: #fff;
}

/* ShadesApply */
.GreyShade{
  position: relative;
}
.GreyShade::after{
  position: absolute;
  content: " ";
  background: url(../Images/GreySads.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}


/* Visa Apply */

.About{
  padding: 100px 0px
}
.VisaNavPills{
  justify-content: center;
  margin: 0px auto 80px 0px !important;
}
.VisaNavPills .nav-item .nav-link {
  display: inline-block;
  margin: 0 15px;
  background-color: transparent;
  color: #fff;
  font-size: 1.25rem;
  padding: 8px 10px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 450ms ease-in-out;
  font-weight: 600;
}
.VisaNavPills .nav-item .nav-link.active{
  color: #29ABE2;
  position: relative;
}
.VisaNavPills .nav-item .nav-link.active::after{
  position: absolute;
  content: " ";
  width: 90%;
  margin: 0 auto;
  height: 2px;
  background: #29ABE2;
  bottom: 0;
  left: 0;
  right: 0;
}

.Visa_Contents{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
span.id-color {
    color: #29ABE2;
}
span.section-id {
    font-size: 0.875rem;
    font-family: 'Muli', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.h3-lg{
  font-size: 1.5rem !important;
  color: #fff;
  margin-bottom: 30px;
}
.p-md {
  font-size: 1rem;
  color: #aaa;
}
.h5-md{
  margin-top: 15px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #fff;

}

.box-list-icon, .box-list-icon i {
  display: inline-block;
}
.box-list-icon {
  font-size: 1rem;
  line-height: 1.5rem;
  float: left;
  margin-top: 2px;
  margin-right: 10px;
}
.abut_img{
  max-width: 100%;
  height: auto;
}
.box-list p {
  overflow: hidden;
  margin-bottom: 15px;
  color: #aaa;
}
.box-list p span {
  color: #2098d1;
  font-weight: 600;
}
.callAgent {
  display: flex;
  gap: 15px;
  align-items: center;
}
.callAgent h6 {
  font-size: 18px;
  color: #2098d1;
  font-weight: 400;
  margin-bottom: 0;
}
.ComonBtn a {
  transition-duration: 0.3s;
  background: #fff;
  border: 2px solid #2098d1;
  border-radius: 8px;
  padding: 10px 20px;
  color: #2098d1;
  font-weight: 600;
  box-shadow: 0px 0px 5px #0000005c;
}
.ComonBtn a i {
  margin-right: 10px;
}
.ComonBtn a:hover, .ComonBtn a:focus, .ComonBtn a:active {
  background-color: #2098d1;
  color: white;
}

.missionLogo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
.missionLogo img {
  width:100%;
}

/* Ask_Adviser */

.Ask_Adviser{
  padding: 100px 0px;
}




/* Working Progress  */


.WorkingProcess{
  background-image: url(../Images/WorkingProcess.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  padding: 50px 0px 80px  0px ;
  /* height: 100vh; */
}
.topTittle  {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.topTittle span{
  color: #29ABE2;
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 28px;
  letter-spacing: 1.5px;
}
.EasySteps{
  margin: 12px 0px;
  text-align: center;
}
.EasySteps h2{
  color: #d9d3d3;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 37px;
}
.WorkStepsCircle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 0px 0px 0px;
}
.WorkStepsCircle .inner-box {
  position: relative;
  display: flex;
  width: 290px;
  height: 290px;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 12px #29ABE2;
  padding-top: 35px;
}
.WorkStepsCircle .inner-box::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: -140px;
  background: url(../Images/arrow-1.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 87px;
  height: 32px;
}
.WorkStepsCircle .inner-box:last-child::after {
  content: none;
}
.WorkStepsCircle .inner-box .count-text {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 90px;
  height: 90px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  padding-top: 23px;
  background-color: #29ABE2;
}
.WorkStepsCircle .inner-box .count-text span {
  display: block;
  font-size: 25px;
  line-height: 22px;
  font-weight: 600;
}
.WorkStepsCircle .inner-box .count-text::before {
  position: absolute;
  content: '';
  width: 120px;
  height: 120px;
  left: -15px;
  top: -15px;
  border-radius: 50%;
  border: 2px dashed #29ABE2;
}
.WorkStepsCircle .inner-box h3 {
  display: block;
  font-size: 25px;
  line-height: 30px;
  color: #222222ab;
  font-weight: 700;
  margin-bottom: 11px;
}

/* QualityEducations */

.QualityEducations{
  background-color: #21263A;
  background-image: url(../Images/edurytbg.png);
  background-repeat: no-repeat;
}
.QualityEducationsTwo{
  background-image: url(../Images/eduleftbg.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  opacity: 1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image_block_two .image-box {
  position: relative;
  display: block;
  padding-left: 110px;
  padding-right: 62px;
  padding-top: 45px;
}
.image_block_two .image-shape .shape-1 {
  position: absolute;
  left: 64px;
  bottom: 55px;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}
.image_block_two .image-shape .shape-2 {
  position: absolute;
  right: 133px;
  top: 111px;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 4s infinite linear;
  animation: zoom-fade 4s infinite linear;
}
.image_block_two .image-shape .shape-3 {
  position: absolute;
  right: 45px;
  top: 175px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: 1;
  border: 20px solid #EC4E4F;
}
.image_block_two .image-box .image {
  position: relative;
  margin-bottom: 0;
}
.image_block_two .image-box img {
  width: 100%;
}



@keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.lookQuality {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.qulityTitle h2{
  color: #FFFFFF;
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
}
.qulityTitle h2 span{
  color: #EC4E4F;
}
.qulityPara p{
  position: relative;
  color: #FFFFFF;
  font-weight: 400;
  margin: 0px;
  transition: all 500ms ease;
}
.Univercity h2  {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 0;
}
.Univercity h2 span {
  color: #EC4E4F;
  margin-right: 10px;
}
.uniflag{
  display: flex;
  align-items: center;
  gap: 50px;
}
.flagsname{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;

}
.flagsname img{
  border-radius: 50%;
  border: none;
  object-position: center;
}
.flagsname h6{
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

/* EventsSec */

.EventsSec{
  padding: 100px 0px;
  height: 100%;
}

.eventsData{
  display: grid;
  grid-template-columns: 1fr 1fr ;
  grid-gap: 20px;
  padding-top: 50px;
}
.eventitems img{
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  height: 100%;
  object-position: center;
}



/* Success Story */

.SuccessStotry{
  padding: 100px 0px;
  /* background: #f0f0f0; */
}
.topTittle h6 {
  color: #29ABE2;
  font-size: 36px;
  text-transform: uppercase;
  margin: 0;
}
.topTittle h3{
  font-size: 27px;
  margin: 5px 0 12px;
  letter-spacing: -.5px;
  line-height: 38px;
  font-weight: 500;
  color: #d9d3d3;
}
.topTittle p{
  color: #d9d3d3;
  font-size: 17px;
  line-height: 26px;
  max-width: 50%;
  margin: 0 auto;
}
.clients_videos {
  padding: 100px 0px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 50px;
}
.sucess_Story_Img {
  position: relative;
  display: inline-block;
  transition: all .3s ease;
}
.sucess_Story_Img a.play-btn {
  position: absolute;
  right: -40px;
  bottom: 0;
  transition: all .3s ease;
}
.sucess_Story_Img a img {
  width: 100%;
  height: 100%;
  border-radius: 1.2rem;
  display: block;
  object-fit: cover;
  -o-object-fit: cover;  
  transition: all .3s ease;
}

.sucess_Story_Img a:hover , .sucess_Story_Img a img:hover{
  transform: translate3d(0,-10px,0);
  box-shadow: 0 13px 27px -5px rgba(50,50,93,.15), 0 8px 16px -8px rgba(0,0,0,.2);
}
/* Play btn  */
 .play-btn {
  width: 94px;
  height: 94px;
  margin: 0 auto;
  background: radial-gradient(#29ABE2 50%, #29aae263 52%);
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: relative;
}

 .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #d9d3d3;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

 .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 3s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid #29ABE2;
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

 .play-btn:hover::after {
  border-left: 15px solid #29ABE2;
  transform: scale(20);
}

.play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #d9d3d3;
  z-index: 200;
  animation: none;
  border-radius: 0;
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.Story_Button {
  text-align: center;
}

.Story_Button a {
  border-radius: 5px;
  color: #fff;
  background: transparent;
  border: 2px solid #29ABE2;
  /* color: #29ABE2; */
  font-size: 17px;
  font-weight: 400;
  transition: .4s;
  text-decoration: none;
  padding: 14px 70px;
  transition: all 0.5s ease-in-out;
}
.Story_Button a:hover {
  background: #29ABE2;
  border: 2px solid #29ABE2;

}


/* Univercity logo  */

.univercityLogo{
  overflow: hidden;
  padding: 10px 0px;
  /* background: #455160; */
}
.slider {
  animation: slidein 30s linear infinite;
  white-space: nowrap;
}
.logos {
  width: 100%;
  display: inline-block;
  margin: 0px 0;
}
.fab {
  width: calc(100% / 5);
  animation: fade-in 0.5s 
  cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
}

@keyframes slidein {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/* ilets trainer  */

.Ielts_Trainer{
  padding: 100px 0px;
}
.ldsmfoe_ic2 img {
  width: 230px;
  height: 150px;
  margin-top: -27px;
}
.Ielts_Partnership{
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.Ielts_Partnership h2 {
  color: #29abe2;
}
.partnerimg{
  position: relative;
}

.partnerimg img{
  width: 100%;
}
.Ielts_Partnership h6{
  font-size: 20px;
  line-height: 30px;
  color: #29ABE2;
  font-weight: 400;
}
.iltspartner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80%;
}

.Ielts_Partnership a img {
  width: 100%;
  height: auto;
  max-width: 150px;

}
.trainingForms h2{
  color: #29ABE2;
}
.trainingForms .form-label{
  color: #fff;
}
.trainingForms .form-control{
  background: transparent;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
}
.trainingForms .form-select{
  background: transparent;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  background-image: url(../Images/downarow.svg);
  background-repeat: no-repeat;
  background-size: 12% 80%;
  background-position: right;
}
.trainingForms .form-select option{
  background: #061a22;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
}
.trainingForms .form-select::after{
  color: #fff;
}
.trainingForms .form-control:focus, .trainingForms .form-select:focus {
  box-shadow: none;
}
.trainBtn{
  background: #29ABE2;
  color: #fff;
  padding: 10px 25px;
  transition: all 0.5s ease-in-out;
  border: none;
  border-radius: 8px;
}
.trainBtn:hover{
 opacity: 0.7;
}

/* uploade resume  */
.uplimg {
  display: flex;
  align-items: center;
  gap: 10px
}

.uplimg H6 {
  margin-bottom: 0;
  color: #f8f9fa
}

.uploadeImg input {
  position: absolute;
  opacity: 0
}

.uploadeImg {
  position: relative
}



/* Testimonials   */

.Testimonials{
  padding: 100px 0px;
  position: relative;
}
/* .testim {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translatey(-50%);
  -moz-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
  -o-transform: translatey(-50%);
  transform: translatey(-50%);
} */

.testim .wrap {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  margin: auto;
}

.testim .arrow {
  display: block;
  position: absolute;
  color: #29ABE2;
  cursor: pointer;
  font-size: 2em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .3s ease-in-out;    
  -ms-transition: all .3s ease-in-out;    
  -moz-transition: all .3s ease-in-out;    
  -o-transition: all .3s ease-in-out;    
  transition: all .3s ease-in-out;
  padding: 5px;
  z-index: 999999;
}

.testim .arrow:before {
  cursor: pointer;
}

.testim .arrow:hover {
  color:  #29ABE2;
}
  

.testim .arrow.left {
  left: 70px;
}

.testim .arrow.right {
  right: 70px;
}

.testim .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 60px;
  left: 0;
  display: block;
  z-index: 3333;
  height: 12px;
}

.testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid  #29ABE2;
  margin: 0 10px;
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out;    
  -ms-transition: all .5s ease-in-out;    
  -moz-transition: all .5s ease-in-out;    
  -o-transition: all .5s ease-in-out;    
  transition: all .5s ease-in-out;
  position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
  background: #29ABE2;
  border-color:  #29ABE2;
}

.testim .dots .dot.active {
  -webkit-animation: testim-scale .5s ease-in-out forwards;   
  -moz-animation: testim-scale .5s ease-in-out forwards;   
  -ms-animation: testim-scale .5s ease-in-out forwards;   
  -o-animation: testim-scale .5s ease-in-out forwards;   
  animation: testim-scale .5s ease-in-out forwards;   
}
  
.testim .cont {
  position: relative;
  overflow: hidden;
}

.testim .cont > div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 70px 0;
  opacity: 0;
}

.testim .cont > div.inactive {
  opacity: 1;
}
  

.testim .cont > div.active {
  position: relative;
  opacity: 1;
}
  

.testim .cont div .img img {
  display: block;
  width: 100%;
  max-width: 250px;
  max-height: 250px;
  height: 100%;
  margin: 0 auto;
  border-radius: 50%;
}

.testim .cont div h2 {
  color: #29ABE2;
  font-size: 25px;
  margin: 15px 0;
}

.testim .cont div p {
  font-size: 16px;
  color: #fff;
  width: 70%;
  margin: auto;
}

.testim .cont div.active .img img {
  -webkit-animation: testim-show .5s ease-in-out forwards;            
  -moz-animation: testim-show .5s ease-in-out forwards;            
  -ms-animation: testim-show .5s ease-in-out forwards;            
  -o-animation: testim-show .5s ease-in-out forwards;            
  animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active h2 {
  -webkit-animation: testim-content-in .4s ease-in-out forwards;    
  -moz-animation: testim-content-in .4s ease-in-out forwards;    
  -ms-animation: testim-content-in .4s ease-in-out forwards;    
  -o-animation: testim-content-in .4s ease-in-out forwards;    
  animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
  -webkit-animation: testim-content-in .5s ease-in-out forwards;    
  -moz-animation: testim-content-in .5s ease-in-out forwards;    
  -ms-animation: testim-content-in .5s ease-in-out forwards;    
  -o-animation: testim-content-in .5s ease-in-out forwards;    
  animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
  -webkit-animation: testim-hide .5s ease-in-out forwards;            
  -moz-animation: testim-hide .5s ease-in-out forwards;            
  -ms-animation: testim-hide .5s ease-in-out forwards;            
  -o-animation: testim-hide .5s ease-in-out forwards;            
  animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive h2 {
  -webkit-animation: testim-content-out .4s ease-in-out forwards;        
  -moz-animation: testim-content-out .4s ease-in-out forwards;        
  -ms-animation: testim-content-out .4s ease-in-out forwards;        
  -o-animation: testim-content-out .4s ease-in-out forwards;        
  animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
  -webkit-animation: testim-content-out .5s ease-in-out forwards;    
  -moz-animation: testim-content-out .5s ease-in-out forwards;    
  -ms-animation: testim-content-out .5s ease-in-out forwards;    
  -o-animation: testim-content-out .5s ease-in-out forwards;    
  animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
  0% {
      -webkit-box-shadow: 0px 0px 0px 0px #061a22;
      box-shadow: 0px 0px 0px 0px #061a22;
  }

  35% {
      -webkit-box-shadow: 0px 0px 10px 5px #061a22;        
      box-shadow: 0px 0px 10px 5px #061a22;        
  }

  70% {
      -webkit-box-shadow: 0px 0px 10px 5px  #061a22;        
      box-shadow: 0px 0px 10px 5px  #061a22;        
  }

  100% {
      -webkit-box-shadow: 0px 0px 0px 0px  #061a22;        
      box-shadow: 0px 0px 0px 0px  #061a22;        
  }
}

@-moz-keyframes testim-scale {
  0% {
      -moz-box-shadow: 0px 0px 0px 0px #061a22;
      box-shadow: 0px 0px 0px 0px #061a22;
  }

  35% {
      -moz-box-shadow: 0px 0px 10px 5px #061a22;        
      box-shadow: 0px 0px 10px 5px #061a22;        
  }

  70% {
      -moz-box-shadow: 0px 0px 10px 5px  #061a22;        
      box-shadow: 0px 0px 10px 5px  #061a22;        
  }

  100% {
      -moz-box-shadow: 0px 0px 0px 0px  #061a22;        
      box-shadow: 0px 0px 0px 0px  #061a22;        
  }
}

@-ms-keyframes testim-scale {
  0% {
      -ms-box-shadow: 0px 0px 0px 0px #061a22;
      box-shadow: 0px 0px 0px 0px #061a22;
  }

  35% {
      -ms-box-shadow: 0px 0px 10px 5px #061a22;        
      box-shadow: 0px 0px 10px 5px #061a22;        
  }

  70% {
      -ms-box-shadow: 0px 0px 10px 5px  #061a22;        
      box-shadow: 0px 0px 10px 5px  #061a22;        
  }

  100% {
      -ms-box-shadow: 0px 0px 0px 0px  #061a22;        
      box-shadow: 0px 0px 0px 0px  #061a22;        
  }
}

@-o-keyframes testim-scale {
  0% {
      -o-box-shadow: 0px 0px 0px 0px #061a22;
      box-shadow: 0px 0px 0px 0px #061a22;
  }

  35% {
      -o-box-shadow: 0px 0px 10px 5px #061a22;        
      box-shadow: 0px 0px 10px 5px #061a22;        
  }

  70% {
      -o-box-shadow: 0px 0px 10px 5px  #061a22;        
      box-shadow: 0px 0px 10px 5px  #061a22;        
  }

  100% {
      -o-box-shadow: 0px 0px 0px 0px #061a22;        
      box-shadow: 0px 0px 0px 0px #061a22;        
  }
}

@keyframes testim-scale {
  0% {
      box-shadow: 0px 0px 0px 0px #061a22;
  }

  35% {
      box-shadow: 0px 0px 10px 5px  #061a22;        
  }

  70% {
      box-shadow: 0px 0px 10px 5px #061a22;        
  }

  100% {
      box-shadow: 0px 0px 0px 0px #061a22;        
  }
}

@-webkit-keyframes testim-content-in {
  from {
      opacity: 0;
      -webkit-transform: translateY(100%);
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      -webkit-transform: translateY(0);        
      transform: translateY(0);        
  }
}

@-moz-keyframes testim-content-in {
  from {
      opacity: 0;
      -moz-transform: translateY(100%);
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      -moz-transform: translateY(0);        
      transform: translateY(0);        
  }
}

@-ms-keyframes testim-content-in {
  from {
      opacity: 0;
      -ms-transform: translateY(100%);
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      -ms-transform: translateY(0);        
      transform: translateY(0);        
  }
}

@-o-keyframes testim-content-in {
  from {
      opacity: 0;
      -o-transform: translateY(100%);
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      -o-transform: translateY(0);        
      transform: translateY(0);        
  }
}

@keyframes testim-content-in {
  from {
      opacity: 0;
      transform: translateY(100%);
  }
  
  to {
      opacity: 1;
      transform: translateY(0);        
  }
}

@-webkit-keyframes testim-content-out {
  from {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      -webkit-transform: translateY(-100%);        
      transform: translateY(-100%);        
  }
}

@-moz-keyframes testim-content-out {
  from {
      opacity: 1;
      -moz-transform: translateY(0);
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      -moz-transform: translateY(-100%);        
      transform: translateY(-100%);        
  }
}

@-ms-keyframes testim-content-out {
  from {
      opacity: 1;
      -ms-transform: translateY(0);
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      -ms-transform: translateY(-100%);        
      transform: translateY(-100%);        
  }
}

@-o-keyframes testim-content-out {
  from {
      opacity: 1;
      -o-transform: translateY(0);
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      transform: translateY(-100%);        
      transform: translateY(-100%);        
  }
}

@keyframes testim-content-out {
  from {
      opacity: 1;
      transform: translateY(0);
  }
  
  to {
      opacity: 0;
      transform: translateY(-100%);        
  }
}

@-webkit-keyframes testim-show {
  from {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      -webkit-transform: scale(1);       
      transform: scale(1);       
  }
}

@-moz-keyframes testim-show {
  from {
      opacity: 0;
      -moz-transform: scale(0);
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      -moz-transform: scale(1);       
      transform: scale(1);       
  }
}

@-ms-keyframes testim-show {
  from {
      opacity: 0;
      -ms-transform: scale(0);
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      -ms-transform: scale(1);       
      transform: scale(1);       
  }
}

@-o-keyframes testim-show {
  from {
      opacity: 0;
      -o-transform: scale(0);
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      -o-transform: scale(1);       
      transform: scale(1);       
  }
}

@keyframes testim-show {
  from {
      opacity: 0;
      transform: scale(0);
  }
  
  to {
      opacity: 1;
      transform: scale(1);       
  }
}

@-webkit-keyframes testim-hide {
  from {
      opacity: 1;
      -webkit-transform: scale(1);       
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      -webkit-transform: scale(0);
      transform: scale(0);
  }
}

@-moz-keyframes testim-hide {
  from {
      opacity: 1;
      -moz-transform: scale(1);       
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      -moz-transform: scale(0);
      transform: scale(0);
  }
}

@-ms-keyframes testim-hide {
  from {
      opacity: 1;
      -ms-transform: scale(1);       
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      -ms-transform: scale(0);
      transform: scale(0);
  }
}

@-o-keyframes testim-hide {
  from {
      opacity: 1;
      -o-transform: scale(1);       
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      -o-transform: scale(0);
      transform: scale(0);
  }
}

@keyframes testim-hide {
  from {
      opacity: 1;
      transform: scale(1);       
  }
  
  to {
      opacity: 0;
      transform: scale(0);
  }
}

@media all and (max-width: 500px) {
.testim .arrow {
  font-size: 1.5em;
}

.testim .cont div p {
  line-height: 25px;
}

}

/* WHY_CHOOSE_US */

.WHY_CHOOSE_US{
  padding: 70px 0px;
}
.whyusPicture img{
  width: 100%;
  border-radius: 25px;
  padding: 20px;
  background: #ffffff40;
}
.ChooseTittle{
  padding-bottom: 80px;
}
.ChooseTittle h3 {
  font-size: 35px;
  margin: 5px 0 12px;
  letter-spacing: -.5px;
  line-height: 38px;
  font-weight: 500;
  color: #d9d3d3;
  text-align: center;
}
.whyChooseUsData {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  padding-left: 50px;
}
.chooseHeading h6 {
  color: #29ABE2;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
}

/* Certification */

.Certification{
  padding: 60px 0px;
}
.swiper-slider{
  padding: 50px 0px ;
  width: 100%;
}
.swiper-slide {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: contain;
}


/* FOOTER */

.FOOTER{
  background-image: url(../Images/footer-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80% 100%;
  height: 100%;
  /* background-color: #031f4b; */
}
.subscribe-content-box {
  position: relative;
  padding: 45px 70px 45px;
  display: grid;
  grid-template-columns: 1fr  1fr;
  align-content: center;
  background: rgba(255, 255, 255, 0.10);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.subscribe-title {
  position: relative;
  display: block;
}
.subscribe-title h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin: 0 0 4px;
}
.subscribe-title p {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin: 0;
}
.subscribe-box {
  position: relative;
  display: block;
  max-width: 470px;
  width: 100%;
}
.subscribe-form {
  position: relative;
  display: block;
  width: 100%;
  margin: 5px 0;
}
.subscribe-form input[type="email"] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  padding: 0 25px;
  padding-right: 70px;
  background: rgba(255, 255, 255, 1.0);
  border: 0px solid rgba(255, 255, 255, 0.20);
  color: #777777;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  border-radius: 10px;
  transition: all 500ms ease;
  font-family: 'Roboto', sans-serif;
}
.subscribe-form input::-webkit-input-placeholder {
  color: #777777;
}
.subscribe-form input:-moz-placeholder {
  color: #777777;
}
.subscribe-form input::-moz-placeholder {
  color: #777777;
}
.subscribe-form input:-ms-input-placeholder {
  color: #777777;
}
.subscribe-form button {
  position: absolute;
  background-color: #29ABE2;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 60px;
  color: #ffffff;
  font-size: 24px;
  line-height: 60px;
  font-weight: 400;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 300ms ease 100ms;
  border: none;
  padding: 0;
}
.subscribe-form input[type="email"]:focus {
  color: #29ABE2;    
}
.subscribe-form input[type="email"]:focus + button, 
.subscribe-form button:hover {
  background: #29ABE2;
}
.subscribe-form input[type="email"]:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}

.FooterMiddle{
  position: relative;
  display: block;
  padding: 90px 0 100px;
}
.FooterData{
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.single-footer-widget {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-footer-widget.martop10{
  margin-top: 10px;
} 
.single-footer-widget.marleftminus40{
  margin-left: -40px;
}
.single-footer-widget.marlef20{
  margin-left: 20px;    
}


.single-footer-widget .title {
  position: relative;
  display: block;
  margin-top: -6px;
  margin-bottom: 45px;
  padding-bottom: 15px;
}
.single-footer-widget .title:before{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #29ABE2;
  content: "";
}
.single-footer-widget .title h3{
  color: #ffffff;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.single-footer-widget .our-company-info {
  position: relative;
  display: block;
  display: flex;
  gap: 65px;
  flex-direction: column;
}

.footer-social-links {
  overflow: hidden;
  display: flex !important;
  gap: 30px !important;
  margin-bottom: 0;
  align-items: center !important;
  padding: 0;
}

.footer-social-links a:last-child{
  margin-right: 0;
}
.footer-social-links  a{
  position: relative;
  display: block;
  height: 40px;
  width: 40px;
  border: 1px solid #ffffff;
  border-radius: 7px;
  color: #ffffff;
  font-size: 14px;
  line-height: 38px;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.footer-social-links a:hover{
  color: #29ABE2;
  border-color: #29ABE2;
}


.single-footer-widget .countries-links{
  position: relative;
  display: block;
  margin-top: -11px;
  padding: 0;
}
.single-footer-widget .countries-links li{
  position: relative;
  display: block;
  line-height: 36px;
}
.single-footer-widget .countries-links li a{
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.single-footer-widget .countries-links li a:before{
  position: absolute;
  content: "\f101";
  font-family: FontAwesome;
  top: 0;
  left: 0;
  bottom: 0;
  font-size: 16px;  
  color: #29ABE2;
}
.single-footer-widget .countries-links li a:hover{
  color: #29ABE2;      
}



.single-footer-widget .visa-type-links{
  position: relative;
  display: block;
  margin-top: -11px;
  padding: 0;
}
.single-footer-widget .visa-type-links li{
  position: relative;
  display: block;
  line-height: 36px;
}
.single-footer-widget .visa-type-links li a{
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.single-footer-widget .visa-type-links li a:before{
  position: absolute;
  content: "\f101";
  font-family: FontAwesome;
  top: 0;
  left: 0;
  bottom: 0;
  font-size: 16px;  
  color: #29ABE2;
}
.single-footer-widget .visa-type-links li a:hover{
  color: #29ABE2;      
}



.single-footer-widget .footer-contact-info{
  display: flex;
  align-items: center;
  flex-direction: column;
}
.single-footer-widget .footer-contact-info ul{
  display: flex;
  /* align-items: center; */
  flex-direction: column;
}
.single-footer-widget .footer-contact-info ul li{
  display: flex;
  align-items: center;
}
.single-footer-widget .footer-contact-info ul li:last-child{
  margin-bottom: 0;
}
.single-footer-widget .footer-contact-info ul li .icon span i:before{
  font-size: 25px;
  line-height: 50px;
}
.single-footer-widget .footer-contact-info ul li .icon,
.single-footer-widget .footer-contact-info ul li .text{
  display: table-cell;
  vertical-align: middle;
}
.single-footer-widget .footer-contact-info ul li .text{
  padding-left: 20px;
}
.single-footer-widget .footer-contact-info ul li .text h4{
  color: #ffffff;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 0;
}
.single-footer-widget .footer-contact-info ul li .text a{
  color: #ffffff;
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
  font-weight: 400;
}

.thm-clr {
  color: #29ABE2;
}


.footer-bottom {
  position: relative;
  display: block;
}
.footer-bottom .outer-box {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 2px solid rgba(255, 255, 255, 0.20);
  padding: 24px 0;
}
.copyright-text {
  position: relative;
  display: block;
}
.copyright-text p{
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  margin: 0;
  font-family: 'Archivo', sans-serif;
}
.copyright-text p a {
  color: #f7f7f7;
  font-weight: 600;
  transition: all 500ms ease;
}
.footer-menu{
  position: relative;
  display: block;
}
.footer-menu ul{
  position: relative;
  display: block;
  overflow: hidden;
}
.footer-menu ul li{
  position: relative;
  display: inline-block;
  float: left;
  line-height: 30px;
  padding-right: 21px;
  margin-right: 20px;
}
.footer-menu ul li:last-child{
  padding-right: 0;
  margin-right: 0;
}
.footer-menu ul li:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 14px;
  background: #ffffff;
  content: "";
  margin: 8px 0;
  transition: all 700ms linear;
  transition-delay: 0.3s;
}
.footer-menu ul li:last-child:before{
  display: none;
}
.footer-menu ul li a{
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-family: 'Archivo', sans-serif;
}
.footer-menu ul li a:hover{
  color: #29ABE2;
}
.d-nn{
  display: none;
}

/* img animation  */
.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* Success_Videos */

#Success_Videos{
  background: url(../Images/success_stories.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 90vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;

}





/* Apply Visa  */

.VisaApply{
  padding: 100px 0px;
}
.Applytop h2{
  text-align: center;
  letter-spacing: 5px;
  font-size: 3.25rem;
  font-weight: 500;
  color: #29ABE2;
  line-height: 1;
  margin-bottom: 0;
  /* letter-spacing: 0.5px; */
  text-transform: uppercase;
}
.visaApplyCard{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-gap: 50px;
  padding: 100px 0px 100px 0px;
  align-items: center;
  justify-items: center;
}
.visaApplyCard2{
  display: flex;
  justify-content: center;
  gap: 100px;
  align-items: center;
  
}

.VisaModelDialog{
  height: 100%;
  display: flex;
  align-items: center;
}
.VisaModelContent{
  background-color: #061a22;
  background-image: url(../Images/GreySads.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-shadow: 0px 0px 5px #29abe294;
}
.btn-close {
  color: red !important;
  opacity: 1 !important;
}
.VisaModelContent .modal-header{
  padding: 10px;
  border-bottom: 1px solid #29abe294;
}
.visaBtn{
  background: transparent;
  border: none;
  padding: 0px;
}
/* .visaBtn:hover{
  transform: scale(0);
} */
.ApplyBox{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.applyitems img{
  width: 100%;
  max-width: 160px;
  height: 100%;
  max-height: 160px;
  border-radius: 50%;
  border: 3px solid #fff;
}
.ApplyBox h4{
  color: #29ABE2;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.visaCountry  {
  display: flex;
  flex-direction: column;
  gap: 25px;
  
}
.visaCountry a img {
  width: 50px;
  height: 33px;
  margin-left: 5px;
  
}


/* Responsive  */

@media only screen and (max-width: 1800px){
  .About {
    padding: 45px 0px;
  }
  .box-list p {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .h3-lg {
    font-size: 2.0rem;
  }
  .ComonBtn a {
    font-size: 14px;
  }
  .Applytop h2 {
    font-size: 2.25rem;
  }
  .qulityTitle h2 {
    font-size: 34px;
    line-height: 42px;
  }
  .qulityPara p {
    font-size: 14px;
  } 
  .image_block_two .image-shape .shape-3 {
    right: 85px;
    top: 215px;
    width: 150px;
    height: 150px;
    border: 10px solid #EC4E4F;
  }
  .EasySteps h2 {
    font-size: 32px;
  }
  .topTittle span {
    font-size: 15px;
    line-height: 15px;
  }
  .WorkStepsCircle .inner-box .count-text {
    font-size: 16px;
  }
  .WorkStepsCircle .inner-box .count-text span {
    font-size: 18px;
    line-height: 15px;
  }
  .WorkStepsCircle .inner-box h3 {
    font-size: 22px;
    line-height: 22px;
  }
  .chooseHeading h6 {
    font-size: 15px;
    line-height: 22px;
  }
  .whyChooseUsData {
    gap: 35px;
  }
  .topTittle h6 {
    font-size: 30px;
  }
  .topTittle p {
    font-size: 16px;
    line-height: 24px;
  }
  .testim .cont div p {
    font-size: 14px;
  }
  .Ielts_Partnership h2, .trainingForms h2 {
    margin: 0;
    font-size: 24px;
  }
  
}

@media only screen and (max-width: 1399px){

  .qulityTitle h2 {
    font-size: 25px;
    line-height: 32px;
  }
  .Univercity h2 {
    font-size: 15px;
  }
  .flagsname h6 {
    font-size: 16px;
  }
  .WorkStepsCircle .inner-box {
    width: 235px;
    height: 235px;
  }
  .WorkStepsCircle .inner-box h3 {
    font-size: 16px;
    line-height: 18px;
  }
  .WorkStepsCircle .inner-box .count-text {
    width: 75px;
    height: 75px;
    padding-top: 20px;
  }
  .WorkStepsCircle .inner-box .count-text span {
    font-size: 15px;
    line-height: 12px;
  }
  .WorkStepsCircle .inner-box .count-text::before {
    width: 104px;
    height: 104px;
    left: -13px;
    top: -13px;
  }


}

@media only screen and (max-width: 1199px){

  .box-list p {
    margin-bottom: 12px;
    font-size: 12px;
  }
  .abut_img {
    max-width: 80%;
  }
  span.section-id {
    margin-bottom: 5px;
  }
  .h3-lg {
    font-size: 1rem;
  }
  .ApplyBox h4 {
    font-size: 18px;
  }
  .QualityEducations {
    background-size: 295px 445px;
  }
  .QualityEducationsTwo {
    background-size: 300px 240px;
  }
  .image_block_two .image-shape .shape-1 {
    left: 19px;
    bottom: 55px;
    width: 130px;
    height: 130px;
  }
  .image_block_two .image-shape .shape-2 {
    right: 75px;
    top: 105px;
    width: 130px;
    height: 130px;
  }
  .image_block_two .image-shape .shape-3 {
    right: 45px;
    top: 170px;
    width: 110px;
    height: 110px;
  }
  .WorkStepsCircle .inner-box {
    width: 180px;
    height: 180px;
  }
  .WorkStepsCircle .inner-box .count-text {
    width: 60px;
    height: 60px;
    font-size: 14px;
  }
  .WorkStepsCircle .inner-box .count-text span {
    font-size: 14px;
    line-height: 8px;
  }
  .WorkStepsCircle .inner-box .count-text::before {
    width: 90px;
    height: 90px;
  }
  .chooseHeading h6 {
    font-size: 12px;
    line-height: 20px;
  }
  .subscribe-content-box {
    padding: 32px 30px 32px;
  }
  .subscribe-title h2 {
    font-size: 26px;
    line-height: 30px;
  }
  .subscribe-title p {
    font-size: 15px;
    line-height: 22px;
  }
  .clients_videos {
    padding: 100px 0px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 50px;
  }

}


@media only screen and (max-width: 991px){

  .item img {
    width: 100%;
    height: 75vh;
  }
  .caption-txt h2 {
    font-size: 2.75rem;
  }
  .VisaNavPills {
    margin: 0px auto 60px 0px !important;
  }
  .Visa_Contents {
    grid-template-columns: 1fr;
    grid-row-gap: 60px;
  }
  .box-list p {
    font-size: 15px;
  }
  .abut_img {
    max-width: 45%;
  }
  .img-fluid {
    max-width: 45%;
  }
  .box-list p {
    font-size: 13px;
  }
  .Ask_Adviser {
    padding-bottom: 50px;
  } 
  .about-4-txt {
    padding: 50px 0px 0px 0px;
  }
  .callAgent {
    justify-content: center;
  }
  .ComonBtn a {
    font-size: 12px;
    padding: 8px 12px;
  }
  .callAgent h6 {
    font-size: 16px;
  }
  .VisaApply {
    padding: 50px 0px;
  }
  .Applytop h2 {
    font-size: 1.25rem;
  }
  .ApplyBox h4 {
    font-size: 14px;
  }
  .qulityTitle h2 {
    font-size: 20px;
    line-height: 25px;
  }
  .lookQuality {
    gap: 12px;
    padding: 20px 0px;
  }
  .qulityPara p {
    font-size: 11px;
  }
  .image_block_two .image-box img {
    height: 100%;
    min-height: 310px;
  }
  .image_block_two .image-shape .shape-1 {
    left: 20px;
    bottom: 15px;
    width: 100px;
    height: 100px;
  }
  .image_block_two .image-shape .shape-2 {
    right: 50px;
    top: 70px;
    width: 112px;
    height: 112px;
  }
  .image_block_two .image-shape .shape-3 {
    right: 60px;
    top: 140px;
    width: 80px;
    height: 80px;
    border: 5px solid #EC4E4F;
  }
  .flagsname {
    gap: 5px;
  }
  .flagsname img {
    width: 60px;
    height: 60px;
  }
  .WorkStepsCircle {
    padding: 50px 0px 0px 0px;
    gap: 130px;
    flex-direction: column;
  }
  .WorkStepsCircle .inner-box::after {
    top: inherit;
    bottom: -85px;
    right: inherit;
    transform: rotate(90deg);
  }
  .WorkStepsCircle .inner-box {
    width: 235px;
    height: 235px;
  }
  .WorkStepsCircle .inner-box .count-text {
    width: 75px;
    height: 75px;
    font-size: 16px;
  } 
  .WorkStepsCircle .inner-box .count-text::before {
    width: 104px;
    height: 104px;
  }
  .WorkStepsCircle .inner-box h3 {
    font-size: 22px;
    line-height: 22px;
  }
  .visaApplyCard2 {
    gap: 45px;
  }
  .visaApplyCard {
    grid-gap: 20px;
    padding: 60px 0px 60px 0px;
  }
  .whyChooseUsData {
    gap: 15px;
    padding-left: 10px;
  }
  .swiper-slide {
    max-height: 225px;
  }
  .topTittle p {
    max-width: 80%;
  }
  .testim .cont div p {
    font-size: 12px;
  }

  .FooterData {
    grid-template-columns: repeat(2,1fr);
    grid-row-gap: 70px;
  }

}


@media only screen and (max-width: 767px){

  .VisaNavPills {
    gap: 22px;
  }
  .abut_img {
    max-width: 65%;
  }
  .img-fluid {
    max-width: 60%;
  }
  .visaApplyCard {
    grid-template-columns: repeat(2,1fr);
    text-align: center;
  }
  .visaApplyCard2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    text-align: center;
  }
  .image_block_two .image-shape .shape-2 {
    right: 80px;
    top: 140px;
  }
  .image_block_two .image-shape .shape-3 {
    right: 70px;
    top: 190px;
    width: 125px;
    height: 125px;
    border: 8px solid #EC4E4F;
  }
  .qulityTitle h2 {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }
  .qulityPara p {
    text-align: center;
    font-size: 14px;
  }
  .qulityPara {
    padding: 5px 0px 34px 0px;
  }
  .Univercity h2 {
    font-size: 22px;
    text-align: center;
  }
  .uniflag {
    padding: 30px 0px 0px 0px;
    gap: 25px;
    justify-content: center;
  }
  .QualityEducationsTwo {
    background-size: 220px 160px;
  }
  .QualityEducations {
    background-size: 280px 350px;
  }
  .whyChooseUsData {
    padding-left: 0px;
    padding-top: 50px;
  }
  .clients_videos {
    grid-template-columns: repeat(1,1fr);
  }
  .topTittle p {
    font-size: 13px;
    max-width: 100% !important;
  }
  .testim .cont div p {
    font-size: 11px;
    width: 100%;
  }
  .testim .cont div .img img {
    max-width: 180px;
    max-height: 180px;
  }
  .Ielts_Partnership h2, .trainingForms h2 {
    font-size: 32px;
    text-align: center;
  }
  .iltspartner {
    justify-content: center;
    width: 100%;
    padding: 0px 0px 70px 0px;
  }
  .contBTN {
    text-align: center;
  }
  .subscribe-content-box {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .subscribe-title p {
    font-size: 14px;
    line-height: 18px;
  }
  .subscribe-box {
    max-width: 327px;
    margin: 0 auto;
  }
  .subscribe-form input[type="email"] {
    height: 45px;
    border-radius: 6px;
  }
  .subscribe-form button {
    font-size: 21px;
    line-height: 32px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
  }
  .subscribe-content-box {
    padding: 20px 20px ;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
  .d-nn{
    display: block;
  }
  .d-bb{
    display: none;
  }

}

@media only screen and (max-width: 480px){

  .caption-txt h2 {
    font-size: 1.75rem;
  }
  .caption-txt h4 {
    font-size: 16px;
  }
  .scrolled-offset {
    margin-top: 0px;
  } 
  .item img {
    height: 65vh;
  }
  .VisaNavPills .nav-item .nav-link {
    font-size: 16px;
    padding: 0px 0px 5px 0px ;
  } 
  .VisaNavPills {
    gap: 10px;
  }
  .box-list p {
    font-size: 12px;
  }
  span.section-id {
    text-align: center;
  }
  .h3-lg {
    text-align: center;
  }
  .sucess_Story_Img {
    width: 100%;
    max-width: 330px;
  }  
  .client {
    text-align: center;
  }
  .SuccessStotry {
    padding: 55px 0px;
  }
  .arrival_city {
    right: 40px;
  }
  .caption-txt {
    left: 8%;
  }
  .departure_city {
    left: 23px;
  }
  .iata_code {
    font-size: 4rem;
    opacity: 0.5;
    top: 100px;
  }
  .applyitems img {
    max-width: 135px;
    max-height: 135px;
  }
  .EasySteps h2 {
    font-size: 26px;
  }
  .logo a img {
    max-height: 60px !important;
  }
  .QualityEducations {
    background-size: 165px 215px;
  }
  .QualityEducationsTwo {
    background-size: 150px 105px;
  }
  .Univercity h2 {
    font-size: 18px;
  }
  .qulityTitle h2 {
    font-size: 28px;
    line-height: 35px;
  }
  .chooseHeading h6 {
    font-size: 14px;
  }
  .box-list-icon {
    margin-top: -1px;
  }
  .testim .cont div p {
    font-size: 10px;
    line-height: 14px;
  }
  .topTittle p {
    line-height: 20px;
  }
  .copyright-text p {
    font-size: 14px;
    line-height: 0px;
  }
  .footer-bottom .outer-box {
    padding: 8px 0;
  }
  .footer-menu ul {
    margin: 0;
  }
  .footer-menu ul li a {
    font-size: 14px;
    line-height: 30px;
  }

}


@media only screen and (max-width: 412px){

  .item img {
    height: 50vh;
  }
  .VisaNavPills {
    margin: 0px auto 18px 0px !important;
  }
  .Applytop h2 {
    line-height: 28px;
  }
  .FooterData {
    grid-template-columns: 1fr;
  } 
  .topTittle h6 {
    font-size: 25px;
  }
  .testim .cont div h2 {
    margin: 40px 0;
  }
  .subscribe-title p {
    font-size: 12px;
  }

  .earth {
    width: 100px;
    height: 100px;
    background-size: 234px;
  }
  .plane {
    max-width: 57%;
    left: 0;
    right: 0;
  }
  .plane-img {
    max-width: 85%;
  }
  .iata_code {
    font-size: 3.5rem;
    top: 45px;
  }
  .arrival_city {
    right: -252px;
  }
  .departure_city {
    left: -260px;
  }
  .caption-txt h2 {
    font-size: 26px;
  }
  .caption-txt {
    top: 65px;
  }

  .testim .arrow {
    display: none;
  }





}

@media only screen and (max-width: 375px){

  .QualityEducationsTwo {
    background-size: 0;
  }
  .sucess_Story_Img a.play-btn {
    right: -19px;
    bottom: 20px;
  }
  .play-btn {
    width: 60px;
    height: 60px
  }
  .WorkStepsCircle .inner-box {
    width: 200px;
    height: 200px;
  }
  .WorkStepsCircle .inner-box h3 {
    font-size: 18px;
    line-height: 18px;
  }
  .qulityPara p {
    font-size: 11px;
  }
  .qulityTitle h2 {
    font-size: 22px;
    line-height: 28px;
  }
  .Univercity h2 {
    font-size: 16px;
  }
  .qulityPara {
    padding: 5px 0px 20px 0px;
  }
  .uniflag {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .flagsname {
    gap: 5px;
  }
  .EasySteps h2 {
    font-size: 22px;
  }
  .ChooseTittle {
    padding-bottom: 45px;
  }
  .play-btn::before {
    width: 70px;
    height: 70px;
    top: -10%;
    left: -8%;
  }

 





}


