:root {
  --dark-gray: #7f7770;
  --primary-color: #008278;
  --secondary-color: #fbb03b;
  --white-color: #fff;
  --black-color: #000;
  --primary-font: "Nunito", serif;
}
@import url(banner.css);

body {
  font-family: var(--primary-font);
}
p {
  font-family: var(--primary-font);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
}
.btn-primary {
  font-size: 18px;
  color: var(--white-color);
  background-color: var(--primary-color);
  font-weight: 700;
  border-radius: 40px;
  border: 1px solid var(--primary-color);
  padding: 10px 40px 13px;
}
.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--black-color);
}

.btn-outline {
  font-size: 18px;
  color: var(--secondary-color);
  background-color: transparent;
  font-weight: 700;
  border-radius: 40px;
  border: 2px solid var(--secondary-color);
  padding: 10px 40px 13px;
}
.btn-outline:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--black-color);
}

@media (max-width: 767px) {
  .btn-primary {
      font-size: 18px;
  }
  .btn-outline {
      font-size: 18px;
  }
}
header nav {
  padding-top: 20px !important;
}
header ul li {
  font-weight: 700;
  text-transform: uppercase;
  a {
      color: var(--black-color) !important;
      font-size: 16px;
      letter-spacing: 2px;
      margin-left: 40px;
      position: relative;
      padding-left: 0 !important;
      padding-right: 0 !important;
      &:hover {
          color: var(--primary-color) !important;
          &::after {
              transform: scaleX(1);
              transition: 0.6s;
          }
      }
      &::after {
          display: block;
          content: "";
          border-bottom: solid 3px var(--primary-color);
          transform: scaleX(0);
          transition: transform 250ms ease-in-out;
          line-height: 20px;
          width: 100%;
          margin: 3px auto;
          float: left;
          transform-origin: center;
          height: 4px;
          position: absolute;
          bottom: 0px;
          left: 0;
      }
  }
}
.navbar-light .navbar-brand img {
  width: 150px;
}
.nav-item.active a {
  color: var(--primary-color) !important;
}
.nav-item.active a::after {
  color: var(--primary-color);
  transform: scaleX(1);
}
@media (max-width: 767px) {
  .navbar-light .navbar-brand img {
      width: 140px;
  }
  header nav {
      padding-bottom: 20px !important;
  }
  .navbar-light .navbar-toggler {
      border: 0;
  }
  header ul li a {
      margin-left: 0;
      display: inline-block !important;
  }
  .navbar-nav {
      padding-top: 20px;
  }
}
.container {
  max-width: 1440px;
}

@media (max-width: 1600px) {
  .container {
      max-width: 1170px;
  }
}

/* key services */
.key-services {
  padding-bottom: 120px;
}
.key-services h3 {
  font-size: 20px;
  color: var(--dark-gray);
  text-align: center;
  width: 65%;
  margin: 0 auto;
  margin-bottom: 80px;
  font-size: 400;
}
.key-services img {
  width: 100%;
}
.key-services .key-services-box {
  background-color: var(--primary-color);
}
.key-services .key-services-box .content {
  background-color: var(--primary-color);
  padding: 30px;
  min-height: 225px;
}
.key-services .key-services-box .content h5 {
  font-size: 26px;
  font-weight: 700;
  color: var(--white-color);
  font-family: var(--primary-font);
  margin-bottom: 15px;
}
.key-services .key-services-box .content p {
  font-size: 18px;
  color: var(--white-color);
  margin-bottom: 0;
  font-family: var(--primary-font);
}

.swiper-button-next {
  background: var(--primary-color);
  width: 50px;
  height: 50px;
  padding: 20px;
  border-radius: 50%;
}
.swiper-button-next::after {
  font-size: 30px;
  color: var(--white-color);
}
.swiper-button-prev {
  background: var(--primary-color);
  width: 50px;
  height: 50px;
  padding: 20px;
  border-radius: 50%;
}
.swiper-button-prev::after {
  font-size: 30px;
  color: var(--white-color);
}
.key-services .swiper-pagination {
  display: none;
}
@media (max-width: 1400px) {
  .key-services h3 {
      width: 80%;
  }
  .key-services .key-services-box .content h5 {
      font-size: 24px;
  }
  .key-services .key-services-box .content {
      min-height: 210px;
  }
  
}

@media (max-width: 767px) {
  .key-services {
      padding-bottom: 60px;
  }
  .key-services h3 {
      width: 100%;
      font-size: 20px;
  }
  .key-services .key-services-box .content p {
      font-size: 20px;
  }
  .key-services .key-services-box .content h5 {
      font-size: 24px;
  }
  .key-services .key-services-box .content {
      min-height: 200px;
  }
  .swiper-button-next {
      display: none;
  }
  .swiper-button-prev {
      display: none;
  }
  .key-services .swiper-wrapper {
      padding-bottom: 40px;
  }
  .key-services .swiper-pagination-bullet-active {
      background-color: var(--primary-color) !important;
      width: 12px;
      height: 12px;
  }
  .key-services .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      color: #5e5e5e;
      opacity: 1;
  }
  .key-services .swiper-pagination {
      bottom: -5px !important;
      display: block;
  }
}

/* why  choos us */

.why-choose-us {
  background-image: url(../images/Asset-17-100.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 40px 0;
  height: 350px;
  display: flex;
  align-items: center;
}

.why-choose-us h1 {
  font-size: 60px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0;
}

.why-choose-us-content h1 {
  font-size: 60px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 70px;
}

.why-choose-us-wrap {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.why-choose-us-content {
  padding: 120px 0;
}
@media (max-width: 1400px) {
  .why-choose-us-content {
      padding: 60px 0;
  }
}
.why-choose-us-content h5 {
  font-size: 20px;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 15px;
}
.why-choose-us-box img {
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
}
.why-choose-us-box {
  /* padding: 0 20px; */
  width: 20%;
}
.why-choose-us-box .content {
  padding: 0 20px;
  border-right: 2px solid var(--dark-gray);
  min-height: 145px;
}
.why-choose-us-box:last-child .content {
  border-right: 0;
}
.why-choose-us-box:last-child {
  border-right: 0;
}
.why-choose-us-box p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-gray);
  margin-bottom: 0;
  line-height: 1.3;
}
@media (max-width: 1400px) {
  .why-choose-us-content h5 {
      font-size: 20px;
  }
  .why-choose-us-content h1 {
      font-size: 50px;
  }
}

@media (max-width: 767px) {
  .why-choose-us-content h1 {
      font-size: 35px !important;
  }
  .why-choose-us-content {
      padding-top: 60px;
      padding-bottom: 20px;
  }
  .why-choose-us h1 {
      width: 100%;
      font-size: 27px;
  }
  .why-choose-us {
      height: 185px;
  }
  .why-choose-us-wrap {
      flex-wrap: wrap;
      row-gap: 50px;
  }
  .why-choose-us-box {
      width: 100%;
      min-width: 100%;
  }
  .why-choose-us-box .content {
      border-right: 0;
      min-height: auto;
  }
}

/* customer-talks */
.customer-talks {
  background-image: url(../images/Asset-28-8.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 40px 0;
  height: 690px;
  display: flex;
  align-items: center;
}

.customer-talks h2 {
  font-size: 50px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 70px;
}

.customer-talks .testimonial-wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
}
.customer-talks .testimonial-wrap .testimonial-box img {
  position: absolute;
  top: -25px;
  width: 70px;
}
.customer-talks .testimonial-wrap .testimonial-box {
  padding: 60px;
  border: 4px dashed var(--white-color);
  border-radius: 20px;
  /* width: 30%; */
  position: relative;
}
.customer-talks .testimonial-wrap .testimonial-box p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--white-color);
}
.customer-talks .testimonial-wrap .testimonial-box p.customer-name {
  position: absolute;
  bottom: 10px;
  right: 40px;
  font-weight: 700;
}
.customer-talks .swiper-pagination {
 display: none;
}
@media (max-width: 1400px) {
  .customer-talks {
      height: 600px;
  }
  .customer-talks .testimonial-wrap .testimonial-box {
      padding: 40px;
  }
  .customer-talks h2 {
      font-size: 50px;
  }
}

@media (max-width: 767px) {
  .customer-talks {
      height: 650px;
  }
  .customer-talks h2 {
      font-size: 35px;
      margin-bottom: 30px;
  }
  .testimonial-wrap {
      flex-direction: row;
      gap: 20px;
      /*      overflow: auto;*/
      padding: 40px 10px;
  }
  .customer-talks .testimonial-wrap .testimonial-box {
      width: 100%;
      min-width: 100%;
      padding: 30px 20px;
  }
  .customer-talks .testimonial-wrap .testimonial-box p {
      font-size: 18px;
  }

  .customer-talks .swiper-pagination-bullet-active {
      background-color: var(--white-color) !important;
      width: 12px;
      height: 12px;
  }
  .customer-talks .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      color: #5e5e5e;
      opacity: 1;
    
  }
  .customer-talks .swiper-pagination {
      bottom: -5px !important;
      display: block;
  }
}
/* } */

/* book-now-block */
.book-now-block {
  padding: 120px 0;
  text-align: center;
}
@media (max-width: 1400px) {
  .book-now-block {
      padding: 60px 0;
  }
}
.book-now-block h2 {
  font-size: 50px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
}
.book-now-block h5 {
  font-weight: 700;
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 20px;
}
.book-now-block p {
  font-size: 16px;
  color: var(--dark-gray);
  font-weight: 400;
  width: 70%;
  margin: 0 auto;
}
.book-now-block .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

@media (max-width: 1400px) {
  .book-now-block h2 {
      font-size: 55px;
  }
  .book-now-block p {
      font-size: 16px;
      width: 80%;
  }
}
@media (max-width: 767px) {
  .book-now-block {
      padding: 30px 0 80px;
  }
  .book-now-block h2 {
      font-size: 35px;
  }
  .book-now-block h5 {
      font-weight: 700;
      font-size: 20px;
  }
  .book-now-block p {
      font-size: 16px;
      width: 100%;
  }
}

/* FOOTER */
footer {
  padding: 120px 0 30px;
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}
@media (max-width: 1400px) {
  footer {
      padding: 60px 0 30px;
  }
}
.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-logo-wrap {
  width: 40%;
  padding-right: 140px;
  align-items: center;
}
/* .footer-links{
  display: flex;
  gap: 60px;
} */

.footer-logo-wrap p {
  font-size: 16px;
  color: var(--white-color);
  margin-top: 30px;
}
.footer-links {
  width: 20%;
}
.footer-social {
  width: 20%;
}
.footer-links ul {
  padding-left: 0;
  list-style: none;
}
.footer-links ul li {
  margin-bottom: 15px;
}
.footer-links ul li a {
  font-size: 16px;
  color: var(--white-color);
  opacity: 0.7;
  font-weight: 600;
}
.footer-links ul li a:hover {
  color: var(--secondary-color);
}
.footer-social ul {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  list-style: none;
}
.footer-social ul li a svg {
  background-color: #ccc;
  border-radius: 50%;
  padding: 5px;
}
.footer-social ul li a:hover svg {
  background-color: var(--secondary-color);
}
.footer-copyright {
  padding-top: 40px;
}
.footer-copyright p {
  font-size: 16px;
  color: var(--white-color);
  opacity: 0.5;
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 1400px) {
  .footer-logo-wrap {
      padding-right: 60px;
  }
  .footer-links ul li a {
      font-size: 16px;
  }
}

@media (max-width: 767px) {
  .footer-logo-wrap {
      width: 100%;
      padding-right: 0;
      padding-bottom: 40px;
      text-align: center;
  }
  .footer-links {
      text-align: center;
      width: 100%;
  }
  .footer-social {
      width: 100%;
      padding-top: 40px;
  }
  .footer-social ul {
      justify-content: center;
      padding-left: 0;
  }
  footer {
      padding: 140px 0 60px;
  }
  .footer-logo-wrap img {
      width: 150px;
  }
}

.counter-block {
  background-color: var(--primary-color);
}
.counter-block-wrap {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  row-gap: 50px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.counter-block-wrap h2 {
  font-weight: 700;
  font-size: 60px;
  color: var(--secondary-color);
}
.counter-block-wrap p {
  margin-bottom: 0;
  color: var(--white-color);
  font-weight: 600;
  font-size: 20px;
}

.floating-whatsapp {
  position: fixed;
  bottom: 20%;
  right: 30px;
  z-index: 999;
}

@media (max-width: 767px) {
  .counter-block-wrap h2 {
      font-size: 30px;
  }
}

.floating-whatsapp img {
  width: 70px;
}
.floating-support {
  position: fixed;
  bottom: 50%;
  right: -50px;
  z-index: 999;
  border-radius: 0%;
  background-color: var(--secondary-color);
  width: auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 35px;
  color: #000 !important;
  transform: rotate(90deg);
  transition: 0.3s;
  border-radius: 0px 0px 10px 10px;

  a {
      color: #000 !important;
      font-weight: 700;
  }
}
.floating-support:hover {
  background-color: var(--primary-color);
  right: -45px;
}

.floating-support:hover a {
  color: var(--white-color) !important;
  text-decoration: none !important;
}

.floating-support a:hover {
  text-transform: none;
}

.floating-support img {
  width: 50px;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .floating-support {
      display: none;
  }
  .floating-whatsapp {
      display: none;
  }
}

.floating-btn-wrap {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  display: flex;
  z-index: 999;
  display: none;
}

.floating-btn-wrap a {
  font-size: 14px;
  padding: 10px 10px;
  text-align: center;
  text-decoration: none;
  display: block;
}
.floating-btn-wrap a:first-child {
  background-color: var(--primary-color);
  width: 50%;
  color: var(--white-color);
}
.floating-btn-wrap a:last-child {
  background-color: var(--secondary-color);
  width: 50%;
  color: var(--black-color);
}

@media (max-width: 767px) {
  .floating-btn-wrap {
      display: flex;
  }
}

.calendar {
  padding: 8px;
  background: #ffffff;
  border-radius: 4px;
  /*  font-size:18px;*/
  /*  border: 1px solid #333333;*/
  /*  box-shadow: 0px 20px 40px rgba(59,60,56,0.05);*/
}
.ui-datepicker {
  background: #ffffff;
  border-radius: 15px;
}
.ui-datepicker-header {
  height: 50px;
  line-height: 50px;
  color: #ffffff;
  background: var(--primary-color);
  margin-bottom: 10px;
}
.ui-datepicker-prev,
.ui-datepicker-next {
  width: 20px;
  height: 20px;
  text-indent: 9999px;
  border-radius: 100%;
  cursor: pointer;
  overflow: hidden;
  margin-top: 12px;
}
.ui-datepicker-prev {
  float: left;
  margin-left: 12px;
}
.ui-datepicker-prev:after {
  transform: rotate(45deg);
  margin: -43px 0px 0px 8px;
}
.ui-datepicker-next {
  float: right;
  margin-right: 12px;
}
.ui-datepicker-next:after {
  transform: rotate(-135deg);
  margin: -43px 0px 0px 6px;
}
.ui-datepicker-prev:after,
.ui-datepicker-next:after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
.ui-datepicker-prev:hover,
.ui-datepicker-next:hover,
.ui-datepicker-prev:hover:after,
.ui-datepicker-next:hover:after {
  border-color: #333333;
}
.ui-datepicker-title {
  text-align: center;
  font-size: 25px;
}
.ui-datepicker-calendar {
  width: 100%;
  text-align: center;
}
.ui-datepicker-calendar thead tr th span {
  display: block;
  width: 40px;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 18px;
}
.ui-state-default {
  display: block;
  text-decoration: none;
  color: #333333;
  line-height: 40px;
  font-size: 16px;
}
.ui-state-default:hover {
  color: #ffffff;
  background: var(--primary-color);
  border-radius: 50px;
  transition: all 0.25s cubic-bezier(0.7, -0.12, 0.2, 1.12);
}
.ui-state-highlight {
  color: #ffffff;
  background-color: var(--primary-color);
  border-radius: 50px;
}
/* } */
.ui-state-active {
  color: #ffffff;
  background-color: var(--primary-color);
  border-radius: 50px;
}
.ui-datepicker-unselectable .ui-state-default {
  color: #eee;
  border: 2px solid transparent;
}

.icon {
  margin-left: -30px;
  margin-top: -26px;
  position: relative;
  color: var(--primary-color);
  font-size: 20px;
}

/* loader */
.nb-spinner {
  width: 75px;
  height: 75px;
  margin: 0;
  background: transparent;
  border-top: 4px solid #009688;
  border-right: 4px solid transparent;
  border-radius: 50%;
  -webkit-animation: 1s spin linear infinite;
  animation: 1s spin linear infinite;

}
.loader{
  position: fixed;
  left: 0%;
  top: 0%;
  /* transform: translate(-50%, -50%); */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,0.5);
  z-index: 999;
}
-webkit-@keyframes spin {
  -webkit-from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  -webkit-to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.modal{
  display:none;
  position:fixed;
  left:0; top:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.6);
  justify-content:center;
  align-items:center;
}

.modal-content{
  background:#fff;
  padding:20px;
  width:320px;
}

.close{
  float:right;
  cursor:pointer;
}
#enquire-now .text-danger{
  font-size: 12px;
}
.btn-enquire{
  padding: 5px 40px 5px;
  margin-top:20px;
}
#enquire-now .modal-title{
    font-size: 16px;
    color: var(--secondary-color);
}
#enquire-now .form-control {
    font-size: 12px;
}
#enquire-now #ServiceType{
   font-size: 12px;
    color: #495057;
}

#enquire-now .modal-dialog {
  max-width: 500px;
  margin: auto;
}
/* body {
  overflow-x:hidden;
}
body.modal-open {
  padding-right: 0 !important;
}
.modal-dialog {
  margin: 1.75rem auto !important;
}
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
} */