@font-face {
  font-family: "light";
  src: url(../Fonts/openSans/OpenSans-Light.ttf);
}

@font-face {
  font-family: "regular";
  src: url(../Fonts/openSans/OpenSans-Regular.ttf);
}

@font-face {
  font-family: "medium";
  src: url(../Fonts/openSans/OpenSans-SemiBold.ttf);
}

@font-face {
  font-family: "bold";
  src: url(../Fonts/openSans/OpenSans-Bold.ttf);
}

@font-face {
  font-family: "extra-bold";
  src: url(../Fonts/openSans/OpenSans-ExtraBold.ttf);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'light';
}

*::-moz-selection {
  background-color: #C79965;
  color: #fff;
}

*::selection {
  background-color: #C79965;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 15px;
}

*::-webkit-scrollbar-track {
  background-color: #ddd;
}

*::-webkit-scrollbar-thumb {
  background: #00A9E7;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #C79965;
}

/***************************** Global Style *****************************/
body {
  font-family: "regular";
}

h1,
h2,
h3 {
  font-family: "bold";
}

h4,
h5,
h6 {
  font-family: "medium";
}

p,
.paragraph {
  font-size: 15px;
  font-family: 'regular';
  color: #555;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #00A9E7;
}

.scroll-top-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(-135deg, #C79965, #b58650);
  color: #000;
  text-align: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  background-color: #000;
  color: #fff;
}

/***************************** Animations *****************************/
@-webkit-keyframes rotate-center {
  0%,
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0%,
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
    -webkit-filter: blur(12px);
            filter: blur(12px);
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
    -webkit-filter: blur(12px);
            filter: blur(12px);
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@-webkit-keyframes arrow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
}

@keyframes arrow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
.navs-container .navbar {
  padding: 0;
}

.navs-container .navbar .navbar-brand {
  padding: 1.7rem;
  background-color: #fff;
}

.navs-container .navbar .navbar-brand img {
  width: 260px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-item .nav-link {
  color: #111;
  text-align: center;
  margin: 0 10px;
  text-transform: capitalize;
}

.navs-container .navbar .nav-item .nav-link.active {
  color: #00A9E7;
}

.navs-container .navbar .nav-item .quote-butn {
  width: 150px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #c79965;
  color: #fff;
  border-radius: 20px;
  display: block;
  margin: 0px 10px;
}

.navs-container .navbar .nav-item .quote-butn:hover {
  background-color: #00A9E7;
}

.navs-container .navbar .nav-item .search-icon img {
  width: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 4px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.navs-container .navbar .nav-item .search-icon img:hover {
  -webkit-filter: invert(88%) sepia(9%) saturate(3716%) hue-rotate(320deg) brightness(90%) contrast(69%);
          filter: invert(88%) sepia(9%) saturate(3716%) hue-rotate(320deg) brightness(90%) contrast(69%);
}

.navs-container .navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

.navs-container .search-container {
  position: fixed;
  z-index: 9999999999;
  top: 0;
}

.navs-container .search-container #search {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  position: fixed;
  -webkit-transition: all .5s;
  transition: all .5s;
  width: 100vw;
  will-change: transform, opacity;
  z-index: -1;
}

.navs-container .search-container #search::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .95;
}

.navs-container .search-container #search:target {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100vh !important;
  opacity: 1;
  width: 100vw !important;
  z-index: 2;
}

.navs-container .search-container #search:target .close-btn {
  display: block;
}

.navs-container .search-container form {
  position: relative;
}

.navs-container .search-container form .form-control {
  border-radius: 0;
  background: transparent;
  position: relative;
  z-index: 99;
  border: none;
  border-bottom: 2px solid #eee;
  color: #fff;
  font-size: 18px;
  outline: 0;
  padding: 1rem 1.375rem;
}

.navs-container .search-container form .form-control::-webkit-input-placeholder {
  color: #ccc;
}

.navs-container .search-container form .form-control:-ms-input-placeholder {
  color: #ccc;
}

.navs-container .search-container form .form-control::-ms-input-placeholder {
  color: #ccc;
}

.navs-container .search-container form .form-control::placeholder {
  color: #ccc;
}

.navs-container .search-container form .form-control:focus {
  border-bottom: 2px solid #c79965;
}

.navs-container .search-container form .submit-btn {
  position: absolute;
  right: 0;
  top: 7px;
  background-color: transparent;
  color: #c79965;
  border: 1px solid transparent;
}

.navs-container .search-container .close-btn {
  display: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: .5rem;
  right: 2rem;
}

footer {
  padding-top: 150px;
  position: relative;
}

footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #202020;
  opacity: .6;
  z-index: -1;
}

footer .content {
  margin-bottom: 50px;
}

footer .content .logo {
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}

footer .content p,
footer .content .paragraph {
  font-family: 'regular';
  color: #eee;
  line-height: 1.7rem;
}

footer .content h5,
footer .content .headline {
  font-family: 'bold';
  margin-bottom: 30px;
  color: #fff;
}

footer .content .social-links a {
  color: #eee;
  margin: 0px 8px;
}

footer .content .social-links a:hover {
  color: #00A9E7;
}

footer .content .links a {
  display: block;
  margin: 8px 0px;
  font-family: 'regular';
  color: #eee;
}

footer .content .links a:hover {
  color: #00A9E7;
}

footer .content .insta-img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
  border-radius: 10px;
}

footer .copyright {
  padding: 20px 0;
  z-index: 5;
  position: relative;
  background-color: #404040;
}

footer .copyright p,
footer .copyright .paragraph {
  color: #fff;
  margin-bottom: 0;
}

footer .copyright .links {
  text-align: right;
}

footer .copyright .links a {
  color: #eee;
  font-size: 13px;
  margin: 0 10px;
}

footer .copyright .links a:hover {
  color: #00A9E7;
}

footer.footer-inner-pg {
  padding-top: 70px;
}

footer.footer-inner-pg::after {
  opacity: 0;
}

footer.footer-inner-pg .content .logo {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

footer.footer-inner-pg .content p,
footer.footer-inner-pg .content h5,
footer.footer-inner-pg .content .paragraph,
footer.footer-inner-pg .content .heading {
  color: #656565;
}

footer.footer-inner-pg .content .social-links a,
footer.footer-inner-pg .content .links a {
  color: #666;
}

footer.footer-inner-pg .content .social-links a:hover,
footer.footer-inner-pg .content .links a:hover {
  color: #00A9E7;
}

/***************************** Start Edit Home Page *****************************/
header {
  position: relative;
}

header .navs-container {
  position: absolute;
  width: 100%;
  padding-right: 10%;
  z-index: 9;
}

header .navs-container .navbar .nav-item .nav-link {
  color: #fff;
}

header .navs-container .navbar .nav-item .nav-link.active {
  color: #00A9E7;
}

header .swiper-container {
  background-color: #000;
}

header .swiper-container.gallery-top .swiper-slide {
  padding: 250px 0px 350px 0px;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
  z-index: 5;
}

header .swiper-container.gallery-top .swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: .2;
}

header .swiper-container.gallery-top .swiper-slide.swiper-slide-active .text-content {
  -webkit-animation: tracking-in-expand 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) both;
          animation: tracking-in-expand 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

header .swiper-container.gallery-thumbs {
  position: absolute;
  bottom: 0;
  z-index: 5;
  background-color: transparent;
  width: 100%;
  height: 200px;
  cursor: pointer;
}

header .swiper-container.gallery-thumbs .swiper-slide {
  height: 90%;
  position: relative;
  bottom: -10%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

header .swiper-container.gallery-thumbs .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: .7;
}

header .swiper-container.gallery-thumbs .swiper-slide::after {
  content: '';
  width: 0%;
  height: 15px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: transparent;
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

header .swiper-container.gallery-thumbs .swiper-slide .text {
  position: relative;
  top: 50%;
  z-index: 5;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

header .swiper-container.gallery-thumbs .swiper-slide .text h5 {
  color: #fff;
  font-family: 'regular';
  line-height: 1.8rem;
}

header .swiper-container.gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  height: 100%;
  bottom: 0%;
}

header .swiper-container.gallery-thumbs .swiper-slide.swiper-slide-thumb-active::after {
  width: 100%;
  background-color: #00A9E7;
}

header .swiper-container .inner {
  position: relative;
  z-index: 5;
}

header .swiper-container .inner .text-content h2,
header .swiper-container .inner .text-content .headline {
  color: #fff;
  font-family: 'regular';
  font-size: 3rem;
  line-height: 3.5rem;
}

header .swiper-container .inner .text-content p,
header .swiper-container .inner .text-content .paragraph {
  font-size: 18px;
  font-family: 'light';
  color: #fff;
  margin: 1.2rem 0rem;
}

header .swiper-container .inner .text-content .main-butn {
  width: 180px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  background-color: #00A9E7;
  color: #fff;
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
}

header .swiper-container .inner .text-content .main-butn:hover {
  background-color: #b58650;
}

header .swiper-container .scroll-down {
  position: absolute;
  top: 250px;
  z-index: 5;
  right: 50px;
}

header .swiper-container .scroll-down p,
header .swiper-container .scroll-down .paragraph {
  color: #eee;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-bottom: 35px;
}

header .swiper-container .scroll-down .arrow,
header .swiper-container .scroll-down .arrow:before {
  position: absolute;
  left: 50%;
}

header .swiper-container .scroll-down .arrow {
  width: 20px;
  height: 20px;
  top: 50%;
  margin: -20px 0 0 -20px;
  border-left: none;
  border-top: none;
  border-right: 2px #fff solid;
  border-bottom: 2px #fff solid;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: arrow;
          animation-name: arrow;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

header .swiper-container .scroll-down .arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  margin: -10px 0 0 -10px;
  border-left: none;
  border-top: none;
  border-right: 1px #fff solid;
  border-bottom: 1px #fff solid;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: arrow;
          animation-name: arrow;
}

header .line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: #ccc;
  display: block;
  z-index: 1;
  opacity: .2;
}

header .line:nth-of-type(1) {
  left: 20%;
}

header .line:nth-of-type(2) {
  left: 40%;
}

header .line:nth-of-type(3) {
  left: 60%;
}

header .line:nth-of-type(4) {
  left: 80%;
}

section .text-heading {
  margin-bottom: 50px;
}

section .text-heading h3,
section .text-heading .headline {
  font-family: 'regular';
  color: #676767;
  font-weight: 500;
  font-size: 50px;
}

section .text-heading p,
section .text-heading .paragraph {
  font-size: 14px;
  font-family: 'light';
}

section .text-heading-inner {
  margin-bottom: 50px;
  text-align: center;
}

section .text-heading-inner h3,
section .text-heading-inner .headline {
  font-family: 'regular';
  color: #547519;
  font-weight: 500;
  font-size: 2rem;
  font-size: 45px;
}

section .text-heading-inner h3.features,
section .text-heading-inner .headline.features {
  color: #00A9E7;
}

section .text-heading-inner p .paragraph {
  line-height: 1.5rem;
}

.our-properties {
  padding: 70px 0px 120px 0px;
  position: relative;
  overflow: hidden;
}

.our-properties .image-content {
  width: 100%;
  height: 500px;
  position: relative;
}

.our-properties .image-content::after {
  content: '';
  position: absolute;
  width: 130%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #101010;
  opacity: .5;
}

.our-properties .image-content .main-img {
  width: 130%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.our-properties .image-content .heading {
  position: absolute;
  z-index: 5;
  left: 30px;
  bottom: 20px;
  color: #fff;
  font-family: 'medium';
}

.our-properties .navs-wrapper {
  position: relative;
  background-color: #fff;
  padding: 25px 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.our-properties .navs-wrapper .nav-link {
  text-align: center;
  position: relative;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.our-properties .navs-wrapper .nav-link:last-child {
  border-bottom: 1px solid transparent;
}

.our-properties .navs-wrapper .nav-link h6,
.our-properties .navs-wrapper .nav-link .headline {
  font-family: 'regular';
}

.our-properties .navs-wrapper .nav-link p,
.our-properties .navs-wrapper .nav-link .paragraph {
  font-size: 12px;
  margin-bottom: 0;
}

.our-properties .navs-wrapper .nav-link .num {
  font-family: 'bold';
  color: #666;
  position: absolute;
  top: 13px;
  left: 20px;
}

.our-properties .navs-wrapper .nav-link::after {
  content: '';
  width: 135%;
  height: 100%;
  border: 2px solid #b58650;
  position: absolute;
  top: 0;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  opacity: 0;
}

.our-properties .navs-wrapper .nav-link.active {
  background-color: transparent;
}

.our-properties .navs-wrapper .nav-link.active::after {
  opacity: .5;
}

.our-properties .navs-wrapper .nav-link.active h6,
.our-properties .navs-wrapper .nav-link.active .headline {
  color: #00A9E7;
}

.our-properties .main-butn {
  width: 180px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  background-color: #00A9E7;
  color: #fff;
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  margin-top: 30px;
  position: absolute;
  right: 250px;
}

.our-properties .main-butn:hover {
  background-color: #b58650;
}

.our-properties .bg-r {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.our-location {
  padding: 70px 0px;
}

.our-location .text-heading .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-bottom: 1px solid #ccc;
}

.our-location .text-heading .nav .nav-link {
  border-radius: 0;
  color: #676767;
  font-family: 'regular';
  border-bottom: 2px solid transparent;
  margin: 0px 20px 0 0;
  font-size: 11px;
}

.our-location .text-heading .nav .nav-link.active {
  background-color: transparent;
  color: #00A9E7;
  border-bottom: 2px solid #00A9E7;
}

.our-location .card {
  border: none;
  -webkit-box-shadow: 0px 0px 65px 0px #ddd;
          box-shadow: 0px 0px 65px 0px #ddd;
  border-radius: 10px;
  margin-bottom: 25px;
}

.our-location .card .main-img {
  border-radius: 10px 10px 0px 0px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.our-location .card .card-header {
  border-bottom: 1px solid transparent;
  padding: 1.3rem 1.25rem;
}

.our-location .card .card-header h4,
.our-location .card .card-header .headline {
  font-size: 1.7rem;
  font-family: 'bold';
  color: #676767;
  margin-bottom: 1rem;
}

.our-location .card .card-header p,
.our-location .card .card-header .paragraph {
  margin-bottom: 0;
}

.our-location .card .card-header .loc-icon {
  width: 23px;
  margin-right: 10px;
}

.our-location .card .card-body {
  -webkit-box-shadow: 0px -3px 20px #ddd;
          box-shadow: 0px -3px 20px #ddd;
}

.our-location .card .card-body .text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.our-location .card .card-body .text .icon {
  width: 23px;
  margin-right: 10px;
}

.our-location .card .card-body .text p,
.our-location .card .card-body .text .paragraph {
  margin-bottom: 0;
}

.our-location .card:hover h4,
.our-location .card:hover .headline {
  color: #b58650;
}

.media-sec {
  padding: 70px 0px;
}

.media-sec .swiper-container {
  height: 550px;
}

.media-sec .swiper-container .swiper-slide {
  width: 75%;
  height: 400px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: 15px;
}

.media-sec .swiper-container .swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0;
  border-radius: 15px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.media-sec .swiper-container .swiper-slide .content {
  height: 100%;
  position: relative;
  z-index: 5;
  padding: 35px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  opacity: 0;
  border-radius: 15px;
}

.media-sec .swiper-container .swiper-slide .content .text h6,
.media-sec .swiper-container .swiper-slide .content .text .headline {
  color: #f5f5f5;
}

.media-sec .swiper-container .swiper-slide .content .text p,
.media-sec .swiper-container .swiper-slide .content .text .paragraph {
  color: #fff;
}

.media-sec .swiper-container .swiper-slide .content .text.center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.media-sec .swiper-container .swiper-slide .content .text.center .video-btn {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background-color: #fff;
  color: #00A9E7;
  font-size: 20px;
  display: block;
  border-radius: 50%;
  text-align: center;
  position: relative;
}

.media-sec .swiper-container .swiper-slide .content .text.center .video-btn::after {
  content: '';
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px dashed #00A9E7;
  display: block;
  position: absolute;
  top: -10px;
  left: -10px;
  -webkit-animation: rotate-center 2500ms ease-in-out infinite both;
          animation: rotate-center 2500ms ease-in-out infinite both;
}

.media-sec .swiper-container .swiper-slide .content .text.center .video-btn:hover {
  background-color: #00A9E7;
  color: #fff;
}

.media-sec .swiper-container .swiper-slide .content .text.center .video-btn:hover::after {
  border-color: #b58650;
}

.media-sec .swiper-container .swiper-slide .content .text.bottom-r {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.media-sec .swiper-container .swiper-slide .content .text.bottom-r .more-butn {
  font-family: 'bold';
  color: #fff;
  border-bottom: 1px solid #ddd;
}

.media-sec .swiper-container .swiper-slide .content .text.bottom-r .more-butn:hover {
  color: #00A9E7;
  border-bottom: 1px solid #b58650;
}

.media-sec .swiper-container .swiper-slide-active {
  height: 550px;
}

.media-sec .swiper-container .swiper-slide-active::after {
  opacity: .8;
}

.media-sec .swiper-container .swiper-slide-active .content {
  opacity: 1;
}

.media-sec .swiper-container .swiper-button-next,
.media-sec .swiper-container .swiper-button-prev {
  top: 85%;
  background-size: 16px 40px;
  width: 65px;
  border: 1px solid #00A9E7;
  border-radius: 25px;
}

.media-sec .swiper-container .swiper-button-next {
  background-image: url(../images/icons/right-arrow.svg);
  right: 10px;
  left: auto;
}

.media-sec .swiper-container .swiper-button-prev {
  background-image: url(../images/icons/left-arrow.svg);
  right: 85px;
  left: auto;
}

.news-sec {
  padding: 70px 0px 0px 0px;
  margin-bottom: -100px;
  position: relative;
  z-index: 5;
}

.news-sec .inner {
  padding: 70px 30px;
  border-radius: 15px;
  position: relative;
}

.news-sec .inner .bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  border-radius: 15px;
}

.news-sec .inner .text {
  position: relative;
  z-index: 5;
}

.news-sec .inner .text h4,
.news-sec .inner .text .headline {
  color: #fff;
  margin-bottom: .7rem;
}

.news-sec .inner .text p,
.news-sec .inner .text .paragraph {
  color: #eee;
  line-height: 1.5rem;
  font-family: 'regular';
  margin-bottom: 2rem;
}

.news-sec .inner .text .form-group {
  position: relative;
}

.news-sec .inner .text .form-group .form-control {
  height: 65px;
  border-radius: 15px;
  font-size: 15px;
}

.news-sec .inner .text .form-group .submit-btn {
  width: 150px;
  height: 65px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #00A9E7;
  border: 1px solid #00A9E7;
  color: #fff;
  font-family: 'regular';
  border-radius: 0 15px 15px 0;
}

.news-sec .inner .text .form-group .submit-btn:hover {
  background-color: #b58650;
}

.newsletter {
  background: url(../images/newsletter.png);
  background-size: cover;
  padding: 100px 0px;
}

.newsletter .text h4,
.newsletter .text .headline {
  font-family: 'regular';
  color: #525252;
  font-size: 2.05rem;
  margin-bottom: 1rem;
}

.newsletter .text p,
.newsletter .text .paragraph {
  margin-bottom: 0;
}

.newsletter .main-butn {
  width: 180px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  background-color: #00A9E7;
  color: #fff;
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.newsletter .main-butn:hover {
  background-color: #b58650;
}

/***************************** Start Edit offer Page *****************************/
.offer-pg {
  padding: 70px 0px;
}

.offer-pg .item {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.offer-pg .item .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.offer-pg .item .text {
  z-index: 5;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}

.offer-pg .item .text h6,
.offer-pg .item .text .headline {
  color: #fff;
  margin-bottom: 0;
}

.offer-pg .item::after {
  content: '';
  background-color: #111;
  opacity: .6;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.offer-pg .item::before {
  content: '';
  width: 0%;
  height: 15px;
  background-color: #00A9E7;
  position: absolute;
  bottom: 0;
  z-index: 5;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.offer-pg .item .more-btn {
  width: 100%;
  text-align: center;
  color: #b58650;
  font-family: 'bold';
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  z-index: 5;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
}

.offer-pg .item .more-btn:hover {
  color: #00A9E7;
}

.offer-pg .item:hover::before {
  width: 100%;
  opacity: 1;
}

.offer-pg .item:hover .more-btn {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.blog-sec {
  padding: 70px 0px;
  position: relative;
  overflow: hidden;
}

.blog-sec .main-item {
  position: relative;
}

.blog-sec .main-item .main-img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-sec .main-item .text {
  width: 85%;
  background-color: #fff;
  z-index: 5;
  text-align: center;
  display: block;
  margin: auto;
  position: relative;
  top: -25px;
  padding: 1.3rem 1rem;
}

.blog-sec .main-item .text h4,
.blog-sec .main-item .text .name {
  color: #b58650;
  font-size: 30px;
}

.blog-sec .main-item .text p,
.blog-sec .main-item .text .paragraph {
  margin-bottom: 0;
  color: #000;
}

.blog-sec .news-colmn {
  padding: 0 15px;
  position: relative;
  overflow: hidden;
}

.blog-sec .news-colmn .item {
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 25px;
}

.blog-sec .news-colmn .item .news-img {
  width: 100%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-sec .news-colmn .item .text h6,
.blog-sec .news-colmn .item .text .headline {
  color: #676767;
  font-size: 25px;
  margin-top: 20px;
  font-family: 'regular';
  line-height: 2.3rem;
}

.blog-sec .news-colmn .item .text span,
.blog-sec .news-colmn .item .text .date {
  font-family: 'regular';
  color: #666;
}

.blog-sec .news-colmn .item:hover span,
.blog-sec .news-colmn .item:hover .date {
  color: #b58650;
}

.blog-sec .news-colmn .item:hover h6,
.blog-sec .news-colmn .item:hover .headline {
  color: #00A9E7;
}

.blog-sec .news-colmn .main-butn {
  width: 200px;
  height: 45px;
  line-height: 45px;
  border-radius: 20px;
  background-color: #00A9E7;
  color: #fff;
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  margin: auto;
}

.blog-sec .news-colmn .main-butn:hover {
  background-color: #b58650;
}

/***************************** Start Edit single-offer Page *****************************/
.inner-header {
  position: relative;
  overflow: hidden;
}

.inner-header .single-offer-header {
  background: url(../images/single-offer-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 300px 0px 0px 0px;
}

.inner-header .single-offer-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #202020;
  opacity: .6;
}

.inner-header .single-offer-header .inner {
  position: relative;
  z-index: 5;
  padding-bottom: 30px;
}

.inner-header .single-offer-header .inner .text {
  position: relative;
  z-index: 5;
}

.inner-header .single-offer-header .inner .text h1,
.inner-header .single-offer-header .inner .text .lg-headline {
  font-size: 4.5vw;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 0px 5px 45px #333;
}

.inner-header .single-offer-header .inner .text h5,
.inner-header .single-offer-header .inner .text .md-headline {
  font-size: 1.8rem;
  font-family: 'medium';
  margin-bottom: 1.2rem;
  color: #000;
}

.inner-header .single-offer-header .inner .text p,
.inner-header .single-offer-header .inner .text .paragraph {
  color: #101010;
  line-height: 1.6rem;
}

.inner-header .single-offer-header .inner .text .main-btn {
  width: 180px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  background-color: #00A9E7;
  color: #fff;
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  margin: auto;
}

.inner-header .single-offer-header .inner .text .main-btn:hover {
  background-color: #b58650;
}

.inner-header .single-offer-header .inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 84%;
  background-color: #f1f1f1;
  opacity: .8;
}

.process-sec .swiper-container {
  height: 520px;
}

.process-sec .swiper-container .swiper-slide img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

.process-sec .swiper-container .swiper-button-next,
.process-sec .swiper-container .swiper-button-prev {
  width: 35px;
  height: 70px;
  background-size: 15px 40px;
  top: unset;
  bottom: 0;
  background-color: #00A9E7;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.process-sec .swiper-container .swiper-button-next:hover,
.process-sec .swiper-container .swiper-button-prev:hover {
  background-color: #b58650;
}

.process-sec .swiper-container .swiper-button-next {
  background-image: url(../images/icons/right-angle.svg);
  right: 0;
}

.process-sec .swiper-container .swiper-button-prev {
  background-image: url(../images/icons/left-angle.svg);
  right: 35px;
  left: unset;
}

.process-sec .text {
  padding: 70px 50px;
}

.process-sec .text h4,
.process-sec .text .headline {
  font-family: 'bold';
  font-size: 50px;
  color: #676767;
  margin-bottom: 1.5rem;
}

.process-sec .text p,
.process-sec .text .paragraph {
  margin-bottom: 1.5rem;
}

.sm-contact {
  background-color: #f5f5f5;
  padding: 70px 0px;
}

.sm-contact .inner {
  text-align: center;
}

.sm-contact .inner h4,
.sm-contact .inner .headline {
  font-family: 'regular';
  margin-bottom: 1.5rem;
}

.sm-contact .inner .main-btn {
  width: 180px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  background-color: #00A9E7;
  color: #fff;
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  margin: auto;
}

.sm-contact .inner .main-btn:hover {
  background-color: #b58650;
}

/***************************** Start Edit About Page *****************************/
.page-heading {
  overflow: hidden;
  position: relative;
  padding: 50px 0px 80px 0px;
  background-color: #18191A;
}

.page-heading .breadcrumb {
  background-color: transparent;
}

.page-heading .breadcrumb a {
  color: #eee;
}

.page-heading .breadcrumb .breadcrumb-item.active {
  color: #fff;
  font-family: 'bold';
}

.page-heading h3,
.page-heading .heading {
  color: #fff;
  margin-bottom: 0;
  font-size: 3rem;
  margin-top: 2rem;
}

.page-heading .logo {
  position: absolute;
  top: 0;
  right: -100px;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}

.about-pg {
  padding: 70px 0px;
  position: relative;
  overflow: hidden;
}

.about-pg .text {
  padding: 20px;
}

.about-pg .text .lg-hwadline {
  color: #676767;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-pg .text .md-hwadline {
  color: #547519;
  margin-bottom: 1rem;
}

.about-pg .text p,
.about-pg .text .paragraph {
  margin-bottom: 1.5rem;
  color: #888;
  line-height: 1.6rem;
  font-size: 13px;
}

.about-pg .image-content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-pg .image-content img {
  width: 85%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: auto;
}

.about-pg .image-content::before {
  content: '';
  background-color: #ddd;
  width: 100%;
  height: 250px;
  display: block;
  opacity: .5;
  z-index: -1;
  position: absolute;
  top: -65px;
  right: -60%;
}

.about-pg .image-content::after {
  content: '';
  background-color: #00A9E7;
  width: 75%;
  height: 250px;
  display: block;
  opacity: .2;
  z-index: -1;
  position: absolute;
  left: -15px;
  bottom: -65px;
}

.about-pg .image-content2 {
  background-color: #fff;
  padding: 150px 0;
  position: relative;
}

.about-pg .image-content2::before {
  content: '';
  background-color: #ddd;
  width: 60%;
  height: 250px;
  display: block;
  opacity: .5;
  z-index: -1;
  position: absolute;
  top: -65px;
  right: -3%;
}

.about-pg .image-content2::after {
  content: '';
  background-color: #547519;
  width: 75%;
  height: 250px;
  display: block;
  opacity: .5;
  z-index: -1;
  position: absolute;
  left: -45px;
  bottom: -55px;
}

.about-pg .image-content2 img {
  width: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

/***************************** Start Edit Contact Page *****************************/
.contact-pg {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.contact-pg .loc-card {
  padding: 35px 25px;
  border: 2px solid #ddd;
  border-radius: 15px;
}

.contact-pg .loc-card h5,
.contact-pg .loc-card .headline {
  color: #00A9E7;
  font-family: 'bold';
  margin-bottom: 1.5rem;
}

.contact-pg .loc-card p,
.contact-pg .loc-card .paragraph {
  font-size: 13px;
  color: #666;
  margin-bottom: 1.2rem;
}

.contact-pg .loc-card:hover {
  -webkit-animation: heartbeat 1.5s ease-in-out 1 both;
          animation: heartbeat 1.5s ease-in-out 1 both;
}

.contact-pg .contact-heading {
  margin: 50px 0px 130px 0px;
}

.contact-pg .contact-heading h2,
.contact-pg .contact-heading .headline {
  color: #656565;
  margin-bottom: 2.5rem;
}

.contact-pg .contact-heading .phone-num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.contact-pg .contact-heading .phone-num .icon {
  width: 120px;
  height: 120px;
  line-height: 115px;
  border-radius: 50%;
  font-size: 25px;
  border: 5px solid #fff;
  background-color: #00A9E7;
  color: #fff;
  text-align: center;
  display: inline-block;
  font-size: 35px;
  margin-left: 25px;
  position: relative;
}

.contact-pg .contact-heading .phone-num .icon::before {
  content: '';
  background-image: url(../images/half-circle.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -15px;
  top: -9px;
  display: block;
  width: 120px;
  height: 120px;
}

.contact-pg .contact-heading .phone-num .text {
  margin-left: -30px;
  position: relative;
  top: 18px;
  z-index: -1;
}

.contact-pg .contact-heading .phone-num .text .call {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #b58650;
  color: #fff;
  padding: 10px 30px;
  border-radius: 0 15px 0 0;
  font-size: 20px;
  margin-bottom: 0;
  font-family: 'bold';
}

.contact-pg .contact-heading .phone-num .text .num {
  width: 300px;
  background-color: #00A9E7;
  color: #fff;
  padding: 10px 35px;
  font-size: 20px;
  border-radius: 0 15px 15px 0;
  margin-bottom: 0;
}

.contact-pg .image-content {
  position: relative;
}

.contact-pg .image-content::before {
  content: '';
  background-color: #ddd;
  width: 75%;
  height: 200px;
  display: block;
  opacity: .5;
  z-index: -1;
  position: absolute;
  top: -65px;
  right: -3%;
}

.contact-pg .image-content::after {
  content: '';
  background-color: #00A9E7;
  width: 75%;
  height: 200px;
  display: block;
  opacity: .2;
  z-index: -1;
  position: absolute;
  left: -45px;
  bottom: -55px;
}

.contact-pg .image-content img {
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.contact-pg .form-container {
  padding: 25px 0px 25px 100px;
}

.contact-pg .form-container .form-control {
  height: 55px;
  font-size: 13px;
  border: 2px solid #eee;
}

.contact-pg .form-container .form-control:focus {
  border: 2px solid #00A9E7;
}

.contact-pg .form-container textarea {
  height: 200px !important;
  resize: none;
}

.contact-pg .form-container .submit-btn {
  width: 100%;
  height: 55px;
  font-size: 18px;
  background-color: #00A9E7;
  -webkit-transform: all .3s ease;
          transform: all .3s ease;
  color: #fff;
  font-weight: bold;
  border: 1px solid #00A9E7;
  border-radius: 10px;
}

.contact-pg .form-container .submit-btn img {
  width: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 5px;
}

.contact-pg .form-container .submit-btn:hover {
  background-color: #b58650;
  border: 1px solid #b58650;
}

/***************************** Start Edit locations Page *****************************/
.locations-pg {
  padding: 70px 0px;
}

.locations-pg .card {
  border-radius: 20px;
  margin-bottom: 40px;
  border: 2px solid #eee;
}

.locations-pg .card .image-content {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.locations-pg .card .image-content .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.locations-pg .card .image-content .hover-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-filter: blur(8px);
          filter: blur(8px);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: 15px 15px 0 0;
}

.locations-pg .card .card-body {
  height: 180px;
  background-color: transparent;
}

.locations-pg .card .card-body h5,
.locations-pg .card .card-body .headline {
  color: #00A9E7;
  margin-bottom: 1rem;
}

.locations-pg .card .card-body p,
.locations-pg .card .card-body .paragraph {
  margin-bottom: 0;
}

.locations-pg .card .card-footer {
  background-color: #fff;
  background-color: transparent;
  border-top: 1px solid transparent;
}

.locations-pg .card .card-footer a {
  color: #00A9E7;
  font-weight: bold;
  font-size: 15px;
}

.locations-pg .card .card-footer a:hover {
  color: #b58650;
}

.locations-pg .card:hover {
  -webkit-box-shadow: 0px 4px 15px 0px #ddd;
          box-shadow: 0px 4px 15px 0px #ddd;
}

.locations-pg .card:hover .hover-img {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  opacity: 1;
}

/***************************** Start Edit single-location Page *****************************/
.single-location-pg {
  overflow: hidden;
  position: relative;
}

.single-location-pg .inner {
  position: relative;
}

.single-location-pg .inner .swiper-container-horizontal > .swiper-pagination-bullets {
  left: unset;
  right: 0;
  padding: 10px 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 8;
  bottom: 0;
}

.single-location-pg .inner .swiper-container-horizontal > .swiper-pagination-bullets::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #202020;
  opacity: .7;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.single-location-pg .inner::after {
  content: '';
  width: 40%;
  height: 450px;
  background-color: #00A9E7;
  position: absolute;
  left: -25px;
  top: -25px;
  z-index: 0;
  pointer-events: none;
}

.single-location-pg .inner::before {
  content: '';
  width: 40%;
  height: 450px;
  background-color: #547519;
  position: absolute;
  right: -25px;
  top: -25px;
  z-index: 0;
  pointer-events: none;
}

.single-location-pg .swiper-container .swiper-slide img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-location-pg .swiper-container .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid #fff;
  opacity: 1;
}

.single-location-pg .swiper-container .swiper-pagination-bullet-active {
  width: 25px;
  background: #fff;
  border-radius: 25px;
}

.single-location-pg .cards-wrapper {
  margin-top: 70px;
}

.single-location-pg .cards-wrapper .card {
  position: relative;
  padding: 30px 15px;
  border-radius: 10px;
  text-align: center;
  margin: 10px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid #9992;
}

.single-location-pg .cards-wrapper .card::before {
  content: '';
  background-color: #b58650;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  height: 30%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.single-location-pg .cards-wrapper .card .icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.single-location-pg .cards-wrapper .card h5,
.single-location-pg .cards-wrapper .card .headline {
  margin-top: 1rem;
}

.single-location-pg .cards-wrapper .card p,
.single-location-pg .cards-wrapper .card .paragraph {
  margin-bottom: 0;
  font-size: 12px;
  color: #999;
  line-height: 1.6rem;
}

.single-location-pg .cards-wrapper .card:hover {
  -webkit-animation: heartbeat 1.5s ease-in-out 1 both;
          animation: heartbeat 1.5s ease-in-out 1 both;
}

.single-location-pg .cards-wrapper .card:hover::before {
  width: 100%;
  height: 100%;
  opacity: 1;
  border-radius: 0;
}

.single-location-pg .cards-wrapper .card:hover .icon {
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(188deg) brightness(155%) contrast(104%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(188deg) brightness(155%) contrast(104%);
}

.single-location-pg .cards-wrapper .card:hover h5,
.single-location-pg .cards-wrapper .card:hover .headline {
  color: #fff;
}

.single-location-pg .cards-wrapper .card:hover p,
.single-location-pg .cards-wrapper .card:hover .paragraph {
  color: #ddd;
}

.single-location-pg .cards-wrapper .book_form {
  background-color: #b5865010;
  padding: 30px 20px;
  border-radius: 10px;
  height: calc(100% - 10px);
}

.single-location-pg .cards-wrapper .book_form .title {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}

.single-location-pg .cards-wrapper .book_form .form-group label {
  font-size: 13px;
  font-weight: bold;
}

.single-location-pg .cards-wrapper .book_form .form-group .form-control {
  min-height: 45px;
  border: 2px solid #9993;
}

.single-location-pg .cards-wrapper .book_form .submit-btn {
  width: 100%;
  height: 55px;
  font-size: 18px;
  background-color: #b58650;
  -webkit-transform: all .3s ease;
          transform: all .3s ease;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
  border: 0;
}

.single-location-pg .cards-wrapper .book_form .submit-btn:hover {
  background-color: #b5865099;
}

.single-location-pg .logo {
  position: absolute;
  top: 30px;
  left: -135px;
  z-index: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.single-location-pg .info {
  margin-top: 70px;
}

.single-location-pg .info .text-heading h4 {
  font-size: 30px;
}

.single-location-pg .info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.single-location-pg .info ul li {
  width: 48%;
  margin: 10px 0;
  color: #101010;
  font-weight: bold;
  font-size: 17px;
  position: relative;
  padding-left: 40px;
}

.single-location-pg .info ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background-image: url(../images/logo-pattern.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.single-location-pg .area {
  margin-top: 50px;
}

.single-location-pg .area .items h6 {
  padding: 10px 0;
}

.single-location-pg .area .items h6 .icon {
  width: 20px;
  opacity: 0.7;
  margin-right: 5px;
}

.single-location-pg .area .items li {
  padding: 15px;
  background-color: #fff;
  margin-bottom: 5px;
  font-size: 14px;
}

.single-location-pg .area .items li .dest {
  float: right;
}

.section_padding {
  padding: 70px 0;
}

.about_us {
  background-color: #f9f9f9;
}

.about_us .about_text {
  font-size: 18px;
  line-height: 2;
  color: #555;
}

.about_us .vision_mission .items {
  padding: 20px;
  background-color: #fff;
  margin-top: 50px;
  min-height: calc(100% - 50px);
}

.about_us .vision_mission .items .icons {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
  opacity: 0.7;
}

.about_us .vision_mission .items h5 {
  margin-bottom: 10px;
}

.about_us .vision_mission .items .info {
  font-size: 14px;
  color: #777;
  line-height: 1.8;
}
/*# sourceMappingURL=style.css.map */