html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Geomanist';
  src: url('../fonts/Geomanist-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Geomanist';
  src: url('../fonts/Geomanist-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Geomanist';
  src: url('../fonts/Geomanist-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Geomanist';
  src: url('../fonts/Geomanist-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Geomanist Book';
  src: url('../fonts/Geomanist-Book.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Geomanist Ultra';
  src: url('../fonts/Geomanist-Ultra.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Geomanist';
  src: url('../fonts/Geomanist-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Geomanist';
  src: url('../fonts/Geomanist-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Geomanist';
  src: url('../fonts/Geomanist-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}



body {
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Geomanist';
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Geomanist';
  font-weight: normal;
}

.error-msg1 {
  position: absolute;
  bottom: -12px;
  background: transparent;
  display: flex;
  line-height: 11px;
  background-color: #f00;
  color: #fff;
  font-size: 9px;
}

.overflow-visible {
  overflow: visible !important;
}

a {
  color: #231F20;
}

a:hover {
  color: #A7D2C1;
}

a,
button {
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

p:last-child {
  margin-bottom: 0;
}

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

p {
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

/*** Modal CSS ***/
.theme-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  outline: 0;
  opacity: 0;
}

.theme-modal.is-active {
  visibility: visible;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 9999;
}

.theme-modal-content {
  border: 0;
  border-radius: 0;
}

.theme-modal-card-head {
  background-color: transparent;
  border: 0;
  padding: 20px 30px;
  height: inherit;
  border-radius: 0;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.theme-modal-card {
  position: relative;
  top: calc(50% + 30px);
  max-width: 600px;
  width: 100%;
  padding: 30px;
  max-height: inherit;
  transition: all 0.3s linear;
  background-color: #F34B81;
  border-radius: 10px;
  margin: 0 auto;
  transform: translateY(-50%);
  background: rgb(243 75 129);
  background: rgb(167 210 193);
  /*background: linear-gradient(188deg, rgb(167 210 193) 0%, rgb(243 75 129) 100%);*/
  background: linear-gradient(188deg, #69b9db 0%, #055f8c 100%);
}

.modal-title {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}

.theme-modal-card-body .columns {
  margin-left: -5px;
  margin-right: -5px;
}

.theme-modal-card-body .columns .column {
  margin-bottom: 15px;
  padding: 0 5px;
}

#home.is-active {
  overflow: hidden;
}

html:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  background-repeat: repeat;
  background-color: #F34B82;
  background-image: url("../diamond-upholstery.png");
  /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
  /*background: linear-gradient(188deg, rgb(167 210 193) 0%, rgb(243 75 129) 100%);*/ 
    background: linear-gradient(188deg, #69b9db 0%, #055f8c 100%);
}

html.is-active:before {
  opacity: 1;
  visibility: visible;
}

.theme-modal.is-active .theme-modal-card {
  top: 50%;
}

.theme-modal-card-title {
  margin: 0;
  text-transform: uppercase;
}

.theme-modal-background {
  background-color: #000;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}

.theme-modal[style="visibility: visible;"] .theme-modal-card {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 1;
}

.theme-modal[style="visibility: visible;"] .theme-modal-background {
  opacity: 0.9;
  visibility: visible;
}

.theme-modal-card-body {
  border: 0;
  position: relative;
  overflow: visible;
  border-radius: 10px;
}

.theme-modal-card-body {
  padding: 30px;
  background-color: transparent;
  border: 1px solid rgb(255 255 255 / 50%);
}

.close1,
.close {
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: none;
  opacity: 1;
  border: none;
  /*background-color: #A7D2C1;*/
  background-color: #055f8c;
  position: absolute;
  top: -22px;
  right: -22px;
  margin: 0 auto;
  z-index: 10;
  cursor: pointer;
  border-radius: 7px;
  box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
  border: 1px solid #ffffff30;
}

.close1:hover,
.close:hover {
  /*background-color: #F34B81;*/
  background-color:#5cedf4d6;
  opacity: 1;
  box-shadow: rgb(0 0 0 / 40%) 0px 3px 8px;
}

.theme-modal-card-body:before {
  left: 0;
}

.theme-modal-card-body:after {
  right: 0;
}

.theme-modal-card-title {
  color: #020203;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 5px;
}

.theme-modal-card-body img {
  margin: 0 auto;
  max-width: 350px;
}

.col-theme-modal .section-title {
  margin-bottom: 15px;
}

.theme-modal .section-title h2 {
  font-size: 26px;
  line-height: 30px;
  color: #fff;
}

/*** End Modal CSS ***/
.sticky-bottom-form .col-form .sm-form-control::-webkit-input-placeholder {
  color: rgb(255 255 255 / 0.7);
}

.sticky-bottom-form .col-form .sm-form-control:-ms-input-placeholder {
  color: rgb(255 255 255 / 0.7);
}

.sticky-bottom-form .col-form .sm-form-control::placeholder {
  color: rgb(255 255 255 / 0.7);
}

.theme-modal .col-form .sm-form-control::-webkit-input-placeholder {
  color: rgb(255 255 255 / 0.7);
}

.theme-modal .col-form .sm-form-control:-ms-input-placeholder {
  color: rgb(255 255 255 / 0.7);
}

.theme-modal .col-form .sm-form-control::placeholder {
  color: rgb(255 255 255 / 0.7);
}

.theme-scrollbar {
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
}

.theme-scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: transparent;
}

.theme-scrollbar::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

.theme-scrollbar::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 3px;
}

ul:last-child {
  margin-bottom: 0;
}

iframe {
  border: none;
}

a,
b,
div,
li,
ul {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

a:active,
a:focus,
input,
input:active,
input:focus,
input:hover,
textarea,
textarea:active,
textarea:focus,
textarea:hover {
  -moz-outline: none;
  outline: 0;
}

a {
  text-decoration: none;
  outline: 0;
}

a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0;
}

.clear-both:after,
.clear-both:before {
  display: table;
  content: "";
  clear: both;
}

section,
.section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.white-bg {
  background-color: #fff;
}

.gray-bg {
  background-color: #F0F0F0;
}

.full-width {
  width: 100%;
}

.center {
  text-align: center;
}

.overflow-visible {
  overflow: visible !important;
}

.section-title h1,
.section-title h2 {
  font-size: 42px;
  line-height: 50px;
  color: #055f8c;
  margin: 0;
  font-weight: 300;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
}

.section-title {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.section-title:last-child {
  margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
  color: #055f8c;
}



.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6 {
  color: #fff;
}

.dark p,
.dark span {
  color: #fff;
}

.title-white .title-tagline {
  color: #eee;
}

.columns,
.columns:last-child {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.column {
  padding-top: 0;
  padding-bottom: 0;
}

picture {
  display: block;
}

.container {
  position: relative;
  z-index: 1;
}

.theme-btn {
  position: relative;
  background: #F34B81;
  font-family: 'Geomanist';
  border: 0;
  color: #231F20;
  display: inline-block;
  padding: 8px 30px;
  font-size: 14px;
  text-align: center;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  z-index: 1;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-transform: capitalize;
  letter-spacing: 1px;
  border-radius: 5px;
}

.theme-btn:hover {
  color: #fff;
  background-color: #F34B81;
}

.theme-btn.white-btn {
  background: #fff;
  color: #231F20;
}

.theme-btn.white-btn:hover {
  background: #A7D2C1;
  color: #ffff;
}

.col-form {
  position: relative;
  /* margin-bottom: 20px; */
}

.theme-input {
  position: relative;
}

.col-middle {
  display: table;
  width: 100%;
}

.col-middle-inner {
  display: table-cell;
  vertical-align: middle;
}

button:focus {
  outline: 0;
}

#back2top.active {
  bottom: 20px;
  visibility: visible;
  opacity: 1;
}

#back2top {
  position: fixed;
  bottom: 74px;
  right: 10px;
  width: 40px;
  height: 40px;
  z-index: 88;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}

#back2top svg {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 7px;
  background-color: #F34B81;
  color: #fff;
  border-radius: 100%;
  border: 1px solid #ffffff60;
}

#back2top .up-arrow {
  margin-top: 4px;
  border-width: 2px 0 0 2px;
}

.thankyou-msg {
  font-size: 16px !important;
  color: #fff !important;
  background: 0 0 !important;
}

.thankyou-logo img {
  max-width: 240px;
  margin: 0 auto 30px;
}

.form-group,
.form-group-wrapper {
  position: relative;
}

label.error {
  color: #fff;
  background: red;
  font-size: 8px;
  position: absolute;
  left: 15px;
  bottom: -20px;
  line-height: 13px !important;
  top: auto;
  font-weight: bold;
}

.form-control.error {
  border-color: red;
}

.modal .form-control.error {
  margin-bottom: 30px;
}

.contact-form label.error {
  bottom: -16px;
  width: inherit;
}

.form-control {
  border-radius: 0;
}

.modal-content {
  border: 0;
  border-radius: 0;
}

.thankyou-block {
  background-color: #f34b81dd;
  height: 100vh;
}

.thankyou-block h1 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.list-point {
  padding: 0;
}

.list-point li {
  position: relative;
  list-style: none;
  padding-left: 20px;
  margin-bottom: 5px;
}

.list-point li:last-child {
  margin-bottom: 0;
}

.list-point li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #231F20;
  border-radius: 100%;
  left: 0;
  top: 8px;
}

.splide__slide img {
  width: 100%;
}

.splide__arrow.splide__arrow--prev:disabled,
.splide__arrow.splide__arrow--next:disabled {
  display: none;
}

.splide__arrow {
  width: 60px;
  height: 60px;
  color: #000000;
  background-color: unset;
  border: unset;
  opacity: 1;
}

.splide__arrow:hover {
  /* background-color: #F34B81; */
  /* color: #fff; */
  /* opacity: 1; */
}

.splide__arrow svg {
  font-size: 18px;
}

.splide__arrow--prev {
  left: 60px;
}

.splide__arrow--next {
  right: 60px;
}

.splide__pagination__page {
  width: 12px;
  height: 12px;
  background: #999999;
  opacity: 1;
}

.splide__pagination__page.is-active {
  transform: none;
  background: #055f8c ;
  opacity: 1;
  width: 40px;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.splide__pagination {
  position: static;
  transform: none;
  margin-top: 15px;
  justify-content: start;
}

.sm-form-control {
  display: block;
  width: 100%;
  border: none;
  padding: 12px 15px;
  background-color: transparent;
  border-radius: 0;
  resize: none;
  color: #fff;
  font-size: 14px;
  border: 1px solid #ffffff;
  border-radius: 7px;
  font-family: 'Geomanist';
}

.pl-80 {
  padding-left: 80px !important;
}

.modal-card-body {
  padding: 30px;
}

.col-form label span {
  color: #ff0000;
}

.title-tagline {
  margin-top: 15px;
  display: block;
}

.close-button {
  top: 0;
  right: 0;
  padding: 5px;
  background-color: #065f9d;
  color: #ffffff;
  position: absolute;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}

.close-button svg {
  display: block;
}

.close-button:hover {
  opacity: 0.8;
  cursor: pointer;
}

.form-title {
  text-align: left;
  margin-bottom: 0;
  font-size: 24px;
  width: 100%;
  margin-bottom: 10px;
  color: #fff;
}

header {
  position: fixed;
  z-index: 999;
  padding: 12px 140px;
  width: 100%;
  top: 0;
  left: 0;
  -moz-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
}

#header.sticky {
  -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 10%);
  box-shadow: 0 0 12px rgb(0 0 0 / 10%);
}

.header__menu-link {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.col-header:last-child {
  text-align: right;
  padding: 0;
}

.theme-logo img {
  max-width: initial;
  width: auto;
  display: block;
  height: 70px;
}

.theme-logo a {
  display: block;
}

.header-primary-menu-wrapper {
  display: inline-block;
  vertical-align: middle;
}

.col-header:first-child {
  max-width: 240px;
  padding: 0;
  flex: 0 0 240px;
}

.header__menu-item {
  display: inline-block;
  padding: 16px;
}

header .columns {
  /* height: 80px !important; */
}

.white-text {
  color: #fff !important;
}

#section-location {
  margin-top: -8px !important;
}

.theme-padding {
  padding-left: 140px;
  padding-right: 140px;
}

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in-top {
  animation: fade-in-top 1s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}

.scrolled.fade-in-left {
  animation: fade-in-left 1s ease-in-out both;
}

.scrolled.fade-in-right {
  animation: fade-in-right 1s ease-in-out both;
}

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.delay1 {
  -webkit-animation-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}

.delay2 {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}

.delay3 {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}

.delay4 {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}

.sticky-btn-brochure,
.sticky-btn-enquire {
  position: fixed !important;
  top: 300px;
  right: -70px;
  font-size: 18px !important;
  padding: 6px 30px !important;
  z-index: 888 !important;
  transform: rotate(-90deg);
  transition: all 0.3s linear;
  background-color: #237ea3;
  color: #ffffff;
  font-weight: 500;
  border: 1px solid #fff;
}

.sticky-btn-brochure {
  right: -102px;
  top: 530px;
}

.sticky-btn-brochure:hover,
.sticky-btn-enquire:hover {
  background-color: #A7D2C1;
  color: #231F20;
}

#scontactform h3 {
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 0;
}

.sticky-bottom-form {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px 0 0px 15px;
  width: 100%;
  z-index: 999;
  background: #237ea3;
  max-width: 1344px;
  margin: 0 auto;
  right: 0;
  border-top: 1px solid #ffffff90;
}

.sticky-bottom-form .col-form {
  position: relative;
  width: 25%;
  float: left;
  padding: 0 15px;
  margin: 0 0 10px !important;
}

.col-form-title {
  display: none;
}

.sticky-bottom-form .col-form .sm-form-control {
  padding: 10px 10px 10px 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #ffffff;
  color: #fff;
  line-height: 19px;
}

.copyright-detail p {
  display: inline-block;
}

.captcha-query,
.captcha-sticky-query {
  position: absolute;
  color: white;
  top: 50%;
  letter-spacing: 10px;
  font-size: 14px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.location-column {
  margin-top: 60px;
}

.location-block {
  padding: 0 0 0 60px;
}

#location-slider1 {
  margin-top: 40px;
}

.location-list h3 {
  color: #28438c;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  min-height: 52px;
}

.listed-points li {
  color: #333;
  margin: 10px 0;
  position: relative;
  padding-left: 25px;
}

.listed-points li:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 7px;
  left: 0;
  border-radius: 100%;
  background-color: transparent;
  border: 2px solid #28438c;
}

#location-slider1 .splide__arrows .splide__arrow {
  bottom: -40px;
  top: auto;
  transform: none;
  left: 60px;
}

#location-slider1 .splide__arrows .splide__arrow.splide__arrow--next {
  left: 100px;
}

#location-slider1 .splide__arrows .splide__arrow svg {
  font-size: 16px;
}

#location-slider1 .splide__arrows .splide__arrow path {
  fill: #28438c;
}

#location-slider1 .splide__arrow {
  opacity: 1;
  background: transparent;
}

.location-img {
  background-color: #fff;
  padding: 30px;
  border: 10px solid #28438c;
}

#footer {
  padding: 30px 0;
  background-color: #237ea3;
}

.copyright-bar .columns {
  margin-bottom: -5px;
}

.col-copyright {
  margin-bottom: 5px;
}

.copyright-detail span,
.copyright-detail p,
.copyright-detail a {
  font-size: 14px;
  color: #231F20;
}

.footer-block h3 {
  color: #28438c;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-menu li a {
  color: #231F20;
  font-size: 14px;
  font-weight: 500;
}

.col-copyright:last-child {
  text-align: center;
  margin: 0;
}

.footer-menu li a:hover,
.copyright-detail a:hover {
  color: #F34B81;
}

.contact b {
  color: #28438c;
}

.theme-block {
  position: relative;
}

.theme-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  z-index: 1;
  opacity: 0;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.theme-block .theme-block-icon {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  left: 0;
  right: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  z-index: 9;
}

.theme-block .theme-block-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

.theme-block:hover:before {
  opacity: 0.6;
}

.theme-block:hover .theme-block-icon {
  opacity: 1;
}

.section-cms {
  min-height: calc(100vh - 161px);
}

.sticky-notice {
  background-color: #b50000;
  position: fixed;
  top: 94px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 5px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.sticky-notice span {
  font-size: 12px;
  line-height: 16px;
  display: block;
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.theme-modal-card-body .col-form-btn {
  max-width: 200px;
  margin: 0 auto;
  margin-top: 10px;
}

.section-contact {
  position: relative;
  border: 20px solid #fff;
  /* border-bottom: 0; */
  background-color: #f34b8180;
}

.contact-form-details {
  position: relative;
  padding: 0 30px;
}

#section-contact .section-title {
  margin-bottom: 20px;
}

.contact-form-details-inner {
  position: relative;
  background-color: #F34B81;
  padding: 30px;
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 0 auto;
  /* border-radius: 8px; */
  border: 1px solid #ffffff25;
}

.contact-form-details-inner .columns {
  justify-content: center;
}

.contact-form-details-inner .column {
  padding: 0 5px;
  margin-bottom: 15px;
}

.contact-form-details-inner .columns {
  margin: 0 -5px;
}

.col-form.col-form-btn {
  width: 100%;
  max-width: 25%;
  margin-top: 10px;
}

.contact-form-details-inner ::placeholder {
  color: #ffffff !important;
}

#footer a:hover {
  color: #A7D2C1;
}

.pink-bg {
  background-color: #055F8C;
}

.green-bg {
  background-color: #F0FFFF;
}

.green-bg .section-title h2 {
  color: #231F20;
}

.section-cms,
#section-banner {
  margin-top: 94px;
}

.call-now-btn {
  position: fixed;
  bottom: 120px;
  right: 10px;
  width: 40px;
  height: 40px;
  z-index: 88;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #F34B81;
  border-radius: 50%;
  border: 1px solid #ffffff60;
}

.call-now-btn a {
  max-width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.livkingsize-logo-overview {
  position: relative;
  max-width: 200px;
  margin: 0 auto 30px;
}


.amenities-col {
  padding: 0 30px;
}

.amenities-wrapper .columns.amenities-cols {
  margin: 0 -30px;
}

.splide__arrow svg path {
  fill: #000000;
  stroke: #000000;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.splide__arrow:hover svg path {
  fill: #F34B81;
  stroke: #F34B81;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#amenities-slider {
  position: static;
  overflow: visible;
}

#amenities-slider .splide__arrows {
  position: absolute;
  bottom: 80px;
  left: 10px;
  display: flex;
  gap: 20px;
}

#amenities-slider .splide__arrow {
  position: static;
  transform: unset;
}

.amenities-cols {
  position: relative;
}

.amenities-wrapper {
  position: relative;
}

.splide__pagination {
  width: 100%;
}

.splide__pagination__page {
  border-radius: 0;
  width: 25px;
  height: 5px;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.section-connectivity {
  background-color: #464B51;
}

.connectivity-content {
  padding: 60px;
}

.connectivity-detail {
  position: relative;
  background-color: #F9F9F9;
  display: flex;
  overflow: hidden;
}

.connectivity-icon-tabs {
  width: 250px;
  flex: 0 0 250px;
  position: relative;
  background-color: #fff;
}

.connectivity-icon-detail {
  position: relative;
  width: calc(100% - 250px);
  flex: 0 0 calc(100% - 250px);
}

.connectivity-items {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.connectivity-items-title span {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  display: block;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.connectivity-icon-tabs li.tab.is-active .connectivity-items {
  background-color: #F0FFFF;
}

.connectivity-icon-tabs li.tab.is-active .connectivity-items .connectivity-items-title span {
  color: #055f8c;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.connectivity-items-icon {
  position: relative;
}

.icon-active {
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.icon-inactive {
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.connectivity-icon-tabs li.tab.is-active .icon-active {
  opacity: 1;
  position: relative;
  top: unset;
  opacity: 1;
  visibility: visible;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.connectivity-icon-tabs li.tab.is-active .icon-inactive {
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.connectivity-detail-box {
  position: relative;
  padding: 60px;
  display: flex;
  flex-wrap: wrap;
}

.connectivity-item-content {
  position: relative;
  width: 50%;
  flex: 0 0 50%;
  margin-bottom: 40px;
  padding-right: 30px;
}

.connectivity-item-content span {
  font-weight: 500;
}

.section-connectivity:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 160px;
  height: 100%;
  background-color: #fff;
}

.theme-element img {
  position: absolute;
  width: 260px;
  height: 260px;
  bottom: 0;
  right: -70px;
  opacity: 0.2;
}

#gallery-slider .splide__pagination {
  justify-content: center;
}

#gallery-slider .splide__arrow--prev {
  left: -80px;
}

#gallery-slider .splide__arrow--next {
  right: -80px;
}

#gallery-slider1 .splide__pagination {
  justify-content: center;
}

#gallery-slider1 .splide__arrow--prev {
  left: -80px;
}

#gallery-slider1 .splide__arrow--next {
  right: -80px;
}


/* #floorplans-slider .theme-block-img img {
  filter: blur(12px);
} */


.theme-block-img .plan-inquire-btn {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  width: 100%;
  max-width: fit-content;
  padding: 8px 50px;
  z-index: 9;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  text-transform: capitalize;
  font-weight: 500;
  color: #fff;
  border-radius: 0;
}

#floorplans-slider .splide__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  width: 100%;
  justify-content: center;
}

.theme-block-img .plan-inquire-btn:hover {
  background-color: #A7D2C1;
  color: #231F20;
}

#floorplans-slider .splide__arrow--prev {
  left: -85px;
}

#floorplans-slider .splide__arrow--next {
  right: -85px;
}

#floorplans-slider .splide__arrow {
  z-index: 55;
}

#floorplans-slider .splide__arrow svg path {
  fill: #fff;
  stroke: #fff;
}

#floorplans-slider .splide__arrow:hover svg path {
  fill: #A7D2C1;
  stroke: #A7D2C1;
}

.section-floorplans:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 140px;
  /*background-color: #F34B81;*/
}

.arya-construction-logo {
  max-width: 200px;
  margin: 0 auto 30px;
}

.about-us-detail {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 40px auto 0;
}

.about-us-item {
  position: relative;
  width: 25%;
  flex: 0 0 25%;
}

.counter-number span,
.counter-number small {
  color: #055f8c;
  font-size: 34px;
  font-weight: 700;
}

.about-us-item:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #D9D9D9;
}

.about-us-item:last-child::before {
  display: none;
}

#home .copyright-bar {
  padding: 10px 30px 70px;
}

.copyright-bar {
  padding: 10px 30px;
  text-align: center;
}

.footer a {
  color: #fff;
}

.footer a:hover {
  color: #fff;
  color: #A7D2C1;
}

.disclaimer-text {
  font-size: 12px;
}

.liv-king-size-logo {
  /*max-width: 140px;
  */
}

.footer-contact-item {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.footer-title h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}

.footer-desc span {
  position: relative;
  display: block;
  font-size: 15px;
}

.footer-desc b {
  font-weight: 500;
}

.footer-contact-detail {
  margin-top: 40px;
}

.footer .container {
  max-width: 1430px !important;
  padding: 0 30px;
}

.social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-item svg {
  width: 36px;
  height: 36px;
}

.strategic-partner-logo {
  max-width: 220px;
}

.footer-contact-col {
  padding: 0 30px;
  position: relative;
}

.columns.footer-contact-cols {
  margin: 0 -30px !important;
}

.footer-contact-col:before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 1px;
  height: 100%;
  transform: translateY(-50%);
  background-color: #D9D9D9;
}

.footer-contact-col:last-child:before {
  display: none;
}

.social-item svg {
  position: relative;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.social-item svg:hover {
  transform: scale(1.10);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.section-overview {
  border-top: 1px solid #eee;
}

#gallery-slider .splide__arrow {
  top: calc(50% - 18px);
}

.reference-image,
.artistic-impression,
.stock-image,
.actual-image {
  position: relative;
}

.reference-image:before,
.artistic-impression:before,
.stock-image:before,
.actual-image:before {
  content: "Stock Image";
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 10px;
  color: #fff;
  line-height: 12px !important;
  font-family: 'Geomanist';
  text-shadow: 2px 2px 2px black;
}

.get-direction-btn .theme-btn {
  padding: 0;
  margin-top: 5px;
}

.tablinks.theme-btn {
  background: #fff;
  color: #231F20 !important;
}

.tablinks.theme-btn.active {
  color: #fff !important;
  background: #F34B81;
}

.floorplan-tabs .theme-btn {
  color: #fff;
  position: relative;
  display: block;
}

.floorplan-tabs {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
}

.plan-item .theme-block-img {
  position: relative;
  background: #fff;
}

.plan-item .theme-block-img {
  position: relative;
}

.plan-title h4 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.plan-item {
  position: relative;
}

.plan-title {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -50px;
}

.privacy-policy-title h4 {
  font-size: 30px;
  line-height: 50px;
  margin: 0;
  font-weight: 300;
  position: relative;
  color: #231F20;
}

.section-privacy-policy .cms-item {
  margin-bottom: 30px;
}

.section-privacy-policy .cms-item:last-child {
  margin-bottom: 0;
}

.section-privacy-policy {
  padding-left: 30px;
  padding-right: 30px;
}

.section-privacy-policy a {
  font-weight: 500;
}

.header-primary-menu-wrapper-inner {
  display: flex;
  align-items: center;
}

a.whatsapp-icon {
  position: fixed;
  bottom: 100px;
  right: 11px;
  width: 40px;
  height: 40px;
  z-index: 9;
}

.qr-code-img img {
  position: relative;
  max-width: 120px;
  margin: 0 auto 15px;
}

#main-slider .splide__arrow {
  width: 45px;
  height: 45px;
  color: #ffffff;
  background: #a7d2c1ba;
  border: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

#main-slider .splide__arrow:hover {
  background: #a7d2c1;
}

.visitus-iframe {
  border: 2px solid #055f8c;
}