/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
   font-family: 'rotissansserifregular';
  color: #444444;
}


@font-face {
    font-family: 'sweet_sans_proregular';
    src: url('../fonts/fonnts.com-sweetsansproregular-webfont.woff2') format('woff2'),
         url('../fonts/fonnts.com-sweetsansproregular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'rotissansserifregular';
    src: url('../fonts/rotissansserif-webfont.woff2') format('woff2'),
         url('../fonts/rotissansserif-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'times_new_roman_mtcondensed';
    src: url('../fonts/rtimes_new_roman_mt_condensed_regular-webfont.woff2') format('woff2'),
         url('../fonts/rtimes_new_roman_mt_condensed_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

a {
  text-decoration: none;
  color: #b7872d;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
     font-family: 'sweet_sans_proregular';
}

.bg {background: #cbd1f3;}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #b7872d;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3a3c48;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #322044;
  font-size: 15px;
  height: 70px;
  padding: 0;
}

#topbar .contact-info a {
  line-height: 0;
  color: #fff;
  transition: 0.3s;
  margin-right: 10px;
}

#topbar .contact-info a:hover {
  color: #ccc;
}

#topbar .contact-info i {
  color: #fff;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: #fff;
  padding: 4px 5px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #6f6f6f;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  height: 110px;
  position: fixed;
  width: 100%;
  background:none;
}

.fixed-top {background: #fff !important;}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: #b7872d;
}

#header .logo:hover {
  color: #b7872d;
}

#header .logo img {
  max-height: 90px;
}

.scrolled-offset {
  margin-top: 70px;
}

#header .logo span {font-size: 30px; text-transform: none;}

#header .logo a:hover {color: #b7872d;}

@media(max-width:767px){

  #header .logo span{display: none;}
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 17px;
  color: #b7872d;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: bold;
  letter-spacing: 1px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #b7872d;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  color: #b7872d;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  border: 2px solid #b7872d;
  transition: 0.3s;
  font-size: 14px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #b7872d;
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #b7872d;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #b7872d;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #b7872d;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background-color: rgba(9, 9, 9, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100vh;
}

#hero .carousel-item::before {
  content: "";
  /*background-color: rgba(0, 0, 0, 0.6);*/
}

/*#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 30%;
  top: 0;
  left: 50px;
  right: 50px;
}*/


#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 10%;
  top: 0;
  left: 50px;
  right: 50px;
}

.carousel-container img {width: 100%;}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #312044;
  margin:20px 0;
  font-size: 46px;
  font-weight: 700;
   font-family: 'sweet_sans_proregular';
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #312044;
   font-weight: 500;
   font-size: 28px;
   font-weight: bold;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #b7872d;
}

#hero .btn-get-started {
  font-family: 'rotissansserifregular';
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px;
  border-radius: 0;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #b7872d;
}

#hero .btn-get-started:hover {
  background: #3a3c48;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    top: 66px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f8fcf9;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #b7872d;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}



/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #b7872d;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
  padding-bottom: 0;
}

.why-us .img-bg {
  min-height: 500px;
  background-size: contain;
}

.why-us .slides {
  background-color: #f6a545;
  border-radius: 100px;
}

.why-us h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary-sub);
}

.why-us h4 {
  font-size: 18px;
  font-weight: 400;
  color: #29486a;
  font-family: var(--font-secondary);
}

.why-us .swiper {
  margin: 140px 140px 120px 140px;
  overflow: hidden;
}

.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
  font-size: 24px;
  color: #b7872d;
}

.why-us .swiper-button-prev {
  left: 80px;
}

.why-us .swiper-button-next {
  right: 80px;
}

.why-us .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.why-us .swiper-pagination .swiper-pagination-bullet {
  background-color:#000;
}

.why-us .swiper-pagination .swiper-pagination-bullet-active {
background-color: #b7872d;
}

@media (max-width: 1200px) {
  .why-us .swiper {
    margin: 60px 60px 40px 60px;
  }

  .why-us .swiper-button-prev,
  .why-us .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-us .swiper {
    margin: 40px 40px 20px 40px;
  }
}

.page-about .why-us {
  padding: 0 0 80px 0;
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #b7872d;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #b7872d;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.service-item {border: 1px solid #ccc; border-radius: 5px; padding: 5px;
-webkit-box-shadow: 5px 5px 15px 5px #878787; 
box-shadow: 5px 5px 15px 5px #878787;}

.services .img img {
  transition: 0.6s;
}

.services .details {
  padding: 15px 10px;
  margin: 10px;
  transition: all ease-in-out 0.3s;
  background: var(--color-white);
  position: relative;
  text-align: center;
  border-radius: 80px;
      min-height: 315px;
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: #b7872d;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -50px;
  left: calc(50% - 36px);
  border: 6px solid #fff;
}

.services .details h3 {
  color: #fff;
  font-weight: 700;
  margin: 20px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align: left;
  color: #322044;
  font-weight: 600;
}

.services .service-item .details h3 {
  color: #b7872d;
   font-family: 'rotissansserifregular';
   font-weight: 500;
   text-transform: uppercase;
   font-size: 20px;
}

.services .service-item.details .icon {
  background:#fff;
  border: 2px solid #000;
}

.services .service-item .details .icon i {
  color: #000;
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

.details .icon img {width: 100px; height: 100px;}
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #b7872d;
  padding: 80px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
    font-family: 'rotissansserifregular';
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 4px;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #b7872d;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #b7872d;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #3a3c48;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #b7872d;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #b7872d;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Services List Section
--------------------------------------------------------------*/
.services-list .service-item {
  position: relative;
}

.services-list .service-item .icon i {
  font-size: 32px;
  line-height: 0;
  margin-right: 20px;
  color: #09105e;
}

.services-list .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.services-list .service-item .title a {
   color: var(--color-secondary-sub);
}

.services-list .service-item .title a:hover {
  color: #38618e;
}

.services-list .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/cta-bg.jpg") center center;
  background-size: cover;
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 700;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 25px;
}

.call-to-action .cta-btn {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background:#09105e;
}

.call-to-action .cta-btn:hover {
  background:#fff; color: #09105e;
}


/*--------------------------------------------------------------
# Services Cards Section
--------------------------------------------------------------*/
.services-cards {
  /*background: #f7f9fc;*/
}

.services-cards .card-item {
  border: 1px solid rgba(27, 47, 69, 0.1);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.services-cards .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
}

.services-cards .card-item .card-body {
  padding: 30px;
}

.services-cards .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: #09105e;
}

.services-cards .card-item p {
  margin: 0;
}






/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: url("../img/contact-bg.png") left top no-repeat;
  background-size: contain;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
  }
}

.contact:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: #09105e;
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 12px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #09105e;
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #999;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: #ebd9b5;
  position: relative;
}

/*.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}*/

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #000;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
  text-transform: uppercase;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color:#fed766;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-weight: bold;
  margin: 0 auto 15px auto;
  color: #000;
  font-family: 'sweet_sans_proregular';
  font-size: 15px;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #b7872d;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

.testimonials-slider {background: #fff; border-radius: 30px; padding: 40px 0;}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 125px;
}

.breadcrumbs:before {
  content: "";
  /*background-color: rgba(225, 225, 225, 0.2);*/
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #000;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
  color: #000;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
}

.footer .footer-content {
  background-color: #312044;
  background-size: contain;
  padding: 60px 0 30px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-content .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-content .footer-info .logo span {
  font-size: 23px;
  font-weight: 600;;
  color:#fff;
  font-family: var(--font-secondary);
  margin-top: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
  float: left;
  margin-bottom: 30px;
  font-family: 'sweet_sans_proregular';
  line-height: 30px;
}

.footer .footer-content .footer-info p {
  font-size: 18px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer .footer-content .social-links a {
  font-size: 20px;
  line-height: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  color: rgba(27, 47, 69, 0.5);
  margin-right: 0;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.footer .footer-content .social-links a:hover {
  background-color: #38618e;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  margin-right: 2px;
  color: #fff;
  font-size: 16px;
  line-height: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-primary);
}

.footer .footer-content .footer-contact p {
  line-height: 26px;
  color: #fff;
}

.footer .footer-legal {
  background: #000;
  padding: 30px 0;
}

.footer .footer-legal .copyright {
  text-align: center;
  color:#fff;
}

.footer .footer-legal .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  overflow: hidden;
  background: #fff;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: #31547c;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--color-primary);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px 20px 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 21px;
  color: #312044;
  text-transform: uppercase;
      min-height: 54px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: #312044;
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #6c757d;
}

.team .team-member:hover .social {
  opacity: 1;
}



/*--------------------------------------------------------------
# vision
--------------------------------------------------------------*/
.vision .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  width: 100%;
}

.vision .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.vision .icon-box .icon i {
  color: #b7872d;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.vision .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.vision .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.vision .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.vision .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.vision .icon-box:hover h4 a,
.vision .icon-box:hover .icon i {
  color: #b7872d;
}

.vision .icon-box:hover .icon {
  border-color: #b7872d;
}



.coaching-section{
  position: relative;
  background: #fcfcfc;
}

.coaching-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.coaching-block-one .inner-box .image-box{
  position: relative;
  margin: 0px -2.5px;
}

.coaching-block-one .inner-box .image-box .image{
  position: relative;
  float: left;
  width: 50%;
  padding: 0px 2.5px;
}

.coaching-block-one .inner-box .image-box .image img{
  width: 100%;
}

.coaching-block-one .inner-box .static-content{
  position: absolute;
  left: 30px;
  bottom: 30px;
  padding: 16px 30px;
  background: var(--main-color);
  transition: all 500ms ease;
}

.coaching-block-one .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: var(--white-color);
}

.coaching-block-one .inner-box h3 a{
  display: inline-block;
  color: var(--white-color);
}

.coaching-block-one .inner-box h3 a:hover{
  text-decoration: underline;
}

.coaching-block-one .inner-box .link{
  position: absolute;
  top: -20px;
  right: 11px;
}

.coaching-block-one .inner-box .link a{
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 46px;
  font-size: 18px;
  color: var(--main-color);
  background: var(--white-color);
  text-align: center;
  border-radius: 50%;
}

.coaching-block-one .inner-box .link a:hover{
  background: var(--secondary-color);
  color: var(--white-color);
}

.coaching-block-one .inner-box .static-content .link a{
  transform: rotate(-30deg);
}

.coaching-block-one .inner-box:hover .static-content{
  opacity: 0;
}

.coaching-block-one .inner-box .overlay-content{
  position: absolute;
  left: 30px;
  bottom: 0px;
  width: calc(100% - 60px);
  padding: 30px;
  background: var(--main-color);
  border-radius: 5px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: all 500ms ease;
}

.coaching-block-one .inner-box:hover .overlay-content{
  transform: scaleX(1);
}

.coaching-block-one .inner-box .overlay-content p{
  margin-top: 11px;
  color: var(--white-color);
}

.coaching-section .pattern-layer{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 491px;
  background-size: cover;
  background-repeat: repeat-x;
  animation: slide 60s linear infinite;
  -webkit-animation: slide 60s linear infinite;
}


/** coaching-style-two **/

.coaching-style-two{
  background: #F5F5F5;
}

.coaching-style-two .sec-title .sub-title:after{
  background: #F5F5F5;
}

.coaching-block-two .inner-box{
  position: relative;
  display: block;
  padding: 0px 0px;
}

.coaching-block-two .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 212px;
  height: 212px;
  line-height: 212px;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px 10px rgba(3, 39, 97, 0.05);
  margin-bottom: 30px;
  border-radius: 50%;
}

.coaching-block-two .inner-box .icon-box .count-text{
  position: absolute;
  right: 29px;
  bottom: 2px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 12px;
  color: var(--white-color);
  font-weight: 700;
  background: var(--main-color);
  text-align: center;
  border-radius: 50%;
  z-index: 1;
}

.coaching-block-two .inner-box .icon-box .count-text:before{
  position: absolute;
  content: '';
  width: 40px;
  height: 40px;
  left: -2px;
  top: -2px;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
  z-index: -1;
  transition: all 500ms ease;
}

.coaching-block-two .inner-box:hover .icon-box .count-text:before{
  background: var(--secondary-color);
}

.coaching-block-two .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 20px;
}

.coaching-block-two .inner-box h3 a{
  display: inline-block;
  color: var(--main-color);
}

.coaching-block-two .inner-box h3 a:hover{
  color: var(--secondary-color);
}

.coaching-style-two .more-content{
  margin-top: 50px;
}

.coaching-style-two .more-content h5{
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.coaching-style-two .more-content h5 a{
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: underline;
}

.coaching-style-two .more-content h5 a:hover{
  color: var(--main-color);
}

.coaching-style-two .more-content .theme-btn{
  background: var(--main-color);
}

.coaching-style-two .more-content .theme-btn:hover{
  box-shadow: inset 0 0 0 2em var(--secondary-color);
}

.coaching-style-two .pattern-layer{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 491px;
  background-size: cover;
  background-repeat: repeat-x;
  animation: slide 60s linear infinite;
  -webkit-animation: slide 60s linear infinite;
}


/** coaching-style-three **/

.coaching-style-three{
  position: relative;
}

.coaching-style-three .coaching-block-three{
  float: left;
  width: 25%;
}

.coaching-block-three .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.coaching-block-three .inner-box .image-box img{
  width: 100%;
}

.coaching-block-three .inner-box .content-box{
  position: absolute;
  left: 0px;
  bottom: 70px;
  width: 100%;
  padding-left: 70px;
  padding-right: 70px;
}

.coaching-block-three .inner-box .content-box .icon-box{
  position: relative;
  display: block;
  font-size: 100px;
  color: var(--white-color);
  margin-bottom: 30px;
}

.coaching-block-three .inner-box .content-box h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

.coaching-block-three .inner-box .content-box h3 a{
  display: inline-block;
  color: var(--white-color);
}

.coaching-block-three .inner-box .content-box h3 a:hover{
  color: var(--secondary-color);
}

.coaching-block-three .inner-box .content-box p{
  color: var(--white-color);
}

.coaching-block-three .inner-box .overlay-content{
  position: absolute;
  left: 0px;
  top: 30px;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 500ms ease;
}

.coaching-block-three .inner-box:hover .overlay-content{
  opacity: 1;
  top: 0px;
}

.coaching-block-three .inner-box .overlay-content:before{
  position: absolute;
  content: '';
  background: linear-gradient(360deg, rgba(3, 43, 102, 0.9) 0%, rgba(3, 43, 102, 0) 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.coaching-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  background: #FAFAFA;
  padding: 45px 50px 56px 50px;
  border: 2px solid #FAFAFA;
  border-top: none;
  transition: all 500ms ease;
}

.coaching-block-one .inner-box:hover .lower-content{
  border-color: #B4C4D9;
}

.coaching-block-one .inner-box .lower-content h3{
  margin-bottom: 15px;
}

.coaching-block-one .inner-box .lower-content h3 a{
  color: var(--title-color);
}

.coaching-block-one .inner-box .lower-content h3 a:hover{
  color: var(--secondary-color);
}

.coaching-block-one .inner-box .lower-content p{
  font-size: 18px;
  color: #07407D;
  margin-bottom: 20px;
}

.coaching-block-one .inner-box .lower-content .link-box a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #07407D;
}

.coaching-block-one .inner-box .lower-content .link-box a:hover{
  color: var(--secondary-color);
}

.coaching-block-one .inner-box .lower-content .link-box a span{
  position: relative;
  padding-right: 25px;
}

.coaching-block-one .inner-box .lower-content .link-box a span:before{
  position: absolute;
  content: '';
  background: #07407D;
  width: 16px;
  height: 1px;
  top: 12px;
  right: 0px;
}

.coaching-section .title-box{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.coaching-section .title-box .sec-title{
  max-width: 550px;
}

.coaching-section .title-box .text{
  max-width: 575px;
  margin-top: 70px;
}

.coaching-section .title-box .text p{
  font-size: 18px;
  color: #07407D;
}

.coaching-style-two.visa-page{
  background: #fff;
}

.coaching-style-two.visa-page .sec-title .sub-title:after{
  background: #fff;
}

.coaching-style-two.visa-page .more-content h5{
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
}



.dream-section{
  padding: 245px 0px 185px 0px;
  overflow: hidden;
}

.dream-section:before{
  position: absolute;
  content: '';
  background: var(--main-color);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.95;
}

.dream-section .content-box{
  max-width: 580px;
}

.dream-section .sec-title .sub-title:after{
  color: #fff;
  background: #032f70;
}

.content_block_two .content-box .text p{
  color: #fff;
}

.content_block_two .content-box .list-item{
  max-width: 455px;
}

.content_block_two .content-box .list-item li{
  position: relative;
  display: block;
}

.content_block_two .content-box .list-item li a{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #fff;
  padding: 23px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.content_block_two .content-box .list-item li a:hover{
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.content_block_two .content-box .list-item li a i{
  float: right;
  position: relative;
  top: 5px;
}

.dream-section .pattern-layer{
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 238px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.dream-section .image-layer{
  position: absolute;
  right: 142px;
  bottom: 0px;
}

.dream-section .pattern-layer-2{
  position: absolute;
  top: 66px;
  right: 0px;
  width: 466px;
  height: 473px;
  background-repeat: no-repeat;
}


/** dream-style-two **/

.dream-style-two{
  background: var(--main-color);
}

.dream-style-two .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.dream-style-two .content-column{
  position: relative;
  float: right;
  width: 50%;
  padding-left: 135px;
}

.dream-style-two .content-box{
  max-width: 540px;
}

.dream-style-two .content-box .sec-title .sub-title:after{
  background: var(--main-color);
}

.content_block_two .content-box .list-item li a i{
  color: var(--secondary-color);
  transition: all 500ms ease;
}

.content_block_two .content-box .list-item li a:hover i{
  color: var(--white-color);
}

.content_block_two .content-box .list-item li:last-child a{
  border-bottom: none;
}

.dream-style-two .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  top: -145px;
  width: 627px;
  height: 593px;
  background-repeat: no-repeat;
}

.dream-style-two .pattern-layer .pattern-2{
  position: absolute;
  right: 0px;
  bottom: -150px;
  width: 202px;
  height: 355px;
  background-repeat: no-repeat;
}


/** dream-style-three **/

.dream-style-three{
  padding: 50px 0px;
}

.dream-style-three .content_block_two .content-box .text p{
  color: #000;
  font-size: 18px;
}

.dream-style-three .content_block_two .content-box .text{
  max-width: 574px;
}

.dream-style-three .content_block_two .content-box .list-item li a{
  color: #07407D;
  border-bottom: 1px solid #B4C4D9;
  padding: 16px 0px;
}

.dream-style-three .content_block_two .content-box .list-item li a:hover,
.dream-style-three .content_block_two .content-box .list-item li a:hover i{
  color: var(--secondary-color);
}

.dream-style-three .image-box{
  position: relative;
  display: block;
}

.dream-style-three .image-box .image{
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.dream-style-three .image-box .image img{
  width: 100%;
  transition: all 500ms ease;
}

.dream-style-three .image-box .image:hover img{
  transform: scale(1.05);
}



/** sec-title **/

.sec-title{
  position: relative;
  display: block;
}

.sec-title .sub-title{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  color: #07407D;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.sec-title .sub-title:before{
  position: absolute;
  content: '';
  background: #B4C4D9;
  width: 97px;
  height: 1px;
  left: 0px;
  bottom: 0px;
}

.sec-title.centred .sub-title:before{
  left: 50%;
  transform: translateX(-50%);
}

.sec-title .sub-title:after{
  position: absolute;
  content: '\e90e';
  font-family: 'icomoon';
  font-size: 13px;
  background: var(--white-color);
  width: 33px;
  text-align: center;
  color: #B4C4D9;
  left: 32px;
  bottom: -13px;
}

.sec-title.centred .sub-title:after{
  left: 50%;
  transform: translateX(-50%);
}

.sec-title h2{
  display: block;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
}

.sec-title.light .sub-title,
.sec-title.light h2{
  color: #fff;
}

.btn-box {background: #ccc; width: 200px; text-transform: uppercase; text-align: center; color: #fff !important; padding: 20px;}


.btn-box a {color:fff !important;}

.com-img {text-align: center;}

.com-img img {width: 150px; height: 150px;}

.com-img h4 {color: #b7872d;
margin: 10px 0;
font-size: 16px;
font-family: 'rotissansserifregular';}



.discover {background-color:#faf4eb;
background-image:url(../img/discover-bg.png);
background-position:center center;
background-repeat: no-repeat;
background-size: contain;}

.discover h3 {font-size: 20px; font-weight: bold; color: #322044;}

.discover h3 i img {width: 50px; height: 50px;}

.dis-11 {border-bottom: 3px solid #322044; padding: 10px;}

 .dis-11 p  {font-family: 'rotissansserifregular'; color: #000; font-size: 16px;}

.border-0 {border-bottom: 0;}

.border-left {border-left: 5px solid #322044;}

.questions {background: #c7932c; text-align: center;
padding: 10px; display: flex; color: #312044; font-weight: 400; margin-right: -12px;}

.social-links {line-height: 70px; margin-right: 20px;}

.questions i {margin: 5px 0 0 10px;}

.questions i img {width:40px; height:40px; }

.co-style {background: #b7872d; color: #fff !important; padding: 5px 20px 5px 20px !important; border-radius: 10px; text-align: center;
margin-left: 10px; transition: 0.3;}

.co-style:hover {background:#312044;}

.sen-1 {color: #312044 !important;}

.questions a {color: #312044; font-weight: bold; font-size: 18px;}


.slide-t {background: #fff; color:#b7872d; font-size:17px; text-transform:uppercase; background:#fff; border-radius:5px; padding:5px;
font-weight:bold; }

.settle-smart {padding:10px 15px; border-left: 4px solid #312044;}

.settle-smart h2,h1 {text-transform: uppercase; font-size: 25px; color: #b7872d ; font-weight: bold;}

.settle-smart h4 {text-transform: uppercase; font-size: 20px; color: #312044; font-weight: normal;}


.settle-smart-1 p {color: #312044; font-size: 20px;}

.settle-smart-1 a {text-transform: uppercase; color: #b7872d ; font-weight: bold; text-decoration: underline; transition: 0.5;}

.settle-smart-1 a:hover {color: #312044;}


.con-dis-11 {
  padding: 10px 15px;
  color: #312044;
}

.con-dis-11 h5 {text-transform: uppercase; font-size: 14px; color: #312044}

.con-dis-11 h3 {font-size: 50px; font-weight: bold;}

.discover a {background: #312044; color: #fff; padding: 5px; border-radius: 5px; font-weight: bold; margin-top: 20px;
float: left; transition: 0.4; font-family: 'sweet_sans_proregular'; font-size: 20px;}

.discover a:hover {background: #b7872d;}

.chat {margin: 40px 0 20px 0; color: #fff; font-weight: bold; letter-spacing: 1px;}

.chat img {width: 30px; height: 30px;}  

  .addres-tab{ font-family: 'sweet_sans_proregular';}

.addres-tab .tab-content { background:#fff; padding:20px; color:#312044; font-size:14px; font-weight:bold; min-height:200px; }

.addres-tab .tab-content p {font-size: 16px;}

.addres-tab .nav-link {background: #b7872d; border-radius: 0; color: #fff; font-weight: bold; font-size: 16px; text-transform: uppercase;
border-right: 2px;}


.addres-tab .nav-pills .nav-link.active, .nav-pills .show>.nav-link {background: #fff; color:#b7872d; font-weight:bold; }


.addres-tab .tab-content a {color: #000;}

.con-details {position: fixed; right: 0; width: 80px; top: 30%; z-index: 100;}

.con-details img {width: 40px; height: 40px; transition: 0.5; float: right; margin-right: 10px; margin-top: 10px;}

.con-details img:hover {opacity: 0.5;}

.we-are {position: fixed; right: 0; bottom: 10%; z-index: 1000; margin-right: 10px; text-align: right; float: right;}


.we-are img {width: 40px; height: 40px;}

.we-are span {background: #b7872d; border-radius: 5px; color: #fff; font-weight: bold; padding: 5px; margin-right: 10px; transition: 0.3; 
 font-family: 'times_new_roman_mtcondensed';}

.we-are span:hover {background: #312044;}


#hero .carousel-indicators {display: none;}

@media(max-width:1336px){
.slide-t {font-size: 13px;}

#hero h2 {font-size: 33px; margin: 2px 0;}
#hero p {font-size: 20px;}
}

@media(max-width:1000px){

.social-links {display: none;}

.questions {display: none;}


#header .logo img {
    max-height: 60px;
}


}


@media(max-width:660px){
.mail {display: none;}
}

.clients h2 {color: #b7872d; font-weight: bold; margin:20px 0;}

.contact-foo {font-size: 13px; color: #000;}

.content-ab {background-image:url(../img/2.jpg);  background-position:center center; 
background-size: contain;
background-repeat: no-repeat }

.content-ab h3 { color: #312044; font-weight: bold; font-size:30px; margin-bottom:30px; 
 ;}


.content-ab p {font-size: 25px;}

.bg-new {background: #f9f3e8;}

.story-ab p { font-size: 30px; color: #312044;  }

.story-ab i {font-size: 50px;}


.team h2 {
    color: #b7872d;
    font-weight: bold;
    margin: 20px 0;
}

.team ul li { font-family: 'sweet_sans_proregular'; color: #000; font-weight: 600; font-size: 20px;}


.team .nav-link {color: #000; border-radius: 0; border: 0;  border-bottom: 10px solid #312044;}

.team .nav-tabs {border-bottom: 0;}


.team .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {border: 0; border-bottom: 10px solid #b7872d; }

.team .team-member {-webkit-box-shadow: 6px 6px 2px 0px rgba(0,0,0,0.33); 
box-shadow: 6px 6px 2px 0px rgba(0,0,0,0.33);} 

.why-au h3 {color: #b7872d; font-weight: bold; font-size: 30px;}

.why-au p {color: #312044; font-size: 20px; font-weight: bold; margin-top: 30px; line-height: 30px;}
.why-au ul li {color: #312044; font-size: 20px; font-weight: bold; margin-top: 30px; line-height: 30px;}




  .he-style  {font-size: 1em;
    font-weight: 700;
    font-style: normal;
    color: rgb(182, 126, 23);
    }

    .p-style {
    color: rgb(0, 0, 0);
    line-height: 23px;
    letter-spacing: 0em;
    }


.why-au h4 {color: #b7872d; font-weight: bold; font-size: 24px;  font-weight: 700; text-transform: uppercase;}


.au-tit .settle-smart h2 { font-size:36px; font-family: 'sweet_sans_proregular';  }
.au-tit .settle-smart h1 {
    font-size: 36px;
    font-family: sweet_sans_proregular;
}


.au-tit .settle-smart h4 {color: #fff; font-size: 32px; font-weight: bold;}

.ex-nu {background: #fff; padding: 15px; color: #b7872d; font-weight: bold; font-size: 20px; text-align: center; height: 84px;
width: 165px;}

.ex-nu:hover {color: #312044;}


.benefits-container {
      max-width: 600px;
      margin: auto;
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 20px;
      text-align: left;
    }

    .benefit {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .badge {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .benefit-content h2 {
      margin: 0 0 5px;
      font-size: 1.2em;
      color: #312044;
      font-size: 20px; font-weight: bold;
    }

    .benefit-content p {
      margin: 0;
      color: #312044;
      font-size: 20px;
      line-height: 23px;
      font-weight: 500;
    }



     .conter-11 {
      display: flex;
      flex-wrap: wrap;
      max-width: 1000px;
      margin: 40px auto;
      background-color: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      border-radius: 10px;
      overflow: hidden;
    }

    .text-section-au {
      flex: 1;
      padding: 40px;
      text-align: left;
    }

   

    .text-section-au p {
      font-size: 20px;
      color: #fff;
      line-height: 23px;
      margin-top: 20px;
      margin-bottom: 30px;
    }

.cta-button {
      display: inline-block;
      background-color: #b7872d;
      color: #fff;
      padding: 5px 10px;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
      transition: background-color 0.3s ease;
      letter-spacing: 1px;
    }

    .cta-button:hover {
      background-color: #000;
      color: #fff;
    }

    .image-section {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .image-placeholder {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
  
    }


    .bg-p {background: #312044;}


    .text-section-au .settle-smart {border-left: 4px solid #b7872d;}


    .text-section-au .settle-smart h2 {color: #fff; text-transform: none; font-size: 30px;}

    .text-section-au .settle-smart h4 {color: #fff; text-transform: none; font-size: 26px;}


     .text-section-pp {
      flex: 1;
      padding: 40px;
      text-align: left;
    }

   

    .text-section-pp p {
      font-size: 20px;
      color: #312044;
      line-height: 23px;
      margin-top: 20px;
      margin-bottom: 30px;
    }


    .text-section-pp .settle-smart {border-left: 4px solid #b7872d;}


    .text-section-pp .settle-smart h2 {color: #312044; text-transform: none; font-size: 30px;}

    .text-section-pp .settle-smart h4 {color: #312044; text-transform: none; font-size: 26px;}



    .p-left {padding-left: 100px;}

    @media(max-width:1060px) {

        .p-left {padding-left: 0;}  
    }


    .bg-g {background: #d9b97d;}


     .faq-container {
      margin: auto;     
    }

    .faq-header {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
      margin-top: 50px;
    }

    .faq-icon {
      width: 60px;
      height: 60px;
      
      display: flex;
      align-items: center;
      justify-content: center;
    
      font-size: 24px;
      font-weight: bold;
      margin-right: 40px;
    }

    .faq-title {
      font-size: 28px;
      font-weight: bold;
       color: #312044;
    }

    .faq-section {
      margin-bottom: 30px;
    }

    .faq-section h2 {
      font-size: 22px;
      font-weight: bold;
      color: #4f1964;
      margin-bottom: 10px;
    }

    .faq-section p {
      font-size: 20px;
      font-weight: bold;
      line-height:28px;
      margin-top: 30px;
      color: #000;
    }

    .faq-list {
      background: #312044;
      padding:100px 20px;
      border-radius: 10px;  
    }

    .faq-list ul li {
    list-style: none;
    align-items: center;
    display: flex;
    color: #fff;
    font-size: 22px;
    padding: 0;
    margin: 20px 0;
    font-weight: bold;
    }

     .faq-list ul li i {margin-right: 20px;}

    .faq-list p {
      margin-bottom: 20px;
    }

    .border-radius {border-radius: 30px;}



     .form-container {
      max-width: 600px;
      margin: auto;
      background-color: #ffffff;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .form-title {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 30px;
      text-align: left;
      color: #312044;
    }

    .btn-gold {
      background-color: #b7872d;  
      color: #fff;
      font-size: 22px;
      text-transform: uppercase;
      font-weight: bold;
      width: 130px !important;
      text-align: center;
      margin-top: 30px;
    }

    .btn-gold:hover {
      background-color: #000;
    }

.form-container .form-label {font-size: 16px; color: #312044;}

.form-container .form-control {border-radius: 0; border: 0; border-bottom: 1px solid #dfdfdf; padding: 0;}

.form-container .form-select {border-radius: 0; border: 0; padding: 0;}



.settle-smart-in {padding:10px 15px; border-left: 4px solid #b7872d;}

.settle-smart-in h2 {text-transform: uppercase; font-size: 40px; color: #312044; font-weight: bold; font-family: 'sweet_sans_proregular';
letter-spacing:2px; }

.settle-smart-in h4 {text-transform: uppercase; font-size: 25px; color: #312044; font-weight: normal;}

.banner-button {
      display: inline-block;
      background-color:transparent;
      color: #312044;
      padding: 5px 10px;
      border: 1px solid #b7872d;  
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      letter-spacing: 1px;
      font-size: 20px;
    }

   .banner-button:hover {
      background-color: #000;
      color: #fff;
    }


    .simple-h h2 {font-size: 25px; color: #b7872d; text-transform: uppercase; font-weight: bold;}


     .flyer-container {
      max-width: 900px;
      margin: auto;
      background-color: #f7f2e8;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      position: relative;
    }

    .flyer-title {
      font-size: 32px;
      font-weight: bold;
      color: #312044;
      margin-bottom: 30px;
      text-align: center;
        font-family: 'sweet_sans_proregular'; 
    }

    .flyer-container .section-title {
      font-size: 20px;
      font-weight: bold;
      color: #312044;
      margin-top: 30px;
      margin-bottom: 0px;
      text-align: left;
      padding-bottom: 0;
    }

    .contact-box {
      background-color: #312044;
      color: #fff;
      padding: 10px;
      border-radius: 10px;
      text-align: center;
      font-weight: bold;
      margin-top: 40px;
      width: auto;
      text-align: right;
      max-width: 320px;
      margin-left: 50px;
    }

    ul {
      padding-left: 20px;
    }

    li {
      margin-bottom: 8px;
    }

    .contact-box a {color: #b7872d; margin-right: 10px;}

      .contact-box a span {color: #fff; font-size: 20px; font-weight: bold;}


 .flyer-container p    { color: #312044;
    font-size: 20px;
    font-weight: 400;
    margin-top: 10px;
    line-height: 26px;
}

.top-img {position: absolute; width: 320px; height: 305px; z-index: 10; top: -212px; left:-240px; }



@media (max-width:1024px) {

.top-img {width: 200px; height: 200px; top: -165px; left:-95px;}

}

@media (max-width:560px) {

  .top-img {display: none;}

  .contact-box {margin-left: 0;}
}

.up {text-transform: uppercase;}

.promo-container {
      background-color: #f5f1e8;
      padding:0;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: center;
      padding-bottom: 10px;
      margin-top: 20px;
    }

    .promo-header {
      font-size: 16px;
      font-weight: bold;
      color: #b7872d;
      text-transform: uppercase;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .promo-description {
      font-size: 18px;
       color: #312044;
      margin-bottom: 30px;
      padding: 0 15px;
      min-height: 130px;
    }

    

    .illustration-box {
      width: 100%;
      background-color: #eae6f2;
      border-radius: 12px;
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #312044;
      font-size: 18px;
    }

    .illustration-box img {border-radius: 12px;}



    .cta-button-em {
      display: inline-block;
      background-color: #b7872d;
      color: #fff;
      padding: 5px 10px;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
      transition: background-color 0.3s ease;
      letter-spacing: 1px;
      font-size: 20px;
    }

    .cta-button-em:hover {
      background-color: #000;
      color: #fff;
    }

    .cta-button-em i img {width: 32px; height: 32px; margin-right: 10px;}

    .bg-pg {background: #73677f;}

    .bg-w {background: #fff;}

    .form-footer .form-container {box-shadow: none;}

    .nurse-img {position: absolute; width: 600px; height:600px; z-index: 10; right: 0; bottom: -33px;}


@media (max-width:1023px) {

.nurse-img {display: none;}
}



.mt-tit {margin-top: 10%;}

.border-r {border-top-right-radius: 50px;}

.ca-list li {border-radius: 10px;
padding: 5px;
border: 1px solid #312044;
color: #312044;
width: 100%;
list-style: none;
font-weight: bold;
font-size: 16px;
margin: 10px 0;}

.dark {background:#312044; color:#fff !important; }

.form-title span { color:rgb(180, 180, 180); font-size: 20px;}

.nz-box .contact-box {margin-top: -70px; width: 100%;
z-index: 10; position: relative; background: rgba(49, 32, 68, 0.8);}

.b-style {color: #312044 !important;
width: 100%;
text-transform: none !important;
text-align: center;
font-weight: bold;
font-size: 18px;}

.new-land li {color: #312044 !important;
width: 100%;
text-transform: none !important;
font-weight: 500;
font-size: 20px;}

.details-b {margin: 40px 0 0;}

.details-b h4 {
    color: #312044 !important;
    font-size: 24px;
    font-weight: bold;
    text-transform: none;
}

.details-b p {font-size: 22px;
  color: #312044;
  font-weight: 400;
  margin: 0;
line-height: 30px;}

.h-100 {height: 100%;}

.list li {    font-size: 22px;
    color: #312044;
    font-weight: 400;
    margin:10px 0;
    line-height: 26px;}

   

    .firm-info {
        font-size: 25px;
    color: #312044;
    font-weight: 600;
    margin:30px 0;
    line-height: 30px;
    }

   
    
    .location {
      text-align: center;
      margin-top: 30px;
      font-size: 1em;
      color: #555;
    }

    .bg-lg {background: #f7f2e8;}

      .he-style-1  {font-size: 24px;
    font-weight: bold;
    font-style: normal;
        color: #b7872d;
    }

.contact-p .form-container {width: 100%; max-width: 100%;}

 .contact-p  .form-container .form-control {margin-bottom: 30px;}

.con-icon .com-img {text-align: center;}

 .con-icon .com-img img {width: 100px; height: 100px;}

 .con-icon .com-img h4 {  color: #312044;
margin: 10px 0;
font-size: 20px;
font-weight: bold;
font-family: 'rotissansserifregular';}

    .con-icon-1 h4 {color: #312044;
    margin: 10px 0;
    font-size: 20px;
    font-weight: bold;
    margin-left: 10%;
    font-family: 'rotissansserifregular'}


    .migration-img {position: absolute; left:0; bottom: 0;}


       .migration-img img {width: 300px;}


       @media(max-width:1366px){

 .migration-img img {width: 200px;}


}


@media(max-width:1024px){

 .migration-img {display: none;}

 .social-links-11 img {width: 60px;}

}

.migration-h h3 { color: #312044; font-size: 30px; font-weight: bold;}


 .migration-h p {color: #000; font-size: 20px; font-weight: bold; line-height: 30px;}

 .text-left {text-align: left;}


 .migration-des {padding: 100px 0;}

 .rgt-0 {right: 0; text-align: right;}

 .text-right {text-align: right;}


 .bg-gray {background: #e8e7ea;}

 .footer-img img {height: 100%;}

 .co-ab { position:absolute; right:0; z-index:10; top:-40px; }


 .border-l {
    border-left: 4px solid #b7872d;
}


.banner-button-1 {
      display: inline-block;
      background-color:transparent;
      color: #fff;
      padding: 5px 10px;
      border: 1px solid #b7872d;  
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      letter-spacing: 1px;
      font-size: 20px;
    }

   .banner-button-1:hover {
      background-color: #000;
      color: #fff;
    }

    .ba-sub-tittle { background:#b7872d; border-radius: 10px; padding: 15px; color: #fff; font-size: 20px;
      margin-top: 50px; font-weight: bold;}


    .ba-sub-tittle span {  color: #312044; font-size: 24px;}

    .nurse-banner-img {position: absolute; right: 0; bottom: -60px;}

      .nurse-banner-img img {width:502px;}



@media(max-width:1180px){

.nurse-banner-img {display: none;}

}

.f-60 {font-size: 60px !important;}

.p-font {color: #000 !important; font-size: 20px !important; line-height: 30px !important;}

.he-style span { color: #312044;}



.abroad h3 {color: #b7872d; font-weight: bold; font-size: 30px;}

.abroad p {color: #312044; font-size: 20px; font-weight: bold; margin-top: 30px; line-height: 30px;}






    .ab-list {
      text-align: center;
    }


    .header-ab {
      width: 100%;
    }

    .header-ab img {border-radius: 15px;}



.container-ab {
      margin: -40px 20px 20px 20px;
      background-color: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      border-radius: 8px;
      padding: 10px;
      position: relative;
      z-index: 10;
      min-height: 240px;
    }

 
   .container-ab .icon {
    background: #c19139;
    border: 2px solid #fff;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin: 0 auto;
      margin-top: -60px;
    }

  .container-ab  h1 {
      font-size: 22px;
      font-weight: bold;
      margin: 10px 0;
        color: #312044;
        min-height: 60px;
    }

 .container-ab p {
      font-size: 16px;
      font-weight: 400;
      line-height: 22px;
      margin-top: 10px;
    }


    .settle-smart-right {
    padding: 10px 15px;
    border-right: 4px solid #b7872d;
}

  .settle-smart-right h2, h4 { color: #312044;}



  .nurse-locaton .promo-container {
      background-color: #fff;
      padding:0;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: center;
      padding-bottom: 20px;
      margin-top: 40px;
    }

    .nurse-locaton .promo-header {
      font-size: 26px;
      font-weight: bold;
      color: #b7872d;
      text-transform: none;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .nurse-locaton .promo-description {
      font-size: 18px;
       color: #312044;
      margin-bottom: 30px;
      padding: 0 15px;
      min-height: 85px;
    }

    

    .nurse-locaton .illustration-box {
      width: 100%;
      background-color: #eae6f2;
      border-radius: 12px;
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #312044;
      font-size: 18px;
    }

    .nurse-locaton .illustration-box img {border-radius: 12px;}


     .lo-a{  font-size: 18px;
       color: #312044; text-align:center; text-decoration:underline; }

    .lo-a:hover {color: #b7872d; text-decoration:underline;}


    .bg-lp {background: #f4dcfc;}

    .border-dotted { border:2px dotted #312044; }

    .new-des {font-size: 10px; font-weight: 400;}


    .new-land-1 li {color: #312044 !important;
width: 100%;
text-transform: none !important;
font-weight: 500;
list-style: none;
margin: 20px 0;
font-size: 26px;}


.study-ab h2 {
    color: #312044;
    margin: 20px 0;
    font-size: 40px;
    font-weight: 700;
    font-family: 'sweet_sans_proregular';
    background-color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 20px;
}

.he-style-study {font-size: 66px;
color: #b7872d;
text-transform: uppercase;}

.f-30 {font-size: 30px !important;}


 .sty-ab-started {
  font-family: 'rotissansserifregular';
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px;
  border-radius: 0;
  transition: 0.5s;
  line-height: 1;
  color: #b7872d;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #b7872d;
}

  .sty-ab-started:hover {
  background: #3a3c48;
}


.study-aborad-1 {
    
    background-image: url(../img/study-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.europ-11 { color: #b7872d; font-size: 50px; text-align: center; font-weight: 700;}

.europ-11 span {color: #000; font-size: 30px;}



  
 .study-container {
      background-color: rgb(50, 32, 68);
      padding:0;
      border-radius: 12px;
      text-align: center;
      padding-bottom: 20px;
      margin-top: 40px;
      position: relative;
    }

        

    .study-container .illustration-box {
      width: 100%;
      background-color: #eae6f2;
      border-radius: 12px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #312044;
      font-size: 18px;
    }

     .study-container .illustration-box img {border-radius: 12px;}

    .study-container .promo-header-1 {position: absolute; z-index: 10; right: 0; top: 30px; background: rgba(255, 255, 255, 0.7);
        border-radius: 5px; padding:0 15px; text-align: center; font-size: 40px; font-weight: 700; color: rgb(50, 32, 68)}


        .study-description {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    padding: 0 15px;
    min-height: 40px;
}

.girl-study {position: absolute; bottom: 0;}

.bg-11 {background: #f9f3e9;}


.location h3 {
    color: rgb(183, 135, 45);
    font-weight: bold;
    font-size: 30px;
}


.p-20 {padding: 20px;}

.form-container textarea {
    border-radius: 0;
    border: 0;
    border: 1px solid #dfdfdf !important;
    padding: 15px !important;
    min-height: 100px;
}









  .pr-main {background: #FCFBFD;
background: linear-gradient(90deg,rgba(252, 251, 253, 1) 0%, rgba(225, 216, 232, 1) 50%, rgba(171, 144, 191, 1) 100%);
margin-top: 120px;
margin-bottom: 40px;
padding: 0;}

.pr-title {border-left: 4px solid #322041; padding-left: 10px;}


.pr-title p {color:#322041;}


.pr-title h1 {color:#322041; font-size: 34px;}

.pr-title h2 {color:#b7872d; font-size: 54px; font-weight: bold; text-transform: none;}

.pr-sub {padding-right: 60px;}

.step-main {text-align: left;}

.step-main .card-1 {border-radius: 0; color: #000; font-size: 22px; width: auto; padding: 7px; background: #fff; border: 1px solid #827f84; text-align: center;
min-width: 150px; max-width: max-content; font-weight: bold; display: inline-block; transition: 0.3s;}


.step-main h3 {color: #312044;}



  .pr-score {width: 100%; justify-content: center; display: flex;}

  .pr-box {background:#322041; color:#fff; border-radius:30px; padding:5px; position:relative; text-align:center; width:200px; margin-top:50px;

  font-size: 108px;
    font-weight: bold;
    }

    .pr-box::after {background: url(../img/crown.png);
      content: '';
      background-repeat: no-repeat;
      width: 106px;
      height: 98px;
      position: absolute;
         left: -44px;
    top: -54px;
      z-index: 10;}

      .con-img {padding: 0 20px; text-align: center;}

      .con-img img {width: 400px;}


      .score-con {text-align: center; font-size: 20px; margin-top: 20px; color:#322041; font-weight:bold; }



       .step-indicators {
  display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 40px 0;
  }

  .step-indicators::before {
     content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-top: 2px dotted #b58ad6;
    z-index: 0;
}

  .step-indicator {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #b58ad6;
    background: #fff;
    font-weight: 600;
    position: relative;
  }

  .step-indicator.active {
   background: #FCFBFD;
background: linear-gradient(90deg,rgba(252, 251, 253, 1) 0%, rgba(171, 144, 191, 1) 50%, rgba(171, 144, 191, 1) 100%);
    color: #fff;
  }

  .step-content {
    display: none;
  }

  .step-content.active {
    display: block;
  }

  .option-btn {
    min-width: 160px;
    margin: 8px;
  }



.step-s .card {padding: 0; background: transparent; border: 0;}

.step-s .card h5 {text-align: left; font-weight: bold;}

.step-s .option-btn {border: 1px solid #89898a;
color:#312044;
font-size: 20px;
font-weight: bold;
background: #fff;
border-radius: 0;}

.step-s .option-btn:hover {background: #312044;
color: #fff;}

  .option-btn.active {
    background: #312044;
    color: #fff;
    border-color: #5a2d82;
  }

  .pre-button .btn {min-width: 120px; text-align: center; border-radius: 0;}

    .pre-button .fw-bold {background: #b7872d;}


    @media(max-width:915px){
      .pr-sub {
    padding-right: 0px;}

    .step-s .option-btn {width: 100%;}
}


/* Change this in your CSS file */
.details-b ul li {
    font-size: 22px;
    color: #312044;
    font-weight: 400;
    margin: 10px 0;
    line-height: 26px;
}

/* This forces the heading inside your list to turn purple */
.steps-wrapper h4 {
    color: #312044 !important; /* Your Purple Colour */
    text-align: center !important;
    font-weight: bold !important;
    font-size: 22px !important;
    display: block;
    width: 100%;
    margin-bottom: 15px;
    list-style: none !important; /* Prevents a bullet point appearing next to the title */
}

/* This ensures the rest of your list stays purple too */
/* Targets the heading inside your dynamic list */
.new-land-1 h4 {
    color: #312044 !important; /* Purple */
    text-transform: none !important; /* Keeps capital/small letters as typed */
    text-align: center !important;
    font-weight: bold;
    font-size: 22px !important;
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

































