@import url("https://fonts.googleapis.com/css2?family=Allison&family=Bilbo+Swash+Caps&family=Great+Vibes&family=Jost:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Jost:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.hm-bd{
  background: #f8fafb;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

p {
  font-family: "Nunito", serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 30px;
}

.top-bar {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 33px;
  margin: 0 auto;
  position: relative;
  background: #093950;
  border-bottom: 1px solid transparent;
  overflow: hidden;
}

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

.recent ul {
  display: flex;
}

.recent ul li a {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  position: relative;
  text-transform: capitalize;
  padding: 3px 6px;
  transition: 0.3s all;
}

.recent ul li {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.recent ul li::before {
  content: "";
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: #fff;
}

.recent ul li:last-of-type::before {
  content: unset;
}

.recent ul li a i {
  margin-right: 7px;
}

.recent ul li a:hover {
  color: #1c2f36;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.social-link {
  line-height: 1;
  float: right;
}

.social-link li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 0;
}

.social-link li a {
  width: 30px;
  height: 30px;
  line-height: 32px;
  background-color: rgba(204, 140, 24, 0.1);
  color: #cc8c18;
  border-radius: 50%;
  text-align: center;
  font-size: 15px;
  position: relative;
  padding-left: 0;
  display: inline-block;
  transition: all 0.5s;
  background: #1977cc;
  color: #fff;
}

.social-link li a:hover {
  transform: translateX(0px);
  animation: rubberBand 1s linear;
  color: #ffffff;
  background-color: #cc8c18;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.header-area {
  position: absolute;
  height: 70px;
  top: 50;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background: #fff;
  background: transparent;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.75) 5%, rgba(0, 0, 0, 0) 100%);
  background: transparent;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.75) 5%, rgba(0, 0, 0, 0) 100%);
  /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.75) 47%, rgba(0, 0, 0, 0) 100%); */
}

.scrollOn {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.88);
  background: #fff;
}

.header-area .main-nav .logo {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.scrollOn .main-nav .logo {
  line-height: 80px;
  /* width: 220px; */
  margin-left: 75px !important;
  transition: width 1.2s;
}

.header-area .main-nav .logo,
.scrollOn .main-nav .logo {
  position: absolute;
  bottom: 0;
  left: 20px;
  top: 10px;
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  border-radius: 50%;
  height: 120px;
  background: #fff;
}

.header-area .main-nav .logo img,
.scrollOn .main-nav .logo img {
  width: 120px;
  position: relative;
  height: 120px;
  display: block;
  /*! border-radius: 0 0 50% 50%; */
  /*! background: #fff; */
  padding: 6px;
}

.scrollOn .nav {
  margin-top: 25px !important;
}

.header-area .main-nav .nav {
  float: right;
  margin-top: 25px;
  margin-right: 0;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  /*! padding-left: 15px; */
  /*! padding-right: 15px; */
  margin: 0;
}

/* .header-area .main-nav .nav li:last-child {
  padding-right: 0px;
  } */

.header-area .main-nav .nav li a {
  display: block;
  text-transform: capitalize;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  /*! height: 40px; */
  /*! line-height: 40px; */
  border: transparent;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: "Josefin Sans", sans-serif;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: 5px;
  margin-left: 5px;
}

.header-area .main-nav .nav li:hover a {
  color: #ccc;
}

.scrollOn .main-nav .nav li a {
  position: relative;
}
.scrollOn.header-area .main-nav .nav li a{
  color: #333;
}
.inner-header-area .main-nav .nav li a, .scrollOn .main-nav .nav li:hover a {
  color: #3d7d98;
  opacity: 1;
}
.header-area.inner-header-area{
  position: relative;
  top: 0;
  background: #fff;
}
.header-area.inner-header-area .main-nav .logo{
  top: 0;
}
.scrollOn .main-nav .nav li a.active {
  color: #3d7d98 !important;
  opacity: 1;
}

.header-area .main-nav .nav li.has-sub {
  position: relative;
  /* padding-right: 15px; */
}

.header-area .main-nav .nav li.has-sub:after {
  font-family: IcoFont;
  content: "\ea99";
  font-size: 12px;
  color: #000;
  position: absolute;
  right: 2px;
  top: 4px;
  transition: all 0.3s;
}

.header-area .main-nav .nav li.has-sub:hover:after {
  color: #3d7d98;
  rotate: 180deg;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu {
  position: absolute;
  width: 280px;
  background-color: #fff;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 50px;
  opacity: 0;
  transition: all 0.3s;
  visibility: hidden;
  z-index: -1;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li a {
  opacity: 1;
  display: block;
  background: #f7f7f7;
  color: #2a2a2a !important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.has-sub ul li a:hover {
  background: #fff;
  color: #3d7d98 !important;
  padding-left: 25px;
}

.main-nav .nav li a.active {
  color: #3d7d98 !important;
  color: #fff !important;
}

.main-nav .nav li a.active::before {
  display: block;
  content: "";
  padding-top: 4px;
  border-bottom: 2px solid #fff;
  transform: scaleX(1);
  transform-origin: 0 50%;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  transition: transform 0.2s ease-in-out;
  transition-delay: 0s;
}
.inner-header-area .main-nav .nav li a.active::before, .scrollOn .main-nav .nav li a.active::before{
  border-bottom: 2px solid #3d7d98;
}
.main-nav .nav li a::before {
  display: block;
  content: "";
  padding-top: 4px;
  border-bottom: 2px solid #fff;
  transform: scaleX(0);
  transform-origin: 0 50%;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  transition: transform 0.2s ease-in-out;
  transition-delay: 0s;
}
.inner-header-area .main-nav .nav li a::before, .scrollOn .main-nav .nav li a::before{
  border-bottom: 2px solid #3d7d98;
}
.inner-header-area .main-nav .nav li a{
  color: #333 !important;
}
.inner-header-area .main-nav .nav li a.active, .inner-header-area .main-nav .nav li a:hover{
  color: #3d7d98 !important;
}
.main-nav .nav li a:hover::before {
  transform: scaleX(1);
  transform-origin: 0 50%;
  transition-delay: 0.2s;
}

.header-area .main-nav .nav li.has-sub ul li a:hover:before {
  width: 100%;
}

.header-area .main-nav .nav li.has-sub:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 50%;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 0;
  display: none;
  transform: translate(-50%, -40%);
}

.scrollOn .main-nav .menu-trigger {
  top: 50%;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #fff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span::before,
.header-area .main-nav .menu-trigger span::after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #021523;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.scrollOn .main-nav .menu-trigger span,
.scrollOn .main-nav .menu-trigger span:before,
.scrollOn .main-nav .menu-trigger span:after {
  background-color: #000;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #021523;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.scrollOn .main-nav .menu-trigger span:before,
.scrollOn .main-nav .menu-trigger span:after {
  background-color: #000;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #021523;
}

.scrollOn .main-nav .menu-trigger.active span:before {
  background-color: #000;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #021523;
}

.scrollOn .main-nav .menu-trigger.active span:after {
  background-color: #000;
}

.header-area .nav {
  margin-top: 30px;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 7px;
    padding-right: 7px;
  }

  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 998px) {

  .header-area .main-nav .nav,
  .header-area.scrollOn .main-nav .nav {
    margin-top: 80px !important;
  }
}

@media (max-width: 998px) {
  .header-area .main-nav .logo {
    color: #1e1e1e;
    height: auto;
  }

  .header-area {
    background: #fff;
    padding: 0px 15px;
    height: 80px;
    box-shadow: none;
    text-align: center;
    position: relative;
  }

  .header-area .main-nav .nav li.has-sub::after {
    rotate: 360deg;
    transition: 1s ease;
    color: #212741;
  }

  .header-area .main-nav .nav li.has-sub.is-open-sub::after {
    rotate: 180deg;
    transition: 1s ease-in-out;
    color: #212741;
  }

  .header-area .container {
    padding: 0px;
  }

  .header-area .logo {
    margin-left: 0px;
    line-height: 80px;
  }

  .header-area .menu-trigger {
    display: block !important;
  }

  .header-area .main-nav {
    overflow: hidden;
  }

  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }

  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }

  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    /* padding-left: 0px !important;
  padding-right: 0px !important; */
  }

  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #ff511a !important;
  }

  .header-area .main-nav .nav li a:last-of-type {
    margin-right: 0 !important;
  }

  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
    transition: all 0s;
  }

  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }

  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }

  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    height: auto;
  }

  .header-area .main-nav .nav li.has-sub:after {
    color: #3b566e;
    right: 30px;
    font-size: 14px;
    top: 15px;
  }

  .header-area .main-nav .nav li.submenu:hover ul,
  .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 998px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}

@media (max-width: 998px) {
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
    font-size: 16px !important;
  }

  .main-nav .nav li a.active {
    background: #eee !important;
  }
}

@media (max-width: 998px) {
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    display: none;
  }
}

#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 10px;
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
  border: 2px solid #1977cc;
  background: #093950;
}

#return-to-top i {
  color: #1977cc;
  margin: 0;
  position: relative;
  left: 15px;
  top: 10px;
  font-size: 20px;
  -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;
}

#return-to-top:hover {
  background: rgba(0, 0, 0, 0.9);
  background: #007392;
  border: 2px solid #243e61;
}

#return-to-top:hover i {
  color: #eee;
  top: 5px;
}

.scrollOn .main-nav .logo {
  margin-left: 0 !important;
  border-bottom: 1px solid #000;
  top: 0;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -30%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@media (max-width: 998px) {
  .scrollOn {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.88) !important;
  }

  .header-area .main-nav .nav li a {
    margin-left: 0 !important;
  }
}

.btn-default-a a {
  padding: 12px 30px;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: 0.5s;
  overflow: hidden;
  border: 1px solid #6e7c6b;
  background-color: #fff;
  font-size: 18px;
  text-transform: capitalize;
  color: #ffffff;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
}

.btn-default-a a::after {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  color: #fff;
  position: absolute;
  content: '';
  cursor: pointer;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #6e7b6c;
  background-image: url(../img/musk.png);
  -webkit-mask: url(../img/musk.png);
  mask: url(../img/musk.png);
  -webkit-mask-size: 2300% 100%;
  mask-size: 2300% 100%;
  animation: mask_animation_2 0.7s steps(22) forwards;
  z-index: -1;
}

.btn-default-a a:hover::after {
  animation: mask_animation 0.7s steps(22) forwards;
}

.btn-default-a a:hover {
  color: #000;
}

@keyframes mask_animation {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }

  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}

@keyframes mask_animation_2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }

  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}

.about-property {
  padding: 70px 30px;
  position: relative;
  background: #f8fafb;
}

.sec-mb {
  margin-bottom: 85px;
}

.abpimg1 {
  border-radius: 15px;
  height: 225px;
  object-fit: cover;
}

.abpimg2 {
  border-radius: 15px;
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.abpimg3 {
  border-radius: 15px;
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.abpimg2-float {
  float: right;
  margin-right: -15px;
}

.abpimg3-float {
  float: left;
  margin-left: -15px;
}

.about-property-content {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

.sp-tg {
  margin-bottom: 15px;
}

.sp-tg span {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  color: #2e718d;
  position: relative;
  font-family: "Josefin Sans", sans-serif;
  background: rgba(46, 113, 141, 0.1);
  padding: 5px 20px;
  border-radius: 50px;
  padding-top: 7px;
}

.about-property-content h1,
.about-property-content h3 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  line-height: 50px;
}

.about-property-content h3 {
  font-size: 35px;
  font-family: "Playfair", serif;
  font-weight: 600;
}

.about-property-content p {
  line-height: 40px;
  font-size: 18px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}

.box-wall {
  position: relative;
  z-index: 1;
}

.about-img-sec a {
  position: relative;
  display: block;
}

.about-img-sec a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(104, 176, 201, 0.5);
  left: 0;
  top: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all linear .3s;
  -o-transition: all linear .3s;
  transition: all linear .3s;
  border-radius: 15px;
}

.about-img-sec a:hover::before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.wall-hover-box {
  background: #2b718f;
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  transition-delay: 0s;
  width: 25%;
  z-index: -1;
}

.hover-box {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-box2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-box3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-box4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.box-wall:hover .wall-hover-box {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.leisure {
  padding: 70px 30px;
  position: relative;
  background: #fff;
}


.choose-us-item {
  border: 1px solid rgba(28, 28, 28, 0.12);
  border-radius: 10px;
  padding: 30px 25px;
  position: relative;
  transition: all 0.3s;
  min-height: 340px;
  margin: 10px 0;
  background-color: rgba(46, 113, 141, 0.1);
}

.devider {
  height: 1px;
  background-color: rgba(28, 28, 28, 0.12);
  position: absolute;
  left: 0;
  right: 0;
  top: 70px;
}

.choose-us-img {
  border: 1px solid rgba(28, 28, 28, 0.12);
  border-radius: 10px;
  padding: 13px;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  transition: all 0.3s;
  left: 0;
  height: 66px;
  width: 66px;
}

.choose-us-img img {
  height: auto;
}

.choose-us-content {
  margin-top: 35px;
  margin-top: 10px;
}

.choose-us-content h3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  font-family: "Playfair", serif;
  font-weight: 700;
}

.choose-us-content h3 a {
  font-size: 26px;
  line-height: 58px;
  color: #1A2D6D;
  font-weight: 500;
}

.choose-us-content h3 a i {
  font-size: 20px;
  margin-left: 3px;
}

.choose-us-content p {
  font-weight: 500;
  font-size: 18px;
  line-height: 35px;
  color: #212529;
  margin-bottom: 0;
}

.choose-us-item:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.choose-us-item:hover .choose-us-img {
  left: 35%;
}

.choose-us-content h3 a:hover {
  color: #1D92CD;
}

.choose-us-item:hover .devider {
  background: #fff;
}

.choose-us-item:hover .choose-us-content h3,
.choose-us-item:hover .choose-us-content p {
  color: #fff;
}

.choose-us-item .hover-box {
  border-radius: 10px 0 0 10px;
}

.choose-us-item .hover-box4 {
  border-radius: 0 10px 10px 0;
}

.bor-line {
  width: 40px;
  height: 3px;
  margin: 10px 0;
  opacity: 1;
  border: none;
  background: #266c89;
  transition: all 0.3s;
}

.choose-us-item:hover .bor-line {
  width: 100px;
  background: #fff;
}

.choose-us-item:hover .choose-us-content a {
  color: #cc8c18;
}

.choose-us-content a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.18;
  padding-bottom: 3px;
  font-family: "Jost", sans-serif;
}

.choose-us-content a:hover {
  color: #fff;
}

.choose-us-content a::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  background: #fff;
  width: 0%;
  height: 1px;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}

.choose-us-content a:hover::after {
  width: 100%;
  left: 0;
}
.choose-us-content a:hover{
  color: #fff !important;
}
.choose-us-item:hover {
  background: #2b718f;
  -webkit-transition-delay: 0.115s;
  transition-delay: 0.115s;
}
.video-content {
  background: #eee;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(3, 135, 204, 0.98) 55.04%, rgba(3, 135, 204, 0.90) 57.27%, rgba(3, 135, 204, 0.78) 59.93%, rgba(3, 135, 204, 0.69) 61.98%, rgba(3, 135, 204, 0.58) 63.85%, rgba(3, 135, 204, 0.00) 73.58%), url(../img/pcb.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.flex-prop{
  display: flex;
  flex-wrap: wrap;
}
.video-bg-box{
  background: url(../img/pcb.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 540px;
  background-position: bottom;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-content-text {
  padding: 50px;
  width: 60%;
}
.video-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
}
.video-content-text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 40px;
  color: #333;
}
.inner-action-a {
  position: relative;
  font-family: "Nunito", serif;
}
.inner-action-a:hover{
  color: #cc8c18;
}
.inner-action-a::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  background: #cc8c18;
  width: 0%;
  height: 1px;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.inner-action-a:hover::after {
  width: 100%;
  left: 0;
}
.img-btn a{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  -o-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
  -webkit-animation: ripple 3s infinite;
  -moz-animation: ripple 3s infinite;
  -ms-animation: ripple 3s infinite;
  -o-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  background: #0387cc;
  transition: 0.3 all ease-in-out;
  text-decoration: none !important;
}
.img-btn a::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
	height: 90px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50% 50% 50% 50%;
    -moz-border-radius: 50% 50% 50% 50%;
    -ms-border-radius: 50% 50% 50% 50%;
    -o-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
}
.img-btn a::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
	height: 90px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50% 50% 50% 50%;
    -moz-border-radius: 50% 50% 50% 50%;
    -ms-border-radius: 50% 50% 50% 50%;
    -o-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
}
.img-btn a:hover{
    background: #fff;
    color: #0387cc;
}
.img-btn a:hover, .img-btn a:hover::before, .img-btn a:hover::after{
    animation-play-state: paused;
}
@-webkit-keyframes ripple {
    70% {box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);}
    100% {box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);}
}

@keyframes ripple {
    70% {box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);}
    100% {box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);}
}

.new-btn-sec{
  width: fit-content;
}
.new-btn-sec a {
  padding: 10px 20px;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 40px;
  color: #333;
  font-family: "Nunito", serif;
}
.new-btn-sec::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #2b718f;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s ease 0s;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
  z-index: -1;
}
.new-btn-sec:hover::before{
  opacity: 1;
}
.new-btn-sec:hover a{
  color: #fff;
}
.video-txt-box {
  position: relative;
  padding: 70px 30px;
  margin-bottom: 70px;
}
.video-img-box-set {
  position: relative;
  position: sticky;
  top: 80px;
}
.video-img1 img {
  height: 460px;
  object-fit: cover;
  width: 424px;
  border-radius: 10px;
}
.video-img2{
  /* position: absolute;
  top: 49%;
  right: 5%; */
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
}
.video-img2 img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.video-btns{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.shape-right{
  position: absolute;
  top: 0%;
  right: 6%;
}
.shape-bottom{
  position: absolute;
  top: 99%;
  left: 0;
}


    .video-box-txt h1 {
  font-family: "Jost", sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  font-family: "Playfair", serif;
  font-weight: 700;
}
.video-box-txt p{
  line-height: 40px;
  font-weight: 500;
  font-size: 18px;
}
.title-line {
  margin: 10px 0;
  display: flex;
  align-items: center;
}
.tl-1,
.tl-3 {
  width: 80px;
  height: 1px;
  display: inline-block;
  background: #333;
}
.tl-2 {
  display: inline-block;
  height: 12px;
  margin: 0px 5px;
  position: relative;
  top: 0;
  width: 12px;
  border: 1px solid #f26f21;
  border-radius: 50px;
}
.rev-slider{
  padding: 70px 15px;
  background: #fff;
  overflow: hidden;
}
.rev-slider-head{
  text-align: center;
}
.rev-slider-head h1 {
  margin-bottom: 12px;
  font-family: "Jost", sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: "Playfair", serif;
  font-weight: 700;
}
.all-hvr-box{
  border: 1px solid rgba(46, 113, 141, 0.1);
  border-radius: 7px;
  padding: 50px 30px 50px;
  transition: all 0.3s ease-in-out;
  position: relative;
  background-color: rgba(46, 113, 141, 0.1);
  margin-top: 15px;
  margin-bottom: 15px;
  min-height: 500px;
}
.all-hvr-box::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #2e718d;
  border-radius: 7px;
  content: "";
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.all-hvr-box:hover::before, .all-hvr-box.active::before {
  opacity: 1;
  visibility: visible;
  top: -10px;
  left: -10px;
}
.all-hvr-box:hover, .all-hvr-box.active{
  background-color: #fff;
  border-color: #ddd;
  box-shadow: 10px 10px 0px rgba(0,0,0,0.1);
}
.quote-icon{
  font-size: 70px;
  color: #2e718d;
  line-height: 1;
}
.user-star {
  font-size: 20px;
  color: #2e718d;
}
.user-star ul{
  display: flex;
  gap: 3px;
}
.user-txt h3{
  font-family: "Jost", sans-serif;
  font-size: 33px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 10px 0;
  line-height: 35px;
  font-family: "Playfair", serif;
  font-weight: 700;
}
.user-txt p {
  font-family: "Nunito", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 40px;
  color: #333;
}
.user-txt a{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.18;
  padding-bottom: 3px;
  font-family: "Jost", sans-serif;
  color: #165685;
  position: relative;
}
.user-txt a::before {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: 0;
  background-color: #0387cc;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.user-txt a:hover::before {
  width: 100%;
  left: 0;
}
.user-txt a:hover{
  color: #0387cc;
}
.user-info{
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.user-img img{
  border-radius: 50%;
  background-color: #eee;
  width: 70px !important;
  height: 70px !important;
  line-height: 70px !important;
  float: left;
  overflow: hidden;
  margin-right: 25px;
  object-fit: cover;
}
.user-name{
  overflow: auto;
}
.user-name h2{
  font-family: "Jost", sans-serif;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  /*margin-top: 20px;*/
  font-size: 25px;
}
.rev-slider-set .owl-stage-outer {
  padding: 0 10px;
  /* margin-right: -15px; */
  margin-right: 0;
}
#rev-full-slider .owl-dots, #banner-slider .owl-dots {
  margin-top: 10px;
  text-align: center;
}
#why-slider .owl-dots, #why-slider2 .owl-dots{
  text-align: center;
  position: absolute;
  bottom: 2%;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
}
#rev-full-slider .owl-dots .owl-dot, #banner-slider .owl-dots .owl-dot, #why-slider .owl-dots .owl-dot, #why-slider2 .owl-dots .owl-dot  {
  border-width: 3px;
  border-color: transparent;
  border-style: solid;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-block;
  line-height: 24px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  margin: 0px 5px;
  transition: all 0.3s ease-in-out;
  zoom: 1;
}

#rev-full-slider .owl-dots .owl-dot.active {
  border-color: #2e718d;
}

#rev-full-slider .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
  margin: 0;
  line-height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50%;
  margin-left: -5px;
  transition: all 0.3s ease-in-out;
}

#rev-full-slider .owl-dots .owl-dot:hover span {
  background: #869791;
    background-color: rgb(134, 151, 145);
}

#rev-full-slider .owl-dots .owl-dot.active span {
  background-color: #2e718d;
}


.rev-slider .hr {
  border-bottom: 1px solid #333;
  width: 90%;
  display: block;
  margin: auto;
  padding: 30px;
}
.copy-sec__area {
  background: #D3D3D3;
}

.copy-sec__border {
  padding: 14px 0;
}
.text-md-start {
  text-align: left !important;
}

.copy-sec__text span strong {
  color: #243e61;
}
.m000 {
  margin: 0 !important;
}
.copy-sec__social-box {
  margin-left: 10px;
}
.copy-sec__social-box a:first-child {
  margin-left: 0;
}
.copy-sec__social-box a {
  color: #243e61;
  font-size: 14px;
  border-radius: 50%;
  border: 2px solid #003d4d;
  background-position: 100%;
  background-image: linear-gradient(-200deg, #243e61 50%, #fff 50%);
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-size: 500%;
  white-space: nowrap;
  margin-left: 20px;
}
.copy-sec__social-box a i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.copy-sec__social-box a:hover {
  background-position: 0%;
  color: #fff;
}
.copy-sec__social-box a i img{
  width: 25px;
  height: 25px;
}
.copy-sec__text a {
  margin: 0 10px;
  position: relative;
  padding-bottom: 10px;
}
.copy-sec__text a:hover strong{
  color: #243e61;
}
.copy-sec__text span {
  color: #505050;
  font-size: 17px;
  line-height: 30px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}
[tooltip] {
  position: relative; /* opinion 1 */
}
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: 15px; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 1;
  font-weight: 600;
  font-family: "Jost", sans-serif;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent;
  z-index: 1001;
}
[tooltip]::after {
  content: attr(tooltip); 
  text-align: center;
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #1977cc;
  color: #fff;
  z-index: 1000; 
}

[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #1977cc;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}
.social-footer{
  float: unset !important;
  text-align: center;
}
.social-link.social-footer ul li a{
  width: 40px;
  height: 40px;
  line-height: 42px;
  background: rgba(3, 135, 204, 0.1);
  color: #0387cc;
}
.social-link.social-footer li a:hover{
  background: #0387cc;
  color: #fff;
}
.modal-backdrop.fade.show {
    z-index: 1;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    background-color: #e8e8e8d9;
  }
  .modal-header .close{
    background: none;
    border: none;
    font-size: 20px;
  }
  .modal-header, .modal-footer{
    padding: 8px 16px;
  }
  .modal-header h5{
    font-size: 25px;
    font-family: "Jost";
    font-weight: 500;
  }
  .form-srt {
  background: #1c2f36;
  text-align: left;
  padding: 0 15px;
  border-radius: 5px;
  position: relative;
  color: #2e718d;
  background: #eff6ff;
  border: 1px solid #2e718d;
}

.form-srt h2 {
  line-height: 30px;
  color: #2e718d;
  margin-bottom: 15px;
  border-bottom: 1px solid #2e718d;
  width: fit-content;
  padding-bottom: 10px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 35px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  font-family: "Jost";
}
.form-srt p{
  margin-bottom: 15px;
  font-weight: 500;
}
.cnt-frm {
  font-family: "Jost";
  font-size: 23px;
  font-weight: 400;
  line-height: 1.75em;
  color: #2e718d;
  margin-bottom: 10px;
  text-align: center;
  border-bottom: 1px solid #2e718d;
}

.form-group {
  margin-bottom: 1rem;
}

.form-srt .contactForm .form-control {
  border: none;
  background: rgba(41, 140, 128, 0.15);
  padding: 20px;
  height: 50px;
  box-shadow: none;
  font-size: 18px;
  font-weight: 500;
  font-family: "Jost";
  color: #505050;
  line-height: 30px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form-srt .contactForm .form-control:hover {
  border-radius: 5px;
  background: #eff6ff;
  border: 1px solid #2e718d;
}

textarea.form-control {
  min-height: 140px !important;
}

.get-in {
  text-align: center;
  margin: 0;
  border: 1px solid #cba36b;
  background: #1c2f36;
  padding: 5px;
  border-radius: 5px;
  color: #2e718d;
  background: #eff6ff;
  border: 1px solid #2e718d;
}

.position-set {
  position: sticky;
  top: 10px;
}

.get-in h2 {
  margin-top: 20px;
  line-height: 30px;
  color: #2e718d;
  margin-bottom: 20px;
  border-bottom: 1px solid #2e718d;
  width: fit-content;
  padding-bottom: 10px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 35px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Jost";
}

.get-in ul {
  list-style-type: none;
  margin: 0;
  padding: 0 10px;
}

.get-in ul li {
  margin: 10px 0;
  font-size: 16px;
  display: block;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  text-align: left;
}

.get-in ul li a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost";
  color: #2b718f;
  line-height: 30px;
}

.get-in ul li a i {
  color: #fff;
  font-size: 26px;
  height: 50px;
  width: 50px;
  box-shadow: 1px 1px 1px #000;
  text-align: center;
  line-height: 45px;
  margin-right: 10px;
  border-radius: 50px;
  border: 2px solid #f7f7f7;
  background: #2e718d;
}

.get-in ul {
  list-style-type: none;
  margin: 0;
  padding: 0 10px;
}

.javacod ul li {
  border: none;
  padding: 0;
  margin: 0;
  font-weight: 600;
  margin-left: 5px;
  font-size: 18px;
  display: block;
  text-align: left;
  font-weight: 500;
  font-family: "Jost";
  color: #505050;
  line-height: 30px;
}

.get-in ul li a:hover {
  color: #2e718d;
  transition: 0.5s ease-in;
}

.get-in ul li a:hover i {
  background: #fff;
  color: #6db4cc;
  box-shadow: 1px 1px 1px #6db4cc;
  border: 2px solid #6db4cc;
  transition: 0.5s ease-in;
}
.close-btn-mdl.btn-default{
  padding: 5px 10px;
}
.pb-15-sec{
  padding-bottom: 15px;
}
.social-links-list {
  position: sticky;
  top: 10px;
}
.social-links-list {
  padding: 5px;
  border-radius: 5px;
  color: #2e718d;
  background: #eff6ff;
  border: 1px solid #2e718d;
  margin-top: 10px;
}
.social-links-list h2 {
  margin-top: 13px;
  line-height: 30px;
  color: #2e718d;
  margin-bottom: 13px;
  border-bottom: 1px solid #2e718d;
  width: fit-content;
  padding-bottom: 10px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 30px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Jost";
}
.social-links-list ul {
  position: relative;
  padding-left: 0;
  display: flex;
  justify-content: center;
  margin: 0;
}
.social-links-list ul li {
  position: relative;
  margin-right: 10px;
  list-style: none;
}
.social-links-list ul li:last-child {
  margin-right: 0;
}
.social-links-list ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: #2e718d;
  border-radius:
5px;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  transition:
all 200ms linear;
    transition-delay: 0s;
  transition-delay: 0.1s;
  z-index: 1;
  text-decoration: none;
}
.social-links-list ul li a::before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background-color: #6db4cc;
  border-radius:
5px;
  content: "";
  opacity: 0;
  transform: scale(0.5);
  transform-style: preserve-3d;
  transition:
all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}
.social-links-list ul li:hover a::before {
  opacity: 1.0;
  transform: scale(1.0);
}
.social-links-list ul li:hover a {
  color: #ffffff;
}
.btn-default {
        display: inline-block;
        background: #2b718f;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        padding: 14px 30px;
        border-radius: 5px;
        position: relative;
        overflow: hidden;
        z-index: 0;
        border: none;
        outline: 0;
        box-shadow: none;
        font-family: "Jost", sans-serif;
        transition: 0.2s transform;
      }
      .btn-default::before {
        content: '';
        position: absolute;
        width: 0;
        height: 104%;
        top: 50%;
        left: 50%;
        background: #6db4cc;
        opacity: 0;
        z-index: -1;
        transform: translateX(-51%) translateY(-51%);
        transition: all 0.4s;
        border-radius: 5px;
      }
      .btn-default:hover::before {
        width: 106%;
        opacity: 1;
      }
.modal-body{
  background-color: #dbe7f4;
  border-radius: 0 0 0.5rem 0.5rem;
}
.activity-leisure-content p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.choose-us-content.showContent .activity-leisure-content p {
  -webkit-line-clamp: 100;
}
.rev-slider-head .title-line, .rev-slider-head .title-line{
  justify-content: center;
}
.rev-slider-head{
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .top-bar {
    padding: 15px 0;
    height: unset;
    background: #021523;
  }

  .top-bar .container-fluid {
    padding: 0;
  }

  .recent ul {
    display: flex;
    justify-content: center;
  }

  .recent ul li {
    padding-left: 8px;
    padding-right: 8px;
  }

  .recent ul li a {
    display: flex;
    align-items: center;
    padding: 0 5px;
    transition: 0.3s all;
    color: #fff;
    background: transparent;
    border: 1px solid transparent;
  }

  .swiper-container {
    height: 300px;
  }

  .social-link,
  .text-fix-inter {
    display: none;
  }

  .scrollOn .main-nav .logo img {
    box-shadow: unset;
  }

  .header-area .main-nav .logo,
  .scrollOn .main-nav .logo {
    top: 0;
  }

  .header-area .main-nav .logo img,
  .scrollOn .main-nav .logo img {
    width: auto;
    position: relative;
    height: 80px;
    display: block;
    border-radius: 0;
    background: #fff;
    padding: 0;
  }
  .scrollOn .main-nav .logo{
      border: none;
  }

  .about-property {
    padding: 30px 0;
  }

  .sec-mb {
    margin-bottom: 10px;
  }

  .abpimg2-float,
  .abpimg3-float {
    float: unset;
    margin: 0;
  }

  .abpimg2,
  .abpimg3 {
    width: 100%;
  }

  .about-property-content {
    padding: 0;
    margin: 20px 0;
  }

  .about-property .container-fluid .row .col-lg-3 {
    width: 50%;
    order: 1;
  }

  .about-property .container-fluid .row .col-lg-6 {
    order: 3;
  }
  .about-property-content{
    text-align: left;
  }
  .about-property-content h3 {
    line-height: 35px;
    text-align: left;
  }

  .about-property-content p {
    line-height: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
  }
  .leisure, .rev-slider{
    padding: 30px 0;
  }
  .video-content{
    background-image: unset;
    background: rgba(3, 135, 204, 0.98);
  }
  .video-content-text {
    padding: 30px 15px;
    width: 100%;
    order: 2;
  }
  .video-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    background-image: url(../img/oldpcb.jpg);
    background-size: cover;
    order: 1;
  }
  .video-txt-box{
    padding: 30px 0;
  }
  .video-img-box-set{
    margin-bottom: 20px;
  }
  .video-img1{
    width: 330px;
  }
  .video-img1 img {
  height: 290px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
  .shape-right, .shape-bottom{
    display: none;
  }
  .video-box-txt h1{
    font-size: 28px;
  }
  .copy-sec__text{
    text-align: left !important;
  }
  .copy-sec__text a{
    display: block;
    padding-bottom: 5px;
  }
  .video-img1{
    display: none;
  }
  .rev-slider-head h1{
      font-size: 25px;
  }

}
.gallery-starts {
  padding: 50px 0;
  padding: 30px 20px;
  background: #f8f5f0;
}
.tg-tour-about-wrap {
  border: 1px solid rgba(28, 28, 28, 0.12);
  border-radius: 10px;
  padding: 15px;
  position: relative;
  transition: all 0.3s;
  min-height: 340px;
  margin: 10px 0;
  background-color: rgba(46, 113, 141, 0.1);
}
.tg-tour-details-gallery-slider-wrap .swiper-container{
  height: 475px;
}
.tg-tour-details-gallery-thumb-active.swiper-container{
  height: auto;
} 
.tg-tour-details-gallery-thumb img {
  border-radius: 15px;
  height: 460px !important;
  width: auto !important;
  margin: auto;
  display: block;
}
.tg-tour-details-gallery-thumb-active .tg-tour-details-gallery-thumb {
  mix-blend-mode: luminosity;
  position: relative;
  border: 2px solid transparent;
  border-radius: 15px;
}
.tg-tour-details-gallery-thumb-active .tg-tour-details-gallery-thumb img {
  border-radius: 12px;
  height: 100px !important;
  width: 100% !important;
  object-fit: cover;
}
.tg-tour-details-gallery-thumb-active .tg-tour-details-gallery-thumb::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 12px;
  opacity: 0.5;
  background: #020615;
  top: 0;
  transform: scale(1);
  transition: all 0.4s ease;
  left: 0;
}
.tg-tour-details-gallery-thumb-active .swiper-slide-active .tg-tour-details-gallery-thumb {
  border: 2px solid #5600EE;
}
.tg-tour-details-gallery-thumb-active .swiper-slide-active .tg-tour-details-gallery-thumb::before {
  transform: scale(0);
  opacity: 1;
}
.tg-tour-details-gallery-navigation button {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background-color: #fff;
  color: #020615;
  position: absolute;
  top: 48%;
  left: 50px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  font-size: 18px;
}
@media (max-width: 575px) {
  .tg-tour-details-gallery-navigation button {
    left: 15px;
  }
}
.tg-tour-details-gallery-navigation button:hover {
  background: #5600EE;
  color: #fff;
  border-color: #5600EE;
}
.tg-tour-details-gallery-navigation button.tg-tour-details-gallery-prev{
  left: 10px;
  right: auto;
}
.tg-tour-details-gallery-navigation button.tg-tour-details-gallery-next {
  right: 10px;
  left: auto;
}
@media (max-width: 575px) {
  .tg-tour-details-gallery-navigation button.tg-tour-details-gallery-next {
    right: 15px;
  }
}
.caption-with-fullscreen{
  position: relative;
}
.caption-with-fullscreen a{
  position: absolute;
  top: 10px;
  right: 5px;
  color: #fff;
  font-size: 16px;
  height: 35px;
  width: 35px;
  border-radius: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background: #1b1b1b;
}
.caption-with-fullscreen:hover a{
  opacity: 1;
}
.caption-with-fullscreen p{
  position: absolute;
  bottom: 0;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #505050;
  line-height: 30px;
  width: 80%;
  transform: translate(-50%, 0);
  left: 50%;
  text-align: center;
  border-radius: 4px;
}


.vehicle-detail-banner .car-slider-desc {
  max-width: 180px;
  margin: 0 auto;
}
.banner-slider .slider.slider-for {
  max-width: 84%;
  padding-right: 35px;
}
.banner-slider .slider.slider-nav {
  max-width: 16%;
}
.banner-slider .slider.slider-for,
.banner-slider .slider.slider-nav {
  width: 100%;
  float: left;
}
.banner-slider .slider.slider-nav {
  height: 610px;
  overflow: hidden;

}
.slider-banner-image {
  height: 610px;
}
.banner-slider .slider.slider-nav {
  padding: 20px 0 0;
}
.slider-nav .slick-slide.thumbnail-image .thumbImg{
  max-width: 178px;
  height: 110px;
  margin: 0 auto;
  border: 1px solid #EBEBEB;
}
.slider-banner-image img,
.slider-nav .slick-slide.thumbnail-image .thumbImg img {
  height: 100%;
  width:100%;
  object-fit: cover;
}
.slick-vertical .slick-slide:active,
.slick-vertical .slick-slide:focus,
.slick-arrow:hover,
.slick-arrow:focus {
  border: 0;
  outline: 0;
}
.slider-nav .slick-slide.slick-current.thumbnail-image .thumbImg {
  border: 2px solid #196DB6;
}
.slider-nav .slick-slide.slick-current span {
  color: #196DB6;
}
.slider-nav .slick-slide {
  text-align: center;
}
.slider-nav .slick-slide span {
  font-size: 14px;
  display: block;
  padding: 5px 0 15px;
}
.slick-arrow {
  width: 100%;
  background-color: transparent;
  border: 0;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
  height: 18px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99;
}
.slick-prev {
 top: 0;
}
.slick-next {
 bottom: 0;
 background-color: #fff;
}
.slick-prev.slick-arrow {
  background-image: url(../images/black-up-arrow.png);
}
.slick-next.slick-arrow {
  background-image: url(../images/black-down-arrow.png);
}
/*End USE CSS for Slider*/

@media screen and (max-width : 991px) {

.banner-slider .slider.slider-for,
.banner-slider .slider.slider-nav {
    max-width: 100%;
    float: none;
}
.banner-slider .slider.slider-for {
  padding-right: 0;
}
.banner-slider .slider.slider-nav {
  height: auto;
}
.slider-banner-image {
    height: 500px;
} 
.slider.slider-nav.thumb-image {
      padding: 10px 30px 0;
}
.slider-nav .slick-slide span {
  padding: 5px 0;
}
.slick-arrow {
  padding: 0;
    width: 30px;
    height: 30px;
    top: 50%;
    bottom: 0;
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -moz-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
}
.slick-prev {
    left: 0;
    right: unset;
}
.slick-next {
    left: unset;
    right: 0;
     background-color: transparent;
}
.vehicle-detail-banner .car-slider-desc {
    max-width: 340px;
}
.bid-tag {
    padding: 10px 0 15px;
}
.slider.slider-nav.thumb-image {
   white-space: nowrap;
}
.thumbnail-image.slick-slide {
  padding: 0px 5px;
  min-width: 75px;
  display: inline-block;
  float: none;
}
}

@media screen and (max-width : 767px) {
.slider-banner-image {
    height: 400px;
}
.slider.slider-nav.thumb-image {
    padding: 0px 20px 0;
    margin: 10px 0px 0;
}
.slider-nav .slick-slide.thumbnail-image .thumbImg {
  max-width: 140px;
  height: 80px;
}
.slick-prev.slick-arrow {
    background-position: center 10px;
}
.slick-next.slick-arrow {
    background-position: center 10px, center;
}
.slider-nav .slick-slide span {
    font-size: 12px;
    white-space: normal;
}
}

@media screen and (max-width: 580px) {
.slider-banner-image {
    height:340px;
}
}

@media screen and (max-width : 480px) {
.slider-banner-image {
    height:280px;
}
}
.stay-prop-lft-side, .stay-prop-rgt-side {
  position: absolute;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: #fff;
  background-color: #1b1b1b;
  top: 50%;
  margin-top: -25px;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.stay-prop-lft-side:hover,
.stay-prop-rgt-side:hover {
  background-color: blue;
}

.stay-prop-lft-side {
  left: 25px;
}

.stay-prop-rgt-side {
  right: 25px;
}

.stay-prop-nav .stay-prop-lft-side,
.stay-prop-nav .stay-prop-rgt-side {
  opacity: 0;
}
.stay-prop-nav:hover .stay-prop-lft-side,
.stay-prop-nav:hover .stay-prop-rgt-side {
  opacity: 1;
}
.draggable {
  cursor: url(../img/cursor.png) 16 9, ew-resize !important;
}

.mt-10 {
  margin-top: 10px;
}
.gallery-new-design{
  padding: 50px 20px 5px;
  background: #f8f5f0;
}
.gallery-new-design a{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.gallery-new-design img{
  width: 100%;
  transition: transform .5s;
  border-radius: 8px;
}
.main-img a img{
  height: 500px;
  object-fit: cover;
  object-position: top;
}
.side-2 a img{
  height: 245px;
  object-fit: cover;
}
.list-img-set a img{
  height: 140px;
  object-fit: cover;
}
.gallery-new-design a:hover img{
  transform: scale(1.1);
}
.gallery-full {
  white-space: nowrap;
  display: flex;
  align-items: center;
  column-gap: 6px;
  border-radius: 40px;
  color: #1a1e39;
  background: #fff;
  padding: 6px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  color: #2b718f;
  background: #fff;
  z-index: 99;
  font-size: 14px;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
}
.gallery-full:hover{
  background: #2b718f;
  color: #fff;
}
  .frst-hr{
    width: 75%;
    margin-right: auto;
    margin-left: auto;
    opacity: .55;
    border-color:
  #2b718f;
  }
  .main-prop-list {
    padding:
  0 0 10px;
    background-color: #f8f5f0;
    position: relative;
  }
  .right-pt ul {
    padding:
  0;
    margin:
  0;
    list-style-type: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
  }
  .right-pt ul li {
    display: inline-flex;
    margin:
  4px;
    font-weight: 500;
    -ms-flex: 0 0 19%;
    flex:
  0 0 19%;
    max-width: 19%;
    align-items: center;
    justify-content: center;
    background:
  #fff;
    border:
  1px solid #074da333;
    padding:
  10px 5px;
    font-family: "Jost", sans-serif;
    font-size: 17px;
    border-radius:
  4px;
  position: relative;
  }
  .right-pt ul li i {
    color: #2b718f;
    margin-right: 10px;
    background: rgba(5, 44, 101, 0.3);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .right-pt ul li a{
    position: relative;
  }
  .right-pt ul li a{
    display: inline-block;
    vertical-align: middle;
    background-color: #2b718f;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    transition:
  all 0.4s ease-in-out;
    text-transform: capitalize;
    position: relative;
    overflow:
  hidden;
    text-align: center;
    font-family: "Jost", sans-serif;
    line-height: 1;
    width: 100%;
  height: 100%;
  }
  .right-pt ul li a span {
    position: relative;
    z-index: 1;
    color: #fff;
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .right-pt ul li a span i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    color: #2b718f;
    border-radius:
  50%;
    position: relative;
    z-index: 1;
  }
  .testimonial-li-set {
    padding:
  unset !important;
  }
  .main-prop {
    padding: 10px 30px 50px;
    background-color: #ecf3fa;
    position: relative;
  }

  .all-head {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    margin: 20px 0;
    border: 1px solid #ddd;
    position: relative;
  }
  .all-head h1{
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: #2b718f;
    font-size: 25px;
    text-align: left;
    padding: 5px 0 10px;
    border-bottom: 2px solid #2b718f;
    margin: 0px 0 13px;
    text-transform: capitalize;
  }
  .overview h1 {
    width: fit-content;
  }
  .dec-txt h5 {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Jost", sans-serif;
  }
  article.slide {
    margin-bottom: 10px;
  }
  .dec-txt p {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    line-height: 35px;
    margin-bottom: 10px;
    font-weight: 400;
  }
  .dec-txt a, .rates-exp a, #loadMore span {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 400;
    position: relative;
  }
  .dec-txt a::after, .rates-exp a::after, #loadMore span::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    background: #003d4d;
    width: 0%;
    height: 1px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
  }
  .dec-txt a:hover, .rates-exp a:hover, #loadMore span:hover {
    color: #243e61;
  }
  .dec-txt a:hover::after, .rates-exp a:hover::after, #loadMore span:hover::after {
    width: 100%;
    left: 0;
  }
  .dec-txt ul li {
  color: #212741;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  margin-bottom: 5px;
  list-style: inside;
}
  .calender-frame p {
    font-size: 23px;
    margin: 20px 0;
    color: #2b718f;
    animation: animate 2.5s linear infinite;
    font-family: "Jost";
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
  }
  @keyframes animate {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
    }
}
  #Calendars img{
    width: 100%;
  }

  /* responsive table css */

  .rates-exp h3 {
    background: #eee;
    padding: 15px 10px;
    border-bottom: 1px solid #1977cc;
    font-size: 21px;
    margin: 0 0 15px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    text-transform: capitalize;
  }
  .house-rule p {
    border-bottom: 1px solid #ccc;
    font-size: 17px;
    padding-bottom: 10px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    text-transform: capitalize;
    color: #333;
  }
  .house-rule h6{
  font-size: 19px;
  padding-bottom: 0;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  text-transform: capitalize;
  margin: 10px 0;
}
  .rates-exp ul {
    list-style-type: none;
    padding: 10px 0 0;
    margin: 0 0 20px;
  }

  .rates-exp ul li {
    width: 100%;
    display: block;
    font-size: 17px;
    font-weight: 400;
    font-family: "Jost";
    text-transform: capitalize;
    color: #333;
    margin-bottom: 10px;
  }

  .rates-exp ul li i {
    color: #003d4d;
    margin-right: 10px;
    font-size: 13px;
  } 

  .responsive{
    display: none;
  }
  
  .non-responsive{
    display: block;
  }
  
  .responsive-table {
    width: 100%;
    margin-bottom: 1em;
    margin-top: 1em;
    font-family: "Jost", sans-serif;
  }
  .responsive-table thead {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
  }
  
  @media (min-width: 44em) {
  .responsive-table thead {
    position: relative;
    clip: auto;
    height: auto;
    width: auto;
    overflow: auto;
  }
  }
  .responsive-table thead th {
    background-color: rgb(70, 79, 86);
    border: 1px solid rgb(70, 79, 86);
    font-weight: normal;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    font-family: "Jost";
  }
  .responsive-table thead th:first-of-type {
    text-align: left;
  }
  .responsive-table tbody, .responsive-table tr, .responsive-table th, .responsive-table td {
    display: block;
    padding: 0;
    text-align: left;
    white-space: normal;
  }
  
  @media (min-width: 44em) {
  .responsive-table tr {
    display: table-row;
  }
  }
  .responsive-table th, .responsive-table td {
    padding: .5em;
    vertical-align: middle;
  }
  
  @media (min-width: 30em) {
  .responsive-table th, .responsive-table td {
    padding: .75em .5em;
  }
  }
  
  @media (min-width: 44em) {
  .responsive-table th, .responsive-table td {
    display: table-cell;
    padding: .5em;
  }
  }
  
  @media (min-width: 62em) {
  .responsive-table th, .responsive-table td {
    padding: .75em .5em;
  }
  }
  
  @media (min-width: 75em) {
  .responsive-table th, .responsive-table td {
    padding: .75em;
  }
  }
  .responsive-table caption {
    margin-bottom: 1em;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
  }
  
  @media (min-width: 44em) {
  .responsive-table caption {
    font-size: 1.5em;
  }
  }
  .responsive-table tfoot {
    font-size: .8em;
    font-style: italic;
  }
  
  @media (min-width: 62em) {
  .responsive-table tfoot {
    font-size: .9em;
  }
  }
  
  @media (min-width: 44em) {
  .responsive-table tbody {
    display: table-row-group;
  }
  }
  .responsive-table tbody tr {
    margin-bottom: 1em;
    border: 2px solid rgb(70, 79, 86);
  }
  
  @media (min-width: 44em) {
  .responsive-table tbody tr {
    display: table-row;
    border-width: 1px;
  }
  }
  .responsive-table tbody tr:last-of-type {
    margin-bottom: 0;
  }
  
  @media (min-width: 44em) {
  .responsive-table tbody tr:nth-of-type(even) {
    background-color: rgba(94, 93, 82, 0.1);
  }
  }
  .responsive-table tbody th[scope="row"] {
    background-color: #fff;
    color: #000;
  }
  
  @media (min-width: 44em) {
  .responsive-table tbody th[scope="row"] {
    background-color: transparent;
      color: #4e4e4e;
      text-align: left;
      font-size: 16px;
      font-weight: 500;
      font-family: "Jost";
      line-height: 30px;
  }
  }
  .responsive-table tbody td {
    text-align: right;
    color: #333;
    font-weight: 300;
  }
  
  @media (min-width: 30em) {
  .responsive-table tbody td {
    border: 1px solid rgb(70, 79, 86);
    color: #000;
    font-weight: 600;
  }
  }
  
  @media (min-width: 44em) {
  .responsive-table tbody td {
    text-align: center;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    font-family: "Jost";
  }
  }
  .responsive-table tbody td[data-type=currency] {
    text-align: right;
  }
  .responsive-table tbody td[data-title]:before {
    content: attr(data-title);
    float: left;
    font-size: 1em;
    color: #333;
    font-weight: 600;
  }
  
  @media (min-width: 30em) {
  .responsive-table tbody td[data-title]:before {
    font-size: .9em;
  }
  }
  
  @media (min-width: 44em) {
  .responsive-table tbody td[data-title]:before {
    content: none;
  }
  }

  #spanbtn {
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
    overflow: hidden;
    text-transform: capitalize;
    font-weight: 500;
    font-family: "Jost";
    color: #05558c;
  }
  #spanbtn:hover {
    color: #243e61;
  }
  #spanbtn::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    background: #003d4d;
    width: 0%;
    height: 1px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
  }
  #spanbtn:hover::after {
    width: 100%;
    left: 0;
  }
  .modal-backdrop.fade.show {
    z-index: 1;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    background-color: #e8e8e8d9;
  }
  .new-style-amen h4 {
    background: #eee;
    padding: 15px 10px;
    border-bottom: 1px solid #003d4d;
    font-size: 25px;
    margin: 0 0 15px;
    font-weight: 500;
    font-family: "Jost";
    text-transform: capitalize;
  }
  
  .new-style-amen ul {
    list-style-type: none;
    padding: 10px 0 0;
    margin: 0 0 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .new-style-amen ul li {
    display: inline-block;
    list-style: none;
    padding: 10px;
    color: #333;
    font-size: 17px;
    -ms-flex: 0 0 31%;
    flex: 0 0 31%;
    max-width: 31%;
    font-weight: 400;
    font-family: "Jost";
    text-transform: capitalize;
    border-bottom: 1px solid #003d4d;
    margin: 5px;
  }
  
  .new-style-amen ul li i {
    color: #003d4d;
    margin-right: 5px;
  }
  
  .set-brdr-cst {
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
  }
  
  .horizontal-review {
    position: relative;
    overflow: hidden;
    background-color: rgba(46, 113, 141, 0.1);
    padding: 1.5rem 1.5rem 1.5rem 3.25rem;
    width: 100%;
    border-radius: 0.675rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.15rem 0.35rem rgba(0, 0, 0, 0.075);
    background-color: rgba(46, 113, 141, 0.1);
    border: 1px solid rgba(28, 28, 28, 0.12);
  }
  .horizontal-review .review-title {
    line-height: 1.5;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: #2b718f;
    font-size: 25px;
    text-align: left;
    border-bottom: 2px solid #2b718f;
    text-transform: capitalize;
  }
  .horizontal-review .review-content {
    display: flex;
    align-items: center;
  }
  .horizontal-review .review-score {
    font-weight: 600;
    font-size: 3.5rem;
    margin-right: 1rem;
    line-height: 1;
    margin-bottom: .1rem;
    font-family: "Jost", sans-serif;
    color: #2b718f;
  }
  .horizontal-review .review-total {
    display: flex;
    flex-direction: column;
    color: #6c757d;
    line-height: 1.35rem;
  }
  .review-total-stars{
    color: #eeb461;
  }
  .horizontal-review .review-total .review-star-rate-view {
    margin-bottom: .25rem;
    font-size: 18px;
    display: flex;
    gap: 3px;
    color: #eeb461;
  }
  .horizontal-review .review-total strong {
    color: rgba(33,37,41,1);
  }
  .horizontal-review .review-label {
    transform: rotate(180deg);
    writing-mode: vertical-lr;
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    text-align: center;
  }
  .horizontal-review .review-label > small {
    color: #fff;
    background-color: #6cb015;
    text-transform: uppercase;
    letter-spacing: .175rem;
    display: block;
    height: 100%;
    font-weight: 600;
    padding: .25rem;
    font-size: 1rem;
    min-width: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    font-family: "Josefin Sans", sans-serif;
    background: #266885;
  }
  .review-summary {
    overflow: hidden;
    padding: 1.5rem;
    border-radius: 0.675rem;
    box-shadow: 0 0.15rem 0.35rem rgba(0, 0, 0, 0.075);
    background-color: rgba(46, 113, 141, 0.1);
    border: 1px solid rgba(28, 28, 28, 0.12);
  }
  .review-summary .review-title {
    border-bottom: 1px solid var(--bs-border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: #2b718f;
    font-size: 25px;
    text-align: left;
    border-bottom: 2px solid #2b718f;
    text-transform: capitalize;
  }
  .review-summary .review-content {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  .review-summary li {
    display: flex;
    align-items: center;
    padding: .25rem 0;
  }
  .review-summary .review-lable-list {
    margin-right: auto;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: #2b718f;
    font-size: 20px;
    line-height: 1.55;
  }
  .review-summary .review-score {
    display: flex;
    align-items: center;
  }
  .review-summary .review-score strong {
    margin-right: .5rem;
    font-size: 22px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: #2b718f;
  }
  .review-summary .review-score .review-star-rate-view.review-star-rate-size-sm{
    height: 20px;
    display: flex;
    gap: 3px;
    color: #eeb461;
  }
  .review-main-box {
    border-radius: 0.675rem;
    background-color: rgba(46, 113, 141, 0.1);
    border: 1px solid rgba(28, 28, 28, 0.12);
  }
  .review-main-box .card-body{
    padding: 1.5rem;
  }
  .review-main-inner{
    border-bottom: 2px solid #2b718f;
  }
  .review-main-inner h3 {
    line-height: 1.5;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: #2b718f;
    font-size: 25px;
    text-transform: capitalize;
  }
  .review-main-inner strong{
    font-family: "Jost", sans-serif;
  }
  .review-list .review-item {
    border-bottom: 1px solid #485971;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .review-list .review-client {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  .review-list .review-avatar {
    margin-right: 1rem;
    margin-bottom: 0;
  }
  .review-list .review-avatar img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    background-color: #fff;
  }
  .review-list .review-name {
    display: flex;
    flex-direction: column;
  }
  .review-list .review-name strong {
    margin-bottom: 0;
    color: #333;
    font-weight: 600;
    font-family: "Jost", sans-serif;
    font-size: 20px;
  }
  .review-name .review-star-rate-view.review-star-rate-size-sm {
    display: flex;
  }
  .review-item h3{
    font-size: 26px;
    font-family: "Playfair", serif;
    font-weight: 600;
  }
  .review-list .review-item p {
    font-style: italic;
    line-height: 30px;
    font-size: 17px;
  }
  .review-count{
    position: sticky;
    top: 125px;
  }
  .review-item{
    display: none;
  }
  #loadMore{
    font-size: 18px;
  }
  .map-frame h3 {
    text-transform: capitalize;
    color: #333;
    margin: 10px 0;
    font-size: 25px;
    font-family: "Playfair", serif;
    font-weight: 600;
  }
  .image-anime {
    position: relative;
    overflow: hidden;
  }
  .row-gap-10 {
    row-gap: 10px;
  }
  .row-10 {
    margin-right: -5px !important;
    margin-left: -5px !important;
  }
  .row-10 > * {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .fancybox__caption {
    font-family: "Josefin Sans", sans-serif;
    text-align: center;
  }
  .set-sty {
    position: sticky;
    top: 85px;
  }
  .rates-exp h3:nth-child(2n+1), .rates-exp h3:nth-child(2n+2) {
    margin-top: 15px;
  }
  .walking-ar h6 {
    background: #eee;
    padding: 15px 10px;
    border-bottom: 1px solid #003d4d;
    font-size: 20px;
    margin: 0 0 15px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    text-transform: capitalize;
  }
  .rates-exp p, .walking-ar p{
    font-family: "Jost", sans-serif;
    font-size: 18px;
    line-height: 35px;
  }
  .walking-ar p a{
    margin-right: 4px;
    position: relative;
  }
  .walking-ar p span{
    margin-left: 4px;
    font-weight: 600;
  }
  .walking-ar a::before {
    display: block;
    content: "";
    padding-top: 4px;
    border-bottom: 2px solid #243e61;
    transform: scaleX(0);
    transform-origin: 0 50%;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    transition: transform .2s ease-in-out;
  }
  .walking-ar a:hover{
    color: #243e61;
  }
  .walking-ar a:hover::before {
    transform: scaleX(1);
    transform-origin: 0 50%;
    transition-delay: .2s;
  }
  .accordion-button:focus {
    box-shadow: none;
  }
  .accordion-button {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 500;
  }
  .accordion-button:hover {
    background-color: #7bb9db73;
  }
  .accordion-body p {
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 0;
    font-weight: 400;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
  }
  .accordion-body {
    position: relative;
    overflow: hidden;
  }
  .accordion-body::before {
    position: absolute;
    height: 110px;
    width: 110px;
    right: -10px;
    top: -75px;
    border-radius: 50%;
    background-color: #007ABB;
    z-index: 9;
    opacity: .20;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    content: "";
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
  }
  .accordion-body::after {
    position: absolute;
    height: 110px;
    width: 110px;
    right: -10px;
    top: -75px;
    border-radius: 50%;
    background-color: #007ABB;
    z-index: 9;
    opacity: .20;
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    content: "";
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
  }
  .area-sec-srt{
    padding: 50px 30px 50px;
    background-color: #ecf3fa;
    position: relative;
  }
  .thing-box {
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #A3D9F6;
    position: relative;
    overflow: hidden;
    margin: 10px 0;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .thing-img {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
  }
  .thing-img img {
    height: 225px;
    object-fit: cover;
    width: 100%;
  }
  .thing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
  }
  .thing-box:hover {
    background-color: rgba(46, 113, 141, 0.1);
    border: 1px solid #2b718f;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  -webkit-transform: translate(0, -15px);
  -ms-transform: translate(0, -15px);
  transform: translate(0, -15px);
  transition: 0.6s all;
  }
  .thing-box:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
  }
  .thing-head-h2 {
    background: #fff;
    padding: 15px 10px;
    border-bottom: 1px solid rgb(5, 44, 101);
    font-size: 25px;
    margin: 20px 0 30px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    text-transform: capitalize;
    text-align: center;
    border-radius: 5px;
  }
  @-webkit-keyframes shine {
    100% {	left: 125%;	}
  }
  
  @keyframes shine {
    100% {	left: 125%;	}
  }
  .thing-para h2 {
    text-transform: capitalize;
    line-height: 30px;
    text-align: center;
    margin: 20px 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 30px;
    font-family: "Playfair", serif;
    font-weight: 600;
  }
  .thing-para hr {
    background: #2b718f;
    height: 3px;
    width: 42px;
    border: none;
    margin: 10px auto;
    opacity: 1;
  }
  .thing-para p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 16px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    color: #505050;
    line-height: 30px;
  }
  .new-btn-dj{
      margin: 20px 0;
  }
  @media (max-width: 767px){
    .gallery-full{
      padding: 0;
      width: 40px;
      height: 40px;
      justify-content: center;
      font-size: 25px;
    }
    .gallery-full span{
      display: none;
    }
    .list-img-set a img{
      height: 80px;
    }
    .right-pt ul li {
      justify-content: flex-start;
      -ms-flex: 0 0 47%;
      flex: 0 0 47%;
      max-width: 47%;
      font-size: 15px;
    }
    .testimonial-li-set {
      padding: unset !important;
      -ms-flex: 0 0 55% !important;
      flex: 0 0 55% !important;
      max-width: 55% !important;
    }
    .testimonial-li-set a.btn-default{
      padding: 10px 0;
    }
    .calender-frame p, .map-frame h3 {
      font-size: 18px;
    }
    .new-style-amen ul li {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .main-prop{
      padding: 10px 0 30px;
    }
    .modal-body{
      padding-left: 0;
      padding-right: 0;
    }
    .get-in{
      margin-top: 15px;
    }
    .social-links-list{
      display: none;
    }
    .main-img a img {
      height: 300px;
    }
    .side-2 a img {
      height: 145px;
    }
    .area-sec-srt{
      padding: 30px 0;
    }
    .gallery-new-design{
      padding-left: 0;
      padding-right: 0;
    }
    .abpimg1, .abpimg2, .abpimg3{
        height: 120px;
    }
    .slide-inner::before {{
        content: unset;
    }
  }
  @media (min-width: 768px) and (max-width: 1024px){
    .new-style-amen ul li {
      -ms-flex: 0 0 47%;
      flex: 0 0 47%;
      max-width: 47%;
    }
  }
  
  
  
  
.spamcheck {
display:none!important;    
}
span.validate  {
color:#de4040;
padding-left:8px;
font-style:italic;
font-weight:bold;
}

.no-cap ul {
overflow:hidden;
background: #fff;
padding: 20px;
display: inline-block;
}

.no-cap ul li{
list-style: none;
float: left;
margin: 0 5px;
font-size: 24px;
font-family: Montserrat, sans-serif;
font-family: mon;
}