:root {
  scroll-behavior: smooth;
}
body {
    --text-blue: #17989b;
    --bg-blue: #EEF6F6;
    --dark-blue: #0f1031;
    --web-white: #f8f8f8;
    --grey-blue: #e0edee;
    --dark-grey-blue: #add5d7;
    --primary: #45B1E8;
    --primary-dark: #0e232e;
    --primary-light: #c7e8f8;
    --primary-white: #ecf7fd;
    --primary-75: #A2D6F0;
    --primary-50: #E1F3FC;
    --primary-black: #071217;
    --primary-black-50: #808080;
    --secondary: #faaf3e;
    --secondary-dark: #32230c;
    --secondary-light: #feefd8;
    --primary-gradient: linear-gradient(95.48deg, #132A65 0.16%, #45B1E8 100%);
    --reverse-primary-gradient: linear-gradient(225deg, #132A65 0.16%, #45B1E8 100%);
    --grey-gloss: #2D2D2D66;
    --grey-line: #cfcfcf;
    --animation-speed: 0.3s;
    --spacing: 40px;
    --padding: 20px;
    --blue-gradient: linear-gradient(90deg, rgba(23, 49, 108, 1) 0%, rgba(66, 169, 225, 1) 100%);
    background-color: var(--web-white);
    color: var(--dark-blue);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

body:has(.submenu:hover) {
    #banner-swiper,
    #page-swiper{
        filter: blur(4px) !important;
        transition: filter 0.3s ease;
    }
}

@media screen and (max-width: 1199.98px) {
    body:has(.nav-blur-extended) {
        overflow: hidden !important;

        #banner-swiper {
            filter: blur(4px);
        }
    }
}

.large-text {
    font-size: 1.3em;
}
.larger-text {
    font-size: 2em;
}
.blue-text {
    color: var(--primary);
}
.small-spacing {
    --spacing: 25px;
}
.no-spacing {
    --spacing: 0px;
}
.content {
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-align: center;
    padding: 0 var(--spacing);
}
.content>*:not(:last-child) {
    margin-bottom: var(--spacing);
}
h1, h2, h3, h4
{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--dark-blue);
}
h2 {
    font-size: 28px;
}

img {
    object-fit: cover;
}
.section-header {
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 5px;
}
.blue-section {
    background: var(--primary-white);
    box-shadow: inset 0 0 16px -5px var(--primary-light);
}
.neumorphic-inset, .blue-section {
    background: linear-gradient(89.28deg, #EEF4F8 -1.22%, #E2F3FC 59.57%);
    box-shadow: -10px -10px 20px 0px #A9BFCA inset;
    box-shadow: 10px 10px 20px 0px #A0BECD inset;
}
.neuomorphic-outset {
}
.glass-background {
    backdrop-filter: blur(3px);
    background-color: #2D2D2D66;
}
.dark-bg {
    background-color: var(--dark-blue);
    color: var(--web-white);
    border: 1px solid var(--dark-blue);
    transition: background-color var(--animation-speed), color var(--animation-speed);
    .icon {
        transition: all var(--animation-speed);
    }
}
.button.dark-bg:hover {
    color: var(--dark-blue);
    background-color: transparent;
    .icon {
        filter: none;
    }
}
.light-blue-bg {
    background-color: var(--primary);
    color: var(--web-white);
    border: 1px solid var(--primary);
    transition: background-color var(--animation-speed), color var(--animation-speed), filter var(--animation-speed);
    .icon {
        transition: filter var(--animation-speed);
    }
}
.button.light-blue-bg:hover {
    color: var(--primary);
    background-color: transparent;
    .icon {
        filter: none;
    }
}
.semi-rounded {
    border-radius: 1em;
}
.rounded {
    border-radius: 2em;
}
.button {
    cursor: pointer;
}
.padding-large {
    padding: 2em 4em;
}
.padding {
    padding: 1em 2em;
}
.padding-small {
    padding: 0.6em 1.2em;
}
.padding-vertical-squash {
    padding: 0.3em 1em;
    &.semi-rounded {
        border-radius: 0.5em;
    }
}
main section {
    padding: 40px 0 40px 0;
}
.dark-gradient {
    background: black;
}
.dark-gradient img {
    -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 60%, rgba(0, 0, 0, 0.1) 100%);
    mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 60%, rgba(0, 0, 0, 0.1) 100%);;
}
strong {
    font-weight: bold !important;
}
.flex {
    display: flex;
}
.flex.centered {
    justify-content: center;
}
.flex-1 {
  flex: 1;
}
.w-100 {
  width: 100%;
}

.compact-horizontal-nav {
    display: flex;
    justify-content: center;
    column-gap: 30px;
}
.grid {
    display: grid;
}

/*PRICES*/
.price:before{
    content: "£";
    font-size: 1em;
    margin-right: 1px;
    display: inline-block;
}
.pp:after {
    content: "pp";
    font-size: 0.8em;
    margin-left: 1px;
    display: inline-block;
}
.old-price
{
    font-size: 0.7em;
    text-decoration: line-through;
}

@media (max-width: 768px){
    body {
        --spacing: 20px;
    }
    .small-spacing {
        --spacing: 10px;
    }
}
@media (max-width: 425px) {
    footer {
        margin-bottom: 60px;
    }
    #header {
        position: absolute;
    }
}

/*MEGA MENU*/
.mega-menu-header {
    display: flex;
    align-items: center;
    height: inherit;
    text-decoration: none;
    vertical-align: center;
    cursor: pointer;
}
/* SWIPER */
.swiper-slide {
    height: initial !important;
    display: flex;
}

.swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-button-disabled {
    opacity: 0;
}
.slider-bottom-btn a {
    border: 2px solid var(--grey-line);
    border-radius: 12px;
    font-weight: 400;
    align-items: center;
    display: inline-flex;
    gap: 0 12px;
    overflow: hidden;
    padding-left: 12px;
    text-align: center;
}
.prev {
    position: absolute;
    left: 0;
    filter: contrast(0.5);
    z-index: 10;
}
.prev:hover, .next:hover {
    filter: contrast(1);
}
.next {
    position: absolute;
    right: 0;
    filter: contrast(0.5);
    z-index: 10;
}
.white-next {
    z-index: 3;
    right: 10px;
    background-color: var(--web-white);
    mix-blend-mode: lighten;
    filter: none;
    border-radius: 1em;
    padding: 10px;
    .icon {
        inset: 0;
        margin: auto;
        position: absolute;
    }
}
.white-prev {
    z-index: 3;
    left: 10px;
    background-color: var(--web-white);
    mix-blend-mode: lighten;
    filter: none;
    border-radius: 1em;
    padding: 10px;
    .icon {
        inset: 0;
        margin: auto;
        position: absolute;
    }
}
@media (max-width: 780px){
    .swiper-button {
        display:none;
    }
}
.jump-link {
    scroll-margin-top: 150px;
}

.text-center {
  text-align: center;
}

.section-title {
  display: flex;
  align-items: center;
  padding: 15px 0 40px;
  margin-bottom: 0 !important;
}

.section-title h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 42px;
  text-align: left;
}

.section-title .icon {
  width: 47.49px;
  height: 47.49px;
}

hr {
  border-top: 1px solid #c8c9ca;
  width: 100%;
  display: block;
  margin: 15px 0;
}

@media (max-width: 768px) {
  .section-title {
    align-items: flex-start;
  }
}


/* form input field styles start */
.form .select2, .c-input {
    border-radius: 14.65px;
    border: 1px solid #404040;
    font-size: 12.56px;
    font-weight: 400;
    line-height: 18.83px;
    padding: 10px 16px;
    width: 100% !important;
    text-align: left;
    margin: 0;
}

.form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 33px !important;
}

.form .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}

.form input[type="checkbox"].checkbox {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    width: 16px;
    height: 16px;
    margin: 0 8px 0 0;
    padding: 0;
    border: 1px solid #404040;
    cursor: pointer;
    position: relative;
}

.form input[type="checkbox"].checkbox:checked {
    background-color: #404040;
    border-color: #404040;
}

.field-validation-error {
    font-size: 13px;
    color: #ff0000;
}

.form label {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    margin-bottom: 6px;
    display: block;
}

.form .select2-selection__arrow b {
    border-style: solid !important;
    border-width: 2px 2px 0 0 !important;
    border-color: var(--primary-black) !important;
    display: block;
    width: 7px !important;
    height: 7px !important;
    margin-top: -4px !important;
    transform: rotate(135deg);
}

.air-datepicker-cell {
    font-weight: 500 !important;    
}

.air-datepicker-cell.-selected- {
    background: var(--primary) !important;
}

.error-icon {
    font-size: 12px;
    color: red;
    font-weight: 300;
}
/* form input field styles end */

#burger-menu .cross-icon {
    background-color: var(--web-white) !important;
    width: 20px !important;
}
.honeypot {
    /*    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;*/
    display: none !important;
}
/*SUPERCHAT WIDGET*/
#superchat-widget {
    z-index: 99 !important;
}
@media (max-width: 481px){
    #superchat-widget-content-root {
        bottom: 40px;
    }
}
@media (max-width: 425px) {
    div#superchat-widget-content-root {
        margin-bottom: 52px;
    }
}
.grecaptcha-badge {
    display: none;
    visibility: hidden;
    position: fixed !important;
    bottom: 14px !important;
    left: 14px !important;
    right: auto !important;

    width: 69px !important;
    height: 70px !important;
    overflow: hidden !important;

    transition: width 0.3s ease-in-out !important;
    box-shadow: gray 0px 0px 5px !important;
    border-radius: 2px !important;
    z-index: 900;
}
.grecaptcha-badge:hover {
    width: 256px !important;
}

.grecaptcha-badge .rc-anchor-content,
.grecaptcha-badge .rc-anchor-logo,
.grecaptcha-badge iframe {
    display: block !important;
}
