.top_header {
  background-color: #c6a278;
  padding: 0px 0;
  color: #fff;
}
.top_header .top_h_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top_header .top_h_flex .language {
  display: flex;
  align-items: center;
}
.top_header .top_h_flex .language .globe_icon {
  display: flex;
  align-items: center;
  margin-right: 2rem;
}
@media only screen and (max-width: 767px) {
  .top_header .top_h_flex .language .globe_icon {
    margin-right: 0;
  }
}
.top_header .top_h_flex .language .globe_icon img {
  margin-right: 8px;
}
@media only screen and (max-width: 767px) {
  .top_header .top_h_flex .language .globe_icon img {
    margin-right: 0;
  }
}
.top_header .top_h_flex .language .globe_icon p {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .top_header .top_h_flex .language .globe_icon p {
    display: none;
  }
}
.top_header .top_h_flex .language .l_links a {
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  padding: 0px 10px;
}

.log_section {
  text-align: center;
  padding: 15px 0;
  border-bottom: 1px solid #eae9e9;
}
@media only screen and (max-width: 767px) {
  .log_section {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .log_section img {
    max-width: 100px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 37%;
    bottom: -9px;
  }
}

.fixed-top {
  top: -40px;
  transform: translateY(40px);
  transition: transform 0.3s;
  background: #fff;
  box-shadow: 0px 2px 10px #ddd;
}

.fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  transition: transform 0.3s;
  background: #fff;
  box-shadow: 0px 2px 10px #ddd;
  width: 100%;
  /* padding-right: 7%; */
  padding-left: 2%;
  /* top: -40px; */
  transform: translateY(20px);
  max-width: 1440px;
  margin: auto;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .fixed {
    transform: none;
  }
}

.chin_darsh {
  position: relative;
  /* ============ mobile view ============ */
  /* ============ mobile view .end// ============ */
}
.chin_darsh .hamburger_icon {
  width: 60px;
}
.chin_darsh body.offcanvas-active {
  overflow: hidden;
}
.chin_darsh .offcanvas-header {
  display: none;
}
@media all and (max-width: 991px) {
  .chin_darsh .offcanvas-header {
    display: block;
  }
}
.chin_darsh .screen-darken {
  height: 100%;
  width: 0%;
  z-index: 30;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(34, 34, 34, 0.6);
  transition: opacity 0.2s linear, visibility 0.2s, width 2s ease-in;
}
.chin_darsh .screen-darken.active {
  z-index: 10;
  transition: opacity 0.3s ease, width 0s;
  opacity: 1;
  width: 100%;
  visibility: visible;
}
@media all and (max-width: 991px) {
  .chin_darsh .mobile-offcanvas {
    visibility: hidden;
    transform: translateX(-100%);
    border-radius: 0;
    display: block;
    position: fixed;
    background: #57ccf8;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1200;
    width: 80%;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  .chin_darsh .mobile-offcanvas .nav-link {
    color: #fff !important;
    font-size: 20px;
  }
  .chin_darsh .mobile-offcanvas.show {
    visibility: visible;
    transform: translateX(0);
    overflow-y: auto;
  }
  .chin_darsh .mobile-offcanvas .container,
  .chin_darsh .mobile-offcanvas .container-fluid {
    display: block;
  }
}
.chin_darsh .navbar_container .navbar-nav {
  display: flex;
  justify-content: space-between;
}
.chin_darsh .navbar_container .navbar-nav .nav-item {
  position: relative;
}
.chin_darsh .navbar_container .navbar-nav .nav-item:after {
  content: "";
  background: #ededed;
  height: 48%;
  width: 2px;
  top: 50%;
  transform: translate(-50%, -50%);
  right: -50px;
  position: absolute;
}
.chin_darsh .book_my_button {
  margin: 0 5rem;
  margin-right: 3rem;
}
@media only screen and (max-width: 767px) {
  .chin_darsh .book_my_button {
    margin: 0 20px;
  }
}
.chin_darsh .book_my_button a {
  border: 1px solid #57ccf8;
  border-radius: 30px;
  padding: 7px 15px;
  color: #fff;
  font-size: 16px;
  transition: 0.5s all;
  background-color: #57ccf8;
  animation: shadow-drop-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate-reverse both;
}
.chin_darsh .book_my_button a:hover {
  background-color: #e9b64e;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .chin_darsh .book_my_button a {
    padding: 3px 7px;
    font-size: 12px;
  }
}

/**
 * ----------------------------------------
 * animation shadow-drop-center
 * ----------------------------------------
 */
@keyframes shadow-drop-center {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 125, 101, 0);
  }
  100% {
    box-shadow: 0 0 20px 0px rgba(40, 125, 101, 0.9);
  }
}
/**
 * ----------------------------------------
 * animation shadow-drop-center-theme
 * ----------------------------------------
 */
@keyframes shadow-drop-center-theme {
  0% {
    box-shadow: 0 0 0 0 rgba(233, 182, 78, 0);
  }
  100% {
    box-shadow: 0 0 20px 0px rgba(233, 182, 78, 0.9);
  }
}
.dropdown-item:active {
  background-color: #57ccf8 !important;
}
.dropdown-item:hover {
  background-color: #57ccf8 !important;
  color: #fff !important;
}

.btn-close {
  opacity: 1;
}

.footer {
  background-color: #c6a278;
}
.footer .widget {
  text-align: center;
}
.footer .widget h1 {
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}
.footer .widget img {
  display: block;
  margin: auto;
  margin-top: 1rem;
}
.footer .widget p,
.footer .widget a {
  color: #fff;
}
.footer .widget a:hover {
  color: #fff;
}

.copyright {
  padding: 10px 0;
}
.copyright .copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .copyright .copy {
    flex-direction: column;
    gap: 10px;
  }
}
.copyright .copy p {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .copyright .copy p {
    font-size: 12px;
  }
}

#gotop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  cursor: pointer;
}
#gotop::after {
  content: url(../img/icons/back-to-top.png);
}
#gotop.show {
  opacity: 1;
  visibility: visible;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

section {
  padding-top: 50px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  section {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}

body {
  font-size: 18px;
  line-height: 28px;
  font-style: normal;
  font-weight: 400;
  visibility: visible;
  font-family: "PT Sans", sans-serif;
  color: #424242;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: normal;
  }
}

.mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .mobile {
    display: block;
  }
}

.desktop {
  display: block;
}
@media only screen and (max-width: 767px) {
  .desktop {
    display: none !important;
  }
}

.floating_btn {
  position: fixed;
  bottom: 55px;
  right: 0px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}
.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 50px;
  height: 50px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  margin-bottom: 0;
}

.text-justify {
  text-align: justify !important;
}

a {
  text-decoration: none;
  color: inherit;
}

.border_bottom {
  border-bottom: 1px solid;
}

.pos_relative {
  position: relative;
}

.com-button {
  background: #fff;
  color: #727475;
  font-size: 15px;
  padding: 10px 30px;
  border-radius: 30px;
  transition: 0.8s;
}
.com-button.green-button {
  background-color: #57ccf8;
  border-color: #57ccf8;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.com-button.green-button:hover {
  background-color: #fff;
  color: #57ccf8;
  border: 1px solid #57ccf8;
}
.com-button.banner_button {
  position: absolute;
  top: 62%;
  z-index: 999;
  left: 6%;
  color: #57ccf8;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .com-button.banner_button {
    padding: 3px 5px;
    font-size: 7px;
  }
}

.main_title {
  font-size: 40px;
  font-weight: 700;
  color: #696969;
}
@media only screen and (max-width: 767px) {
  .main_title {
    font-size: 25px;
  }
}

.main_title1 {
  font-size: 30px;
  font-weight: 700;
  color: #696969;
}
@media only screen and (max-width: 767px) {
  .main_title1 {
    font-size: 25px;
  }
}

.main_title_upper {
  color: #c6a278;
  text-transform: uppercase;
}

.carousel-control-next,
.carousel-control-prev {
  width: 5% !important;
}

#appointment_modal .modal-content {
  background-color: #57ccf8;
  border: 5px solid #fff;
  border-radius: 0;
  color: #fff;
  margin-top: 15%;
}
#appointment_modal .modal-content .form-control {
  border-radius: 0;
  color: #686f75;
}

.sticky-social {
  position: fixed;
  top: 100px;
  left: 0;
  padding: 0px;
  margin: 0px;
}
@media only screen and (max-width: 767px) {
  .sticky-social {
    top: 50%;
  }
}

.social {
  list-style: none;
  padding: 0;
}

.social li {
  padding: 10px 10px;
  font-size: 25px;
  transition: all 0.8s ease-in-out;
  background-color: #57ccf8;
}

.social li:hover {
  margin-right: -30px;
  box-shadow: 2px 5px 10px grey;
}

.social li:hover .fa {
  margin-left: 20px;
}

.fa {
  color: #fff;
  transition: all 0.8s ease-in-out;
}

.breadcrumb {
  background-image: url(../img/breadcrumb_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  color: #fff;
}
.breadcrumb .breadcrumb_title {
  font-weight: 700;
}
.breadcrumb .breadcrumb_link {
  text-transform: uppercase;
}
.breadcrumb .breadcrumb_link a {
  color: #fff;
}

.about_page {
  /* medium and up screens */
}
.about_page .about_details img {
  border-radius: 4px;
}
.about_page .statistics_counter {
  background-color: rgba(251, 223, 207, 0.2117647059);
}
.about_page .statistics_counter .counter {
  padding: 20px 0;
}
@media only screen and (max-width: 767px) {
  .about_page .statistics_counter .counter {
    padding: 25px 12px;
  }
}
.about_page .statistics_counter .counter .count-title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 10px;
  color: #e9b64e;
  margin-bottom: 0;
  text-align: center;
}
.about_page .statistics_counter .counter .count-title:after {
  content: "+";
  position: absolute;
  padding-left: 3px;
}
@media only screen and (max-width: 767px) {
  .about_page .statistics_counter .counter .count-title {
    font-size: 25px;
    position: relative;
  }
}
.about_page .statistics_counter .counter .count-text {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .about_page .statistics_counter .counter .count-text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .about_page .statistics_counter .counter img {
    width: 50px;
  }
}
.about_page .vision_mission .nav-pills {
  width: 25%;
}
@media only screen and (max-width: 767px) {
  .about_page .vision_mission .nav-pills {
    width: revert;
  }
}
.about_page .vision_mission .nav-pills .nav-link {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0%;
  margin: 4px;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .about_page .vision_mission .nav-pills .nav-link {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .about_page .vision_mission .nav-pills .nav-link img {
    width: 18px;
    margin-right: 10px;
  }
}
.about_page .vision_mission .nav-pills .nav-link.active {
  background-color: #fff !important;
  border-bottom: 3px solid #57ccf8;
  color: #57ccf8;
}
.about_page .vision_mission .tab-content {
  width: 75%;
}
.about_page .vision_mission .tab-content .heading {
  font-weight: 700;
}
.about_page .team .team_block {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}
.about_page .team .team_block .our-team {
  text-align: center;
  position: relative;
  color: #fff;
}
.about_page .team .team_block .our-team img {
  width: 100%;
  height: 100%;
}
.about_page .team .team_block .our-team .content {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  text-align: center;
  padding-top: 45%;
  transform: perspective(400px) rotateX(-90deg);
  transform-origin: center top 0;
  transition: all 0.5s ease 0s;
  opacity: 0;
}
.about_page .team .team_block .our-team .content .title {
  margin: 0 0 10px;
  display: block;
  font-size: 25px;
  font-weight: 600;
}
.about_page .team .team_block .our-team .content .post {
  margin: 0 0 25px;
  display: block;
  font-size: 15px;
}
.about_page .team .team_block .our-team:hover .content {
  opacity: 1;
  transform: perspective(400px) rotateX(0deg);
}
.about_page .team .team_block .our-team.active .social li a {
  border-radius: 50%;
  text-decoration: none;
}
.about_page .team .team_block .our-team.active .content {
  opacity: 1;
  transform: perspective(400px) rotateX(0deg);
}
.about_page .team .team_block .our-team .social {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.about_page .team .team_block .our-team .social li {
  display: inline-block;
}
.about_page .team .team_block .our-team .social li a {
  display: block;
  color: #fff;
  font-size: 20px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 0;
  background-color: #e9b64e;
  margin-right: 5px;
  transition: all 0.5s ease 0s;
  position: relative;
}
.about_page .team .team_block .our-team .social li a:hover {
  border-radius: 50%;
  text-decoration: none;
}
.about_page .team .team_block .our-team .social li img {
  width: 15px;
  height: 15px;
}
.about_page .team .team_block .member_details {
  padding: 10px;
}
.about_page .team .team_block .member_details .member_name {
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .about_page .team .team_block .member_details .member_name {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .about_page .team .team_block .member_details .member_position {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .about_page .carousel-inner .carousel-item > div {
    display: none;
  }
  .about_page .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}
.about_page .carousel-inner .carousel-item.active,
.about_page .carousel-inner .carousel-item-next,
.about_page .carousel-inner .carousel-item-prev {
  display: flex;
}
@media (min-width: 768px) {
  .about_page .carousel-inner .carousel-item-end.active,
  .about_page .carousel-inner .carousel-item-next {
    transform: translateX(25%);
  }
  .about_page .carousel-inner .carousel-item-start.active,
  .about_page .carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
  }
}
.about_page .carousel-inner .carousel-item-end,
.about_page .carousel-inner .carousel-item-start {
  transform: translateX(0);
}

.services_page .service_text .rose_img_top_left {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: -34px;
}
@media only screen and (max-width: 767px) {
  .services_page .service_text .rose_img_top_left {
    width: 65px;
  }
}
.services_page .service_text .rose_img_bottom_right {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: -60px;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .services_page .service_text .rose_img_bottom_right {
    width: 65px;
    bottom: -25px;
  }
}
.services_page .all_services .service_block {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  padding: 20px;
  height: 100%;
  transition: 1s all;
}
.services_page .all_services .service_block .service_title {
  font-weight: 700;
  font-size: 24px;
}
.services_page .all_services .service_block:hover {
  background-color: #57ccf8;
  color: #fff;
  transform: translateY(-10px);
}
.services_page .all_services .service_block:hover img {
  filter: brightness(0) invert(1);
}
.services_page .all_services .service_block:hover .icon_block {
  background-color: #fff;
}
.services_page .all_services .service_block:hover .icon_block img {
  filter: none;
}
.services_page .all_services .service_block .icon_block {
  background: #57ccf8;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin-bottom: 5px;
}
.services_page .all_services .service_block .icon_block img {
  filter: brightness(0) invert(1);
}
.services_page .all_services .service_block a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
}
.services_page .all_services .service_block a:hover {
  color: inherit;
}
.services_page .all_services .corner_img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100%;
  height: 300px;
}

.service_details_page .service_details .service_title {
  font-size: 40px;
  font-weight: 700;
}
.service_details_page .service_details .service_title1 {
  font-size: 30px;
  font-weight: 700;
}
.service_details_page .service_details .service_text {
  font-size: 18px;
}
.service_details_page .service_types .nav-link {
  text-transform: uppercase;
  font-size: 24px;
  color: inherit;
  border: none;
}
.service_details_page .service_types .nav-link.active {
  font-weight: 700;
  border-bottom: 3px solid #94c4ca;
}
.service_details_page .service_types .accordion-header .accordian-button {
  background-color: #57ccf8 !important;
  color: #fff !important;
}
.service_details_page .service_types .accordion-body {
  padding: 0px;
}
.service_details_page .service_types .accordion-item {
  border: none;
  margin-top: 25px;
}
@media (max-width: 991px) {
  .service_details_page .service_types .tab-content > .tab-pane {
    display: block;
    opacity: 1;
  }
}
.service_details_page .main_tabs .nav-item .nav-link {
  color: #000;
  font-size: 21px;
  text-transform: uppercase;
}
.service_details_page .main_tabs .nav-item .nav-link.active {
  font-weight: 700;
}
.service_details_page .features .nav-item {
  margin: 5px;
}
.service_details_page .features .nav-item .nav-link {
  border: 2px solid;
  border-radius: 0px;
  color: #57ccf8;
  padding: 10px;
  font-size: 24px;
}
.service_details_page .features .nav-item .nav-link.active {
  background-color: #57ccf8;
  color: #fff;
}
.service_details_page .features .listing_mark {
  background: #57ccf8;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-right: 5px;
  border-radius: 50%;
}
.service_details_page .features .check_list {
  list-style-type: none;
  margin-left: 10px;
}
.service_details_page .features .check_list li {
  position: relative;
  margin-bottom: 20px;
}
.service_details_page .features .check_list li:before {
  content: "";
  position: absolute;
  background: url("../img/services/service_details/check_mark.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  left: -47px;
  width: 38px;
  height: 38px;
  top: -2px;
}

.blog_page .blog_block {
  background-color: #f9ecdb;
  padding: 20px;
  height: 100%;
}
.blog_page .blog_block a:hover {
  color: #57ccf8;
}
.blog_page .blog_block img {
  border: 12px solid #fff;
  min-height: 405px;
  max-height: 405px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog_page .blog_block .blog_title {
  margin-top: 12px;
  font-size: 21px;
  font-weight: 700;
}
.blog_page .blog_block .blog_border {
  color: #e9b64e;
  margin-left: auto;
  margin-right: auto;
  width: 78%;
  border-top: 2px solid;
}
.blog_page .blog_block .blog_date {
  margin-top: 12px;
  font-size: 16px;
  color: #c6865e;
  margin-bottom: 18px;
  font-weight: 700;
}
.blog_page .pagination {
  display: flex !important;
  justify-content: center !important;
  margin-top: 5%;
  --bs-pagination-active-bg: #ffd233;
}
.blog_page .pagination .page-link {
  color: inherit;
}

.blog_details_page .blog_title {
  font-size: 40px;
}
.blog_details_page .blog_date {
  font-size: 18px;
  color: #c6865e;
}
.blog_details_page .blog_details {
  margin-top: 5px;
}
.blog_details_page .sidebar .sidebar_heading {
  text-transform: uppercase;
  font-weight: 700;
}
.blog_details_page .sidebar .thumb_blog_title {
  font-size: 18px;
  font-weight: 700;
}
.blog_details_page .sidebar .thumb_blog_text {
  font-size: 18px;
}
.blog_details_page .sidebar .thumb_blog_date {
  font-size: 18px;
  color: #c6865e;
}
.blog_details_page .article_section .recent_article_heading {
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 700;
}
.blog_details_page .article_section .article_block .article_title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 5px;
}
.blog_details_page .article_section .article_block .article_text {
  font-size: 18px;
}
.blog_details_page .article_section .article_block .article_by {
  font-size: 18px;
  color: #096a4f;
}
.blog_details_page .article_section .article_block .article_by span {
  color: #c6865e;
}
.blog_details_page .article_section .article_block .article_date {
  font-size: 18px;
  color: #c6865e;
}

.gallery_page #gallery {
  max-width: 1200px;
  margin: auto;
}
.gallery_page #gallery ul {
  list-style: none;
}
.gallery_page #gallery ul img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .gallery_page #gallery .galleryfilter {
    font-size: 11px;
  }
}
.gallery_page #gallery .galleryfilter ul {
  list-style: none;
}
.gallery_page #gallery .galleryfilter ul img {
  max-width: 100%;
  height: auto;
}
.gallery_page #gallery .galleryfilter .filter-menu {
  margin-bottom: 20px;
  text-align: center;
}
.gallery_page #gallery .galleryfilter .filter-menu li {
  display: inline-block;
  padding: 10px 18px;
  background: #57ccf8;
  color: #fff;
  cursor: pointer;
}
.gallery_page #gallery .galleryfilter .filter-menu li:hover, .gallery_page #gallery .galleryfilter .filter-menu li.current {
  background: #e9b64e;
  color: #000;
  font-weight: bold;
}
.gallery_page #gallery .filter-item {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 0px;
       column-gap: 0px;
  padding: 0px;
}
.gallery_page #gallery .filter-item li {
  padding: 2px;
}
.gallery_page #gallery .filter-item li.active {
  padding: 2px;
  transition: all 0.5s ease;
}
.gallery_page #gallery .filter-item li.delete {
  width: 0%;
  height: 0px;
  padding: 0;
  transition: all 0.5s ease;
}
.gallery_page #gallery .filter-item img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery_page #gallery .filter-item .img_container {
  position: relative;
}
.gallery_page #gallery .filter-item .img_container .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(40, 125, 101, 0.7215686275);
  overflow: hidden;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: 0.3s ease;
}
.gallery_page #gallery .filter-item .img_container:hover .overlay {
  transform: scale(1);
}
.gallery_page #gallery .filter-item .img_container .overlay_content {
  color: #e9b64e;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.gallery_page #gallery .filter-item .img_container .overlay_content img {
  max-width: 40px;
  margin: auto;
}

.fancybox__thumbs {
  display: none;
}

.contact_page .contact_section {
  background-color: #297f66;
}
.contact_page .contact_section .contact_form_title {
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
}
.contact_page .contact_section .form-control {
  border-radius: 0px;
  background-color: #d9d9d9;
}
.contact_page .contact_section .contact_btn {
  background-color: #e9b64e;
  border-radius: 0px;
  text-transform: capitalize;
}
.contact_page .contact_section .contact_btn img {
  background-color: #57ccf8;
  padding: 5px;
}
.contact_page .contact_details .contact_block {
  background-color: #f5f5f5;
  padding: 20px;
  height: 100%;
}
.contact_page .contact_details .contact_block .contact_heading {
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
}
.contact_page .contact_details .contact_block .contact_data {
  color: #57ccf8;
  font-weight: 700;
}
.contact_page .contact_details .contact_block .contact_text {
  font-size: 18px;
  margin-top: 5px;
}
.contact_page iframe {
  margin-top: -16px;
}

.overlay_effect,
.overlay_effect_slide {
  overflow: hidden;
}

.overlay_effect img {
  transition-duration: 4s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-property: transform;
  width: 100%;
  height: 100%;
  min-height: 600px;
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .overlay_effect img {
    min-height: 100%;
  }
}

.overlay_effect_in {
  overflow: hidden;
  position: relative;
  transform: translate3d(-100.5%, 0, 0);
  transform-origin: left;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-property: transform;
  transition-delay: 0s;
}
.overlay_effect_in:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #57ccf8;
  transform: scaleX(1);
  transform-origin: right;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-property: transform;
  transition-delay: 0.4s;
}

.overlay_effect.is_show .overlay_effect_in {
  transform: translate3d(0, 0, 0);
}
.overlay_effect.is_show .overlay_effect_in:before {
  transform: scale(0, 1);
}

/* ============ only desktop view ============ */
/* ============ desktop view .end// ============ */
@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }
  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    margin-top: 0;
  }
  .navbar .nav-item:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }
  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }
}
.blogS {
  padding-top: 0px !important;
}

.before_after_all_page .pagination {
  --bs-pagination-color: #000;
}
.before_after_all_page .pagination .active > .page-link,
.before_after_all_page .pagination .page-link.active {
  background: #57ccf8 !important;
  border: none;
}

#youtube-slider .swiper-wrapper {
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #youtube-slider .swiper-wrapper {
    justify-content: start;
  }
}
#youtube-slider .swiper-button-next,
#youtube-slider .swiper-button-prev {
  color: #57ccf8;
}

.jcc {
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .jcc {
    justify-content: start;
  }
}

.whitecardheading1 {
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 42px;
  color: #464158;
  /* 	    margin-top: 20px; */
}

.map-links ul {
  padding: 0px;
  list-style: none;
  margin: 0px;
}

.map-links li {
  margin: 15px 0px;
}

.subtitleparagraph {
  font-style: normal;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 23px;
  color: #464158;
  margin-bottom: 0px;
}

.map-links a {
  color: #57ccf8;
  text-decoration: none;
  font-weight: 900;
}

p.uviews {
  padding: 1rem 0;
}

.galleryfilter.filters ul.filter-menu li.active {
  background: #e9b64e !important;
  color: #000 !important;
  font-weight: bold;
}

.hoveringeffect:hover {
  color: white;
}

.main-banner {
  position: relative;
}
.main-banner .mainBanner .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-banner .mainBanner .autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
}
.main-banner .mainBanner .autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: #fff;
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
.main-banner .mainBanner .swiper-button-next,
.main-banner .mainBanner .swiper-button-prev {
  color: #57ccf8;
}
@media only screen and (max-width: 767px) {
  .main-banner .mainBanner .swiper-button-next:after,
  .main-banner .mainBanner .swiper-button-prev:after {
    font-size: 27px;
    font-weight: 900;
  }
}
.main-banner #main-swiper .swiper-wrapper {
  height: auto;
}
.main-banner #main-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .b-content h1 {
  animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.main-banner #main-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .b-content p {
  animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) 1s both;
}
.main-banner #main-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .b-content a {
  animation: fade-in-bottom 1s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s both;
}
.main-banner #main-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .banner-img {
  animation: puff-in-center 1s cubic-bezier(0.47, 0, 0.745, 0.715) both;
}
.main-banner #main-swiper .swiper-wrapper .swiper-slide .banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 12px;
}
@media only screen and (max-width: 767px) {
  .main-banner #main-swiper .swiper-wrapper .swiper-slide .banner-content {
    flex-direction: column-reverse;
    margin: 0;
  }
}
.main-banner #main-swiper .swiper-wrapper .swiper-slide .banner-content .b-content {
  padding-left: 8%;
  flex: 60;
}
@media only screen and (max-width: 767px) {
  .main-banner #main-swiper .swiper-wrapper .swiper-slide .banner-content .b-content {
    padding: 8%;
  }
}
.main-banner #main-swiper .swiper-wrapper .swiper-slide .banner-content .b-content h1 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .main-banner #main-swiper .swiper-wrapper .swiper-slide .banner-content .b-content h1 {
    font-size: 30px;
  }
}
.main-banner #main-swiper .swiper-wrapper .swiper-slide .banner-content .b-content p {
  color: #fff;
  text-shadow: 0px 4px 4px rgba(3, 103, 75, 0.2);
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 3rem;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .main-banner #main-swiper .swiper-wrapper .swiper-slide .banner-content .b-content p {
    font-size: 20px;
    margin-bottom: 2rem;
  }
}
.main-banner #main-swiper .swiper-wrapper .swiper-slide .banner-content .b-content p span {
  display: block;
}
@media only screen and (max-width: 767px) {
  .main-banner #main-swiper .swiper-wrapper .swiper-slide .banner-content .b-content p span {
    display: inline-block;
  }
}
.main-banner #main-swiper .swiper-wrapper .swiper-slide .banner-content .banner-img {
  flex: 40;
}
.main-banner #main-swiper .autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
}
.main-banner #main-swiper .autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: #fff;
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
.main-banner #main-swiper .swiper-button-next,
.main-banner #main-swiper .swiper-button-prev {
  color: #fff;
}

/* === book_appointment Form ===*/
.boo_app {
  background-color: #f8f7f2;
}
@media only screen and (max-width: 767px) {
  .boo_app {
    padding-bottom: 0;
  }
}
.boo_app .book_appointment form .form-control,
.boo_app .book_appointment form .form-select {
  border: none;
  border-bottom: 1px solid #a4a5a6;
  border-radius: 0;
  font-size: 14px;
  color: #727475;
  padding: 0;
  background-color: transparent;
  padding-left: 5px;
}
.boo_app .book_appointment form .form-control:focus,
.boo_app .book_appointment form .form-select:focus {
  box-shadow: none;
}
.boo_app .book_appointment form input[type=date]::-webkit-calendar-picker-indicator {
  color: rgba(0, 0, 0, 0);
  opacity: 1;
  display: block;
  background: url(../img/calendar.svg) no-repeat;
  width: 20px;
  height: 20px;
}
.boo_app .book_appointment form .book-button {
  text-align: center;
}

.abt-cont {
  padding: 0 5rem;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .abt-cont {
    padding: 1rem 0px;
  }
}
.abt-cont p {
  margin-bottom: 1rem;
}
.abt-cont .subp {
  text-transform: uppercase;
  color: #c6a278;
}

.elite-acc {
  border-color: #57ccf8;
}
.elite-acc .accordion-item {
  border: none;
}
.elite-acc .accordion-item .accordion-button {
  font-size: 22px;
  font-weight: 400;
  border: 1px solid #57ccf8;
  border-radius: 0 !important;
}
@media only screen and (max-width: 767px) {
  .elite-acc .accordion-item .accordion-button {
    padding: 5px 10px;
    font-size: 17px;
    align-items: center;
  }
}
.elite-acc .accordion-item .accordion-button:focus {
  box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .elite-acc .accordion-item .accordion-button .buicon {
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .elite-acc .accordion-item .accordion-button .buicon img {
    margin-right: 10px;
    max-width: 20px;
  }
}
.elite-acc .accordion-item .accordion-button:not(.collapsed) {
  background-color: #57ccf8;
  color: #fff;
  border: none;
}
.elite-acc .accordion-item .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.elite-acc .accordion-item .accordion-button:not(.collapsed):focus {
  box-shadow: none;
}
.elite-acc .accordion-item .accordion-button:not(.collapsed) .buicon {
  filter: brightness(0) invert(1);
}

/* ====Services ===*/
.parent {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .parent {
    flex-direction: column;
  }
}
.parent .subparentone {
  flex: 30%;
  display: flex;
}
.parent .subparentone .height-vh {
  flex: 100%;
}
.parent .subparentone .height-vh .services {
  height: 100%;
}
.parent .subparentone .height-vh .services img {
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .parent .subparentone .height-vh .services img {
    max-height: 250px;
  }
}
.parent .subparenttwo {
  flex: 70%;
  display: flex;
  flex-wrap: wrap;
}
.parent .subparenttwo .serve-ind {
  flex: 50%;
}

.nikum-dec .vd:first-child img {
  height: 100%;
  min-height: 529px;
  max-height: 529px;
  -o-object-fit: cover;
     object-fit: cover;
}

.services {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.services a {
  width: 100%;
  height: 100%;
}
.services:hover:before {
  content: "";
  position: absolute;
  background-color: #c6a278;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
}
.services:hover img {
  transform: scale(1.2);
}
.services:hover .serv-title svg {
  display: inline-block;
  transform: translateY(5px);
}
.services:hover .serv-title h2 {
  transform: translateY(5px);
}
.services img {
  transition: 1s all;
  max-height: 275px;
  min-height: 275px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .services img {
    min-height: 110px;
  }
}
.services .serv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
}
.services .serv-title svg {
  padding-bottom: 10px;
  display: none;
  transition: 1s all;
  transform: translateY(0px);
}
.services .serv-title h2 {
  font-size: 24px;
  color: #fff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transform: translateY(0px);
  transition: 1s all;
}
@media only screen and (max-width: 767px) {
  .services .serv-title h2 {
    font-size: 18px;
  }
}

/* ===== Video section==== */
.video-sec {
  background: linear-gradient(270deg, #dfbf99 0%, #dcbc96 11.67%, #d0af87 22.43%, #d4b694 51.04%, #d8bd9f 61.39%, #ead6be 77.99%, #faeddc 100%);
}
.video-sec .video-pop {
  position: relative;
}
.video-sec .video-pop .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*==== Values of elite ======*/
.va {
  background-color: #f9ecdb;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .va {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
.va .va-circle {
  border: 3px solid #fff;
  height: 500px;
  width: 500px;
  display: flex;
  border-radius: 50%;
  margin: auto;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.25), inset 0px 0px 7px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  .va .va-circle {
    border: 0px solid #fff;
    height: auto;
    width: 100%;
    display: block;
    border-radius: 0;
    margin: auto;
    box-shadow: none;
    padding-top: 15px;
  }
}
.va .va-circle .va-circle-title {
  background-color: #fff;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  transition: 0.5s all;
  animation: shadow-drop-center-theme 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite alternate-reverse both;
}
.va .va-circle .va-circle-title h1 {
  font-weight: 700;
  font-size: 30px;
  color: #696969;
  text-align: center;
}
.va .elite-list {
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .va .elite-list {
    position: inherit;
  }
}
.va .elite-list ul {
  list-style-type: none;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .va .elite-list ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
  }
}
.va .elite-list ul li {
  position: absolute;
  right: -760px;
  width: 497px;
  top: -30px;
}
@media only screen and (max-width: 767px) {
  .va .elite-list ul li {
    position: initial;
    width: 100%;
    margin-bottom: 1rem;
    max-width: 50%;
    flex: 0 0 auto;
  }
}
.va .elite-list ul li:nth-child(2) {
  top: 68px;
  right: -894px;
}
.va .elite-list ul li:nth-child(3) {
  top: 201px;
  right: -931px;
}
.va .elite-list ul li:nth-child(4) {
  top: 334px;
  right: -894px;
}
.va .elite-list ul li:nth-child(5) {
  top: 437px;
  right: -777px;
}
.va .elite-list ul li:nth-child(6) {
  left: -280px;
  top: 445px;
}
.va .elite-list ul li:nth-child(6) .feature-box .fbox-icon {
  margin-right: 0;
  margin-left: 26px;
}
@media only screen and (max-width: 767px) {
  .va .elite-list ul li:nth-child(6) .feature-box .fbox-icon {
    margin-left: 0;
    margin-right: 11px;
  }
}
.va .elite-list ul li:nth-child(6) .feature-box .fbox-content {
  order: -1;
  display: flex;
  flex-direction: column;
  text-align: right;
  margin-top: 11px;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .va .elite-list ul li:nth-child(6) .feature-box .fbox-content {
    order: 1;
    text-align: center;
    margin-top: 0px;
  }
}
.va .elite-list ul li:nth-child(7) {
  top: 357px;
  left: -413px;
}
.va .elite-list ul li:nth-child(7) .feature-box .fbox-icon {
  margin-right: 0;
  margin-left: 11px;
}
@media only screen and (max-width: 767px) {
  .va .elite-list ul li:nth-child(7) .feature-box .fbox-icon {
    margin-left: 0;
    margin-right: 11px;
  }
}
.va .elite-list ul li:nth-child(7) .feature-box .fbox-content {
  order: -1;
  display: flex;
  flex-direction: column;
  text-align: right;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .va .elite-list ul li:nth-child(7) .feature-box .fbox-content {
    order: 1;
    text-align: center;
  }
}
.va .elite-list ul li:nth-child(8) {
  top: 217px;
  left: -458px;
}
.va .elite-list ul li:nth-child(8) .feature-box .fbox-icon {
  margin-right: 0;
  margin-left: 11px;
}
@media only screen and (max-width: 767px) {
  .va .elite-list ul li:nth-child(8) .feature-box .fbox-icon {
    margin-left: 0;
    margin-right: 11px;
  }
}
.va .elite-list ul li:nth-child(8) .feature-box .fbox-content {
  order: -1;
  display: flex;
  flex-direction: column;
  text-align: right;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .va .elite-list ul li:nth-child(8) .feature-box .fbox-content {
    order: 1;
    text-align: center;
  }
}
.va .elite-list ul li:nth-child(9) {
  top: 70px;
  left: -426px;
}
.va .elite-list ul li:nth-child(9) .feature-box .fbox-icon {
  margin-right: 0;
  margin-left: 11px;
}
@media only screen and (max-width: 767px) {
  .va .elite-list ul li:nth-child(9) .feature-box .fbox-icon {
    margin-left: 0;
    margin-right: 11px;
  }
}
.va .elite-list ul li:nth-child(9) .feature-box .fbox-content {
  order: -1;
  display: flex;
  flex-direction: column;
  text-align: right;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .va .elite-list ul li:nth-child(9) .feature-box .fbox-content {
    order: 1;
    text-align: center;
  }
}
.va .elite-list ul li:nth-child(10) {
  top: -30px;
  left: -282px;
}
.va .elite-list ul li:nth-child(10) .feature-box .fbox-icon {
  margin-right: 0;
  margin-left: 30px;
}
@media only screen and (max-width: 767px) {
  .va .elite-list ul li:nth-child(10) .feature-box .fbox-icon {
    margin-left: 0;
    margin-right: 11px;
  }
}
.va .elite-list ul li:nth-child(10) .feature-box .fbox-content {
  order: -1;
  display: flex;
  flex-direction: column;
  text-align: right;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .va .elite-list ul li:nth-child(10) .feature-box .fbox-content {
    order: 1;
    text-align: center;
  }
}
.va .elite-list ul li .feature-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .va .elite-list ul li .feature-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.va .elite-list ul li .feature-box .fbox-icon {
  width: 80px;
  height: 80px;
  padding: 0 0.75rem;
  margin-right: 11px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  .va .elite-list ul li .feature-box .fbox-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.8rem;
  }
}
.va .elite-list ul li .feature-box .fbox-content {
  flex-basis: 0;
  flex-grow: 1;
  min-width: 0;
  width: 100%;
  padding: 0 0.75rem;
  max-width: 70%;
}
@media only screen and (max-width: 767px) {
  .va .elite-list ul li .feature-box .fbox-content {
    padding-right: 0.75rem;
    max-width: 100%;
  }
}
.va .elite-list ul li .feature-box .fbox-content h3 {
  font-weight: 700;
  font-size: 22px;
  color: #e9b64e;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .va .elite-list ul li .feature-box .fbox-content h3 {
    font-size: 17px;
    margin-bottom: 4px;
  }
}
.va .elite-list ul li .feature-box .fbox-content p {
  font-size: 15px;
}

/*==== Start What People Say About Us ====*/
.wp-sa {
   
    background-image: url('../myimg/13.jpeg');
    -o-object-fit: cover;
    object-fit: cover;
    background-position: center;
    padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .wp-sa {
    background-image: url(../img/testimonialbg_mobile.webp);
    padding-bottom: 40px;
  }
}
.wp-sa .veri {
  padding-top: 1em;
  padding-bottom: 0em;
  position: relative;
  padding-left: 3rem;
}
@media only screen and (max-width: 767px) {
  .wp-sa .veri {
    padding-left: 0;
  }
}
.wp-sa .veri .swiper {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .wp-sa .veri .swiper {
    height: auto !important;
  }
}
.wp-sa .veri .swiper-slide {
  background: #fff;
  /* Center slide text vertically */
}
@media only screen and (max-width: 767px) {
  .wp-sa .veri .swiper-slide {
    text-align: center;
  }
}
.wp-sa .veri .swiper-slide .testimonial {
  display: flex;
  background-color: #fff;
  padding: 25px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .wp-sa .veri .swiper-slide .testimonial {
    flex-direction: column;
  }
}
.wp-sa .veri .swiper-slide .testimonial .testimonial-name {
  flex: 30;
  padding: 0 20px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}
.wp-sa .veri .swiper-slide .testimonial .testimonial-name img {
  max-width: 100px;
  margin: auto;
  border-radius: 50%;
  height: 100px;
}
@media only screen and (max-width: 767px) {
  .wp-sa .veri .swiper-slide .testimonial .testimonial-name img {
    max-width: 80px;
  }
}
.wp-sa .veri .swiper-slide .testimonial .testimonial-description {
  flex: 70;
}
.wp-sa .veri .arrows {
  position: absolute;
  top: 20px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .wp-sa .veri .arrows {
    top: 50%;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    z-index: 9;
    height: auto;
  }
}
.wp-sa .veri .arrows .arrowbtn {
  font-size: 20px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .wp-sa .veri .arrows .arrowbtn.prev img {
    transform: rotate(-90deg);
  }
  .wp-sa .veri .arrows .arrowbtn.next img {
    transform: rotate(-90deg);
  }
}
.wp-sa .feature-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .wp-sa .feature-image {
    position: relative;
    top: 0;
    transform: translateY(0%);
  }
}

/*==== Start Before After ====*/
.beer-slider {
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.beer-reveal[data-beer-label]:after,
.beer-slider[data-beer-label]:after {
  background-color: transparent;
  font-size: 20px;
  color: #fff;
  bottom: 15px;
  top: auto;
}

.beer-ready .beer-handle,
.beer-ready .beer-reveal {
  border-right: 1.5px solid #fff;
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .order-top {
    order: -1;
    display: flex;
  }
}

.befoaf .swiper-button-next {
  right: 5%;
  color: #57ccf8;
}
.befoaf .swiper-button-next:after {
  font-size: 25px;
}
.befoaf .swiper-button-prev {
  left: 4%;
  color: #57ccf8;
}
.befoaf .swiper-button-prev:after {
  font-size: 25px;
}
@media only screen and (max-width: 767px) {
  .befoaf {
    padding-top: 1rem;
  }
}

.slsm div:nth-child(4) .services img {
  max-height: 100%;
}

.beer-slider:hover .beer-handle {
  transform: scale(1.2);
  margin-left: -24px;
  margin-top: -13px;
}
.beer-slider .beer-handle {
  transform-origin: center;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transform: scale(1);
  margin-left: -24px;
  margin-top: -13px;
}

/**
 * ----------------------------------------
 * animation fade-in-bottom
 * ----------------------------------------
 */
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation puff-in-center
 * ----------------------------------------
 */
@keyframes puff-in-center {
  0% {
    transform: scale(2);
    filter: blur(4px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}
.img {
    border-radius: 10px;
    border: 4px solid #c6a278;
}