body {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  color: #484848;
  overflow-x: hidden;
}
p {
  /* color: rgba(255,255,255,0.8); */
}
h1,
h2,
h3,
h4,
h5,
h6 {
  /* color: var(--bs-white-color); */
}
a {
  text-decoration: none;
}
ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
:root {
  --primary-color1: #0078ac;
  --primary-color2: #0e4073;
  --light-blue: #079cdd;
  --white: #fff;
  --yellow-color: #facc49;
  --lgt-txt-color: rgb(220, 232, 255);
  --title-color: #36374c;
  --drk-color: #2c2f34;
  --txt-color: #55535d;
}
section {
  padding: 50px 0;
}
.auto-container {
  max-width: 1320px;
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
.white-btn {
  background: #fff;
  color: var(--primary-color2);
  padding: 9px 18px;
  display: inline-block;
  border-radius: 0 10px;
  text-decoration: none;
  font-size: 14px;
}
.white-btn span {
  display: inline-block;
  margin-left: 5px;
}
/*---------primary-----button------start----------*/
.primary-btn {
  background: linear-gradient(
    to right,
    var(--primary-color2),
    var(--primary-color1)
  );
  color: var(--white);
  padding: 9px 18px;
  display: inline-block;
  border-radius: 0 10px;
  text-decoration: none;
  font-size: 14px;
}
.primary-btn:hover {
  background: linear-gradient(
    to left,
    var(--primary-color2),
    var(--primary-color1)
  );
  color: var(--white);
}
.primary-btn span {
  display: inline-block;
  margin-left: 5px;
}
/*--------primary--------button-------end-------*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset !important; /* your bg color */
  -webkit-text-fill-color: #000 !important; /* text color */
  transition: background-color 5000s ease-in-out 0s;
}
/*--------top----header-----start--------*/
.top-header {
  background-color: var(--primary-color2);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.top-header:before {
  content: "";
  width: 40%;
  height: 100%;
  background-color: var(--light-blue);
  position: absolute;
  left: 0px;
  top: 0px;
  border-radius: 0px 50px 0px 0px;
}
.top-links ul {
  display: flex;
  column-gap: 14px;
  position: relative;
}
.top-links ul li:nth-child(1) {
  padding-right: 13px;
  position: relative;
}
.top-links ul li:nth-child(1):after {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background-color: #ffffff78;
  top: 3px;
  right: 0px;
}
.top-links ul li i {
  color: var(--light-blue);
  width: 28px;
  height: 27px;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  line-height: 27px;
  font-size: 12px;
}
.top-links ul li a {
  color: #f7f7f7;
  font-size: 14px;
}
.login-scl-icn-wrp {
  display: flex;
  justify-content: end;
  column-gap: 10px;
  align-items: center;
}
.login-btn {
  padding-right: 25px;
}
.login-btn a {
  font-size: 15px;
  color: var(--white);
  background-color: var(--primary-color1);
  padding: 6px 19px;
  height: 40px;
  line-height: 28px;
  display: block;
  transition: 0.2s ease;
}
.login-btn a:hover {
  background-color: var(--light-blue);
}
.top-socails-icns ul {
  display: flex;
  column-gap: 7px;
  justify-content: end;
}
.top-socails-icns ul li a {
  background-color: var(--white);
  color: var(--primary-color2);
  width: 29px;
  height: 28px;
  display: inline-block;
  text-align: center;
  line-height: 28px;
  border-radius: 50%;
  font-size: 13px;
  transition: 0.3s ease;
}
.top-socails-icns ul li a:hover {
  background-color: var(--light-blue);
  color: var(--white);
}
/*------top------header------end-------*/
.header {
  width: 100%;
  position: relative;
  padding: 5px 0;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}
.header.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 0px;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
  background-color: rgba(252, 252, 252, 0.91);
  top: 0px;
  z-index: 99;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/* Normal nav (not sticky) */
nav {
  width: 100%;
  background: var(--white);
  transition: all 0.3s ease-in-out;
}
/* Sticky Nav */
nav.sticky-on {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--white);
  box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
}
nav .navbar {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0px 0px;
}
.logo a img {
  width: 100px;
}
nav .navbar .menu {
  display: flex;
  column-gap: 40px;
}
nav .navbar .menu li {
  position: relative;
}
nav .navbar .menu li a {
  text-decoration: none;
  color: var(--title-color);
  font-size: 15px;
  font-weight: 500;
  padding: 27px 0px;
  display: inline-block;
  transition: all 0.3s ease-out 0s;
}
nav .navbar .menu li a:hover {
  color: var(--light-blue);
}
.menu-item-has-children {
  position: relative;
}
/* TOGGLE ICON */
.menu-toggle {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
/* PLUS */
.menu-toggle::before {
  content: "+";
  font-size: 18px;
}
/* MINUS (HOVER DESKTOP & OPEN MOBILE) */
.menu-item-has-children:hover .menu-toggle::before,
.menu-item-has-children.open .menu-toggle::before {
  content: "−";
  color: var(--light-blue);
}
/* Hide submenu by default */
.menu-item-has-children .sub-menu {
  display: none;
}
/* When hovering menu item, show submenu */
.menu-item-has-children:hover > .sub-menu {
  display: block;
}
nav .navbar .menu li.menu-item-has-children:hover > a:after {
  background: var(--primary-color1);
}
nav .navbar .menu li .sub-menu {
  position: absolute;
  background: var(--white);
  min-width: 255px;
  transition: all 0.3s ease-out 0s;
  top: 100%;
  opacity: 0;
  box-shadow: 2px 0px 8px -5px #4a4b53;
  visibility: hidden;
  z-index: 99;
  text-align: left;
  transform: scale(1, 0);
  transform-origin: 0 0;
  padding: 5px 10px;
}
nav .navbar .menu li:hover > .sub-menu {
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
}
.navbar .menu li .sub-menu a {
  color: var(--title-color);
  font-size: 14px;
  font-weight: 400;
  background-color: #54afd721;
  width: 100%;
  padding: 0px 7px;
  margin-bottom: 7px;
  height: 34px;
  line-height: 30px;
  border-radius: 5px;
  display: inline-block;
  transition: all 0.3s ease-out 0s;
}
.navbar .menu li .sub-menu a:hover {
  color: var(--light-blue);
}
.navbar .nav-links .sidebar-logo {
  display: none;
}
.navbar .menubar-icon {
  display: none;
}
/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(48, 69, 109, 0.85);
  display: none;
  z-index: 99;
}
.overlay.active {
  display: block;
}
.menu-icn-apply-btn-bx .login-btn {
  display: none;
}
/*----------header-----------wrap----------end-----------------*/
/* start banner */
.banner {
  position: relative;
  z-index: 9;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.innr-video-bx::after {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    90deg,
    rgba(15, 65, 116, 0.8) 25%,
    rgba(46, 67, 117, 0.08) 60%,
    rgba(32, 0, 255, 0) 100%
  );
  position: absolute;
  left: 0px;
  top: 0px;
  margin-top: 0px;
}
.banner .banner_img {
  width: 100%;
  height: 100vh;
}
.banner .banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.banner_cntnt {
  position: absolute;
  width: 100%;
  top: 45%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.banner-content .hdgH1 {
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: 0.5px;
}
.banner-content .hdgH1 .hdgHighLight {
  color: var(--yellow-color);
}
.banner-content p {
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0.5px;
  text-align: left;
  line-height: 23px;
  padding-bottom: 16px;
}
.banner-content .hghlgt-txt-shape {
  position: absolute;
  top: 77px;
  left: 16%;
}
.banner-content .hghlgt-txt-shape img {
  width: 118%;
}
.banner-btns-group {
  display: flex;
  column-gap: 14px;
}
/* end banner */
/*-------about------wrap----start-----*/
.about-sctn {
  padding: 50px 0px 55px;
}
.main-lft-abt-wrp {
  position: relative;
  display: flex;
  text-align: end;
  column-gap: 23px;
}
.abt-img-bx-1 img {
  width: 80%;
  border-radius: 0px 65px 0px 65px;
}
.abt-plane {
  position: absolute;
  top: 0px;
  left: -101px;
  text-align: left;
  z-index: -1;
  transform: rotate(5deg);
}
.abt-plane img {
  width: 75%;
}
.abt-shape-up {
  margin: 58px -73px -40px 0px;
}
.abt-shape-up img {
  width: 17%;
}
.abt-shape-dwn {
  bottom: 37px;
  position: absolute;
  z-index: -1;
  left: 18%;
}
.abt-shape-dwn img {
  width: 63%;
}
.year-exp-circle {
  width: 140px;
  height: 140px;
  position: relative;
  border-radius: 50%;
  background: linear-gradient(316deg, rgb(15, 65, 115), rgb(0, 120, 172));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  margin: 0px 15px 15px auto;
}
/* Center Number */
.year-exp-circle h5 {
  color: var(--white);
  font-size: 55px;
  font-weight: 800;
  margin: 0;
  position: absolute;
  z-index: 10;
}
/* Text around circle */
.circle-text {
  width: 140px;
  height: 140px;
  position: absolute;
  top: 0;
  left: 0;
}
/* Actual rotating curved text */
.circle-text text {
  font-size: 9px;
  fill: #fff;
  letter-spacing: 1.2px;
  animation: rotateText 15s linear infinite;
  transform-origin: 50px 50px;
  text-transform: uppercase;
}
@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.abt-img-bx-2 {
  position: relative;
  display: inline-block;
}
.abt-img-bx-2 img {
  width: 100%;
  border-radius: 45px 0px 45px 0px;
  position: relative;
  height: 310px;
  object-fit: contain;
}
.abt-img-bx-2::after {
  content: "";
  position: absolute;
  width: 228px;
  height: 312px;
  background-color: #e7ecf1;
  border: 1px solid rgba(14, 64, 115, 0.28);
  border-radius: 0px 0px 60px 0px;
  top: 19px;
  right: -22px;
  z-index: -1;
}
.about-content p {
  font-size: 15px;
  line-height: 26px;
  text-align: justify;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}
.abt-para-scnd {
  position: relative;
  margin-bottom: 25px;
}
.abt-para-scnd:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 5px;
  height: 94%;
  background-color: var(--primary-color1);
  border-radius: 30px;
}
.abt-para-scnd p {
  padding-left: 20px;
}
/*------heading-------wrap--------start--------*/
.heading-bx {
  position: relative;
  margin-bottom: 25px;
}
.hdng-small-title {
  font-size: 19px;
  text-decoration: underline;
  color: var(--primary-color1);
  font-weight: 600;
  padding-bottom: 5px;
  display: inline-block;
}
.hdng_main_title {
  font-size: 33px;
  color: var(--title-color);
  line-height: 40px;
  font-weight: 800;
}
.hghlgt-txt {
  color: var(--primary-color1);
  position: relative;
}
.hghlgt-txt-shape {
  position: absolute;
  top: 66px;
  left: 48%;
  display: none;
}
.hghlgt-txt-shape img {
  width: 76%;
}
/*-------heading-------wrap--------end-------*/


/*--------director--------wrap-----start---------*/

.director-wrap{
  background-color: var(--white);
  box-shadow: rgba(106, 106, 167, 0.25) 0px 13px 27px -5px, rgba(163, 163, 191, 0.3) 0px 8px 16px -8px;
  border-radius: 23px;
  margin: auto;
  width: 90%;
}

.director_img {
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 0 10px rgb(78 76 92 / 28%);
  position: relative;
  padding: 18px;
}
.director_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
  border-radius: 25px;
}
.director_img::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.director_img:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}



.director_img::after{
  content: '';
  width: 50%;
  height: 100%;
  background-color: var(--primary-color1);
  position: absolute;
  left: 0px;
  top: 0px;
}

.director-content{
  padding: 15px 35px 15px 10px;
}


.director-content h5{
  font-size: 25px;
  margin-bottom: 3px;
  font-weight: 600;
  color: var(--title-color);
}


.director-content span{
  color: var(--primary-color1);
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 10px;
  display: inline-block;
}

.director-content p{
  font-size: 16px;
  line-height: 31px;
  color: var(--txt-color);
  text-align: justify;
  margin-bottom: 12px;
}


/*----------------------------*/

.recognize-content-wrp{
  width: 80%;
  margin: 40px auto 0px;
}


.recognize-content-wrp h5{
  font-size: 23px;
  color: var(--title-color);
  font-weight: 700;
  text-align: center;
}

.recognize-content-wrp p{
  font-size: 15px;
  color: var(--txt-color);
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 27px;
}


/*--------director------wrap-----end-----------*/




/*----------------------------------------*/





/*------about------wrap------end------*/
/*--------counter----wrap-------start--------*/
.main-counter-wrp {
  display: grid;
  grid-template-columns: 3.4fr 1fr;
  gap: 5px 25px;
}
/*--------------------------------------*/
.agnt-glbl-bx {
  background-color: #e6f2f7;
  border: 1px solid rgba(7, 156, 221, 0.81);
  text-align: center;
  padding: 45px 55px;
  border-radius: 75px 5px 5px 5px;
}
.count-img {
  border-radius: 10px;
  overflow: hidden;
}
.glbl-cunt-icn {
  width: 75px;
  height: 73px;
  border-radius: 50%;
  background-color: var(--light-blue);
  text-align: center;
  line-height: 67px;
  margin: auto;
  padding: 2px;
}
.glbl-cunt-icn img {
  width: 60%;
}
.agnt-glbl-bx h6 {
  font-size: 32px;
  color: var(--light-blue);
  padding-top: 19px;
  font-weight: 800;
}
.agnt-glbl-bx p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.innr-dshd-bdr-bx {
  height: 100%;
}
.main_counter-bx {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 12px;
  align-items: center;
}
.counter-bx {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  border-radius: 10px;
  border: 1px solid #d1d5dd;
  padding: 7px 8px;
  column-gap: 18px;
  width: 100%;
  height: 85px;
  align-items: center;
  transition: 0.8s ease-in-out;
}
.counter-bx:hover {
  background: linear-gradient(
    0deg,
    var(--primary-color2) 0%,
    var(--light-blue) 55%
  );
}
.counter-bx:hover h6,
.counter-bx:hover h3 {
  color: var(--lgt-txt-color);
}
.counter-bx h6 {
  font-size: 25px;
  color: var(--title-color);
  margin-bottom: 0px;
  font-weight: 700;
}
.counter-bx h3 {
  font-size: 15px;
  margin-bottom: 0px;
  line-height: 22px;
}
/*------------------------------------*/
.rgt-bst-awrd-bx {
  background-color: var(--primary-color1);
  border-radius: 8px 8px 90px 8px;
  padding: 15px 10px;
}
.innr-dshd-bdr-bx {
  border: 2px dashed var(--white);
  padding: 15px 10px;
  border-radius: 8px 8px 90px 8px;
}
.awrd-batch-icon {
  text-align: center;
  background: linear-gradient( 182deg, rgb(30, 143, 192) 0%, rgba(39, 158, 209, 0.13) 87% );
  width: 140px;
  height: 155px;
  margin: auto auto 21px;
  border-radius: 0px 0px 60px 60px;
  backdrop-filter: blur(50px);
  line-height: 139px;
}
.awrd-batch-icon img {
  width: 75%;
}
.bst-awrd-content {
  margin-bottom: 27px;
}
.bst-awrd-content h5 {
  color: #faf063;
  text-align: center;
  font-size: 25px;
  letter-spacing: 0.8px;
  line-height: 28px;
  padding-bottom: 9px;
}
.bst-awrd-content p {
  text-align: center;
  font-size: 14px;
  color: var(--lgt-txt-color);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
/*-------counter------wrap-----end------------*/
/*--------special----programmes--------wrap------start------------*/
.program-sctn .hghlgt-txt-shape {
  top: 39px;
  left: 48%;
}
.programmes-slider {
  margin-top: 45px;
}
.programmes-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #d8e1f0;
  transition: 0.4s;
}
.prgrm-img {
  overflow: hidden;
}
.prgrm-img img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  transition: all 500ms ease;
  position: relative;
  transition: transform 0.5s ease;
  transform: scale(1.12);
}
.programmes-card:hover img {
  transform: scale(1);
}
.prgrm-content {
  position: relative;
  padding: 40px 13px 10px;
  /*transform: translateY(29px);*/
  transition: all 600ms ease;
}
/*.programmes-card:hover .prgrm-content{
  transform: translateY(-7px);
}*/
.prgrm-content h3 {
  font-size: 15px;
  text-align: center;
}
.prgrm-content p {
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 9px;
}
.prgrm-content a {
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.prgrm-icon {
  background-color: var(--light-blue);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  position: absolute;
  bottom: 13%;
  left: 0px;
  border: 4px solid var(--white);
  right: 0px;
  margin: auto;
}
.prgrm-icon img {
  width: 27px !important;
  margin: auto;
  padding-top: 14px;
  height: auto;
  transform: unset;
  filter: brightness(0) invert(1);
}
/*-------special----programmes-------wrap------end----------*/
/*--------destination------wrap----start-----------*/
.destination-sctn {
  width: 100%;
  position: relative;
  padding: 50px 0px;
  background-color: #e6f2f7;
}
.destinations-slider {
  padding-top: 50px;
}
.desti-card {
  position: relative;
  transition: all 600ms ease;
}
.desti-img-bx {
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  overflow: hidden;
  width: 285px;
  height: 285px;
  margin: auto auto;
}
.desti-img-bx img {
  transition: 0.3s ease;
}
.desti-content {
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.16) -6px 4px 30px -3px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  margin: -31px auto 20px;
  position: relative;
  width: 95%;
  left: 0%;
  right: 0%;
  border-radius: 5px 5px 15px 15px;
  padding: 20px 20px;
  text-align: center;
  transition: all 600ms ease;
}
.desti-card:hover .desti-content {
  background-color: var(--primary-color1);
}
.desti-content:before {
  content: "";
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 26px solid var(--white);
  position: absolute;
  left: 0%;
  right: 0%;
  width: 20px;
  margin: auto;
  top: -26px;
  transition: all 600ms ease;
}
.desti-card:hover .desti-content:before {
  border-bottom: 26px solid var(--primary-color1);
}
.desti-content:after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/country/country-map.png);
  background-size: contain;
  display: block;
  filter: grayscale(56%) brightness(100%);
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  opacity: 0;
}
.desti-card:hover .desti-content:after {
  opacity: 0.4;
}
.innr-desti-cntnt {
  position: relative;
  z-index: 1;
}
.innr-desti-cntnt img {
  width: 50px !important;
  height: 50px;
  margin: auto auto 9px;
}
.desti-card:hover .desti-img-bx img {
  transform: scale(1.1);
}
.innr-desti-cntnt h6 {
  font-size: 18px;
  color: var(--title-color);
  font-weight: 600;
  padding-bottom: 10px;
  letter-spacing: 0.5px;
}
.desti-card:hover .primary-btn {
  background: var(--white);
  color: var(--primary-color1);
}
.desti-card:hover .innr-desti-cntnt h6 {
  color: var(--white);
}
/*-----------destination------wrap------end-------*/
/*------testimonials-------wrap------start----------*/
.testimonials-sctn {
  position: relative;
  padding: 50px 0px;
  background-color: var(--primary-color1);
}
.testi-wrap {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 5px 35px;
  align-items: center;
}
.testi-review-slider {
  padding-top: 50px;
}
.testi-review-slider .owl-item {
  padding-top: 50px;
}
.testi-slider .hghlgt-txt {
  color: var(--yellow-color);
}
.testi-slider .hghlgt-txt-shape {
  top: 72px;
  left: 18%;
}
.testi-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 10px 10px;
  position: relative;
}
.testi-user-icon {
  position: absolute;
  left: 0px;
  right: 0px;
  width: 70px;
  height: 70px;
  margin: -50px auto 0px;
}
.quote-icn {
  font-size: 55px;
  color: #0078ac2b;
  position: absolute;
  top: -8px;
  left: 18px;
}
.name-rating-bx h6 {
  font-size: 14px;
  color: var(--primary-color1);
  text-align: center;
  font-weight: 600;
  margin-bottom: 5px;
  padding-top: 32px;
}
.rating-icon {
  display: flex;
  column-gap: 5px;
  justify-content: center;
  margin-bottom: 12px;
}
.rating-icon li {
  font-size: 13px;
  color: var(--yellow-color);
}
.testi-card p {
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: justify;
  padding: 0px 15px 9px;
  margin-bottom: 0px;
  color: var(--title-color);
  line-height: 25px;
}
.testi-review-slider .owl-dot.active span {
  background: var(--white) !important;
}
.testi-review-slider .owl-dot span {
  border: 1px solid #fff;
  background-color: transparent !important;
}
/*------testimonials-------wrap-----end----------*/
/*-------blog-------wrap-----start----------*/
.blog-sctn .hghlgt-txt-shape {
  top: 37px;
  left: 46%;
}
/*--------------------------------------*/
.blog-slider {
  margin-top: 45px;
}
.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #d8e1f0;
}
.blog-img {
  overflow: hidden;
  position: relative;
  transition: transform 0.5s ease;
}
.blog-img img {
  transition: transform 0.5s ease;
}
.blog-dtl-card .blog-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
  position: relative;
  border-radius: 15px;
  object-position: top;
}
.blog-card:hover .blog-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.blog-pst-date {
  position: absolute;
  background-color: var(--light-blue);
  top: 13px;
  right: 12px;
  border-radius: 8px;
  text-align: center;
  overflow: hidden;
}
.blog-pst-date h4 {
  color: var(--white);
  margin-bottom: 0px;
  padding: 8px 0px;
}
.blog-pst-date p {
  background-color: var(--white);
  color: var(--title-color);
  margin-bottom: 0px;
  font-size: 11px;
  padding: 2px 8px;
}
.blog-card .content {
  padding: 15px;
}
.blog-admin-date-bx ul {
  border-bottom: 1px solid var(--light-blue);
  margin-bottom: 13px;
  padding-bottom: 11px;
}
.blog-admin-date-bx ul li {
  background-color: #079cdd1c;
  border-radius: 25px;
  padding: 4px 12px;
  color: var(--drk-color);
  width: fit-content;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  column-gap: 6px;
}
.blog-admin-date-bx ul li i {
  color: var(--light-blue);
}
.blog-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--drk-color);
  line-height: 29px;
}
.blog-card .read-more {
  text-decoration: none;
  color: #7f7e86;
  font-weight: 600;
  transition: 0.3s;
  font-size: 14px;
}
.blog-card .read-more:hover {
  color: #023e8a;
}
/* --- OWL CUSTOM ARROWS --- */
.owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.owl-nav button {
  background: #003d66 !important;
  color: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  pointer-events: all;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.owl-nav button:hover {
  background: #0077b6 !important;
}
/* --- DOTS --- */
.owl-dots {
  margin-top: 15px;
  text-align: center;
}
.owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc !important;
  border-radius: 50%;
  margin: 5px 7px;
  transition: 0.3s;
  display: block;
}
.owl-dot.active span {
  background: #003d66 !important;
  transform: scale(1.2);
}
/*--------blog---------wrap------end------*/
/*-------blog------detail-----wrap---start-----*/
.blog-dtl-card h2 {
  font-size: 31px;
  font-weight: 600;
  color: var(--title-color);
  padding-bottom: 5px;
}
.blg-dtl-para p {
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 21px;
  text-align: justify;
  letter-spacing: 0.5px;
  color: var(--txt-color);
}
.blog-dtl-card .blog-admin-date-bx {
  padding-top: 15px;
}
/*-------blog------detail-----wrap---end-----*/
/*----------footer-------wrap-------start------*/
.footer {
  color: var(--white);
  padding: 50px 0 0 0;
  width: 100%;
  background: linear-gradient(rgba(12, 55, 99, 0.94), rgba(12, 55, 99, 0.94)),
    url("../img/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Container Columns */
.footer-inner {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr 2.4fr 1.7fr;
  gap: 40px 10px;
}
/* Logo column */
.footer-logo {
  width: 110px;
  margin-bottom: 20px;
  background-color: var(--white);
  border-radius: 5px;
}
.foot-abt p {
  font-size: 14px;
  line-height: 27px;
  letter-spacing: 0.5px;
  color: var(--lgt-txt-color);
  width: 92%;
}
.social {
  display: flex;
  column-gap: 10px;
}
.social li a {
  width: 35px;
  height: 35px;
  background-color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  transition: 0.2s ease;
  color: var(--primary-color1);
  font-size: 15px;
  display: inline-block;
}
.social li:hover a {
  background-color: var(--primary-color1);
  color: var(--white);
}
/* Titles */
.foot-list h3,
.newsletter h3 {
  font-size: 18px;
  margin-bottom: 22px;
  font-weight: 600;
  letter-spacing: 0.7px;
}
/* Lists */
.foot-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.foot-list ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 17px;
}
.foot-list ul li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--primary-color1);
  position: absolute;
  top: 8px;
  left: 0px;
}
.foot-list ul li a {
  color: #dce8ff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.5px;
}
/* Newsletter box */
.newsletter {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 42px 0px 42px 0px;
}
.newsletter p {
  margin: 10px 0 26px;
  font-size: 15px;
  color: #dce8ff;
  letter-spacing: 0.7px;
  line-height: 25px;
}
.newsletter-box input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 30px;
  border: 1px solid #7aa7d6;
  background: transparent;
  color: var(--white);
  margin-bottom: 15px;
}
.newsletter-box input:focus {
  box-shadow: none;
  outline: 0;
}
.newsletter-box button {
  background: #1da1f2;
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
}
/* Bottom Bar */
.footer-bottom {
  margin-top: 20px;
  padding: 25px 0;
  text-align: center;
}
/* Contact bar pill */
.contact-bar {
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  padding: 12px 25px;
  border-radius: 50px;
  gap: 25px;
  font-size: 14px;
  width: fit-content;
  margin: auto;
}
.contact-bar i {
  margin-right: 6px;
  width: 27px;
  height: 27px;
  background-color: var(--white);
  color: var(--primary-color1);
  border-radius: 50%;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
}
.footer-bottom p {
  margin-top: 20px;
  color: var(--lgt-txt-color);
  font-size: 14px;
  margin-bottom: 0px;
  letter-spacing: 0.5px;
}
/*----------footer-------wrap-------end-----*/
/*------breadcrumb-------wrap---start--------*/
.breadcrumb-sctn {
  content: "";
  width: 100%;
  height: 297px;
  background-position: top center;
  position: relative;
  align-items: center;
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-brdcrm {
  background: url(../img/about-brdcrmb.png);
}
.career-counselling-brdcrm {
  background-image: url(../img/career-counselling-brdcrmb.png);
}
.services-brdcrm {
  background-image: url(../img/services-brdcrmb.png);
}
.study-brdcrm {
  background-image: url(../img/study-brdcrmb.png);
}
.partner-brdcrm {
  background-image: url(../img/partner-brdcrmb.png);
}
.training-brdcrm {
  background-image: url(../img/training-brdcrmb.png);
}
.career-brdcrm {
  background-image: url(../img/career-brdcrmb.png);
}
.blog-brdcrm {
  background-image: url(../img/blog-brdcrmb.png);
}
.programme-brdcrmb {
  background-image: url(../img/programme-brdcrmb.png);
}
.contact-brdcrmb {
  background-image: url(../img/contact-brdcrmb.png);
}
.inner-brdcrmb-content h3 {
  color: var(--white);
  text-align: center;
}
.inner-brdcrmb-content ul {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
.inner-brdcrmb-content ul li a {
  color: var(--white);
}
.inner-brdcrmb-content ul li {
  color: var(--yellow-color);
  position: relative;
}
.inner-brdcrmb-content ul li:after {
  content: "\f054";
  position: absolute;
  color: var(--white);
  font-size: 11px;
  font-family: fontawesome;
  padding-left: 7px;
  padding-top: 4px;
}
.inner-brdcrmb-content ul li:last-child:after {
  display: none;
}
/*------breadcrumb-------wrap---end--------*/
/*-----about------counter---wrap---start------*/
.about-counter-sctn {
  background-color: #e6f2f7;
  width: 100%;
  padding: 50px 0px;
  position: relative;
}
.about-counter-sctn:before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/about-counter-msk.png);
  background-size: cover;
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0%;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
}
.about-counter-sctn:after {
  content: "";
  position: absolute;
  top: 18%;
  right: 0%;
  background-image: url(../img/about-counter-plane.png);
  background-repeat: no-repeat;
  width: 110px;
  height: 100%;
  background-size: contain;
}
.about-counter-sctn .counter-bx {
  background-color: var(--white);
  position: relative;
  margin-bottom: 17px;
}
/*-----about------counter---wrap---endt------*/
/*-----mission-----vision----wrap------start-------*/
.mission-vision-sctn {
  position: relative;
  padding:50px 0px 30px;
}
.mission-vision-sctn:after {
  content: "";
  position: absolute;
  top: 18%;
  left: 0%;
  background-image: url(../img/paper-plane.png);
  background-repeat: no-repeat;
  width: 110px;
  height: 100%;
  background-size: contain;
}
.mission-vision-sctn .hghlgt-txt-shape {
  top: 37px;
  left: 44%;
}
.mison-visn-icon img {
  width: 95px;
  margin-bottom: 12px;
  position: relative;
}
.mison-visn-icon-hvr {
  opacity: 0;
}
/*------------------------------*/
.mison-visn-icon-hvr {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(1) translateX(0);
  transition: 0.7s ease;
}
.mission-crd:hover .mison-visn-icon-hvr {
  opacity: 0.07;
  transform: scale(1.8) translateX(100%) translateY(47%);
}
.vision-crd:hover .mison-visn-icon-hvr {
  opacity: 0.05;
  transform: scale(1.8) translateX(110%) translateY(55%);
}
/*--------------------------------*/
.mission-crd {
  border-radius: 0px 35px 0px 35px;
  background-color: #079cdd1a;
  padding: 15px 20px;
  height: 345px;
  transition: all 500ms ease;
  position: relative;
}
.mission-crd:hover {
  box-shadow: 4px 4px 0px 5px var(--light-blue);
}
.mission-crd h5 {
  color: var(--title-color);
  font-size: 24px;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 5px;
}
.mission-crd p {
  color: var(--title-color);
  font-size: 14px;
  line-height: 27px;
  letter-spacing: 0.5px;
  text-align: left;
}
.vision-crd {
  border-radius: 35px 0px 35px 0px;
  background-color: #11719a;
  padding: 15px 20px;
  height: 345px;
  transition: all 1.3s ease;
  position: relative;
}
.vision-crd:hover:after {
  content: "";
  position: absolute;
  top: 13px;
  left: 7px;
  border: 1px solid var(--light-blue);
  width: 100%;
  height: 99%;
  border-radius: 0px 0px 35px 0px;
  z-index: -1;
}
.vision-crd h5 {
  color: var(--white);
  font-size: 24px;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 5px;
}
.vision-crd p {
  color: var(--white);
  font-size: 14px;
  line-height: 27px;
  letter-spacing: 0.5px;
  text-align: justify;
}
.vision-mission-img {
  overflow: hidden;
  border-radius: 0px 35px 0px 35px;
}
.vision-mission-img img {
  transition: all 500ms ease;
  height: 345px;
  object-fit: cover;
}
.vision-mission-img:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/*-----mission-----vision----wrap------end-------*/
/*------services----page----wrap----start--------*/
/* GRID WRAPPER */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 21px 21px;
  justify-content: center;
}
.service-card {
  position: relative;
  background: var(--white);
  text-align: center;
  border-radius: 12px;
  box-shadow: rgba(134, 136, 158, 0.5) 0px 1px 4px;
  overflow: hidden;
  cursor: pointer;
  width: 23%;
}
/* -------- HOVER IMAGE -------- */
.service-crd-hvr-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.hover-img {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: top 0.9s ease;
  z-index: 1;
}
.service-card:hover .hover-img {
  top: 0;
}
/* -------- BACKGROUND COLOR OVERLAY -------- */
.color-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 120, 172, 0.73) 0%,
    rgba(0, 120, 172, 0.88) 100%
  );
  transition: bottom 0.9s ease;
  z-index: 2;
}
.service-card:hover .color-overlay {
  bottom: 0;
}
/* -------- CONTENT -------- */
.service-inr-content {
  position: relative;
  padding: 25px 15px 0px;
  z-index: 5;
  transition: transform 0.45s ease;
}
.service-card:hover .service-inr-content {
  transform: translateY(-15px);
}
/* Icon */
.icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  box-shadow: 0px 0px 0px 2px var(--light-blue);
  background-color: var(--white);
  text-align: center;
  line-height: 59px;
  margin: auto;
  transition: 0.35s ease;
}
.icon-wrap img {
  width: 35px;
  height: auto;
}
.service-card:hover .icon-wrap {
  box-shadow: 0px 0px 0px 5px rgba(148, 211, 208, 0.45);
}
.service-card h3 {
  margin: 16px 0 11px;
  color: var(--title-color);
  font-size: 18px;
  transition: color 0.35s ease;
}
.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}
.service-card p {
  color: #5c5965;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  transition: color 0.35s ease;
}
.service-card .read-more {
  display: inline-block;
  transform: translateY(25px);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.service-card:hover .read-more {
  transform: translateY(0);
  opacity: 1;
  color: var(--white);
}
/*-------services---page----wrap------end--------*/
/*--------services-------inner------pages---wrap---start--------*/
/*.inner-service-sctn {
  padding: 80px 0px;
}
.inner-service-content {
  display: grid;
  grid-template-columns: 45fr 60fr;
  gap: 15px 40px;
}
.inner-service-lft-img {
  position: relative;
  margin: 0px 0px 0px auto;
}
.service-img-1-plane {
  position: absolute;
  left: -158px;
  top: -10%;
}
.service-img-1-plane img {
  width: 160px !important;
  object-fit: contain !important;
  box-shadow: none !important;
}
.inner-service-lft-img .image-1 {
  position: relative;
}
.inner-service-lft-img .image-1 img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
  aspect-ratio: 7 / 9.5;
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.08);
  max-width: 380px;
}
.inner-service-lft-img .image-2 img {
  width: 67%;
  position: absolute;
  top: 81px;
  left: -150px;
  border-radius: 20px;
  border: 9px solid var(--white);
  box-shadow: 0 8px 25px rgb(0 0 0 / 0.12);
  object-fit: cover;
  aspect-ratio: 4 / 4.6;
}
.inner-service-lft-img .year-exp-circle {
  position: absolute;
  top: 330px;
  left: -17%;
}


.inner-service-rgt-text h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}
.inner-service-rgt-text p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 19px;
  color: var(--title-color);
  text-align: justify;
}

.service_quote-box {
  background: #079cdd1a;
  border-left: 6px solid var(--light-blue);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: var(--title-color);
  letter-spacing: 0.5px;
  margin: 15px 0px;
}*/

/*--------======================================================--------*/
  
  .service-img{
    position: relative;
  }

  .service-img img{
    border-radius: 2px 2px 25px 2px;
    box-shadow: 12px 8px 13px 2px #d1dce6;
  }


  .service-right-content{
    padding-left: 15px;
  }


  .service-right-content h3{
    font-size: 27px;
  font-weight: 700;
  color: var(--title-color);
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  }

  .service-name-title{
    color: var(--primary-color1);
  }

  .service-right-content p{
    font-size: 16px;
  line-height: 28px;
  color: var(--txt-color);
  text-align: justify;
  margin-bottom: 10px;
  }


  .why-service-sctn{
    padding: 50px 0px 0px;
    width: 100%;
  }

  .why-service-list ul{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 30px;
    margin: 40px auto;
  }

    .why-service-list ul li{
      background-color: #0078ac1c;
      padding: 18px 20px;
      width: 100%;
      height: 115px;
      text-align: left;
      font-size: 14px;
      font-weight: 500;
      position: relative;
      border: 1px dashed #0078ac57;
      border-radius: 25px 5px 5px 2px;
      line-height: 23px;
    }


    .why-service-sctn p{
      font-size: 15px;
      color: var(--txt-color);
      letter-spacing: 0.5px;
      text-align: center;
      background-color: #e3f0f6;
      width: fit-content;
      margin: auto;
      padding: 10px 21px;
      border-radius: 20px;
      box-shadow: inset 0px 0px 5px 5px #7d94a342;
    }


    .career-cnslng-sctn{
      width: 100%;
      padding: 70px 0px;
      position: relative;
      background-color: rgb(230, 242, 247);
    }


     .career-cnslng-sctn::after{
      content: '';
      position: absolute;
      right: 0px;
      top: 0px;
      background-color: var(--primary-color1);
      width: 20%;
      height: 100%;
    }

    .main-counsilling-list ol{
       counter-reset: num; 
       padding-left: 20px; 
    }

    .main-counsilling-list > ol > li{
      padding: 0px 0px 15px 55px;
      counter-increment: num;
      position: relative;
      list-style: none;
    }

    .main-counsilling-list > ol > li::before {
      content: counter(num);
        position: absolute;
        left: 0px;
        top: 0px;
        width: 38px;
        height: 38px;
        background: var(--primary-color1);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 500;
        border: 2px dashed var(--white);
    }

    .main-counsilling-list ol li strong{
      font-size: 20px;
      color: var(--title-color);
    }

    .main-counsilling-list ol li p{
      font-size: 16px;
      color: var(--txt-color);
      line-height: 25px;
      letter-spacing: 0.5px;
      margin-bottom: 0px;
    }



    .main-counsilling-list > ol > li ul{
       display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 5px;
        margin: 15px 0px;
        width: 90%;
        list-style: none; 
        padding-left: 0; 
    }

    .main-counsilling-list > ol > li ul li{
      position: relative;
    padding-left: 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--txt-color);
    }



    .main-counsilling-list > ol > li ul li:after{
      content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid var(--primary-color1);
    left: 0px;
    top: 8px;

    }

    .apprch-img{
      position: relative;
      width: 100%;
      height: 72%;
      border: 2px solid #0078ac61;
      padding: 5px;
      border-radius: 50px;
      background-color: var(--white);
    }

  
    .apprch-img img{
      width: 95%;
      position: relative;
      z-index: 1;
      border-radius: 50px;

    }

    /*--------------------------------*/

    .main-stdy-abrd-wrap{
      max-width: 1200px;
      background-color: #eee;
      margin: auto;
      padding: 40px 50px 30px;
      border-radius: 40px;
      border: 1px solid #0c487b21;
    }

    .stdy-abrd-flg-bx{
      text-align: center;
      background-color: var(--white);
      width: 100%;
      max-width: 155px;
      height: auto;
      box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 9px -2px, rgba(0, 0, 0, 0.3) 0px 3px 4px -3px;
      margin: 0px auto 15px;
      border-radius: 10px;
      padding: 10px 10px;
      position: relative;
    }


    .innr-abrd-flg img{
      width: 90px !important;
      margin: auto;
      box-shadow: 1px 1px 7px 2px #ddd;
      border-radius: 50%;
    }

    .stdy-abrd-flg-bx h6{
      padding-top: 9px;
      font-size: 15px;
      color: var(--title-color);
      font-weight: 600;
      margin-bottom: 7px;
      letter-spacing: 0.5px;
    }

    .flag-bttm-txt p{
      text-align: center;
      font-size: 20px;
      letter-spacing: 0.5px;
      color: var(--title-color);
      font-weight: 600;
      padding-top: 20px;
      margin-bottom: 0px;
    }



    /*-------------------------------*/

    .why-choose-sctn{
      width: 100%;
      padding: 50px 0px;
      position: relative;
      background-color: rgb(230, 242, 247);
    }

    .why-choose-bx{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px 15px;
      margin: 20px auto 0px;
    }


    .innr-wy-choose-bx{
      width: 355px;
      margin: auto;
      height: 155px;
      padding: 20px 18px;
      box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
      border-radius: 8px;
      position: relative;
      background-color: var(--white);
    }

    .innr-wy-choose-bx:after{
      content: '';
      position: absolute;
      bottom: 0px;
      right: 0px;
      border-bottom: 50px solid var(--primary-color1);
      border-left: 70px solid transparent;
    }


    .innr-wy-choose-bx h6{
      font-size: 18px;
      color: var(--title-color);
      font-weight: 600;
      border-bottom: 1px solid #c2c5c9;
      padding-bottom: 5px;
      text-align: center;
    }

    .innr-wy-choose-bx p{
      font-size: 14px;
      margin-bottom: 0px;
      color: var(--txt-color);
      line-height: 25px;
      letter-spacing: 0.5px;
    }


    /*------------------------------------------*/

    .service-benfit-wrp{
      position: relative;
      width: 90%;
      margin: auto;
      display: flex;
      gap: 10px 20px;
      background-color: #e4e8ef;
      border-radius: 10px;
      border: 1px solid #d2d5dc;
      overflow: hidden;
    }

    .service-video{
      width: 470px;
      height: 500px;
    }

    .service-video video{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


    .service-benifit-list h3{
      color: var(--white);
      font-size: 27px;
      line-height: 35px;
    }


    .service-benifit-list{
      background-color: rgb(13, 69, 120);
      padding: 30px 30px;
      width: 55%;
      border-radius: 28px;
      margin: 20px auto;
    }


    .service-benifit-list ul{
      margin: 25px 0px 0px 15px;
    }

    .service-benifit-list ul li{
      font-size: 19px;
      font-weight: 500;
      padding-bottom: 15px;
      position: relative;
      padding-left: 29px;
      color: #e4dddd;
      letter-spacing: 0.5px;
    }

    .service-benifit-list ul li::before{
      content: '\f061';
      font-family: fontawesome;
      font-size: 16px;
      position: absolute;
      left: 0px;
      top: 5px;
      color: #b7d3df;
    }

.service-benifit-list p{
  color: #fff
}

.service-scores-wrp{
    position: relative;
    width: 90%;
    display: flex;
    gap: 10px 20px;
    background-color: #e4e8ef;
    border-radius: 10px;
    border: 1px solid #d2d5dc;
    overflow: hidden;
    padding: 30px 30px;
    margin: 20px auto;
}
.service-scores-list h3 {
    color: var(--white);
    font-size: 27px;
    line-height: 35px;
}
.service-scores-list p {
    color: #fff;
}
.service-scores-list ul {
    margin: 25px 0px 0px 15px;
}
/*-------=========training-------wrap-----start==========-------------*/

.training-sectn1{
  position: relative;
  padding: 50px 0px;
}



.lft-traing-contnt h2{
  font-size: 28px;
  color: var(--title-color);
  padding-bottom: 15px;
}

.lft-traing-contnt h2 span{
  font-weight: 700;
  color: var(--primary-color1);
}

.lft-traing-contnt p{
  font-size: 16px;
  line-height: 25px;
  color: var(--txt-color);
  letter-spacing: 0.5px;
  text-align: justify;
  width: 95%;
}


.rgt-traing-img{
  position: relative;
  width: 100%;
  height: 395px;
}

.rgt-traing-img:after{
  content: '';
  position: absolute;
  border: 13px solid var(--primary-color1);
  width: 27%;
  right: 0px;
  top: 0px;
  height: 90%;
  border-radius: 0px 55px;
}

.rgt-traing-img:before{
  content: '';
  position: absolute;
  border: 3px solid #0078ac69;
  width: 27%;
  right: 19px;
  top: 18px;
  height: 90%;
  border-radius: 0px 40px;
}


.rgt-traing-img img{
  width: 93%;
  position: absolute;
  z-index: 1;
  height: 90%;
  right: 35px;
  top: 35px;
  object-fit: cover;
}

/*--------------------------*/

.wy-choose-prgrm-sctn{
  position: relative;
  padding: 50px 0px;
}

.wy-choose-trng-course{
  background-color: #eee;
  width: 100%;
  height: 245px;
  padding: 15px 20px;
  border-radius: 13px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 16px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}


.wy-choose-trng-course h6{
  font-size: 20px;
  color: var(--title-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.wy-choose-trng-course ul{
  border: 1px solid #036a9e2e;
  padding: 15px 20px;
  border-radius: 25px;
  width: fit-content;
  background-color: var(--white);
}

.wy-choose-trng-course ul li{
  font-size: 16px;
  padding-bottom: 12px;
  color: var(--txt-color);
  letter-spacing: 0.52px;
  position: relative;
  padding-left: 23px;
}

.wy-choose-trng-course ul li:before{
  content: '\f356';
  font-family: fontawesome;
  position: absolute;
  top: 0px;
  left: 0px;
  color: var(--primary-color1);
}


.traning-module-wrp{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px 15px;
  margin-top: 25px;
}

.traning-module-wrp .trng-mdl-bx{
  width: 200px;
  height: 70px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 3px 9px 0px;
  display: flex;
  column-gap: 15px;
  align-items: center;
  padding: 10px 15px;
  border-radius: 7px;
  border: 1px solid #d9dde3;
}

.trng-mdl-bx img{
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.trng-mdl-bx p{
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 600;
  color: var(--txt-color);
  letter-spacing: 0.5px;
}


/*------------------------*/


.trning-key-featre-sctn{
  position: relative;
  padding: 20px 0px 60px;
}

.trning-key-feature-wrp{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 26px;
  margin-top: 20px;

}

.innr-key-ftr-bx{
  width: 22%;
  height: 100px;
  padding: 20px 15px;
  border-radius: 10px;
  box-shadow: rgba(169, 170, 236, 0.17) 0px -13px 15px 0px inset, rgba(46, 74, 104, 0.15) 0px -16px 10px 0px inset, rgba(172, 175, 224, 0.1) 0px -39px 20px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(127, 137, 162, 0.09) 0px 10px 8px, rgba(0, 0, 0, 0.09) 0px 12px 6px;
  display: flex;
  align-items: center;
  font-size: 17px;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: var(--title-color);
}

/*------------------------------*/

.traing-two-column-sctn{
  position: relative;
  padding: 40px 0px;
}

.traing-two-column-bx{
  border-radius: 10px;
  background-color: rgb(230, 242, 247);
  padding: 22px 25px;
  border: 1px dashed var(--primary-color1);
  width: 100%;
  /* height: 345px; */
}

.traing-two-column-bx h3{
  font-size: 21px;
  font-weight: 600;
  color: var(--primary-color1);
  border-bottom: 1px solid #ddd;
  margin-bottom: 18px;
  text-transform: uppercase;
  padding-bottom: 5px;
}

.traing-two-column-bx h6{
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--title-color);
}

.traing-two-column-bx ul{
  margin-bottom: 10px;
}


.traing-two-column-bx > ul > li{
  position: relative;
  font-size: 15px;
  color: var(--txt-color);
  padding-bottom: 6px;
  letter-spacing: 0.5px;
  padding-left: 19px;
}

.traing-two-column-bx > ul > li:before{
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--primary-color1);
  position: absolute;
  top: 7px;
  left: 0px;
}

.traing-two-column-bx p{
  font-size: 14px;
  color: var(--txt-color);
  margin-bottom: 0px;
}


/*------------------------------------*/

.traing-join-score-sctn{
  background-color: rgb(230, 242, 247);
  padding: 0px 0px;
  position: relative;
}

.innr-traing-join-score-wrap{
  display: flex;
  gap: 20px 20px;
  margin: auto;
  width: 85%;
  justify-content: center;
}

.traing-join-score-bx{
  position: relative;
  padding: 50px 0px;
  width: 50%;
}

.traing-join-score-bx:after{
  content: '';
  position: absolute;
  right: 0px;
  top: 0px;
  width: 2px;
  height: 100%;
 background-color: var(--primary-color1);
}

.innr-traing-join-score-wrap .traing-join-score-bx:last-child:after{
  display: none;
}

.traing-join-score-bx h2{
  font-size: 22px;
  font-weight: 600;
  color: var(--title-color);
}

.traing-join-score-bx ul{
  margin-top: 25px;
}

.traing-join-score-bx ul li{
  font-size: 15px;
  padding-bottom: 15px;
  position: relative;
  padding-left: 25px;
}


.traing-join-score-bx ul li:before{
  content: '\f00c';
  position: absolute;
  font-size: 12px;
  font-family: fontawesome;
  left: 0px;
  top: 5px;
  color: #31a818;
}

.traing-join-score-bx p{
  font-size: 15px;
  margin-bottom: 0px;
  color: var(--txt-color);
  letter-spacing: 0.5px;
}

/*-------=========training-------wrap-----end==========-------------*/    


/*--------======================================================--------*/

/* Get In Touch Section */
.get-in-touch {
  width: 100%;
  height: 430px;
  background: url(../img/get-in-touch-img.png);
  background-position: top center;
  color: var(--white);
  padding: 60px 20px 0px 20px;
  text-align: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.get-in-touch h3 {
  font-weight: 700;
  font-size: 33px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.get-in-touch p {
  font-weight: 400;
  font-size: 17px;
  margin: 0px auto 18px;
  width: 50%;
  letter-spacing: 0.7px;
  line-height: 24px;
  color: #d4d5e9;
}

.get-in-touch h6{
  color: #326379;
  font-size: 19px;
  background-color: rgba(255, 255, 255, 0.64);
  width: fit-content;
  margin: auto;
  padding: 5px 15px;
  letter-spacing: 0.7px;
  border-radius: 15px;
  border: 1px dashed var(--white);
  backdrop-filter: blur(0px);
}




/* Form and map container */
.form-map-container {
  max-width: 1100px;
  margin: -190px auto 74px auto;
  background: var(--white);
  border-radius: 0px 20px 0px 20px;
  box-shadow: 0 5px 9px rgba(34, 31, 57, 0.19);
  display: flex;
  gap: 0;
  overflow: hidden;
}
/* Form section */
.form-section {
  flex: 1 1 500px;
  padding: 30px 40px 40px 40px;
}
.frm-inpt-bx {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  width: 100%;
}
.innr-frm-inpt-slct {
  margin-bottom: 14px;
  position: relative;
}
.innr-frm-inpt-slct.has-feedback i{
  position: absolute;
  top: 40px;
  right: 18px;
}
.innr-frm-inpt-slct.has-feedback i.fa-times{
  color: #f00;
}
.innr-frm-inpt-slct.has-feedback i.fa-check{
  color: rgba(40, 214, 40, 1);
}
.innr-frm-inpt-slct.has-feedback .help-block{
  color: #f00;
}




.frm-inpt-lbl {
  font-size: 13px;
  color: var(--title-color);
  padding-bottom: 4px;
}
/* Input fields */
input,
select,
textarea {
  width: 100%;
  padding: 5px 16px;
  border-radius: 25px;
  border: 1px solid #ccc;
  font-size: 13px;
  transition: border-color 0.3s;
  height: 47px;
  background-color: var(--white);
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #0c84ff;
  box-shadow: 0 0 5px #0c84ffaa;
}
.frm-txtarea-bx textarea {
  min-height: 88px;
  resize: none;
  padding: 10px 16px;
  border-radius: 10px;
}
/* Submit button */
.frm-btn {
  margin-top: 20px;
}
.frm-btn a {
  width: 100%;
  text-align: center;
  padding: 13px 18px;
}
/* Submit button End */
/* Map section */
.map-section {
  flex: 1 1 500px;
  min-height: 360px;
  padding: 35px 30px 35px 0px;
}
.map-section iframe {
  border: none;
  width: 100%;
  height: 100%;
}
/*---------services-----inner----pages-----wrap------end--------*/
/*--------training-------page----wrap---------start----------*/
/* -------- TOP SECTION GRID -------- */
.training-section {
  padding: 70px 0;
}
.train-prgm-img img {
  border-radius: 30px;
}
.traning-programs-title-bx {
  position: relative;
}
.traning-programs-title-bx:after {
  content: "";
  position: absolute;
  right: 0px;
  background-size: 100%;
  width: 215px;
  height: 215px;
  background-image: url(../img/traing-globe-icn.png);
  top: -54px;
}
.traning-programs-title-bx h6 {
  color: #0085d1;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.traning-programs-title-bx h2 {
  font-size: 30px;
  font-weight: 700;
  width: 90%;
  line-height: 40px;
}
.training-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 25px 30px;
  margin-top: 55px;
}
.training-left p {
  line-height: 31px;
  color: var(--txt-color);
  font-size: 15px;
  letter-spacing: 0.7px;
  text-align: justify;
}
/* --------TRAINING BLUE FEATURE CARD -------- */
.training-features {
  background: var(--primary-color1);
  padding: 28px 20px 10px 30px;
  border-radius: 10px;
}
.training-features li {
  margin-bottom: 17px;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
  letter-spacing: 0.7px;
  font-size: 16px;
  color: var(--white);
}
.training-features li:last-child {
  margin-bottom: 0px;
}
.training-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
}
/* -------- RIGHT IMAGE -------- */
.training-right img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
/* -------- LOWER SECTION -------- */
.training-types-section {
  padding: 60px 10%;
  background: #f9f9f9;
  border-top: 3px solid var(--light-blue);
}
/* -------- TYPE CARDS -------- */
.type-card {
  background: var(--white);
  border-radius: 27px;
  box-shadow: 0 2px 5px rgba(150, 150, 150, 0.2);
  padding: 25px 20px;
  text-align: center;
  border: 1px solid #d7e5ef;
}
.type-img {
  width: 50%;
  margin-bottom: 15px;
  height: 200px;
  object-fit: cover;
}
.type-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.type-card p {
  color: var(--txt-color);
  line-height: 22px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-align: justify;
  margin-bottom: 0px;
  padding: 0px 10px 0px;
}
/*--------training-------page----wrap---------end----------*/
/*----------career------page------wrap-----start--------*/
.join-or-team {
  padding-left: 15px;
}
.join-or-team h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--title-color);
  padding-bottom: 7px;
}
.join-or-team p {
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--txt-color);
  line-height: 25px;
  text-align: justify;
}
/*---------------------------------*/
.wrk_wth_us {
  background: #ebf6fa;
  padding: 50px 0;
}
.wrk_wth_us .hghlgt-txt-shape {
  top: 39px;
  left: 48%;
}
.wrk_wth_us .hghlgt-txt-shape img {
  width: 56%;
}
/*--==================================--*/
.wrk_row {
  padding-top: 3%;
  position: relative;
}
.line_bx {
  position: absolute;
  top: 24%;
  left: 0%;
  right: 0%;
  margin: auto;
}
.wrk-prc {
  width: 100%;
  text-align: center;
  position: relative;
  transition: all 500ms ease;
}
.wrk-prc .icn {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 0 27px rgba(14, 65, 115, 27%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  background: linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(to right, #0e4073, #0e4073) border-box;
  border: 2px solid transparent;
  transition: all 1.2s ease;
}
.wrk-prc:hover .icn {
  background: linear-gradient(#0e4073, #0e4073) padding-box,
    linear-gradient(to right, #0e4073, #0e4073) border-box;
}
.wrk-prc .icn img {
  width: 75px;
  transition: all 0.4s ease;
}
.wrk-prc:hover .icn img {
  filter: brightness(0) invert(1);
}
.wrk-circle-dwn {
  padding-top: 23%;
}
.wrk-prc .icn .num {
  width: 33px;
  height: 33px;
  background: var(--primary-color2);
  position: absolute;
  top: 16px;
  right: -12px;
  border-radius: 50%;
  color: var(--white);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 30px;
  border: 2px solid var(--white);
}
.wrk-prc:hover .icn .num {
  background: var(--white);
  color: var(--primary-color2);
  border: 2px solid var(--primary-color2);
}
.work_cntnt {
  padding-top: 17px;
}
.work_cntnt h6 {
  font-size: 19px;
  text-align: center;
  font-weight: 600;
  color: var(--title-color);
  letter-spacing: 0.5px;
}
.work_cntnt p {
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.5px;
  color: var(--txt-color);
}
/*---------------------------------*/
.crrnt-opp-title {
  margin-bottom: 50px;
}
.crrnt-opp-title p {
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--txt-color);
}
.job-card {
  box-shadow: rgba(0, 0, 0, 0.45) 0px 20px 20px -20px;
  padding: 0px 5px 10px;
  margin-bottom: 30px;
}
.job-card h3 {
  font-size: 20px;
  color: var(--primary-color2);
  padding-bottom: 7px;
}
.job-card p {
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 26px;
  margin-bottom: 26px;
}
.hw_to_apply_sctn {
  background: #ebf6fa;
}
.hw_to_apply_sctn h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}
.hw_to_apply_sctn p {
  font-size: 17px;
  line-height: 30px;
  text-align: center;
}
/*----------career------page------wrap-----end--------*/
/*---------study---------destination-------wrap------start---------*/
.inner-study-sctn {
  padding: 70px 0px 50px;
}
.inner-study-content {
  display: grid;
  grid-template-columns: 45fr 50fr;
  gap: 15px 35px;
}
.inner-study-lft-text h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 40px;
}
.inner-study-lft-text p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 19px;
  color: var(--title-color);
  text-align: justify;
}
.inner-study-rgt-img {
  position: relative;
  margin: 0px 0px 0px auto;
}
.inner-study-rgt-img .image-1 {
  position: relative;
}
.inner-study-rgt-img .image-1 img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
  aspect-ratio: 7 / 8.2;
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.08);
  max-width: 380px;
}
.inner-study-rgt-img .image-2 img {
  width: 67%;
  position: absolute;
  top: 3%;
  left: -280px;
  border-radius: 20px;
  border: 9px solid var(--white);
  box-shadow: 0 8px 25px rgb(0 0 0 / 0.12);
  object-fit: cover;
  aspect-ratio: 4 / 5.1;
}
.study-img-1-plane {
  position: absolute;
  left: -180px;
  bottom: -10%;
}
.study-img-1-plane img {
  width: 160px !important;
  object-fit: contain !important;
  box-shadow: none !important;
}
.inner-study-rgt-img .year-exp-circle {
  position: absolute;
  top: 31%;
  left: -19%;
}
/*----------------------------------------------*/
/*-----why------study-----wrap----start---------*/
.wy-choose-title h2 {
  font-size: 32px;
  margin-bottom: 55px;
  font-weight: 800;
  color: var(--title-color);
}
.why-study-list h3 {
  font-size: 31px;
  margin-bottom: 26px;
  font-weight: 700;
  color: var(--title-color);
}
.why-study-list ol {
  list-style: none;
  counter-reset: custom;
}
.why-study-list ol {
  list-style: none;
  counter-reset: num;
  padding: 0;
}
.why-study-list ol li {
  counter-increment: num;
  padding-left: 55px;
  position: relative;
  padding-bottom: 12px;
}
.why-study-list ol li:before {
  content: counter(num);
  position: absolute;
  left: 3px;
  top: 9%;
  width: 38px;
  height: 38px;
  background: var(--primary-color1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  border: 2px dashed var(--white);
}
.why-study-list ol li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 7%;
  width: 44px;
  height: 44px;
  background: var(--primary-color1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
.why-study-list ol li h6 {
  font-size: 18px;
  color: var(--primary-color1);
  letter-spacing: 0.2px;
}
.why-study-list ol li p {
  font-size: 16px;
  color: var(--txt-color);
  letter-spacing: 0.5px;
  line-height: 24px;
}
/*-----why------study-----wrap----end---------*/
.top-university-sctn {
  background-color: var(--primary-color1);
  padding: 60px 0px 75px;
}
/*.uni-logo-wrp{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 27px 10px;
  padding: 38px 0px;
}
*/

.all-uni-logo-slide{
  padding-top: 35px;
}

.innr-uni-bx {
  display: flex;
  align-items: center;
  justify-content: center;
}


.innr-uni-bx{
  /*width: 225px;
  height: 90px;*/
  box-shadow: 0 2px 8px rgba(39, 55, 93, 0.22);
  background-color: var(--white);
  padding:11px 5px 5px;
  margin: auto;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}

.innr-uni-bx img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  width: 155px !important;
}


/*--------aocg------represntive-------wrap-------start---------*/
.aocg-represntive-sctn {
  width: 100%;
  padding: 70px 0px;
  background-color: #e6f2f7;
  position: relative;
}
.aocg_repsntive_img {
  display: flex;
  column-gap: 10px;
}
.aocg-img-rep-bx {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: 0.7s ease;
}
.aocg-img-rep-bx img {
  transition: 0.7s ease;
  height: 230px;
  object-fit: cover;
}
.aocg-img-rep-bx:hover img {
  transform: scale(1.1);
}
.aocg_uni-name {
  position: absolute;
  background: linear-gradient(
    0deg,
    rgba(1, 114, 166, 0.66) 50%,
    rgba(253, 187, 45, 0.17) 100%
  );
  content: "";
  width: 100%;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 28px 0px;
}
.aocg_uni-name h5 {
  color: var(--white);
  text-align: center;
  font-size: 17px;
  margin-bottom: 0px;
}
.aocg_repsntive_content h3 {
  font-size: 26px;
  line-height: 35px;
  width: 85%;
  letter-spacing: 0.5px;
  padding-bottom: 14px;
}
.aocg_repsntive_content p {
  font-size: 16px;
  line-height: 29px;
  text-align: left;
  width: 97%;
}
/*--------aocg------represntive-------wrap-------end--------*/
/*--------aocg------cost---study--scholarships--wrap-------start--------*/
.cost-study-wrap h3 {
  font-size: 28px;
  padding-bottom: 26px;
  font-weight: 800;
  color: var(--title-color);
}
.cost-tbl-bx table {
  border: 1px solid #ddd;
}
.cost-tbl-bx table thead tr th {
  background-color: var(--primary-color1);
  color: var(--white);
  padding: 7px 10px;
  letter-spacing: 0.5px;
}
.cost-tbl-bx table tbody tr td:first-child {
  border-right: 1px solid #ddd;
}
.cost-tbl-bx table tbody tr td {
  font-size: 16px;
  padding: 8px 10px;
  border-bottom: 1px solid #ddd;
}
.cost-tbl-bx table tbody tr td:last-child {
  color: var(--primary-color1);
}
.scholarships-wrp {
  position: relative;
}
.scholarships-wrp img {
  width: 100%;
  height: 355px;
  object-fit: cover;
}
.inner-schlrship-list {
  position: absolute;
  top: 0px;
  padding: 40px 45px;
}
.inner-schlrship-list h3 {
  font-size: 29px;
  color: var(--white);
  padding-bottom: 2px;
}
.inner-schlrship-list p {
  font-size: 15px;
  color: var(--lgt-txt-color);
  letter-spacing: 0.9px;
  margin-bottom: 12px;
}
.inner-schlrship-list ul {
  padding-top: 10px;
}
.inner-schlrship-list ul li {
  position: relative;
  color: var(--lgt-txt-color);
  font-size: 16px;
  padding-bottom: 15px;
  padding-left: 24px;
  letter-spacing: 0.5px;
}
.inner-schlrship-list ul li:before {
  content: "\f00c";
  font-family: fontawesome;
  position: absolute;
  left: 0px;
  font-size: 15px;
  top: 1px;
}
/*--------aocg------cost---study--scholarships-----wrap-------end-------*/
/*-------study----visa-----requirement----start---------*/
.visa-req-sctn {
  width: 100%;
  padding: 50px 0px;
  background-color: #e6f2f7;
}
.visa-req-title {
  margin-bottom: 55px;
}
.visa-req-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--title-color);
}
.visa-req-title p {
  font-size: 18px;
  font-weight: 500;
  color: var(--txt-color);
}
.inr-visa-req-bx {
  background-color: var(--white);
  border-radius: 7px;
  border-right: 2px solid #0078ac99;
  border-bottom: 2px solid #0078ac99;
  padding: 9px 12px;
  height: 150px;
}
.inr-visa-req-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background-color: var(--white);
  margin: auto auto 6px;
  text-align: center;
  line-height: 66px;
}
.inr-visa-req-img img {
  width: 45px;
}
.inr-visa-req-bx h5 {
  font-size: 15px;
  text-align: center;
  line-height: 21px;
  color: var(--title-color);
}
.inr-visa-req-two-bx .inr-visa-req-bx:nth-child(1) {
  margin-bottom: 12px;
}
.inr-visa-lrg-bx {
  height: 273px;
  justify-content: center;
  display: grid;
}
/*-------study----visa-----requirement----end---------*/
/*-------faq----wrap----start--------*/
.accdn-title h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--title-color);
  margin-bottom: 35px;
}
.accdn-wrp .accordion-item {
  margin-bottom: 17px;
}
.accdn-wrp .accordion-button:focus {
  box-shadow: none;
}
.accdn-wrp .accordion-button:not(.collapsed) {
  color: var(--primary-color1);
}
.faq-img-bx {
  text-align: center;
}
.faq-img-bx img {
  width: 400px;
}
/*-------faq----wrap----end-------*/
/*---------study---------destination-------wrap------end---------*/
/*----------partner------page-----wrap-----start------*/
.trust-partner-sctn {
  padding: 60px 0px;
}
.trst-prtnr-lft-content h2 {
  font-size: 33px;
  font-weight: 800;
  color: var(--title-color);
}
.trst-prtnr-lft-content p,
.trst-prtnr-rgt-content p {
  font-size: 16px;
  letter-spacing: 0.5px;
  text-align: justify;
  color: var(--txt-color);
}
.prtnr-img-counter-wrp {
  display: grid;
  grid-template-columns: 3fr 4fr 3fr;
  gap: 5px 27px;
  margin-top: 35px;
}
.partner-counter-wrp .counter-bx {
  margin-bottom: 15px;
}

.partner-counter-wrp .counter-bx {
  grid-template-columns: 0.5fr 1.9fr;
}

.partner-counter-wrp .counter-bx h6 {
  font-size: 26px;
}

.trst-prtnr-img {
  overflow: hidden;
  border-radius: 15px;
}
.trst-prtnr-img img {
  transition: 0.7s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trst-prtnr-img:hover img {
  transform: scale(1.1);
}
/*----------partner------page-----wrap----end--------*/
/*----------programme------page-----wrap----start--------*/
.inner-prgrm-sctn {
  padding: 80px 0px;
}
.inner-prgrm-content {
  display: grid;
  grid-template-columns: 45fr 60fr;
  gap: 15px 40px;
}
.inner-prgrm-lft-img {
  position: relative;
  margin: 0px 0px 0px auto;
}
.inner-prgrm-lft-img .image-1 {
  position: relative;
}
.inner-prgrm-lft-img .image-1 img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
  aspect-ratio: 7 / 9.5;
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.08);
  max-width: 380px;
}
.inner-prgrm-lft-img .image-2 img {
  width: 56%;
  position: absolute;
  top: 16%;
  left: -150px;
  border-radius: 20px;
  border: 9px solid var(--white);
  box-shadow: 0 8px 25px rgb(0 0 0 / 0.12);
  object-fit: cover;
  aspect-ratio: 4 / 7;
}
.prgrm-img-1-plane {
  position: absolute;
  left: -158px;
  top: -10%;
}
.prgrm-img-1-plane img {
  width: 160px !important;
  object-fit: contain !important;
  box-shadow: none !important;
}
.inner-prgrm-lft-img .year-exp-circle {
  position: absolute;
  top: 64%;
  left: -17%;
}
.inner-prgrm-rgt-text h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 26px;
  width: 80%;
  line-height: 40px;
}
.inner-prgrm-rgt-text h5 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary-color1);
}
.inner-prgrm-rgt-text p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 19px;
  color: var(--title-color);
  text-align: justify;
}
/*----------programme------page-----wrap---end--------*/
/*-------blog-------detail-----wrap-------start------*/
.blog-dtl-card {
  position: relative;
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Author */
.author {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0066cc;
  font-weight: bold;
}
.author img {
  width: 22px;
  height: 22px;
}
/* Quote box */
.quote-box {
  background: #eaf5ff;
  border-left: 4px solid #0d8aff;
  padding: 20px;
  margin: 20px 0;
  color: #0d8aff;
  font-size: 17px;
  border-radius: 6px;
}
/* checklist */
.blg_check_list {
  list-style: none;
  padding: 0;
}
.blg_check_list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
.blg_check_list li::before {
  content: "\f00c";
  font-family: fontawesome;
  color: #0d8aff;
  top: 1px;
  position: absolute;
  left: 0;
}
/* Sidebar styles */
.blog_widget {
  background: var(--white);
  padding: 20px;
  border-radius: 4px;
  box-shadow: rgba(50, 50, 93, 0.12) 0px 6px 12px -2px,
    rgba(79, 88, 114, 0.19) 0px 3px 7px -3px;
}
.blog_widget h3 {
  margin-bottom: 26px;
  font-size: 20px;
  color: var(--light-blue);
  border-bottom: 1px solid var(--light-blue);
  padding-bottom: 7px;
}
/* Search */
.search-box form {
  display: flex;
  gap: 8px;
  position: relative;
}
.search-box input {
  background-color: var(--white);
  font-size: 15px;
  font-weight: 400;
  padding: 4px 55px 4px 10px;
  width: 100%;
  border: 1px solid #d7d7df;
  color: var(--txt-color);
  border-radius: 10px;
}
.search-box button {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 47px;
  height: 46px;
  line-height: 46px;
  border-radius: 0px 10px 10px 0px;
  font-size: 15px;
  background-color: var(--primary-color1);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: none;
}
.search-box button:hover {
  background-color: var(--primary-color2);
}
/* Latest blog */
.blog-item {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.blog-item img {
  width: 70px;
  height: 69px;
  border-radius: 8px;
  object-fit: cover;
}
.blog-item a {
  font-size: 14px;
  margin: 0;
  color: var(--title-color);
  padding-bottom: 8px;
  display: inline-block;
  line-height: 20px;
  transition: 0.3s ease;
  font-weight: 600;
}
.blog-item a:hover {
  color: var(--primary-color1);
}
.blg-user-date-bx {
  display: flex;
  column-gap: 10px;
}
.blg-user-date-bx a {
  font-size: 12px;
  color: var(--title-color);
  background-color: #0078ac1f;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 9px;
  letter-spacing: 0.5px;
}
.blg-user-date-bx a i {
  color: var(--light-blue);
}
.blg-sidbr-scrll {
  height: 400px;
  overflow-y: scroll;
  scrollbar-width: thin;
}
/*------blog-------detail-----wrap-----end-------*/
/*----------contact------page-----wrap-----start------*/
.contact-section {
  position: relative;
  padding: 50px 0px;
}
.cntct-dtl-form-scl-icn-wrp {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 33fr 60fr 7fr;
  gap: 10px 20px;
}
.contact-left h2 {
  font-size: 28px;
  margin-bottom: 7px;
  color: var(--title-color);
  font-weight: 600;
}
.contact-left p {
  color: var(--txt-color);
  margin-bottom: 25px;
  font-size: 15px;
}
.contact-item {
  display: grid;
  align-items: center;
  margin-bottom: 32px;
  gap: 15px;
  grid-template-columns: 0.6fr 3fr;
}
.contact-item .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  border: 1px dashed var(--primary-color1);
  line-height: 59px;
  font-size: 21px;
  color: var(--primary-color1);
  background-color: #0078ac1a;
}
.contact-item h4 {
  margin: 0;
  font-size: 18px;
  color: var(--primary-color1);
}
.contact-item p {
  margin: 0;
  color: var(--txt-color);
  font-size: 15px;
}
/*------------------------------------*/
.contct-form-wrp {
  background-color: var(--white);
  border-radius: 0px 30px 0px 30px;
  box-shadow: 4px 4px 0px 5px var(--light-blue);
  margin-right: 5%;
}
/*---------------------------------------*/
/* SOCIAL MEDIA FLOATING BAR */
.follow-wrapper {
  display: flex;
}
/* Vertical Follow Us Text */
.follow-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(0deg);
  font-size: 24px;
  font-weight: 600;
  color: var(--light-blue);
  letter-spacing: 1px;
  margin: auto;
}
.social-sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  margin: 0px 0px 0px auto;
}
.social-sidebar:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 26%;
  background-color: var(--primary-color1);
  top: 0px;
  right: 0px;
  margin: auto;
  left: 0px;
}
.social-sidebar:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 26%;
  background-color: var(--primary-color1);
  bottom: 0px;
  right: 0px;
  margin: auto;
  left: 0px;
}
.social-icon {
  width: 34px;
  height: 34px;
  background-color: var(--primary-color1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 12px;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: var(--white);
}
/*---------------=========================--------------------*/
.office-section {
  width: 100%;
  margin: auto;
  padding: 50px 0;
  background-color: #e6f2f7;
}
.office-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #333;
}
.office-grid.two-grd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 20px 20px;
  margin-bottom: 30px;
}
.office-grid.five-grd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px 15px;
}
.office-card {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(128, 165, 203, 0.66);
  transition: 0.3s ease;
  overflow: hidden;
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 55fr 30fr;
  gap: 0px 10px;
  border: 1px solid #0078acb2;
  border-bottom: 3px solid var(--primary-color1);
}
.office-card .office-hvr-img {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: bottom 0.7s ease;
}
.office-card:hover .office-hvr-img {
  bottom: 0;
}
.office-card .color-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 120, 172, 0.73) 0%,
    rgba(0, 120, 172, 0.88) 100%
  );
  transition: bottom 0.7s ease;
}
.office-card:hover .color-overlay {
  bottom: 0;
}
.office-header {
  display: flex;
  gap: 4px 15px;
  flex-direction: row;
  align-items: center;
  transition: 0.3s ease;
  position: relative;
  z-index: 11;
}
.office-cntry-icn img {
  width: 63px;
  height: 63px;
  object-fit: contain;
}
.office-header h3 {
  margin: 0;
  font-size: 20px;
  color: var(--title-color);
  font-weight: 600;
  transition: 0.3s ease;
}
.office-card:hover .office-header h3,
.office-card:hover .office-header p,
.office-card:hover .office-info li,
.office-card:hover .office-info li i {
  color: var(--white);
}
.office-header p {
  color: var(--primary-color1);
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}
.office-info {
  padding-top: 15px;
  padding-left: 19px;
}
.office-info li i {
  color: var(--primary-color1);
  position: absolute;
  top: 6px;
  font-size: 13px;
  left: 0px;
  transition: 0.3s ease;
}
.office-info li {
  font-size: 14px;
  padding-bottom: 13px;
  color: var(--txt-color);
  display: flex;
  position: relative;
  padding-left: 18px;
  line-height: 23px;
  word-break: break-word;
  transition: 0.3s ease;
}
.offic-two-lrg-crd {
  border-right: 1px solid #acbbc1bd;
  padding-right: 15px;
  position: relative;
  z-index: 11;
}
.map-box iframe {
  width: 100%;
  height: 203px;
  border-radius: 10px;
  position: relative;
  z-index: 11;
}
.offic-five-smll-crd {
  display: block;
  padding: 16px 11px;
}
.offic-five-smll-crd .office-info {
  padding-left: 0px;
  height: 370px;
  position: relative;
  z-index: 11;
}
.offic-five-smll-crd .map-box {
  position: absolute;
  bottom: 5px;
  border-top: 1px solid #acbbc1bd;
  padding-top: 15px;
  left: 0px;
  right: 0px;
  width: 95%;
  margin: auto;
  z-index: 11;
}
.offic-five-smll-crd .map-box iframe {
  width: 100%;
  height: 140px;
  border-radius: 10px;
}
/*----------contact------page-----wrap-----end------*/
/*------modal------form---wrap----start------*/
.bttn-close {
  position: absolute;
  border: 2px solid var(--drk-color);
  right: 16px;
  font-size: 18px;
  width: 37px;
  height: 37px;
  font-weight: 400;
  border-radius: 50%;
  color: var(--drk-color);
  z-index: 2;
  background-color: transparent;
  top: 15px;
  transition: 0.5s ease;
}
.bttn-close:hover {
  background-color: var(--primary-color2);
  color: var(--white);
  border-color: var(--primary-color2);
}
.modal-backdrop {
  background-color: var(--primary-color1) !important;
}
.modal-backdrop.show {
  opacity: 0.8 !important;
}
.mdl-dlg-frm {
  max-width: 75%;
  position: relative;
}
.mdl-dlg-frm .modal-content {
  border-radius: 0px 40px 0px 40px;
  overflow: hidden;
  box-shadow: 0px 3px 10px 4px #15161a7a;
}
.popup-form-wrap {
  display: flex;
}
.popup-lft-img {
  position: relative;
}

.popup-lft-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poup-plane-image {
  position: absolute;
  top: 0%;
  right: -13%;
}
.poup-plane-image img {
  width: 150px;
}
.mdl-form-bx .form-section {
  padding: 17px 35px 25px 35px;
}
/*------modal------form---wrap----end-----*/
/*-------------------login-----wrap------start-----------------------*/
.login-wrp {
  background: var(--white);
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.15);
  margin: 40px auto;
  width: 65%;
  border: 1px solid #e5e6f2;
  position: relative;
  overflow: hidden;
}
.login-wrp:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 40%;
  height: 100%;
  border-radius: 0px 52% 20% 0px;
  background: linear-gradient(
    60deg,
    rgba(7, 156, 221, 0.17) 0%,
    rgba(14, 64, 115, 0.09) 100%
  );
}
.login-wrp:after {
  content: "";
  width: 40%;
  height: 100%;
  position: absolute;
  right: 0px;
  transform: rotate(24deg);
  clip-path: polygon(79% 0%, 100% 10%, 28% 100%, 15% 69%);
  background-color: var(--primary-color1);
  top: 45%;
}
.login-tabs-bx {
  background-color: #e6e9f0;
  position: relative;
  border-radius: 15px 15px 0px 0px;
  width: 90%;
  margin: 46px 0px 0px auto;
}
.login-tabs-bx .nav {
  position: relative;
  z-index: 9;
  justify-content: center;
}
.login-tabs-bx .nav li {
  border-right: 1px solid #cacbd1;
  width: 25%;
  position: relative;
}
.login-tabs-bx .nav .nav-item .nav-link {
  color: #3f4753;
  font-size: 0.8rem;
  margin: auto;
}
.login-tabs-bx .nav li {
  border-right: 1px solid #cacbd1;
  width: 25%;
  position: relative;
}
.login-tabs-bx .nav li:last-child {
  border-right: none;
}
.login-tabs-bx .nav li .nav-link {
  color: #3f4753;
  font-size: 0.8rem;
  margin: auto;
  border: none;
  padding: 10px 7px;
}
.login-tabs-bx .nav li .nav-link.active,
.login-tabs-bx .nav li .show > .nav-link,
.login-tabs-bx .nav .nav-link:hover {
  color: var(--primary-color1) !important;
  background-color: transparent;
  border: none;
}
.tab-icon {
  position: absolute;
  left: 0px;
  right: 0px;
  top: -41px;
  width: 50px;
  height: 50px;
  background-color: #f0f1f4;
  border-radius: 50%;
  text-align: center;
  margin: auto;
  border: 1px solid #efd3d3;
  border-bottom: none;
  line-height: 44px;
}
.tab-icon img {
  width: 33px;
}
.login-tabs-bx .nav .nav-item:last-child {
  border-right: none;
}
.login-tabs-bx .nav-pills .nav-link.active,
.login-tabs-bx .nav-pills .show > .nav-link,
.login-tabs-bx .nav-pills .nav-link:hover {
  color: var(--primary-color1) !important;
  background-color: transparent;
}
/*.merge-lft-rgt-bx{
  display: flex;
  justify-content: space-between;
}*/
.left-form-cotent {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.left-form-cotent img {
  width: 100%;
}
.right-form {
  position: relative;
  z-index: 1;
  background-color: #eceff4;
  width: 90%;
  margin: 0px 0px 0px auto;
  border-radius: 0rem 0rem 2rem 2rem;
}
.login-tabs-bx nav .nav-tabs {
  background-color: #eceff4;
  position: relative;
  border-radius: 15px 15px 0px 0px;
  border-bottom: none;
}
/*.main-lft-rgt-bx{
  display: flex;
  justify-content: space-between;
  align-items: center;
}*/
.tab-form-bx {
  width: 100%;
  margin: auto 0px auto auto;
  border: 1px solid #e4e6e7;
  padding: 1.7rem 1.6rem 1.7rem;
  border-radius: 2rem;
  background-color: var(--white);
}
.toggle-password {
  position: absolute;
  right: 19px;
  top: 16px;
  font-size: 0.65rem;
  color: #656d80;
  cursor: pointer;
  z-index: 9;
}
.right-form .form-title h4 {
  font-size: 1.3rem;
  text-align: center;
  padding-bottom: 0.2rem;
  font-weight: 600;
}
.right-form .form-title h4 .uniqe-font {
  font-size: 1.1rem;
}
.right-form .form-title h4::before {
  width: 2rem;
  height: 0.2rem;
  bottom: -0.04rem;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 1;
}
.right-form .form-title h4::after {
  content: "";
  width: 6rem;
  height: 0.1rem;
  background-color: var(--primary-color2);
  position: absolute;
  bottom: 0rem;
  left: 0px;
  border-radius: 70%;
  right: 0px;
  margin: auto;
}
/*--------------remember--------me----------wrap------start-------------*/
.remember-chkbx {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #3d3c45;
  cursor: pointer;
}
.remember-chkbx input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkmark {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 12px;
  border: 1px solid #bbc5cd;
  border-radius: 4px;
  transition: all 0.3s;
}
.remember-chkbx input[type="checkbox"]:checked ~ .checkmark {
  background-color: var(--primary-color1);
  border-color: #e56f6f;
}
.remember-chkbx input[type="checkbox"]:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.remember-chkbx input[type="checkbox"]:focus ~ .checkmark {
  box-shadow: 0 0 0 2px #dfec5065;
}
.remember-chkbx:hover input[type="checkbox"] ~ .checkmark {
  border-color: #0078ac91;
}
.remember-chkbx input[type="checkbox"]:disabled ~ .checkmark {
  opacity: 0.5;
  cursor: not-allowed;
}
.remember-chkbx input[type="checkbox"]:disabled ~ .checkmark:hover {
  border-color: #4d4d4d;
}
/*--------------remember--------me----------wrap-----end------------*/
.forgot-pass-txt {
  text-align: end;
}
.forgot-pass-txt a {
  font-size: 0.82rem;
  color: #3d3c45;
  transition: 0.3s ease;
}
.forgot-pass-txt a:hover {
  color: var(--primary-color1);
}
/*---------------already----account---text---start----------*/
.already-account-txt {
  text-align: center;
  margin: 0.6rem auto 0px;
}
.already-account-txt a {
  position: relative;
  font-weight: 600;
  font-size: 0.85rem;
  color: #32333a;
  transition: 0.3s ease-out;
}
.already-account-txt a:hover {
  color: var(--primary-color);
}
.already-account-txt a::after {
  position: absolute;
  content: "";
  width: 0;
  left: 0;
  bottom: -7px;
  background: var(--primary-color);
  height: 2px;
  transition: 0.3s ease-out;
}
.already-account-txt a:hover::after {
  width: 100%;
}
.already-account-txt a:hover::before {
  width: 100%;
}
/*---------------already----account---text---end----------*/
/*-------------------login-----wrap------end----------------------*/
/*---------register--------wrap-----------start-----------------*/
.reg-wrap {
  width: 90%;
}
.reg-wrap .left-form-cotent {
  width: 95%;
}
.reg-wrap:before {
  width: 36%;
}
.reg-wrap .right-form {
  width: 95%;
  border-radius: 2rem;
}
.reg-wrap:after {
  clip-path: polygon(85% 0%, 100% 10%, 45% 100%, 32% 73%);
}
.reg-wrap .frm-field-bx .input-group > .form-control,
.reg-wrap .frm-field-bx .input-group > .form-select {
  padding: 0.4rem;
}
.stdnt_qr-code img {
  width: 23%;
  border: 3px solid #fff;
  border-radius: 5px;
  box-shadow: 0px 2px 4px 1px #26306454;
  margin-top: 23%;
  position: absolute;
  margin-left: 16.2%;
}
.partner_qr-code img {
  width: 29%;
  border: 3px solid #fff;
  box-shadow: 0px 4px 4px 2px #a5a5ce;
  border-radius: 5px;
  margin-top: 10%;
  position: absolute;
  margin-left: 32.3%;
}
/*---------register--------wrap-----------end----------------*/
/*-------------forgot--------wrap-------start----------------*/
.forgot-wrp {
  width: 50%;
  margin: 70px auto;
}
.forgot-wrp:after {
  clip-path: polygon(81% 0%, 100% 10%, 31% 100%, 21% 69%);
}
.forgot-wrp:before {
  width: 39%;
}
/*.forgot-wrp .merge-lft-rgt-bx {
  align-items: center;
}*/
.forgot-wrp .left-form-cotent img {
  width: 80%;
}
.forgot-wrp .right-form {
  width: 100%;
  border-radius: 2rem;
}
/*-------------forgot--------wrap-------end-------------*/
.form-logo {
  text-align: center;
  margin-bottom: 2rem;
}
.form-logo img {
  width: 45%;
}
.form-title h4 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--secondry-color);
  margin-bottom: 1rem;
  text-transform: capitalize;
  letter-spacing: 0.04rem;
  position: relative;
}
.form-title h4:before {
  content: "";
  width: 5rem;
  height: 0.1rem;
  background-color: var(--primary-color1);
  position: absolute;
  bottom: 0rem;
  left: 0;
}
.form-title h4:after {
  content: "";
  width: 15rem;
  height: 0.1rem;
  background-color: var(--primary-color2);
  position: absolute;
  bottom: 0rem;
  left: 2.88rem;
  border-radius: 70%;
}
.stdnt-lft-img-title,
.form-title h5 {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color2);
  font-family: var(--heading-font);
}
.form-title h4 .uniqe-font {
  font-family: "Playwrite GB S", cursive;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--title-color);
}
.frm-field-bx {
  position: relative;
  margin-bottom: 0.7rem;
}
.frm-field-bx .form-label,
.frm-textarea-bx .form-label {
  font-size: 0.8rem;
  margin-bottom: 0rem;
  color: var(--dark-one);
  letter-spacing: 0.02rem;
  font-family: var(--heading-font);
}
.frm-icn i {
  position: absolute;
  left: 0px;
  top: 1px;
  width: 2.5rem;
  height: 39.5px;
  background-color: #e1e2ea;
  z-index: 9;
  border-radius: 5px 0px 0px 5px;
  line-height: 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--txt-color);
}
.contct-frm-title {
  position: absolute;
  left: 16px;
  top: -13px;
  background: #fafafa;
}
.frm-field-bx .input-group > .form-control,
.frm-field-bx .input-group > .form-select,
.frm-field-bx .mobile,
.frm-field-bx .p_mobile {
  border-radius: 5px !important;
  height: 2.6rem;
  padding-left: 2.8rem;
  font-size: 0.8rem;
  border: 0.08rem solid #c4c2d7;
}
.frm-field-bx .input-group > .form-control:hover,
.frm-field-bx .input-group > .form-select:hover,
.frm-field-bx .input-group > .form-control:focus,
.frm-field-bx .input-group > .form-select:focus,
.frm-textarea-bx .input-group > .form-control:focus,
.frm-textarea-bx .input-group > .form-control:hover,
.frm-field-bx .mobile:hover,
.frm-field-bx .mobile:focus,
.frm-field-bx .p_mobile:hover,
.frm-field-bx .p_mobile:focus,
.select2-container--default .select2-selection--single:hover,
.select2-container--default .select2-selection--single:focus {
  border-color: var(--primary-color1);
  outline: none;
  box-shadow: none;
}
.frm-textarea-bx {
  position: relative;
  margin-bottom: 0.7rem;
}
.frm-textarea-bx .input-group > .form-control {
  font-size: 0.9rem;
  padding: 0.2rem 0.4rem;
  resize: none;
}
.form-sbmt-btn {
  margin-top: 1rem;
}
.form-sbmt-btn button {
  border: none;
}
.frm-field-bx b {
  color: #dd3838;
}
.iti__flag {
  width: 17px !important;
}
.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 4px !important;
  font-size: 11px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #35343a !important;
  line-height: 2.5rem !important;
  font-size: 0.83rem;
  padding: 0rem 0.5rem;
  letter-spacing: 0.05rem;
}
.select2-container--default .select2-selection--single {
  background-color: #fff !important;
  border: 1px solid #c4c2d7 !important;
  border-radius: 4px !important;
  height: 42px !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 42px !important;
  top: 0px !important;
}
.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: var(--primary-color1) !important;
}
.select2-results__option {
  font-size: 13px !important;
}
#prtnr-password-field {
  padding: 0.4rem 2.4rem 0.4rem 0.4rem;
}
#password-field {
  padding: 0.4rem 2.4rem 0.4rem 2.8rem;
}
/*---------mobile-----flag------country---code--start--------*/
.iti--container {
  width: 100% !important;
}
.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 4px !important;
  font-size: 11px;
}
.iti__selected-flag {
  padding: 0 3px 0 6px !important;
}
.iti__flag.iti__in {
  width: 19px;
}
.iti__selected-flag {
  width: 67px;
}
.iti__arrow {
  margin-left: 3px !important;
}
.mobile,
.alternate_no {
  width: 100% !important;
}
.select2-container--default .select2-results > .select2-results__options {
  scrollbar-width: thin;
}
.select2-search--dropdown .select2-search__field {
  height: 36px;
  border-radius: 5px;
}
.cptcha-wrp {
  display: grid;
  grid-template-columns: 0.6fr 1.5fr 0.2fr;
  align-items: center;
  gap: 10px 12px;
}
.rst-cptcha-icn i {
  color: #8b8b8b;
  transition: 0.4s ease;
}
.rst-cptcha-icn i:hover {
  color: var(--primary-color1);
  transform: rotate(150deg);
}
.select2-container {
  width: 100% !important;
}
.iti {
  width: 100%;
}
.iti__country-list {
  scrollbar-width: thin;
  z-index: 99;
  max-height: 220px !important;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.iti__country {
  padding: 5px 10px;
  font-size: 12px;
  color: var(--txt-color);
  letter-spacing: 0.5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  white-space: nowrap;
}
.iti__country-list {
  bottom: unset !important;
  width: 215px !important;
}
.iti__country.iti__highlight {
  background-color: var(--primary-color1) !important;
  color: var(--white);
}
.iti__country.iti__highlight .iti__dial-code {
  color: var(--white) !important;
}
.iti__dial-code {
  color: var(--txt-color) !important;
}
.iti__flag.iti__al {
  height: 13px !important;
  background-position: -133px -1px !important;
}
.iti__flag {
  width: 17px !important;
}
.iti__divider {
  display: none;
}
/*---------mobile-----flag------country---code-----end--------*/
/*---------date-------picker----start--------*/
.datepicker table tr td.new,
.datepicker table tr td.old {
  color: var(--txt-drk) !important;
}
.datepicker .day,
.datepicker .dow {
  padding: 0px 5px !important;
}
.datepicker td,
.datepicker th {
  border-radius: 3px;
  font-size: 12px !important;
}
.datepicker th {
  font-weight: 600;
}
.datepicker .datepicker-switch {
  background-color: #eee7e7 !important;
  color: var(--primary-color1);
}
.datepicker .datepicker-switch:hover,
.datepicker .next:hover,
.datepicker .prev:hover,
.datepicker tfoot tr th:hover {
  background: var(--primary-color1) !important;
  color: var(--white);
  padding-top: 0px;
}
.datepicker table tr td.today,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover,
.datepicker table tr td.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active:hover {
  background-image: linear-gradient(to bottom, #d91737, #b32c2c);
  color: var(--white);
}
.datepicker table tr td span.focused,
.datepicker table tr td span:hover {
  background: var(--primary-color1) !important;
  color: var(--white) !important;
}
/*---------date-------picker----end--------*/
.inner-service-rgt-text p:nth-child(3) {
  background: #079cdd1a;
  border-left: 6px solid var(--light-blue);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: var(--title-color);
  letter-spacing: 0.5px;
  margin: 15px 0px;
}
.about-content p:nth-child(2) {
  position: relative;
  padding-left: 15px; /* space for the line */
}
.about-content p:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 94%;
  background-color: var(--primary-color1);
  border-radius: 30px;
}
.why-study-list ol li h3 {
  font-size: 18px;
  color: var(--primary-color1);
  letter-spacing: 0.2px;
  margin-bottom: 5px;
  font-weight: 500;
}
.tab-form-bx i.form-control-feedback.bv-icon-input-group.fa-regular.fa-xmark {
  position: absolute;
  top: 38px;
  right: 7px;
  color: rgb(235, 27, 27);
  font-size: 11px;
}
.tab-form-bx i.form-control-feedback.bv-icon-input-group.fa-regular.fa-check {
  position: absolute;
  top: 38px;
  right: 7px;
  color: rgb(2, 134, 2);
  font-size: 11px;
}
.tab-form-bx i.form-control-feedback.bv-icon-input-group.fa-regular.fa-refresh {
  position: absolute;
  top: 38px;
  right: 7px;
  color: rgb(235 112 12);
  font-size: 11px;
}
.tab-form-bx small.help-block {
  color: rgb(235, 27, 27);
  font-size: 12px;
  letter-spacing: 0.02rem;
  font-weight: 600;
}
.has-error .form-control,
.has-error .form-select,
.has-error textarea,
.has-error .select2-selection__rendered {
  border: 1px dashed rgb(235, 27, 27) !important;
}
.has-success .form-control,
.has-success .form-select,
.has-success textarea {
  border: 1px dashed rgb(2, 134, 2) !important;
}
.alert_1 {
  background-color: #d53c3cf5;
  padding: 7px 16px;
  border-left: 4px solid #be0e0e;
  margin-bottom: 14px;
  border-radius: 3px;
}
.wrng-msg {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
.alert_1 i {
  font-size: 17px;
  margin-top: -1px;
  margin-left: -7px;
  color: white;
}
.alert_1 h6 {
  color: white;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0;
}

.frm-btn button {
  width: 100%;
  text-align: center;
  padding: 13px 18px;
  border: none;
}

.global_mobile_div .iti__selected-flag, .service_mobile_div .iti__selected-flag{
  border-radius: 20px 0 0 20px;
}

.innr-frm-inpt-slct.has-feedback .iti i{
  top: 15px;
}

/*-------thank---you------wrap-----start--------*/
.thnku-wrp{
  text-align: center;
  width: 100%;
  padding: 20px 0px 40px;
}
/* .thnku-wrp img{
  width: 100%;
} */
.thnku-wrp p{
  font-size: 20px;
  text-align: center;
  color: var(--title-color);
  font-weight: 500;
}
/*-------thank---you------wrap-----end-------*/