*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root { 
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2c4964; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #1977cc; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --nav-color: #2c4964;  /* The default color of the main navmenu links */
    --nav-hover-color: #1977cc; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #2c4964; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #1977cc; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
    --nav-font: "Jost", sans-serif;
}
  
  /* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
  
  .light-background {
    --background-color: #f1f7fc;
    --surface-color: #ffffff;
  }
  
  .dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
  }
  
  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
  
a{
    text-decoration: none;
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Gilda Display", serif;
}
p, a{
    font-family: "Jost", sans-serif;
    margin-bottom: 0;
}

.header {
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
  }
  
   .header .topbar {
    background-color: var(--accent-color);
    height: 40px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
    position: relative;
    padding-left: 10px;
  }
.header .topbar::after {
  position: absolute;
  content: "";
  top: 0px;
  left: -0.5px;
  width: 15px;
  height: calc(100% - 0px);
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 1;
}
  
  .header .topbar .contact-info i {
    font-style: normal;
    color: var(--contrast-color);
    font-size: 17px;
  }
  
  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    padding-left: 5px;
    color: var(--contrast-color);
    font-family: var(--nav-font);
  }
  
  @media (max-width: 575px) {
  
    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
      font-size: 13px;
    }
  }
  @media (max-width: 767px){
      .header .topbar::after{
          content: unset;
      }
  }
  .header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
  }
  
  .header .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
  }
  
  .header .topbar .social-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
  }
  
  .header .topbar .social-links a:hover {
    color: var(--contrast-color);
  }
  
  .header .branding {
    min-height: 60px;
    padding: 10px 0;
  }
  
  .header .logo {
    line-height: 1;
  }
  
  .header .logo img {
    width: 250px;
    transition: all 0.5s;
  }
  
  .header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
  }
  .scrolled .header .logo img {
    width: 150px;
  }
  .header .cta-btn,
  .header .cta-btn:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 17px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
  }
  
  .header .cta-btn:hover,
  .header .cta-btn:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
  }
  
  @media (max-width: 1200px) {
    .header .logo {
      order: 1;
    }
  
    .header .cta-btn {
      order: 2;
      margin: 0 15px 0 0;
      padding: 6px 15px;
    }
  
    .header .navmenu {
      order: 3;
    }
  }
  
  .scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.3);
  }
  
  .scrolled .header .topbar {
    height: 0;
    visibility: hidden;
    overflow: hidden;
  }
  
  @media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navmenu li {
      position: relative;
    }
  
    .navmenu>ul>li {
      white-space: nowrap;
      padding: 15px 14px;
    }
  
    .navmenu>ul>li:last-child {
      padding-right: 0;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-color);
      font-size: 17px;
      padding: 0 2px;
      font-family: var(--nav-font);
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    .navmenu>ul>li>a:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: -6px;
      left: 0;
      background-color: var(--nav-hover-color);
      visibility: hidden;
      width: 0px;
      transition: all 0.3s ease-in-out 0s;
    }
  
    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
      visibility: visible;
      width: 100%;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-hover-color);
    }
  
    .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: var(--nav-dropdown-background-color);
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--nav-dropdown-color);
    }
  
    .navmenu .dropdown ul a i {
      font-size: 12px;
    }
  
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }
  }
  
  /* Mobile Navigation */
  @media (max-width: 1199px) {
    .mobile-nav-toggle {
      color: var(--nav-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--nav-mobile-background-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-dropdown-color);
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: var(--accent-color);
      color: var(--contrast-color);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      transform: rotate(180deg);
    }
  
    .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--nav-dropdown-background-color);
      transition: all 0.5s ease-in-out;
    }
  
    .navmenu .dropdown ul ul {
      background-color: rgba(33, 37, 41, 0.1);
    }
  
    .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }
  }


#banner-slider {
    height: 100vh;
    overflow: hidden;
  }
  .banner-slider-set{
    position: relative;
  }
  .banner-slider-set::before{
    content: "";
    position: absolute;
    top: 0;left: 0;right: 0;bottom: 0;
    background: #000;
    opacity: 0.2;
    width: 100%;
    height: 100%;
  }
  .banner-slider-set img{
    object-fit: cover;
    height: 100vh;
  }
  #banner-slider .owl-nav{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 99%;
    display: flex;
    justify-content: space-between;
    transform: translate(-50%, -50%);
  }
  #banner-slider .owl-nav button{
    background: rgba(255, 255, 255, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 5px;
    transition: all 0.3s;
  }
  #banner-slider .owl-nav button:hover{
    background: #1977cc;
    color: #fff;
    border-radius: 50%;

  }
  #banner-slider .owl-dots{
    position: absolute;
    bottom: 5%;
    text-align: center;
    width: 100%;
  }
    #banner-slider .owl-dots .owl-dot span{
      background: rgba(30, 144, 255,0.3);
      display: inline-block;
      margin: 0;
      transform: translate3d(0px, -50%, 0px) scale(0.3);
      transform-origin: 50% 50% 0;
      transition: all 250ms ease-out 0s;
      border-radius: 100%;
      width: 25px;
      height: 25px;
      cursor: pointer;
      border: 5px solid #fff !important;
    }
    #banner-slider .owl-dots .owl-dot.active span,
    #banner-slider .owl-dots .owl-dot:hover span{
      background: #1977cc;
      transform: translate3d(0px, -50%, 0px) scale(0.6);
    }

    .exuma-txt {
        bottom: 18%;
        position: absolute;
        z-index: 1;
        width: 100%;
        padding: 10px 0;
        left: 50%;
        transform: translate(-50%, 0);
      }
      .exuma-txt h1 {
  text-align: center;
  color: rgb(255, 255, 255);
  text-shadow: rgb(0, 0, 0) 1px 2px 4px;
  font-weight: 700;
  font-size: 55px;
  margin-bottom: 20px;
}
.slider.slider-rtl{
    margin-bottom: 30px;
}
      
      .our-propeties-sec{
        background-color: #f6f8ff;
        padding: 75px 0;
      }
      .main-heading-property h1 {
        font-size: 50px;
        margin-bottom: 50px;
        padding-bottom: 20px;
        position: relative;
        text-align: center;
        font-weight: 600;
        line-height: 50px;
      }
      .main-heading-property h1::before {
        content: "";
        position: absolute;
        display: block;
        width: 160px;
        height: 1px;
        background: color-mix(in srgb, #444, transparent 60%);
        left: 0;
        right: 0;
        bottom: 1px;
        margin: auto;
      }
      .main-heading-property h1::after {
        content: "";
        position: absolute;
        display: block;
        width: 60px;
        height: 3px;
        background: var(--accent-color);
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
      }

      .prop-list{
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        border-bottom: 1px solid transparent;
        transition: transform 0.4s, filter 0.4s;
    }
    .owl-stage-outer:hover .prop-list{
      /*filter: blur(4px);*/
      transform: scale(0.98);
    }
    .owl-stage-outer .prop-list:hover{
        border-bottom: 1px solid #113a75;
        -webkit-box-shadow: 10px 4px 60px rgba(247, 146, 30, 0.3);
        box-shadow: 10px 4px 60px rgba(247, 146, 30, 0.3);
        filter: none;
        transform: scale(1.0);
    }
    .prop-list .prop-list-inner{
        position: relative;
        overflow: hidden;
    }
    .prop-list-inner figure{
        margin-bottom: 0;
    }
    .prop-list-inner figure::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75) 100%);
        z-index: 1;
        opacity: 0;
        transition: 0.2s;
    }
    .prop-list:hover .prop-list-inner figure::before{
        opacity: 1;
    }
    .prop-list .prop-list-inner figure img {
        width: 100%;
        transition: all 0.5s ease-out;
        height: 300px;
        object-fit: cover;
      }
      #property-inter-slider > .owl-nav {
        position: absolute;
        top: 50%;
        transform: translate(-50%, 50%);
        width: 97%;
        display: flex;
        justify-content: space-between;
        left: 50%;
      }
      #property-inter-slider > .owl-nav button {
        width: 25px;
        height: 25px;
        background: rgba(255, 255, 255, 0.5);
        color: #333;
        border-radius: 5px;
      }
    #property-inter-slider > .owl-nav button:hover{
        border-radius: 50%;
        background: #1977cc;
        color: #fff;
    }
    #property-inter-slider .owl-dots{
        position: absolute;
        bottom: 10px;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 5px;
      }
      #property-inter-slider .owl-dots .owl-dot {
        border: 1px solid #1876cb;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #1876cb;
        display: flex;
        justify-content: center;
        align-items: center;
      }
    #property-inter-slider .owl-dots .owl-dot span{
        background: #1876cb;
        width: 18px;
        height: 18px;
        border-radius: 50%;
    }   
    #property-inter-slider .owl-dots .owl-dot.active{
        background: transparent;
        border: 1px solid #1876cb;
        transition: all ease-in-out 0.3s;
    }   
    #property-inter-slider .owl-dots .owl-dot.active span{
        width: 6px;
        height: 6px;
        background: #03B432;
        transition: all ease-in-out 0.3s;
    }

    .prop-list:hover .prop-list-inner figure img{
        transform: scale(1.2);
    }
    
    .prop-list:hover .prop-list-inner figure:after{
        height: 250%;
        transition: all 600ms linear;
        background-color: transparent;
    }
    
    .prop-list:hover .prop-list-inner figure:after{
        height: 250%;
        transition: all 600ms linear;
        background-color: transparent;
    }
    
    .prop-list .prop-list-inner .prop-list-category{
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--primary-color);
        color: var(--contrast-color);
        font-family: var(--accent-font);
        font-size: 16px;
        font-weight: 500;
        padding: 4px 14px;
        border-radius: 5px;
    }
    
    .prop-list .prop-list-desc{
        padding: 30px 30px 25px 30px;
    }
    
    .prop-list .prop-list-desc h3 {
        font-size: 22px;
        font-weight: 600;
        color: #333333;
        font-family: 'Sora', sans-serif;
      }
    .prop-list .prop-list-desc h3 a{
        font-family: inherit;
        transition: 0.3s;
        position: relative;
        color: #212529;
    }
    .prop-list .prop-list-desc h3 a:hover{
          color: #1977cc;
        }
        .prop-list .prop-list-desc h3 a::before {
          display: block;
          content: "";
          padding-top: 4px;
          border-bottom: 2px solid rgb(3, 72, 51);
          border-bottom-color: rgb(3, 72, 51);
          border-color: rgb(3, 72, 51);
          transform-origin: 0px 50% 0px;
          bottom: 0px;
          left: 0px;
          position: absolute;
          width: 50%;
          transition: 0.3s linear;
        }
        .prop-list .prop-list-desc h3 a:hover::before {
          width: 100%;
          border-color: #1977cc;
        }
    .prop-list .prop-list-desc p{
        margin-bottom: 0;
    }
    
    .prop-list .prop-list-details{
        display: flex;
        flex-wrap: wrap;
        margin-top: 25px;
        padding-bottom: 10px;
        border-bottom: 1px solid #dddbdb;
    }
    
    .prop-list .prop-list-details .prop-list-details-inner{
        width: 48%;
        margin-right: 4%;
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        color: #646262;
    }
    
    .prop-list .prop-list-details .prop-list-details-inner:nth-of-type(2n + 2){
        margin-right: 0;
    }
    
    .prop-list .prop-list-details .prop-list-details-inner .prop-list-details-inner-icon img{
        width: 30px;
        margin-right: 10px;
    }
    
    .prop-list .prop-list-last{
        padding: 0 30px 30px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    
    .prop-list .prop-list-last .prop-list-last-star{
        margin-bottom: 0;
        font-weight: 600;
        font-size: 18px;
        color: var(--dark-color);
        display: none;
    }
    
    .prop-list .prop-list-last .btn-default{
        font-size: 17px;
        padding: 10px 20px;
    }
    .btn-default {
        display: inline-block;
        background: var(--accent-color);
        color: var(--contrast-color);
        font-family: var(--accent-font);
        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;
      }
      .prop-list .prop-list-last .btn-default {
        font-size: 14px;
        padding: 10px 20px;
      }
      .btn-default::before {
        content: '';
        position: absolute;
        width: 0;
        height: 104%;
        top: 50%;
        left: 50%;
        background: #03B432;
        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;
      }
      #property-slider > .owl-dots, #area-slider > .owl-dots{
        display: flex;
        gap: 10px;
        justify-content: center;
        margin-top: 20px;
      }
      #property-slider > .owl-dots .owl-dot, #area-slider > .owl-dots .owl-dot {
        border: 1px solid #1876cb;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #1876cb;
      }
      #property-slider > .owl-dots .owl-dot span, #area-slider > .owl-dots .owl-dot span{
        background: transparent;
        border-radius: 50%;
        width: 5px;
        display: block;
        height: 5px;
      }
      #property-slider > .owl-dots .owl-dot.active, #area-slider > .owl-dots .owl-dot.active{
        border: 1px solid #03B432;
        transition: all 0.3s;
        background: transparent;
      }
      #property-slider > .owl-dots .owl-dot.active span, #area-slider > .owl-dots .owl-dot.active span {
        background: #1876cb;
        transition: all 0.3s;
      }
      .beach-sec{
        padding: 75px 0;
        background: url(../img/leaf.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
      }
      .beach-sec::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: #e9f5ff;
        opacity: 0.7;
      }
      .beach-text-content p{
        margin-bottom: 10px;
        line-height: 30px;
      }
      .cstm-padding{
        padding-left: 8px;
        padding-right: 8px;
      }
      .cstm-padding .col-6{
        padding: 0;
      }
      .image-one, .image-two, .image-three, .image-four{
        margin: 5px;
      }
      .image-one img{
      height: 275px !important;
      object-fit: cover !important;
      border-radius: 9999px 9999px 0 9999px;
      border: 10px solid rgba(25, 119, 204, 0.5);
      }
      .image-two img{
      height: 275px !important;
      object-fit: cover !important;
      border-radius: 9999px 9999px 9999px 0;
      border: 10px solid rgba(25, 119, 204, 0.5);
      }
      .image-three img{
        height: 275px !important;
        object-fit: cover !important;
        border-radius: 9999px 0 9999px 9999px;
        border: 10px solid rgba(25, 119, 204, 0.5);
        }
      .image-four img{
        height: 275px !important;
        object-fit: cover !important;
        border-radius: 0 9999px 9999px 9999px;
        border: 10px solid rgba(25, 119, 204, 0.5);
        }
        .beach-text-content h2{
          font-size: 40px;
          font-weight: 600;
          line-height: 60px;
          position: relative;
        }
        .beach-text-content h2::before {
          content: "";
          position: absolute;
          display: block;
          width: 160px;
          height: 1px;
          background: color-mix(in srgb, #444, transparent 60%);
          left: 0;
          right: 0;
          bottom: 1px;
        }
        .beach-text-content h2::after {
          content: "";
          position: absolute;
          display: block;
          width: 60px;
          height: 3px;
          background: var(--accent-color);
          left: 50px;
          right: 0;
          bottom: 0;
        }
        .testimonials{
          padding: 75px 0;
        }
        .review-box-inner{
          background-color: #f9f9f9;
          border: 1px solid #ddd;
          padding: 15px;
          border-radius: 8px;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .review-property{
          margin-bottom: 10px;
        }
        .review-property p{
          width: fit-content;
          background: #1977cc;
          color: #fff;
          padding: 5px 10px;
          border-radius: 2px;
        }
        .review-arting {
          color: #1977cc;
          font-size: 22px;
          display: flex;
          gap: 3px;
        }
        .review-main-txt{
          margin-bottom: 10px;
          border-bottom: 1px solid #ddd;
        }
        .review-main-txt h2{
          font-size: 22px;
          font-weight: 600;
        }
        .review-main-txt p{
          line-height: 30px;
          margin-bottom: 10px;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 3;
          -webkit-box-orient: vertical;
        }
        .review-main-txt a{
          margin-bottom: 10px;
          display: block;
          width: fit-content;
        }
        .review-user-name {
          display: flex;
          gap: 15px;
          align-items: center;
        }
        .review-user-name img {
          width: 60px;
          height: 60px;
          padding: 2px;
          background: #ddd;
          border-radius: 50%;
          object-fit: cover;
        }
        .right-border-crt{
          border-right: 1px solid #1977cc;
          height: 50px;
        }
        .review-user-name h6{
          font-size: 22px;
          font-weight: 600;
          margin-bottom: 0;
        }
        .marquee {
          width: 100%;
          position: relative;
          margin: 15px 0;
          padding: 5px 0;
          overflow: hidden;
        }
        
        .marquee-content {
          display: flex;
          animation: marquee 20s linear infinite;
          animation-play-state: running;
          gap: 10px;
        }
        
        .marquee:hover .marquee-content {
          animation-play-state: paused; /* Pause the animation on hover */
        }
        
        .marquee-item {
          flex-shrink: 0;
          width: 450px;
          background-color: #ccc;
          display: flex;
          justify-content: center;
          align-items: center;
          transition: transform 0.4s ease, filter 0.4s ease;
          border-radius: 8px;
        }
        
        .marquee:hover .marquee-item {
          filter: blur(4px);
          transform: scale(0.9);
        }
        
        .marquee .marquee-item:hover {
          filter: none;
          transform: scale(1.0);
        }
        .marquee-right {
          animation: marquee-right 20s linear infinite;
        }
        @keyframes marquee {
          0% {
            transform: translateX(0);
          }
          100% {
            transform: translateX(-50%);
          }
        }
        @keyframes marquee-right {
          from {
            transform: translateX(-50%);
          }
          to {
            transform: translateX(0%);
          }
        }
        .area-sec{
          padding: 75px 0;
          background: url(../img/leaf.jpg);
          background-position: center center;
          background-repeat: no-repeat;
          background-size: cover;
          position: relative;
        }
        .area-sec::before{
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          bottom: 0;
          right: 0;
          background: #e9f5ff;
          opacity: 0.7;
        }
        .area-box-inner{
          position: relative;
          overflow: hidden;
          border-radius: 18px;
          border: 1px solid rgba(118, 118, 118, 0.3);
          background: #f8f3f2;
          transition: all 0.4s ease-in-out;
          transition: transform 0.4s ease, filter 0.4s ease;
        }
        .owl-stage-outer:hover .area-box-inner{
            /*filter: blur(4px);*/
            transform: scale(0.98);
        }
        .owl-stage-outer .area-box-inner:hover{
            filter: none;
            transform: scale(1.0);
        }
        .area-img {
          overflow: hidden;
        }
        .area-img img {
          width: 100%;
          height: 100%;
          transition: all 0.4s ease-in-out;
          height: 300px;
          object-fit: cover;
        }
        .area-box-inner:hover .area-img img {
          transform: scale(1.2);
        }
        .area-box-inner:hover .image-anime::after {
          height: 250%;
          transition: all 600ms linear;
          background-color: transparent;
        }
        .area-txt {
          padding: 20px;
        }
        .area-txt h2{
          font-size: 20px;
          font-weight: 600;
          line-height: 150%;
        }
        .area-txt h2 a {
          transition: 0.3s;
          position: relative;
          font-size: 25px;
          color: #212529;
          font-weight: 500;
        }
        .area-txt h2 a:hover{
          color: #1977cc;
        }
        .area-txt h2 a::before {
          display: block;
          content: "";
          padding-top: 4px;
          border-bottom: 2px solid rgb(3, 72, 51);
          border-bottom-color: rgb(3, 72, 51);
          border-color: rgb(3, 72, 51);
          transform-origin: 0px 50% 0px;
          bottom: 0px;
          left: 0px;
          position: absolute;
          width: 50%;
          transition: 0.3s linear;
        }
        .area-txt h2 a:hover::before {
          width: 100%;
          border-color: #1977cc;
        }
        .area-txt p {
          line-height: 30px;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 3;
          -webkit-box-orient: vertical;
        }
        .read-more{
          margin-top: 30px;
          display: flex;
          align-items: center;
          justify-content: space-between;
          position: relative;
        }
        .read-more::before {
          position: absolute;
          content: "";
          top: -13px;
          left: -20px;
          right: 0;
          bottom: 0;
          width: 115%;
          height: 1px;
          background-color: rgba(118, 118, 118, 0.3);
        }

        .read-more .btn-default{
          padding: 10px 20px;
          font-size: 17px;
        }
        /* footer starts */
.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);
}
/* footer ends */



































































      .scroll-top {
        position: fixed;
        visibility: hidden;
        opacity: 0;
        right: 15px;
        bottom: 15px;
        z-index: 99999;
        background-color: var(--accent-color);
        width: 40px;
        height: 40px;
        border-radius: 4px;
        transition: all 0.4s;
      }
      
      .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
      }
      
      .scroll-top:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
      }
      
      .scroll-top.active {
        visibility: visible;
        opacity: 1;
      }


      .image-anime{
        position: relative;
        overflow: hidden;
    }
    
    .image-anime:after{
        content: "";
        position: absolute;
        width: 200%;
        height: 0%;
        left: 50%;
        top: 50%;
        background-color: rgba(255,255,255,.3);
        transform: translate(-50%,-50%) rotate(-45deg);
        z-index: 1;
    }
    
    .image-anime:hover:after {
        height: 250%;
        transition: all 600ms linear;
        background-color: transparent;
    }
    
    .reveal{
        position: relative;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        visibility: hidden;
        overflow: hidden;
    }
    
    .reveal img {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transform-origin: left;
        transform-origin: left;
      }
.display-cstm-set{
  display: none;
}
.cstm-logo-brand-mobile{
  display: none;
}
@media (max-width: 767px){
  #banner-slider, .banner-slider-set img{
    height: 250px;
  }
  .exuma-txt{
    display: none;
  }
  .main-heading-property h1{
    font-size: 40px;
  }
  .image-one img, .image-two img, .image-three img, .image-four img{
    height: 175px !important;
  }
  .copy-sec__text a{
    display: block;
  }
  .copy-sec__text{
    text-align: left !important;
  }
}
@media (max-width: 999px){
  .display-cstm-set, .cstm-logo-brand-mobile{
    display: block;
  }
  #header .col-2{
    display: none;
  }
  #header .col-10{
    width: 100%;
  }
  .header .branding .container{
    justify-content: space-between !important;
  }
  .cstm-logo-brand{
    display: none;
  }
  .mobile-logo .logo img {
    width: 170px;
    transition: all 0.5s;
  }
}


.slider-container {
  margin-bottom: 40px;
  overflow: hidden;
}

.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  /*cursor: grab;*/
  cursor: default;
}

.slider:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.slide-item {
  max-width: 400px;
  padding: 12px;
  margin: 0 10px;
  background-color: #f0f0f0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  flex-shrink: 0;
  user-select: none;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.slider-track:hover .slide-item{
  /*filter: blur(4px);*/
  transform: scale(0.98);
}
.slider-track .slide-item:hover {
  filter: none;
  transform: scale(1.0);
}

@media (max-width: 768px) {
  .slide-item {
      min-width: 250px;
  }
}

@media (max-width: 480px) {
  .slide-item {
      min-width: 200px;
  }
}
/* inner pages css */


.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;
}
.mt-10 {
  margin-top: 10px;
}
.gallery-new-design{
  padding: 30px 0 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;
}
.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: inline-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: var(--contrast-color);
  background: var(--accent-color);
  z-index: 99;
}
.gallery-full:hover{
  background: var(--contrast-color);
  color: var(--accent-color);
}
  .fancybox__caption{
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
  }
  .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;
    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: rgb(5, 44, 101);
    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: #1977cc;
    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: rgb(5, 44, 101);
    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: #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: "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 {
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 400;
    position: relative;
  }
  .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::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 p {
    font-size: 23px;
    margin: 20px 0;
    color: #052c65;
    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;
  }
  .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: #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: "Jost";
}
.cnt-frm {
  font-family: "Jost";
  font-size: 23px;
  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: "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 #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: "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: #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: "Jost";
  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: #03B432;
  box-shadow: 1px 1px 1px #03B432;
  border: 2px solid #03B432;
  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: #05558c;
  background: #eff6ff;
  border: 1px solid #05558c;
  margin-top: 10px;
}
.social-links-list h2 {
  margin-top: 13px;
  line-height: 30px;
  color: #05558c;
  margin-bottom: 13px;
  border-bottom: 1px solid #05558c;
  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: #05558c;
  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: #03B432;
  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;
}
.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: #eee;
  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);
}
.horizontal-review .review-title {
  line-height: 1.5;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #052c65;
  font-size: 25px;
  text-align: left;
  border-bottom: 2px solid #052c65;
  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: #052c65;
}
.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;
}
.review-summary {
  background-color: #eee;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 0.675rem;
  box-shadow: 0 0.15rem 0.35rem rgba(0, 0, 0, 0.075);
}
.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: #052c65;
  font-size: 25px;
  text-align: left;
  border-bottom: 2px solid #052c65;
  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: #052c65;
  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: #052c65;
}
.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: #eee;
}
.review-main-box .card-body{
  padding: 1.5rem;
}
.review-main-inner{
  border-bottom: 2px solid #052c65;
}
.review-main-inner h3 {
  line-height: 1.5;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #052c65;
  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-list .review-item p {
  font-style: italic;
  line-height: 30px;
  font-size: 18px;
}
.review-count{
  position: sticky;
  top: 90px;
}
.review-item{
  display: none;
}
#loadMore{
  font-size: 18px;
}
.map-frame h3{
  font-size: 25px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  text-transform: capitalize;
  color: #333;
  margin: 10px 0;
}
.about-modal-srt {
  background-color: #ecf3fa;
}
.abut-img-sec img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 20px;
  float: left;
  border: 5px solid #1977cc;
}
.abut-img-sec p {
  font-family: "Jost", sans-serif;
  font-size: 19px;
  line-height: 35px;
  margin-bottom: 10px;
  font-weight: 400;
}
.area-inner-sec-srt {
  padding: 30px 30px 50px;
  background-color: #ecf3fa;
  position: relative;
}
.area-inner-sec-rt-box{
  margin: 10px 0;
}

.banner-slider, .testimonials{
    overflow: hidden;
}
@media (max-width: 767px){
  .contactForm .modal-body{
    padding: 10px;
  }
  .contactForm .modal-body .quote-modal .container{
    padding: 0;
  }
  .quote-cstm-pad{
    margin-top: 10px;
  }
  .social-links-list{
    display: none;
  }
  .main-img a img{
    height: 300px;
  }
  .side-2 a img{
    height: 145px;
  }
  .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;
  }
  .area-inner-sec-srt{
    padding: 30px 0;
  }
  .abut-img-sec {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .abut-img-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1024px){
  .quote-cstm-pad{
    margin-top: 10px;
  }
  .social-links-list{
    display: none;
  }
  .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;
}