html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #686868;
  font-weight: 400;
}

/* div {
  line-height: 1;
} */

* {
  scrollbar-width: thin;
}

.main-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-box {
  flex: 1;
}

a {
  text-decoration: none;
  color: var(--heading-color);
}

a:hover {
  color: var(--primary-color);
  /* text-decoration: underline; */
}

ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

:root {
  --primary-color: #1e74ec;
  --primary-bg: #1e74ec;
  --primary-rgb: 30, 116, 236;
  --darkblue-color: #0a3c6d;
  --white: #fff;
  --lgt-txt-color: rgb(220, 232, 255);
  --heading-color: #3c3c3c;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

.primary-color {
  color: var(--primary-color) !important;
}

.darkblue-color {
  color: var(--darkblue-color) !important;
}

.white-text {
  color: #fff;
}

.card-brdr {
  border: 1px solid #d9d9d9;
}

.para-01 {
  text-align: justify;
  margin: 0;
  font-weight: 400;
  line-height: 27px;
  font-size: 14px;
}

.para-white {
  text-align: justify;
  margin: 0;
  font-weight: 400;
  line-height: 25px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.txt-prmry-clr {
  color: var(--primary-color);
}

.section-heading {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 600;
}

.section-heading.medium-small {
  font-size: 23px;
}

.section-padding {
  padding: 50px 0;
}

.section-lightbg {
  background: rgba(var(--primary-rgb), 0.05);
}

.section-subtitle {

  border: 1px solid rgb(114 70 131 / 24%);
  border-radius: 25px;
  width: fit-content;
  padding: 10px 20px 10px 47px;
  position: relative;
  margin-bottom: 18px;
  /* background: #fff; */
}

.section-subtitle .subtitle {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.section-subtitle .subtitle .icon {
  /* background: rgba(39, 50, 108, 0.1); */
  color: var(--primary-color);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  left: 14px;
  top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.section-subtitle.white-sub {
  border: 1px solid rgb(255 255 255 / 45%);
}

.section-subtitle.white-sub .subtitle .icon {
  color: #fff;
}

.section-subtitle.white-sub .subtitle {
  color: #fff;
}

.white-btn {
  background: #fff;
  color: var(--darkblue);
  padding: 9px 22px;
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  border: 1px solid #fff;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.white-btn span {
  display: inline-block;
  margin-left: 5px;
  line-height: 1;
  vertical-align: middle;
}

.white-btn span i {
  font-size: 18px;
}

.white-btn::after {
  position: absolute;
  content: '';
  width: 300px;
  height: 300px;
  background: var(--darkblue);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.01);
  border-radius: 50%;
  z-index: -1;
  visibility: hidden;
  transition: transform 0.5s linear;
}


.white-btn:hover::after {
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.white-btn:hover {
  color: #fff;
}


.primary-btn {
  background: var(--primary-bg);
  color: var(--white);
  padding: 10px 22px;
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  border-radius: 25px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.primary-btn::after {
  position: absolute;
  content: '';
  width: 400px;
  height: 400px;
  background: #1d1c1b;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.01);
  border-radius: 50%;
  z-index: -1;
  visibility: hidden;
  transition: transform 0.5s linear;
}

.primary-btn span {
  display: inline-block;
  margin-left: 5px;
  line-height: 1;
  vertical-align: middle;
}

.primary-btn span i {
  font-size: 18px;
}

.primary-btn:hover {
  text-decoration: none;
  color: #fff;
}

.primary-btn:hover::after {
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.primary-btn2 {
  background: #fff;
  color: var(--primary-color);
  padding: 10px 22px;
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  border-radius: 25px;
  border: 1px solid #e0e0e0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.primary-btn2 span {
  display: inline-block;
  margin-left: 5px;
  line-height: 1;
  vertical-align: middle;
}

.primary-btn2 span i {
  font-size: 14px;
  position: relative;
  top: -2px;
}

.primary-btn2:hover {
  background: var(--primary-bg);
  color: #fff;
  border: 1px solid var(--primary-bg);
}

/* start form */
.frm-grp {
  width: 100%;
}

.frm-cntrl {
  width: 100%;
  background: transparent;
  outline: none;
  border: none;
  outline: none;
  border: 1px solid rgb(255 255 255 / 35%);
  padding: 9px 16px;
  border-radius: 5px;
  height: 41px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
  color: #fff;
  font-size: 13px;
  font-weight: 200;
}

/* end form */
/* === start owl buttons === */
.owl-carousel .owl-dots {
  margin-top: 20px !important;
  counter-reset: item;
}

.owl-carousel .owl-dots .owl-dot {
  margin: 0 5px;
  padding: 0;
  outline: none;
  line-height: 0;
  border-radius: 50%;
  border: none;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 1px solid #575757;
  counter-increment: item;
}

.owl-carousel .owl-dots .owl-dot::before {
  content: "0" counter(item);
  color: #575757;
  font-size: 13px;
}

.owl-carousel .owl-dots .owl-dot span {
  display: none;

}

.owl-carousel.owl-theme .owl-nav {
  margin-top: 20px;
}

.owl-carousel .owl-dots .owl-dot.active {
  border-radius: 50%;
  border: 1px solid var(--primary-color) !important;
}

.owl-carousel .owl-dots .owl-dot.active::before {
  color: var(--primary-color) !important;
}

.owl-carousel.owl-theme .owl-nav button {
  margin: 0 5px;
  padding: 0;
  font-size: 15px;
  line-height: 1;
  background: transparent;
  border: none;
  background: #000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  line-height: 35px;
}

.owl-carousel.owl-theme .owl-nav button::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 50%;
  background: linear-gradient(to right, var(--primary-color), var(--primary-color));
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.owl-carousel.owl-theme .owl-nav button:hover {
  background: linear-gradient(to right, var(--primary-color), var(--primary-color));
}

.owl-carousel.owl-theme .owl-nav button:hover::after {
  background: #000;
}

/* === end owl buttons === */


/* start top header */
.headers-grp {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 3;
}

.top-info {
  padding: 10px 0 20px 0;
  position: relative;
  z-index: 1;
}

.info-list a {
  color: var(--white);
  display: block;
}

.info-list .list {
  display: flex;
  gap: 3px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.info-list .list .icn {
  width: 20px;
  height: 20px;
  line-height: 1;
}

.info-list .list .icn img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center;
}

.info-list .list .cntnt {
  width: calc(100% - 22px);
  font-size: 13px;
  line-height: 1;
}

.info-list li {
  display: inline-block;
  margin-left: 15px;
}

.info-list li:first-child {
  margin-left: 0;
}

/* end top header */
/* start header  */
.main-header {
  position: relative;
  z-index: 99;
}

.hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 15px;
  position: relative;
  background: #fff;
  padding: 0px 20px;
  border-radius: 60px;
}

.hdr.stickry-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 999999;
  box-shadow: 0 6px 10px rgb(0 0 0 / 21%);
  width: 102%;
  margin-left: -1%;
  padding-left: 2%;
  padding-right: 2%;
  border-radius: 7px;
}

.logo {
  width: 150px;
}

.hdr>.logo img {
  width: 100%;
}

.hdr>.menu {
  width: calc(100% - 410px);
}

.hdr>.hedr-btns {
  width: 205px;
}

.hedr-btns .hdr-hlp {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.hedr-btns .hdr-hlp .icn {
  width: 48px;
}

.hedr-btns .hdr-hlp .icn img {
  width: 48px;
}

.hedr-btns .hdr-hlp .cntnt {
  width: calc(100% - 58px);
}

.hedr-btns .hdr-hlp .cntnt p {
  margin: 0;
}

.hedr-btns .hdr-hlp .cntnt h5 {
  margin: 0;
  color: var(--darkblue-color);
  font-size: 18px;
}

.mdl_bgclr {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 2;
  background: rgb(0 0 0 / 85%);
  left: 0;
  top: 0;
  backdrop-filter: blur(1px);
}

.mdl_bgclr.active {
  display: block;
}

.mn_btn {
  display: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  font-size: 22px;
  line-height: 1;
  color: var(--heading-color);
}

.menuS ul {
  text-align: center;
}

.menuS li {
  display: inline-block;
  position: relative;
}

.menuS li a {
  display: block;
  color: #636363;
  padding: 22px 25px;
  font-size: 15px;
  font-weight: 500;
}

.menuS li:hover a.mn-anchr {
  color: var(--primary-color);
}

/* .menuS li:hover a.mn-anchr+.arw-icn i {
  color: #00923f;
  transform: rotate(-180deg);
} */

.menuS li .mn-anchr.active {
  color: var(--primary-color);
  text-decoration: underline;
}

.menuS li .arw-icn {
  display: inline-block;
  margin-left: 0;
  position: absolute;
  top: 25px;
  right: 8px;
  font-size: 13px;
  font-weight: 500;
}

.menuS li:last-child a {
  margin-right: 0;
}

.submenu {
  position: absolute;
  top: 75px;
  width: 250px;
  background: #fff;
  box-shadow: 0 18px 15px rgb(0 0 0 / 29%);
  z-index: -1;
  border-radius: 0 0 3px 3px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  max-height: 450px;
  overflow-x: auto;
  scrollbar-width: thin;
  transition: all 0.3s ease-in-out;
}

.menuS li:hover .submenu {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  top: 65px;
}

.submenu ul {
  width: 100%;
}

.submenu ul li {
  margin: 0;
  width: 100%;
  display: block;
}

.submenu ul li a {
  margin: 0;
  text-align: left;
  font-size: 13px;
  padding: 10px 15px;
  text-decoration: none;
  border-bottom: 1px solid #f3f5ff
}

.submenu ul li a .menu-flg {
  display: inline-block;
  margin-right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #1e275794;
  transition: transform 0.3s ease-in-out;
}

.submenu ul li a .menu-flg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.submenu ul li:last-child a {
  border-bottom: none;
}

.submenu ul li a:hover {
  background: var(--primary-bg);
  color: #fff;
  text-decoration: none;
}

.submenu ul li a:hover .menu-flg {
  box-shadow: 0 0 0 2px #fff;
  transform: rotate(360deg);
}

.mbl-menu-hdr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}

.mbl-menu-hdr .logo-mbl {
  width: 80px;
}

.mbl-menu-hdr .logo-mbl a {
  display: block;
}

.mbl-menu-hdr .logo-mbl img {
  width: 70px;
}

.mbl-menu-hdr .cls-btn button {
  padding: 0;
  margin: 0;
  line-height: 1;
  border: none;
  background: transparent;
  font-size: 18px;
  outline: none;
  color: var(--primary-color1);
}

.submenu.active {
  visibility: visible !important;
  opacity: 2 !important;
  position: inherit;
  top: 0 !important;
  left: 0;
  width: 100%;
}

.submenu.active ul {
  flex-direction: column;
}

.submenu.active ul li {
  width: 100%;
}

.main-header.stickry-header .hdr {
  position: fixed;
  max-width: 1320px;
  width: 100%;
  background: #fff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0px 5px rgb(0 0 0 / 30%);
  animation: slipUp 0.5s ease-in-out;

}

@keyframes slipUp {
  from {
    transform: translate(-50%, -100%);
  }

  to {
    transform: translateY(-50%, 0);
  }
}

.main-header.stickry-header .logo {
  top: 13px;
}

/* end header */
/* start banner */
.study-abroad-cntnt {
  background: rgb(255 255 255 / 7%);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 7px;
  padding: 20px;
  margin-top: 15px;
  backdrop-filter: blur(4px);
}

.study-abroad-cntnt .study-abrd-hdg h6 {
  color: #fff;
  font-weight: 600;
}

.label2 {
  display: block;
  color: rgba(71, 71, 71, 1);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.frm-cntrl2 {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(169, 169, 169, .5);
  padding: 8px 15px;
  font-size: 14px;
  outline: none;
  height: 40px;
}

.frm-cntrl2:hover {
  border: 1px solid var(--primary-color);
}

.frm-cntrl2::placeholder {
  color: rgba(185, 185, 185, 1);
  font-size: 14px;
}

.study-abroad-frm .frm-itm {
  position: relative;
}

.study-abroad-frm .frm-itm .icn {
  position: absolute;
  top: 8px;
  left: 19px;
  z-index: 1;
}

.study-abroad-frm .frm-itm .icn img {
  width: 17px;
}

.study-abroad-frm .frm-itm .frm-cntrl2 {
  border-radius: 25px;
  padding-left: 50px;
}

.study-abroad-frm .frm-itm .frm-cntrl2.textarea2 {
  border-radius: 4px;
  height: 60px;
  resize: none;
}

.study-abroad-frm {
  margin-top: 15px;
  border-top: 1px solid rgb(255 255 255 / 25%);
}

.study-abroad-frm .frm-grp {
  margin-top: 12px;
}

.study-abroad-frm .submit-btn {
  margin-top: 20px;
}

.submit-btn .primary-btn {
  border: none;
  display: block;
  width: 100%;
}

.banner-form-content>div {
  position: relative;
}

.banner-from {
  width: 325px;
  position: absolute;
  top: 180px;
  right: 0;
  z-index: 2;
  margin: 0 0 0 auto;
}

.banner-from .study-abroad-cntnt {
  padding: 20px 15px;
  margin-top: 0px;
}

.banner-from .study-abroad-cntnt .study-abrd-hdg h6 {
  text-align: center;
}

.banner-from .study-abroad-frm .frm-itm .icn {
  top: 0;
  left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 30px;
  height: 41px;
}

.banner-from .study-abroad-frm .frm-itm .icn i {
  color: rgba(255, 255, 255, 0.7);
}

.banner-from .study-abroad-frm .frm-itm .frm-cntrl2 {
  padding-left: 40px;
  background: rgb(255 255 255 / 21%);
  border: 1px solid rgb(255 255 255 / 38%);
  backdrop-filter: blur(8px);
  color: #fff;
}

.banner-from .study-abroad-frm .frm-itm .frm-cntrl2::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.banner-from .study-abroad-frm .iti__selected-flag {
  padding: 0 0 0 15px !important;
}

.banner-from .study-abroad-frm .iti--allow-dropdown input,
.banner-from .study-abroad-frm .iti--allow-dropdown input[type=text],
.banner-from .study-abroad-frm .iti--allow-dropdown input[type=tel],
.banner-from .study-abroad-frm .iti--separate-dial-code input,
.banner-from .study-abroad-frm .iti--separate-dial-code input[type=text],
.banner-from .study-abroad-frm .iti--separate-dial-code input[type=tel] {
  padding-left: 52px !important;
}

.banner-from .select-frm .select2-container--default .select2-selection--single {
  padding: 6px 15px 6px 33px;
  background: rgb(255 255 255 / 15%);
  border: 1px solid rgb(255 255 255 / 30%);
  backdrop-filter: blur(8px);
}

.banner-from .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
}

.banner-from .select-frm .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none !important;
  background: transparent;
  margin-top: -11px;
}

.banner-from .select-frm .select2-container--default .select2-selection--single .select2-selection__arrow b::before {
  content: "\f078";
  font-family: "fontAwesome";
  font-size: 14px;
  display: block;
  color: #fff;
}

.banner-from .select-frm .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b::before {
  content: "\f077";
}

.banner-itms {
  border-radius: 10px;
  position: relative;
}

.banner-itms .banner-img {
  width: 100%;
  height: 730px;
  position: relative;
}

.banner-itms .banner-img::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  background: radial-gradient(circle at center, transparent 15%, rgb(0 0 0 / 65%) 39%);
  top: 0;
  left: 0;
}

.banner-itms .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.banner-cntnt {
  position: absolute;
  top: 215px;
  left: 0;
  width: 100%;
}

.banner-cntnt .bnr-subtitle {
  border: 1px solid rgb(255 255 255 / 40%);
  width: fit-content;
  padding: 8px 15px;
  border-radius: 25px;
  margin-bottom: 16px;
}

.banner-cntnt .bnr-subtitle .subtitle {
  color: #fff;
  font-weight: 300;
  margin: 0;
}

.banner-cntnt .bnr-subtitle .subtitle span {
  display: inline-block;
}

.banner-cntnt .bnr-subtitle .subtitle span:first-child {
  font-size: 14px;
  margin-right: 6px;
}

.banner-cntnt .bnr-hdg {
  color: var(--white);
  line-height: 55px;
  letter-spacing: 0.6px;
  position: relative;
  margin: 0;
  font-size: 42px;
  font-weight: 600;
}

.banner-cntnt .bnr-hdg .hdg_icn {
  width: 55px;
  margin-left: 17px;
  position: absolute;
  margin-top: -2px;
}

.banner-cntnt .bnr-para {
  color: rgb(255 255 255 / 85%);
  font-size: 15px;
  font-weight: 400;
  line-height: 27px;
  margin: 15px 0 30px 0;
}

.banner-cntnt .banner-btns-grp .white-btn {
  border-radius: 25px;
  color: var(--primary-color);
  margin-left: 10px;
}

.banner-slider.owl-carousel .owl-dots {
  position: absolute;
  margin-top: 0 !important;
  left: 11%;
  bottom: 70px;
}

.banner-slider.owl-carousel .owl-dots .owl-dot {
  border: 1px solid #fff
}

.banner-slider.owl-carousel .owl-dots .owl-dot::before {
  color: #fff;
}

.banner-slider.owl-carousel .owl-dots .owl-dot.active {
  background: #fff;
}

/* end banner */
/* start about us */
.about-content .hdg-h4 {
  font-size: 33px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 15px;
}

.about-content p {
  padding-bottom: 10px;
  line-height: 25px;
}

.about-content p:last-child {
  padding-bottom: 0;
}

.abt-img {
  position: relative;
  padding-right: 15px;
}

.img-box1 {
  width: 40%;
  height: 300px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.img-box1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.img-box1:hover img {
  transform: scale(1.1);
}

.img-box2 {
  width: 56%;
  height: 390px;
  border-radius: 10px;
  z-index: 1;
  position: relative;
  margin: -170px 0 0 auto;
  overflow: hidden;
}

.img-box2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.img-box2:hover img {
  transform: scale(1.1);
}

.abt-ex {
  position: absolute;
  margin-top: 22px;
  background: #fff;
  width: 195px;
  border: 1px solid #ddd;
  padding: 10px;
  top: 215px;
  left: 7px;
}

.abt-ex .abt-ex-cunt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  /* padding-left: 55px; */
  width: 260px;
}

.abt-ex .abt-ex-cunt .abtcont {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0;
  color: rgba(39, 50, 108, 1);
  font-family: "Poppins", sans-serif;
  width: 70px;
}

.abt-ex .abt-ex-cunt p {
  font-size: 15px;
  margin: 0;
  font-weight: 400;
  width: calc(100% - 75px);
}

.about-choose {
  background: #fff;
  position: absolute;
  z-index: 2;
  padding: 10px;
  width: 40%;
  right: 102px;
  top: 15px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 0 5px rgb(116 116 116 / 40%);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.about-choose .icn {
  width: 65px;
  height: 65px;
  background: var(--primary-bg);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-choose img {
  width: 50px;
}

.about-choose .cntnt {
  width: calc(100% - 75px);
  display: flex;
  align-items: center;
  text-align: left;
  gap: 8px;
  justify-content: flex-start;
}

.about-choose .cntnt h5 {
  font-size: 42px;
  margin: 0;
  font-weight: 600;
}

.about-choose .cntnt h6 {
  margin: 0;
}

.about-content .darkblue-btn {
  display: inline-block;
  width: fit-content;
  padding: 10px 35px;
  margin-top: 15px;
}

.abt-list li {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  gap: 12px;
}

.abt-list li .icn {
  width: 45px;
}

.abt-list li .icn img {
  width: 45px;
}

.abt-list li .cntnt {
  width: calc(100% - 57px);
}

.about-content .abt-list li {
  border-bottom: 1px solid #c8c8c8;
  margin-bottom: 15px;
}

.about-content .abt-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.abt-ex .banner-img-box3 {
  width: 100%;
}

.abt-ex .banner-img-box3 li {
  width: 35px;
  height: 35px;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid #fff;
  display: inline-block;
  margin: 0 auto;
  position: relative;
}

.abt-ex .banner-img-box3 li:nth-child(2),
.abt-ex .banner-img-box3 li:nth-child(3),
.abt-ex .banner-img-box3 li:nth-child(4) {
  margin-left: -15px;
}

.abt-ex .banner-img-box3 li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-img-box3 .studrnt-counter {
  text-align: center;
  padding: 0 5px;
  margin: 10px 0;
}

.banner-img-box3 .studrnt-counter .title {
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.banner-img-box3 .studrnt-counter .para {
  color: #fff;
  margin: 0;
  font-size: 14px;
  font-weight: 300;
}

.abt-121 {
  position: absolute;
  z-index: 2;
  width: 225px;
  top: 220px;
  left: -7px;
}

.abt-121 img {
  width: 100%;

}

/* end about us */
/* start home counter */
.homecounter {
  background: #eff4fb;
  position: relative;
  z-index: 1;
  padding: 50px 0;
}

.abt-cntr-itm {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.abt-cntr-itm .icn {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background: #ffffff;
  padding: 11px;
}

.abt-cntr-itm .icn img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center;
}

.abt-cntr-itm .cntnt {
  width: calc(100% - 80px);
}

.abt-cntr-itm .cntnt .hdg-h5 {
  font-size: 32px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 0;
  letter-spacing: -2px;
}

.abt-cntr-itm .cntnt .hdg-h5 .count3 {
  display: inline-block;
  max-width: 211px;

}

.abt-cntr-itm .cntnt p {
  margin: 0;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: rgba(74, 74, 74, 1);
}

/* end home counter */
/* start country */
.country-bg {
  position: relative;
}

.country-bg::after {
  width: 100%;
  content: '';
  height: 310px;
  background: url(../img/country-destination.png);
  position: absolute;
  top: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.country-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.country-card .country-img {
  width: 100%;
  height: 215px;
}

.country-card .country-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-card .contry-flag {
  width: 58px;
  height: 58px;
  margin: -58px auto 0 auto;
  background: #fff;
  padding: 6px;
  border-radius: 50%;
  /* overflow: hidden; */
  position: relative;
  box-shadow: 0 0 8px rgb(88 88 88 / 53%);
  z-index: 1;
}

.country-card .contry-flag::after {
  position: absolute;
  content: '';
  width: 400px;
  height: 180px;
  top: 26px;
  left: 50%;
  background: #ffffff;
  z-index: -2;
  border-radius: 50%;
  transform: translateX(-50%);
}

.country-card .contry-flag::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 10px rgb(102 102 102 / 78%);
  top: 0;
  left: 0;
}

.country-card .contry-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-card .country-content {
  padding: 20px 10px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.country-card .country-content .title {
  color: rgba(22, 23, 26, 1);
  font-weight: 600;
  font-size: 18px;
}

.country-card .country-content .para {
  color: rgba(146, 146, 146, 1);
  line-height: 21px;
}

.country-card .country-content .primary-btn {
  padding: 10px 20px;
}

/* end country */
/* start offers  */
.offre-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.offre-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.under-grauate-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  padding: 13px;
  margin-top: 0;
  border: 1px solid rgba(var(--primary-rgb), 0.5);
}

.under-grauate-item .img {
  width: 140px;
  height: 155px;
  border-radius: 8px;
  overflow: hidden;
}

.under-grauate-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.under-grauate-item .cntnt {
  width: calc(100% - 155px);
}

.under-grauate-item .cntnt h5 {
  color: rgba(22, 23, 26, 1);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 5px;
  font-size: 22px;
}

.under-grauate-item .cntnt p {
  color: rgba(104, 104, 104, 1);
  line-height: 24px;
}

/* end offers */
/*start university */
.university-bg {
  background: var(--darkblue-color);
}

.university-bg .section-subtitle {
  margin: 0 auto 15px auto;
}

.univer-log {
  background: rgb(255 255 255);
  padding: 5px 11px;
  border-radius: 5px;
  width: 100%;
  height: 80px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .25);
}

.univer-log img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.university.owl-carousel .owl-dots .owl-dot {
  border: 1px solid #fff;
}

.university.owl-carousel .owl-dots .owl-dot.active {
  background: #fff;
}

/* end university */
/* start who we are */
.abt-list.who-list li .icn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-list.who-list li .icn img {
  width: 40px;
}

.abt-list.who-list li .cntnt {
  width: calc(100% - 62px);
}

.who-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.who-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-uni {
  background: var(--primary-bg);
  border-radius: 10px;
  padding: 60px 35px;
}

.who-uni .top-icn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.who-uni .top-icn .icn {
  width: 54px;
  height: 54px;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
}

.who-uni .top-icn .icn img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.who-uni .top-icn .cntnt h4 {
  color: #fff;
  font-size: 36px;
  margin: 0;
}

.who-uni h6 {
  color: #fff;
  margin-top: 18px;
  text-align: center;
  font-size: 17px;
  margin-bottom: 0;
}

/* end who we are */
/* start events */
.blog-content {
  background: #fff;
  padding: 6px;
  border-radius: 10px;
  border: 1px solid rgba(216, 216, 216, 1);
}

.blog-content .img {
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: 7px;
  position: relative;
  z-index: 1;
}

.blog-content .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 7px;
  transition: transform 0.3s ease;
}

.blog-content .img .date {
  position: absolute;
  top: 0;
  z-index: 2;
  background: var(--primary-color);
  color: #fff;
  width: 60px;
  padding: 6px;
  text-align: center;
  border-radius: 6px 0;
}

.blog-content .img .date p {
  margin: 0;
}

.blog-content .img .date p span {
  display: block;
}

.blog-content .img .date p span.dte {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
}

.blog-content .img .date p span.yr {
  font-size: 13px;
  line-height: 16px;
  font-weight: 300
}

.blog-content .cntnt {
  padding: 12px 5px;
}

.blog-time {
  margin-bottom: 12px;
}

.blog-time ul {
  list-style-type: none;
  padding: 0;
  border-bottom: 1px solid rgba(200, 200, 200, 1);
  padding-bottom: 10px;
}

.blog-time li {
  display: inline-block;
  margin-right: 18px;
  position: relative;
}

.blog-time li::after {
  content: '';
  width: 1px;
  height: 12px;
  background: #b3b3b3;
  position: absolute;
  display: inline-block;
  right: -12px;
  top: 5px;
}

.blog-time li:last-child {
  margin-right: 0;
}

.blog-time li:last-child::after {
  display: none;
}

.blog-time li span {
  color: rgba(110, 110, 110, 1);
  font-size: 15px;
}

.blog-time li span.icn {
  display: inline-block;
  color: var(--primary-color);
}

.blog-content .cntnt .blg-hdg {
  text-decoration: none;
}

.blog-content .cntnt .blg-hdg .hdg-h6 {
  color: rgba(70, 70, 70, 1);
  font-size: 18px;
  line-height: 25px;
  margin: 0;
  font-weight: 600;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 60px;
}

.blog-content:hover .blg-hdg .hdg-h6 {
  color: var(--primary-color);
}

.blog-content:hover .img img {
  transform: scale(1.1);
}

/* end events */
/* start testimonials */
.testimonial-main {
  background: rgba(242, 242, 245, 1);
}

.testimonials-box {
  border: 1px solid rgba(67, 67, 67, 1);
  border-radius: 12px;
  padding: 15px 10px;
  position: relative;
  margin-top: 40px;
  margin-bottom: 20px;
}

.testimonials-box .quote-icon-top {
  position: absolute;
  top: -18px;
  width: 32px;
  height: 32px;
  background: #ffffff;
  z-index: 1;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-size: 25px;
  left: 46px;
  color: rgba(67, 67, 67, 1);
}

.testimonials-box .testminal-cntnt {
  padding: 35px 10px 20px 10px;
  background: #fff;
  border-radius: 8px;
}

.testimonials-box .msg {
  position: relative;
}

.testimonials-box .msg .para {
  color: rgba(99, 99, 99, 1);
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  height: 100px;
  min-height: 95px;
  overflow-x: auto;
  scrollbar-width: none;
}

.testimonials-box .test-avtar {
  width: 70px;
  height: 70px;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -37px;
}

.testimonials-box .test-avtar img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.testminal-cntnt .temnl-nm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.testminal-cntnt .temnl-nm .cntnt h6 {
  color: rgba(71, 71, 71, 1);
  font-weight: 700;
  margin: 0;
}

.testminal-cntnt .temnl-nm .cntnt span {
  color: var(--primary-color);
  display: block;
  font-weight: 500;
  font-size: 14px;
}

.testminal-cntnt .temnl-nm .stars ul li {
  display: inline-block;
}

.testminal-cntnt .temnl-nm .stars ul li img {
  width: 16px;
}

.testimonials-box .quote-icon-bottom {
  position: absolute;
  bottom: -16px;
  width: 32px;
  height: 32px;
  background: #ffffff;
  z-index: 1;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-size: 25px;
  right: 46px;
  color: rgba(67, 67, 67, 1);
}

.testimonials-slider .owl-item.active.center .testimonials-box .quote-icon-top,
.testimonials-slider .owl-item.active.center .testimonials-box .quote-icon-bottom {
  color: var(--primary-color);
}

.testimonials-slider .owl-item.active.center .testimonials-box .testminal-cntnt {
  background: rgb(30 116 236 / 5%);
}

/* end testimonials */

/* ==== start brdcrmb ====  */
.pg-brdcrmb {
  width: 100%;
  height: 340px;
  /* border-radius: 20px; */
  position: relative;
  z-index: 1;
}

.pg-brdcrmb-img {
  width: 100%;
  height: 100%;
}

.pg-brdcrmb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 -90px;
}

.pg-brdcrmb::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(10, 60, 109, 0.7);
  z-index: 1;
}

.brdcrmb-lnks {
  position: absolute;
  top: 110px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: fit-content;
  text-align: center;
  /* padding: 25px; */
  z-index: 2;
}

.brdcrmb-lnks .secondary-font {
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 15px;
}

.brdcm-lst {
  padding: 0;
  margin: 0;
}

.brdcm-lst li {
  display: inline-block;
  margin-left: 25px;
  position: relative;
}

.brdcm-lst li:first-child {
  margin-left: 0;
}

.brdcm-lst li a {
  display: block;
  color: var(--white);
}

.brdcm-lst li::after {
  position: absolute;
  content: "//";
  width: 15px;
  color: rgb(255 255 255 / 50%);
  right: -22px;
  top: 2px;
  font-size: 16px;
  line-height: 1;
}

.brdcm-lst li:last-child::after {
  display: none;
}

.brdcm-lst li a.secondry-color {
  color: rgb(255 255 255 / 90%);
  font-weight: 300;
}

.brdcm-lst li a.secondry-color:hover {
  text-decoration: none;
  cursor: unset;
}

/* ==== end brdcrmb ====  */
/* ======= start inner pages ======== */

.detail-card-main-img {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}

.detail-card-main-img img {
  width: 100%;
  height: 100%;
}

.details-card h4 {
  color: var(--darkblue-color);
  font-weight: 600;
  line-height: 38px;
  margin-bottom: 17px;
  font-size: 26px;
}

.details-card p {
  color: #686868;
  line-height: 26px;
  font-size: 16px;
}

.service-details-list {
  margin: 25px 0;
}

.service-list-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.service-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-details-list h6 {
  color: var(--secondary-color);
  font-weight: 600;
}

.service-details-list ul li {
  display: block;
  position: relative;
  margin-top: 10px;
  padding-left: 22px;
  font-size: 16px;
}

.service-details-list ul li::after {
  position: absolute;
  content: '\f336';
  font-family: 'fontawesome';
  top: 2px;
  left: 0;
  color: var(--primary-color);
  font-size: 15px;
}
.pupolar-course{
  background: var(--darkblue-color);
    padding: 20px 15px;
    border-radius: 10px;
}
.pupolar-course h4{
  color: #fff;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 17px;
    font-size: 26px;
    text-align: center;
}
.pupolar-course .p-course-card{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 5px;
}
.pupolar-course .p-course-card .course-itm{
   background: #fff;
    padding: 17px 10px;
    border-radius: 10px;
    text-align: center;
}
.pupolar-course .p-course-card .course-itm .icn{
    width: 54px;
    height: 54px;
    background: var(--primary-bg);
    border-radius: 50%;
    padding: 10px;
    margin: 0 auto;
    box-shadow: 0 0 0 5px rgb(30 116 236 / 15%);
}
.pupolar-course .p-course-card .course-itm .icn img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.pupolar-course .p-course-card .course-itm h6{
      margin: 0;
    font-size: 15px;
    font-weight: 400;
    margin-top: 13px;
}
.query-card {
  border-radius: 20px;
  padding: 25px;
  background: var(--darkblue-color);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 20px;
}

.query-card::after {
        position: absolute;
    width: 110%;
    height: 100%;
    content: '';
    top: -18px;
    left: -5px;
    background: var(--darkblue-color);
    z-index: -1;
    transform: skewY(101deg);
}

.query-info .title {
      color: var(--white);
    font-weight: 700;
    font-size: 23px;
    margin-bottom: 17px;
}

.query-info p {
  color: #fff;
    line-height: 25px;
    font-size: 15px;
    font-weight: 300;
}

.let-img {
      position: absolute;
    width: 46%;
    right: 0;
    top: 0;
    height: 100%;
    z-index: -1;
}

.let-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: -24px 44px; */
}

.all-sevices-btn {
  background: #fff;
  border-radius: 7px;
  margin-top: 20px;
  border: 1px solid #9fb2c5;
}
.all-sevices-btn .all-sevices-hdg{
 background: rgb(10 60 109 / 15%);
    padding: 15px;
    border-radius: 7px 7px 0 0;
}
.all-sevices-btn .all-sevices-hdg h6 {
  color: var(--darkblue-color);
    font-weight: 600;
    text-align: center;
    margin: 0;
    font-size: 17px;
}

.all-sevices-btn .all-sevices-hdg h6 span {
  display: inline-block;
  position: relative;
  top: -3px;
  margin-right: 5px;
}

.all-sevices-btn .all-sevices-hdg h6 span img {
  width: 22px;
}

.all-sevices-btn .services-links{
  padding: 20px 15px; 
}

.all-sevices-btn .services-links li {
  display: block;
}

.all-sevices-btn .services-links li a {
  display: block;
    background: #fff;
    border: 1px solid rgba(169, 169, 169, 0.5);
    color: rgba(110, 110, 110, 1);
    padding: 9px 25px;
    border-radius: 5px;
    margin-top: 14px;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s linear
}
.all-sevices-btn .services-links li:first-child a{
  margin-top: 0;
}
.all-sevices-btn .services-links li a:hover {
  background: var(--primary-bg);
  border: 1px solid var(--primary-bg);
  color: #fff;
  text-decoration: none;
}

.services-links.study-destination-liks ul {
  max-height: 490px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.services-links.study-destination-liks li a {
  padding: 9px 15px;
}

.services-links.study-destination-liks li a .flag {
  display: inline-block;
  margin-right: 8px;

}

.services-links.study-destination-liks li a .flag img {
  width: 21px;
  position: relative;
  top: -1px;
  transition: transform 0.2s linear;
}

.services-links.study-destination-liks li a:hover .flag img {
  transform: rotate(360deg);
}
.study-abroad-cntnt.study-innr-page{
      background: #fff;
    border-radius: 7px;
    margin-top: 20px;
    border: 1px solid #9fb2c5;
    padding: 0;
}
.study-abroad-cntnt.study-innr-page .study-abrd-hdg{
    background: rgb(10 60 109 / 15%);
    padding: 15px;
    border-radius: 7px 7px 0 0;
}
.study-abroad-cntnt.study-innr-page .study-abrd-hdg h6{
  color: var(--darkblue-color);
    font-weight: 600;
    text-align: center;
    margin: 0;
    font-size: 17px;
}
.study-abroad-cntnt.study-innr-page .study-abrd-hdg h6 span{
  display: inline-block;
    position: relative;
    top: -3px;
    margin-right: 5px;
}
.study-abroad-cntnt.study-innr-page .study-abrd-hdg h6 span img{
      width: 22px;
}
.study-abroad-cntnt.study-innr-page  .study-abroad-frm.select-frm{
  padding: 20px 15px;
  margin: 0;
}
.study-abroad-cntnt.study-innr-page  .study-abroad-frm.select-frm .frm-grp:first-child{
  margin-top: 0;
}
.study-abroad-cntnt.study-innr-page .frm-itm .frm-cntrl2{
  padding-left: 40px;
  border-radius: 5px;
}
.study-abroad-cntnt.study-innr-page .frm-itm .icn{
  top: 9px;
    left: 14px;
}
.study-abroad-cntnt.study-innr-page .frm-itm .icn img{
      width: 19px;
}
.study-abroad-cntnt.study-innr-page .select2-container--default .select2-selection--single{
      background: transparent;
      border-radius: 5px;
}
.study-abroad-cntnt.study-innr-page .captch-main .catpch-input input{
  border-radius: 5px;
}
.inner-contact-card {
   width: 100%;
    background: url(../img/inner-contact.png);
    padding: 275px 40px 31px 40px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    z-index: 1;
    border-radius: 10px;
    margin-top: 20px;
}



.inner-contact-card h5 {
  color: #fff;
}

.inner-contact-card ul.cnt-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.inner-contact-card .cnt-list li {
  display: block;
  margin-top: 10px;
}

.inner-contact-card .cnt-list li a {
  display: block;
  padding: 4px 10px;
  background: rgb(255 255 255 / 25%);
  border: 1px solid rgb(255 255 255 / 37%);
  border-radius: 4px;
  color: #fff;
  backdrop-filter: blur(5px);
  font-weight: 300;
}

.inner-contact-card .cnt-list li a span {
  display: inline-block;
  margin-right: 5px;
}

.inner-contact-card .cnt-list li a span img {
  width: 28px;
}
.inner-contact-card .inner-social-icon{
  margin-top: 25px;
}
.inner-contact-card .inner-social-icon li{
  display: inline-block;
  margin-left: 5px;
}
.inner-social-icon li:first-child {
  margin-left: 0;
}

.inner-social-icon li a {
  display: block;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  text-align: center;
  line-height: 33px;
  background: var(--primary-color);
  color: #fff;
  font-size: 16px;
  border: 1px solid var(--primary-color);
  transition: all 0.5s linear;
}

.inner-social-icon li a:hover {
  background: #fff;
  color: var(--primary-color);
}
/* ======= end inner pages ======== */
/* start contact us */
.contact-us-img{
  width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.contact-us-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-card .title{
  color: var(--darkblue-color);
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 5px;
    font-size: 26px;
}
.contact-card .para{
      color: #838383;
    line-height: 24px;
    font-size: 15px;
}
.contact-card .study-abroad-cntnt.study-innr-page{
      background: #fff;
    border-radius:0;
    margin-top: 0;
    border: none;
    padding: 0;
}
.contact-card .study-abroad-cntnt.study-innr-page .study-abroad-frm.select-frm{
  padding: 0;
}
.contact-card .study-abroad-cntnt.study-innr-page .frm-itm .frm-cntrl2{
      padding-left: 14px;
}
.contact-card .study-abroad-cntnt.study-innr-page .select2-container--default .select2-selection--single{
  padding-left: 8px !important;
}
.contact-card .study-abroad-cntnt.study-innr-page .frm-grp .label{
      color: #474747;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    padding-bottom: 2px;

}


.cntnt-add-itm {
  background: #feecf2;
  padding: 30px 25px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}



.cntnt-add-itm::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top,
      var(--primary-color1),
      var(--primary-color2));
  opacity: 0;
  z-index: -1;

  background-position: top;
  transition: opacity 0.15s ease;
}



.cntnt-add-itm:hover::after {
  opacity: 1;
}

.cntnt-add-itm:hover .cntnt .hdg-h5 {
  background-image: unset;
  color: var(--white);
  background-clip: unset;
}

.cntnt-add-itm:hover .cntnt a {
  color: var(--white);
}

.cntnt-add-itm:hover .cntnt-add-txt {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.cntnt-add-itm:hover .cntnt-add-txt p {
  color: var(--white);
}

.cntnt-add-tp {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.cntnt-add-tp .icn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 0 15px #ef3875bf;
}

.cntnt-add-tp .icn img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center;
}

.cntnt-add-tp .cntnt {
  width: calc(100% - 60px);
  padding-left: 10px;
}

.cntnt-add-tp .cntnt .hdg-h5 {
  color: transparent;
  background-image: linear-gradient(to top,
      var(--primary-color1),
      var(--primary-color2));
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 700;
  /* font-size: 20px; */
  margin-bottom: 4px;
}

.cntnt-add-tp .cntnt a {
  color: #2a2a2a;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px !important;
  display: block;
  height: 40px;
}

.cntnt-add-txt {
  border-top: 1px solid #f36d5c;
  margin-top: 20px;
  padding-top: 12px;
}

.cntnt-add-txt p {
  margin: 0;
  line-height: 21px;
  font-size: 13px;
  font-weight: 400;
  color: #4f4f4f;
}
/* end contact us */
/* start subscribe */
.subscrib-card {
  position: relative;
  z-index: 1;
  background: url(../img/subscribe-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0;
}

.subscrib-card .subscribe-cntnt .hdg0h5 {
  font-weight: 300;
  margin-top: 14px;
  font-size: 18px;
}

.scrb-frm .study-abroad-frm {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border: none;
  margin-top: 40px;
}

.scrb-frm .study-abroad-frm>div {
  width: 100%;
  margin-top: 0;
}

.scrb-frm .study-abroad-frm>div.submit-btn {
  width: 410px;
  margin-top: 0;
}

.scrb-frm .study-abroad-frm .frm-cntrl {
  border-radius: 25px;
  padding-left: 48px;
  color: #fff;
  font-size: 14px;
}

.scrb-frm .study-abroad-frm .frm-cntrl::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.scrb-frm .study-abroad-frm.select-frm .select2-container--default .select2-selection--single {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgb(255 255 255 / 35%);
  padding: 6px 15px 6px 40px;
  height: 40px;
  border-radius: 25px;
}

.scrb-frm .study-abroad-frm.select-frm .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  font-weight: 300;
}

.scrb-frm .study-abroad-frm.select-frm .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 15px;
}

.scrb-frm .study-abroad-frm.select-frm .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none !important;
  background: transparent;
  margin-top: -11px;
}

.scrb-frm .study-abroad-frm.select-frm .select2-container--default .select2-selection--single .select2-selection__arrow b::before {
  content: "\f078";
  font-family: "fontAwesome";
  font-size: 14px;
  display: block;
  color: #fff;
}

.scrb-frm .study-abroad-frm.select-frm .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b::before {
  content: "\f077";

}

.scrb-frm .study-abroad-frm .submit-btn .primary-btn2 {
  color: var(--darkblue-color);
  padding: 10px 15px;
}

.scrb-frm .study-abroad-frm .submit-btn .primary-btn2:hover {
  color: #fff;
}

.subscrib-lft-img {
  position: absolute;
  bottom: 35px;
  width: 100%;
  height: 100%;
  left: 0px;
}

.subscrib-lft-img img {
  width: 175px;
}

.subscrib-rgt-img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  left: 0;
}

.subscrib-rgt-img img {
  width: 295px;
}

/* end subscribe */
/* start whatsapp btn */
.btn-whatsapp-pulse {
  position: fixed;
  bottom: 70px;
  right: 15px;
  width: 48px;
  height: 48px;
  background-color: #1c9b13;
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px;
  z-index: 105;
  margin-right: 6px;
}

.btn-whatsapp-pulse:hover {
  color: #fff;
}

.btn-whatsapp-pulse::after,
.btn-whatsapp-pulse::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  background: #1c9b13;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: 1.3s ease-in-out infinite grow;
  animation: 1.3s ease-in-out infinite grow;
}

@keyframes grow {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }

  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

/* end whatspp btn */
/* start bottom to top button */
.progress-wrap {
  position: fixed;
  right: 18px;
  bottom: 8px;
  height: 43px;
  width: 43px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(178, 170, 211, 0.71);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 1;
  background: #fff;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  content: "\f062";
  font-family: "fontawesome";
  font-weight: 400;
  font-size: 1.10rem;
  color: var(--darkblue-color);
  position: absolute;
  left: 0;
  top: 0;
  height: 43px;
  width: 43px;
  line-height: 43px;
  text-align: center;
  z-index: 1;
  pointer-events: none;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--darkblue-color);
  stroke-width: 4;
  transition: stroke-dashoffset 10ms linear;
  box-sizing: border-box;
}

/* end bottom to top button */



/* start intel */
.iti__country-list {
  width: 100% !important;
  background: #fff;
  border: 1px solid #ddd;
  scrollbar-width: thin;
}

.iti__country {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.iti__country-name {
  display: inline-block !important;
  width: 190px !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.iti__divider {
  border-bottom: 1px solid #ddd;
}

.iti__country.iti__highlight {
  background: var(--primary-bg) !important;
}

.iti__country.iti__highlight {
  color: #fff;
}

.iti__selected-flag {
  padding: 0 0 0 15px !important;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  padding-left: 55px !important;
}

.iti {
  /* width: 100%; */
  display: block;
}

.iti--allow-dropdown .iti__flag-container:hover {
  background: transparent !important;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background: transparent !important;
}

@media only screen and (max-width:1250px) {
  .iti-mobile .iti--container {
    height: 250px !important;
  }

  .iti {
    width: 100%;
  }
}

/* end intel */
/* start select2 */
.select-frm .select2-container {
  width: 100% !important;
}

.select-frm .select2-container--default .select2-selection--single {
  background: rgba(242, 241, 245, 1);
  border: 1px solid rgba(229, 229, 229, 1);
  padding: 6px 15px 6px 40px;
  height: 40px;
  border-radius: 25px;
}

.select-frm .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
  position: absolute;
  top: -1px;
  right: 13px;
  width: 20px;
}

.select-frm .select2-container--default .select2-selection--single:hover {
  border: 1px solid var(--primary-color);
}

/* end selet2 */


.select2-container--default .select2-results>.select2-results__options {
  scrollbar-width: thin;
}

.select2-container--default .select2-results>.select2-results__options .select2-results__option {
  padding: 8px 10px;
  color: #29343d;
  font-size: 0.80rem;
}

.select2-container--default .select2-results>.select2-results__options .select2-results__option.select2-results__option--highlighted {
  background-color: var(--primary-color);
  color: #fff;
}

.banner-from .study-abroad-frm .captch-text p {
  color: #fff;
}

.banner-from .study-abroad-frm .captch-main .catpch-input {
  width: 155px;
}

.banner-from .study-abroad-frm .captch-main .catpch-input input {

  background: rgb(255 255 255 / 21%);
  border: 1px solid rgb(255 255 255 / 38%);
  backdrop-filter: blur(8px);
  color: #fff;
}

.banner-from .study-abroad-frm .captch-main .catpch-btn .refresh-btn {
  color: #26f900;
}

.banner-from .study-abroad-frm .submit-btn .primary-btn {
  width: fit-content;
  margin: 0 auto;
}

.gt-trm-cntnt {
  display: flex;
  align-items: center;
  justify-self: flex-start;
  gap: 6px;
}

.gt-trm-cntnt>div {
  line-height: 1;
}

.gt-trm-cntnt .inpt input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background-color: rgb(255 255 255 / 33%);
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.gt-trm-cntnt .inpt input[type="checkbox"]:checked {
  background-color: var(--primary-color);
}

.gt-trm-cntnt .inpt input[type="checkbox"]:checked::after {
  content: "✔";
  color: #fff;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

.gt-trm-cntnt p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 300;
}

.gt-trm-cntnt p a {
  color: #fff;
  text-decoration: underline;
}

.captch-main {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  align-items: center;
}

.captch-main .captch-text p {
  margin: 0;
}

.captch-main .catpch-input {
  width: 135px;
}

.captch-main .catpch-input input {
  border-radius: 25px;
}

.captch-main .catpch-btn .refresh-btn {
  border: none;
  background: transparent;
  margin: 0;
  padding: 0;
  padding-left: 5px;
  color: var(--primary-btn-color);
  line-height: 1;
}

.captch-main .catpch-btn .refresh-btn i {
  transition: transform 0.3s linear;
}

.captch-main .catpch-btn .refresh-btn:hover i {
  transform: rotate(180deg);
}

/* ============= end all pages design css ============== */
/* start footer */
.footer {
  background: url(../img/footer.jpg);
  padding-top: 55px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.footer::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgb(0 0 0 / 50%);
}

.footer-top-content .ftr-scl-icn {
  margin-top: 25px;
}

.footer-top-content .ftr-scl-icn ul {

  justify-content: center;
}

.footer-top-content .ftr-scl-icn h6 {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 12px;
}

.footer-logo {
  width: 165px;
}

.footer-logo img {
  width: 100%;
}

.footer-top-text p {
  margin: 0;
  color: rgb(255 255 255 / 80%);
  font-size: 14px;
  font-weight: 300;
}

.footer_list .hdg-h5 {
  color: rgb(255 255 255 / 95%);
  font-size: 18px;
  font-weight: 500;
  position: relative;
  width: fit-content;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.footer_list .hdg-h5::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  background: rgb(255 255 255 / 20%);
  bottom: -1px;
  left: 0;
  border-radius: 5px;
}

.footer_list .hdg-h5::before {
  position: absolute;
  content: '';
  width: 25px;
  height: 4px;
  background: var(--primary-bg);
  bottom: -1px;
  left: 10px;
  /* border-radius: 5px; */
}

.footer_list ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.footer_list li {
  display: block;
}

.footer_list li a {
  color: rgb(255 255 255 / 80%);
  font-size: 14px;
  font-weight: 300;
  display: block;
  position: relative;
  padding-top: 15px;
  padding-left: 35px;
}

.footer_list li a::before {
  content: '\f324';
  font-family: 'fontAwesome';
  position: absolute;
  color: var(--primary-color);
  left: 13px;
  font-size: 12px;
  top: 18px
}

.footer-cntnt .hdg-h5 {
  color: rgb(255 255 255 / 95%);
  font-size: 18px;
  font-weight: 500;
  position: relative;
  width: fit-content;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.footer-cntnt .hdg-h5::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  background: rgb(255 255 255 / 20%);
  bottom: -1px;
  left: 0;
  border-radius: 5px;
}

.footer-cntnt .hdg-h5::before {
  position: absolute;
  content: '';
  width: 25px;
  height: 4px;
  background: var(--primary-bg);
  bottom: -1px;
  left: 10px;
}

.ftr-lst-cntnt li {
  display: block;
  margin-top: 18px;
}

.ftr-lst-cntnt li:first-child {
  margin-top: 0;
  padding-top: 10px;
}

.ftr-lst-cntnt .ftr-cntnt {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.ftr-lst-cntnt .ftr-cntnt .icn {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ftr-lst-cntnt .ftr-cntnt .icn img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center;
}

.ftr-lst-cntnt .ftr-cntnt .cntnt {
  width: calc(100% - 36px);
  color: rgb(255 255 255 / 80%);
  font-size: 14px;
  font-weight: 300;
}

.footer_list .footer-map {
  width: 100%;
  height: 175px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 15px;
}

.footer_list .footer-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.last-footer {
  margin-top: 25px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background: rgb(30 115 232 / 17%);
  border-radius: 40px;
  margin-bottom: 15px;
  border: 1px solid rgb(255 255 255 / 34%);
}

.last-footer .cpy-rgt {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 300;
  font-size: 14px;
}

.last-footer .cpy-rgt span {
  font-weight: 600;
  color: rgb(101 165 255);
}

.last-footer .dsn-by {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-align: center;
  font-weight: 300;
  font-size: 14px;
}

.ftr-scl-icn ul {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: end;
}

.ftr-scl-icn li {
  display: inline-block;
  /* margin-left: 5px; */
}

.ftr-scl-icn li a {
  display: block;
  color: #fff;
  font-size: 13px;
  width: 28px;
  height: 28px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 50%);

}

.footer .container>.row>div {
  position: relative;
}

/* .footer .container>.row>div::after {
  width: 1px;
  height: 100%;
  position: absolute;
  content: '';
  top: 5px;
  right: 35px;
  background: url(../img/shape/line.png);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .4;
} */

.footer .container>.row>div:nth-last-child(2)::after {
  right: 2px;
}

.footer .container>.row>div:last-child::after {
  display: none;
}

.footer-cntnt {
  padding-left: 15px;
}

/* end footer */

small.help-block {
    color: #c30f0f;
}
.thnku-wrp {
    text-align: center;
    width: 100%;
    padding: 20px 0px 40px;
}