@charset "UTF-8";
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/**==Typhograhy setion css start==**/

@import url('https://fonts.googleapis.com/css2?family=Leckerli+One&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Pacifico&display=swap');

:root {
  --color-primary: #235D9F;
  --color-secondary: #EB1F26;
  --color-tertiary:  #1C4A7F;
  --color-gradiant: #002676;
  --color-heading: #0B2660;
  --color-text: #333;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-light-blue: #F1F5FF;
  --color-grey: #fafafa;
  --font-text:"Montserrat", sans-serif;
  --font-heading:"Montserrat", sans-serif;
}


body {
  font-family: var(--font-text);
  line-height: 1.4;
  color: var(--color-text);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background-color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  color: var(--color-heading);
  letter-spacing: 0.5;
}

h1 {
  font-size: 38px;
  font-weight: 700;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

h5 {
  font-size: 18px;
  font-weight: 600;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

h6 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 450;
  margin-bottom: 16px;
}
.title_head{
  font-size: 18px
}
a,
a:focus,
a:hover {
  text-decoration: none;
  color: inherit;
  transition: all 0.5s ease;
  outline: none;
}

@media (max-width: 767px) {
  h1 {
    text-align: center;
  }
  h1,
h1 span {
    font-size: 32px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 12px;
  }

  p {
    font-size: 18px;
  }
}
img {
  width: 100%;
  height: 100%;
}

.m-80 {
  margin: 80px 0;
}

.m-60 {
  margin: 60px 0;
}

.m-40 {
  margin: 40px 0;
}

.m-30 {
  margin: 30px 0;
}
.mb-60{
  margin-bottom: 60px;
}
.mb-50{
  margin-bottom: 50px;
}
.mb-40{
  margin-bottom: 40px;
}
.mb-30{
  margin-bottom: 30px;
}
.p-80 {
  padding: 80px 0;
}

.innerpage,
.p-60 {
  padding: 60px 0;
}

.p-40 {
  padding: 40px 0;
}

.p-30 {
  padding: 30px 0;
}

.p-0 {
  padding: 0;
}
.pt-30 {
  padding-top: 30px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-50 {
  padding-top: 50px;
}
.py-50 {
  padding: 50px 0px;
}
.title_section{
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .m-80 {
    margin: 50px 0;
  }

  .m-60 {
    margin: 30px 0;
  }

  .m-40 {
    margin: 20px 0;
  }

  .m-30 {
    margin: 15px 0;
  }
  .mb-60{
    margin-bottom: 30px;
  }
  .mb-50{
    margin-bottom: 25px;
  }
  .mb-40{
    margin-bottom: 20px;
  }
  .mb-30{
    margin-bottom: 15px;
  }
  .p-80 {
    padding: 50px 0;
  }
  .py-50 {
    padding: 35px 0px;
  }

  .innerpage,
.p-60 {
    padding: 30px 0;
  }

  .p-40 {
    padding: 20px 0;
  }

  .p-30 {
    padding: 15px 0;
  }
  .title_section{
    margin-bottom: 20px;
  }
  .pt-30 {
    padding-top: 15px;
  }
  .pt-40 {
    padding-top: 20px;
  }
  .pt-50 {
    padding-top: 25px;
  }
  
}
@media (min-width: 992px) {
  .container-fluid {
    max-width: 100%;
    padding: 0 60px;
  }
 
}
@media (min-width: 1400px) {
  .container-fluid {
    max-width: 100%;
    padding: 0 100px;
  }

  .container {
    max-width: 1380px;
    width: 100%;
  }
}
/**==Typhograhy setion css end==**/
/**== Form CSS OPEN ==**/
form input.form-control,
form textarea.form-control {
  width: 100%;
  border-radius: 4px;
  background: transparent;
  /* height: 50px; */
  padding: 10px 20px;
  outline: none;
  border: 1px solid #ced7e4;
  /* margin: 15px 0; */
}
form input.form-control:focus, form input.form-control:hover,
form textarea.form-control:focus,
form textarea.form-control:hover {
  border: 1px solid #303030;
  outline: none;
  box-shadow: none;
}
form textarea.form-control {
  height: auto;
  padding: 10px 20px;
  min-height: 120px;
}
form button {
  margin-top: 30px;
}
form button i {
  margin-left: 10px;
}
.form-select {
  width: 100%;
  border-radius: 4px;
  padding: 10 20px;
  outline: none;
  border: 1px solid #ced7e4;
}

.form-label {
  font-size: 14px;
  margin: 0;
  font-weight: 500;
  color: var(--color-tertiary);
}
.form-select:focus,
.form-select:hover {
  border: 1px solid #939394;
  outline: none;
  box-shadow: none;
}
/**== Form CSS CLOSE ==**/
/**== Commoon Css Open-- ==**/
.bg-grey {
  background: var(--color-grey);
}
.bg-white {
  background: var(--color-white);
}
.bg-light-blue {
  background: var(--color-light-blue);
}
.bg-img{
  background-image: url(../img/Map-w.png);
  background-size: cover;
  background-position: center;
}
.bg-img2{
  background-image: url(../img/Travel.png);
  background-size: cover;
  background-position: center;
}
/* .btn,
input[type=submit],
button {
  transition: all 0.5s ease-in-out;
  border-radius: 5px;
  padding: 12px 40px;
  width: auto;
  font-size: 16px;
  line-height: 1.5;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
  outline: none;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
} */

/* .btn:hover,
input[type=submit]:hover,
button:hover {
  background: var(--color-secondary);
  color: #fff;
  transform: scale(1.1); 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); 
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
} */


.btn.btn-mt,
input[type=submit].btn-mt,
button.btn-mt {
  margin-top: 30px;
}
.btn-white{
  background: var(--color-white);
  color: var(--color-secondary);
}
.btn-white:hover{
  background: var(--color-secondary);
  color: var(--color-white);
}
.btn_transparent,
.btn_transparent_white{
  display: inline-block;
  color: var(--color-heading);
  font-size:20px;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}
.btn_transparent:hover,
.btn_transparent_white:hover{
  color: var(--color-secondary);
}
.btn_transparent_white,
.btn_transparent_white:hover{
  color: var(--color-white);
}
.btn_transparent i,
.btn_transparent_white i{
  margin-left: 10px;
}
.btn_transparent:hover i,
.btn_transparent_white:hover i{
  margin-left: 15px;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.icon li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
}
ul.icon li:before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  left: 0;
  top: 2px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  font-size: 12px;
  border-radius: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  line-height: 20px;
}

ul.icon_list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  color: var(--color-text);
}
ul.icon_list li:before {
  position: absolute;
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  left: 0;
  top: 2px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  font-size: 14px;
  border-radius: 100%;
  color: var(--color-text);
  text-align: center;
  line-height: 20px;
}
ul.icon_list li:hover{
  padding-left: 30px;
  color: var(--color-secondary);
}
ul.icon_list li:hover:before{
  color: var(--color-secondary);
}

ul.social_icons {
  padding: 0;
  margin: 0;
}
ul.social_icons li {
  display: inline-block;
}
ul.social_icons li.facebook a {
  background: #385da9;
}
ul.social_icons li.twitter a {
  background: #3cf;
}
ul.social_icons li.pinterest a {
  background: #bd081c;
}
ul.social_icons li.linkedin a {
  background: #0073b1;
}
ul.social_icons li.instagram a {
  background: #D53F7F;
}
ul.social_icons li.youtube a {
  background: #FF0000;
}
ul.social_icons li a {
  display: inline-block;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  transition: all 0.3s;
  border-radius: 4px;
}
ul.social_icons li a i {
  color: #fff;
  font-size: 13px;
}
ul.social_icons li a:hover {
  background: var(--color-primary);
  transform: translateY(-5px);
}

.icon_box_left{
  display: flex;
  column-gap: 20px;
  margin-bottom: 30px;
  border-bottom: 1px dashed var(--color-secondary);
}
.icon_box_left:last-child{
  border-bottom: none;
}
.icon_box_left .icon_img {
  min-width:80px;
}
.icon_box_left .icon_img img{
  width:80px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 100%;
  padding: 5px;
  background: var(--color-light-blue);

}
.icon_box_left .icon_text h3{
  margin-bottom: 10px;
  color: var(--color-secondary);
}


.slick-dots {
  text-align: center;
  position: relative;
  width: 100%;
  }
 .slick-dots li {
      display: inline-block;
      margin: 0px;
      width:40px;
  }
 .slick-dots li button {
      text-indent: -99999px;
      border: none;
      padding: 0;
      margin-left: 10px;
      z-index: 1;
      cursor: pointer;
      background: no-repeat;
      transition: .3s;
      background-color:#b7b7b7;
      height: 6px;
      width: 30px;
      border-radius: 5px;
  }
  
.slick-dots .slick-active button {
  border-radius: 5px;
       background-color:var(--color-primary)
  }
/**Back to Top Css Open**/
.rn-progress-parent {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px #ccc;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.rn-progress-parent.rn-backto-top-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.rn-progress-parent:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 600;
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--color-primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.rn-progress-parent:hover:after {
  color: var(--color-primary);
}
.rn-progress-parent svg path {
  fill: none;
}
.rn-progress-parent svg.rn-back-circle path {
  stroke: var(--color-primary);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/**Back to Top Css Close**/
/**==Sal css start==**/
[data-sal] {
  transition-duration: 0.2s;
  transition-delay: 0s;
  transition-duration: var(--sal-duration, 0.2s);
  transition-delay: var(--sal-delay, 0s);
  transition-timing-function: var(--sal-easing, ease);
}

[data-sal][data-sal-duration="200"] {
  transition-duration: 0.2s;
}

[data-sal][data-sal-duration="250"] {
  transition-duration: 0.25s;
}

[data-sal][data-sal-duration="300"] {
  transition-duration: 0.3s;
}

[data-sal][data-sal-duration="350"] {
  transition-duration: 0.35s;
}

[data-sal][data-sal-duration="400"] {
  transition-duration: 0.4s;
}

[data-sal][data-sal-duration="450"] {
  transition-duration: 0.45s;
}

[data-sal][data-sal-duration="500"] {
  transition-duration: 0.5s;
}

[data-sal][data-sal-duration="550"] {
  transition-duration: 0.55s;
}

[data-sal][data-sal-duration="600"] {
  transition-duration: 0.6s;
}

[data-sal][data-sal-duration="650"] {
  transition-duration: 0.65s;
}

[data-sal][data-sal-duration="700"] {
  transition-duration: 0.7s;
}

[data-sal][data-sal-duration="750"] {
  transition-duration: 0.75s;
}

[data-sal][data-sal-duration="800"] {
  transition-duration: 0.8s;
}

[data-sal][data-sal-duration="850"] {
  transition-duration: 0.85s;
}

[data-sal][data-sal-duration="900"] {
  transition-duration: 0.9s;
}

[data-sal][data-sal-duration="950"] {
  transition-duration: 0.95s;
}

[data-sal][data-sal-duration="1000"] {
  transition-duration: 1s;
}

[data-sal][data-sal-duration="1050"] {
  transition-duration: 1.05s;
}

[data-sal][data-sal-duration="1100"] {
  transition-duration: 1.1s;
}

[data-sal][data-sal-duration="1150"] {
  transition-duration: 1.15s;
}

[data-sal][data-sal-duration="1200"] {
  transition-duration: 1.2s;
}

[data-sal][data-sal-duration="1250"] {
  transition-duration: 1.25s;
}

[data-sal][data-sal-duration="1300"] {
  transition-duration: 1.3s;
}

[data-sal][data-sal-duration="1350"] {
  transition-duration: 1.35s;
}

[data-sal][data-sal-duration="1400"] {
  transition-duration: 1.4s;
}

[data-sal][data-sal-duration="1450"] {
  transition-duration: 1.45s;
}

[data-sal][data-sal-duration="1500"] {
  transition-duration: 1.5s;
}

[data-sal][data-sal-duration="1550"] {
  transition-duration: 1.55s;
}

[data-sal][data-sal-duration="1600"] {
  transition-duration: 1.6s;
}

[data-sal][data-sal-duration="1650"] {
  transition-duration: 1.65s;
}

[data-sal][data-sal-duration="1700"] {
  transition-duration: 1.7s;
}

[data-sal][data-sal-duration="1750"] {
  transition-duration: 1.75s;
}

[data-sal][data-sal-duration="1800"] {
  transition-duration: 1.8s;
}

[data-sal][data-sal-duration="1850"] {
  transition-duration: 1.85s;
}

[data-sal][data-sal-duration="1900"] {
  transition-duration: 1.9s;
}

[data-sal][data-sal-duration="1950"] {
  transition-duration: 1.95s;
}

[data-sal][data-sal-duration="2000"] {
  transition-duration: 2s;
}
[data-sal][data-sal-duration="2500"] {
  transition-duration: 2.5s;
}
[data-sal][data-sal-duration="3000"] {
  transition-duration: 3s;
}

[data-sal][data-sal-delay="50"] {
  transition-delay: 0.05s;
}

[data-sal][data-sal-delay="100"] {
  transition-delay: 0.1s;
}

[data-sal][data-sal-delay="150"] {
  transition-delay: 0.15s;
}

[data-sal][data-sal-delay="200"] {
  transition-delay: 0.2s;
}

[data-sal][data-sal-delay="250"] {
  transition-delay: 0.25s;
}

[data-sal][data-sal-delay="300"] {
  transition-delay: 0.3s;
}

[data-sal][data-sal-delay="350"] {
  transition-delay: 0.35s;
}

[data-sal][data-sal-delay="400"] {
  transition-delay: 0.4s;
}

[data-sal][data-sal-delay="450"] {
  transition-delay: 0.45s;
}

[data-sal][data-sal-delay="500"] {
  transition-delay: 0.5s;
}

[data-sal][data-sal-delay="550"] {
  transition-delay: 0.55s;
}

[data-sal][data-sal-delay="600"] {
  transition-delay: 0.6s;
}

[data-sal][data-sal-delay="650"] {
  transition-delay: 0.65s;
}

[data-sal][data-sal-delay="700"] {
  transition-delay: 0.7s;
}

[data-sal][data-sal-delay="750"] {
  transition-delay: 0.75s;
}

[data-sal][data-sal-delay="800"] {
  transition-delay: 0.8s;
}

[data-sal][data-sal-delay="850"] {
  transition-delay: 0.85s;
}

[data-sal][data-sal-delay="900"] {
  transition-delay: 0.9s;
}

[data-sal][data-sal-delay="950"] {
  transition-delay: 0.95s;
}

[data-sal][data-sal-delay="1000"] {
  transition-delay: 1s;
}

[data-sal][data-sal-easing=linear] {
  transition-timing-function: linear;
}

[data-sal][data-sal-easing=ease] {
  transition-timing-function: ease;
}

[data-sal][data-sal-easing=ease-in] {
  transition-timing-function: ease-in;
}

[data-sal][data-sal-easing=ease-out] {
  transition-timing-function: ease-out;
}

[data-sal][data-sal-easing=ease-in-out] {
  transition-timing-function: ease-in-out;
}

[data-sal][data-sal-easing=ease-in-cubic] {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

[data-sal][data-sal-easing=ease-out-cubic] {
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-sal][data-sal-easing=ease-in-out-cubic] {
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-sal][data-sal-easing=ease-in-circ] {
  transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

[data-sal][data-sal-easing=ease-out-circ] {
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

[data-sal][data-sal-easing=ease-in-out-circ] {
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

[data-sal][data-sal-easing=ease-in-expo] {
  transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

[data-sal][data-sal-easing=ease-out-expo] {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

[data-sal][data-sal-easing=ease-in-out-expo] {
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

[data-sal][data-sal-easing=ease-in-quad] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-sal][data-sal-easing=ease-out-quad] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-sal][data-sal-easing=ease-in-out-quad] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-sal][data-sal-easing=ease-in-quart] {
  transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

[data-sal][data-sal-easing=ease-out-quart] {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-sal][data-sal-easing=ease-in-out-quart] {
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

[data-sal][data-sal-easing=ease-in-quint] {
  transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

[data-sal][data-sal-easing=ease-out-quint] {
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

[data-sal][data-sal-easing=ease-in-out-quint] {
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

[data-sal][data-sal-easing=ease-in-sine] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-sal][data-sal-easing=ease-out-sine] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-sal][data-sal-easing=ease-in-out-sine] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-sal][data-sal-easing=ease-in-back] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-sal][data-sal-easing=ease-out-back] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-sal][data-sal-easing=ease-in-out-back] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/**
  * Animations
  */
[data-sal|=fade] {
  opacity: 0;
  transition-property: opacity;
}

[data-sal|=fade].sal-animate,
body.sal-disabled [data-sal|=fade] {
  opacity: 1;
}

[data-sal|=slide] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-sal=slide-up] {
  transform: translateY(20%);
}

[data-sal=slide-down] {
  transform: translateY(-20%);
}

[data-sal=slide-left] {
  transform: translateX(20%);
}

[data-sal=slide-right] {
  transform: translateX(-20%);
}

[data-sal|=slide].sal-animate,
body.sal-disabled [data-sal|=slide] {
  opacity: 1;
  transform: none;
}

[data-sal|=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-sal=zoom-in] {
  transform: scale(0.5);
}

[data-sal=zoom-out] {
  transform: scale(1.1);
}

[data-sal|=zoom].sal-animate,
body.sal-disabled [data-sal|=zoom] {
  opacity: 1;
  transform: none;
}

[data-sal|=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-sal=flip-left] {
  transform: perspective(2000px) rotateY(-91deg);
}

[data-sal=flip-right] {
  transform: perspective(2000px) rotateY(91deg);
}

[data-sal=flip-up] {
  transform: perspective(2000px) rotateX(-91deg);
}

[data-sal=flip-down] {
  transform: perspective(2000px) rotateX(91deg);
}

[data-sal|=flip].sal-animate,
body.sal-disabled [data-sal|=flip] {
  transform: none;
}

/**Sal Css Close**/
/**== Header Css Open ==**/

.header .stellarnav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stellarnav .menu-toggle span.bars span {
  background: var(--color-primary);
}
.header .btn-book {
  display: block;
  padding: 15px 20px;
}
.header-nav {
  display: flex;
  justify-content: space-between;
}
.header .logo a img {
  width: 180px;
  @media(max-width:767px){
      width: 120px;
  }
}
.header.header-sticky {
  transition: all 0.5s ease-in;
  max-width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  background-color: #ffffff;
  width: 100%;
  animation: headerSticky 0.95s ease forwards;
  z-index: 9999;
  padding: 0px;
}
.header.header-sticky.sticky {
  animation: headerSticky 0.95s ease forwards;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.header.header-sticky.sticky .logo a {
  height: 80px;
  line-height: 80px;
}

.stellarnav li a{
  color:var(--color-heading);
  font-weight: 450;
  font-size: 16px;
}
.stellarnav>ul>li>a {
  padding: 10px;
}
.stellarnav>ul>li:last-child {
  margin-left: 20px;
}
@media(min-width:992px){
  .stellarnav>ul>li>a {
    position: relative;
  }
.stellarnav li a:hover,
.stellarnav li a.active{
  color: #000000;
  position: relative;
}
.stellarnav li ul li a:hover,
.stellarnav li ul li a.active{
  background-color: var(--color-primary);
  color: white;
  position: relative;
}
/* .stellarnav ul>li>a:before{
  content: "";
  position: absolute;
  top: 0;
  left:15%;
  margin: auto;
  background-color: var(--color-primary);
  height: 3px;
  width: 70%;
  transform-origin: right center;
  -webkit-transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -khtml-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: transform .55s cubic-bezier(.37, .31, .2, .85);
  -khtml-transition: transform 0.55s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -moz-transition: transform .55s cubic-bezier(.37, .31, .2, .85);
  -ms-transition: transform .55s cubic-bezier(.37, .31, .2, .85);
  -o-transition: transform .55s cubic-bezier(.37, .31, .2, .85);
  transition: transform .55s cubic-bezier(.37, .31, .2, .85);
}
.stellarnav li a:hover:before,
.stellarnav li a.active:before{
  transform-origin: left center;
  -khtml-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
} */
}
.stellarnav li.has-sub>a:after{
  border-top: 6px solid;
}
.stellarnav ul ul{
  background: #fff;
  border-bottom: 2px solid var(--color-primary);
  box-shadow: 0 3px 25px 0 rgba(43, 52, 59, .1), 0 0 0 rgba(43, 52, 59, .1) inset;
  border-radius:7px;
  box-shadow: 0px 3px 20px 0px #d9d9d9;
  overflow: hidden;
}
.stellarnav ul ul li{
  border-bottom: 1px solid #eee;
}
.stellarnav ul ul li:last-child{
  border-bottom: none;
}
.stellarnav.mobile.left>ul,
.stellarnav.mobile ul ul{
  background: var(--color-primary);
  width: 100%;
}
.stellarnav.mobile a{
  color:var(--color-white);
}
.stellarnav.mobile ul li a{
  border-bottom: 1px solid #ffffffb6;
}
.stellarnav .icon-close:before,
.stellarnav .icon-close:after,
.stellarnav a.dd-toggle .icon-plus:after, 
.stellarnav a.dd-toggle .icon-plus:before{
  border-color: var(--color-white);
}
@keyframes continuous-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.has-sub .stellarnav.mobile.left>ul, .stellarnav.mobile ul ul {
  box-shadow: none;
}
.has-sub .stellarnav.mobile.left>ul li a, .stellarnav.mobile ul ul li a {
  padding-left: 35px;
}
.menu-list {
  justify-content: right !important;
  gap: 15px;  
}
@media (max-width:767px){
  .header .btn-book {
    padding: 10px 25px;
	display: inline-flex;
	margin-top: 10px;
  }
  .menu-list {
    gap: 0px;  
  }
}
.btn-book {
  padding: 14px 29px;
  border-radius: 10px;
  background: var(--linear-btn, linear-gradient(84deg, #2262AA 28.92%, #2750A1 51.68%, #29489C 63.21%, #2C3E97 73.74%));
  box-shadow: 0px 0px 20px 0px rgba(128, 128, 128, 0.60);
  color: white !important;
  position: relative;
  overflow: hidden;
}

.btn-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-30deg);
  transition: none;
  opacity: 0;
}

.btn-book:hover::before {
  opacity: 1;
  animation: shine-hover 0.7s linear;
}

@keyframes shine-hover {
  from {
    left: -150%;
  }
  to {
    left: 150%;
  }
}


.uni {
  color: var(--color-primary);
  font-weight: 600;
}
.advisor {
  color: var(--color-secondary);
  font-weight: 600;
}
.ad-container {
  padding: 0px 40px;
}


@media(max-width:767px){
	.services .ad-container {
	padding: 0px 10px;
}
}
.text-gradient {
  background: var(--Mission-text, linear-gradient(86deg, #3949AB 37.73%, #824682 51.34%, #E04359 79.88%, #EC272E 86.84%, #D1080F 98.53%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.t-bold {
  font-weight: 700;
}
.list-bold {
  font-weight: 600;
}
.breadcrumb-ad {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background: var(--linear-btn, linear-gradient(84deg, #2262AA 28.92%, #2750A1 51.68%, #29489C 63.21%, #2C3E97 73.74%));
}
.breadcrumb-ad h1 {
  color: white;
  margin-bottom: 10px;
}
.breadcrumb-ad i {
  margin-right: 5px;
  font-size: 14px !important;
}
.breadcrumb-ad span {
  font-weight: 400;
}
@media (max-width: 767px) {
  .ad-container {
    padding: 0px 10px;
  }
}


/** header css starts here **/

header img {
  padding: 18px 0px;
  width: 60%;
}
header .nav-list {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}

header .nav-list .nav-list-items a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.hamberger-menu {
  display: none;
}

@media (max-width: 767px) {
  .nav-list-items {
    display: none;
  }
  .hamberger-menu {
    display: block;
  }
}
/** header css ends here**/


/** hero section css starts here**/
 .highlight {
            background-color: rgba(255,255,255,0.86);
            padding: 2px 7px;
            border-radius: 5px;
			text-shadow: none;
        }
.hero-section {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; 
  overflow: hidden; 
  z-index: 0;
    @media (max-width: 767px) {
        height: 75vh;
}
}

.hero-section .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 3;
  width: 100% !important;
}

.hero-section .hero-content h1 {
  width: 40%;
  color: white;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0px 1px 3px rgb(0 0 0 / 61%);
}
.hero-section .hero-content p {
  width: 55%;
  color: white;
  font-weight: 500;
  text-align: center;
  font-size: 17px;
  text-shadow: 0px 1px 3px rgb(0 0 0 / 61%);
}
.hero-section .btn-book {
  font-size: 18px;
    box-shadow: 0px 0px 20px rgba(255,255,255,0.2);

}
.hero-section .btn-book:hover {
  color: white;
}
/*@media (max-width: 767px) {*/
/*  .hero-section {*/
/*    height: 550px;*/
/*  }*/
/*}*/
/** hero section css ends here**/


/**mission partner css starts here**/

.mission-partners .mission {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mission-partners .mission p {
  width: 60%;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
}


/**mission partner css ends here**/



/**partner card section css ends here**/
.partner-card-section {
  padding: 20px 0px 50px 0px;
}

.partner-card-item {
  border-radius: 10px;
  background: #FAFAFA;
  box-shadow: 0px 3px 7px 0px #C7C7C7;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partner-card-item:hover {
  box-shadow: 4px 6px 15px rgba(200, 200, 200, 1); 
  transform: scale(1.01);
  cursor: pointer;
}

.partner-img-container {
  height: 350px;
  overflow: hidden;
  display: flex;
  align-content: center;
  justify-content: center;
}
.partner-img-container img {
 object-fit: cover;
  object-position: top;
  width:100%;
  height: 100%;
}
.partner-card-item .partner-content {
  padding: 20px 50px 45px 50px;
}
.partner-content h3 {
  text-align: center;
  font-weight: bold;
  color: var(--color-tertiary);
  font-size: 26px;
  padding: 0px 0px 25px 0px;
  margin: 0;
}
.partner-content > h4 {
  margin-bottom: 10px;
}
.service-details {
	padding: 5px 50px 20px 50px;
}
.partner-content .benefit-list{
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 18px;
  margin-bottom: 35px;
  margin-left: 24px;
  list-style-type: square;
}
.service-details .benefit-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 18px;


  margin-left: 24px;
  list-style-type: square;
}
.service-details .benefit-list .benefit-item:first-child {
  display:none;
}
.partner-content .steps-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 18px;
  margin-bottom: 30px;
}
.partner-content li i{
  margin-right: 3px;
}
.partner-btn-container {
  display: flex;
  justify-content: center;
  font-size: 18px;
}
@media(max-width:767px){
  .partner-card-item .partner-content {
    padding: 10px 20px 40px 20px;
  }
  .partner-img-container {
    height: 250px;
    overflow: hidden;
  }
  .partner-content h3 {
    padding: 20px 0px 25px 0px;
}
.service-details {
	padding: 0px 20px 20px 20px;
	padding: 0px 20px 20px 20px;
}
.mission-partners .mission p {
  padding: 0px 10px;
  font-size: 18px;
}

}
@media(min-width:1400px){
	.partner-img-container {
  height: 450px;
}
}
/**partner card section css ends here**/

/** services section css starts here**/
.our-impact {
	width: 1000px;
	margin: auto;
	margin-bottom: 50px;
}
}
.services {
  padding: 20px 0px 50px 0px;
  background-color: var(--color-light-blue);
}
.services .mission {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}
.services .mission p {
  width: 95%;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
}

.services .service-card {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 2px 3px 7px rgba(199, 199, 199, 1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 4px 6px 15px rgba(200, 200, 200, 1); 
  transform: scale(1.01);
  cursor: pointer;
}

.services .service-card .service-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0px;
}
.service-card .title {
  background-color: #4583D0; 
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card .title h3 {
  color: white;
  padding: 15px 10px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin: 0;
}

.service-img img {
	/**object-fit: cover;
	height: 140px;**/
	width: 100%;
}
.service-details p {
  font-size: 16px;
  font-weight: 515;
  padding: 10px 20px;
  text-align: center;
}
.service-btn {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
}
.benefit-item span {
  margin-left: 5px;
}
.steps-item span {
  margin-left: 5px;
}
.counter-number {
	font-size: 36px;
	font-weight: 700;
}
.counter-text {
	font-size: 18px;
    line-height: 1.3;
    font-weight: 450;
}
@media (max-width:767px){
  .service-card .title {
    padding: 0px 70px;
  }
  .service-details p {
    padding: 0px 20px 20px 20px;
	font-size: 18px;
  }
  .service-card .title h3 {
  padding: 15px 10px;
  font-size: 20px !important; 
  
}
.services .mission p {
  font-size:18px;
}


.our-impact {
	width: 100%;
	margin: auto;
	margin-bottom: 50px;
}
}
/** services section css ends here**/

/** partner listing css starts here **/

.partner-listing h3 {
  text-align: center;
}
.partner-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.partner-list-item {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5px solid #FAFAFA;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.2);
  border-radius: 10px;
  margin: 10px;
  overflow: hidden;
}
.partner-list-item img {
  object-fit: contain;
}

/** partner listing css ends here **/



/** contact us css starts here **/


.contact-card {
  box-shadow: 0px 3px 10px 0px #C7C7C7;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.dropdown-section {
  padding: 40px 0px 40px 0px;
  background-color: var(--color-light-blue);
}

.contact-card:hover {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 3px 15px 0px #b1b1b1;
}
.contact-card .image-container {
  height: 200px;
  display: flex;
  overflow: hidden;

}
.contact-card .image-container img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}
.contact-card:hover .image-container img {
  transform: scale(1.05);
}
.contact-card .person-details {
  padding: 10px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-card .person-details h3 {
  margin: 0;
  padding: 10px 0px 5px 0px;
  font-size: 20px;
  text-align: center;
}
.contact-card .person-details h6 {
  margin: 0;
  padding: 0px 0px 10px 0px;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}
.contact-card .person-details .btn-book {
  margin: 20px 0px 20px 0px;  
}

.contact-card .person-details a i {
  color: green;
  font-size: 18px;
  
}
.contact-card .person-details a span {
  background: var(--Mission-text, linear-gradient(86deg, #3949AB 37.73%, #824682 51.34%, #E04359 79.88%, #EC272E 86.84%, #D1080F 98.53%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.contact-card .person-details a span:hover::after {
    content: '';
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--primary-color);
}
@media(max-width:767px){
  .contact-card {
    margin-bottom: 40px;
  }
  .contact-card .image-container {
    height: 280px;
  }
.services .service-card .service-img {
	height: 100%;
}
.services .mission p {
  font-size:18px;
}

}



/** contact us css ends here **/



/** single service section css starts here **/

.service .service-title h2 {
  text-align: center;
}
.service-title p {
  text-align: center;
  width: 50%;
  margin: auto;
}
.features-div {
  padding-top: 30px;
}
.features-card {
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 2px 3px 7px rgba(199, 199, 199, 1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
.features-card:hover {
  box-shadow: 4px 6px 15px rgba(200, 200, 200, 1);
    transform: scale(1.01);
    cursor: pointer;
}
.features-card .feature-img {
  height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
}
.features-div .btn-container {
  padding: 0;
  margin-top: 40px;
}
.ai-powered-card-section .btn-container {
  padding: 0;
  margin-top: auto;
}
.features-card .feature-img img {
  width: 60px;
  object-fit: contain;
}
.ai-powered-card-section .features-card .feature-img img {
  width: 190px;
  object-fit: contain;
}
.feature-title {
  background-color: #4583D0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-title h6 {
  font-size: 18px;
  margin: 0;
  padding: 10px 20px;
  color: white;
}
.feature-details p {
  font-size: 16px;
  padding: 10px;
}

.btn-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 40px;
}


@media(max-width:767px) {
  .features-card {
    margin-bottom: 30px;
  }
  .feature-title h6 {
    padding: 10px;
  }
  .btn-container {
    padding: 15px 0px 30px 0px;
  }
  .features-div .btn-container {
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
  }

}
/** single service section css ends here **/



/** key benefit section css starts here **/
.key-benefits {
  background-color: var(--color-light-blue);
  padding: 50px 0px;
}
.key-benefits h2 {
  text-align: center;
}
.key-benefits .row {
  padding: 50px 0px 0px 0px;
}
.benefit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.benefit img {
  width: 50px;
}
.benefit h5 {
  margin: 0;
  padding: 10px 0px;
  color: var(--color-tertiary)
}
.benefit p {
  font-size: 16px;
}

@media (max-width:767px) {
  .benefit img {
    width: 40px;
  }
}

/** key benefit section css starts here **/

/**Partner page css starts here**/

.partner-intro {
  padding-top: 50px;
}
.partner-intro h4 {
  color: var(--color-tertiary);
}
.partner-img-con {
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
}

.partner-img-con img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.partner-intro-list {
  display: flex;
  flex-direction: column;
  list-style-type: disc; 
  padding-left: 20px; 
  gap: 5px;
}
.partner-intro-list li p {
  margin: 0;
}
/**why us css starts**/
.why-us {
	background-color: #F7F7F7;
}
.why-card {
	height: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.why-card:hover {
    transform: translateY(-5px);
}
.why-card h3 {
	font-size: 24px;
	
}
.why-card p {
	font-size: 16px;
}
.why-card img {
    width: 80px;
}

/**why us css CLOSES**/
/**services offer css STARTS**/
.services-offer-card {
	height: 100%;
	background-color: #F7F7F7;
border: 1px solid #F5F5F5;
	padding: 30px;
	border-radius: 10px;
}
.services-offer-card h3, .services-offer-card p {
	text-align: left;
}
.services-offer-card img {
	width: 50px;
}
/**services offer css CLOSES**/

/**recruitment step section css STARTS**/
.recruitment-card {
	padding: 20px;
	height: 100%;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
border: 0.5px solid #F3F3F3;
    transition: transform 0.3s ease-in-out;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.recruitment-card img {
	width: 80px;
	margin-bottom: 10px;
}
.recruitment-card .recruitment-btn {
	margin-top: auto;	
}
.recruitment-card .recruitment-btn a {
	color: navy;
	text-decoration: underline;
	font-size: 18px;
	font-weight: 600;
}
/**recruitment step section css CLOSES**/


.call-to-action {
  height: 260px;
background: radial-gradient(circle, #DCE5FA, #C8D6F5, #A1B6D6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.call-to-action h3 {
  text-align: center;
  margin: 0;
  padding: 0px 0px 20px 0px;
}
.call-to-action p {
  text-align: center;
  max-width: 90%; 
}

.cta-btn-con {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}
.cta-btn-con {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  font-size: 18px;
}
.get-started {
  position: relative;
  /* padding: 50px 10px; */
  height: 280px;
  text-align: center;
  background-image: url('../img/footer-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.get-started .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 21, 58, 0.91);
  display: flex;
  justify-content: center;
  align-items: center;
}

.get-started .container-fluid {
  position: relative;
  z-index: 1; 
}

.get-started p {
  width: 60%;
  text-align: center;
  margin: auto;
}
.get-started p, .get-started h2 {
 color: white;
}
.get-started h2 {
 margin-top: 10px !important;
font-weight: 700 !important;
}

.get-started-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-size: 18px;
}
.get-started-btn .btn-book {
  box-shadow: 0px 0px 20px 0px rgba(161, 161, 161, 0.6);
}

@media(max-width:767px){
  .call-to-action {
    padding: 0px 10px;
  }
  .partner-img-con {
    height: 350px;
  }
  .partner-intro {
    padding-top: 25px;
  }
  .partner-intro h4 {
    padding-top: 10px;
  }
  .get-started {
    height: 350px;
  }
}

/**Partner page css ends here**/

/**Testimonial css starts here**/
.partner-testimonial {
  padding: 50px 0px;
}
.partner-testimonial .testimonial-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.testimonial-title p{
  width: 50%;
}
.testimonial-slider {
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.testimonial-card {
  display: inline-flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.testimonial-card .partner-img {
  border-radius: 50%;
  width: 80px;
  overflow: hidden;
}
.testimonial-card h4 {
  margin: 0;
  padding: 10px 0px 5px 0px;
}
.partner-type {
  margin-bottom: 10px;
  font-style: italic;
  color: var(--color-tertiary);
  font-weight: 500;
}
.testimonial-card .partner-img img {
  object-fit: cover;
}
.testimonial-card .quote {
  width: 50px !important;
}
.testimonial-card p {
  width: 60%;
}
@media(max-width:767px) {
  .partner-testimonial {
    padding: 25px 0px;
  }
}
/**Testimonial css ends here**/







/** footer section css starts here**/

footer  {
  width: 100%;
  background-image: url("../img/f-bg.png");
  position: relative; 
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1; 
  padding: 50px 0px 20px 0px;
  color: white;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
footer .footer-content {
  position: relative; 
  z-index: 3; 
  padding-bottom: 20px;
}

footer h4 {
  font-weight: 600;
  font-size: 21px;
  color: white;
}
footer hr {
  color: white;
}
footer .footer-content {
  z-index: 3;
  padding-bottom: 30px;
}

footer .socials {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 20px;
}
footer .socials li i {
  font-size: 28px;
}
footer .btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
  font-size: 15px;
  font-weight: 350;
  padding: 10px 20px;
  margin-top: 10px;
  box-shadow: 0px 1px 3px rgb(0 0 0 / 23%);
}
footer a {
  font-size: 16px;
}
footer .copyright .right-text {
  display: flex;
  justify-content: end;
  width: 100% !important;
}
footer .footer-content p {
  width: 70%;
  font-size: 17px;
}
footer hr {
  position: relative; 
  z-index: 3; 
  height: 1px !important;
  color: white;
}
footer .copyright p {
  font-size: 16px;
  position: relative; 
  z-index: 3; 
  padding: 5px 0px;
  display: inline-flex;
  width: fit-content !important;
  margin: 0;
}
footer .copyright .education-asia-tag {
  font-weight: bold;
  margin-left: 10px;
}
@media (max-width: 767px){
  footer .copyright .right-text {
  justify-content: start;
    padding: 2px 0px;
  }
  footer .copyright .left-text {
	  margin-bottom: 0;
  }
  footer .btn-book {
    display: inline-flex;
    
  }
}
.quick-link-container {
	display: flex;
	flex-direction: row;
	gap: 15px;
	width: 80%;
}

.quick-link-container ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}
.quick-link-container ul li::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free"; 
    font-weight: 800; 
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 14px;
}
@media(max-width:767px){
	.quick-link-container {
	display: flex;
	flex-direction: row;
	gap: 15px;
	width: 100%;
}
}

/** footer section css ends here**/

/**internation payment css here**/
 .payment-card {
        display: flex;
        flex-direction: column;
        border: none;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .payment-card .card-img-top {
        height: 200px;
        object-fit: cover;
        width: 100%;
    }
    .payment-card .card-body {
        flex-grow: 1;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

 .contact-section {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        background-color: #f8f9fa;
    }
    .contact-form {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        max-width: 500px;
        width: 100%;
    }
	


/**health insurance page css here**/
  .insurance-contact-section {
        display: flex;
        justify-content: center;
        align-items: center;
		background-color: #E7EEFF;
		padding: 50px 10px;
    }
    .insurance-contact-form {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        max-width: 500px;
        width: 100%;
    }
/** @override css paragraph and heading width 100% in mobile devices**/
.services-offer-card .image-box {
justify-content: left;}
.image-box {
	height: 80px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.image-box img {
	object-fit: cover;
}
.white-label-img {
	display:flex;
	justify-content: center;
	align-items: center;
	
}
.white-label-img img {
	width: 40%;
	border-radius: 7px;
}
.white-label{
	padding: 10px;
}
.insurance-contact-form .btn-book {
	text-align: center;
	margin-top: 20px;
	font-weight: 500;
border: none;
}
.insurance-card {
	box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
	border-radius: 10px;
			overflow: hidden;
			display: block;
}
.insurance-content {
padding: 20px;
}
@media (max-width:767px){
	h1,h2,h3,h4,h5,h6,p { 
	width: 100% !important;}
	.white-label-img img {
width: 90%;
}
 .insurance-img {
	height: 170px;
	width: 100%;
overflow: hidden;
}
.insurance-img img {
    width: 100% !important;
}
  .insurance-contact-section {
        display: flex;
        justify-content: center;
        align-items: center;
padding: 50px 20px;
    }
.payment .insurance-img {
height: 200px !important;
width: 100%;}
}
}
.hover-underline {
  text-decoration: none;
  transition: all 0.3s ease;
}
.hover-underline:hover {
  text-decoration: underline;
}
.body-content {
    font-family: "Montserrat", sans-serif !important;
}
.body-content ul {
    list-style: disc !important;
    list-style-position: inside;
    margin-left: 24px;
}

/**slider css **/
.hero-section {
  position: relative;
  
}

.hero-swiper,
.hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
  padding: 0 10px;
  margin-top: 80px;
  @media (max-width: 767px) {
      margin-top: 20px;
  }
}
.my-swiper .swiper-slide {
    height: 380px !important;
}
.my-swiper .swiper-slide img {
    border-radius: 10px;
    object-fit: cover !important;
    object-position: top left !important;
}

/*.hero-section::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: rgba(0, 0, 0, 0.4);*/
/*  z-index: 5;*/
/*}*/