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

/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */
body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #434343;
  font-weight: 400;

}

* {
  scrollbar-width: thin;
}

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

.content-box {
  flex: 1;
}

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

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

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

:root {
  --primary-color: #282997;
  --primary-bg: #282997;
  --primary-rgb: 40, 41, 151;
  --secondary-color: #211056;
  --secondary-bg: #211056;
  --secondary-rgb: 33, 16, 86;
  --darkblue: #1e2757;
  --darkblue-bg: #1e2757;
  --darkblue-rgb: 30, 39, 87;
  --white: #fff;
  --lgt-txt-color: rgb(220, 232, 255);
  --heading-color: #2a2a2a;
}

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

.white-text {
  color: #fff;
}

.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(--secondary-color);
  font-size: 33px;
  font-weight: 600;
}

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

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

.section-lightbg {
  background: rgba(242, 241, 245, 1);
}

.section-subtitle {
  border: 1px solid rgba(225, 228, 235, 1);
  border-radius: 25px;
  width: fit-content;
  padding: 11px 20px 11px 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: rgba(39, 50, 108, 1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  left: 6px;
  top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.section-padding-service {
  padding: 30px 0;
}

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

.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 span.btn-grd {
  display: inline-block;
  margin-right: 5px;
}

.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: 14px;
  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 {
  font-weight: 500;
}

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

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

.primary-btn span:last-child {
  display: inline-block;
  margin-left: 5px;
}


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

.darkblue-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;
}

.darkblue-btn span {
  font-weight: 500;
}

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

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

.darkblue-btn span:last-child {
  display: inline-block;
  margin-left: 5px;
}



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

.secondary-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;
}

.secondary-btn span {
  font-weight: 500;
}

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

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

.secondary-btn span:last-child {
  display: inline-block;
  margin-left: 5px;
}

.grd-btn {
  background: #fff;
  color: var(--primary-color);
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  padding: 5px 13px;
  border-radius: 5px;
  margin-top: 20px;
}

.grd-btn span {
  display: inline-block;
  margin-left: 5px;
}

.grd-btn:hover {
  background: var(--primary-bg);
  color: #fff;
  text-decoration: none;
  font-weight: 300;
}

.grey-btn {
  border: 1px solid rgba(158, 158, 158, 1);
  color: rgba(124, 124, 124, 1);
  display: inline-block;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 25px;
  background: #fff;
}

.grey-btn:hover {
  background: var(--secondary-bg);
  color: #fff;
  border: 1px solid var(--secondary-color);
  text-decoration: none;
}

/* 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 top header */
.top-info {
  background: var(--secondary-bg);
  padding: 6px 0px;
  position: relative;
  z-index: 1;
}

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

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

.info-list .list .icn {
  width: 27px;
  height: 27px;
}

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

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

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

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

.tp-rgt-lnks {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.top_languge .lang {
  color: rgb(255 255 255 / 90%);
  margin: 0;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
}

.top_languge .lang:hover {
  cursor: pointer;
  color: rgb(255 255 255);
}

/* end top header */
/* start header  */
.main-header {
  position: relative;
  z-index: 99;
  box-shadow: 0 2px 2px rgb(27 30 37 / 20%);
}

.hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 15px;
  position: relative;
}

.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: 145px;
}

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

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

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

.hdr>.hedr-btns .primary-btn {
  padding: 10px 22px;
}

.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 15px;
  font-size: 14px;
  font-weight: 500;
}

.menuS li:hover a.mn-anchr {
  color: rgba(70, 89, 190, 1);
}

.menuS li:hover a.mn-anchr+.arw-icn i {
  color: rgba(70, 89, 190, 1);
  transform: rotate(-180deg);
}

.menuS li .mn-anchr.active {
  color: rgba(70, 89, 190, 1);
  text-decoration: underline;
}

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

.menuS li .arw-icn i {
  color: var(--primary-color1);
  transition: transform 0.3s ease-in-out;
}

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

.menuS li a:hover {
  color: var(--primary-color1);
  text-decoration: underline;
}

.menuS li:hover>a {
  color: var(--primary-color1);
  text-decoration: underline;
}

.submenu {
  position: absolute;
  top: 75px;
  width: 250px;
  background: #fff;
  box-shadow: 0 18px 15px rgb(0 0 0 / 29%);
  z-index: -1;
  border-top: 3px solid rgba(70, 89, 190, 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 {
  position: fixed;
  width: 100%;
  background: #fff;
  top: 0;
  left: 0;
  /* padding: 8px 0; */
  box-shadow: 0 0px 5px rgb(0 0 0 / 30%);
  animation: slipUp 0.5s ease-in-out;
}

@keyframes slipUp {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

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

/* end header */
/* start banner */
.home-banner {
  padding: 30px 0;
  position: relative;
  z-index: 1;
  background: #fff;
}

.home-banner::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: url(../img/shape/map.png);
  top: 0;
  z-index: -1;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .12;
}

.banner-content .title {
  color: var(--secondary-color);
  line-height: 50px;
  letter-spacing: 0.3px;
  position: relative;
  margin-bottom: 15px;
  font-size: 34px;
  font-weight: 700;
}

.banner-content .para {
  background: rgb(33 16 86 / 4%);
  margin: 0;
  padding: 18px 20px;
  border-radius: 3px;
  color: rgba(85, 85, 85, 1);
}

.banner-btns-grp {
  margin-top: 35px;
}

.banner-btns-grp .primary-btn {
  padding: 10px 70px;
}

.banner-btns-grp .primary-btn .btn-grd {
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: -2px;
}

.banner-btns-grp .primary-btn .btn-grd img {
  width: 25px;
}

.banner-imgs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}

.banner-imgs .banner-img-box1 {
  width: 210px;
}

.banner-imgs .banner-img-box1 .banner-img1 {
  width: 210px;
  height: 250px;
  background: rgb(72 54 126);
  position: relative;
  border-radius: 9px;
}

.banner-imgs .banner-img-box1 .banner-img1 img {
  position: absolute;
  width: 200px;
  top: -55px;
  left: -8px;
}

.banner-imgs .banner-img-box2 {
  width: 210px;
}

.banner-imgs .banner-img-box2 .banner-img2 {
  width: 210px;
  height: 250px;
  border-radius: 25px 0 25px 25px;
  overflow: hidden;
}

.banner-imgs .banner-img-box2 .banner-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.banner-imgs .banner-img-box2 .banner-img2:hover img,
.banner-imgs .banner-img-box2 .banner-img3:hover img {
  transform: scale(1.1);
}

.banner-imgs .banner-img-box2 .banner-img3 {
  width: 210px;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 12px;
}

.banner-imgs .banner-img-box2 .banner-img3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.banner-imgs .banner-img-box3 {
  width: 65px;
  background: var(--secondary-bg);
  border-radius: 41px;
  padding: 15px 0;
}

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

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

.banner-imgs .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;
}

/* end banner */
/* start about us */


.about-content .hdg-h4 {
  color: var(--secondary-color);
  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: 63%;
  height: 310px;
  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: 60%;
  height: 210px;
  border-radius: 10px;
  z-index: 1;
  position: relative;
  margin: -160px 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: relative;
  margin-top: 22px;
}

.abt-ex::after {
  position: absolute;
  content: '';
  width: 60px;
  height: 60px;
  background: url(../img/icons/about-arrow.png);
  top: -10px;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

.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: var(--darkblue-bg);
  position: absolute;
  z-index: 2;
  padding: 30px 18px;
  width: 160px;
  right: 56px;
  top: 0;
  border-radius: 12px;
  text-align: center;
}

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

.about-choose p {
  margin: 0;
  font-size: 15px;
  margin-top: 15px;
  opacity: .9;
}

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

/* end about us */
/* start study destination */
.study-destination-bg {
  width: 100%;
  position: relative;
  z-index: 2;
  height: 290px;
  border-radius: 20px;
  overflow: hidden;
}

.study-destination-bg::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to top, rgb(13 13 13 / 70%) 19%, transparent 40%);
  z-index: 1;
}

.img-shape {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative
}

.img-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.destination-hdg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  padding: 0 15px;
  position: absolute;
  z-index: 2;
  bottom: 25px;
  right: 0;
  flex-direction: row-reverse;
  opacity: 1;
  /* visibility: visible; */
  transition: opacity 0.5s ease;
}

.destination-hdg .hdg-h5 {
  width: calc(100% - 54px);
  margin: 0;
  font-size: 17px;
  color: #ffff;
}

.destination-hdg .destination-flg {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #fff;
  position: relative;
}

.destination-hdg .destination-flg::after {
  position: absolute;
  content: '';
  border-width: 13px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  left: 3px;
  top: 30px;
  z-index: -1;
}

.destination-hdg .destination-flg img {
  width: 100%;
  height: 100%;
}

.study-hover-card {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 90%;
  height: 90%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgb(33 16 86 / 50%);
  padding: 10px;
  backdrop-filter: blur(1px);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: scale(.1);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.study-hover-card .hdg-h5 {
  margin: 0;
  font-size: 17px;
  color: #ffff;
}

.study-hover-card .destination-flg {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #fff;
  position: relative;
}

.study-hover-card .destination-flg img {
  width: 100%;
  height: 100%;
}

.study-hover-card .destination-flg::after {
  position: absolute;
  content: '';
  border-width: 16px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  left: 6px;
  top: 41px;
  z-index: -1;
}

.study-destination-bg:hover .study-hover-card {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.study-destination-bg:hover .destination-hdg {
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.owl-carousel .owl-dots .owl-dot {
  margin: 0 5px;
  padding: 0;
  outline: none;
  line-height: 0;
  border-radius: 50%;
  border: none;
  width: 10px;
  height: 10px;
  background: rgba(var(--darkblue-rgb), 0.3);
}

.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 {
  background: var(--darkblue);
  width: 33px;
  border-radius: 25px;
}

.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-color1), var(--primary-color2));
  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-color1), var(--primary-color2));
}

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

/* === end owl buttons === */
/* end study destination */
/* start home counter */
.homecounter {
  background: rgba(242, 241, 245, 1);
  position: relative;
  z-index: 1;
  padding: 50px 0;
}

.homecounter::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/shape/wave.png);
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .3;
}

.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: 50%;
  background: var(--primary-bg);
  padding: 13px;
}

.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 choice */
.choice-img1 {
  width: 100%;
  height: 365px;
  border-radius: 20px;
  overflow: hidden;
}

.choice-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.choice-img2 {
  width: 100%;
  height: 365px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.choice-img2 .choice-img2-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 25px;
  padding-right: 39%;
}

.choice-img2 .choice-img2-content .hdg-h4 {
  color: #fff;
  font-size: 30px;
  line-height: 42px;
  font-weight: 600;
  margin: 0;
}

.choice-img2 .choice-img2-content .para {
  color: rgb(255 255 255 / 80%);
  margin: 0;
  font-weight: 300;
  margin-top: 15px;
}

.choice-img2 .choice-img2-content ul {
  background: rgb(255 255 255 / 10%);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  padding: 7px 14px;
  margin: 20px 0;

}

.choice-img2 .choice-img2-content ul li {
  display: inline-block;

}

.choice-img2 .choice-img2-content ul li a {
  color: #fff;
  font-weight: 300;
}

.choice-img2 .choice-img2-content ul li a span.icn img {
  width: 30px;
}

.choice-img2 .choice-img2-content .white-btn {
  border-radius: 25px;
}

.choice-img2 .choice-img2-content .white-btn span {
  display: inline-block;
  margin-left: 5px;
}

.choice-img2 .choice-img2-content .white-btn:hover {
  text-decoration: none;
  border: 1px solid #626a92;
}

.choice-img2 .choice-img2-content::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(var(--darkblue-rgb), .85) 16%, transparent 70%);
  z-index: -1;
}

/* end choice */
/*start university */
.university-bg {
  background: var(--secondary-bg);
  position: relative;
  z-index: 1;
}

.university-bg::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/shape/map.png);
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .08;
}

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

.univer-log {
  background: rgb(255 255 255);
  padding: 4px 20px;
  border-radius: 50px;
  width: 100%;
  height: 75px;
  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;
  width: 9px;
  height: 9px;
  background: transparent;
}

.university.owl-carousel .owl-dots .owl-dot.active {
  background: #fff;
  width: 33px;
  border-radius: 25px;
}

/* end university */
/* start stream */
.stream-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.stream-content .stream-items {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 15px;
  background: #fff;
  border: 1px solid rgb(0 0 0 / 12%);
  border-radius: 7px;
}

.stream-content .stream-items .icon {
  width: 55px;
  height: 55px;
  background: rgba(242, 241, 245, 1);
  border-radius: 50%;
  padding: 10px;
}

.stream-content .stream-items .icon img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.stream-content .stream-items .cntnt {
  width: calc(100% - 65px);
}

.stream-content .stream-items .cntnt .title {
  color: rgba(67, 67, 67, 1);
  margin: 0;
  font-size: 15px;
  line-height: 20px;
}

.stream-card {
  padding: 10px;
  background: rgba(242, 241, 245, 1);
  border-radius: 20px;
}

.stream-card .stream-img-grp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.stream-card .stream-img-grp .img {
  width: 100%;
  height: 315px;
  overflow: hidden;
  border-radius: 10px;
}

.stream-card .stream-img-grp img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  transition: transform 0.4s ease;
}

.stream-card .stream-img-grp .img:hover img {
  transform: scale(1.1);
}

.stream-card .stream-services-content {
  background: #fff;
  margin-top: 10px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-radius: 0 0 15px 15px;
}

.stream-card .stream-services-content .hdg-h6 {
  margin: 0;
  color: var(--secondary-color);
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  width: 270px;
}

.stream-card .stream-services-content .darkblue-btn {
  padding: 10px 35px;
}

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

/*.testimonial-main .section-subtitle {
  margin: 0 auto 15px auto;
}*/

.testimonials-box .msg {
  position: relative;
  background: #fff;
  padding: 35px 20px 20px 20px;
  border-radius: 20px;
  z-index: 1;
  box-shadow: 0 3px 0 rgba(var(--secondary-rgb, 1));
  border: 1px solid var(--secondary-color);
}

.testimonials-box .msg::before {
  position: absolute;
  content: '';
  border-width: 16px;
  border-style: solid;
  border-color: #ffffff #ffffff00 #ffffff00 #fff;
  left: 65px;
  bottom: -30px;
  filter: drop-shadow(2px 3px 0px rgba(var(--secondary-rgb), 1));
}

.testimonials-box .msg .quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  z-index: -1;
  overflow: hidden;
  border-radius: 0 17px 0 0;
}

.testimonials-box .msg .quote-icon::after {
  position: absolute;
  content: '';
  width: 170%;
  height: 170%;
  background: var(--secondary-bg);
  top: -55px;
  right: -50px;
  border-radius: 50%;
  z-index: -1;
}

.testimonials-box .msg .quote-icon img {
  width: 31px;
  margin-left: 24px;
  margin-top: 17px;
}

.testimonials-box .msg .str {
  margin-bottom: 12px;
}

.testimonials-box .msg .str li {
  display: inline-block;
  margin-left: 5px;
}

.testimonials-box .msg .str li:first-child {
  margin-left: 0;
}

.testimonials-box .msg .str li img {
  width: 19px;
}

.testimonials-box .msg .para {
  color: rgba(67, 67, 67, 1);
  text-align: justify;
  margin: 0;
  font-size: 14px;
  line-height: 26px;
  height: 100px;
  min-height: 125px;
  overflow-x: auto;
  scrollbar-width: none;
}

.testimonials-box .avtar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  margin-top: 45px;
}

.testimonials-box .avtar .icn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--darkblue);
}

.testimonials-box .avtar .icn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonials-box .cntnt {
  width: calc(100% - 70px);
}

.testimonials-box .cntnt h6 {
  color: var(--secondary-color);
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 2px;
}

.testimonials-box .cntnt span {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
}




.pstd-google-icn img{
  width: 125px !important;
  padding-top: 19px;
  margin: auto;
}

.google-review-star{
  display: flex;
  column-gap: 15px;
  justify-content: end;
}

.google-review-star span{
  font-size: 19px;
  color: var(--primary-bg);
  font-weight: 500;
  letter-spacing: 0.8px;
}


.google-review-star ul{
  display: flex;
  column-gap: 8px;

}

.google-review-star ul li a{
  color: #eb9d0a !important;
  font-size: 15px;
}

.google-logo-rating{
  display: flex;
  column-gap: 12px;
  align-items: center;
  justify-content: end;
}

.google-logo-rating img{
  width: 150px;
}

.google-logo-rating span{
  color: #202329;
  font-size: 15px;
}

/* end testimonials */

/* ==== start brdcrmb ====  */
.pg-brdcrmb {
  width: 100%;
  height: 240px;
  /* 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(0, 0, 0, 0.6);
  z-index: 1;
}

.brdcrmb-lnks {
  position: absolute;
  top: 0;
  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 {
  /* color: rgba(70, 89, 190, 1); */
  text-decoration: none;
  cursor: unset;
}

/* ==== end brdcrmb ====  */
/* start inner pages */
/* === start about us === */
.abt-img.abt-inner-page .img-box1 {
  height: 400px;
}

.abt-img.abt-inner-page .img-box2 {
  height: 285px;
  margin: -187px 0 0 auto;
}

.abt-img.abt-inner-page .abt-ex {
  margin-top: 50px;
}

.abt-img.abt-inner-page .about-choose {
  top: 94px;
}

.mission-main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.mission-main .bg-img {
  position: absolute;
  width: 15%;
  height: 80%;
  bottom: 0;
  z-index: -1;
}

.mission-main .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-main .bg-img::after {
  position: absolute;
  content: '';
}

.mission-main .bg-img.bg-img1 {
  left: 0;
}

.mission-main .bg-img.bg-img1::after {
  border-width: 265px 50px 265px 0;
  border-style: solid;
  border-color: transparent #ffffff transparent transparent;
  right: 0;
  top: 0;
}

.mission-main .bg-img.bg-img2 {
  right: 0;
}

.mission-main .bg-img.bg-img2::after {
  border-width: 265px 0 265px 50px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  left: 0;
  top: 0;
}

.mission-cntnt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 25px;
  width: 100%;
  padding-right: 40px;
}

.mission-cntnt .msn-main-icon {
  width: 225px;
  height: 225px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 46px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.mission-cntnt .msn-main-icon .border-icon {
  position: absolute;
  width: 280px;
  height: 280px;
  background-image: conic-gradient(from 40deg, var(--secondary-bg) 0% 35%, transparent 35% 100%);
  border-radius: 50%;
  z-index: -2;
}

.mission-cntnt .msn-main-icon .border-icon::after {
  position: absolute;
  content: '';
  width: 275px;
  height: 275px;
  background-image: conic-gradient(from 40deg, #fff 0% 35%, transparent 35% 100%);
  border-radius: 50%;
  z-index: -2;
  /* top: 0;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0; */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.mission-cntnt .msn-main-icon .border-icon .crl {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
  top: 54px;
  right: 21px;
}

.mission-cntnt .msn-main-icon .border-icon .crl:nth-child(2) {
  top: 160px;
  right: -2px;
}

.mission-cntnt .msn-main-icon .border-icon .crl:nth-child(3) {
  top: 250px;
  right: 60px;
}

.mission-cntnt .msn-main-icon::before {
  position: absolute;
  content: '';
  width: 225px;
  height: 225px;
  border-radius: 50%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  background: rgba(242, 241, 245, 1);
}

.mission-cntnt .msn-main-icon::after {
  position: absolute;
  content: '';
  width: 82%;
  height: 82%;
  background: #fff;
  border-radius: 50%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  box-shadow: 0 0 10px rgba(0, 0, 0, .25);
}

.mission-cntnt .msn-main-icon img {
  width: 70px;
}

.mission-cntnt .msn-main-icon h5 {
  color: var(--secondary-color);
  margin: 0;
  font-weight: 700;
  font-size: 19px;
  line-height: 20px;
  margin-top: 10px;
}

.mission-cntnt .mission-list {
  width: calc(100% - 250px);
}

.mission-list .mission-item {
  display: flex;
  background: rgba(var(--secondary-rgb), 0.06);
  margin-top: 30px;
  padding-right: 40px;
  border-radius: 100px;
  position: relative;
  min-height: 138px;
  align-items: center;
}

.mission-list .mission-item:first-child {
  margin-top: 0;
}

.mission-list .mission-item:nth-child(2) {
  left: 45px;
}

.mission-list .mission-item .icn {
  width: 125px;
  height: 125px;
  background: linear-gradient(to bottom, rgba(117, 118, 243, 1), rgba(40, 41, 151, 1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.mission-list .mission-item .icn::after {
  position: absolute;
  content: '';
  width: 86%;
  height: 86%;
  background: #fff;
  z-index: -1;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.mission-list .mission-item .icn::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(0, 0, 0, 1);
  border-radius: 50%;
}

.mission-list .mission-item .icn img {
  width: 55px;
  image-rendering: -webkit-optimize-contrast;
}

.mission-list .mission-item .cntnt {
  width: calc(100% - 125px);
  padding: 20px 0 20px 25px;
  /* min-height: 138px; */
}

.mission-list .mission-item .cntnt .title {
  color: var(--secondary-color);
  font-size: 19px;
  font-weight: 600;
}

.mission-list .mission-item .cntnt .para {
  color: rgba(67, 67, 67, 1);
  margin: 0;
}

/* === end about us === */
/* === start study abraod === */
/* right content */
.blog-dtls-right {
  position: sticky;
  top: 80px;
}

.all-sevices-btn {
  background: #fff;
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
  border-radius: 7px;
  padding: 20px;
  margin-top: 20px;
}

.all-sevices-btn .all-sevices-hdg h6 {
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
}

.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 ul {
  border-top: 1px solid rgb(201 201 201);
  margin-top: 16px;
  padding-top: 4px;
}

.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: 25px;
  margin-top: 11px;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s linear;
}

.all-sevices-btn .services-links li a.active, .all-sevices-btn .services-links li a:hover {
  background: rgba(39, 50, 108, 1);
  border: 1px solid rgba(39, 50, 108, 1);
  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 {
  background: rgb(255 255 255);
  border-radius: 7px;
  padding: 20px;
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}

.study-abroad-cntnt .study-abrd-hdg h6 {
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
}

.study-abroad-cntnt .study-abrd-hdg h6 span {
  display: inline-block;
  position: relative;
  top: -3px;
  margin-right: 5px;
}

.study-abroad-cntnt .study-abrd-hdg h6 span img {
  width: 22px;
}

.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: 21px;
}

.study-abroad-frm .frm-itm .frm-cntrl2 {
  border-radius: 25px;
  padding-left: 45px;
  background: rgba(242, 241, 245, 1);
  border: 1px solid rgba(229, 229, 229, 1);
}

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

.study-abroad-frm .frm-itm .frm-cntrl2::placeholder {
  color: #8b8b8b;
}

.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 rgba(70, 89, 190, 1);
}
 .frm-itm select{
   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::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: 15px;
  z-index: 1;
}

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

.study-abroad-frm {
  margin-top: 16px;
  border-top: 1px solid rgb(201 201 201);
}

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

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

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

.study-abroad-frm .captch-main .catpch-input input {
  background: rgba(242, 241, 245, 1);
  border: 1px solid rgba(229, 229, 229, 1);
}

.study-abroad-frm .captch-main .catpch-input input::placeholder {
  color: rgba(139, 139, 139, 1);
}

.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);
}

.inner-contact-card {
  width: 100%;
  background: url(../img/inner-contact.jpg);
  padding: 30px 75px;
  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::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  background: rgb(0 0 0 / 60%);
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 10px;
  backdrop-filter: blur(0.4px);
}

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

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

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

.inner-contact-card 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 li a span {
  display: inline-block;
  margin-right: 5px;
}

.inner-contact-card li a span img {
  width: 28px;
}

.inner-social-icon {
  background: var(--secondary-bg);
  padding: 25px 20px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
}

.inner-social-icon .hdg-h5 {
  color: rgba(215, 215, 215, 1);
  font-size: 19px;
  margin-bottom: 15px;
}

.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: rgba(43, 196, 240, 1);
  color: #fff;
  font-size: 16px;
  border: 1px solid rgba(43, 196, 240, 1);
  transition: all 0.5s linear;
}

.inner-social-icon li a:hover {
  background: #fff;
  color: rgba(43, 196, 240, 1);
}

.study-abroad-card {
  background: #fff;
  border-radius: 15px;
  padding: 15px 10px;
}

.study-abroad-card .title {
  border-bottom: 1px solid rgba(216, 216, 216, 1);
  padding-top: 5px;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.study-abroad-card .title .hdg-h6 {
  color: rgba(70, 70, 70, 1);
  font-size: 16px;
  margin: 0;
}

.study-abroad-card .study-img {
  width: 100%;
  height: 155px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  z-index: 1;

}

.study-abroad-card .study-img .flag-img {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 0 0 20px 0;
  z-index: 2;
}

.study-abroad-card .study-img .flag-img img {
  width: 38px;
  height: unset;
  object-fit: unset;
  position: relative;

  left: 1px;
  top: 2px;
  transition: transform 0.3s ease;
}

.study-abroad-card .study-img img.big-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.study-abroad-card .study-btn {
  margin-top: 17px;
}

.study-abroad-card .study-btn .grey-btn {
  display: block;
  width: 100%;
  text-align: center;
}

.study-abroad-card .study-btn .grey-btn span {
  display: inline-block;
  margin-left: 4px;
}

.study-abroad-card:hover .study-img .flag-img img {
  transform: rotate(360deg);
}

.study-abroad-card:hover .study-img .big-img {
  transform: scale(1.1);
}

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

.blog-time ul {
  list-style-type: none;
  padding: 0;
}

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

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

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

.blog-time li span.icn {
  display: inline-block;
  margin-right: 5px;
}

.lastest-blog {
  background: rgb(255 255 255);
  border-radius: 7px;
  padding: 20px;
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
  margin-top: 15px;
}

.lastest-blog .lastet-log-hdg h6 {
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
}

.lastest-blog .lastet-log-hdg h6 span {
  display: inline-block;
  position: relative;
  top: -3px;
  margin-right: 5px;
}

.lastest-blog .lastet-log-hdg h6 span img {
  width: 22px;
}

.lastest-blog-list>ul {
  margin-top: 16px;
  max-height: 500px;
  overflow-y: scroll;
  scrollbar-width: thin;
}

.lastest-blog-list .lstst-blg-cntnt {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  border-top: 1px solid rgb(201 201 201);
  padding: 15px 0px;
}

.lastest-blog-list li:last-child .lstst-blg-cntnt {
  padding-bottom: 0;
}

.lastest-blog-list .lstst-blg-cntnt .img {
  width: 90px;
  height: 69px;
  border-radius: 5px;
  overflow: hidden;
}

.lastest-blog-list .lstst-blg-cntnt .img a {
  display: block;
  width: 100%;
  height: 100%;
}

.lastest-blog-list .lstst-blg-cntnt .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lastest-blog-list .lstst-blg-cntnt .cntnt {
  width: calc(100% - 100px);
}

.lastest-blog-list .lstst-blg-cntnt .blog-time {
  margin-bottom: 5px;
}

.lastest-blog-list .lstst-blg-cntnt .blog-time li {
  margin-right: 10px;
}

.lastest-blog-list .lstst-blg-cntnt .blog-time li span.icn {
  margin-right: 3px;
}

.lastest-blog-list .lstst-blg-cntnt .cntnt .lst-hdg {
  color: rgba(66, 66, 66, 1);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 15px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 42px;
}

/* right content */
/* === end study abraod === */
/* === start all details page === */
.detail-card-main-img {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}

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

.details-card h5 {
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 10px;
  font-size: 22px;
}
.details-card h1{
  font-size: 30px;
    font-weight: 700;
    margin-bottom: 17px;
    color: #3a0b95; 
}
.details-card p {
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  text-align: justify;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

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

.content-with-img .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.content-with-img p {
  margin: 0;
}

.white-bg-card {
  background: #fff;
  padding: 20px;
  border: 1px solid rgb(201 201 205);
  border-radius: 12px;
  box-shadow: 1px 3px 0 1px rgb(0 0 0 / 16%);
  margin-top: 20px;
}

.white-bg-card h5 {
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 10px;
  font-size: 22px;
}

.white-bg-card p {
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  text-align: justify;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.query-card {
  border: 1px solid var(--secondary-color);
  border-radius: 20px;
  padding: 25px;
  background: url(../img/shape/wave2.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 20px;
}

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

.query-info .title {
  color: var(--secondary-color);
  font-weight: 700;
}

.query-info p {
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  text-align: justify;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.let-img {
  position: absolute;
  width: 340px;
  right: -9px;
  top: -69px;
  height: 340px;
  border-radius: 49% 0 0 49%;
  overflow: hidden;
  border: 7px solid var(--primary-bg);
}

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

.query-info .query-btn-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.query-info .query-btn-list .primary-btn span.icn {
  display: inline-block;
  margin-right: 10px;
}

.query-info .query-btn-list .primary-btn span.icn img {
  width: 20px;
}

.query-info .query-btn-list .whatsapp-btn {
  background: #fff;
  padding: 9px 20px;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  border-radius: 25px;
  border: 1px solid rgba(57, 174, 65, 1);
  color: rgba(57, 174, 65, 1);
}

.query-info .query-btn-list .whatsapp-btn span.icn {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: -2px;
}

.query-info .query-btn-list .whatsapp-btn span.icn img {
  width: 20px;
}

.query-info .query-btn-list .whatsapp-btn span:last-child {
  display: inline-block;
  line-height: 1;
  margin-left: 10px;
}

.query-info .query-btn-list .whatsapp-btn:hover {
  background: rgba(57, 174, 65, 1);
  color: #fff;
}

.query-info .query-btn-list .whatsapp-btn:hover span.icn img {
  filter: brightness(0) invert(1);
}

.details-university-card {
  background: rgba(255, 255, 255, 1);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.details-university-card h5 {
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 10px;
  font-size: 22px;
}

.details-university-card .university-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.university-list .university-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(223, 223, 223, 1);
  overflow: hidden;
}

.university-list .university-item .university-logo {
  width: 100%;
  height: 75px;
  padding: 4px;
}

.university-list .university-item .university-logo img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.university-list .university-item .university-name {
  background: rgba(242, 241, 245, 1);
  padding: 8px 10px;
}

.university-list .university-item .university-name p {
    color: rgba(67, 67, 67, 1);
    line-height: 22px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 45px;
    overflow: hidden;
}

.faq-according .accordion-item {
  border: 1px solid rgba(190, 190, 190, 1);
  margin-top: 10px;
  border-radius: 7px;
}

.faq-according .accordion-item:first-child {
  border-top: 1px solid rgba(190, 190, 190, 1) !important;
  margin-top: 0;
}

.faq-according .accordion-item:last-child {
  border-bottom: 1px solid rgba(190, 190, 190, 1) !important;
}

.faq-according .accordion-item .accordion-button {
  border-radius: 7px;
  padding: 12px 15px;
  color: rgba(72, 72, 72, 1);
  font-size: 16px;
  outline: none;
  box-shadow: none !important;
}

.faq-according .accordion-item .accordion-button::after {
  content: '\f078';
  font-family: 'fontAwesome';
  background: none;
  color: rgba(102, 102, 102, 1);
}

.faq-according .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotate(-90deg);
  color: #fff;
}

.faq-according .accordion-item:last-child .accordion-button {
  border-radius: 7px !important;
}

.faq-according .accordion-item .accordion-button:not(.collapsed) {
  border-radius: 7px 7px 0 0 !important;
  background: var(--secondary-bg);
  color: #fff;
}

.faq-according .accordion-item .accordion-body .para {
  color: rgb(102 102 102);
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
}

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

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

.faq-left h5 {
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 10px;
  font-size: 22px;
}

.faq-left p {
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  text-align: justify;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.faq-left-btn-grp {
  margin-top: 15px;
}

.faq-left-btn-grp h6 {
  color: var(--primary-color);
  font-weight: 600;
}

.faq-left-btn-grp .query-btn-list a {
  display: block;
  margin-top: 18px;
  text-align: center;
}

.faq-left-btn-grp .query-btn-list a.primary-btn span.icn {
  display: inline-block;
  margin-right: 10px;
}

.faq-left-btn-grp .query-btn-list a.primary-btn span.icn img {
  width: 20px;
}

.faq-left-btn-grp .query-btn-list a.whatsapp-btn {
  background: #fff;
  padding: 9px 20px;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  border-radius: 25px;
  border: 1px solid rgba(57, 174, 65, 1);
  color: rgba(57, 174, 65, 1);
  width: 100%;
}

.faq-left-btn-grp .query-btn-list a.whatsapp-btn span:last-child {
  display: inline-block;
  line-height: 1;
  margin-left: 5px;
}

.faq-left-btn-grp .query-btn-list a.whatsapp-btn span.icn {
  display: inline-block;
  margin-right: 10px;
}

.faq-left-btn-grp .query-btn-list a.whatsapp-btn span.icn img {
  width: 20px;
}

.faq-left-btn-grp .query-btn-list a.whatsapp-btn:hover {
  background: rgba(57, 174, 65, 1);
  color: #fff;
}

.faq-left-btn-grp .query-btn-list a.whatsapp-btn:hover span.icn img {
  filter: brightness(0) invert(1);
}

.top-card-content {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  min-height: 255px;
  margin-bottom: 25px;
}

.top-card-content .title {
  color: rgba(70, 70, 70, 1);
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

.top-card-content .title span {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: -2px;
}

.top-card-content .title span img {
  width: 27px;
}

.top-card-content .para {
  color: rgba(128, 128, 128, 1);
  line-height: 27px;
  /* text-align: justify; */
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  margin: 0;
  margin-top: 15px;
  font-weight: 400;
}

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

.service-list-img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  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: 12px;
  padding-left: 28px;
  font-family: "Roboto", sans-serif;
}

.service-details-list ul li::after {
  position: absolute;
  content: '\f336';
  font-family: 'fontawesome';
  top: -2px;
  left: 0;
  color: var(--darkblue);
  font-size: 17px;
}

.para-highlight {
  background: #fff;
  text-align: center !important;
  padding: 9px 10px;
  font-weight: 500;
  color: var(--secondary-color) !important;
  border-radius: 3px;
}

.fees-table table {
  border-collapse: separate;
  border-spacing: 0;
  /* overflow: hidden; */
  border-radius: 5px;
  background: #fff;
  width: 100%;

}

.fees-table table th,
.fees-table table td {
  border: 1px solid rgb(223 223 223 / 50%);
  /* text-align: center; */
  padding: 15px 15px;
}

.fees-table table th {
  color: #fff;
  border-right: 0;
  background: var(--darkblue);
  font-size: 15px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.fees-table table td {
  color: rgba(66, 66, 66, 1);
  border-top: 0;
  border-right: 0;
}

.fees-table table tr th:first-child {
  border-radius: 5px 0 0 0;
}

.fees-table table tr th:last-child {
  border-radius: 0 5px 0 0;
  border-right: 1px solid rgb(223 223 223);
}

.fees-table table tr td:last-child {
  border-right: 1px solid rgb(223 223 223);
}

.fees-table table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

.fees-table table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

.prmy-highlight {
  background: var(--primary-bg);
  color: #ffffffd6 !important;
  padding: 8px 17px;
  line-height: 20px !important;
  border-radius: 5px
}

/* === end all details page === */
/* === start programs === */
.study-abroad-card.programs .para {
  color: rgba(128, 128, 128, 1);
  font-family: "Roboto", sans-serif;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 43px;
  line-height: 21px;
}

.study-abroad-card.programs .study-img {
  margin-top: 12px;
}

.study-abroad-card.programs .title .hdg-h6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 38px;
}

.cousre-top-content {
  margin-bottom: 40px;
}

.cousre-top-content h5 {
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 10px;
  font-size: 22px;
}

.cousre-top-content p {
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  text-align: justify;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.cousre-top-content h6 {
  color: rgba(67, 67, 67, 1);
  font-family: "Roboto", sans-serif;
  margin-bottom: 12px;
}

.study-abroad-card.courses .title {
  border: none;
  padding-bottom: 0;
  margin-bottom: 8px;
}

.study-abroad-card.courses .title .hdg-h6 {
  white-space: nowrap;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}

.study-abroad-card.courses .para {
  color: rgba(128, 128, 128, 1);
  font-family: "Roboto", sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 43px;

}

.inner-secondary-hdg-h5 {
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 10px;
  font-size: 22px;
}

.border-radius-10 {
  border-radius: 10px;
}

.section-medium-hdg .hdg-h5 {
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 10px;
  font-size: 22px;
}

.course-type-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* column-gap: 40px;
    row-gap: 20px; */
  gap: 20px;
}

.cousre-type-item {
  position: relative;
  padding: 8px 30px;
  /* border-radius: 3px; */
  display: flex;
  align-items: center;
  background: rgba(219, 219, 219, 1);
  clip-path: polygon(2% 0, 0 48%, 2% 100%, 98% 99%, 100% 48%, 98% 0%);
  z-index: 1;
}

.cousre-type-item::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #fff;
  clip-path: polygon(2% 0, 0 48%, 2% 100%, 98% 99%, 100% 48%, 98% 0%);
  z-index: -1;

}

.cousre-type-item .hdg-h6 {
  position: relative;
  margin: 0;
  padding-left: 24px;
  color: rgba(66, 66, 66, 1);
  font-weight: 500;
}

.cousre-type-item .hdg-h6::before {
  position: absolute;
  content: '';
  top: 0;
  left: -10px;
  width: 25px;
  height: 25px;
  background: url(../img/icons/grauate-01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  bottom: 0;
  margin: auto 0;
}

.study-abroad-card.card-border {
  border: 1px solid rgba(216, 216, 216, 1);
}

.white-bg-card .dark-hdg {
  color: rgba(67, 67, 67, 1);
}

.under-grauate-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  padding: 13px;
  box-shadow: 3px 3px 0px rgb(0 0 0 / 30%);
  margin-top: 15px;
}

.under-grauate-item .img {
  width: 190px;
  height: 165px;
  border-radius: 16px;
  overflow: hidden;
}

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

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

.under-grauate-item .cntnt h5 {
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 5px;
  font-size: 22px;
}

.under-grauate-item .cntnt p {
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  text-align: justify;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.study-abroad-card.programs.under-graduate .title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.study-abroad-card.programs.under-graduate .title .cntry-flg {
  width: 37px;
  height: 37px;
}

.study-abroad-card.programs.under-graduate .title .cntry-flg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.study-abroad-card.programs.under-graduate .title .cntry-nm {
  width: calc(100% - 48px);
}

.study-abroad-card.programs.under-graduate .title .cntry-nm p {
  color: rgba(58, 59, 169, 1);
  margin: 0;
  font-size: 14px;
}

.study-abroad-card.programs.under-graduate .title .cntry-nm .hdg2-h6 {
  color: rgba(70, 70, 70, 1);
  margin: 0;
  margin-top: 3px;
  font-weight: 600
}

.study-abroad-card.programs.under-graduate .para2 {
  color: rgba(128, 128, 128, 1);
  font-family: "Roboto", sans-serif;
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  margin-top: 10px;
  min-height: 240px;
}

/* start new css */
.program-top-card.prgm-chse {
  position: relative;
  z-index: 1;
  padding: 30px 20px 20px 20px;
  margin-top: 15px;
}

.program-top-card.prgm-chse::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 100%;
  height: 50%;
  background: var(--secondary-bg);
  top: 0;
  right: 0;
  border-radius: 15px 15px 0 0;
}

.program-top-card.prgm-chse .hdg-title {
  margin-bottom: 18px;
}

.program-top-card.prgm-chse .top-card-content {
  padding: 20px 15px;
  min-height: 347px;
  margin-bottom: 0;
}

.program-top-card.prgm-chse .top-card-content .title {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}

.program-top-card.prgm-chse .top-card-content .para {
  margin-top: 5px;
}

.white-bg-card.brder {
  box-shadow: none;
  background: transparent;
}

.visa-list {
  margin-top: 20px;
}

.visa-list .visa-img {
  width: 100%;
  height: 100%;
}

.visa-list .visa-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.visa-list ul {
  list-style-type: none;
}

.visa-list li {
  display: block;
  position: relative;
}

.visa-list li::after {
  position: absolute;
  left: 0;
  top: -3px;
  content: "\f058";
  font-family: "fontawesome";
  color: #1c274c;
  font-size: 18px;
}

.visa-list li h6 {
  padding-left: 25px;
}

.visa-list li p {
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  text-align: justify;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.challenge-abraod {
  position: relative;
  width: 100%;
  height: 510px;
  z-index: 1;
  border-radius: 13px;
  overflow: hidden;
  margin-top: 35px;
}

.challenge-abraod .challenge-abraod-img {
  /* position: relative; */
  width: 100%;
  height: 100%;
}

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

}

.challenge-abraod::after {
  position: absolute;
  content: "";
  width: 74%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgb(58 59 169 / 90%) 70%, rgb(58 59 169 / 0%));
  z-index: 1;
}

.challenge-abraod .challenge-abraod-list {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  bottom: 0;
  right: 0;
  margin: auto 0;
  padding: 20px;
}

.challenge-abraod .challenge-abraod-list h5 {
  color: #fff;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 20px;
  font-size: 22px;
}

.challenge-abraod .challenge-abraod-list h6 {
  color: #fff;
}

.challenge-abraod .challenge-abraod-list li {
  color: #fff;
}

.challenge-abraod .challenge-abraod-list li p {
  line-height: 27px;
  text-align: justify;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.return-home {
  background: #fff;
  margin-top: 20px;
  padding: 15px;
  border-radius: 15px;
}

.return-home .hdg-h5-title {
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 17px;
  font-size: 22px;
  text-align: center;
  margin-top: 10px;
}

.return-home .under-grauate-item {
  border: 1px solid #b5b5b8;
}

.card-undar-graduate h5 {
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 10px;
  font-size: 22px;
}

.program-top-card.prgm-chse.funding-stdy .top-card-content {
  min-height: 347px;
}

.counseller-modal .btn-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  margin: 0;
  padding: 0;
  outline: none;
  box-shadow: none;
  z-index: 2;
  font-size: 23px;
  line-height: 1;
}

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

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

.counsellor-form .study-abroad-cntnt {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 12px;
  margin-top: 25px;
  box-shadow: none;
}

.counsellor-form .study-abroad-cntnt .study-abrd-hdg h6 {
  color: #282997;
  font-size: 23px;
  text-align: center;
  margin: 0;
}

.counsellor-form .study-abroad-cntnt .study-abrd-hdg h6 span {
  display: inline-block;
  margin-right: 6px;
  position: relative;
  top: -3px;
}

.counsellor-form .study-abroad-cntnt .study-abrd-hdg h6 span img {
  width: 26px;
}

.counsellor-form .study-abroad-cntnt .study-abrd-hdg .subtitle {
  text-align: center;
  color: #686868;
  margin: 0;
  margin-top: 3px;
  font-size: 14px;
}

.counsellor-form .study-abroad-frm {
  padding-top: 8px;
  margin-top: 18px;
}

.counsellor-form .study-abroad-frm .frm-itm .frm-cntrl2 {
  background: #f2f1f5;
  border: 1px solid #e5e5e5;
  padding-left: 43px;
}

.counsellor-form .study-abroad-frm .frm-itm .frm-cntrl2::placeholder {
  color: #8b8b8b;
}

.counsellor-form .study-abroad-frm .frm-itm .icn {
  left: 15px;
}

.counsellor-form .study-abroad-frm .frm-itm .icn img {
  width: 20px;
}

.counsellor-form .iti__selected-flag {
  padding: 0 0 0 17px !important;
}

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

.counsellor-form .select-frm .select2-container--default .select2-selection--single {
  padding: 6px 15px 6px 35px;
  background: #f2f1f5;
  border: 1px solid #e5e5e5;
}

.counsellor-form .select-frm .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #8b8b8b;
}

.counsellor-form .select-frm .select2-container--default.select2-container--below .select2-selection--single .select2-selection__rendered {
  color: #212529;
}
.counsellor-form .submit-btn .primary-btn{
  width: 100%;
  border: none;
}
/* end new css */
/* 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(--secondary-bg);
  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(--secondary-bg);
  stroke-width: 4;
  transition: stroke-dashoffset 10ms linear;
  box-sizing: border-box;
}
/* .calling-button{
      
} */
.calling-button a{
  position: fixed;
    bottom: 70px;
    left: 18px;
    height: 43px;
    width: 43px;
    cursor: pointer;
    border-radius: 50%;
    background: var(--secondary-bg);
    z-index: 2;
    border: 1px solid rgb(255 255 255 / 30%);
    text-align: center;
    line-height: 42px;
}
.calling-button a img{
    object-fit: scale-down;
    filter: brightness(0) invert(1);
    width: 20px;
}
.calling-button a::after, .calling-button a::before {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: -3px;
  width: 48px;
  height: 48px;
  background: #211056;
  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 bottom to top button */

/* === end programs === */
/* == start contact us ==*/
.contact-us {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(227, 227, 227, 1);
}

.contact-us .hdg-h3 {
  color: var(--secondary-color);
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-us .para {
  color: rgba(67, 67, 67, 1);
  line-height: 26px;
}

.contact-us .study-abroad-cntnt {
  background: #ffffff;
  border: none;
  border-radius: 0px;
  padding: 0px;
  margin-top: 15px;
  box-shadow: none;
}

.contact-us .study-abroad-cntnt .study-abroad-frm {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;
  column-gap: 20px;
  margin-top: 22px;
  border-top: 1px solid rgb(215 212 212);
}

.contact-us .study-abroad-cntnt .study-abroad-frm>.frm-grp {
  width: calc(50% - 10px);
  margin-top: 15px;
}

.contact-us .study-abroad-cntnt .study-abroad-frm>.frm-grp .frm-cntrl2.textarea {
  height: 85px;
  border-radius: 4px;
  resize: none;
}

.contact-us .study-abroad-cntnt .study-abroad-frm>.width-100 {
  width: 100%;
  text-align: right;
}

.contact-us .study-abroad-cntnt .study-abroad-frm .submit-btn .primary-btn {
  margin: 0 0 0 auto;
  width: fit-content;
  border-radius: 3px;
  border: none;
  border-radius: 25px;
}

.contact-info {
  background: var(--secondary-bg);
  padding: 22px;
  border-radius: 10px;
}

.contact-info .top-heading {
  border-bottom: 1px solid rgb(255 255 255 / 20%);
  padding-bottom: 17px;
  margin-bottom: 23px;
}

.contact-info .top-heading .hdg-h6 {
  color: #fff;
  font-size: 19px;
}

.contact-info .contact-info-list li {
  display: block;
}

.contact-info .contact-info-list .info-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  background: rgb(255 255 255 / 5%);
  padding: 15px;
  margin-top: 20px;
  border-radius: 5px;
  border: 1px solid rgb(255 255 255 / 10%);
}

.contact-info .contact-info-list .info-box .icn {
  width: 42px;
  height: 42px;
  background: rgba(43, 196, 240, 1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info .contact-info-list .info-box .icn img {
  width: 28px;
}

.contact-info .contact-info-list .info-box .info {
  width: calc(100% - 60px);
}

.contact-info .contact-info-list .info-box .info h6 {
  color: #fff;
}

.contact-info .contact-info-list .info-box .info .para {
  color: #fff;
  font-weight: 300;
  display: block;
  margin: 0;
}

.contact-us-social-icons {
  border-top: 1px solid rgb(255 255 255 / 20%);
  margin-top: 25px;
  padding-top: 15px;
  text-align: center;
}

.contact-us-social-icons h6 {
  color: #fff;
  margin-bottom: 15px;
  margin-top: 17px;
}

.contact-info .contact-us-social-icons li {
  display: inline-block;
}

.contact-info .contact-us-social-icons li a {
  display: block;
  color: rgb(255 255 255 / 85%);
  padding: 0;
  font-size: 16px;
  width: 32px;
  height: 32px;
  background: rgba(43, 196, 240, 1);
  border-radius: 50%;
  line-height: 32px;
  border: 1px solid rgba(43, 196, 240, 1);
  transition: all 0.3s ease;
}

.contact-info .contact-us-social-icons li a:hover {
  background: #fff;
  color: rgba(43, 196, 240, 1);
}

.contact-form-map {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}

.contact-form-map .map {
  width: 100%;
  height: 350px;
  border-radius: 0 5px 5px 0;
  overflow: hidden;
}

.contact-form-map .map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.contact-us .study-abroad-frm .frm-itm .frm-cntrl2,
.contact-us .select-frm .select2-container--default .select2-selection--single,
.contact-us .study-abroad-frm .captch-main .catpch-input input {
  background: #fff;
}

.footer-whatsapp .img {
  width: 100%;
  height: 250px;
}

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

/* == end contact us == */
/* start blog */
.blog-top {
  border-bottom: 1px solid rgba(169, 169, 169, 1);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.blog-top h5 {
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 0;
  font-size: 22px;
}

.blog-serach {
  text-align: right;
  position: relative;
}

.blog-serach input {
  background: #fff;
  border: none;
  outline: none;
  padding: 10px 50px 10px 15px;
  box-shadow: 0 0 10px rgb(0 0 0 / 7%);
  border-radius: 4px;
  height: 41px;
  font-size: 14px;
  width: 280px;
}

.blog-serach .blg-srch-btn {
  background: var(--secondary-bg);
  border: none;
  width: 41px;
  height: 41px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 4px 4px 0;
}

.blog-serach .blg-srch-btn img {
  width: 18px;
  filter: brightness(0) invert(1);
}

.blog-card {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
}

.blog-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s linear;
}

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

.blog-date {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 2;
  background: #fff;
  padding: 5px;
  border-radius: 8px;
  text-align: center;
  width: 80px;
  height: 55px;
}

.blog-date .day {
  margin: 0;
  font-size: 23px;
  font-weight: 700;
  position: relative;
  top: 6px;
}

.blog-date .date {
  margin: 0;
  background: rgba(77, 79, 255, 1);
  color: #fff;
  font-size: 12px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -12px;
  border-radius: 10px;
  line-height: 0;
  padding: 12px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-content {
  padding: 13px 0;
}

.blog-card-content .subtitle {
  margin: 0;
  font-size: 14px;
  color: rgba(127, 127, 127, 1);
  margin-bottom: 8px;
}

.blog-card-content .title {
  color: rgba(70, 70, 70, 1);
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 45px;
  overflow: hidden;
  line-height: 21px;
  margin-bottom: 13px;
}

.blog-card-content .grey-btn {
  display: block;
  text-align: center;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.page-btn,
.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover,
.nav-btn:hover {
  background: #f5f5f5;
}

.page-btn.active {
  background: var(--darkblue);
  color: #fff;
}

.nav-btn {
  font-size: 18px;
  color: #999;
}

/* end blog */
/* end inner pages */
/* 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(--secondary-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: 11px;
  width: 20px;
}

.select-frm .select2-container--default .select2-selection--single:hover {
  border: 1px solid rgba(70, 89, 190, 1);
}

/* 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;
}

.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: var(--secondary-bg);
  padding-top: 65px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: auto;
}

.ftr-crcle {
  position: absolute;
  width: 100%;
  height: 120px;
  top: -74px;
  left: 0;
  z-index: -1;
  white-space: nowrap;
}

.crcl {
  width: 260px;
  height: 120px;
  background: rgb(255 255 255 / 3%);
  display: inline-block;
  border-radius: 50%;
  margin-left: -65px
}

.ftr-crcle.btm {
  top: inherit;
  bottom: -74px;
}

.footer-top-content {
  border-bottom: 1px dashed rgb(255 255 255 / 20%);
  margin-bottom: 35px;
  padding-bottom: 30px;
}

.footer-logo {
  /* background: #fff; */
  width: 135px;
  /* padding: 10px; */
  /* border-radius: 5px; */
}

.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: 19px;
  font-weight: 500;
}

.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: 10px;
  padding-left: 36px;
}

.footer_list li a::before {
  content: '\f19d';
  font-family: 'fontAwesome';
  position: absolute;
  color: rgb(255 255 255 / 80%);
  left: 13px;
  font-size: 11px;
  top: 12px;
}

.footer-cntnt .hdg-h5 {
  color: rgb(255 255 255 / 95%);
  font-size: 19px;
  font-weight: 500;
}

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

.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 {
  border-top: 1px dashed rgb(255 255 255 / 20%);
  margin-top: 32px;
  padding-top: 17px;
  padding-bottom: 20px;
}

.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;
}

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

.last-footer .ftr-lst-link {
  text-align: right;
}

.last-footer .ftr-lst-link ul {
  list-style-type: none;
  padding: 0;
}

.last-footer .ftr-lst-link li {
  display: inline-block;
}

.last-footer .ftr-lst-link li a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-align: center;
  font-weight: 300;
  font-size: 14px;
  padding: 0 10px;
  position: relative;
}

.last-footer .ftr-lst-link li:last-child a {
  padding-right: 0;
}

.last-footer .ftr-lst-link li:last-child a::after {
  display: none;
}

.last-footer .ftr-lst-link li a::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 16px;
  background: rgb(255 255 255 / 20%);
  top: 3px;
  right: -2px;
}



.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: 14px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 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 */

/* start Landing pages */
.landing-light-bg{
  background: #F2F1F5;
}
.query-card.landing-query {
    margin: 50px 0;
}
.query-card.landing-query .let-img{
    position: absolute;
    width: 53%;
    right: 0;
    top: 0;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    border: none;
}
.query-card.landing-query .let-img::after{
      position: absolute;
    content: '';
    width: 10px;
    height: 300px;
    background: #282997;
    left: 46px;
    z-index: 2;
    transform: rotate(350deg);
    top: -78px;
}
.query-card.landing-query .let-img img{
  width: 100%;
    height: 100%;
    object-position: center;
}
.query-card.landing-query>.row{
  z-index: 2;
  position: relative;
}
.query-card.landing-query::after{
      z-index: 1;
    background: url(../img/shape/wave2.png);
    width: 51%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: skewX(10deg);
}
.query-card.landing-query::before{
  position: absolute;
    width: 51%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
    background: rgb(255 255 255 / 50%);
    z-index: 1;
    transform: skewX(10deg);
}
.study-abroad-card.lndng-srvce .title{
      border-bottom: none;
    padding-bottom: 0;
}
.study-abroad-card.lndng-srvce .title .hdg-h6{
  color: rgba(70, 70, 70, 1);
    font-size: 16px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px;
    line-height: 23px;
}
.study-abroad-card.lndng-srvce .study-img{
  height: 205px;
}
.stdy-abrd-cntnt{
      padding: 20px 15px;
    background: #fff;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #D3D3D3;
    border-radius: 15px;
    position: relative;
}
.stdy-abrd-cntnt::after{
      position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/shape/wave2.png);
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .5;
}
.stdy-abrd-cntnt h3{
  color: #211056;
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    line-height: 36px;
    text-transform: uppercase;
}
.stdy-abrd-cntnt ul{
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}
.stdy-abrd-cntnt li{
  display: block;
  margin-top: 10px;
}
.stdy-abrd-cntnt li a{
  display: block;
}
.stdy-abrd-cntnt .abrd-info{
     background: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    border-radius: 6px;
}
.stdy-abrd-cntnt .abrd-info .icn{
  width: 55px;
    height: 55px;
    background: var(--primary-bg);
    border-radius: 5px;
    text-align: center;
    line-height: 55px;
}
.stdy-abrd-cntnt .abrd-info .icn img{
      width: 45px;
}
.stdy-abrd-cntnt .abrd-info .cntnt{
  width: calc(100% - 70px);
}
.stdy-abrd-cntnt .abrd-info .cntnt h6{
 color: var(--primary-color);
    font-size: 17px;
    font-weight: 600;
}
.stdy-abrd-cntnt .abrd-info .cntnt p{
  margin: 0;
}
.landing-img{
  position: relative;
    width: 100%;
    height: 504px;
    overflow: hidden;
    border-radius: 12px;
}
.landing-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landing-video {
    position: relative;
    width: 100%;
    height: 504px;
    overflow: hidden;
    border-radius: 12px;
}
.landing-video img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landing-video .top-cntnt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
}
.landing-video .top-cntnt h6{
  color: #fff;
    font-size: 18px;
}
.landing-video .top-cntnt p{
  color: #fff;
    margin: 0;
    font-size: 14px;
    font-weight: 200;
}
.landing-video .vdo-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing-video .vdo-btn .ply-btn{
   width: 32px;
  height: 44px;
  display: block;
  position: relative;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
 
}
.landing-video .vdo-btn .ply-btn i{
 color: var(--primary-bg);
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
}
.landing-video .vdo-btn .ply-btn:before{
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-border 1100ms ease-out infinite;
}
.landing-video .vdo-btn .ply-btn:after{
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  transition: all 200ms;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.lndg-crd-info {
    background: #fff;
    padding: 15px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    border: 1px solid #D3D3D3;
}
.lndg-crd-info .img{
  width: 200px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}
.lndg-crd-info .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lndg-crd-info .cntnt{
  width: calc(100% - 220px);
    padding-right: 20px;
} 
.lndg-crd-info .cntnt h4{
      color: #211056;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: .6px;
    margin-bottom: 18px;
}
.lndg-crd-info .cntnt p{
  color: #434343;
}
.lndg-crd-info .cntnt .primary-btn span.icn{
  display: inline-block;
    margin-right: 10px;
}
.lndg-crd-info .cntnt .primary-btn span.icn img{
  width: 20px;
}
.tst-card-lng-pg {
    position: relative;
    padding-left: 20px;
    margin-top: 75px;
    z-index: 1;
}
.tst-card-lng-pg::after{
  position: absolute;
    content: '';
    top: 23px;
    left: 0;
    border-width: 40px 10px 10px 22px;
    border-style: solid;
    border-color: #27165B transparent transparent transparent;
    z-index: -1;
}
.lng-tsmnl {
    background: #fff;
    padding: 25px 20px;
    border-radius: 20px;
    position: relative;
}
.lng-tsmnl .stdnt-img{
  position: absolute;
    width: 110px;
    height: 110px;
    top: -55px;
    right: 0;
    border: 5px solid #fff;
    border-radius: 50%;
    overflow: hidden;
}
.lng-tsmnl .stdnt-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lng-tsmnl .tsnl-txt{
    position: absolute;
    top: -50px;
    left: -20px;
    background: #2F1974;
    padding: 10px 20px;
    border-radius: 0 20px 0 0;
    z-index: 1;
}
.lng-tsmnl .tsnl-txt p{
  margin: 0;
    color: #fff;
    font-style: italic;
    font-family: auto;
    font-size: 19px;
}
.lng-tsmnl .tsnl-txt h4{
      margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
}
.lng-tsmnl .st-nm{
  margin-top: 12px;
}
.lng-tsmnl .st-nm h6{
  color: #2F1974;
    margin: 0;
    font-size: 18px;
}
.lng-tsmnl .st-nm ul{
  list-style-type: none;
  padding: 0;

}
.lng-tsmnl .st-nm li{
  display: inline-block;
}
.lng-tsmnl .st-nm li a{
  display: block;
    width: 17px;
    height: 17px;
    line-height: 1;
    margin-top: 5px;
    margin-left: 4px;
}
.lng-tsmnl .st-nm li a img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.lng-tsmnl .st-nm li:first-child a{
  margin-left: 0;
}
.lng-tsmnl .landing-tst-msg{
      margin-top: 15px;
    max-height: 250px;
    overflow-y: auto;
}
.lng-tsmnl .landing-tst-msg p{
  color: #434343;
    text-align: justify;
    margin: 0;
    line-height: 27px;
}
.lng-tsmnl .uni-logo{
        width: 190px;
    height: 65px;
    margin: 15px auto 0 auto;
}
.lng-tsmnl .uni-logo img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.lndg-bnr{
  position: relative;
  width: 100%;
  z-index: 1;
  height: 780px;
}
.lndg-bnr-img{
  width: 100%;
  height: 780px;
}
.lndg-bnr-img img{
  width: 100%;
  height: 100%;
object-fit: cover;
}
.landing-bnr-cntnt {
   position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.lngpg-cntnt {
    padding-right: 50px;
}
.lngpg-cntnt ul{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.lngpg-cntnt li{
      background: #fff;
    padding: 8px 10px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    border: 1px solid #A9A9A9;
}
.lngpg-cntnt li .flag{
  width: 25px;
  height: 25px;
  border-radius: 50%;
  line-height: 1;
}
.lngpg-cntnt li .flag img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lngpg-cntnt li span{
     color: #6E6E6E;
    font-size: 14px;
    line-height: 1;
}
.lngpg-cntnt .title{
      color: #fff;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: .6px;
    margin: 30px 0;
    line-height: 48px;
}
.lngpg-cntnt .para{
      color: rgb(255 255 255 / 88%);
    font-weight: 300;
    font-size: 16px;
}
.btn-grps-cht{
      display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;
    margin: 30px 0;
}
.btn-grps-cht .primary-btn{
  background: #fff;
  color: #282997;
}
.btn-grps-cht .primary-btn:hover{
  color: #fff;
}
.btn-grps-cht .primary-btn .icn{
  display: inline-block;
    margin-right: 10px;
    position: relative;
    top: -2px
}
.btn-grps-cht .primary-btn .icn img{
   width: 20px;
}
.btn-grps-cht .primary-btn:hover .icn img{
  filter: brightness(0) invert(1);
}
.btn-grps-cht .primary-btn span:last-child {
    display: inline-block;
    line-height: 1;
    margin-left: 10px;
}
.btn-grps-cht .whatsapp-btn{
      background: rgba(57, 174, 65, 1);
    padding: 9px 20px;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    border-radius: 25px;
    border: 1px solid rgba(57, 174, 65, 1);
    color: #fff;
}
.btn-grps-cht .whatsapp-btn span.icn {
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: -2px;
}
.btn-grps-cht .whatsapp-btn span.icn img {
    width: 20px;
    filter: brightness(0) invert(1);
}
.btn-grps-cht .whatsapp-btn span:last-child {
    display: inline-block;
    line-height: 1;
    margin-left: 10px;
}
.bnr-hg-lgt-txt{
  margin-top: 40px;
    background: rgb(255 255 255 / 3%);
    padding: 15px;
    backdrop-filter: blur(3px);
    border: 1px solid rgb(255 255 255 / 29%);
    border-radius: 10px;
    margin-right: 40px;
}
.bnr-hg-lgt-txt p{
  color: rgb(255 255 255 / 88%);
    font-weight: 300;
    font-size: 16px;
    margin: 0;
}
.study-abroad-cntnt.lndg-pg-frm{
 width: 360px;
    margin: 0 0 0 auto;
}
.study-abroad-frm.select-frm .frm-itm select{
      border-radius: 25px;
    padding-left: 45px;
    background: rgba(242, 241, 245, 1);
    border: 1px solid rgba(229, 229, 229, 1);
}
.study-abroad-frm.select-frm .frm-itm .select2-container--default .select2-selection--single .select2-selection__rendered{
  color: #8b8b8b;
}

.study-abroad-frm.select-frm .select2-container.select2-container--focus .select2-selection--single .select2-selection__rendered{
  color: #434343;
}
.study-abroad-frm.select-frm .select2-container.select2-container--below .select2-selection--single .select2-selection__rendered{
  color: #434343;
}
.study-abroad-frm.select-frm
.select2-container--default 
.select2-selection--single 
.select2-selection__arrow b {
  border: none;
  position: relative;
  margin-left: 0;
  margin-top: 0;
}
.study-abroad-frm.select-frm 
.select2-container--default 
.select2-selection--single 
.select2-selection__arrow b::before {
  content: "\f078";
  font-family: "fontAwesome";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #282997;
} 

.study-abroad-frm.select-frm 
.select2-container--default.select2-container--open
.select2-selection--single
.select2-selection__arrow b::before{
  content: "\f077";
}
/* end Landing pages */


small.help-block
 {
    color: red;
    font-size: 11px;
}