body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #434343;
  font-weight: 400;
  /* margin: 0 40px; */
}
* {
  scrollbar-width: thin;
}
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: #0e053f;
  --primary-bg: #1e2757;
  --primary-rgba: rgba(39, 50, 108, 1);

  --primary-btn-color: #27326c;
  --white: #fff;
  --lgt-txt-color: rgb(220, 232, 255);

  --heading-color: #2a2a2a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

.theme-bg {
  background: rgba(30, 39, 87, 1);
}

.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(--primary-color);
  font-size: 33px;
  font-weight: 600;
}

.section-heading.medium-small {
  font-size: 23px;
}

.section-padding {
  padding: 40px 0;
}

.section-lightbg {
  background: rgba(39, 50, 108, 0.06);
}

.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: var(--primary-rgba);
  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(--primary-rgba);
  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(--primary-rgba);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.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 {
  border: 1px solid #5c6ab3;
  text-decoration: none;
  color: #fff;
}

.primary-btn {
  background: var(--primary-btn-color);
  color: var(--white);
  padding: 10px 22px;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  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(0.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;
  /* background: #fff; */
  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;
}

/* 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 */
.sectn-hdg {
  color: var(--primary-color1);
  font-family: "Frank Ruhl Libre", serif;
  margin: 0;
  font-weight: 700;
  position: relative;
  font-size: 26px;
}

.sectn-white-hdg {
  color: var(--white);
  font-family: "Frank Ruhl Libre", serif;
  margin: 0;
  font-weight: 700;
  position: relative;
  z-index: 1;
  font-size: 26px;
}

/* start top header */
.top-info {
  background: var(--primary-bg);
  padding: 6px 0px;
  position: relative;
  z-index: 1;
}

.top-info::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  background: rgb(255 255 255 / 10%);
  top: 0;
  right: 0;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 4% 100%);
  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;
  padding-left: 110px;
}

.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: 9999;
}

.hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 15px;
  padding: 0 0 0 110px;
  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 {
  position: absolute;
  top: -9px;
  left: 0;
  background: #fff;
  z-index: 1;
  width: 85px;
  height: 85px;
  box-shadow: 0 0 5px rgb(0 0 0 / 30%);
  border-radius: 0 0 4px 4px;
}

.logo::before {
  position: absolute;
  content: "";
  border-width: 49px 42px 27px 43px;
  border-style: solid;
  border-color: transparent transparent #ffffff transparent;
  top: -76px;
  left: 0px;
}

.hdr > .logo img {
  width: 74px;
  position: absolute;
  top: -19px;
  left: 6px;
}

.hdr > .menu {
  width: calc(100% - 170px);
}

.hdr > .hedr-btns {
  width: 170px;
}

.hdr > .hedr-btns .primary-btn {
  padding: 12px 20px;
}

.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 li {
  display: inline-block;
  position: relative;
}

.menuS li a {
  display: block;
  color: #636363;
  padding: 22px 18px;
  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{
  top: 21px;
} */
.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 .mn-anchr.active + .arw-icn i{
  color: rgba(70, 89, 190, 1);
    transform: rotate(-180deg);
} */
.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: 315px;
  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: none; */
  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 */
.banner-form-content {
  /* position: absolute; */
  /* top: 100px; */
  /* right:  0; */
  /* width: 100%; */
  z-index: 2;
  /* position: relative; */
}
.banner-form-content > div {
  position: relative;
}
.banner-from {
  width: 310px;
  position: absolute;
  top: 22px;
  right: 30px;
  z-index: 2;
  margin: 0 0 0 auto;
}
.banner-from .study-abroad-cntnt {
  padding: 20px 15px;
  margin-top: 0px;
}
.banner-from .study-abroad-cntnt .study-abrd-hdg h6 {
  text-align: center;
}
.banner-from .study-abroad-frm .frm-itm .icn {
  top: 0;
  left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 30px;
  height: 41px;
}
.banner-from .study-abroad-frm .frm-itm .icn i {
  color: #6e6e6e;
}
.banner-from .study-abroad-frm .frm-itm .frm-cntrl2 {
  padding-left: 40px;
}
.banner-from .study-abroad-frm .iti__selected-flag {
  padding: 0 0 0 15px !important;
}
.banner-from .study-abroad-frm .iti--allow-dropdown input,
.banner-from .study-abroad-frm .iti--allow-dropdown input[type="text"],
.banner-from .study-abroad-frm .iti--allow-dropdown input[type="tel"],
.banner-from .study-abroad-frm .iti--separate-dial-code input,
.banner-from .study-abroad-frm .iti--separate-dial-code input[type="text"],
.banner-from .study-abroad-frm .iti--separate-dial-code input[type="tel"] {
  padding-left: 52px !important;
}
.banner-from
  .select-frm
  .select2-container--default
  .select2-selection--single {
  padding: 6px 15px 6px 33px;
}
.banner-itms {
  border-radius: 10px;
  position: relative;
}

.banner-itms .banner-img {
  width: 100%;
  height: 680px;
  position: relative;
}

/* .banner-itms .banner-img .bnr-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: rgb(255 255 255 / 70%);
  top: 0;
  left: 12%;
} */

.banner-itms .banner-img::after {
  position: absolute;
  width: 63%;
  height: 100%;
  content: "";
  background: linear-gradient(
    to right,
    rgb(30 39 87 / 80%) 60%,
    transparent 94%
  );
  top: 0;
  left: 0;
}

.banner-itms .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: -236px 0;
}

.banner-cntnt {
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
}

.banner-cntnt .bnr-subtitle {
  border: 1px solid rgb(255 255 255 / 24%);
  background: rgba(39, 50, 108, 0.6);
  width: fit-content;
  padding: 8px 15px;
  border-radius: 25px;
  margin-bottom: 16px;
}

.banner-cntnt .bnr-subtitle .subtitle {
  color: #fff;
  font-weight: 300;
  margin: 0;
}

.banner-cntnt .bnr-subtitle .subtitle span {
  display: inline-block;
}

.banner-cntnt .bnr-subtitle .subtitle span:first-child {
  font-size: 14px;
  margin-right: 6px;
}

.banner-cntnt .bnr-hdg {
  color: var(--white);
  line-height: 50px;
  letter-spacing: 0.3px;
  position: relative;
  margin: 0;
  font-size: 34px;
  font-weight: 600;
}

.banner-cntnt .bnr-hdg .hdg_icn {
  width: 55px;
  margin-left: 17px;
  position: absolute;
  margin-top: -2px;
}

.banner-cntnt .bnr-para {
  color: rgb(255 255 255 / 85%);
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  margin: 25px 0;
}

.banner-cntnt .banner-btns-grp .white-btn {
  border-radius: 3px;
}

.banner-cntnt .banner-btns-grp .white-btn.btn2 {
  background: transparent;
  color: #fff;
  margin-left: 12px;
}

.owl-carousel .owl-dots {
  margin-top: 3px !important;
}

.owl-carousel .owl-dots .owl-dot {
  margin: 0;
  padding: 0;
  outline: none;
  line-height: 0;
  border-radius: 50%;
  border: 1px solid var(--primary-rgba);
  width: 20px;
  height: 20px;
  background: #fff;
}

.owl-carousel .owl-dots .owl-dot span {
  margin: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  opacity: 1;
}

.owl-carousel .owl-dots .owl-dot:first-child span {
  margin-left: 0;
}

.owl-carousel.owl-theme .owl-nav {
  margin-top: 20px;
}

.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;
}

.banner-slider.owl-carousel .owl-dots span {
  width: 12px;
  height: 12px;
  background: #fff;
  display: inline-block;
}

.banner-slider.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--primary-rgba);
}

.banner-slider.owl-carousel .owl-dots {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 !important;
}

.banner-slider.owl-carousel .owl-dots .owl-dot:hover span {
  background: var(--primary-rgba);
  opacity: 0.8;
}

.banner-slider.owl-carousel .owl-dots .owl-dot:hover.active span {
  background: var(--primary-rgba);
  opacity: 0.8;
}

.banner-slider.owl-carousel .owl-dots::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 120px;
  background: rgb(255 255 255 / 50%);
  bottom: -150px;
  margin-left: 9px;
}

.banner-slider.owl-carousel .owl-dots::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 120px;
  background: rgb(255 255 255 / 50%);
  top: -150px;
  margin-left: 9px;
}

/* end banner */
/* start banner search */
.bnr-srch {
  margin-top: -135px;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid rgb(255 255 255 / 30%);
  padding: 25px 17px;
  border-radius: 20px;
  background: rgba(30, 39, 87, 0.6);
  backdrop-filter: blur(3px);
}

.bnr-fields-row,
.bnr-btn-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /* gap: 12px; */
}

.bnr-fields-row .box {
  flex: 0 0 calc(16.65%);
  max-width: calc(16.65%);
  padding: 5px;
}

.bnr-btn-row {
  justify-content: end;
  gap: 12px;
}

.bnr-btn-row .box {
  flex: 0 0 auto;
  max-width: none;
}

.srch-hdg {
  position: relative;
}

/* .srch-hdg::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 50px;
  background: rgb(255 255 255 / 66%);
  top: -13px;
  right: 15px;
} */

.srch-hdg .hdg-h6 {
  color: var(--white);
  margin: 0;
  font-size: 15px;
  font-weight: 400;
}

.srch-hdg .hdg-h6 span {
  display: inline-block;
}

.srch-hdg .hdg-h6 span.icn {
  margin-right: 5px;
}

.srch-hdg .hdg-h6 span.icn img {
  width: 26px;
  vertical-align: middle;
}

.bnr-frm-grp {
  position: relative;
}

.bnr-frm-grp > .icn {
  position: absolute;
  z-index: 2;
  left: 1px;
  top: 1px;
  width: 45px;
  height: 40px;
  /* background: red; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.bnr-frm-grp > .icn img {
  width: 27px;
  filter: brightness(0) invert(1);
}

.bnr-frm-grp .select2-container {
  width: 100% !important;
}

.bnr-frm-grp .select2-container--default .select2-selection--single {
  background-color: rgb(255 255 255 / 10%);
  border: 1px solid rgb(255 255 255 / 31%);
  border-radius: 4px;
  height: 42px;
}

.bnr-frm-grp
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #fff;
  line-height: 40px;
  padding-left: 50px;
  font-size: 15px;
  font-weight: 300;
}

.bnr-frm-grp
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 38px;
}

.bnr-frm-grp
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #fff transparent transparent transparent;
}

.bnr-frm-grp
  .select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #fff transparent;
}

.bnr-srch .white-btn {
  width: 100%;
  border: 1px solid #fff;
  border-radius: 3px;
}

.bnr-srch .white-btn:hover {
  border: 1px solid #5c6ab3;
}

.bnr-srch .white-btn .img img {
  width: 21px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

.bnr-srch .white-btn:hover .img img {
  filter: brightness(0) invert(1);
}

.bnr-frm-grp .frm-cntl {
  width: 100%;
  outline: none;
  background-color: rgb(255 255 255 / 10%);
  border: 1px solid rgb(255 255 255 / 31%);
  border-radius: 4px;
  height: 42px;
  padding-left: 45px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}
.bnr-frm-grp .frm-cntl::placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 300;
}
.bnr-srch.bnr-srch-banner {
  flex-direction: inherit;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
}
.bnr-srch.bnr-srch-banner .box {
  max-width: 20%;
  flex: 0 0 20%;
  padding: 7px;
}
.bnr-srch.bnr-srch-banner .srch-hdg {
  position: relative;
}
.bnr-srch.bnr-srch-banner .srch-hdg::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 50px;
  background: rgb(255 255 255 / 66%);
  top: -13px;
  right: 15px;
}
/* end banner search */
/* start about us */
.about-content {
  margin-top: 30px;
}

.about-content .hdg-h4 {
  color: var(--primary-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 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  align-items: end;
}

.img-box1 {
  width: 100%;
  height: 445px;
  border-radius: 4px;
  position: relative;
}

.img-box1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* .img-box1::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
} */
.img-box2 {
  width: 100%;
  height: 470px;
  border-radius: 4px;
}

.img-box2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.abt-ex {
  background: var(--primary-rgba);
  padding: 15px;
  margin-top: 15px;
  border-radius: 3px;
}

.abt-ex .txt {
  color: rgb(255 255 255 / 90%);
  margin: 0;
  font-size: 13px;
  font-weight: 300;
}

.abt-ex .ex-bx {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 12px;
  margin-bottom: 12px;
}

.abt-ex .ex-bx .ex-icn {
  width: 60px;
  height: 65px;
  background: #fff;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-ex .ex-bx .abt-ex-cunt {
  width: calc(100% - 72px);
}

.abt-ex .ex-bx .abt-ex-cunt .abtcont {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 2px;
}

.abt-ex .ex-bx .abt-ex-cunt p {
  color: rgb(255 255 255 / 90%);
  font-size: 15px;
  margin: 0;
  font-weight: 300;
}

.study-destination-bg {
  width: 100%;
  height: 288px;
  background: url(../img/shape/shape-01.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  position: relative;
}

.img-shape {
  width: 90%;
  height: 200px;
  background: #fff;
  clip-path: polygon(
    3% 0%,
    1% 2%,
    0% 97%,
    2% 100%,
    98% 100%,
    100% 98%,
    100% 18%,
    98% 15%,
    76% 2%,
    72% 0%,
    42% 10%,
    39% 12%
  );
  margin: 0 auto;
  position: absolute;
  bottom: 20px;
  left: 5%;
}

.img-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s linear;
}

.destination-hdg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  padding: 2px 0 0 20px;
}

.destination-hdg .hdg-h5 {
  width: calc(100% - 54px);
  margin: 0;
  font-size: 18px;
  color: var(--primary-rgba);
  margin-top: 15px;
}

.destination-hdg .destination-flg {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 4px rgb(0 0 0 / 29%);
}

.destination-hdg .destination-flg img {
  width: 100%;
  height: 100%;
}

.study-destination.owl-carousel .owl-dots {
  margin-top: 20px !important;
}

.study-destination.owl-carousel .owl-dots .owl-dot {
  margin: 0 3px;
  width: 13px;
  height: 13px;
  background-color: rgba(39, 50, 108, 0.06);
}

.study-destination.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.study-destination.owl-carousel .owl-dots .owl-dot:hover {
  background-color: rgba(30, 39, 87, 0.5);
}

.study-destination.owl-carousel .owl-dots .owl-dot.active {
  background-color: rgba(30, 39, 87, 1);
}

.study-destination-bg:hover .img-shape img {
  transform: scale(1.2);
  transition: transform 0.5s linear;
}

/* end about us */
/* start scholarship opportunity */
.scholarsip-card-home {
  padding: 15px;
  border: 1px solid rgba(30, 39, 87, 0.2);
  border-radius: 10px;
  /* background: #fff; */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}

.scholarsip-card-home .icon {
  width: 40px;
  height: 40px;
}

.scholarsip-card-home .icon img {
  width: 40px;
}

.scholarsip-card-home .content {
  width: calc(100% - 52px);
}

.scholarsip-card-home .content .hdg-h6 {
  color: rgba(39, 50, 108, 1);
  font-weight: 600;
}

.scholarsip-card-home .content .para {
  color: rgba(131, 131, 131, 1);
  margin: 0;
  margin-top: 11px;
}

.scholarsip-card-home.active,
.scholarsip-card-home:hover {
  background: rgba(39, 50, 108, 1);
  border: 1px solid rgba(30, 39, 87, 0.2);
}

.scholarsip-card-home.active .icon img,
.scholarsip-card-home:hover .icon img {
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.3));
}

.scholarsip-card-home.active .content .hdg-h6,
.scholarsip-card-home:hover .content .hdg-h6 {
  color: #fff;
}

.scholarsip-card-home.active .content .para,
.scholarsip-card-home:hover .content .para {
  color: rgb(255 255 255 / 80%);
}

/* end scholarship opportunity */
/* start start book a consular */
.consular {
  padding: 40px 0;
  background: url(../img/bookcounsular.jpg);
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.consular::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(39, 50, 108, 0.6);
  top: 0;
  left: 0;
  z-index: -1;
}

.book-consular-content .hdg-h3 {
  color: #fff;
}

.book-consular-content .para {
  color: #fff;
  font-weight: 200;
}
.book-consular-content .white-btn {
  border-radius: 3px;
  font-weight: 500;
  font-size: 15px;
  margin-top: 25px;
}
.book-consular-content .white-btn span.icn {
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: -1px;
}
.book-consular-content .white-btn span.icn img {
  width: 22px;
  transition: all 0.3s ease;
}
.book-consular-content .white-btn span:last-child {
  display: inline-block;
  margin-left: 10px;
}
.book-consular-content .white-btn:hover span.icn img {
  filter: brightness(0) invert(1);
}

.consular-img {
  width: 100%;
  position: relative;
  height: 100%;
  z-index: 1;
}

.consular-img img {
  width: 190px;
  position: absolute;
  bottom: -41px;
  right: 75px;
  z-index: 1;
}

.consular-img::after,
.consular-img::before {
  position: absolute;
  content: "";
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgb(255 255 255 / 30%) 9%,
    transparent 60%
  );
  top: -15px;
}

.consular-img::after {
  right: 75px;
}

.consular-img::before {
  right: 156px;
  top: 60px;
  width: 200px;
  height: 200px;
}
.modal-backdrop {
  z-index: 9999;
}
.modal {
  z-index: 99999;
}
.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;
}
.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;
}
.consulation-time {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* start datepicker */
.dropdown-menu {
  padding: 0.5rem !important;
}

.datepicker .datepicker-switch {
  background-color: rgb(34 33 95 / 5%) !important;
  color: var(--primary-color) !important;
}

.datepicker table tr td span {
  height: 40px;
  line-height: 40px;
}

.datepicker td,
.datepicker th {
  width: 20px;
  height: 22px;
  font-size: 12px !important;
}

.datepicker td.today.day {
  background: var(--primary-color) !important;
  color: #fff;
}

.datepicker td.active.day {
  background: #0e053f33 !important;
  color: var(--primary-color);
}

.datepicker span.year.focused {
  background: var(--primary-color) !important;
  color: #fff;
}

.datepicker span.year.active.focused {
  background: var(--primary-color) !important;
  color: #fff;
}
.datepicker table tr td.today:hover:hover {
  color: #ffffff;
}
.datepicker table tr td span.month.active {
  background: var(--primary-color) !important;
}
.bootstrap-timepicker-widget .glyphicon-chevron-up:before {
  content: "\f077";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
}

.bootstrap-timepicker-widget .glyphicon-chevron-down:before {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
}
.bootstrap-timepicker-widget table td a {
  border: 1px transparent solid;
  padding: 0;
  color: #27326c;
  line-height: 1;
  background: #27326c17;
  border-radius: 3px;
  height: 20px;
}
.bootstrap-timepicker-widget table td a:hover {
  background: #27326c;
  color: #fff;
  border: 1px solid #27326c;
}
/* Hide original glyphicon style */
.bootstrap-timepicker-widget .glyphicon {
  font-family: "Font Awesome 6 Pro" !important;
  font-size: 12px;
}

.counsellor-form .study-abroad-frm .consulation-time .frm-itm .frm-cntrl2 {
  border-radius: 4px;
  height: 50px;
  padding-top: 22px;
  padding-left: 40px;
}
.counsellor-form .study-abroad-frm .consulation-time .frm-itm .icn {
  left: 11px;
  top: 12px;
}
.counsellor-form .study-abroad-frm .frm-itm .choose-text {
  position: absolute;
  font-size: 13px;
  color: #959595;
  left: 40px;
  top: 5px;
}
.counsellor-form .captch-main .catpch-input .frm-cntrl2 {
  background: #f2f1f5;
  border: 1px solid #e5e5e5;
}
.counsellor-form .captch-main .catpch-input .frm-cntrl2::placeholder {
  color: #8b8b8b;
}
.counsellor-form .submit-btn .primary-btn {
  border-radius: 25px;
}
.counseller-modal .modal-content {
  border-radius: 15px;
}
/* end datepicker */
/* end start book a consular */
/* start feature */
.feature-bg {
  background: var(--primary-rgba);
  padding: 40px;
  border-radius: 20px;
}

.feature-bg .para-white {
  line-height: 21px;
  font-size: 13px;
}

.feature-box {
  background: #fff;
  border-radius: 4px;
  padding: 20px 5px;
  min-height: 162px;
}

.feature-box .icon {
  width: 65px;
  height: 65px;
  background: rgba(39, 50, 108, 0.1);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s ease;
  position: relative;
}

.feature-box .icon::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(39 50 108);
  border-radius: 50%;
  transform: scale(0.2);
  opacity: 0;
  transition: transform 0.5s linear;
}

.feature-box .icon img {
  width: 40px;
  transition: all 0.5s linear;
}

.feature-box .content {
  margin-top: 15px;
}

.feature-box .content p {
  margin: 0;
  text-align: center;
  font-size: 14px;
}

.feature-box:hover .icon::before {
  transform: scale(1);
  opacity: 1;
}

/* .feature-box:hover .icon{
  background: rgb(39 50 108);
} */
.feature-box:hover .icon img {
  filter: brightness(0) invert(1);
  transition: all 0.5s linear;
}

.feature.owl-carousel .owl-dots {
  margin-top: 20px !important;
}

.feature.owl-carousel .owl-dots .owl-dot {
  width: 13px;
  height: 13px;
  border: 1px solid #fff;
  background: transparent;
  margin: 0 3px;
}

.feature.owl-carousel .owl-dots .owl-dot:hover {
  background: rgba(255, 255, 255, 0.3);
}

.feature.owl-carousel .owl-dots .owl-dot.active {
  background: #fff;
}

.feature.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/* end feature */
/* start core value */
.core-value-imgs {
  position: relative;
  margin-bottom: 80px;
}

.core-value-imgs .core-img1 {
  /* width: 365px; */
  width: 415px;
  height: 470px;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}

.core-value-imgs .core-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.core-value-imgs .core-img1::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 90%;
  bottom: -18px;
  right: -18px;
  background: rgba(39, 50, 108, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.core-value-imgs .core-img2 {
  position: absolute;
  bottom: -75px;
  right: 0;
  z-index: 1;
  width: 240px;
  height: 390px;
  border: 5px solid rgb(242 243 246);
  border-radius: 2px;
  background: rgb(242 243 246);
}

.core-value-imgs .core-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
}

.core-list ol {
  list-style: none;
  counter-reset: item;
  padding: 0;
  margin: 0;
  margin-top: 32px;
}

.core-list ol li {
  counter-increment: item;
  position: relative;
  border-top: 1px solid rgba(180, 180, 180, 1);
  padding-top: 15px;
  margin-top: 15px;
}

.core-list ol li::before {
  content: counter(item) ". ";
  position: absolute;
  top: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: unset;
  color: rgba(14, 5, 63, 1);
}

.core-list ol li h5 {
  margin-left: 25px;
  color: rgba(14, 5, 63, 1);
}

.core-list ol li p {
  margin: 0;
  font-size: 14px;
  line-height: 25px;
}

/* end core value */
/* start partner */
.partner-log {
  background: rgba(244, 244, 246, 1);
  border: 1px solid rgba(222, 225, 232, 1);
  padding: 15px;
  border-radius: 10px;
  width: 100%;
  height: 90px;
}

.partner-log img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

/* end partner */
/* start services */
.service-main {
  position: relative;
}

.srvices {
  margin-top: 30px;
}

.services-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.services-itm {
  background: #fff;
  border-radius: 4px;
  padding: 20px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 12px;
  min-height: 115px;
}

.services-itm > .icn {
  width: 58px;
  height: 58px;
  background: rgba(39, 50, 108, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.services-itm > .icn::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(39 50 108);
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.2);
  opacity: 0;
  transition: transform 0.3s linear;
}

.services-itm:hover .icn::before {
  transform: scale(1);
  opacity: 1;
}

.services-itm:hover .icn img {
  filter: brightness(0) invert(1);
}

.services-itm > .icn img {
  width: 36px;
}

.services-itm > .content {
  width: calc(100% - 70px);
}

.services-itm > .content h6 {
  color: rgba(75, 75, 75, 1);
  font-weight: 500;
  font-size: 15px;
}

.services-itm > .content p {
  color: rgba(131, 131, 131, 1);
  margin: 0;
  font-size: 15px;
  font-weight: 300;
}

.services-slider.owl-carousel .owl-dots {
  margin-top: 25px !important;
}

.services-slider.owl-carousel .owl-dots .owl-dot {
  margin: 0 3px;
  width: 13px;
  height: 13px;
  background: transparent;
}

.services-slider.owl-carousel .owl-dots .owl-dot.active {
  background: var(--primary-rgba);
}

.services-slider.owl-carousel .owl-dots .owl-dot:hover {
  background: rgb(39 50 108 / 30%);
}

.services-slider.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.service-right-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 41%;
  height: 100%;
}

.service-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: -114px 0;
}

/* end services */
/* start testimonials */
.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 6px 0 rgb(255 255 255 / 25%);
}

.testimonials-box .msg::before {
  position: absolute;
  content: "";
  border-width: 16px;
  border-style: solid;
  border-color: #ffffff #ffffff00 #ffffff00 #fff;
  left: 65px;
  bottom: -31px;
  filter: drop-shadow(1px 6px 0px rgb(255 255 255 / 25%));
}

.testimonials-box .msg .quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 65px;
  height: 65px;
  z-index: -1;
}

.testimonials-box .msg .quote-icon::after {
  position: absolute;
  content: "";
  width: 170%;
  height: 170%;
  background: rgba(30, 39, 87, 0.1);
  top: -45px;
  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 #fff;
}

.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: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 2px;
}

.testimonials-box .cntnt span {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
}

/* end testimonials */
/* start Accreditations */
.accrediation {
  background: url(../img/acc-bg.png);
  padding: 35px 30px;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.accrediation::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  z-index: -1;
}

.accrediation .section-subtitle {
  margin-bottom: 12px;
}

.accrediation .section-heading {
  font-size: 27px;
}

.acr-img {
  background: #fff;
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  height: 120px;
}

.acr-img img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center;
}

/* end Accreditations */
/* start uni vision */
.uni_cntnt_row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-evenly;
  width: 100%;
  margin-top: 80px;
}

.uni_cntnt_row .box-1 {
  width: calc(60% - 250px);
}

.uni_cntnt_row .box-img {
  width: 250px;
}

.vision-item {
  background: rgba(255, 255, 255, 1);
  padding: 8px 20px 8px 66px;
  position: relative;
  z-index: 1;
  margin: 45px 0 0 auto;
  border-radius: 4px;
  box-shadow: 0 0 3px rgb(104 104 104 / 27%);
}

.uni-vision-list .vision-item:first-child {
  margin-top: 15px;
}

.vision-item .icn {
  width: 75px;
  height: 75px;
  background: #fff;
  box-shadow: 0 0 3px rgb(104 104 104 / 27%);
  border-radius: 50%;
  position: absolute;
  left: -17px;
  top: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-item .icn img {
  width: 50px;
}

.vision-item .content p {
  margin: 0;
}

.uni-vision-list.uni-vision-list2 .vision-item {
  margin: 45px 0 0 auto;
}

.uni-vision-list.uni-vision-list2 .vision-item:first-child {
  margin-top: 15px;
}

.uni-vision-list.uni-vision-list2 .vision-item .icn {
  left: inherit;
  right: -17px;
}

.uni-vision-list.uni-vision-list2 .vision-item {
  padding: 7px 66px 7px 20px;
}

.uni_vsn_img {
  width: 245px;
  height: 245px;
  border-radius: 50%;
  background: rgba(39, 50, 108, 1);
  position: relative;
}

.uni_vsn_img img {
  width: 78%;
  margin-top: -65px;
  margin-left: 26px;
}

/* end uni vision */
/* start faq */
.ask-qu {
  background: rgba(30, 39, 87, 0.06);
  padding: 25px;
  border-radius: 5px;
  margin-top: 35px;
}

.ask-qu .hdg-h6 {
  color: rgba(30, 39, 87, 1);
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.ask-qu .para {
  color: rgba(67, 67, 67, 1);
  text-align: justify;
  margin: 0;
  font-size: 14px;
  line-height: 26px;
  margin-top: 15px;
}

.ask-qu .primary-btn {
  border-radius: 25px;
  margin-top: 22px;
}

.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(39, 50, 108, 1);
}

/* .faq-according .accordion-item .accordion-button:not(.collapsed)::after{

} */
/* .faq-according .accordion-item .accordion-button  */
.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: rgb(39 50 108 / 15%);
  color: rgb(39 50 108);
}

.faq-according .accordion-item .accordion-body .para {
  color: rgb(102 102 102);
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
}

/* end faq */
/* ============= start all pages design css ============== */
/* ==== 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(30, 39, 87, 0.8);
  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 about us == */
.abt-img.abt-page .box1 .img-box1 {
  height: 348px;
}

.abt-img.abt-page .box2 .img-box2 {
  height: 325px;
}

.img-box3 {
  width: 100%;
  height: 190px;
  margin-bottom: 13px;
  border-radius: 4px;
  overflow: hidden;
}

.img-box3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abt-highlight-text {
  background: rgba(242, 243, 246, 1);
  text-align: center;
  padding: 12px;
  border-radius: 4px;
  margin-top: 8px;
}

.abt-highlight-text p {
  color: rgba(39, 50, 108, 1);
  font-style: italic;
  margin: 0;
  font-size: 17px;
  font-weight: 500;
}

.why-lft-text p {
  margin: 0;
  line-height: 27px;
  color: rgba(85, 85, 85, 1);
}

.why-uni-card {
  background: #fff;
  padding: 13px;
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  min-height: 215px;
}

.why-uni-card::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 6px;
  background: rgba(39, 50, 108, 0.9);
  z-index: -1;
  display: none;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.card-top .card-icon {
  width: 35px;
  height: 35px;
  background: rgba(242, 243, 246, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-top .card-icon img {
  width: 80%;
  height: 80%;
  object-fit: scale-down;
}

.card-top .card-hdg {
  width: calc(100% - 46px);
}

.card-top .card-hdg .hdg-h5 {
  color: rgba(39, 50, 108, 1);
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.why-uni-card .card-txt .text {
  margin: 0;
  color: rgba(131, 131, 131, 1);
  font-size: 14px;
  line-height: 24px;
}

.why-uni-card:hover {
  background: url(../img/about/uni-01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.why-uni-card:hover::after {
  display: block;
}

.why-uni-card:hover .card-hdg .hdg-h5 {
  color: #fff;
}

.why-uni-card:hover .card-txt .text {
  color: #fff;
}

.uni-img {
  width: 100%;
  height: 212px;
  border-radius: 6px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.uni-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* == end about us == */
/* == start blog == */
.blog-content {
  background: #fff;
  padding: 10px;
  border-radius: 15px;
}

.blog-content .img {
  width: 100%;
  height: 205px;
  overflow: hidden;
  border-radius: 12px;
}

.blog-content .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.blog-content .cntnt {
  padding: 12px;
}

.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;
}

.blog-content .cntnt .blg-hdg {
  text-decoration: none;
}

.blog-content .cntnt .blg-hdg .hdg-h6 {
  color: rgba(110, 110, 110, 1);
  font-size: 18px;
  line-height: 30px;
  margin: 0;
  font-weight: 500;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 90px;
}

.read-more-btn {
  background: rgba(70, 89, 190, 0.1);
  width: fit-content;
  color: rgba(70, 89, 190, 1);
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 3px;
}

.read-more-btn:hover {
  background: rgba(70, 89, 190, 1);
  color: #fff;
  text-decoration: none;
}

.read-more-btn span {
  display: inline-block;
  margin-left: 8px;
}

.blog-content .cntnt .read-more-btn {
  display: block;
  margin-top: 20px;
}

.blog-content:hover .blg-hdg .hdg-h6 {
  color: rgba(70, 89, 190, 1);
}

.blog-content:hover .img img {
  transform: scale(1.1);
}

.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: rgba(70, 89, 190, 1);
  color: #fff;
}

.nav-btn {
  font-size: 18px;
  color: #999;
}

/* == end blog == */
/* == blog details == */
.top_blog_img {
  width: 100%;
  /* height: 250px; */
}

.top_blog_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-content h5 {
  color: rgba(14, 5, 63, 1);
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 10px;
}

.details-content p {
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  text-align: justify;
}

.blog-highlight-text {
  background: rgba(70, 89, 190, 0.06);
  padding: 25px;
  border-radius: 5px;
  border: 1px solid rgba(70, 89, 190, 0.2);
  margin: 20px 0;
}

.blog-highlight-text.details-content p {
  margin: 0;
}

.blog-video {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 15px;
}

.blog-video video {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  background: rgb(255 255 255 / 15%);
  border: 1px solid rgb(255 255 255 / 60%);
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  font-size: 17px;
  backdrop-filter: blur(3px);
}

.play-btn button {
  background: transparent;
  border: none;
  line-height: 1;
  color: #fff;
}

.blog-top-university {
  margin-top: 30px;
}

.university-grd {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  flex-wrap: wrap;
}

.university-grd > .lists {
  width: calc(25% - 8px);
}

.blog-top-university .hdg-h6 {
  color: rgba(14, 5, 63, 1);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 15px;
}

.university-grd .uni-logo {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(222, 225, 232, 1);
  padding: 10px;
  border-radius: 10px;
  height: 90px;
}

.university-grd .uni-logo img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.key-advantage {
  position: relative;
  padding: 20px;
  background: url(../img/blog/blog-bg.jpg);
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 30px;
}

.key-advantage::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(30, 39, 87, 0.9);
  z-index: -1;
}

.key-advantage .top-hdg {
  border-bottom: 1px solid #ffffff61;
  margin-top: 25px;
  padding-bottom: 10px;
}

.key-advantage .top-hdg h4 {
  color: #fff;
  text-align: center;
}

.advtange-list ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 20px 0;
  row-gap: 18px;
  column-gap: 10px;
}

.advtange-list li {
  color: #fffffff2;
  position: relative;
  padding-left: 17px;
  width: calc(50% - 6px);
  font-size: 14px;
  font-weight: 300;
}

.advtange-list li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(251, 194, 82, 1);
  left: 0;
  top: 8px;
}

.blog-dtls-right {
  position: sticky;
  top: 95px;
}

.serach_box {
  background: rgba(242, 243, 246, 1);
  border: 1px solid rgba(227, 227, 227, 1);
  border-radius: 7px;
  padding: 20px;
}

.serach_box .search-hdg h6 {
  color: rgba(39, 50, 108, 1);
  font-weight: 600;
}

.serach_box .frm-grp {
  position: relative;
}

.serach_box .frm-grp .frm-cntl {
  width: 100%;
  outline: none;
  border: 1px solid rgba(196, 196, 196, 1);
  padding: 10px 45px 10px 12px;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
}

.serach_box .frm-grp .srch-btn {
  position: absolute;
  right: 13px;
  top: 9px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background: transparent;
}

.serach_box .frm-grp .srch-btn img {
  width: 20px;
}

.category-box {
  background: rgba(242, 243, 246, 1);
  border: 1px solid rgba(227, 227, 227, 1);
  border-radius: 7px;
  padding: 20px;
  margin-top: 15px;
}

.category-box .search-hdg h6 {
  color: rgba(39, 50, 108, 1);
  font-weight: 600;
}

.category-box .blog-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-top: 16px;
}

.category-box .blog-list li {
  display: block;
  border-top: 1px solid rgb(201 201 201);
  padding: 10px 0;
}

.category-box .blog-list li:last-child {
  padding-bottom: 0;
}

.category-box .blog-list li a {
  display: block;
}

.category-box .blog-list .ctgry-cntnt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.category-box .blog-list .ctgry-cntnt .icn {
  width: 26px;
  height: 26px;
}

.category-box .blog-list .ctgry-cntnt .icn img {
  width: 25px;
}

.category-box .blog-list .ctgry-cntnt .cntnt {
  width: calc(100% - 30px);
}

.category-box .blog-list .ctgry-cntnt .cntnt p {
  margin: 0;
  color: rgba(66, 66, 66, 1);
}

.lastest-blog {
  background: rgba(242, 243, 246, 1);
  border: 1px solid rgba(227, 227, 227, 1);
  border-radius: 7px;
  padding: 20px;
  margin-top: 15px;
}

.lastest-blog .lastet-log-hdg h6 {
  color: rgba(39, 50, 108, 1);
  font-weight: 600;
}

.lastest-blog-list > ul {
  margin-top: 16px;
}

.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 >ul>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: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 42px;
}

.study-abroad-cntnt {
  background: rgba(242, 243, 246, 1);
  border: 1px solid rgba(227, 227, 227, 1);
  border-radius: 7px;
  padding: 20px;
  margin-top: 15px;
}

.study-abroad-cntnt .study-abrd-hdg h6 {
  color: rgba(39, 50, 108, 1);
  font-weight: 600;
}

.label2 {
  display: block;
  color: rgba(71, 71, 71, 1);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.frm-cntrl2 {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(169, 169, 169, 0.5);
  padding: 8px 15px;
  font-size: 14px;
  outline: none;
  height: 40px;
}

.frm-cntrl2:hover {
  border: 1px solid rgba(70, 89, 190, 1);
}

.frm-cntrl2::placeholder {
  color: rgba(185, 185, 185, 1);
  font-size: 14px;
}

.study-abroad-frm .frm-itm {
  position: relative;
}

.study-abroad-frm .frm-itm .icn {
  position: absolute;
  top: 8px;
  left: 19px;
  z-index: 1;
}

.study-abroad-frm .frm-itm .icn img {
  width: 23px;
}

.study-abroad-frm .frm-itm .frm-cntrl2 {
  border-radius: 25px;
  padding-left: 50px;
}

.study-abroad-frm .frm-itm .frm-cntrl2.textarea2 {
  border-radius: 4px;
  height: 60px;
  resize: none;
}

.study-abroad-frm {
  margin-top: 16px;
  border-top: 1px solid rgb(201 201 201);
}

.study-abroad-frm .frm-grp {
  margin-top: 12px;
}

.study-abroad-frm .submit-btn {
  margin-top: 20px;
}

.submit-btn .primary-btn {
  border: none;
  display: block;
  width: 100%;
}

.blog-content.plr-stdy-itm {
  position: relative;
}

.blog-content.plr-stdy-itm .study-icn {
  position: absolute;
  width: 48px;
  height: 48px;
  background: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
  margin: -27px auto 0 auto;
}

.blog-content.plr-stdy-itm .study-icn img {
  width: 34px;
}

.blog-content.plr-stdy-itm .cntnt .blg-hdg .hdg-h6 {
  text-align: center;
  height: unset;
  margin-top: 23px;
  -webkit-line-clamp: unset;
  display: block;
  -webkit-box-orient: unset;
  overflow: unset;
  text-overflow: unset;
  font-size: 16px;
  line-height: 23px;
  color: rgba(39, 50, 108, 1);
}

.popular-study.owl-carousel .owl-dots {
  margin-top: 20px !important;
}

.popular-study.owl-carousel .owl-dots .owl-dot {
  margin: 0 3px;
  width: 13px;
  height: 13px;
  background-color: rgba(39, 50, 108, 0.06);
}

.popular-study.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.popular-study.owl-carousel .owl-dots .owl-dot.active {
  background-color: rgba(30, 39, 87, 1);
}

.admsn-rqrmnt-bg {
  position: relative;
}

.admsn-rqrmnt-bg .admn-rqrmnt-lft-img {
  position: absolute;
  width: 48%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.admsn-rqrmnt-bg .admn-rqrmnt-lft-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.check-list-ul ul {
  position: relative;
  padding-left: 46px;
}

.check-list-ul ul::after {
  position: absolute;
  width: 2px;
  height: calc(100% - 50px);
  content: "";
  background: rgba(28, 39, 76, 1);
  top: 35px;
  left: 16px;
}

.check-list-ul li {
  display: block;
  background: rgba(242, 243, 246, 1);
  color: rgba(66, 66, 66, 1);
  padding: 11px 18px;
  margin-top: 11px;
  border-radius: 2px;
  position: relative;
}

.check-list-ul li::before {
  position: absolute;
  content: "\f00c";
  font-family: "fontawesome";
  width: 28px;
  height: 28px;
  background: rgba(28, 39, 76, 1);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  line-height: 28px;
  left: -43px;
  z-index: 1;
}

.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 30px;
}

.fees-table table th {
  color: rgba(39, 50, 108, 1);
  border-right: 0;
}

.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;
}

.scholarship {
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  padding: 15px 33px;
  text-align: center;
  margin-top: 45px;
  min-height: 109px;
}

.scholarship .icon {
  width: 65px;
  height: 65px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -48px auto 12px auto;
  position: relative;
}

.scholarship .icon img {
  width: 43px;
}

.scholarship .hdg-h6 {
  color: rgba(66, 66, 66, 1);
  font-family: "Poppins";
  margin: 0;
  font-weight: 500;
  line-height: 25px;
}

.work-opp-img {
  width: 100%;
  height: 175px;
  border-radius: 5px;
  overflow: hidden;
}

.work-opp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-opp-mdl-cntnt .list-opp ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.work-opp-mdl-cntnt .list-opp li {
  display: block;
  position: relative;
  margin-top: 15px;
  padding-left: 20px;
}

.work-opp-mdl-cntnt .list-opp li::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(39, 50, 108, 1);
  left: 0;
  top: 7px;
}

.stndt-life-img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}

.stndt-life-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stndt-life-img .cntnt {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.stndt-life-img .cntnt .hdg-h6 {
  color: #fff;
  margin: 0;
}

.stndt-life-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgb(0 0 0 / 55%), #00000000);
  bottom: 0;
  left: 0;
  z-index: 0;
}

.stndt-life-img.stndt-life-img-1 {
  height: 370px;
  margin-top: 25px;
}

.stndt-life-img.stndt-life-img-2 {
  height: 225px;
}

.stndt-life-img.stndt-life-img-3 {
  height: 225px;
  margin-top: 23px;
}

.stndt-life-img.stndt-life-img-4 {
  height: 300px;
}

.stndt-life-img.stndt-life-img-5 {
  margin-top: 23px;
  height: 150px;
}

/* end blog details */
/* == start services == */
.service-card {
  background: #fff;
  padding: 18px 15px;
  border-radius: 8px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
  position: relative;
}

.service-card .service-card-tittle {
  margin-bottom: 10px;
}

.service-card .service-card-tittle .hdg-h6 {
  color: rgba(39, 50, 108, 1);
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 58px;
}

.service-img {
  width: 100%;
  height: 165px;
  border-radius: 5px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.service-card .service-btn {
  position: absolute;
  bottom: 14px;
  right: 3px;
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.service-card .service-btn::after {
  position: absolute;
  content: "";
}

.service-card .service-btn::before {
  position: absolute;
  content: "";
}

.service-card .service-btn .primary-btn {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-135deg);
  position: relative;
  top: 13px;
  left: 12px;
}

.services-box.services-box2 {
  grid-template-columns: repeat(3, 1fr);
}

.services-box.services-box2 .services-itm {
  border: 1px solid rgba(222, 225, 232, 1);
}

/* == end services == */
/* == start study language == */
.stdy-lng-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  margin-bottom: 13px;
}

.stdy-lng-title .flag {
  width: 33px;
  height: 33px;
}

.stdy-lng-title .flag img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.stdy-lng-title .name {
  width: calc(100% - 42px);
}

.stdy-lng-title .name .title {
  color: rgba(83, 83, 83, 1);
  margin-bottom: 5px;
}

.stdy-lng-title .name .sub-title {
  color: rgba(67, 67, 67, 1);
  margin: 0;
  font-weight: 600;
}

.service-card.study-lang .service-img {
  height: 190px;
}

.service-list-img {
  width: 100%;
  height: 202px;
  border-radius: 6px;
  overflow: hidden;
}

.service-details-list {
  margin-bottom: 15px;
}

.service-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-details-img {
  width: 100%;
  height: 310px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.service-details-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-details-list ul li {
  display: block;
  position: relative;
  margin-top: 15px;
  padding-left: 28px;
}

.service-details-list ul li::after {
  position: absolute;
  content: "\f336";
  font-family: "fontawesome";
  top: -2px;
  left: 0;
  color: rgba(39, 50, 108, 1);
  font-size: 17px;
}

.all-sevices-btn {
  background: rgba(242, 243, 246, 1);
  border: 1px solid rgba(227, 227, 227, 1);
  border-radius: 7px;
  padding: 20px;
}

.all-sevices-btn .all-sevices-hdg h6 {
  color: rgba(39, 50, 108, 1);
  font-weight: 600;
}

.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:hover {
  background: rgba(39, 50, 108, 1);
  border: 1px solid rgba(39, 50, 108, 1);
  color: #fff;
  text-decoration: none;
}
.all-sevices-btn .services-links li a.active {
  background: rgba(39, 50, 108, 1);
  border: 1px solid rgba(39, 50, 108, 1);
  color: #fff;
  text-decoration: none;
}

/* == end study language == */
/* == start study details page == */
.blog-highlight-text.details-content li {
  margin-top: 15px;
  color: rgba(67, 67, 67, 1);
  line-height: 26px;
  text-align: justify;
}

.blog-highlight-text.details-content.study-dtls p:last-child {
  font-style: italic;
}

.services-links.study-destination-liks ul {
  max-height: 490px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.services-links.study-destination-liks li a {
  padding: 9px 20px;
}

.services-links.study-destination-liks li a .flag {
  display: inline-block;
  margin-right: 4px;
}

.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);
}

.choose-content-itms {
  background: #fff;
  border: 1px solid rgba(208, 212, 235, 1);
  border-radius: 10px;
  padding: 20px 15px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  gap: 15px;
  margin-top: 15px;
}

.choose-content .choose-content-itms:first-child {
  margin-top: 0;
}

.choose-content-itms .icon {
  width: 41px;
  height: 41px;
  background: rgba(39, 50, 108, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.choose-content-itms .icon img {
  width: 26px;
  filter: brightness(0) invert(1);
}

.choose-content-itms .content {
  width: calc(100% - 56px);
}

.choose-content-itms .content .hdg-h6 {
  color: rgba(39, 50, 108, 1);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.choose-content-itms .content .para {
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  text-align: justify;
  margin: 0;
}

.choose-img {
  width: 100%;
  height: 587px;
  border-radius: 5px;
  overflow: hidden;
}

.choose-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-img.choose-img2 {
  height: 630px;
}

.study-expenses-imgs {
  position: relative;
}

.expenses-img-01 {
  width: 485px;
  height: 390px;
  border-radius: 5px;
  overflow: hidden;
}

.expenses-img-01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expenses-img-02 {
  width: 210px;
  height: 222px;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 20px;
}

.expenses-img-02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expenses-img-03 {
  width: 315px;
  position: absolute;
  bottom: -45px;
  right: 0;
  height: 370px;
  border-radius: 5px;
  overflow: hidden;
}

.expenses-img-03 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-list li {
  display: block;
  padding: 10px 18px;
  background: rgba(242, 243, 246, 1);
  border: 1px solid rgba(70, 89, 190, 0.2);
  border-radius: 6px;
  margin-top: 12px;
  color: rgba(67, 67, 67, 1);
}

.fees-table.top-university-table thead th {
  background: rgba(39, 50, 108, 1);
  color: #fff;
  font-weight: 500;
}

.degree-highlight-box {
  padding: 15px;
  background: rgba(242, 243, 246, 1);
  border-radius: 10px;
}

.bachelor-img {
  background: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 15px 12px;
}

.bachelor-img .hdg-h5 {
  color: #000;
  font-size: 19px;
  font-weight: 600;
}

.bachelor-img .img {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
}

.bachelor-img .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bechelor-degree-content {
  position: relative;
}

.bechelor-degree-content::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: rgba(222, 225, 232, 1);
  top: 0;
  left: 15px;
}

.bechelor-degree-content::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: rgba(222, 225, 232, 1);
  top: 0;
  left: calc(47% + 15px);
}

.bechelor-degree-content ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
  margin: 20px 0 0 0;
  gap: 15px;
}

.bechelor-degree-content li {
  color: rgba(0, 0, 0, 1);
  padding-left: 5px;
  margin-left: 70px;
}

.most-famous-scholarship-content li {
  display: block;
  border-top: 1px solid rgba(178, 178, 178, 1);
  margin-top: 20px;
  padding-top: 18px;
}

.most-famous-scholarship-content li:first-child {
  border: none;
  margin: 0;
  /* padding: 0; */
}

.most-famous-scholarship-content li h6 {
  color: rgba(39, 50, 108, 1);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.most-famous-scholarship-content li p {
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  text-align: justify;
  margin-bottom: 12px;
}

.international-school-img {
  background: #ffff;
  padding: 12px;
  border: 1px solid rgba(208, 212, 235, 1);
  border-radius: 7px;
}

.international-school-img .img {
  width: 100%;
  height: 430px;
  border-radius: 5px;
  overflow: hidden;
}

.international-school-img .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.international-school-img h5 {
  color: rgba(14, 5, 63, 1);
  margin: 0;
  text-align: center;
  margin-top: 12px;
  padding: 0 25px;
  line-height: 27px;
  font-size: 18px;
}

.international-school-sml {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 6px;
  margin-top: 20px;
}

.international-school-sml img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.study-language-page ol {
  list-style: none;
  counter-reset: item;
  padding-left: 0;
}

.study-language-page li {
  counter-increment: item;
  margin-bottom: 10px;
  display: block;
  border: 1px solid rgba(208, 212, 235, 1);
  padding: 15px 15px 15px 55px;
  border-radius: 5px;
  color: rgba(67, 67, 67, 1);
  font-size: 15px;
  line-height: 21px;
  position: relative;
}

.study-language-page li::before {
  content: counter(item);
  position: absolute;
  background: rgba(242, 243, 246, 1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  left: 12px;
  top: 13px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  color: rgba(39, 50, 108, 1);
}

.fees-table.learning-langauge-table th,
.fees-table.learning-langauge-table td {
  padding: 12px 14px;
  text-align: center;
  font-size: 14px;

  line-height: 20px;
}

.fees-table.learning-langauge-table th {
  color: rgba(66, 66, 66, 1);
  font-weight: 500;
}

.fees-table.learning-langauge-table td {
  color: rgba(110, 110, 110, 1);
}

.fees-table.learning-langauge-table tr th:first-child,
.fees-table.learning-langauge-table tr td:first-child {
  background: rgba(39, 50, 108, 1);
  color: #fff;
}

.learning-language h6 {
  color: rgba(39, 50, 108, 1);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.learning-language p {
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  text-align: justify;
  margin-bottom: 12px;
}

.study-lang-img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.study-lang-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fees-table.learning-langauge-table.left-cntnt th,
.fees-table.learning-langauge-table.left-cntnt td {
  text-align: left;
}

.fees-table.learning-langauge-table.left-cntnt td span {
  display: block;
  font-size: 12px;
  font-weight: 300;
}

.fees-table.learning-langauge-table.left-cntnt tr th:first-child,
.fees-table.learning-langauge-table.left-cntnt tr td:first-child {
  width: 16%;
}

.pre-sessions-bg {
  padding: 40px 0;
  background:
    linear-gradient(rgba(39, 50, 108, 0.95), rgba(39, 50, 108, 0.95)),
    url("../img/pre-sessional-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.pre-session-content {
  width: 112%;
  margin-left: -12%;
}

.pre-session-content h5 {
  color: #fff;
  margin-top: 25px;
}

.pre-session-content h5:first-child {
  margin-top: 0;
}

.pre-session-content p {
  color: rgb(255 255 255 / 80%);
  font-weight: 300;
  font-size: 15px;
  text-align: justify;
}

.pre-girl {
  position: absolute;
  bottom: -42px;
  left: 0;
  width: 100%;
  z-index: 1;
}

.pre-girl::after {
  position: absolute;
  content: "";
  width: 245px;
  height: 245px;
  background: linear-gradient(to bottom, rgb(255 255 255 / 20%), transparent);
  top: 23px;
  left: 0;
  right: 0;
  border-radius: 50%;
  z-index: -1;
  margin: 0 auto;
}

.pre-girl img {
  width: 300px;
  display: block;
  margin: 0 auto;
}

.language-ielts ul {
  list-style-type: none;
  padding: 0;
}

.language-ielts li {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  border: 1px solid rgba(208, 212, 235, 1);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}

.language-ielts li:first-child {
  margin-top: 0;
}

.language-ielts li .img {
  width: 250px;
  height: 170px;
}

.language-ielts li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.language-ielts li .content {
  width: calc(100% - 260px);
  padding: 20px 25px 20px 20px;
}

.language-ielts li .content h6 {
  color: rgba(39, 50, 108, 1);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 11px;
}

.language-ielts li .content p {
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  text-align: justify;
  margin-bottom: 12px;
}

.language-ielts li:nth-child(even) div:last-child {
  order: 1;
}

.language-ielts li:nth-child(even) div:first-child {
  order: 2;
}

/* == end study details page == */
/* == start courses == */

.courses-card .img {
  width: 100%;
  border: 1px solid rgba(212, 212, 212, 1);
  border-radius: 25px 25px 0 0;
  overflow: hidden;
  height: 240px;
}

.courses-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.courses-card .courses-content {
  padding: 20px 15px;
  text-align: center;
  border-radius: 25px;
  background: #fff;
  margin-top: -25px;
  z-index: 2;
  position: relative;
  border: 1px solid rgba(212, 212, 212, 1);
}

.courses-card .courses-content .course-title {
  color: rgba(39, 50, 108, 1);
  display: block;
  font-size: 18px;
  font-weight: 500;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  margin-top: 8px;
}

.rating .ratings span {
  color: rgba(110, 110, 110, 1);
  display: inline-block;
  font-size: 14px;
}

.rating .rating-list li {
  display: inline-block;
}

.rating .rating-list li img {
  width: 17px;
}

.courses-card .courses-content .read-more-btn {
  display: inline-block;
  margin-top: 22px;
  margin-bottom: 8px;
}

.service-list-img.course-details {
  height: 100%;
}

.services-links.courses-links li a {
  padding: 9px 18px;
}

.services-links.courses-links li a span.crse-icon {
  display: inline-block;
  margin-right: 9px;
}

.services-links.courses-links li a:hover span.crse-icon {
  filter: brightness(0) invert(1);
}

.why-course {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
}

.why-course .content h5 {
  color: rgba(14, 5, 63, 1);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-course .content li {
  display: block;
  position: relative;
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  /* text-align: justify; */
  margin: 0;
  padding-left: 25px;
  margin-top: 8px;
}

.why-course .content li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(67, 67, 67, 1);
  left: 8px;
  top: 11px;
}

.why-course .img {
  width: 100%;
  height: 270px;
  border-radius: 10px;
  overflow: hidden;
}

.why-course .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* == end courses == */
/* == start contact us ==*/
.contact-us {
  background: #fff;
  padding: 35px 30px;
  border-radius: 15px;
  border: 1px solid rgba(227, 227, 227, 1);
}

.contact-us .hdg-h3 {
  color: rgba(39, 50, 108, 1);
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 14px;
}

.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;
}

.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: 20px;
}

.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%;
}

.contact-us .study-abroad-cntnt .study-abroad-frm .submit-btn .primary-btn {
  margin: 0 0 0 auto;
  width: fit-content;
  border-radius: 3px;
}

.contact-info {
  background: rgba(39, 50, 108, 1);
  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 / 10%);
  padding: 15px;
  margin-top: 20px;
  border-radius: 5px;
  border: 1px solid rgb(255 255 255 / 13%);
}

.contact-info .contact-info-list .info-box .icn {
  width: 34px;
  height: 34px;
}

.contact-info .contact-info-list .info-box .icn img {
  width: 34px;
}

.contact-info .contact-info-list .info-box .info {
  width: calc(100% - 49px);
}

.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-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: 0px 10px;
  font-size: 17px;
}

.contact-form-map {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}

.contact-form-map .scrib-form {
  width: 320px;
  background:
    linear-gradient(to top, rgba(30, 39, 87, 0.9), rgba(30, 39, 87, 0.9)),
    url(../img/contact-us.jpg);
  background-size: cover;
  background-position: center;
  padding: 15px;
  border-radius: 5px;
}

/* .contact-form-map .scrib-form .top-heading{
  text-align: center;
} */
.contact-form-map .scrib-form .top-heading {
  margin-top: 40px;
}

.contact-form-map .scrib-form .top-heading .hdg-h5 {
  color: #fff;
  font-size: 22px;
}

.contact-form-map .scrib-form .top-heading .para {
  color: rgb(255 255 255 / 85%);
  margin: 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}

.contact-form-map .scribe-form2 {
  margin-top: 25px;
}

.scrib-form .scribe-form2 .frm-cntrl::placeholder {
  color: #fff;
}

.scrib-form .scribe-form2 .primary-btn {
  width: 100%;
  background: rgba(70, 89, 190, 1);
  border: none;
  border-radius: 5px;
  display: block;
  margin-top: 20px;
}

.contact-form-map .map {
  width: calc(100% - 320px);
  height: 350px;
  border-radius: 0 5px 5px 0;
  overflow: hidden;
}

.contact-form-map .map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-filter: grayscale(100%);
}

.contact-form-map .map iframe:hover {
  -webkit-filter: unset;
}

/* == end contact us == */
/* 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: #27326c !important;
}

.iti__country.iti__highlight {
  color: #fff;
}

.iti__selected-flag {
  padding: 0 0 0 20px !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: 60px !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: #fff;
  border: 1px solid rgba(169, 169, 169, 0.5);
  padding: 6px 15px 6px 46px;
  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);
}
.select-frm
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: rgba(185, 185, 185, 1);
}
.select-frm
  .select2-container--default.select2-container--focus
  .select2-selection--single
  .select2-selection__rendered {
  color: #212529;
  font-size: 14px;
}
.select-frm
  .select2-container--default.select2-container--below
  .select2-selection--single
  .select2-selection__rendered {
  color: #212529;
  font-size: 14px;
}

/* end selet2 */
.application-process-content {
  background: rgba(255, 255, 255, 1);
  padding: 30px;
  border-radius: 20px;
}

.application-process-content h4,
.application-process-content h6 {
  color: rgba(14, 5, 63, 1);
}

.application-process-content h6 {
  margin-top: 25px;
}

.application-process-content p {
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  text-align: justify;
}

.application-process-content ol {
  /* padding: 0; */
  margin: 0;
}

.application-process-content li {
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  margin-top: 15px;
}

.scholar-content h4 {
  color: rgba(14, 5, 63, 1);
  margin-bottom: 20px;
}

.scholar-content li {
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  margin-top: 15px;
}

.scholar-content li ol {
  list-style: none;
  counter-reset: alpha;
}

.scholar-content li ol li {
  counter-increment: alpha;
  position: relative;
}

.scholar-content li ol li::before {
  content: "(" counter(alpha, upper-alpha) ") ";
  position: absolute;
  left: -30px;
  font-weight: 600;
}

.external-scholarship {
  width: 100%;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
}

.external-scholarship img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.condinal-scholarship-img {
  position: absolute;
  width: 35%;
  height: 100%;
  overflow: hidden;
  right: 0;
  top: 0;
}

.condinal-scholarship-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: -145px 0;
}

.condinal-scholarship-img.condinal-scholarship-img2 {
  right: unset;
  left: 0;
  width: 55%;
  z-index: -1;
}

.scholar-content-border {
  border-top: 1px solid rgba(39, 50, 108, 0.3);
}

.scholar-content.scholar-content-bg {
  background: rgba(242, 243, 246, 1);
  padding: 25px;
  border-radius: 10px 0 0 10px;
}

.scholar-content.scholar-content-bg > ol {
  counter-reset: item 7;
  list-style-type: none;
}

.scholar-content.scholar-content-bg > ol > li {
  position: relative;
}

.scholar-content.scholar-content-bg > ol > li::before {
  counter-increment: item;
  content: counter(item) ". ";
  position: absolute;
  left: -22px;
}

.scholar-list2.border {
  border: 1px solid rgba(219, 219, 219, 1) !important;
  padding: 20px;
  border-radius: 8px;
}

.scholar-list2 h5 {
  color: rgba(39, 50, 108, 1);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 17px;
}

.scholar-list2 ol {
  margin: 0;
}

.scholar-list2 li {
  color: rgba(67, 67, 67, 1);
}

.higher-order-img {
  margin-top: 15px;
  width: 100%;
  height: 165px;
  border-radius: 8px;
  overflow: hidden;
}

.higher-order-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-process-content.application-process-content2 li {
  margin-top: 2px;
}

.higher-order-img.higher-order-img2 {
  height: 290px;
  margin: 0;
}

.scholar-hightlight {
  background: rgba(39, 50, 108, 1);
}

.scholar-hightlight .section-heading.medium-small {
  color: #fff;
}

.month-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 20px;
  min-height: 120px;
}

.month-box h6 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
}

.month-box p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 200;
}

.ministry-affairs {
  background: rgba(255, 255, 255, 1);
  padding: 30px;
  border-radius: 20px;
}

.ministry-affairs h5 {
  text-align: center;
  color: rgba(14, 5, 63, 1);
  font-weight: 600;
}

.ministry-affairs p {
  color: rgba(67, 67, 67, 1);
  line-height: 27px;
  text-align: center;
}

.ministry-affairs-list {
  margin-top: 20px;
  border-top: 1px solid rgba(191, 191, 191, 1);
  padding-top: 20px;
}

.ministry-affairs-list ol {
  margin: 0;
}

.ministry-affairs-list ol > li {
  color: rgba(67, 67, 67, 1);
  margin-top: 7px;
}

.ministry-btns-grp {
  position: relative;
  padding-left: 60px;
  height: 100%;
}

.ministry-btns-grp::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  border: 1px solid rgb(223 223 223);
  top: 0;
  left: 10px;
}

.ministry-btns-grp ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  padding-top: 25px;
}

.ministry-btns-grp li {
  display: block;
  margin-top: 15px;
}

.border-button {
  border: 1px solid rgba(30, 39, 87, 1);
  color: rgba(30, 39, 87, 1);
  display: block;
  padding: 11px 20px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  border-radius: 25px;
  box-shadow: 3px 3px 0 rgba(30, 39, 87, 1);
}

.border-button span {
  display: inline-block;
  margin-left: 8px;
}

.border-button:hover {
  color: rgba(30, 39, 87, 1);
  text-decoration: underline;
}

.school-certificates-bg {
  background: rgba(39, 50, 108, 1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.school-certificates h6 {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  line-height: 35px;
  margin-bottom: 20px;
}

.school-certificates ol {
  margin: 0;
}

.school-certificates li {
  color: #fff;
  font-weight: 200;
  margin-top: 10px;
}

.school-certificates-img {
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}

.school-certificates-img::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background: transparent;
  top: 0px;
  left: 0px;
  z-index: 2;
  border-width: 142px 142px 142px 60px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(39, 50, 108, 1);
}

.school-certificates-img::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background: transparent;
  top: -18px;
  left: 0px;
  z-index: 1;
  border-width: 160px 160px 160px 72px;
  border-style: solid;
  border-color: transparent transparent transparent rgb(39 50 108 / 55%);
}

.school-certificates-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tranfer-scholarship {
  border: 1px solid rgb(221 221 221);
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  min-height: 177px;
}

.tranfer-scholarship h4 {
  color: transparent;
  -webkit-text-stroke: 1px rgba(70, 89, 190, 1);
  text-stroke: 1px rgba(70, 89, 190, 1);
  font-size: 45px;
  font-style: italic;
  margin-bottom: 12px;
}

.tranfer-scholarship p {
  color: rgba(67, 67, 67, 1);
  margin: 0;
}

.privileges-box {
  position: relative;
  padding: 30px 20px;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
}

.privileges-box::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 11%,
    rgba(39, 50, 108, 1) 22%
  );
  top: 0;
  left: 0;
  z-index: -1;
}

.privileges-box .img-box {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}

.privileges-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.privileges-box ol {
  padding-left: 240px;
  margin: 0;
}

.privileges-box li {
  color: #fff;
  font-weight: 200;
  margin-bottom: 9px;
}

.application-process-content.application-process-content3 h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.img-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.img-group .img-box {
  width: 100%;
  height: 230px;
  border-radius: 15px;
  overflow: hidden;
}

.img-group .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-process-content.application-process-content3 ol:nth-last-child(2) {
  counter-reset: item 7;
  list-style-type: none;
}

.application-process-content.application-process-content3
  ol:nth-last-child(2)
  li {
  position: relative;
}

.application-process-content.application-process-content3
  ol:nth-last-child(2)
  li::before {
  counter-increment: item;
  content: counter(item) ". ";
  position: absolute;
  left: -22px;
}

.application-process-content.application-process-content3 p:last-child {
  font-style: italic;
  margin-top: 22px;
  color: rgba(67, 67, 67, 1);
  font-weight: 500;
}

.scholar-list2.scholar-list2-bg {
  background: rgba(242, 243, 246, 1);
  padding: 25px;
  border-radius: 10px;
}

.scholar-list2.scholar-list2-bg h4 {
  color: rgba(14, 5, 63, 1);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.scholar-list2.scholar-list2-bg h6 {
  color: rgba(14, 5, 63, 1);
  margin-bottom: 15px;
  line-height: 20px;
}

.scholar-list2.scholar-list2-bg h5 {
  background: #fff;
  color: rgba(14, 5, 63, 1);
  padding: 7px 15px;
  font-size: 15px;
  font-weight: 400;
}

.scholar-list2.scholar-list2-bg li {
  font-weight: 400;
  margin-bottom: 8px;
  color: rgba(67, 67, 67, 1);
}

.student-produce-img {
  width: 100%;
  height: 100%;

  overflow: hidden;
}

.student-produce-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.rizeup-bg {
  background: url(../img/scholarship-14.jpg);
  position: relative;
  z-index: 1;
  padding: 15px 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}

.rizeup-bg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(39, 50, 108, 1) 70%,
    transparent 153%
  );
  z-index: -1;
  top: 0;
  left: 0;
}

.rizeup {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  width: 100%;
}

.rizeup .img {
  width: 180px;
}

.rizeup .img img {
  width: 180px;
}

.rizeup .content {
  width: calc(65% - 205px);
}

.rizeup .content h4 {
  color: #fff;
}

.rizeup .content p {
  color: #fff;
  margin: 0;
  font-weight: 200;
}

.rizeup-list {
  position: relative;
}

.rizeup-list .img1 {
  width: 95%;
  margin-top: 45px;
  height: 390px;
  border-radius: 5px;
}

.rizeup-list .img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.rizeup-list .img2 {
  width: 170px;
  height: 170px;
  position: absolute;
  border-radius: 50%;
  border: 8px solid #fff;
  overflow: hidden;
  top: -45px;
  right: 0;
  box-shadow: 0 0 10px rgb(67 68 72 / 3%);
}

.rizeup-list .img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scholar-list2.rizeup-list h4 {
  color: rgba(14, 5, 63, 1);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 32px;
}

.scholar-list2.rizeup-list li {
  font-weight: 400;
  margin-bottom: 8px;
  color: rgba(67, 67, 67, 1);
}

.missions-program {
  width: 100%;
  height: 225px;
}

.missions-program img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.list-img {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
}

.list-img .img {
  width: 100%;
  height: 100%;
}

.list-img .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.list-img h5 {
  color: rgba(14, 5, 63, 1);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 32px;
}

.list-img li {
  font-weight: 400;
  margin-bottom: 8px;
  color: rgba(67, 67, 67, 1);
}

.company-content h6 {
  color: rgba(14, 5, 63, 1);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 32px;
}

.company-content.border2 {
  border: 1px solid rgba(208, 208, 208, 1);
  padding: 25px;
  border-radius: 10px;
}

.company-content.border2 ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 15px;
}

.company-content.border2 li {
  color: rgba(67, 67, 67, 1);
  font-weight: 400;
  margin-top: 5px;
}

.list-img.list-img2 li > ol {
  list-style: none;
  padding: 0;
  display: grid;

  gap: 15px;
  display: flex;
}

.list-img.list-img2 li > ol li {
  margin: 0;
  background: rgba(242, 243, 246, 1);
  color: rgba(39, 50, 108, 1);
  padding: 9px;
  text-align: center;
  margin-top: 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  width: calc(50% - 15px);
}

.additional-postgraduate {
  border: 1px solid rgba(208, 208, 208, 1);
  padding: 25px;
  border-radius: 10px;
}

.additional-postgraduate h6 {
  color: rgba(14, 5, 63, 1);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 32px;
}

.additional-postgraduate li {
  color: rgba(67, 67, 67, 1);
  font-weight: 400;
  margin-top: 5px;
}

.additional-postgraduate .list2 {
  border-top: 1px solid rgb(213 213 213);
  padding-top: 20px;
  margin-top: 26px;
}

.additional-postgraduate .list2 ol {
  display: flex;
  column-gap: 30px;
  flex-wrap: wrap;
}

.additional-postgraduate .list2 ol li {
  width: calc(50% - 15px);
  margin-top: 8px;
}

.rizeup-list.rizeup-list2 .img1 {
  width: 85%;
  margin: 45px 0 0 auto;
}

.rizeup-list.rizeup-list2 .img2 {
  right: unset;
}

.document-required {
  background: rgba(242, 243, 246, 1);
  padding: 15px;
  border-radius: 10px;
}

.mini-list {
  border-top: 1px solid rgb(178 178 178 / 50%);
  margin-top: 30px;
  padding-top: 20px;
}

.mini-list h6 {
  color: rgba(14, 5, 63, 1);
  font-weight: 500;
  margin-bottom: 13px;
}

.schlr-20-img img {
  width: 72%;
  margin: 0 auto;
  display: block;
}

.undargraduate-list {
  border-radius: 10px;
  border: 1px solid rgba(208, 208, 208, 1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.undargraduate-list .scholar-list2 {
  width: 100%;
  padding: 35px 380px 35px 35px;
}

.undargraduate-list .undergra-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  z-index: -1;
}

.undargraduate-list .undergra-img::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background: transparent;
  top: -4px;
  left: 0px;
  z-index: 2;
  border-width: 170px 170px 170px 123px;
  border-style: solid;
  border-color: transparent transparent transparent rgb(255 255 255);
}

.undargraduate-list .undergra-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.last-cntnt {
  position: relative;
  z-index: 1;
}

.student-img {
  width: 40%;
  height: 650px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 10px;
  overflow: hidden;
}

.student-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.student-section {
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid rgb(208 208 208 / 50%);
  margin-top: 60px;
}

.student-section h4 {
  color: rgba(14, 5, 63, 1);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 32px;
}

.student-section h6 {
  color: rgba(14, 5, 63, 1);
  font-weight: 500;
  margin-bottom: 13px;
}

.student-section ol {
  margin: 0;
}

.student-section ol li {
  font-weight: 400;
  margin-bottom: 8px;
  color: rgba(67, 67, 67, 1);
}

.student-section .student-list1 ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 15px;
}

.student-section li > ol {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 15px;
  display: flex;
}

.student-section li > ol > li {
  margin: 0;
  background: rgba(242, 243, 246, 1);
  color: rgba(39, 50, 108, 1);
  padding: 9px;
  text-align: center;
  margin-top: 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  width: calc(50% - 15px);
}

.student-section > div {
  border-bottom: 1px solid rgb(208 208 208 / 50%);
  padding-bottom: 15px;
  margin-top: 15px;
}

.student-section > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.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.8rem;
}

.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 course finder */
.pg-brdcrmb.coursefinder-brdcrmb {
  height: 320px;
  overflow: hidden;
}
.pg-brdcrmb.coursefinder-brdcrmb .brdcrmb-lnks {
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
}
.pg-brdcrmb.coursefinder-brdcrmb .brdcrmb-lnks .container {
  width: 100%;
  max-width: 1280px;
}
.pg-brdcrmb.coursefinder-brdcrmb .brdcrmb-lnks .bnr-srch {
  margin-top: 0;
  width: 100%;
  max-width: 1180px;
  z-index: 3;
}
.coursefinder-filter {
  background: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
}
.coursefinder-filter .title {
  color: #27326c;
  margin: 0;
  font-size: 21px;
  font-weight: 600;
}
.filter-btns-group {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 35px;
}
.filter-btns-group .swch_bx .switch {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(230, 230, 230, 1);
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(61, 57, 74, 1);
}
.filter-btns-group .swch_bx .switch:hover {
  cursor: pointer;
}
.switch .checkbox {
  display: none;
}
.filter-btns-group .slider {
  width: 40px;
  height: 20px;
  background-color: #fff;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid rgba(61, 57, 74, 0.5);
}
.checkbox:checked ~ .slider {
  background-color: var(--primary-btn-color);
  border: 1px solid var(--primary-btn-color);
}
.filter-btns-group .slider::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-color: rgba(61, 57, 74, 1);
  transform: translateX(3px);
  border-radius: 50%;
  transition: 0.3s;
}
.checkbox:checked ~ .slider::before {
  transform: translateX(22px);
  background-color: #fff;
}
.filter-btns-group .advance-search-btn .primary-btn {
  border: none;
}
.coursefinder-card {
  background: #fff;
  padding: 12px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  margin-top: 15px;
}
.coursefinder-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}
.coursefinder-item .coursefindar-left {
  width: 200px;
}
.coursefinder-item .coursefindar-left .course-university-logo {
  width: 100%;
  height: 200px;
  background: rgba(243, 243, 247, 1);
  border-radius: 5px;
  padding: 10px;
}
.coursefinder-item .coursefindar-left .course-university-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.course-share {
  background: rgba(243, 243, 247, 1);
  text-align: center;
  margin-top: 14px;
  padding: 20px 5px;
  border-radius: 5px;
}
.course-share .title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(61, 57, 74, 1);
}
.course-share ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-top: 12px;
}
.course-share li {
  display: inline-block;
  margin-left: 7px;
}
.course-share li:first-child {
  margin-left: 0;
}
.course-share li a {
  width: 29px;
  height: 29px;
  background: rgba(47, 43, 110, 1);
  color: #fff;
  display: block;
  text-align: center;
  line-height: 28px;
  border-radius: 50%;
  font-size: 14px;
  border: 1px solid #2f2b6e;
  transition: all 0.3s ease;
}
.course-share li a:hover {
  background: #fff;
  color: rgba(47, 43, 110, 1);
}
.coursefinder-item .coursefindar-mdl {
  width: calc(100% - 215px);
}
.couse-title {
  border-bottom: 1px solid #d1d0d0;
  padding-bottom: 10px;
  margin-bottom: 13px;
}
.couse-title .title {
  color: #27326c;
  font-size: 18px;
  margin: 0;
}
.couse-title .title span {
  display: inline-block;
  margin-right: 5px;
}
.couse-title .title span img {
  width: 25px;
}
.coursefinder-item .coursefindar-mdl .course-info-list {
  border-bottom: 1px solid #d1d0d0;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.coursefinder-item .coursefindar-mdl .course-info-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 18px;
  row-gap: 15px;
}
.coursefinder-item .coursefindar-mdl .course-info-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.coursefinder-item .coursefindar-mdl .course-info-list li .icn {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coursefinder-item .coursefindar-mdl .course-info-list li .icn img {
  width: 32px;
}
.coursefinder-item .coursefindar-mdl .course-info-list li .content {
  width: calc(100% - 45px);
}
.coursefinder-item .coursefindar-mdl .course-info-list li .content .type {
  margin: 0;
  color: rgba(61, 57, 74, 1);
  font-size: 15px;
}
.coursefinder-item .coursefindar-mdl .course-info-list li .content .name {
  color: rgba(130, 130, 130, 1);
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}
.test-req-list {
  background: rgba(243, 243, 247, 1);
  padding: 10px;
  border-radius: 5px;
}
.test-req-list li {
  background: #fff;
  padding: 9px;
  border: 1px solid rgba(230, 230, 230, 1);
  margin-top: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 3px;
}
.test-req-list li:first-child {
  margin-top: 0;
}
.test-req-list li .lft-cntnt p {
  margin: 0;
  color: rgba(61, 57, 74, 1);
  position: relative;
  padding-left: 23px;
}
.test-req-list li .lft-cntnt p::before {
  top: 3px;
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/icons/bar.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  left: 0;
}
.test-req-list li .right-cntnt-hight span {
  border: 1px solid #e3e3e3;
  color: rgba(130, 130, 130, 1);
  font-size: 13px;
  padding: 2px 6px;
  border-radius: 3px;
}
.course-finder-btn-grps {
  margin-top: 18px;
}
.course-finder-btn-grps a {
  display: block;
  width: 100%;
  border-radius: 25px;
  text-align: center;
  margin-top: 10px;
}
.course-finder-btn-grps a span {
  display: inline-block;
}
.course-finder-btn-grps a span.icn {
  margin-right: 5px;
}
.course-finder-btn-grps a.primary-btn span.icn img {
  width: 22px;
  filter: brightness(0) invert(1);
}
.course-finder-btn-grps a.dark-btn {
  border: 1px solid rgba(183, 183, 183, 1);
  padding: 10px 22px;
  font-size: 14px;
  color: rgba(61, 57, 74, 1);
  font-weight: 500;
  text-decoration: underline;
  background: #fff;
}
.course-finder-btn-grps a.dark-btn span.icn img {
  width: 22px;
}
.course-finder-btn-grps a.dark-btn span.icn-arw {
  margin-right: 0;
  margin-left: 5px;
}
.course-finder-btn-grps a.dark-btn:hover {
  background: rgba(61, 57, 74, 1);
  color: #fff;
  text-decoration: none;
}
.course-finder-btn-grps a.dark-btn:hover span.icn img {
  filter: brightness(0) invert(1);
}
.course-finder-last-content {
  background: rgba(243, 243, 247, 1);
  padding: 10px 20px;
  border-radius: 5px;
}
.course-finder-last-content .para {
  margin: 0;
  color: #615d6c;
  font-size: 14px;
  line-height: 20px;
}
.modal-ovlay {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / 85%);
  display: none;
}
.modal-ovlay.show {
  display: block;
}
.eligibility-modal-ovly {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10005;
}
.eligibility-modal-ovly.show {
  display: flex;
}
.eligibility-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  width: min(90%, 620px);
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 30px 60px rgba(10, 15, 55, 0.25);
  display: none;
  z-index: 10010;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  max-height: 90vh;
}
.eligibility-modal.active {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.eligibility-modal-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 85vh;
}
.eligibility-modal-body {
  flex: 1;
  overflow: hidden;
}
.eligibility-modal-body form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 100%;
}
.eligibility-modal-body-inner {
  max-height: calc(85vh - 140px);
  overflow-y: auto;
  padding-right: 10px;
}
.eligibility-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.eligibility-modal-head h4 {
  margin: 0;
  font-size: 24px;
}
.eligibility-modal-close {
  border: none;
  background: transparent;
  font-size: 22px;
  color: #333;
  cursor: pointer;
}
.eligibility-modal-body .para-01 {
  margin: 0;
  line-height: 1.6;
}
.eligibility-modal-body .frm-grp .frm-itm {
  margin-top: 5px;
}
.eligibility-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.eligibility-modal-actions .white-btn,
.eligibility-modal-actions .primary-btn {
  min-width: 140px;
}
.eligibility-section {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
}
.eligibility-subsection {
  margin-bottom: 16px;
}
.eligibility-entry-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.eligibility-entry-card {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(25, 31, 61, 0.7);
  padding: 12px;
  border-radius: 10px;
}
.eligibility-entry-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  margin-bottom: 10px;
  color: #fff;
}
.eligibility-entry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.btn-link {
  border: none;
  background: none;
  color: #ffb347;
  cursor: pointer;
  font-size: 0.75rem;
}
.advance-modal {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 9999;
  width: 480px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
}
.advance-modal.active {
  right: 0;
}
.modal-top-hdg {
  position: relative;
  z-index: 0;
  text-align: center;
  padding: 28px 15px;
}
.modal-top-hdg::after {
  content: "";
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 150px;
  background: #27326c;
  top: 0;
  left: 0;
}
.modal-top-hdg h4 {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin: 0;
  font-size: 22px;
}
.modal-top-hdg .mdl-hd-btn {
  position: absolute;
  top: 33px;
  right: 24px;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1;
}
.advace-search-form {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 20px 15px;
  margin: 0 15px;
  border: 1px solid rgb(233 233 233);
  border-radius: 15px;
}
.advace-search-form .label2 {
  color: rgba(61, 57, 74, 1);
  font-weight: 500;
}
.advace-search-form .frm-cntrl2 {
  border-radius: 4px;
}
.advace-search-form.select-frm
  .select2-container--default
  .select2-selection--single {
  border-radius: 4px;
  padding: 6px 15px;
}
.advace-search-form.select-frm
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding-left: 0;
  color: rgba(185, 185, 185, 1);
  font-size: 14px;
}
.advace-search-form.select-frm
  .select2-container--default.select2-container--below
  .select2-selection--single
  .select2-selection__rendered {
  color: #212529;
  font-size: 14px;
}
.advace-search-form.select-frm
  .select2-container--default.select2-container--focus
  .select2-selection--single
  .select2-selection__rendered {
  color: #212529;
  font-size: 14px;
}
.advace-filter-btm-btns {
  text-align: center;
  padding: 15px 55px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.advace-filter-btm-btns button {
  border: none;
}
.advace-filter-btm-btns button.cancle-btn {
  background: transparent;
  border: 1px solid rgba(183, 183, 183, 1);
  border-radius: 25px;
  padding: 11px 22px;
  line-height: 1;
  color: rgba(101, 101, 101, 1);
}
.advace-filter-btm-btns button.cancle-btn:hover {
  background: #1d1c1b;
  color: #fff;
}
.advace-filter-btm-btns .primary-btn {
  border-radius: 25px;
}
.advace-filter-btm-btns .primary-btn .img {
  display: inline-block;
  margin: 0;
  margin-right: 7px;
  position: relative;
  top: -2px;
}
.advace-filter-btm-btns .primary-btn .img img {
  filter: brightness(0) invert(1);
  width: 16px;
}
/* end course finder */
/* start course finder course details */
.pg-brdcrmb.course-details-brdcrmb {
  height: 265px;
}
.course-details-tp {
  position: relative;
  z-index: 2;
  margin-top: -85px;
}
.course-details-rgt-content {
  position: sticky;
  top: 83px;
}
.coursefinder-course-card {
  background: #fff;
  padding: 20px;
  border: 1px solid rgb(211 211 211);
  border-radius: 10px;
}
.course-card-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  width: 100%;
}
.course-card-item .university-logo {
  width: 120px;
  background: rgba(243, 243, 247, 1);
  padding: 6px;
  height: 115px;
  border-radius: 5px;
}
.course-card-item .university-logo .icon-box {
  width: 100%;
  height: 100%;
}
.course-card-item .university-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.course-card-item .university-details {
  width: calc(100% - 135px);
}
.coursefinder-course-card .course-share {
  width: 200px;
  margin: 0 0 0 auto;
  position: relative;
}
.coursefinder-course-card .course-share::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  left: -42px;
  top: 0;
  background: rgba(210, 210, 210, 1);
}
.coursefinder-course-card .course-share li {
  margin-left: 4px;
}
.university-details .title {
  color: #27326c;
  font-size: 18px;
  margin: 0;
}
.university-details ul {
  margin-top: 12px;
}
.university-details li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 5px;
}
.university-details li .icon {
  width: 20px;
}
.university-details li .icon img {
  width: 20px;
}
.university-details li .content {
  width: calc(100% - 30px);
}
.university-details li .content p {
  margin: 0;
  font-size: 15px;
  color: rgba(116, 116, 116, 1);
  line-height: 20px;
}
.university-details li .content a {
  color: #2f2b6e;
  font-size: 15px;
}
.white-bg-card {
  background: #fff;
  padding: 20px;
  border: 1px solid #27326c;
  border-radius: 12px;
  box-shadow: 1px 3px 0 1px #27326c;
  margin-top: 20px;
}
.white-bg-card h5 {
  color: #27326c;
}
.white-bg-card p {
  color: rgba(67, 67, 67, 1);
  line-height: 24px;
  font-size: 15px;
  margin: 0;
}
.coursefinder-mdl-cntnt {
  margin-top: 25px;
}
.stream-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  /* margin-top: 20px; */
}
.stream-content .stream-items {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border: 1px solid #e7e7e7;
  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(61, 57, 74, 1);
  margin: 0;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
}
.stream-content .stream-items .cntnt p {
  margin: 0;
  color: #9b9b9b;
  font-size: 14px;
  font-weight: 400;
}
.coursefinder-mdl-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.coursefinder-mdl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.white-bg-card.without-shdw {
  box-shadow: none;
}
.course-details-rgt-content .test-req {
  background: #27326c;
  padding: 15px;
  border: 1px solid #27326c;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
.course-details-rgt-content .test-req::after {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 10px);
  background: #fff;
  z-index: -1;
  border-radius: 12px;
  top: 5px;
  left: 0;
}
/* end course finder course details */
/* start compare course */

.compare-wrapper {
  width: 100%;
  height: 100%;
  scrollbar-width: thin;
  overflow-y: scroll;
}

.compare-table {
  display: table;
  border-collapse: collapse;
  min-width: 700px;
  width: max-content;
}
.compare-table > div:nth-child(even) {
  background: rgba(243, 243, 247, 1);
}
.compare-row {
  display: table-row;
}

.compare-cell {
  display: table-cell;
  border: 1px solid #dfdfdf;
  padding: 15px;
  vertical-align: top;
  min-width: 230px;
  color: rgba(65, 65, 65, 1);
}

.university-cell {
  width: 250px;
  min-width: 250px;
  position: relative;
}
.university-cell .cls-btn {
  border: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  color: rgba(61, 57, 74, 1);
}
.title-cell {
  width: 220px;
  min-width: 220px;
  font-weight: 600;
  width: 200px;
}

.header-row .compare-cell h4 {
  color: rgba(47, 43, 110, 1);
  margin: 0;
  font-weight: 600;
  font-size: 23px;
  text-align: center;
  margin-top: 45px;
}
.university-logo {
  width: 120px;
  height: 80px;
  background: rgba(243, 243, 247, 1);
  padding: 7px;
  border-radius: 4px;
  margin: 0 auto;
}

.university-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cntry-name {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  margin-top: 15px;
}
.cntry-name span {
  display: inline-block;
  margin-right: 4px;
  color: #2f2b6e;
}
.uni-name {
  font-size: 13px;
  color: #2f2b6e;
  text-decoration: none;
}
.compare-cell .compare-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-top: 8px;
}
.compare-cell .compare-list li p {
  margin: 0;
}
.compare-cell .compare-list li span {
  border: 1px solid #e3e3e3;
  color: #a1a1a1;
  font-size: 12px;
  padding: 3px 4px;
  border-radius: 3px;
  line-height: 1;
  font-weight: 300;
}
.compare-cell .course-share {
  background: transparent;
  text-align: center;
  margin-top: 0px;
  padding: 0px 0px;
  border-radius: 0;
}
.compare-cell .course-share ul {
  margin-top: 0;
}

.compare-row.header-row {
  /* position: sticky; */
  /* top: 80px; */
  background: #fff;
}
/* end compare course */
/* start footer */
.footer {
  background: rgba(30, 39, 87, 1);
  padding-top: 65px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.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-logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
}

.footer-logo .logo-2 {
  background: #fff;
  width: 85px;
  padding: 3px;
  border-radius: 4px;
  min-height: 140px;
}

.footer-logo .logo-2 a {
  display: block;
}

.footer-logo .logo-2 img {
  width: 100%;
  margin-top: 12px;
}

.footer-logo .text {
  width: calc(100% - 97px);
}

.footer-logo .text p {
  margin: 0;
  color: rgb(255 255 255 / 80%);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.footer-subscribe {
  margin-top: 60px;
}

.footer-subscribe .hdg-h6 {
  color: #fff;
  font-size: 21px;
}

.footer-subscribe .subscribe-input {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-subscribe .subscribe-input .cntrl {
  outline: none;
  background: rgb(255 255 255 / 12%);
  border: 1px solid rgb(255 255 255 / 50%);
  padding: 7px 11px;
  border-radius: 4px;
  font-size: 15px;
  color: #fff;
  width: calc(100% - 47px);
}

.footer-subscribe .subscribe-input .cntrl::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.footer-subscribe .subscribe-input .subscribe_btn {
  background: #fff;
  color: rgba(30, 39, 87, 1);
  border: none;
  width: 37px;
  height: 37px;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 4px;
}

.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;
}

.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 {
  margin-top: 20px;
}

.ftr-scl-icn ul {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.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: -2px;
  background: url(../img/shape/line.png);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.4;
}

.footer .container > .row > div:last-child::after {
  display: none;
}

.footer-cntnt {
  padding-left: 15px;
}

.ftr-scl-icn {
  margin-top: 20px;
  padding-left: 15px;
}

/* end footer */
