@font-face {
  font-family: "EuclidFlex";
  src: url(../fonts/Rajdhani-SemiBold.ttf);
}

@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Rajdhani-Medium.ttf);
}

:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #1a1f24; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #485664; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0ea2bd; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #485664; /* The default color of the main navmenu links */
  --nav-hover-color: #0ea2bd; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #485664; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0ea2bd; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
.carousel-item .img-fluid {
  width: -webkit-fill-available;
  width: -moz-available;
}

body {
  font-family: "Montserrat";
}

h2 {
  font-family: "EuclidFlex";
  font-weight: 700;
  font-size: 30px;
}

::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
  background: #ebebeb;
}
/* p {
    font-size: 18px;
    line-height: 30px;
  } */

/* Handle */
::-webkit-scrollbar-thumb {
  background: #5299a6;
  border-radius: 10px;
}
/* navbar */
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 20px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 35%;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 15px;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 20px 0 0 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/* navbar end */

#preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
}

/* .sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%
} */
.footer-logo img {
  width: 150px;
}
.about-widget p{
  font-size: 16px;
  line-height: 26px;
}
.contact-info ul li{
  font-size: 16px;
}
.twitter-feed-widget h3 {
  font-size: 20px;
  color: #000;
}
/* .navbar-nav .nav-link.active, .navbar-nav .show>.nav-link{
   color: #fff; 
} */
/* .navbar-brand img{
  width:120px;
}    */
.navbar-nav li a {
  margin: 0 10px;
}

.offcanvas {
  flex-direction: row;
}

.module img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.project-specification {
  background-color: #f8f8f8;
  padding: 80px 16px;
}
.fixed-top {
  position: sticky !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.bg-white {
  background-color: #f9f9f9 !important;
}

@media (min-width: 769px) {
  .tabs1 {
    max-width: 950px;
    margin: 50px auto;
  }
  .offcanvas > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;

    background-color: #5299a6;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .offcanvas a:hover:before,
  .offcanvas li:hover > a:before,
  .offcanvas .active:before {
    visibility: visible;
    width: 70%;
  }
  .offcanvas li:hover > a,
  .offcanvas .active,
  .offcanvas .active:focus {
    color: #000;
  }
  .offcanvas a,
  .offcanvas a:focus {
    color: #000;
    padding: 0 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .offcanvas {
    flex-direction: column;
  }
  a.nav-link {
    padding: 10px 5px;
    text-align: center;
  }
  button.btn.btn-outline-success {
    margin: 10px 100px;
  }
  .navbar-nav .nav-link.active,
  .navbar-nav .show > .nav-link {
    text-align: center;
    /* padding: 10px 20px; */
    width: fit-content;
  }

  .offcanvas > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 8px;

    background-color: #000;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .offcanvas a:hover:before,
  .offcanvas li:hover > a:before,
  .offcanvas .active:before {
    visibility: visible;
    width: 70%;
  }
  .offcanvas li:hover > a,
  .offcanvas .active,
  .offcanvas .active:focus {
    color: #000;
  }
  .offcanvas a,
  .offcanvas a:focus {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
}

nav.navbar.navbar-expand-lg.bg-light.navbar-fixed-top {
  padding: 20px 0;
}
/* .active{
  background-color: #5299a6;
} */
.nav-item .active {
  background-color: transparent;
}
.Structure ul li {
  list-style: none;
}
.Structure h4 {
  padding-top: 10px;
}

.imgblink {
  position: fixed;
  bottom: 30px;
  left: 67px;
  width: 50px;
}
.nav-pills button {
  color: #000;
  margin: 5px 0px;
}
.nav-link:focus,
.nav-link:hover {
  color: #5299a6;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #5299a6;
  border-radius: 5px !important;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  margin: 0;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-weight: 400;
  font-size: 34px;
  margin-left: 2px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
    display: none;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* end global header */

.carousel-inner .carousel-item:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* background-color: rgba(26, 21, 14, .60)  */
}
.navbar-brand img {
  width: 150px;
}
.btn-outline-success {
  border: 1.5px solid #5299a6;
  --bs-btn-color: #1f2b45;
  --bs-btn-border-color: #5299a6;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5299a6;
  --bs-btn-hover-border-color: #5299a6;
  --bs-btn-focus-shadow-rgb: 25, 135, 84;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #5299a6;
  --bs-btn-active-border-color: #5299a6;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #5299a6;
  --bs-btn-disabled-bg: transparent;
  --bs-gradient: none;
}
/*--- banner -----------------*/

.banner-blk img {
  width: 100%;
  height: auto;
}
.banner-in {
  padding: 0px;
  margin: 0;
}
.banner-lt {
  position: relative;
  padding: 0;
}
.banner-in .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.ban-cnt ul {
  font-size: 0;
}
.ban-cnt ul li {
  display: inline-block;
  vertical-align: top;
  padding: 30px 15px;
  border-right: 1px solid #242424;
  text-align: center;
  width: 24%;
}
.ban-cnt ul li:last-child {
  border-right: 0 none;
}
.ban-cnt h6 {
  font-size: 30px;
  line-height: 35px;
  color: #242424;
  padding: 0 0 2px 0;
  font-weight: 500;
}
.ban-cnt h5 {
  font-size: 15px;
  line-height: 20px;
  color: #242424;
  padding: 30px 0 2px 0;
  font-weight: 500;
  text-align: center;
}
.ban-cnt h4 {
  font-size: 20px;
  color: #242424;
}
.ban-icon {
  background: #f8f8f8;
  padding: 60px 0;
}
.ban-icon h2 {
  text-align: center;
  padding: 0 0 30px 0;
  line-height: 28px;
}

.btn-blk a {
  background: #5299a6;
  color: #fff;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 22px;
  display: inline-block;
  text-decoration: none;
}
.banner-in .slick-prev {
  left: 6px;
  z-index: 999;
}
.banner-in .slick-next {
  right: 20px;
}
.slick-prev:before,
.slick-next:before {
  font-size: 33px;
}
.ban-cnt p {
  color: #000;
}
.btn-blk a:hover {
  background-color: #b89367;
  color: #fff;
}

/*---- project -----------*/
.project-blk {
  background: #f8f8f8;
  padding: 120px 0;
}

.project-rt {
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-rt ul {
  padding: 0 0 0 20px;
}
.project-rt h2 {
  padding: 0 0 5px 0;
}
.project-rt p {
  padding: 0 0 5px 0;
  text-align: justify;
}
.project-details {
  padding: 80px 0px;
}
.section-padding {
  padding: 80px 0px;
}
.layout-section {
  padding: 120px 0px;
}

/*---- amenities ----------------*/
.amenities-blk {
  padding: 80px 0;
}

.amenities-in h2 {
  text-align: center;
}
.amenities-in ul {
  font-size: 0;
}
.amenities-in ul li {
  display: inline-block;
  vertical-align: top;
  padding: 0 10px 20px;
  width: 20%;
}
.am-in {
  text-align: center;
}
.am-in img {
  width: auto;
  max-width: 40%;
  height: auto;
  display: inline-block;
}
.am-in h5 {
  padding: 20px 0 0 0;
  color: #000;
  font-size: 16px;
}

/*---- gallery -----------------*/
.gallery-blk {
  background: #fff;
  padding: 120px 0 0 0;
}

.gallery-in h2 {
  text-align: center;
  padding: 0 0 30px 0;
}

.gallery-in ul li {
  padding: 0 10px 20px;
  list-style: none;
}

.fancybox-caption {
  display: none;
}

/*--------------- location ------------*/
.location-blk {
  background: #f8f8f8;
  padding: 120px 0;
}

.location-blk h2 {
  text-align: center;
}
.location-in ul {
  padding: 0px 0 10px 0px;
  font-size: 0;
}
.location-in ul li {
  padding: 0 8px 20px 8px;
  font-size: 16px;
  line-height: 25px;
  width: 25%;
  display: inline-block;
  vertical-align: top;
}
.loc1 {
  text-align: center;
  background: #fff;
  padding: 25px 20px;
  min-height: 206px;
}
.loc1 img {
  width: 32%;
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.loc1 p {
  font-size: 14px;
  line-height: 20px;
}
.loc1 h6 {
  font-size: 25px;
  line-height: 34px;
  font-weight: 500;
  color: #000;
  padding-top: 20px;
}

/* Accordion ================================================== */

.acc__card {
  margin: 0 0 15px 0;
  position: relative;
}
.acc__title {
  background: #fff;
  color: #000;
  cursor: pointer;
  font-weight: 600;
  display: block;
  padding: 15px 20px;
  position: relative;
  text-align: left;
  border: 1px solid #5299a6;
}
.acc__title::after {
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  position: absolute;
  right: 10px;
  content: " ";
  top: 17px;
  transform: rotate(-45deg);
  transition: all 0.2s ease-in-out;
}
.acc__title.active::after {
  transform: rotate(45deg);
  transition: all 0.2s ease-in-out;
}
.acc__panel {
  background: #fff;
  color: #212121;
  display: none;
  margin: 0;
  padding: 16px 20px 12px;
  text-align: left;
}
.acc__panel ul {
  padding: 0 0 0 15px;
}
.acc__panel ul li {
  padding: 0 0 7px 0;
  list-style-type: disc;
}

/*--------------------------------------------------------------
#1.7	business-contact-section 
--------------------------------------------------------------*/
.business-contact-section {
  height: 100%;
  position: relative;
}

.business-contact-section:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.business-contact-section .container {
  position: relative;
}

.business-contact-section .business-section-title-s2 {
  text-align: left;
}

.business-contact-section .business-section-title-s2 h2,
.business-contact-section .business-section-title-s2 p {
  color: #fff;
}

.business-contact-section form .col {
  margin-bottom: 15px;
}

.business-contact-section form ::-webkit-input-placeholder {
  font-style: 16px;
  font-style: normal;
  color: #b2b2b2;
}

.business-contact-section form :-moz-placeholder {
  font-style: 16px;
  font-style: normal;
  color: #b2b2b2;
}

.business-contact-section form ::-moz-placeholder {
  font-style: 16px;
  font-style: normal;
  color: #b2b2b2;
}

.business-contact-section form :-ms-input-placeholder {
  font-style: 16px;
  font-style: normal;
  color: #b2b2b2;
}

.business-contact-section form input,
.business-contact-section form textarea {
  /* background-color: #fff; */

  border: 0;
  /* margin: 0px 10px; */
}

.business-contact-section form textarea {
  height: 120px;
}

@media (max-width: 991px) {
  .business-contact-section form button {
    font-size: 14px;
    font-size: 0.93333rem;
  }
}

.business-contact-section form button:hover {
  background-color: #9b7d73;
}

.business-contact-section form .submit-btn {
  margin-bottom: 0;
}

.business-contact-section .contact-location-map {
  height: 380px;
}

.site-footer .upper-footer {
  background-color: #fff;
  padding: 50px 0;
}
.site-footer {
  color: #000;
}
.about-widget p {
  color: #000;
}
.upper-footer {
  position: relative;
  z-index: 0;
}
.site-footer {
  background: #343434;
  color: #f1f2f3;
  font-size: 0.875rem;
}
.site-footer .upper-footer ul {
  list-style: none;
}
.site-footer .twitter-feed-widget i {
  color: #5299a6;
  display: inline-block;
  padding-right: 5px;
}
.site-footer .twitter-feed-widget a {
  text-decoration: none;
  color: #000;
  font-family: "Montserrat";
  font-size: 16px;
}
.contact-info li {
  color: #000;
}
.site-footer .twitter-feed-widget ul li + li {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid #1f2b45;
  font-size: 16px;
}
.copyright-area p{
 font-size: 16px;
}
.copyright-area a:hover{
  color:#1f2b45;
}
form label {
  font-family: "EuclidFlex";
  font-weight: 500;
}
.contact-panel ul li {
  font-family: "EuclidFlex";
  font-weight: 500;
}
.contact-panel h4 {
  font-family: "EuclidFlex" !important;
  font-weight: 500;
}
.contact__panel-form h6 {
  font-family: "EuclidFlex" !important;
  font-weight: 500;
}
.business-contact-section form button {
  background-color: #5299a6;

  justify-content: center;
  text-align: center;
  line-height: 38px;
  font-size: 16px;
  font-size: 1.06667rem;
  font-weight: 600;
  color: #fff;
  border: 0;
  outline: 0;
  margin: 10px;
}

.site-footer .copyright-info {
  background-color: #5299a6;
}
.copyright-area a {
  color: #fff;
}

@media (max-width: 991px) {
  .business-contact-section .contact-location-map {
    margin-bottom: 60px;
  }
}

.slideshow-container {
  img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.slick-dots {
  display: flex;
  justify-content: center;

  margin: 0;
  padding: 10px 0;

  list-style-type: none;

  li {
    margin: 5px;
  }

  button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #b89367;

    text-indent: -9999px;
  }

  li.slick-active button {
    background-color: #1f2b45;
  }
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;

  border-radius: 100%;
  background-color: #b89367;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* The dots/bullets/indicators */
.dot {
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
/* .active {
 background-color: #717171; 
 background-color: #5299a6;
border-radius: 5px; 
} */

.gallery-in img {
  border: 0;
  width: 100%;
  display: block;
  height: 250px !important;
  margin: 0;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px;
  }
}

.rab {
  background-color: transparent;
  height: 64px;
  width: 64px;
  border-radius: 32px;
  transition: height 300ms;
  transition-timing-function: ease;
  position: fixed;
  left: 25px;
  bottom: 30px;
  text-align: center;
  overflow: hidden;
  z-index: 4;
}

.rab:hover {
  height: 240px;
}

.rab:hover .mainop {
  transform: rotate(180deg);
}
#addIcon {
  width: 40px;
  padding: 10px 0 0;
}

.mainop {
  margin: auto;
  width: 64px;
  height: 64px;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: transform 300ms;
  background-color: #5299a6;
  border-radius: 32px;
  z-index: 6;
  border: 2px solid #fff;
}

.mainopShadow {
  width: 64px;
  height: 64px;
  border-radius: 32px;
  position: absolute;
  right: 50px;
  bottom: 50px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.mainop i {
  margin-top: 16px;
  font-size: 22px;
  color: #fff;
}

.minifab {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  z-index: 5;
  float: left;
  margin-bottom: 8px;
  margin-left: 8px;
  margin-right: 8px;
  background-color: blue;
  transition: box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.minifab:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.minifabIcon {
  color: #ffff;
  font-size: initial;
  padding-top: 15px;
}
.op1 {
  background-color: #2f82fc;
}

.op2 {
  background-color: #fb0;
}

.op3 {
  background-color: #25d366;
}

.op4 {
  background-color: #dd5145;
}

.op5 {
  background-color: #673ab7;
}

/* scroll to top */
.scroll-to-top {
  width: 50px;
  height: 50px;
  background: #1f2b45;
  position: fixed;
  bottom: 35px;
  right: 20px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
}

.scroll-to-top i {
  color: #fff;
  font-size: 18px;
  line-height: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  display: inline-block;
}

.scroll-to-top:hover {
  background-color: #000;
}

.scroll-to-top:hover i {
  color: #fff;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
  z-index: 1010;
}
.popup {
  margin: 30px auto;
  padding: 15px;
  border-radius: 5px;
  width: 50%;
  position: absolute;
  left: 35%;
  /* transition: all 5s ease-in-out; */
  top: 10%;
}
.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 35px;
  left: 25px;
  background: #5299a6;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  padding: 0px 5px;
}
.search {
  position: absolute;
  top: 19px;
  left: 45%;
  /* background: #ce00ff; */
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  padding: 0px 5px;
}

.popup .close:hover {
  color: #ffffff;
}
.popup .content {
  /*	max-height: 30%;
*/
  overflow: auto;
  border-top: 2px dashed #d1d6d8;
  margin-top: 16px;
  overflow: hidden;
}
.div1 {
  width: 50%;
  padding: 20px;
  /* float: left; */
  height: auto;
  background: #fff;
  border-radius: 25px;
}

.content h3 {
  text-align: center;
  margin: 15px 0 -1px 0;
  text-transform: uppercase;
  color: #00495d;
}
@media screen and (max-width: 1024px) {
  .box {
    width: 70%;
  }
  .popup {
    width: 100%;
    left: 5%;
  }
  .div1 {
    width: 90%;
    padding: 20px;
    float: left;
  }
}

/* sticky button */

#feedback1 {
  height: 0px;
  width: 85px;
  position: fixed;
  right: 0;
  top: 30%;
  z-index: 1000;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

#feedback1 a {
  display: block;
  background: url(pc.png) no-repeat;
  height: 52px;
  width: 155px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
}
#feedback1 a:hover {
  background: url(pc-over.png) no-repeat;
}

#feedback {
  height: 0px;
  width: 85px;
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 1000;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
#feedback a {
  display: block;
  /* background:#1f2b45; */
  background: #b89367;
  height: 52px;
  padding-top: 10px;
  width: 155px;
  text-align: center;
  color: #fff;
  font-family: "Montserrat";
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
}
#feedback a:hover {
  background: #1f2b45;
}

/* enquiry form */

#quickenquire input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;

  box-sizing: border-box;
}

#quickenquire label {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0px !important;
  margin: 0px !important;
}
#quickenquire input[type="submit"] {
  width: 100%;
  background-color: #5299a6;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 7px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#quickenquire input[type="submit"]:hover {
  background-color: #000000;
}
button {
  border: none;
  padding: 0;
}

/* .form-control,
.form-control:focus,
button,
button:focus {
outline: 0;
background-color: transparent;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none
} */

textarea {
  resize: none;
}
.mobile-view ul li button {
  margin: 0px 10px;
}
.mobile-layout {
  display: none;
}
.gallery-blk img {
  width: 100%;
  /* height: 250px !important; */
  padding: 10px 0px;
}
.am-in {
  margin-bottom: 15px;
}
.dot.active {
  background-color: #5299a6;
}
#navmenu ul li a {
  background-color: transparent;
}

.container-preloader {
  align-items: center;
  cursor: none;
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 900;
}
.container-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}
/* Spinner Loading */
.container-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 10px solid rgba(0, 0, 0, 0.2);
  border-top-color: #5299a6; /* It is not in alphabetical order so that you do not overwrite it */
  height: 5em;
  margin: 0 auto 3.5em auto;
  width: 5em;
}
/* Loading text */
.container-preloader .animation-preloader .txt-loading {
  font: bold 5em "Montserrat", sans-serif;
  text-align: center;
  user-select: none;
}
.container-preloader .animation-preloader .txt-loading .characters:before {
  animation: characters 4s infinite;
  color: #5299a6;
  content: attr(preloader-text);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotateY(-90deg);
}
.container-preloader .animation-preloader .txt-loading .characters {
  color: rgba(0, 0, 0, 0.2);
  position: relative;
}
.container-preloader
  .animation-preloader
  .txt-loading
  .characters:nth-child(2):before {
  animation-delay: 0.2s;
}
.container-preloader
  .animation-preloader
  .txt-loading
  .characters:nth-child(3):before {
  animation-delay: 0.4s;
}
.container-preloader
  .animation-preloader
  .txt-loading
  .characters:nth-child(4):before {
  animation-delay: 0.6s;
}
.container-preloader
  .animation-preloader
  .txt-loading
  .characters:nth-child(5):before {
  animation-delay: 0.8s;
}
.container-preloader
  .animation-preloader
  .txt-loading
  .characters:nth-child(6):before {
  animation-delay: 1s;
}
.container-preloader
  .animation-preloader
  .txt-loading
  .characters:nth-child(7):before {
  animation-delay: 1.2s;
}
.container-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
.container-preloader .loader-section.section-left {
  left: 0;
}
.container-preloader .loader-section.section-right {
  right: 0;
}
/* Fade effect on loading animation */
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
/* Curtain effect */
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}
.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}
/* Animation of the preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
/* Animation of letters loading from the preloader */
@keyframes characters {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
/* Laptop size back (laptop, tablet, cell phone) */
@media screen and (max-width: 767px) {
  /* Preloader */
  /* Spinner Loading */
  .container-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
  /* Text Loading */
  .container-preloader .animation-preloader .txt-loading {
    font: bold 3.5em "Montserrat", sans-serif;
  }
}
@media screen and (max-width: 500px) {
  /* Prelaoder */
  /* Spinner Loading */
  .container-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  /*Loading text */
  .container-preloader .animation-preloader .txt-loading {
    font: bold 1.5em "Montserrat", sans-serif;
  }
}
.origin {
  text-decoration: none;
  font-size: 45px;
}

/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.contact-info-box {
  margin-bottom: 30px;
}
.heading__title {
  font-size: 20px;
  color: #1f2b45;
  font-family: "EuclidFlex";
}
a {
  text-decoration: none;
}

.heading__subtitle {
  font-family: "EuclidFlex";
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin: 0;
}
.contact-info-box .contact__info-box-title {
  font-size: 17px;
  margin-bottom: 20px;
}

.contact-info-box .contact__info-list {
  margin-bottom: 50px;
}

.contact-info-box .contact__info-list li {
  font-size: 14px;
  margin-bottom: 9px;
}

.contact-info-box .contact__info-list li a {
  color: #9b9b9b;
}

.contact-info-layout2 .contact-info-box .contact__info-box-icon {
  flex: 0 0 80px;
}

.contact-info-layout2 .contact-info-box .contact__info-box-icon i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  display: block;
  color: #000;
  background-color: #804a32;
  font-size: 25px;
}

.contact-info-layout2 .contact-info-box .contact__info-box-title {
  margin-bottom: 10px;
}

.contact-info-layout2 .contact-info-box .contact__info-list li {
  margin-bottom: 2px;
}

.contact-info-layout2 .cta__banner {
  border-radius: 4px;
  max-width: 530px;
  padding: 50px 50px 50px 50px;
  margin-left: 20px;
  margin-top: -185px;
  z-index: 4;
  margin-bottom: 30px;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: none !important;
}

.contact-info-layout2 .cta__banner .cta__title {
  line-height: 1.4;
  margin-bottom: 17px;
}

.contact-info-layout2 .cta__banner .btn,
.contact-info-layout2 .cta__banner .cta__desc,
.contact-info-layout2 .cta__banner .cta__title {
  position: relative;
  z-index: 2;
}
.counters-layout2 {
  padding-bottom: 75px;
}
.contact-info-layout2 .cta__banner .btn i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  color: #804a32;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact-info-layout2 .cta__banner .btn:hover i {
  -webkit-transform: translateX(6px);
  -moz-transform: translateX(6px);
  -ms-transform: translateX(6px);
  -o-transform: translateX(6px);
  transform: translateX(6px);
}

.contact__number i {
  width: 45px;
  height: 45px;
  line-height: 43px;
  border-radius: 50%;
  text-align: center;
  border: 2px solid rgba(27, 26, 26, 0.25);
  font-size: 17px;
  margin-right: 13px;
}

.contact__number a {
  font-family: Barlow, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.contact-panel {
  box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.12);
  background-color: #ffffff66;
  backdrop-filter: blur(30px);

  margin: 50px 0px;
  padding: 5px 10px;
  border-radius: 5px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.contact-panel .contact__panel-info {
  flex: 0 0 34%;
  max-width: 34%;
  /* padding-bottom: 40px */
}

.contact-panel .contact__panel-info-top {
  background-color: #333;
  border-radius: 4px 4px 0 0;
  padding: 30px 30px 30px;
}

.contact-panel .contact__panel-info-top .contact-info-box:last-of-type {
  margin-bottom: 0;
}

.contact-panel .contact__panel-info-bottom {
  background-color: #000;
  border-radius: 0 0 4px 4px;
  padding: 30px 30px 30px;
}

.contact-panel .contact__panel-info-bottom .contact__panel-info-title {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  display: block;
  margin-bottom: 25px;
}

.contact-panel .contact-info-box .contact__info-list li {
  color: #fff;
  padding-bottom: 10px;
}

.contact-panel .contact-info-box .contact__info-list li a {
  color: #fff;
}

.contact-panel .contact-info-box .contact__info-box-title {
  color: #fff;
  margin-bottom: 11px;
}

.contact-panel .contact__number i {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.contact-panel .contact__number a {
  color: #fff;
}

.contact-panel .contact__panel-form {
  flex: 0 0 66%;
  max-width: 66%;
  padding-left: 30px;
  /* padding-bottom: 40px */
}

.contact-panel .contact__panel-title {
  font-size: 24px;
}

.contact-panel .contact__panel-desc {
  font-size: 15px;
  line-height: 25px;
}

.contact-panel .nice-select .list {
  width: 100%;
}

.google-map + .contact-layout1 {
  position: relative;
  z-index: 3;
  margin-top: -120px;
}

.contact-layout2 .contact-panel .contact__panel-info-bottom,
.contact-layout2 .contact-panel .contact__panel-info-top {
  background-color: #5299a6;
}

.contact-layout2 .contact__number i {
  border-color: rgba(255, 255, 255, 0.25);
}

.contact-layout3 .contact-panel .contact__panel-form {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 0;
  /* padding-bottom: 40px */
}

.contact-layout3 .contact-panel .contact__panel-info {
  background-color: #804a32;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 40px;
  border-radius: 3px;
}

.contact-layout3
  .contact-panel
  .contact__panel-info
  .contact__panel-info-title {
  display: block;
  color: #fff;
  margin-bottom: 23px;
}

.contact-layout3 .contact__number i {
  border-color: rgba(255, 255, 255, 0.25);
}

.contact-layout3 textarea.form-control {
  min-height: 140px;
}

.google-map-layout2 {
  z-index: 2;
}

.google-map-layout2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 140px;
  background-color: #161616;
}

.google-map-layout2 .contact-info-carousel {
  position: absolute;
  right: 50px;
  top: 50px;
  z-index: 4;
  width: 300px;
  padding: 50px 30px;
  text-align: center;
  background-color: #fff;
}

.google-map-layout2 .contact-info-carousel .contact__info-title {
  font-size: 15px;
  margin-bottom: 15px;
}

.google-map-layout2
  .contact-info-carousel
  .contact-info-box
  .contact__info-box-title {
  font-size: 22px;
  margin-bottom: 20px;
  color: #804a32;
}

.google-map-layout2
  .contact-info-carousel
  .contact-info-box
  .contact__info-list
  li:first-child {
  margin-bottom: 20px;
}

.google-map-layout2 .contact-info-carousel .slick-arrow {
  position: absolute;
  top: 100%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  color: #fff;
  background-color: #804a32;
}

.google-map-layout2 .contact-info-carousel .slick-arrow:hover {
  background-color: #1b1a1a;
}

.google-map-layout2 .contact-info-carousel .slick-arrow:before {
  font-size: 10px;
}

.google-map-layout2 .contact-info-carousel .slick-arrow.slick-next {
  right: 80px;
}

.google-map-layout2 .contact-info-carousel .slick-arrow.slick-next:before {
  content: "";
}

.google-map-layout2 .contact-info-carousel .slick-arrow.slick-prev {
  left: 80px;
}

.google-map-layout2 .contact-info-carousel .slick-arrow.slick-prev:before {
  content: "";
}

@media (min-width: 992px) and (max-width: 1200px) {
  .contact-panel {
    padding: 40px 20px 0;
  }
  .contact-panel:after {
    left: 20px;
    width: -webkit-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: -o-calc(100% - 40px);
    width: calc(100% - 40px);
  }
  .testimonial-one {
    padding: 0px 0px 60px !important;
  }
}

@media (min-width: 992px) {
  .contact-layout3 .contact-panel .contact__panel-info {
    padding: 50px;
    position: absolute;
    top: -110px;
  }
}

@media (max-width: 992px) {
  .contact-panel {
    background-color: #fff;
    padding: 20px;
    flex-direction: column;
  }
  .contact-panel:after {
    left: 20px;
    width: -webkit-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: -o-calc(100% - 40px);
    width: calc(100% - 40px);
  }
  .contact-panel .contact__panel-form,
  .contact-panel .contact__panel-info {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 20px;
    padding-left: 0;
  }
  .contact-info-layout2 .cta__banner {
    margin: 0;
  }
  .google-map-layout2 .contact-info-carousel {
    position: static;
    margin: 0 auto 30px;
    box-shadow: 0 5px 83px 0 rgba(40, 40, 40, 0.12);
  }
  .about-one {
    padding: 10px;
  }
  .about-pic-area {
    text-align: center;
    width: 100%;
  }
  .counter-one {
    padding: 60px 0px;
  }
  .contact-panel .contact__panel-title {
    padding: 10px 0px;
  }
  .main-menu__wrapper {
    padding: 20px 60px !important;
  }
  .testimonial-one {
    padding: 0px 0px 60px !important;
  }
  #feedback {
    top: 70% !important;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .contact-info-layout2 .cta__banner {
    padding: 20px;
  }
  .contact-panel .contact__panel-info-bottom,
  .contact-panel .contact__panel-info-top {
    padding: 20px;
  }
  .main-header__top {
    display: none;
  }
  .testimonial-one .section-title {
    margin-top: 10px;
  }
  .main-menu__wrapper {
    padding: 10px 40px !important;
  }
  .testimonial-one {
    padding: 60px 0px 60px !important;
  }
  .main-slider .container {
    margin: 100px 15px !important;
  }
  .main-slider .container {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .main-slider .swiper-slide-active .image-layer {
    background-size: cover;
  }
}
.form-group {
  position: relative;
  margin-bottom: 30px;
}
.form-control {
  height: 55px;
  border: 1px solid #f4f4f4;
  background-color: #f4f4f4;
  border-radius: 1px;
  padding: 0 0 0 20px;
  border-radius: 3px;
}
textarea.form-control {
  min-height: 105px;
  padding-top: 10px;
}
.main-menu__social a {
  margin: 0px 15px;
  color: #fff;
}
input,
textarea,
label {
  display: block;
}
input,
textarea {
  color: #000;
  font-weight: 500;
  background: transparent;
  border: none;
  border-bottom: 1px solid #8d8d8d !important;

  margin-bottom: 1rem;
  outline: none;
}
.group input {
  margin-bottom: 0px !important;
  margin: 0px 5px;
}
#message {
  width: 100%;
}
.Structure {
  padding: 10px 0px;
}

#callbook {
  background: none repeat scroll 0 0 #5299a6;
  bottom: 0;
  height: 48px;
  left: 0;
  position: fixed;
  display: none;
  right: 0;
  z-index: 10;
  -webkit-box-shadow: 0 2px 15px 0 #333;
  -moz-box-shadow: 0 2px 15px 0 #333;
  box-shadow: 0 2px 15px 0 #333;
}
#callbook a .fa {
  color: #fff !important;
  font-size: 26px;
}

#callbook > a {
  z-index: 300;
  float: left;
  line-height: 50px;
  text-align: center;
  width: 50%;
  text-decoration: none;
  font-size: 2em;
  text-transform: capitalize;
}

.actioncall {
  box-sizing: border-box;
  padding-right: 20px;
}

.actionbook {
  box-sizing: border-box;
  padding-left: 20px;
}

.callbook_logo {
  background-size: 100%;
  bottom: -15px !important;
  height: 62px !important;
  left: 50%;
  margin-left: -23px;
  position: absolute;
  width: 72px !important;
  z-index: 2;
}

#callbook > a > span.callbook-align {
  text-transform: uppercase;
}

.callbook_under {
  background: #5299a6;
  bottom: -10px;
  height: 70px;
  left: 50%;
  margin-left: -37px;
  position: absolute;
  width: 70px;
  border-radius: 5000px;
  -webkit-border-radius: 5000px;
  z-index: 1;
  -webkit-box-shadow: 0 2px 15px 0 #333;
  -moz-box-shadow: 0 2px 15px 0 #333;
  box-shadow: 0 2px 15px 0 #333;
}

.callbook-icona-telefono,
.callbook-icona-gallery,
.callbook-icona-offerte,
.callbook-icona-acquista,
.callbook-icona-mappa-localit,
.callbook-icona-info,
.callbook-icona-calendario {
  font-size: 25px;
}

.callbook-icona-busta-lettera {
  font-size: 46px !important;
  vertical-align: middle;
  padding-right: 5px;
}

.cb_powered a {
  display: none;
}

@media only screen and (min-width: 320px) and (max-width: 736px) {
  #callbook {
    display: inline !important;
  }

  .cb_powered a {
    bottom: 0;
    position: fixed;
    z-index: 300;
    font-size: 10px;
    display: inline !important;
    background-color: #df673b;
    width: 100%;
    text-align: center;
    height: 20px;
    padding-top: 5px;
    color: #000;
  }

  .cb_powered a:hover {
    color: #ec7a5c !important;
    text-decoration: none;
  }

  .actioncall {
    box-sizing: border-box;
    padding-right: 35px;
  }

  .actionbook {
    box-sizing: border-box;
    padding-left: 38px;
  }
}

.whatsapp {
  font-size: 40px;
}

.imgblink {
  position: fixed;
  bottom: 25px;
  left: 67px;
  width: 50px;
}

.whatsapp:hover {
  background: transparent;
}
/* Modal Overlay */
.sv-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

/* Modal Content */
.sv-content {
  background: #fff;
  border: 1px solid rgba(159, 128, 84, 0.35);
  box-shadow: 0 10px 28px rgba(159, 128, 84, 0.25);
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  padding: 28px 24px;
  position: relative;
  color: #2c2c2c;
  animation: slideUp 0.4s ease;
  text-align: center;
}
.sv-content h3 {
  font-size: 25px;
  margin-bottom: 20px;
}

/* Close Button */
.sv-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 30px;
  color: #000;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.sv-close:hover {
  transform: rotate(90deg);
}
.bi-geo-alt::before {
  content: "\f3e8";
  color: #fff;
}
.bi-whatsapp::before {
  content: "\f618";
  color: #fff;
  font-size: 40px;
}

/* Form Inputs + Select */
#visitForm input {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(159, 128, 84, 0.35) !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  outline: none;
  transition: all 0.3s ease;
  background: #fff !important;
  color: #212529 !important;
  appearance: none; /* Removes default arrow for custom design */
}
#visitForm select {
  width: 100% !important;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(159, 128, 84, 0.35) !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  outline: none;
  transition: all 0.3s ease;

  color: #212529 !important;
  appearance: none; /* Removes default arrow for custom design */
  font-weight: 400 !important;
  line-height: normal !important;
}

/* Optional: add dropdown arrow */
#visitForm select {
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg fill='%239f8054' height='24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}

#visitForm input:focus,
#visitForm select:focus {
  border-color: #bc8123;
  box-shadow: 0 0 8px rgba(159, 128, 84, 0.25);
}

/* Submit Button */
.btn-submit {
  width: 100%;
  background-color: #5299a6;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(159, 128, 84, 0.25);
}
.btn-submit:hover {
  background-color: #8c6f48;
  box-shadow: 0 8px 22px rgba(159, 128, 84, 0.35);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*gallery filter button */

.filter-btns .btn {
  margin: 0 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.filter-btns .btn.active,
.filter-btns .btn:hover {
  background-color: #0ea2bd;
  color: #fff;
}
.gallery-item {
  transition: all 0.4s ease;
}
.btn-check:active + .btn,
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:active {
  border-color: #fff;
}
/* FILTER BUTTON STYLING */
.filter-btns {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.filter-btns .btn {
  background: #fff;
  color: #333;
  border: 1.5px solid #ddd;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Hover effect */
.filter-btns .btn:hover {
  background: #0ea2bd;
  color: #fff;
  border-color: #0ea2bd;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Active button style */
.filter-btns .btn.active {
  background: #0ea2bd;
  color: #fff;
  border-color: #0ea2bd;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustment */
@media (max-width: 576px) {
  .filter-btns .btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}

/* AMENITIES SECTION (Updated) */

.amenities-section {
  background: #f8f8f8;
}

.amenities-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  
  line-height: 1.8;
  color: #212529;
}

/* GRID */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

/* CARD */
.amenity-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(20, 30, 40, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  /* border-top: 4px solid #5299a6;  */
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(20, 30, 40, 0.08);
}

/* ICON STYLE */
.amenity-card .icon {
  font-size: 2.2rem;
  color: #5299a6; /* new icon color */
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.amenity-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2b5c62; /* slightly darker shade for text harmony */
  margin-bottom: 8px;
}
.amenity-card img {
  width: 100px;
}

.amenity-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Animation */
.amenity-card {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.6s ease forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .amenity-card {
    padding: 22px 16px;
  }
  .amenity-card h3 {
    font-size: 1rem;
  }
  .amenity-card .icon {
    font-size: 1.8rem;
  }
}

/* HIGHLIGHTS SECTION */
.highlights-section {
  padding: 20px 0px;
  background-color: #f8f8f8;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.highlight-item {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 25px 20px 30px;
  position: relative;
  box-shadow: 0 8px 20px rgba(20, 30, 40, 0.05);
  transition: all 0.3s ease;
  border-left: 3px solid #0ea2bd;
}

.highlight-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(20, 30, 40, 0.08);
}

/* Number styling */
.highlight-number {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 120, 215, 0.08);
  pointer-events: none;
  user-select: none;
}

.highlight-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0d4f7a;
  margin-bottom: 8px;
}

.highlight-item p {
  font-size: 0.96rem;
  color: #555;
  line-height: 1.7;
}

/* Animation on scroll */
.highlight-item {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.6s ease forwards;
}

.highlight-item:nth-child(1) {
  animation-delay: 0.1s;
}
.highlight-item:nth-child(2) {
  animation-delay: 0.15s;
}
.highlight-item:nth-child(3) {
  animation-delay: 0.2s;
}
.highlight-item:nth-child(4) {
  animation-delay: 0.25s;
}
.highlight-item:nth-child(5) {
  animation-delay: 0.3s;
}
.highlight-item:nth-child(6) {
  animation-delay: 0.35s;
}
.highlight-item:nth-child(7) {
  animation-delay: 0.4s;
}
.highlight-item:nth-child(8) {
  animation-delay: 0.45s;
}
.highlight-item:nth-child(9) {
  animation-delay: 0.5s;
}
.highlight-item:nth-child(10) {
  animation-delay: 0.55s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .highlight-item {
    padding: 20px 15px 25px;
  }
  .highlight-item h3 {
    font-size: 1rem;
  }
  .highlight-number {
    font-size: 2.5rem;
    top: -15px;
  }
}

/* local */
.loc1 {
  background-color:#8be6f7;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.15); /* light inner glow */
}
.loc1 img {
  height: 50px;
}
.fa-whatsapp:before {
    font-size: 25px !important;
}