/* General */
sup {
    vertical-align:super;
}
sub {
    vertical-align: sub;
}

.uppercase {
    text-transform: uppercase;
}

.overlay-position {
    position: relative;
}

.pad-bottom20 {
    padding-bottom: 20px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb20 {
    margin-bottom: 20px;
}

.mt-100 {
    margin-top: 100px;
}

.mb50 {
    margin-bottom: 50px;
}

.mt50 {
    margin-top: 50px;
}

.hide{ display: none; }

.invisible { position: absolute; visibility: hidden; display: block; }

/* Image Overlays */

.bg-img-overlay:before{ content: ""; display: block; position: absolute; top: 0; bottom: 0; left: 0; right: 0; background: rgba(0,0,0, 0.3);}
.tinta:after {content:""; position:absolute; top:0; left:0; bottom:0; right:0; background-color: rgba(0,0,0,0.3);}
.tinta:before { background: none;}

.tint {
  position: relative;
  float: left;
  cursor: pointer;
}

.tint:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,255,255, 0.5);
  -moz-transition: background .3s linear;
  -webkit-transition: background .3s linear;
  -o-transition: background .3s linear;
  transition: background .3s linear;
}

.tint:hover:before {
  background: none;
}

.bg-colour-green:before {
    background: rgba(140,214,0, 0.6);
}

.bg-colour-purple:before {
    background: rgba(0,97,135, 0.6);
}

.bg-colour-blue:before {
    background: rgba(0,101,149, 0.5);
}

.bg-img-overlay h1, .bg-img-overlay h2, .bg-img-overlay h3, .bg-img-overlay h4, .bg-img-overlay h5, .bg-img-overlay h6 {
    position: relative;
}

.botton-fade figure:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: -moz-linear-gradient(270deg, rgba(255,255,255,0) 59%, rgba(0,0,0,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(59%, rgba(255,255,255,0)), color-stop(100%, rgba(0,0,0,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(270deg, rgba(255,255,255,0) 59%, rgba(0,0,0,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(270deg, rgba(255,255,255,0) 59%, rgba(0,0,0,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(270deg, rgba(255,255,255,0) 59%, rgba(0,0,0,1) 100%); /* ie10+ */
    background: linear-gradient(180deg, rgba(255,255,255,0) 59%, rgba(0,0,0,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 ); /* ie6-9 */
}

/* Sitemaps */

.sitemap ul, .sitemap li {
    margin: 0;
    /*padding: 0;*/
}

.responsive-embbed {display: block; width:100%; padding-top:56.65%; height:0; position:relative; margin-bottom:20px;}
.responsive-embbed iframe {position:absolute; width:100%; height:100%; object-fit:cover; left:50%; top:50%; transform:translate( -50%, -50% ); -webkit-transform:translate( -50%, -50% );}

/*Custom */

.landing-section.inner-banner.half-banner {height: calc(100vh - 550px);}

.center-image {margin-bottom: 50px;}
.center-image img {display: block; margin: 0 auto;}
.page-content-bottom-pd {padding-bottom: 50px}

.alert-danger > ul {margin: 10px 0 10px;}

.hscroll::-webkit-scrollbar {
    -webkit-appearance: none;
}
.hscroll::-webkit-scrollbar:horizontal {
    height: 11px;
}
.hscroll::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white;
    background-color: rgba(0, 0, 0, .5);
}
.hscroll::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 8px;
}

.text-shadow {text-shadow: 0px 0px 11px rgba(0, 0, 0, 1);}

/*play button animation 17-02-2020 */
.landing-section .pulse-wave {
  margin-top: 50px;
}
.pulse-wave {
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  text-decoration: none;
  border: 3px solid #fff;
  border-radius: 100%;
  text-align: center;
  height: 90px;
  width: 90px;
}
.pulse-wave span{
  display: block;
    font-size: 20px;
    color: #fff;
    margin: 0 auto;
}
.pulse-wave i{
  display: block;
    font-style: normal;
    font-family: 'Gotham Book';
    font-size: 8px;
    line-height: 1;
    color: #fff;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
}
.pulse-wave:before,
.pulse-wave:after {
    content: '';
    display: block;
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    border-radius: 50%;
    border: 1px solid #fff
}

.pulse-wave:before {
    -webkit-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite
}

.pulse-wave:after {
    -webkit-animation: ripple 2s linear 1s infinite;
    animation: ripple 2s linear 1s infinite
}

@-webkit-keyframes ripple {
  0% {
      -webkit-transform: scale(1)
  }

  75% {
      -webkit-transform: scale(1.75);
      opacity: 1
  }

  100% {
      -webkit-transform: scale(2);
      opacity: 0
  }
}

@keyframes ripple {
  0% {
      transform: scale(1)
  }

  75% {
      transform: scale(1.75);
      opacity: 1
  }

  100% {
      transform: scale(2);
      opacity: 0
  }
}

/* clear top and bottom spacing */
.pt-0 {
    padding-bottom: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-0 {
    margin-bottom: 0 !important;
}

.text-block { max-width: 940px; }
.text-block p { font-size: 1.2em; line-height: 1.2em; }

.fancybox-is-open .fancybox-stage .open-popup.medium {height: calc(60% - 40px);}
.medium .make-inquiry{height: calc(60% - 40px);}

@media (max-width:640px) {
    .fancybox-is-open .fancybox-stage .open-popup.medium {height: calc(70% - 40px);}

    .landing-section.inner-banner .pulse-wave {
        margin-top: 200px;
    }
}

form.kc-form label.error {
    color: red;
    font-weight: normal;
    text-transform: none;
}

.wp-iframe-video-container {
    width: 100%;
    height: 600px;
    margin-top: 20px;
}

.wp-iframe-video {
    width: 100%;
    height: 100%;
}

/* Size fix for tel JS inputs*/
div.iti {
    width: 100%;
}

.alert.alert-danger {
    background-color: #B54340;
}

.alert.alert-danger p {
    color: #F7F0E3;
}

@media (max-width:768px) {
    div.iti {
        margin-bottom: 0.25rem;
    } 
}
.iti-mobile div.iti--container {
    z-index: 9999;
}

a.ns-container {
    text-decoration: none;
    color: initial;
}

a.ns-container:hover {
    text-decoration: none;
    color: initial;
}

/* Consent */
.acc-popup__content {

}

div.ccm-page .acc-popup__controls {
    justify-content: center;
}

/* div.ccm-page .acc-popup__controls .acc-btn-accept {
    margin-right: 20px;
} */

@media (max-width: 640px) {

    div.ccm-page .acc-popup__wrapper--modal {
        padding: initial;
    }

    div.ccm-page .acc-popup .acc-popup__wrapper {
        margin-top: 40px;
    }

    div.ccm-page .acc-popup__wrapper--modal {
        padding: 20px 20px 25px;
    }
}

@media screen and (min-width: 993px) {

    

}

.calender-card-grid {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media screen and (min-width: 993px) {
    .calender-card {
        flex-basis: 45%;
        margin-bottom: 5rem;
    } 

    .calender-card-text {
        bottom: -4rem;
    }
}

@media screen and (min-width: 1439px) {
    .calender-card {
        flex-basis: 30%;
    } 
}

@media screen and (max-width: 992px) {
    .calender-card {
        flex-basis: 100%;
        margin-bottom: 3.5rem;
    } 
    .calender-card-text {
        bottom: -3rem;
    }
    .calender-card-btn{
        max-width: 3rem;
        padding: 0.25rem;
    }
}

.hide-form-input {
    display: none !important;
}

div.grecaptcha-badge{
    width:0 !important;
}

div.grecaptcha-badge.show{
    width:256px !important; 
}

div.general-blog-image-caption {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 1rem 1.25rem;
    color: #ffffff;
    font-size: 0.75rem;
    text-transform: uppercase;
    background-color: #70940C;
}

/* for mobile CTA strip */
@media screen and (max-width: 992px) {
    .rates-highlighted.highlighted-strip .hs-textcontainer h3{
        line-height: 3.5rem;
    } 
}

a.ctt-card.bg-glass {
   background-color: rgb(186,185,127) !important;
}

.vertical-align-top {
    vertical-align: top !important;
}

div.nav-cta-strip-icon{
    width: 1.63rem;
    margin-right: 2rem; 
}

.nav-cta-strip-title{
    font-weight: 600;
    color: #BE8E36;
    letter-spacing: 1em;
    display:block;
    text-transform: uppercase;
    font-size: 1rem;
}

div.ratesBRateFooterDisplay > ul{
    margin-bottom: 0;
}

.corner-container {
  position: fixed; /* Or absolute, depending on your needs */
  bottom: 20px; /* Adjust as desired for bottom corner */
  right: 20px;  /* Adjust as desired for right corner */
  /* For other corners, use top/left/right/bottom accordingly */
}

.hover-content {
  display: none; /* Hidden by default */
  background-color: lightblue;
  padding: 10px;
  border-radius: 5px;
  transition: opacity 0.3s ease-in-out; /* Smooth transition for opacity */
  opacity: 0; /* Initially transparent for opacity transition */
}

.corner-container:hover .hover-content {
  display: block; /* Show on hover */
  opacity: 1; /* Fully visible on hover */
}

/* Basic button styling */
.corner-button {
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}