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

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

}

* {
  scrollbar-width: thin;
}

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

.content-box {
  flex: 1;
}

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

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

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

:root {
  --primary-color: #0a4f9d;
  --primary-bg: #0a4f9d;
  --white: #fff;
  --heading-color: #3B3B3B;
}

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

.white-text {
  color: #fff;
}

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

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

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

.section-heading {
  color: var(--secondary-color);
  font-size: 30px;
  font-weight: 600;
  /* text-transform: uppercase; */
}
.section-heading-blue{
     color: #3B3B3B;
    font-size: 30px;
    font-weight: 600;
    /* text-transform: uppercase; */
}
.section-heading.medium-small {
  font-size: 23px;
}

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

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

.section-subtitle {
    width: fit-content;
    position: relative;
    margin-bottom: 10px;
}

.section-subtitle .subtitle {
  margin: 0;
    font-size: 22px;
    font-weight: 400;
    color: var(--primary-color);
    font-family: "Marck Script", cursive;
}

.sctn-bg{
  background: #f1f7ff;
}

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

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

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

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

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

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


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

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

/* .primary-btn span {
  font-weight: 500;
} */

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

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


.primary-btn.secondary-grn{
  background: #056cde;
  border: none;
}




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

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

/* end form */



/* start top header */
.top-info {
  background: #056cde;
  padding: 6px 0px;
  position: relative;
  z-index: 1;
}

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

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

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

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

.info-list .list .cntnt {
      width: calc(100% - 22px);
    font-size: 13px;
    line-height: 1;
    padding-left: 6px;
}
.info-list .list .cntnt span{
      position: relative;
    top: 2px;
}
.info-list li {
  display: inline-block;
  margin-left: 20px;
  position: relative;
}

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

.info-list li::after{
   position: absolute;
    content: '';
    width: 1px;
    height: 15px;
    background: rgb(255 255 255 / 30%);
    right: -14px;
    top: 4px;
}
.info-list li:last-child::after{
    display: none;
}
.tp-rgt-lnks {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

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

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

/* end top header */
/* start header  */
.main-header {
  position: relative;
  z-index: 99;
  box-shadow: 0 2px 2px rgb(27 30 37 / 20%);
  background: #0a4f9d;
}
.main-header::after{
     position: absolute;
    content: '';
    width: 28%;
    height: 100%;
    background: linear-gradient(to right, #fff 75%, transparent 94%);
    top: 0;
    left: 0;
    z-index: -1;
}
.hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 15px;
  position: relative;
}

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

.logo {
  width: 110px;
}

.hdr>.logo img {
          width: 190px;
}

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

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

.hdr>.hedr-btns .primary-btn {
 padding: 10px 20px;
    position: relative;
    float: right;
        margin-left: 9px;
}
.hdr>.hedr-btns .primary-btn i{
  display: inline-block;
    font-size: 12px;
    margin-left: 3px;
}
.hdr>.hedr-btns .primary-btn.secondary-grn2{
    border: 1px solid #203e60;
    background: #091d34;
    color: #ffffff;
    padding: 9px 15px 9px 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 18px rgb(253 253 253 / 11%);
}
.hdr>.hedr-btns .reg_btn .register-dropdown{
    position: absolute;
    right: 0;
        top: 85px;
    padding: 10px;
    border-radius: 3px;
    background: #feebea;
    border: 1px solid rgb(254 235 234);;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.hdr>.hedr-btns .reg_btn:hover  .register-dropdown{
  opacity: 1;
  visibility: visible;
  top: 63px;
}
.hdr>.hedr-btns .reg_btn .register-dropdown::after{
     position: absolute;
    content: '';
    border-width: 12px;
    border-style: solid;
    border-color: transparent transparent #feebea transparent;
    top: -22px;
    right: 30px;
    z-index: 1;
}
.hdr>.hedr-btns .reg_btn .register-dropdown li{
  display: block;
}
.hdr>.hedr-btns .reg_btn .register-dropdown li a{
        display: block;
    font-size: 14px;
    padding: 7px 6px;
    color: #434343;
    border-bottom: 1px solid rgb(254 235 234);;
}
.hdr>.hedr-btns .reg_btn .register-dropdown li:last-child a{
  border-bottom: none;
}
.hdr>.hedr-btns .reg_btn .register-dropdown li a:hover{
  color: var(--primary-color);
}
.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: #fff;
}

.menuS ul {
  text-align: center;
}

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

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

.menuS li:hover a.mn-anchr {
  color: #ffffff;
}

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

.menuS li .mn-anchr.active {
  color: #ffffff;
  text-decoration: underline;
}

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

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

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

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

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

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

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

.submenu ul {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.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%;
  top: 0;
  left: 0;
  box-shadow: 0 0px 5px rgb(0 0 0 / 30%);
  animation: slipUp 0.5s ease-in-out;
  z-index: 99;
}

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

  to {
    transform: translateY(0);
  }
}

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

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

.home-banner::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: url(../img/banner-bg.png);
  top: 0;
  z-index: -1;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* opacity: .12; */
}
.banner-content{
  margin-top: 25px;
}
.banner-content .subtitle{
      font-family: "Marck Script", cursive;
    color: #ffffff;
    font-size: 25px;
}
.banner-content .title {
 color: #fff;
    line-height: 62px;
    letter-spacing: 0.3px;
    position: relative;
    margin-bottom: 15px;
    font-size: 44px;
    font-weight: 700;
    width: 570px;
    text-transform: uppercase;
}
.banner-content .primary-btn{
  margin-top: 35px;
}

.banner-content .para {
        margin: 0;
    padding: 0px 0px;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
  
}
.bnr-rgt-crcl {
       position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;

}
.bnr-rgt-crcl img{
         width: 610px;
}

.bnr-nurse {
       position: absolute;
    right: 116px;
    top: -235px;
    z-index: 1;
}
.bnr-nurse img{
  width: 350px;
}
.exprt-card {
    position: absolute;
    bottom: -142px;
    background: #ffffff;
    width: 100%;
    left: 0;
        padding: 15px 20px;
    border-radius: 8px;
    z-index: 2;
        box-shadow: 0 3px 7px rgb(5 108 222 / 30%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.exprt-card .hdg-title{
  width: 180px;
    margin: 0;
    color: #000000;
    font-size: 17px;
    font-weight: 600;
    line-height: 23px;
}

.exprt-card ul{
   display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: calc(100% - 180px);
    padding-left: 40px;
}
.exprt-card ul li{
        flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
}
.exprt-card ul li::after{
  position: absolute;
    content: '';
    width: 1px;
    height: 58px;
    background: #D5D5D5;
    top: 0;
    left: 0px;
    bottom: 0;
    margin: auto 0;
}

.exprt-card ul li .icn{
  width: 40px;
    height: 40px;
    margin-bottom: 6px;
}
.exprt-card ul li .icn img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.exprt-card ul li .cntnt{
      width: 100%;
    
}
.exprt-card ul li .cntnt p{
   color: #212121;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    text-align: center;
}
.bnr-sprt {
   position: absolute;
    right: 0;
    width: 250px;
    top: 50px;
}
.bnr-sprt img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}


/* start about us */
.abt-sctn{
  background: #f1f7ff;
  position: relative;
  z-index: 1;
}
.abt-sctn::after{
  position: absolute;
    content: '';
    width: 210px;
    height: 210px;
    bottom: -25px;
    right: 0;
    background: url(../img/flyer.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
}
.about-content .hdg-h4 {
 color: #3b3b3b;
    font-size: 30px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
    line-height: 1.4;
}
.about-content .hdg-h6{
  color: #3B3B3B;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    margin: 15px 0;
}
.about-content .hdg-h6 .icn{
  width: 50px;
    height: 50px;
    background: #000000;
    border-radius: 50%;
    padding: 10px;
}
.about-content .hdg-h6 .icn img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.about-content .hdg-h6 .txt{
  width: calc(100% - 50px);
  padding-left: 10px;
}
.about-content p {
  padding-bottom: 10px;
  line-height: 25px;
  margin: 0;
}



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

.img-box1 {
        width: 70%;
    height: 443px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

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

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

.img-box2 {
  width: 30%;
    z-index: 1;
    position: relative;
    margin: 0;
    position: absolute;
    right: 0;
    bottom: 25px;
}

.img-box2 img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.img-box3{
width: 30%;
    z-index: 1;
    position: relative;
    margin: 0;
    position: absolute;
    left: 0;
    top: 25px;
}
.img-box3 img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.abt-arpln {
    position: absolute;
    right: -7px;
    top: 40px;
    width: 25%;
}
.abt-arpln img{
  width: 100%;
  height: 100%;
}
.abt-ex {
    width: 155px;
    height: 155px;
    position: absolute;
    border-radius: 50%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    top: 270px;
    left: -5px;
    border: 6px solid #fff;
    box-shadow: 0 0 5px rgb(0 0 0 / 31%);
}
.year-exp-circle h5 {
  color: var(--white);
  font-size: 55px;
  font-weight: 800;
  margin: 0;
  position: absolute;
  z-index: 10;
}
.circle-text {
      width: 130px;
    height: 130px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto
}
.circle-text text {
  font-size: 10px;
  fill: #fff;
  letter-spacing: .8px;
  animation: rotateText 15s linear infinite;
  transform-origin: 50px 50px;
  text-transform: capitalize;
}
@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}



.abt-ex .abt-ex-cunt .abtcont {
  font-size: 30px;
    font-weight: 600;
    margin-bottom: 0;
    font-family: "Poppins", sans-serif;
    width: 75px;
    height: 75px;
    background: var(--secondary-bg);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
}

.abt-ex .abt-ex-cunt p {
  font-size: 15px;
  margin: 0;
  font-weight: 400;
  width: calc(100% - 75px);
}
.about-content .abt-list{
  list-style-type: none;
  margin-top: 15px;
}



.about-content .abt-list li{
    padding-left: 25px;
    position: relative;
    margin-bottom: 5px;
}
.about-content .abt-list li::after{
      position: absolute;
    content: '\f00c';
    font-family: 'fontAwesome';
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    left: 0;
    top: 3px;
    font-size: 14px;

}

.about-content .abt-list li p{
     font-size: 14px;
    margin: 0;
    font-weight: 400;
    line-height: 25px;
    padding: 0;
}
.abt-btm-grps {
   margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
.abt-btm-grps .abt-stsf-nurse{
      display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.abt-btm-grps .abt-stsf-nurse .imgs li{
        display: inline-block;
    border: 1px solid #1052a0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    margin-left: -16px;
}
.abt-btm-grps .abt-stsf-nurse .imgs li:first-child{
  margin-left: 0;
}
.abt-btm-grps .abt-stsf-nurse .imgs li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.abt-btm-grps .abt-stsf-nurse .info h6{
  margin: 0;
    color: var(--primary-color);
    font-weight: 700;
}
.abt-btm-grps .abt-stsf-nurse .info p{
      margin: 0;
    line-height: 1;
    font-size: 14px;
    margin-top: 2px;
}
.abt-wv {
        position: absolute;
    left: 0;
    top: -31px;
    z-index: 0;
    width: 404px;
    z-index: -1;
}
.abt-wv img{
  width: 100%;
  height: 100%;
}
/* end about us */
/* start service */
.section-padding.service-sctn{
  padding: 100px 0 50px 0;
}
.service-card {
    padding: 15px;
    box-shadow: 0 0 10px rgb(14 15 24 / 21%);
    border-radius: 7px;
    text-align: center;
    min-height: 230px;
}
.service-card .icon {
       width: 70px;
    height: 70px;
    background: rgb(5 108 222 / 15%);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.service-card .icon img{
  width: 32px;
}
.service-card h4{
 color: #222222;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}
.service-card p{
      margin: 0;
    padding-top: 10px;
    color: #686868;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}
.ftr-scl-card2 {
      background: var(--primary-bg);
    padding: 18px 35px;
    border-radius: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    backdrop-filter: blur(2px);
}
.ftr-scl-card2::after{
     content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../img/ftr-lines.png);
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    z-index: -1;
}
.ftr-scl-icns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.ftr-scl-icns .icn{
  width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    padding: 12px;
}
.ftr-scl-icns .icn img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.ftr-scl-icns .hdg {
  width: calc(100% - 70px);
  padding-left: 15px;
}
.ftr-scl-icns .hdg h5{
        color: #fff;
    margin: 0;
    font-size: 26px
}
.ftr-scl-icns .hdg p{
      color: #fff;
    margin: 0;
    padding-top: 7px;
}
.ftr-scl-icns .ftr-scl-icn{
        width: calc(100% - 170px);
    padding-left: 20px;
    position: relative;
}
.ftr-scl-icns2 .ftr-scl-icn::after{
      position: absolute;
    content: '';
    width: 1px;
    height: 35px;
    background: rgb(255 255 255 / 15%);
    top: 0;
    right: 62px;
    bottom: 0;
    margin: auto 0;
}
.ftr-scl-icns .ftr-scl-icn ul{
  justify-content: start;
}
.ftr-scl-icns .ftr-scl-icn li a{
      width: 30px;
    height: 30px;
    line-height: 30px;
}
.affiliations-main {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.affiliations-items{
      padding: 15px;
    border: 1px solid #B5B5B5;
    border-radius: 10px;
    height: 90px;
    background: #fff;
}
.affiliations-items img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
  .ftr-sbscb-frm .sbcb-frm{
    float: right;
  }
.ftr-sbscb-frm input{
      width: 348px;
    background: #FFFFFF;
    outline: none;
    border: 1px solid rgb(255 255 255 / 20%);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    color: #212121;
}
.ftr-sbscb-frm input::placeholder{
  color: #838383;
   font-size: 14px;
}
/* === start owl buttons === */
.owl-carousel .owl-dots {
     margin-top: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.owl-carousel .owl-dots .owl-dot {
  margin: 0;
  padding: 0;
  outline: none;
  line-height: 0;
  border-radius: 50%;
  border: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--primary-bg);
  position: relative;
}
.owl-carousel .owl-dots .owl-dot::after{
  position: absolute;
    content: '';
    width: 9px;
    height: 9px;
    background: transparent;
    border-radius: 50%;
    top: 3px;
    left: 3px;
}
.owl-carousel .owl-dots .owl-dot span {
  display: none;
  
}

.owl-carousel.owl-theme .owl-nav {
  margin-top: 20px;
}
.owl-carousel .owl-dots .owl-dot:hover:after{
   background: var(--primary-bg);
   opacity: .5;
}


.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;
}
.nursing-destination.owl-carousel.owl-theme  .owl-dots .owl-dot{
      background: rgb(255 255 255 / 15%);
    border: 1px solid rgb(255 255 255 / 90%);
}
.nursing-destination.owl-carousel.owl-theme  .owl-dots .owl-dot::after{
  background: transparent;
      top: 4px;
}
.nursing-destination.owl-carousel.owl-theme  .owl-dots .owl-dot:hover::after{
  background: #fff;
  opacity: .7;
}
.nursing-destination.owl-carousel.owl-theme  .owl-dots .owl-dot.active::after{
  background: #fff;
}
/* === end owl buttons === */
/* ==== start brdcrmb ====  */
.pg-brdcrmb {
  width: 100%;
  height: 220px;
  /* 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;
}
.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: 0;
}

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

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

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

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

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

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

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

.brdcm-lst li a.secondry-color:hover {
  /* color: rgba(70, 89, 190, 1); */
  text-decoration: none;
  cursor: unset;
}

/* ==== end brdcrmb ====  */
/* start inner pages */
/* === start about us === */
.aboutcounter{
      display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
        margin-top: 30px;
        position: relative;
        z-index: 1;
}
.aboutcounter .abt-cntr-itm{
       border: 1px solid #3D4C61;
    background: linear-gradient(to left, #0F2E51, #011227);
    padding: 15px 4px;
    border-radius: 8px;
}
.aboutcounter .abt-cntr-itm .tp-cntnt{
  display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}
.aboutcounter .abt-cntr-itm .icn{
       width: 50px;
    height: 50px;
    padding: 7px;
}
.aboutcounter .abt-cntr-itm .tp-cntnt .cntr-num{
      width: calc(100% - 50px);
    padding-left: 5px;
}
.aboutcounter .abt-cntr-itm .tp-cntnt .cntr-num .hdg-h5{
  color: #fff;
    margin: 0;
    font-size: 23px;
    font-weight: 500;
}
.aboutcounter .abt-cntr-itm .tp-cntnt .cntr-num p{
      margin: 0;
    color: #fff;
    margin-top: 0px;
    font-weight: 500;
    font-size: 14px;
    font-weight: 300;
}
.aboutcounter .abt-cntr-itm .icn img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.msn-pg{
  background: rgba(var(--primary-rgb),.07) ;
}
.value-card {
    background: #f1f7ff;
    padding: 25px;
    border-radius: 15px;
}
.value-card .title{
   color: #3B3B3B;
    font-weight: 600;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.value-card .title .icn {
        width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid rgb(5 108 222 / 50%);
    padding: 13px;
}
.value-card .title .icn img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.value-card .title .cntnt{
  width: calc(100% - 70px);
  padding-left: 15px;
}
.value-card .para{
  margin: 0;
    color: #686868;
    /* text-align: justify; */
    font-size: 15px;
    line-height: 26px;
}
.value-card.vsnbg{
  background: rgb(4 33 88 / 10%);
}

/* === end about us === */
/* start destination */
.service-sectn{
  background: rgba(var(--primary-rgb), .07);
}
.service-sectn .destination-card{
  box-shadow: 0 0 7px rgb(0 0 0 / 25%);
}
/* end destination */

/* right content */


.study-abroad-cntnt {
  background: rgb(255 255 255);
  border-radius: 7px;
  padding: 20px;
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}

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

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

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

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

.study-abroad-frm .frm-itm .icn {
        position: absolute;
    top: 1px;
    left: 1px;
    z-index: 1;
    background: rgb(5 108 222 / 15%);
    width: 40px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.study-abroad-frm .frm-itm .icn img {
  width: 20px;
}
.contact-us .study-abroad-frm .frm-itm:has(textarea.frm-cntrl2) .icn{
  background: transparent;
}
.contact-us .hdg4{
      font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
}
.study-abroad-frm .frm-itm .frm-cntrl2 {
  border-radius: 5px;
  padding-left: 45px;
  background: rgba(242, 241, 245, 1);
  border: 1px solid rgba(229, 229, 229, 1);
}

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

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

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

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

.frm-cntrl2:hover {
  border: 1px solid #1052a0;
}
 .frm-itm select, .schedule-consultation-frm select{
   display: block;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(173, 159, 163, 0.5);
  padding: 8px 15px;
  font-size: 14px;
  outline: none;
  height: 40px;
 }
.frm-cntrl2::placeholder {
  color: #AA9C9F;
  font-size: 14px;
}

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



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

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

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

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

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

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

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

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

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

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

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

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



/* == start contact us ==*/
/* .contact-us-top-card{
  background: #F3F6FA;
    border: 1px solid rgba(var(--primary-rgb), .3);
    padding: 25px;
    border-radius: 15px;
} */
.contact-us {
      background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #cddff3;
    box-shadow: 0 0 30px rgb(9 29 52 / 6%);
}
.contact-us .para {
  color: rgba(67, 67, 67, 1);
  line-height: 26px;
}

.contact-us .study-abroad-cntnt {
  background: transparent;
  border: none;
  border-radius: 0px;
  padding: 0;
  box-shadow: none;
}

.contact-us .study-abroad-cntnt .study-abroad-frm {
  
  width: 100%;
  flex-wrap: wrap;
  column-gap: 20px;
  
}

.contact-us .study-abroad-cntnt .study-abroad-frm>.frm-grp {
  width:100%;
  margin-top: 15px;
}
.contact-us .study-abroad-cntnt .study-abroad-frm>.frm-grp:first-child{
  margin-top: 0;
}
.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>.frm-grp.frm-grp-two{
      display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    margin: 19px 0 12px 0;
    flex-direction: column;
}
.contact-us .study-abroad-cntnt .study-abroad-frm>.frm-grp.frm-grp-two >div{
  width: 100%;
}
.contact-us .study-abroad-cntnt .study-abroad-frm>.frm-grp.frm-grp-two .submit-btn{
  text-align: right;
}
.contact-us .study-abroad-cntnt .study-abroad-frm>.width-100 {
  width: 100%;
  text-align: right;
}

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



.contact-info .top-heading {
    margin-bottom: 10px;
}

.contact-info .top-heading .hdg-h6 {
    color: #3B3B3B;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 18px;
}
.contact-info .top-heading .para{
 margin: 0;
    font-weight: 400;
    line-height: 26px;
    font-size: 15px;
    margin-bottom: 15px;
}
.contact-info-list {
    display: grid;
        /* grid-template-columns: 0.8fr 0.3fr; */
    gap: 20px;
}
.contact-info .contact-info-list .add-info-card{
      padding: 18px;
    border-radius: 10px;
    background: #eef3f9;
    border: 1px solid rgb(205 223 243);
}
.contact-info .contact-info-list .add-info{
  display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.contact-info .contact-info-list .add-info li {
  display: block;
}
.contact-info .contact-info-list .add-info li:last-child{
   grid-column: 1 / -1;
}
.contact-info .contact-info-list .add-info li:last-child .info-box{
 
  border-bottom: none;
}
.contact-info .contact-info-list .add-info .info-box {
 display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    margin-top: 0px;
    border-radius: 0px;
    border-bottom: 1px solid #cddff3;
}

.contact-info .contact-info-list .add-info .info-box .icn {
  width: 42px;
  height: 42px;
  background: var(--primary-bg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info .contact-info-list .add-info .info-box .icn img {
  width: 25px;
  filter: brightness(0) invert(1);
}

.contact-info .contact-info-list .add-info .info-box .info {
  width: calc(100% - 60px);
  
}
.contact-info .contact-info-list .add-info .info-box .info h6{
  color: var(--primary-color);
    margin: 0;
    font-weight: 400;
    font-size: 15px;
    padding-bottom: 4px;
}

.contact-info .contact-info-list .add-info .info-box .info .para {
  color: #3B3B3B;
  font-weight: 600;
  display: block;
  margin: 0;
}

.contact-us-social-icons {
background: #ffffff;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid rgb(205 223 243);
}

.contact-us-social-icons h6 {
       /* color: #E53935; */
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid #cddff3;
    padding-bottom: 10px;
}

.contact-info .contact-us-social-icons li {
  position: relative;
}
.contact-info .contact-us-social-icons li .scl-icn-name{
      position: absolute;
    top: 7px;
        left: 48px;
}
.contact-info .contact-us-social-icons li a {
        display: block;
    color: rgb(255 255 255 / 85%);
    padding: 0;
    font-size: 14px;
    width: 36px;
    height: 36px;
    background: var(--primary-bg);
    border-radius: 50%;
    line-height: 36px;
    border: 1px solid var(--primary-bg);
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 15px;
}

.contact-info .contact-us-social-icons li a:hover {
  background: #fff;
  color: var(--primary-color);
}
.contact-info-list .contact-img {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid rgb(16 82 160 / 20%);
    border-radius: 12px;
}
.contact-info-list .contact-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-form-map {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}

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

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

}

.contact-us .study-abroad-frm .frm-itm .frm-cntrl2,
.contact-us .select-frm .select2-container--default .select2-selection--single,
.contact-us .study-abroad-frm .captch-main .catpch-input input {
  background: #fff;
      border: 1px solid rgb(145 145 145 / 70%);
}
.contact-us .study-abroad-frm .frm-itm .frm-cntrl2:hover, .contact-us .study-abroad-frm .captch-main .catpch-input input:hover{
  border: 1px solid var(--primary-color);
}
.contact-us .study-abroad-frm .frm-itm textarea.frm-cntrl2{
  height: 96px;
  resize: none;
}

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

.footer-whatsapp .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gaq-left-img {
      width: 100%;
    height: 328px;
    overflow: hidden;
    border-radius: 10px;
}

.gaq-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cntnt-us-btm-scl{
  display: grid;
    grid-template-columns: 0.8fr 0.3fr;
    gap: 20px;
}
/* == end contact us == */

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

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

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

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

.iti__country.iti__highlight {
  background: #0a4f9d !important;
}

.iti__country.iti__highlight {
  color: #fff;
}

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

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

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

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

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

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

  .iti {
    width: 100%;
  }
}

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

.select-frm .select2-container--default .select2-selection--single {
  background: rgba(242, 241, 245, 1);
  border: 1px solid rgba(229, 229, 229, 1);
  padding: 6px 15px 6px 40px;
  height: 40px;
  border-radius: 5px;
}
.select-frm .select2-container--default .select2-selection--single .select2-selection__arrow{
  height: 37px;
      right: 7px;
}
.select-frm .select2-container--default .select2-selection--single .select2-selection__arrow b{
      border: none;
    position: relative;
    margin-left: 0;
    margin-top: 0;
}
.select-frm .select2-container--default .select2-selection--single .select2-selection__arrow b::before{
      content: "\f078";
    font-family: "fontAwesome";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
}
.select-frm .select2-container--default .select2-selection--single .select2-selection__rendered{
      color: #8b8b8b;
}
.select-frm .select2-container--default.select2-container--below .select2-selection__rendered{
  color: #212529;
}

.select-frm .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b::before{
    content: "\f077";
}
.select-frm .select2-container--default .select2-selection--single:hover {
  border: 1px solid var(--primary-bg);
}

/* end selet2 */


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

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

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

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

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

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

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

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

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

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

/* ============= end all pages design css ============== */
/* start footer */
.footer {
      background: url(../img/footer-bg.png);
    padding: 22px 0 16px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: auto;
}
.ftr-scl-card {
       background: #232B34;
    padding: 20px 35px;
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / 30%);
}

.ftr-cntnt-card {
    display: flex;
    justify-content: flex-start;
    position: relative;
}
.ftr-cntnt-card::after{
  position: absolute;
    content: '';
    width: 1px;
    height: 50px;
    right: 32px;
    top: 0;
    background: rgb(255 255 255 / 15%);
    bottom: 0;
    margin: auto 0;
}
.ftr-scl-card >div>div:last-child .ftr-cntnt-card::after{
  display: none;
}
.ftr-cntnt-card .icn{
  width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ftr-cntnt-card .icn img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.ftr-cntnt-card .cntnt{
  width: calc(100% - 50px);
  padding-left: 10px;
}
.ftr-cntnt-card .cntnt p{
  margin: 0;
  color: #ffffff;
}
.ftr-cntnt-card .cntnt a{
  color: #fff;
}
.last-footer {
  /* border-top: 1px dashed rgb(255 255 255 / 20%); */
     /* margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 14px; */
    /* background: #232B34; */
    /* padding: 15px 35px; */
    /* border-radius: 10px; */
    /* border: 1px solid rgb(255 255 255 / 30%); */
        display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.last-footer .cpy-rgt span {
  font-weight: 600;
  color: var(--primary-color);
}

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

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

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

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

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

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

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



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

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

.ftr-scl-icn li a {
  display: block;
    color: #fff;
    font-size: 13px;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary-bg);
  transition: all 0.3s ease;
}
.ftr-scl-icn li a:hover{
  background: #fff;
  color: var(--primary-color);
}
.footer .container>.row>div {
  position: relative;
}



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

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

.footer-cntnt {
  padding-left: 55px;
  position: relative;
}
.footer-cntnt::after{
        position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    left: 19px;
    top: 3px;
    background: rgb(255 255 255 / 7%);
}
.footer_list.quick-link-card{
  position: relative;
    left: 36px;
}
.footer_list.quick-link-card::after{
      position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    left: -24px;
    top: 3px;
    background: rgb(255 255 255 / 7%);
}
.footer_list.service-ftr{
      padding-left: 65px;
      position: relative;
}
.footer_list.service-ftr::after{
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    left: 34px;
    top: 3px;
    background: rgb(255 255 255 / 7%);
}
.footer_list.destination-ftr{
   padding-left: 40px;
   position: relative;
}
.footer_list.destination-ftr::after{
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    left: 7px;
    top: 3px;
    background: rgb(255 255 255 / 7%);

}
/* end footer */




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

/* start 404 */
.error-404-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(40, 41, 151, 0.04) 0%, rgba(33, 16, 86, 0.08) 50%, rgba(242, 241, 245, 1) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background shapes */
.error-404-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(40, 41, 151, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.error-404-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(33, 16, 86, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.error-404-content {
    position: relative;
    z-index: 2;
}

/* Enhanced 404 Number */
.error-number {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.error-number h1 {
    font-size: 220px;
    font-weight: 900;
    background: linear-gradient(135deg, 
        rgba(40, 41, 151, 0.12) 0%, 
        rgba(33, 16, 86, 0.15) 50%, 
        rgba(40, 41, 151, 0.08) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.85;
    margin: 0;
    letter-spacing: -8px;
    font-family: "Poppins", sans-serif;
    position: relative;
    text-shadow: 0 10px 40px rgba(40, 41, 151, 0.1);
    animation: numberGlow 3s ease-in-out infinite alternate;
}

@keyframes numberGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.1); }
}

/* Decorative circles behind 404 */
.error-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, 
        rgba(40, 41, 151, 0.1) 0%, 
        rgba(33, 16, 86, 0.08) 50%, 
        transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

/* Decorative dots */
.error-number::after {
    content: '••••';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: rgba(40, 41, 151, 0.2);
    letter-spacing: 15px;
    animation: dots 2s ease-in-out infinite;
}

@keyframes dots {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.error-message h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.error-message p {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    text-align:center;
}

.error-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}

.error-actions .primary-btn,
.error-actions .secondary-btn {
    padding: 14px 35px;
    min-width: 190px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 30px;
}

.error-links {
    padding-top: 40px;
    border-top: 2px solid rgba(40, 41, 151, 0.08);
    margin-top: 40px;
}

.error-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.error-link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 41, 151, 0.05) 0%, rgba(33, 16, 86, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-link-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(40, 41, 151, 0.18);
    border-color: var(--primary-color);
    text-decoration: none;
}

.error-link-item:hover::before {
    opacity: 1;
}

.error-link-item .icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.error-link-item:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.error-link-item .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
    .error-number h1 {
        font-size: 180px;
        letter-spacing: -6px;
    }
    
    .error-number::before {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 767px) {
    .error-404-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .error-number h1 {
        font-size: 130px;
        letter-spacing: -4px;
    }
    
    .error-number::before {
        width: 180px;
        height: 180px;
    }
    
    .error-number::after {
        display: none;
    }
    
    .error-message h2 {
        font-size: 28px;
    }
    
    .error-message p {
        font-size: 15px;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .primary-btn,
    .error-actions .secondary-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .error-links {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .error-link-item .icon-box {
        width: 60px;
        height: 60px;
        padding: 12px;
    }
}
/* end 404 */


/* start doc pages */
.docment-cntnt h1{
  color: #3B3B3B;
    font-size: 30px;
    font-weight: 600;
}
.docment-cntnt p{
      font-size: 15px;
      font-weight: 400;
    line-height: 25px;

}
.docment-cntnt h3{
      color: #3B3B3B;
    font-weight: 600;
    font-size: 22px;
}
.docment-cntnt ul{
  list-style-type: none;
  padding: 0;
      margin-bottom: 13px;
}
.docment-cntnt li{
      position: relative;
    line-height: 25px;
    font-size: 15px;
    font-weight: 400;
    padding-left: 26px;
    margin-bottom: 5px;
}
.docment-cntnt li::after{
  position: absolute;
    content: '\f00c';
    font-family: 'fontAwesome';
    left: 2px;
    top: 8px;
    font-size: 14px;
    line-height: 1;
    color: var(--primary-color);
}
/* end doc pages */

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

.why-choose-card {
  background: #0a4f9d;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #D8D8D8;
      min-height: 426px;
}
.why-choose-card .icn {
  width: 60px;
  height: 60px;
  background: #0a4f9d;
  padding: 12px;
  border-radius: 8px;
}
.why-choose-card .icn img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.why-choose-card .cntnt {
  margin-top: 15px;
}
.why-choose-card .hvr-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.why-choose-card .hvr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-choose-card::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 99%;
  background: #fff;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 0 0 10px 10px;
}
.why-choose-card:hover::after{
  z-index: -2;
}
.why-choose-card:hover .cntnt .title {
  color: #fff;
}
.why-choose-card .cntnt .title {
  color: #515151;
  font-weight: 600;
  border-bottom: 1px solid #DFDFDF;
  padding-bottom: 15px;
  margin-bottom: 12px;
}
.why-choose-card:hover .hvr-img {
  opacity: 1;
  visibility: visible;
}
.why-choose-card:hover .hvr-img {
  visibility: visible;
}
.why-choose-card:hover .cntnt p {
  color: #fff;
}
.why-choose-card .para {
  padding-bottom: 10px;
    line-height: 25px;
    margin: 0;
        /* text-align: justify; */
    font-weight: 400;
    font-size: 14px;
}
.google-review-star {
    display: flex;
    column-gap: 15px;
    justify-content: end;
}
.google-review-star span {
    font-size: 19px;
    color: var(--primary-bg);
    font-weight: 500;
    letter-spacing: 0.8px;
}
.google-review-star ul {
    display: flex;
    column-gap: 8px;
}
.google-review-star ul li a {
    color: #eb9d0a !important;
    font-size: 15px;
}
.google-logo-rating {
    display: flex;
    column-gap: 12px;
    align-items: center;
    justify-content: end;
}
.google-logo-rating span {
    color: #202329;
    font-size: 15px;
}
.google-logo-rating img {
    width: 150px;
}
.testimonials-box .msg {
  position: relative;
  background: #fff;
  padding: 35px 20px 20px 20px;
  border-radius: 20px;
  z-index: 1;
  box-shadow: 0 3px 0 #0a4f9d;
  border: 1px solid var(--primary-color);
}

.testimonials-box .msg::before {
    position: absolute;
    content: '';
    border-width: 16px;
    border-style: solid;
    border-color: #ffffff transparent transparent #ffffff;
    left: 65px;
    bottom: -30px;
    filter: drop-shadow(2px 3px 0 #0a4f9d);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.testimonials-box .cntnt span {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
}
.pstd-google-icn img{
  width: 125px !important;
  padding-top: 19px;
  margin: auto;
}

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

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


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

}

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

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

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

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

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

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

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

.univer-log {
  background: rgb(255 255 255);
  padding: 4px 15px;
  border-radius: 50px;
  width: 100%;
  height: 75px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .25);
  overflow: hidden;
}

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

.university.owl-carousel .owl-dots .owl-dot {

  border: 1px solid #fff;
  width: 9px;
  height: 9px;
  background: transparent;
}
.university.owl-carousel .owl-dots .owl-dot::after{
  display: none;
} 
.university.owl-carousel .owl-dots .owl-dot.active {
  background: #fff;
  width: 33px;
  border-radius: 25px;
}
.owl-carousel .owl-dots .owl-dot::after {
    position: absolute;
    content: '';
    width: 9px;
    height: 9px;
    background: transparent;
    border-radius: 50%;
    top: 3px;
    left: 3px;
}
.owl-carousel .owl-dots .owl-dot.active::after{
background: var(--primary-bg);
}
.affiliations-car.owl-carousel .owl-dots .owl-dot::after{
      top: 4px;
} 
.details-university-card {
  background: rgba(255, 255, 255, 1);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

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

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

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

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

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

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

.university-list .university-item .university-name p {
    color: rgba(67, 67, 67, 1);
    line-height: 22px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 45px;
    overflow: hidden;
}
/* end university */
.awards-card {
       padding: 5px;
    box-shadow: 0 0 20px rgb(218 199 153 / 35%);
    border-radius: 10px;
    text-align: center;
    height: 300px;
    border: 1px solid rgb(218 199 153 / 47%);
    background: #f4ca6826;
    position: relative;
    top: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}
.awards-card img{
      width: 100%;
    height: 100%;
    object-fit: scale-down;
    transition: all 0.3s ease;
}
.awards-card:hover{
  border: 1px solid #f4ca68;
  box-shadow: 0 0 30px rgb(218 199 153 / 50%);
  top: -10px;
}
.awards-card:hover img{
  transform: rotate(3deg) scale(1.05);
}
.office-according .accordion-item:first-child {
    border-top: 1px solid rgba(190, 190, 190, 1) !important;
    margin-top: 0;
}
.office-according .accordion-item {
    border: 1px solid rgba(190, 190, 190, 1);
    margin-top: 10px;
    border-radius: 7px;
}
.office-according .accordion-item .accordion-button:not(.collapsed) {
    border-radius: 7px 7px 0 0 !important;
    background: var(--primary-color);
    color: #fff;
}

.office-according .accordion-item .accordion-button:not(.collapsed)::after {
    transform: rotate(-90deg);
    color: #fff;
}
.office-according .accordion-item .accordion-button::after {
    content: '\f078';
    font-family: 'fontAwesome';
    background: none;
    color: rgba(102, 102, 102, 1);
}

.office-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(128, 165, 203, 0.66);
    transition: 0.3s ease;
    overflow: hidden;
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 45fr 30fr 30fr;
    gap: 0px 10px;
    border: 1px solid #0078acb2;
    border-bottom: 3px solid var(--primary-color);
}
.office-card2{
       background: var(--white);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgb(10 79 157 / 15%);
    box-shadow: 0 3px 20px rgb(10 79 157 / 30%);
}
.add-cntnt-img {
        display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.add-cntnt-img .img-card {
      width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    height: 445px;
}
.add-cntnt-img .img-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.add-cntnt-img .img-card .img-location{
  position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    background: var(--primary-color);
    /* right: 0; */
    /* margin: 0 auto; */
    width: fit-content;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: flex-start;
}
.add-cntnt-img .img-card .img-location .icn{
  width: 40px;
  color: #fff;
}
.add-cntnt-img .img-card .img-location .icn i{
  font-size: 30px;
}
.add-cntnt-img .img-card .img-location .txt{
  width: calc(100% - 40px);
  color: #fff;
}
.add-cntnt-img .img-card .img-location h6{
  color: #fff;
      font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.add-cntnt-img .img-card .img-location p{
  margin: 0;
  font-size: 13px;
}
.add-cntnt-img .cntnt{
  padding-right: 20px;
  position: relative;
}
.add-cntnt-img .cntnt::after{
      position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: #056cde26;
    top: 0;
    right: -4px;
}
.add-cntnt-img .cntnt h5{
  color: #091d34;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    padding-bottom: 12px;
}
.add-cntnt-img .cntnt h5::after{
  position: absolute;
    content: '';
    width: 50px;
    height: 5px;
    background: #056cde;
    left: 0;
    bottom: 10px;
    border-radius: 40px;
}
.add-cntnt-img .cntnt ul{
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.add-cntnt-img .cntnt li{
      display: block;
    
}
.add-cntnt-img .cntnt .office-add{
     display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
    border-top: 1px dashed #056cde33;
    padding-top: 20px;
}
.add-cntnt-img .cntnt .office-add .icn{
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
}
.add-cntnt-img .cntnt .office-add .icn img{
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.add-cntnt-img .cntnt .office-add .cntnt2{
  width: calc(100% - 48px);
  padding-left: 12px;
}
.add-cntnt-img .cntnt .office-add.add .icn{
  background: rgb(5 108 222 / 8%);
    border: 1px solid rgb(5 108 222 / 22%);
    box-shadow: 0 1px 7px rgb(5 108 222 / 33%);
}
.add-cntnt-img .cntnt .office-add.phone .icn{
  background: rgb(116 71 213 / 8%);
    border: 1px solid rgb(116 71 213 / 22%);
    box-shadow: 0 1px 7px rgb(116 71 213 / 33%);
}
.add-cntnt-img .cntnt .office-add.email .icn{
      background: rgb(64 174 103 / 8%);
    border: 1px solid rgb(64 174 103 / 22%);
    box-shadow: 0 1px 7px rgb(64 174 103 / 33%);
}
.office-timeing{
      padding: 15px;
    border-radius: 15px;
    border: 1px solid rgb(5 108 222 / 25%);
    box-shadow: 0 3px 7px rgb(5 108 222 / 21%);
    background: #fff;
}
.office-timeing ul{
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.office-timeing li{
      display: flex;
    justify-content: flex-start;
    border-top: 1px dashed #056cde33;
    padding: 12px 0;
}
.office-timeing li:first-child{
  border-top: none;
  padding-top: 0;
}

.office-timeing li:last-child{
  /* border-top: none; */
  padding-bottom: 0;
}
.office-timeing li .icn{
background: rgb(5 108 222 / 8%);
    border: 1px solid rgb(5 108 222 / 22%);
    box-shadow: 0 1px 7px rgb(5 108 222 / 33%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 7px;
    text-align: center;
    line-height: 31px;
    font-size: 18px;
    color: var(--primary-color);
}

.office-timeing li .cntnt{
  width: calc(100% - 48px);
    padding-left: 12px;
}
.office-timeing li .cntnt h5{
  color: var(--primary-color);
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}
.office-timeing li .cntnt p{
      margin: 0;
    padding-top: 3px;
}
.office-timeing li:nth-child(2) .icn{
  color: #f57417;
      background: rgb(245 116 23 / 8%);
    border: 1px solid rgb(245 116 23 / 22%);
    box-shadow: 0 1px 7px rgb(245 116 23 / 33%);
}
.office-timeing li:nth-child(2) .cntnt h5{
  color: #f57417;

}
.office-timeing li:nth-child(3) .icn{
     color: #ee385e;
    background: rgb(238 56 94 / 8%);
    border: 1px solid rgb(238 56 94 / 22%);
    box-shadow: 0 1px 7px rgb(238 56 94 / 33%);
}
.office-timeing li:nth-child(3) .cntnt h5{
  color: #ee385e;
}
.location-map{
  margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 200px;
}
.location-map iframe{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .office-card .office-hvr-img {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: bottom 0.7s ease;
}
.office-card:hover .office-hvr-img {
    bottom: 0;
}
.office-card .color-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgb(10 79 157 / 65%) 0%, rgb(10 79 157 / 88%) 100%);
    transition: bottom 0.7s ease;
}
.office-card:hover .color-overlay {
    bottom: 0;
}
.office-card:hover .office-header h3, .office-card:hover .office-header p, .office-card:hover .office-info li, .office-card:hover .office-info li i {
    color: var(--white);
}
 */
 .office-section {
    width: 100%;
    margin: auto;
    padding: 50px 0;
    
}
.office-section .nav.nav-pills{
      box-shadow: 0 0 10px rgb(5 108 222 / 35%);
    border-radius: 12px 12px 0 0;
}
.office-section .nav.nav-pills .nav-link .icn{
  display: block;
  position: relative;
  z-index: 2;
}
.office-section .nav.nav-pills .nav-link .icn::after{
  position: absolute;
    content: '';
    width: 45px;
    height: 45px;
    background: rgb(10 79 157 / 11%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    border-radius: 50%;
}
.office-section .nav.nav-pills .nav-link .icn img{
  width:45px;
}
.office-section .nav.nav-pills .nav-link .txt{
     display: block;
    color: #091d34;
    font-size: 15px;
    font-weight: 600;
}
.instagram-bg{
  background-color: #e6f2f7;
}
.office-header {
    display: flex;
    gap: 4px 15px;
    flex-direction: row;
    align-items: center;
    transition: 0.3s ease;
    position: relative;
    z-index: 11;
}
.office-cntry-icn img {
    width: 63px;
    height: 63px;
    object-fit: contain;
}
.office-header h3 {
    margin: 0;
    font-size: 20px;
    color: var(--title-color);
    font-weight: 600;
    transition: 0.3s ease;
}
.office-info {
    padding-top: 15px;
    padding-left: 19px;
}
.office-info li {
    font-size: 14px;
    padding-bottom: 13px;
    color: var(--txt-color);
    display: flex;
    position: relative;
    padding-left: 18px;
    line-height: 23px;
    word-break: break-word;
    transition: 0.3s ease;
}
.office-info li i {
    color: var(--primary-color);
    position: absolute;
    top: 6px;
    font-size: 13px;
    left: 0px;
    transition: 0.3s ease;
}
.map-box iframe {
    width: 100%;
    height: 203px;
    border-radius: 10px;
    position: relative;
    z-index: 11;
}
.offic-two-lrg-crd {
    border-right: 1px solid #acbbc1bd;
    padding-right: 15px;
    position: relative;
    z-index: 11;
}
.office-title h3 {
    margin: 0;
    font-size: 20px;
    color: var(--title-color);
    font-weight: 600;
    transition: 0.3s ease;
}
  .instagram-section {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .instagram-section .instagram-media {
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    border-radius: 10px !important;
  }
/* .instagram-section .html-div.xdj266r.x14z9mp.xat24cr.x1lziwak.x9f619.xjbqb8w.x78zum5.x15mokao.x1ga7v0g.x16uus16.xbiv7yw.x1p5oq8j.x64bnmy.xwxc41k.x13jy36j.x1n2onr6.x1plvlek.xryxfnj.x1c4vz4f.xs83m0k.x1q0g3np.xqjyukv.x6s0dn4.x1oa3qoh.x1nhvcw1{
  display: none!important;
} */
 .office-section .nav{
  justify-content: space-between;
    gap: 0;
 }
 .office-section .nav button{
      flex: 1;
    position: relative;
    z-index: 1;
    padding-bottom: 33px;
    padding-top: 13px;
 }
  .office-section .nav button::after{
       position: absolute;
    content: '';
    border-width: 12px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
    bottom: 14px;
    margin-left: -11px;
    display: none;
  }
.office-section .nav button.active{
  background: var(--primary-color);
  border-radius: 12px 12px 0 0 ;
}
.office-section .nav button::before{
 position: absolute;
    content: '';
    width: 1px;
    height: 65%;
    background: #ddd;
    right: -1px;
    top: -6px;
    bottom: 0;
    margin: auto 0;
}
.office-section .nav button:last-child:before{
  display: none;
}
 .office-section .nav button.active::after{
  display: inline-block;
 }
.office-section .nav button.active .icn img{
  filter: brightness(0) invert(1);
}
.office-section .nav button.active .icn::after{
  background: rgb(242 242 243 / 11%)!important;
}
.office-section .nav button.active .txt{
  color: #fff!important;
}
.office-section .tab-content{
      margin-top: -15px;
    z-index: 1;
    position: relative;
}
/*-----whatsapp-------wrap-------start----------*/
.btn-whatsapp-pulse {
  position: fixed;
  bottom: 70px;
  right: 15px;
  width: 48px;
  height: 48px;
  background-color: #1c9b13;
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px;
  z-index: 105;
  margin-right: 6px;
}
.btn-whatsapp-pulse:hover{
  color: #fff;
}
.btn-whatsapp-pulse::after, .btn-whatsapp-pulse::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  background: #1c9b13;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: 1.3s ease-in-out infinite grow;
  animation: 1.3s ease-in-out infinite grow;
}
@keyframes grow {
    0% {
        transform: scale(1, 1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}
/*-----whatsapp-------wrap-------end----------*/
/* start bottom to top button */
.progress-wrap {
  position: fixed;
  right: 18px;
  bottom: 8px;
  height: 43px;
  width: 43px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(178, 170, 211, 0.71);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 1;
  background: #fff;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  content: "\f062";
  font-family: "fontawesome";
  font-weight: 400;
  font-size: 1.10rem;
  color: #056cde;
  position: absolute;
  left: 0;
  top: 0;
  height: 43px;
  width: 43px;
  line-height: 43px;
  text-align: center;
  z-index: 1;
  pointer-events: none;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #056cde;
  stroke-width: 4;
  transition: stroke-dashoffset 10ms linear;
  box-sizing: border-box;
}
/* end bottom to top button */