@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #313030;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}
p{
  font-family: 'Inter Regular';
}
@font-face {
font-family: 'Georgia Regular';
font-style: normal;
font-weight: normal;
src: local('Georgia Regular'), url('georgia.woff') format('woff');
}
@font-face {
font-family: 'Georgia Bold';
font-style: normal;
font-weight: normal;
src: local('Georgia Bold'), url('georgiab.woff') format('woff');
}
@font-face {
font-family: 'Inter Regular';
font-style: normal;
font-weight: normal;
src: local('Inter Regular'), url('Inter-Regular.woff') format('woff');
}
@font-face {
font-family: 'Inter Medium';
font-style: normal;
font-weight: normal;
src: local('Inter Medium'), url('Inter-Medium.woff') format('woff');
}
@font-face {
font-family: 'Inter Semi Bold';
font-style: normal;
font-weight: normal;
src: local('Inter Semi Bold'), url('Inter-SemiBold.woff') format('woff');
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #05558c;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 1;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #095b94;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #39312f;
  font-size: 14px;
  padding: 0 30px;
  color: rgba(255, 255, 255, 0.8);
  background-image: linear-gradient(-45deg,#61ccdb,#2179c4);
}

#topbar .contact-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}

#topbar .contact-info li {
  display: flex;
  padding: 8px 0;
  font-size: 17px;
  font-family: 'Inter Regular';
  gap: 10px;
  align-items: center;
}

#topbar .contact-info li + li {
  margin-left: 18px;
}

#topbar .contact-info a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #fff;
}

#topbar .contact-info i {
  color: #05558c;
  background: #fff;
  margin-right: 4px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

#topbar .cta a {
  color: #fff;
  background: #ff5821;
  padding: 8px 20px;
  display: inline-block;
  transition: 0.3s;
}

#topbar .cta a:hover {
  background: #ff6b3b;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 2;
  width: 100% !important;
  transition: all 0.5s;
  padding: 10px 30px;
  background: #fff;
  position: relative;
}
.header-set{
  justify-content: space-between;
  align-items: center;
}

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 8px 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}

#header .logo h1 a{
  color: #635551;
  text-decoration: none;
}
#header .logo h1 a:hover{
  color: #f717e4;
}
#header .logo a.logo-img {
  position: absolute;
  top: -42px;
  width: 170px;
  z-index: 2;
  transition: 1.2s;
}
#header .logo img {
  padding: 0;
  margin: 0;
  width: 100%;
  border-radius: 50%;
  border: 5px solid #fff;
}
#header.header-scrolled .logo a.logo-img {
  position: absolute;
  top: 0px;
  width: 125px;
  z-index: 2;
}

@media (max-width: 999px){
  #header .logo a.logo-img {
    position: absolute;
    top: 0;
    width: 125px;
    z-index: 2;
  }
}

#main {
  z-index: 3;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #635551;
  padding: 11px 15px;
  transition: 0.3s;
  font-size: 19px;
  font-family: 'Inter Regular';
  font-weight: 500;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #ff5821;
  color: #034770;
  text-decoration: none;
  color: #003366;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  border-radius: 8px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  color: lightne(#473d3a, 10);
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #003366;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  /*position: fixed;*/
  position: absolute;
  right: 15px;
  top: 20px;
  z-index: 222;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #05558c;
}

.mobile-nav {
  position: fixed;
  top: 60px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #473d3a;
  font-family: 'Inter Regular';
  font-size: 18px;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #05558c;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
  background: #05558c;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}
.mobile-nav .drop-down li a{
  color: #fff;
}
.mobile-nav .drop-down li a:hover{
  color: #eee;
}
.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(43, 37, 35, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/* banner css */

.swiper-container {
  height: calc(100vh - 80px);
}

.swiper-slide {
  overflow: hidden;
}

.slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
}
.text-fix-inter {
  position: absolute;
  bottom: 8%;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%) !important;
  color: #fff;
  width: 80%;
  text-align: center;
  background: rgba(0,0,0,0.2);
  /*background-color: rgba(255,255,255,0.2);*/
  background-color: rgba(255,255,255,0.3);
  /* border: 2px solid rgba(255,255,255,0.6); */
  backdrop-filter: blur(4px);
}
.text-fix-inter h1 {
  font-family: 'Georgia Bold';
  font-size: 45px;
  text-transform: capitalize;
  text-shadow: 1px 1px 1px #333;
  color: #78d2e7;
  color: #3c9bce;
}
.text-fix-inter p {
  font-family: 'Inter Regular';
  font-weight: 600;
  font-size: 20px;
  /*text-shadow: 1px 1px 1px #333;*/
  color: #333;
} 
.bck-grd-chg {
  background-position: 50% 70%;
  background-position: center;
}
/* new */
.new-prop{
  padding: 70px 0;
}
@media (min-width: 1400px){
  .new-prop .container.mod{
    max-width: 1320px;
  }
}
.our-property-setting {
  position: relative;
}
.our-property-setting:last-child {
  margin-bottom: 15px;
}
.our-property-setting figure {
  margin: 0;
  position: relative;
  width: 60.666667%;
  margin-left: auto;
}
.our-property-setting.left figure {
  margin-left: 0;
  margin-right: auto;
}
.our-property-setting figure img, 
.our-property-setting.left figure img {
  border-radius: 3px;
  transition: all 0.5s;
  height: 500px;
  object-fit: cover;
  width:100%;
}
.our-property-setting figure img:hover {
  transform: scale(0.98);
}
.our-property-setting .our-property-para {
  background: #f7f7f7;
  position: absolute;
  left: 0;
  top: 50%;
  width: 45%;
  padding: 4% 4% 4% 0;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border-radius: 3px;
  overflow: hidden;
  outline: 1px solid #061138;
  outline-offset: -18px;
}
.our-property-setting.left .our-property-para {
  left: auto;
  right: 0;
  background: #f7f7f7;
  padding: 4% 0 4% 4%;
  border-radius: 3px;
  overflow: hidden;
}
.our-property-setting .our-property-para.pl-lft {
  padding-left: 4%;
}
.our-property-setting.left .our-property-para.pl-lft {
  padding-right: 4%;
}
.our-property-setting .our-property-para h4, .our-property-setting .our-property-para h4 a {
  color: #00566b;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: 'Georgia Bold';
  font-size: 27px;
  letter-spacing: 1.3px;
}
/* .our-property-setting .our-property-para h4{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} */

.our-property-setting .our-property-para p {
  font-family: 'Inter Regular';
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  color: #6f7b91;
  color: #333;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.stars-list{
  color: #05558c;
  font-size: 20px;
}
.our-property-list {
  display: grid;
  font-size: 15px;
}
.our-property-list ul {
  position: relative;
  padding: 0;
  margin: 0;
  color: #6f7b91;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.our-property-list ul li {
  position: relative;
  line-height: 1.75em;
  margin-bottom: 10px;
  padding-left: 15px;
  font-family: 'Inter Regular';
  font-size: 18px;
  font-weight: 500;
  list-style: none;
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  gap: 5px;
  color: #333;
}
.our-property-list ul li i {
  color: #fff;
  background: #05558c;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.our-property-list ul li::before {
  content: ".";
  position: absolute;
  left: 0;
  top: -8px;
  color: #1e90ff;
  font-weight: 700;
  font-size: 32px;
}


.title-head-our h2 {
  font-family: 'Georgia Bold';
  font-size: 40px;
  font-weight: 600;
  color: #00566b;
  text-align: center;
}
.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: 5px; */
  top: 0;
  width: 12px;
  border: 1px solid #00566b;
  border-radius: 50px;
}


/* new ends */

.view-all-btn  a {
  font-size: 18px;
  padding: 14px 30px 14px 30px;
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  background: transparent;
  border-width: 1px;
  border-style: solid;
  background-color: #05558c;
  border-color: #05558c;
  color: #fff;
  position: relative;
  font-weight: 500;
  overflow: hidden;
  z-index: 1;
  font-family: 'Inter Regular';
  transition: all 0.5s ease 0s;
  border-radius: 80px;
}
.view-all-btn a::before {
  content: '';
  position: absolute;
  background-color: #343434;
  width: 0%;
  height: 100%;
  right: 0;
  left: auto;
  top: 0;
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
  z-index: -1;
}
.view-all-btn a:hover::before {
  right: auto;
  left: 0;
  width: 100%;
  background-color: #222d35;
}
.view-all-btn a:hover {
  border-color: #222d35;
}


  .owl-nav {
    margin: 15px 0 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .owl-nav button span {
    height: 40px;
    width: 40px;
    background: #05558c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
  }
  .owl-nav button span.lft-prev{
    -webkit-border-radius: 0px 50px 50px 50px;
    -moz-border-radius: 0px 50px 50px 50px;
    border-radius: 0px 50px 50px 50px;
  }

  .owl-nav button span.rgt-next{
    -webkit-border-radius: 50px 0px 50px 50px;
    -moz-border-radius: 50px 0px 50px 50px;
    border-radius: 50px 0 50px 50px;
  }
  .owl-nav button span:hover{
    background: #CBA36B;
  }
    .attr-btn{
        text-align: center;
    }
  .logo{
    width: 150px;
  }
  .copy-sec {
    padding: 15px 40px 15px 0;
    background: #05558c;
  }
  .main-sec-text .cstm-txt{
    font-family: 'Inter Regular';
    font-weight: 500;
    font-size: 17px;
    color: #fff;
    letter-spacing: 0.5px;
  }
  .social-icon-flex{
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .social-icon-flex a{
    background: #fff;
    color: #05558c;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: ipx solid transparent;
    font-size: 24px;
  }  
  .social-icon-flex a:hover{
    background: #05558c;
    color: #eee;
    border: 1px solid #eee;
  }
  .last-icon-txt{
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  .last-icon-txt a {
    color: #fff;
    transition: all 500ms linear;
    font-family: 'Inter Regular';
    font-weight: 500;
    font-size: 17px;
    line-height: 35px;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .last-icon-txt a .last-foot-cont-text-set{
    position: relative;
  }
  .last-icon-txt a .last-foot-cont-text-set::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    background: #CBA36B;
    width: 0%;
    height: 1px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
  }


  .last-icon-txt a:hover .last-foot-cont-text-set{
    color: #CBA36B;
  }

  .last-icon-txt a:hover .last-foot-cont-text-set::after {
    width: 100%;
    left: 0;
  }

  .last-icon-txt .last-foot-icon{
    background: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
  }

  /* abouts css */

  .about-sec {
    position: relative;
    padding: 70px 20px;
    background: #eff6ff;
  }
  .abt-fr-img {
    margin-right: 50px;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    overflow: hidden;
  }
  .abt-fr-img img {
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    height: 275px;
    width: 100%;
    object-fit: cover;
  }
  .abt-fr-img .abt-img-fst {
    border-radius: 0px 60px;
    overflow: hidden;
    height: 275px;
    position: relative;
  }
  .abt-fr-img .abt-img-fst a::before, .abt-fr-img .abt-img-trd a::before, .abt-fr-img .abt-img-secd a::before, .abt-fr-img .abt-img-furt a::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #05558c1c;
    -webkit-transform: scale(1,0);
    transform: scale(1,0);
    transition: all .3s ease-in-out;
  }
  .abt-fr-img .abt-img-fst a:hover::before,
  .abt-fr-img .abt-img-trd a:hover::before,
  .abt-fr-img .abt-img-secd a:hover::before,
  .abt-fr-img .abt-img-furt a:hover::before{
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .abt-fr-img .abt-img-fst img {
    border-radius: 0px 60px;
  }
  .abt-fr-img .abt-img-secd {
    border-radius: 60px 0 60px 0;
    overflow: hidden;
    height: 275px;
    position: relative;
  }
  .abt-fr-img .abt-img-secd img {
    border-radius: 60px 0 60px 0;
  }
  .abt-fr-img .abt-img-trd {
    overflow: hidden;
    border-radius: 60px 0px;
    height: 275px;
    position: relative;
  }
  .abt-fr-img .abt-img-trd img {
    border-radius: 60px 0px;
  }
  .abt-fr-img .abt-img-furt {
    border-radius: 0 60px 0 60px;
    overflow: hidden;
    height: 275px;
    position: relative;
  }
  .abt-fr-img .abt-img-furt img {
    border-radius: 0 60px 0 60px;
  }
  
  .abt-fr-img:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    filter: blur(2px);
  }
  .abt-fr-img .abt-img-fst:hover img,
  .abt-fr-img .abt-img-trd:hover img,
  .abt-fr-img .abt-img-secd:hover img,
  .abt-fr-img .abt-img-furt:hover img {
    filter: blur(0);
  }
  .abt-fr-img .abt-img-do-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 2;
  }
  .abt-img-do-logo img {
    border-radius: 50%;
    padding: 5px;
  }
  .abt-fr-img:hover .abt-img-do-logo img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    filter: blur(0);
  }
  .home-data-txt h1{
    font-family: 'Georgia Bold';
    font-size: 40px;
    color: #00566b;
  }
  .home-data-txt p {
    font-family: 'Inter Regular';
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
  }

  .area-sec{
    padding: 70px 0;
  }
  .thing-box {
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #074da333;
    position: relative;
    overflow: hidden;
    margin: 10px 0;
    transition: .3s all;
  }
  .thing-img {
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
  }
  .thing-img img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    overflow:
  hidden;
    transition:
  transform .5s ease;
  }
  .thing-box:hover .thing-img img{
    transform: scale(1.2);
  }
  .thing-box:hover {
    border: 1px solid rgb(5, 44, 101);
  }
  .thing-para h2 {
    text-transform: uppercase;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    margin: 20px 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Inter Regular';
    color: #212741;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .thing-para hr {
    background: #212741;
    height: 3px;
    width: 42px;
    border: none;
    margin: 10px auto;
  }
  .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: 'Inter Regular';
    color: #505050;
    line-height: 30px;
  }
  .thing-para ul li{
    font-size: 17px;
    font-weight: 500;
    color: #333;
    font-family: 'Inter Regular';
    margin-bottom: 10px;
  }
  .thing-para ul li i{
    margin-right: 5px;
  }
  .thing-para ul li a {
    color: #333;
    position: relative;
  }
  .thing-para ul li a::before {
    display: block;
    content: "";
    padding-top: 4px;
    border-bottom:
  2px solid #7f9cc2;
    transform: scaleX(0);
    transform-origin: 0 50%;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    transition:
  transform .2s ease-in-out;
  }
  .thing-para ul li a:hover {
    color: #7f9cc2;
  }
  .thing-para ul li a:hover::before {
    transform: scaleX(1);
    transform-origin: 0 50%;
    transition-delay: .2s;
  }
  .thing-para ul {
    border-bottom:
  1px solid #ccc;
  min-height: 107px;
  }
  .thing-box-overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
    #05558c1c;
    -webkit-transform:
  scale(1,0);
    transform: scale(1,0);
    transition:
  all .3s ease-in-out;
  }
  .thing-box:hover a .thing-box-overlay{
    -webkit-transform:
  scale(1);
    transform: scale(1);
  }
  .icon-fot{
    display: inline-block;
    vertical-align: middle;
    background-color: #05558c;
    color: rgb(255, 255, 255);
    font-size: 17px;
    font-weight: 600;
    transition:
  0.4s ease-in-out;
    text-transform: capitalize;
    position: relative;
    overflow:
  hidden;
    text-align: center;
    border-radius:
  72px;
    font-family: 'Inter Regular';
    line-height: 1;
    padding: 10px;
  }
  .icon-fot i {
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: rgb(255, 255, 255);
    border-radius:
  50%;
    position: relative;
    z-index: 1;
    font-size: 24px;
  }
  .icon-fot::before {
    content: '';
    position: absolute;
    background-color: #343434;
    width: 0%;
    height: 100%;
    right: 0;
    left: auto;
    top: 0;
    -webkit-transition: .4s all ease-in-out;
    -o-transition: .4s all ease-in-out;
    transition: .4s all ease-in-out;
    z-index: 1;
  }
  .icon-fot:hover::before {
    right: auto;
    left: 0;
    width: 100%;
    background-color: #222d35;
  }

  .swiper-button-next, .swiper-button-prev{
    display: none;
}
.modal-backdrop.fade.show {
  z-index: 1;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  background-color: #e8e8e8d9;
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1200px;
  }
}
.modal-header .close{
  background: none;
  border: none;
  font-size: 20px;
}
.modal-header, .modal-footer{
  padding: 8px 16px;
}
.modal-header h5{
  font-size: 22px;
  font-family: 'Georgia Bold';
  font-weight: 500;
}
.pb-10-sec{
  padding-bottom: 10px;
}
.abt-mdl-close-btn, .abt-mdl-save-btn, .abt-mdl-cross-btn{
  font-size: 18px;
  padding: 8px 24px;
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  background: transparent;
  border-width: 1px;
  border-style: solid;
  background-color: #05558c;
  border-color: #05558c;
  color: #fff;
  position: relative;
  font-weight: 500;
  overflow: hidden;
  z-index: 1;
  font-family: 'Inter Regular';
  transition: all 0.5s ease 0s;
  border-radius: 80px;
}
.abt-mdl-cross-btn{
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.abt-mdl-close-btn{
  background-color: #eee;
  border-color: #eee;
  color: #333;
}
.abt-mdl-close-btn:hover, .abt-mdl-save-btn:hover, .abt-mdl-cross-btn:hover {
  border-color: #222d35;
}
.abt-mdl-close-btn:hover {
  color: #fff;
}

.abt-mdl-close-btn::before, .abt-mdl-save-btn::before, .abt-mdl-cross-btn::before {
  content: '';
  position: absolute;
  background-color: #343434;
  width: 0%;
  height: 100%;
  right: 0;
  left: auto;
  top: 0;
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
  z-index: -1;
}

.abt-mdl-close-btn:hover::before, .abt-mdl-save-btn:hover::before, .abt-mdl-cross-btn:hover::before {
  right: auto;
  left: 0;
  width: 100%;
  background-color: #222d35;
}
.abt-mdl{
  padding: 15px;
  background: #eff6ff;
}
.abt-mdl-img-set {
  float: left;
  width: 400px;
  margin: 0 20px 20px 0;
  border: 5px solid #fff;
  border-radius: 5px;
}
.abt-mdl-img-set img{
  width: 100%;
  border-radius: 5px;
}
.abt-mdl-content h2{
  font-family: 'Georgia Bold';
  font-size: 30px;
  color: #00566b;
}
.abt-mdl-content p {
  font-family: 'Inter Regular';
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}
.abt-mdl-content p:last-of-type{
  margin-bottom: 0;
}
.form-srt {
  background: #1c2f36;
  text-align: left;
  padding: 0 15px;
  border-radius: 5px;
  position: relative;
  color: #05558c;
  background: #eff6ff;
  border: 1px solid #05558c;
}

.form-srt h2 {
  line-height: 30px;
  color: #05558c;
  margin-bottom: 15px;
  border-bottom: 1px solid #05558c;
  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: 'Georgia Bold';
}
.cnt-frm {
  font-family: 'Inter Regular';
  font-size: 21px;
  font-weight: 400;
  line-height: 1.75em;
  color: #05558c;
  margin-bottom: 10px;
  text-align: center;
  border-bottom: 1px solid #05558c;
}

.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: 'Inter Regular';
  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 #05558c;
}

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: #05558c;
  background: #eff6ff;
  border: 1px solid #05558c;
}

.get-in {
  position: sticky;
  top: 10px;
}

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

.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: 'Inter Regular';
  color: #052c65;
  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: #05558c;
}

.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: 'Inter Regular';
  color: #505050;
  line-height: 30px;
}

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

.get-in ul li a:hover i {
  background: #fff;
  color: #052c65;
  box-shadow: 1px 1px 1px #05558c;
  border: 2px solid #05558c;
  transition: 0.5s ease-in;
}


/* inner pages css */

.gallery-srt {
  padding: 30px 20px 0;
  background: #f8f5f0;
}
.gallery-grid-wrap, .gallery-grid-right-wrap {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
}
.gallery-grid-wrap .gallery-grid-left-wrap .gallery-grid-item {
  position: relative;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
.gallery-grid-wrap .gallery-grid-right-wrap .gallery-grid-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
.gallery-grid-wrap .gallery-grid-right-wrap .gallery-grid-item:nth-of-type(2){
  border-radius: 0 20px 0 0;
}
.gallery-grid-wrap .gallery-grid-right-wrap .gallery-grid-item:nth-of-type(4){
  border-radius: 0 0 20px 0;
}
.gallery-grid-left-wrap .gallery-grid-item a img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.gallery-grid-right-wrap .gallery-grid-item a img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 4px;
}
.gallery-grid-item{
    position: relative;
}
.gallery-grid-left-wrap .gallery-grid-item .box-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
}

@media (max-width: 767px) {
    .gallery-srt {
      padding: 30px 0;
      background: #eff4fc;
    }
  .gallery-grid-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .gallery-grid-wrap .gallery-grid-left-wrap .gallery-grid-item,
  .gallery-grid-wrap .gallery-grid-right-wrap .gallery-grid-item,
  .gallery-grid-wrap .gallery-grid-right-wrap .gallery-grid-item:nth-of-type(2), 
  .gallery-grid-wrap .gallery-grid-right-wrap .gallery-grid-item:nth-of-type(4){
    border-radius: 16px;
  }
  .gallery-grid-left-wrap .gallery-grid-item a img {
    height: 300px;
  }
   .gallery-grid-right-wrap .gallery-grid-item a img {
    height: 130px;
  }
} 
  
 
.gallery-image-box-btn {
  font-size: 18px;
  padding: 10px 20px;
  line-height: normal;
  background: transparent;
  border-width: 1px;
  border-style: solid;
  background-color: #05558c;
  border-color: #05558c;
  color: #fff;
  font-weight: 500;
  overflow: hidden;
  font-family: 'Inter Regular';
  transition: all 0.5s ease 0s;
  border-radius: 80px;
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 20px;
  right: 20px;
  gap: 7px;
}
  .gallery-image-box-btn::before {
    content: '';
    position: absolute;
    background-color: #343434;
    width: 0%;
    height: 100%;
    right: 0;
    left: auto;
    top: 0;
    -webkit-transition: .4s all ease-in-out;
    -o-transition: .4s all ease-in-out;
    transition: .4s all ease-in-out;
    z-index: -1;
  }
  .gallery-image-box-btn:hover {
    border-color: #222d35;
  }

  .gallery-image-box-btn:hover::before {
    right: auto;
    left: 0;
    width: 100%;
    background-color: #222d35;
  }
  .gallery-image-box-btn i{
    color: #fff;
    background: #343434;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: .4s all ease-in-out;
    -o-transition: .4s all ease-in-out;
    transition: .4s all ease-in-out;
  }
  .gallery-image-box-btn:hover i{
    background: #fff;
    color: #05558c;
  }
  

  .gallery-grid-wrap .gallery-grid-item a{
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
  }
  .gallery-grid-wrap .gallery-grid-item a::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #05558c1c;
    -webkit-transform: scale(1,0);
    transform: scale(1,0);
    transition: all .3s ease-in-out;
  }
  .gallery-grid-wrap .gallery-grid-item a:hover::before {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .gallery-grid-wrap .gallery-grid-left-wrap .gallery-grid-item a::before{
    border-radius: 20px 0 0 20px;
  }

  .frst-hr{
    width: 75%;
    margin-right: auto;
    margin-left: auto;
    opacity: .55;
    border-color:
  #052c65;
  }
  .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;
    -ms-flex: 0 0 19%;
    flex:
  0 0 19%;
    max-width: 19%;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border: 1px solid #05558c;
    padding:
  10px 5px;
    font-family: 'Inter Regular';
    font-size: 18px;
    border-radius:
  4px;
  position: relative;
  }
  .right-pt ul li i {
    color: rgb(5, 44, 101);
    margin-right: 10px;
    background: rgba(5, 44, 101, 0.3);
    height: 45px;
    width: 45px;
    border-radius: 50%;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .right-pt ul li a {
    position: relative;
    z-index: 1;
    color: #fff;
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    padding: 10px 20px;
    line-height: normal;
    background: transparent;
    background-color: transparent;
    border-width: 1px;
    border-style: solid;
    background-color: #05558c;
    border-color: #05558c;
    color: #fff;
    font-weight: 500;
    overflow: hidden;
    font-family: 'Inter Regular';
    transition: all 0.5s ease 0s;
    border-radius: 4px;
  }
  .right-pt ul li a span{
    display: flex;
    align-items: center;
  }
  .right-pt ul li a span i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #343434;
    color: #fff;
    border-radius:
  50%;
    position: relative;
    z-index: 1;
    -webkit-transition: .4s all ease-in-out;
    -o-transition: .4s all ease-in-out;
    transition: .4s all ease-in-out;
  }
  .right-pt ul li a:hover span i {
    color: rgb(5, 44, 101);
    background: #fff;
  }
  .right-pt ul li a:hover {
    border-color: #222d35;
  }
  .right-pt ul li a::before {
    content: '';
    position: absolute;
    background-color: #343434;
    width: 0%;
    height: 100%;
    right: 0;
    left: auto;
    top: 0;
    -webkit-transition: .4s all ease-in-out;
    -o-transition: .4s all ease-in-out;
    transition: .4s all ease-in-out;
    z-index: -1;
  }
  .right-pt ul li a:hover::before  {
    right: auto;
    left: 0;
    width: 100%;
    background-color: #222d35;
  }
  .testimonial-li-set {
    padding:
  unset !important;
  }
  .main-prop {
    padding: 10px 30px 30px;
    background-color: #eff6ff;
    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: 'Georgia Bold';
    color: #052c65;
    font-size: 25px;
    text-align: left;
    padding: 5px 0 10px;
    border-bottom: 2px solid #052c65;
    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: 'Inter Regular';
  }
  .dec-txt p {
    font-family: 'Inter Regular';
    font-size: 16px;
    line-height: 35px;
    margin-bottom: 10px;
    font-weight: 400;
  }
  .dec-txt a {
    font-family: 'Inter Regular';
    font-size: 17px;
    font-weight: 500;
    position: relative;
    color: #05558c;
  }
  .dec-txt a::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 {
    color: #243e61;
  }
  .dec-txt a:hover::after {
    width: 100%;
    left: 0;
  }
  .calender-frame img{
    width: 100%;
  }

  .new-style-amen h4 {
    background: #eee;
    padding: 15px 10px;
    border-bottom: 1px solid #003d4d;
    font-size: 22px;
    margin: 0 0 15px;
    font-weight: 500;
    font-family: 'Georgia Bold';
    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: 16px;
    -ms-flex: 0 0 31%;
    flex: 0 0 31%;
    max-width: 31%;
    font-weight: 400;
    font-family: 'Inter Regular';
    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;
  }
  .house-rule {
    margin: 0;
  }
  .house-rule p {
    border-bottom: 1px solid #ccc;
    font-size: 19px;
    padding-bottom: 10px;
    font-weight: 500;
    font-family: 'Inter Regular';
    text-transform: capitalize;
    color: #333;
  }
  .house-rule ul {
    list-style-type: none;
    padding: 10px 0 0;
    margin: 0 0 20px;
  }
  .house-rule ul li {
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter Regular';
    text-transform: capitalize;
    color: #333;
    margin-bottom: 10px;
  }
  .house-rule ul li i {
    color: #003d4d;
    margin-right: 10px;
    font-size: 13px;
  }

  .dec-txt h6 {
    background: #eee;
    padding: 15px 10px;
    border-bottom: 1px solid #003d4d;
    font-size: 22px;
    margin: 12px 0 15px;
    font-weight: 500;
    font-family: 'Georgia Bold';
    text-transform: capitalize;
  }

  .walking-ar h6 {
    background: #eee;
    padding: 15px 10px;
    border-bottom: 1px solid #003d4d;
    font-size: 22px;
    margin: 0 0 15px;
    font-weight: 500;
    font-family: 'Georgia Bold';
    text-transform: capitalize;
  }
  .walking-ar p {
    font-family: 'Inter Regular';
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 500;
  }
  .walking-ar p a {
    margin-right: 4px;
    position: relative;
  }
  .walking-ar p span {
    margin-left: 4px;
    font-weight: 500;
  }
  .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::before {
    transform: scaleX(1);
    transform-origin: 0 50%;
    transition-delay: .2s;
  }
  /* responsive table css */

  .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: 16px;
    font-weight: 400;
    font-family: 'Inter Regular';
    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: 'Source Sans Pro', 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: 'Inter Regular';
  }
  .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: 'Inter Regular';
      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: 'Inter Regular';
  }
  }
  .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: 'Inter Regular';
    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;
  }

  .review-head{
    display: flex;
    justify-content: space-between;
  }
  .review-head h1{
    width: 85%;
  }
  .rating {
    display: flex;
    width: 100%;
    /*! justify-content: center; */
    overflow: hidden;
    flex-direction: row-reverse;
    /*! height: 150px; */
    position: relative;
    align-items: center;
    justify-content: start;
  }
  
  .rating-0 {
    filter: grayscale(100%);
  }
  
  .rating > input {
    display: none;
  }
  
  .rating > label {
    cursor: pointer;
    width: 40px;
    height: 40px;
    /*! margin-top: auto; */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 76%;
    transition: .3s;
  }
  
  .rating > input:checked ~ label,
  .rating > input:checked ~ label ~ label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
  }
  
  
  .rating > input:not(:checked) ~ label:hover,
  .rating > input:not(:checked) ~ label:hover ~ label {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
  }
  
  .emoji-wrapper {
    width: auto;
    text-align: center;
    height: 100px;
    height: 80px;
    overflow: hidden;
    position: relative;
    /*! top: 0; */
    /*! left: 0; */
  }
  
  .emoji-wrapper:before,
  .emoji-wrapper:after{
    content: "";
    height: 15px;
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
  }
  
  .emoji-wrapper:before {
    top: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 35%,rgba(255,255,255,0) 100%);
  }
  
  .emoji-wrapper:after{
    bottom: 0;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 35%,rgba(255,255,255,0) 100%);
  }
  
  .emoji {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: .3s;
  }
  
  /* .emoji > svg {
    margin: 15px 0; 
    width: 70px;
    height: 70px;
    flex-shrink: 0;
  } */
  
  .emoji > svg {
    margin: 15px 0;
    width: 45px;
    height: 50px;
    flex-shrink: 0;
  }

  #rating-1:checked ~ .emoji-wrapper > .emoji { transform: translateY(-100px); }
  #rating-2:checked ~ .emoji-wrapper > .emoji { transform: translateY(-200px); }
  #rating-3:checked ~ .emoji-wrapper > .emoji { transform: translateY(-300px); }
  #rating-4:checked ~ .emoji-wrapper > .emoji { transform: translateY(-400px); }
  #rating-5:checked ~ .emoji-wrapper > .emoji { transform: translateY(-500px); }
  
  .feedback {
    /*! max-width: 360px; */
    background-color: none;
    width: 100%;
    /*! padding: 30px; */
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    /*! box-shadow: 0 4px 30px rgba(0,0,0,.05); */
  }
  .cst{
    height: 80px;
    display: flex;
    align-items: center;
  }
  .form-details .form-control{
    margin-bottom: 10px;
  }

  .btn-info {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #49afcd;
    background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
    background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
    background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
    background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
    background-repeat: repeat-x;
    border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
  }

  .btn-info:hover{
    color: #ffffff;
    background-color: #2f96b4;
    background-position: 0 -15px;
    transition: background-position 0.1s linear;
    text-decoration: none;
  }
  .form-details {
    padding: 10px;
    border: 1px solid #b0aeae;
    background: #f0efef57;
    margin: 20px 0;
    display: block;
    font-size: 17px;
    font-weight: 400;
    font-family: 'Inter Regular';
    text-transform: capitalize;
    color: #333;
  }
  .review-details {
    padding: 10px;
    border: 1px solid #b0aeae;
  }


  .form-details .btn-info{
    display: block;
    margin: 10px auto;
    width: auto;
  }
  .form-details .abt-mdl-save-btn{
    padding: 12px 24px;
    width: 150px;
    margin: 10px auto;
}
.rew-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.content {
  font-size: 24px;
  -ms-flex: 0 0 23%;
  flex: 0 0 23%;
  max-width: 23%;
  margin: 12px 7px;
  padding: 20px;
  display: none;
  border-radius: 5px;
  position: relative;
  background: #eff6ff;
  border: 1px solid #05558c;
}
.img-txt {
  border-bottom: 1px solid #1e90ff;
  margin-bottom: 10px;
}
.img-txt img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #fff;
  float: left;
  margin-right: 10px;
}
.img-txt h5 {
  display: flex;
  height: 60px;
  align-items: center;
  line-height: 20px;
  color: #333;
  position: relative;
  font-size: 22px;
  font-weight: 500;
  /* justify-content: center; */
  padding-bottom: 10px;
  margin-bottom: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Inter Regular';
}
@media (min-width: 992px) {
  .modal-lg{
    --bs-modal-width: 900px;
  }
}
.rew-txt {
  height: 120px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient( to top, rgba(255, 255, 255, 0), #0d1017 5rem );
}
.content.showContent .rew-txt {
  height: auto;
  display: contents;
}
.rew-txt h4 {
  color: #052c65;
  font-size: 21px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 0;
  font-family: 'Inter Regular';
}
.rew-txt ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.rew-txt ul li {
  display: inline-block;
  color: #052c65;
  font-size: 16px;
  margin: 2px;
}
.rew-txt p {
  color: #333;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: 'Inter Regular';
}
.content a{
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: 'Inter Regular';
}
.img-txt h5::before {
  background: #1e90ff;
  content: "";
  margin: 0 auto;
  position: absolute;
  bottom: 15px;
  width: 50px;
  z-index: 1;
  height: 2px;
  left: 0;
  transform: translate(10%, -50%);
}

#loadMore {
  width: fit-content;
  display: block;
  margin: 5px auto;
  border: 1px solid transparent;
  background-color: #052c65;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
  border-radius: 72px;
  font-family: 'Inter Regular';
  line-height: 1;
  padding: 12px 20px;
}
#loadMore::before {
  content: '';
  position: absolute;
  background-color: #343434;
  width: 0%;
  height: 100%;
  right: 0;
  left: auto;
  top: 0;
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
  z-index: -1;
}
#loadMore:hover {
  border-color: #222d35;
}
#loadMore:hover::before {
  right: auto;
  left: 0;
  width: 100%;
  background-color: #222d35;
}
.noContent{
  background: none !important;
  border-color: transparent !important;
  color: #003366 !important;
  -webkit-transition: .0s all ease-in-out !important;
  -o-transition: .0s all ease-in-out !important;
  transition: .0s all ease-in-out !important;
  cursor: context-menu !important;
}
.noContent::before{
  content: unset !important;
}
.area-attraction{
  padding: 50px 20px;
  background: #eff6ff;
}
.thing-head-h2 {
  background: #fff;
  padding: 15px 10px;
  border-bottom: 1px solid rgb(5, 44, 101);
  font-size: 25px;
  margin: 20px 0;
  font-weight: 500;
  font-family: 'Georgia Bold';
  text-transform: capitalize;
  text-align: center;
  border-radius: 5px;
}

.fancybox__caption {
  padding: 12px;
  font-family: 'Inter Regular';
  font-size: 17px;
  line-height: 35px;
  font-weight: 400;
}

.mobile-email{
    display: none;
    background-image: linear-gradient(-45deg,#61ccdb,#2179c4);
}
.mobile-email-dnone{
    display: none !important;
}
.mobile-email .container-fluid{
    padding: 0 5px;
}
.mobile-email ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-evenly;
  height: 40px;
  align-items: center;
}
.mobile-email ul li {
  -ms-flex: 0 0 40%;
  flex: 0 0 35%;
  max-width: 35%;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 500;
  font-family: 'Inter Regular';
  text-transform: capitalize;
}
.mobile-email ul li:first-of-type {
  -ms-flex: 0 0 58%;
  flex: 0 0 60%;
  max-width: 60%;
}
.mobile-email ul li i {
  color: #05558c;
  background: #fff;
  width: 25px;
  height: 25px;
  display: inline-flex;
  border-radius: 50%;
  font-size: 12px;
  align-items: center;
  justify-content: center;
  margin-right: 2px;
}
.mobile-email ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}
.mobile-email ul li a:hover {
  color: #fff;
}
.main-section-str{
    margin-bottom: 5px;
}
.mobile-social{
    display: none;
}
.calender-frame p {
  font-size: 23px;
  margin: 20px 0;
  color: #052c65;
  animation: animate 2.5s linear infinite;
  font-family: 'Georgia Bold';
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}
@keyframes animate {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
    }
}
  @media (max-width: 767px){
    .swiper-container{
      height: 30vh;
    }
    .text-fix-inter{
      display: none;
    }
    .new-prop, .about-sec, .area-sec{
      padding: 30px 0;
    }
    .title-head-our h2, .home-data-txt h1, .abt-mdl-content h2{
      font-size: 22px;
    }
    .our-property-list ul li{
      font-size: 17px;
    }
    .our-property-list ul li i {
      width: 32px;
      height: 32px;
    }
    .our-property-setting .our-property-para h4, .our-property-setting .our-property-para h4 a{
      font-size: 23px;
      font-weight: 500;
      letter-spacing: 1.3px;
    }
    .abt-fr-img {
      margin-right: 0;
      margin-bottom: 50px;
    }
    .abt-fr-img img, .abt-fr-img .abt-img-fst, .abt-fr-img .abt-img-trd, .abt-fr-img .abt-img-secd, .abt-fr-img .abt-img-furt {
      height: 200px;
    }
    .social-icon-flex {
      margin: 10px 0;
      justify-content: start;
    }
    .last-icon-txt {
      flex-direction: column;
    }
    .modal{
      z-index: 999999;
    }
    .abt-mdl-img-set {
      float: inherit;
      width: 100%;
      margin: 0 0 20px 0;
    }
    .contactForm .modal-body{
      padding: 10px 0;
    }
    .quote-cstm-pad{
      margin-top: 20px;
    }
    .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;
    }
    .right-pt ul li a {
      border-radius: 4px;
      padding: 10px;
    }
    .main-prop{
      padding: 10px 0px 30px;
    }
    .new-style-amen ul li{
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .right-btn-set {
      width: 100%;
      text-align: right;
    }
    .area-attraction{
      padding: 50px 0 30px;
    }
    .thing-head-h2{
      font-size: 23px;
      line-height: 35px;
    }
    .content{
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .mobile-email{
        display: block;
    }
    #header.mobile-nav-active .mobile-nav-toggle{
        top: -5px;
    }
    #header.header-scrolled.mobile-nav-active .mobile-nav-toggle{
        top: 20px;
    }
     #header .logo a.logo-img {
        position: absolute;
        top: 5px;
        width: 125px;
        z-index: 2;
      }
 #header {
    background: #c0e1f6;
  }
  .copy-sec{
      padding: 15px 0;
  }
    .last-icon-txt {
        flex-direction: row;
      }
      .last-icon-txt .last-foot-icon {
          width: 25px;
          height: 25px;
        }
      .last-icon-txt a {
        -ms-flex: 0 0 45%;
        flex: 0 0 45%;
        max-width: 45%;
        font-size: 12px;
        gap: 5px;
        text-transform: capitalize;
      }
      .main-sec-text .cstm-txt{
          font-size: 12px;
      }
    .last-icon-txt a:first-of-type {
        -ms-flex: 0 0 55%;
        flex: 0 0 55%;
        max-width: 55%;
      }
      .social-icon-flex a{
        width: 30px;
        height: 30px;
        font-size: 14px;
      }
      .main-section-str, .mobile-social{
          display: flex;
      }
      .mobile-view-hde-dsk{
          display: none;
      }
      .calender-frame iframe{
          height: 95vh !important;
      }
       .mob-table-dv{
           display: none !important;
       }
       .mobile-table-div-flex{
           display: flex !important;
           align-items: center !important;
       }
       .responsive-table tbody td[data-title]::before{
           text-align: left !important;
       }
       .calender-frame p{
           font-size: 19px;
           line-height: 35px;
       }
  }
  @media (min-width: 769px) and (max-width: 999px){
    .mobile-nav-toggle{
      z-index: 55;
    }
    .mobile-nav-toggle i{
      color: #333 !important;
    }
    .new-style-amen ul li{
      -ms-flex: 0 0 47%;
      flex: 0 0 47%;
      max-width: 47%;
    }
    .content{
      -ms-flex: 0 0 48%;
      flex: 0 0 48%;
      max-width: 48%;
    }
     #header .logo a.logo-img {
        position: absolute;
        top: 0;
        width: 125px;
        z-index: 2;
      }
  }
  @media (max-width: 999px){
    #header{
      padding: 10px 0;
    }
    .our-property-setting figure {
      width: auto;
      margin: 0;
    }
    .our-property-setting figure img, .our-property-setting.left figure img {
      height: auto;
    }
    .our-property-setting .our-property-para {
      position: relative;
      top: 0;
      width: auto;
      -ms-transform: translate(0, 0);
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0);
      outline: none;
    }

  }