@media (min-width: 1600px) { :root {
	--black: #1E1E1E;
	--white: #FFF;
	--dark-brown: #4A3F3A;
	--btn-primary-hover: #5E504A;
	--logo-color: #D1A985;
	--back: #F7F6F5;
	--white-dot: #FEFEFE;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

:root {
	--column-width: 1240px;
	--offset: calc(50% - (var(--column-width) / 2));
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: white;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-second);
}

body {
    font-family: 'Open Sans', sans-serif;
}

/* You can use Outfit for specific elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
	margin: 0;
}

h1,
.h1 {
	color: var(--black);
	font-family: 'Outfit', sans-serif;
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: 42px; /* 140% */
	text-transform: uppercase;
}

h2,
.h2 {
	color: var(--black, #1E1E1E);
	font-family: Outfit;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

.btn-primary {
	display: flex;
	padding: 14px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 12px;
	background: var(--dark-brown);
	color: var(--white);
	font-family: 'Outfit';
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 18px;
	border: none;
	outline: none;
	cursor: pointer;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
	color: var(--white) !important;
	background: var(--btn-primary-hover) !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}

.btn-secondary {
	display: flex;
	padding: 14px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 12px;
	background: var(--white, #FFF);
	color: var(--dark-brown, #4A3F3A);
	font-family: 'Outfit';
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 18px; /* 138.462% */
	border: 2px solid var(--dark-brown);
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
	color: #5D504A !important;
	border: 2px solid #5D504A !important;
	background: #e6e6e6 !important;
}

ul {
	padding-left: 20px;
	margin: 0;
}

p {
	margin-bottom: 6px;
}

p, li {
	color: var(--black, #1E1E1E);
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
}

input {
	color: var(--black);
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 20px; /* 153.846% */
	border: none;
	background: transparent;
	width: 100%;
}

input:focus {
    background-color: transparent;
    border: none;
    outline: none; /* To remove the default browser focus outline */
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
	background: transparent;
	padding: 0;
	margin: 35px 0;
}

.breadcrumb a {
	color: var(--black);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px; /* 153.846% */
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
	color: #828282;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px; /* 123.077% */
}

.breadcrumb svg {
    margin: 0 5px;
    vertical-align: middle;
}

.desktop {
	display: block;
}

.mobile {
	display: none !important;
}

.mb {
	margin-bottom: 110px !important;
}

.booking-form-input::-webkit-outer-spin-button,
.booking-form-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.booking-form-input[type="number"] {
    -moz-appearance: textfield;
}

/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 24px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.switch .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch .slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 2px;
	bottom: 2px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch input:checked + .slider {
	background-color: #4A3F3A;
}

.switch input:checked + .slider:before {
	-webkit-transform: translateX(20px);
	-ms-transform: translateX(20px);
	transform: translateX(20px);
}

/* Rounded sliders */
.switch .slider.round {
	border-radius: 34px;
}

.switch .slider.round:before {
	border-radius: 50%;
}
 

    .breadcrumbs {
        background: var(--color-back-and-stroke);
        margin-bottom: 40px;
        padding: 25px 0;
    }

    .breadcrumbs-inner {
        display: inline;
        list-style: none;
    }

    .breadcrumbs-item {
        display: inline;
    }

    .breadcrumbs-link {
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 20px;
        color: var(--color-grey);
        display: inline;
        text-decoration: none;
    }

    .breadcrumbs-link::after{
        content: ">";
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 20px;
        color: var(--color-grey);
        margin: 0 2.1px;
    }

    .breadcrumbs-last::after{
        display: none;
    }

    .breadcrumbs-last{
        color: var(--grey, #838383);
    }


 
    .logo {
        width: 76px;
        height: 50px;
        object-fit: contain;
    }

    .header-container {
        position: sticky;
        top: 0;
        background: white;
        z-index: 999;
    }

	header {
		padding: 14px 0;
	}

	.main-nav {
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: relative;
        padding: 5px 0;
	}

	.header-right {
		display: flex;
		gap: 90px;
		align-items: center;
	}

	.header-menu {
		display: flex;
		align-items: center;
		gap: 60px;
		list-style: none;
		margin: 0;
	}

	.header-menu li a {
		color: var(--black);
		font-size: 15px;
		font-style: normal;
		font-weight: 600;
		line-height: 16px; /* 114.286% */
	}

	.header-phone-img {
		width: 36px;
		height: 36px;
		object-fit: contain;
	}

	.phone-container {
		display: flex;
		align-items: center;
		gap: 23px;
		color: #1E1E1E !important;
		font-size: 15px;
		font-style: normal;
		font-weight: 600;
		line-height: 16px; /* 114.286% */
		text-decoration: none;
	}

 
/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /*visibility: hidden;*/
  display: none;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



 

    .success-modal-title {
        text-align: center;
        color: green;
    }

    .success-modal {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        padding: 30px;
        background: #fff;
        border-radius: 4px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    }
    .success-modal-close-btn {
        position: absolute;
        right: 10px;
        top: 10px;
        font-size: 20px;
        border: none;
        cursor: pointer;
    }

    /** Overlay */
    .overlay-success {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }

    /** JS */
    .is-visible {
        opacity: 1;
        pointer-events: auto;
    }


 

    .error-modal-title {
        text-align: center;
        color: red;
    }

    .error-modal {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        padding: 30px;
        background: #fff;
        border-radius: 4px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    }
    .error-modal-close-btn {
        position: absolute;
        right: 10px;
        top: 10px;
        font-size: 20px;
        border: none;
        cursor: pointer;
    }

    /** Overlay */
    .overlay-error {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }

    /** JS */
    .is-visible {
        opacity: 1;
        pointer-events: auto;
    }


 
    .footer-logo {
        width: 76px;
        height: 50px;
        object-fit: contain;
    }

    footer {
		padding: 60px 0 40px 0;
		background: #F8F9FB;
		margin-top: 110px;
	}

	.footer-inner {
		display: flex;
		justify-content: space-between;
		gap: 60px;
	}

	.footer-left {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.footer-rights-reserved {
		color: #828282 !important;
		font-size: 12px;
		font-style: normal;
		font-weight: 600;
		line-height: 16px; /* 145.455% */
		width: 150px;
	}

	.footer-right {
		display: flex;
		flex-direction: column;
		gap: 40px;
		width: 100%;
	}

	.footer-icon-row {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 16px;
	}

	.footer-icon-row-item {
		display: flex;
		padding: 10px 20px 10px 10px;
		align-items: center;
		gap: 14px;
		border-radius: 12px;
		border: 1px solid #E6E6E6;
		background: var(--white);
		color: var(--dark-brown);
		font-size: 13px;
		font-style: normal;
		font-weight: 600;
		line-height: 16px; /* 123.077% */
		width: auto;
		text-decoration: none;
	}

	.footer-icon-row-item:hover {
		color: var(--dark-brown);
	}

	.footer-row {
		display: flex;
		width: 100%;
		justify-content: space-between;
	}

	.footer-menu {
		display: flex;
		justify-content: space-between;
		gap: 120px;
	}

	.footer-menu-column {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.footer-menu-column-item {
		color: var(--black)  !important;
		font-size: 15px;
		font-style: normal;
		font-weight: 600;
		line-height: 16px; /* 114.286% */
		text-decoration: none;
	}

	.footer-menu-column-item:hover {
		text-decoration: underline;
	}

	.footer-btns {
		display: flex;
		gap: 20px;
		align-items: flex-start;
	}

	.footer-primary-btn {
		text-decoration: none;
		height: fit-content;
		border: 2px solid transparent;
	}

	.footer-primary-btn:hover {
		border: 2px solid transparent !important;
		text-decoration: none;
	}

	.footer-secondary-btn {
		text-decoration: none;
		height: fit-content;
	}

	.footer-secondary-btn:hover {
		text-decoration: none;
	}

 
    .breadcrumbs {
        margin-bottom: 0;
    }

    .terms-conditions-content {
        padding: 20px 0 100px 0;
    }

    .terms-text ul {
        padding: 15px 0 15px 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        font-family: Nunito Sans;
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px;
        color: var(--black, #111);
    }

    .terms-text h4 {
        font-family: Nunito Sans;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 27px;
        color: var(--black, #111);
        margin-top: 40px;
        margin-bottom: 12px;
    }

    .terms-text p {
        font-family: Nunito Sans;
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px;
        color: var(--black, #111);
    }

 }@media (max-width: 1600px) and (min-width: 1000px) { :root {
	--black: #1E1E1E;
	--white: #FFF;
	--dark-brown: #4A3F3A;
	--btn-primary-hover: #5E504A;
	--logo-color: #D1A985;
	--back: #F7F6F5;
	--white-dot: #FEFEFE;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

:root {
	--column-width: 86.1111vw;
	--offset: calc(50% - (var(--column-width) / 2));
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

.none {
	display: none;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: white;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-second);
}

body {
    font-family: 'Open Sans', sans-serif;
}

/* You can use Outfit for specific elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
	margin: 0;
}

h1,
.h1 {
	color: var(--black);
	font-family: 'Outfit', sans-serif;
	font-size: 2.0833vw;
	font-style: normal;
	font-weight: 700;
	line-height: 2.9167vw; /* 140% */
	text-transform: uppercase;
}

h2,
.h2 {
	color: var(--black, #1E1E1E);
	font-family: Outfit;
	font-size: 1.25vw;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

.btn-primary {
	display: flex;
	padding: 0.9722vw 1.6667vw;
	justify-content: center;
	align-items: center;
	gap: 0.6944vw;
	align-self: stretch;
	border-radius: 0.8333vw;
	background: var(--dark-brown);
	color: var(--white);
	font-family: 'Outfit';
	font-size: 0.9722vw;
	font-style: normal;
	font-weight: 700;
	line-height: 1.25vw;
	border: none;
	outline: none;
	cursor: pointer;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
	color: var(--white) !important;
	background: var(--btn-primary-hover) !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}

.btn-secondary {
	display: flex;
	padding: 0.9722vw 1.6667vw;
	justify-content: center;
	align-items: center;
	gap: 0.6944vw;
	border-radius: 0.8333vw;
	background: var(--white, #FFF);
	color: var(--dark-brown, #4A3F3A);
	font-family: 'Outfit';
	font-size: 0.9722vw;
	font-style: normal;
	font-weight: 700;
	line-height: 1.25vw; /* 138.462% */
	border: 2px solid var(--dark-brown);
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
	color: #5D504A !important;
	border: 2px solid #5D504A !important;
	background: #e6e6e6 !important;
}

ul {
	padding-left: 1.3889vw;
	margin: 0;
}

p {
	margin-bottom: 0.4167vw;
}

p, li {
	color: var(--black, #1E1E1E);
	font-size: 1.0417vw;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5972vw;
}

input {
	color: var(--black);
	font-family: "Open Sans", sans-serif;
	font-size: 0.9722vw;
	font-style: normal;
	font-weight: 600;
	line-height: 1.3889vw; /* 153.846% */
	border: none;
	background: transparent;
	width: 100%;
}

input:focus {
    background-color: transparent;
    border: none;
    outline: none; /* To remove the default browser focus outline */
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5556vw;
	background: transparent;
	padding: 0;
	margin: 2.4306vw 0;
}

.breadcrumb a {
	color: var(--black);
	font-size: 0.9722vw;
	font-style: normal;
	font-weight: 400;
	line-height: 1.3889vw; /* 153.846% */
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
	color: #828282;
	font-size: 0.9722vw;
	font-style: normal;
	font-weight: 400;
	line-height: 1.1111vw; /* 123.077% */
}

.breadcrumb svg {
    margin: 0 0.3472vw;
    vertical-align: middle;
}

.desktop {
	display: block;
}

.mobile {
	display: none !important;
}

.mb {
	margin-bottom: 7.6389vw !important;
}

.booking-form-input::-webkit-outer-spin-button,
.booking-form-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.booking-form-input[type="number"] {
    -moz-appearance: textfield;
}

/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 3.0556vw;
	height: 1.6667vw;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.switch .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch .slider:before {
	position: absolute;
	content: "";
	height: 1.3889vw;
	width: 1.3889vw;
	left: 2px;
	bottom: 2px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch input:checked + .slider {
	background-color: #4A3F3A;
}

.switch input:checked + .slider:before {
	-webkit-transform: translateX(20px);
	-ms-transform: translateX(20px);
	transform: translateX(20px);
}

/* Rounded sliders */
.switch .slider.round {
	border-radius: 2.3611vw;
}

.switch .slider.round:before {
	border-radius: 50%;
}
 

    .breadcrumbs {
        background: var(--color-back-and-stroke);
        margin-bottom: 2.7778vw;
        padding: 1.7361vw 0;
    }

    .breadcrumbs-inner {
        display: inline;
        list-style: none;
    }

    .breadcrumbs-item {
        display: inline;
    }

    .breadcrumbs-link {
        font-style: normal;
        font-weight: normal;
        font-size: 0.9722vw;
        line-height: 1.3889vw;
        color: var(--color-grey);
        display: inline;
        text-decoration: none;
    }

    .breadcrumbs-link::after{
        content: ">";
        font-style: normal;
        font-weight: normal;
        font-size: 0.9722vw;
        line-height: 1.3889vw;
        color: var(--color-grey);
        margin: 0 0.1458vw;
    }

    .breadcrumbs-last::after{
        display: none;
    }

    .breadcrumbs-last{
        color: var(--grey, #838383);
    }


 
    .logo {
        width: 5.2778vw;
        height: 3.4722vw;
        object-fit: contain;
    }

    .header-container {
        position: sticky;
        top: 0;
        background: white;
        z-index: 999;
    }

	header {
		padding: 0.9722vw 0;
	}

	.main-nav {
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: relative;
        padding: 0.3472vw 0;
	}

	.header-right {
		display: flex;
		gap: 6.25vw;
		align-items: center;
	}

	.header-menu {
		display: flex;
		align-items: center;
		gap: 4.1667vw;
		list-style: none;
		margin: 0;
	}

	.header-menu li a {
		color: var(--black);
		font-size: 1.0417vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.1111vw; /* 114.286% */
	}

	.header-phone-img {
		width: 2.5vw;
		height: 2.5vw;
		object-fit: contain;
	}

	.phone-container {
		display: flex;
		align-items: center;
		gap: 1.5972vw;
		color: #1E1E1E !important;
		font-size: 1.0417vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.1111vw; /* 114.286% */
		text-decoration: none;
	}

 
/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /*visibility: hidden;*/
  display: none;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 0.6944vw;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



 

    .success-modal-title {
        text-align: center;
        color: green;
    }

    .success-modal {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 41.6667vw;
        padding: 2.0833vw;
        background: #fff;
        border-radius: 0.2778vw;
        box-shadow: 0 3px 0.6944vw rgba(0,0,0,0.3);
    }
    .success-modal-close-btn {
        position: absolute;
        right: 0.6944vw;
        top: 0.6944vw;
        font-size: 1.3889vw;
        border: none;
        cursor: pointer;
    }

    /** Overlay */
    .overlay-success {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }

    /** JS */
    .is-visible {
        opacity: 1;
        pointer-events: auto;
    }


 

    .error-modal-title {
        text-align: center;
        color: red;
    }

    .error-modal {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 41.6667vw;
        padding: 2.0833vw;
        background: #fff;
        border-radius: 0.2778vw;
        box-shadow: 0 3px 0.6944vw rgba(0,0,0,0.3);
    }
    .error-modal-close-btn {
        position: absolute;
        right: 0.6944vw;
        top: 0.6944vw;
        font-size: 1.3889vw;
        border: none;
        cursor: pointer;
    }

    /** Overlay */
    .overlay-error {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }

    /** JS */
    .is-visible {
        opacity: 1;
        pointer-events: auto;
    }


 
    .footer-logo {
        width: 5.2778vw;
        height: 3.4722vw;
        object-fit: contain;
    }

    footer {
		padding: 4.1667vw 0 2.7778vw 0;
		background: #F8F9FB;
		margin-top: 7.6389vw;
	}

	.footer-inner {
		display: flex;
		justify-content: space-between;
		gap: 4.1667vw;
	}

	.footer-left {
		display: flex;
		flex-direction: column;
		gap: 1.3889vw;
	}

	.footer-rights-reserved {
		color: #828282 !important;
		font-size: 0.8333vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.1111vw; /* 145.455% */
		width: 10.4167vw;
	}

	.footer-right {
		display: flex;
		flex-direction: column;
		gap: 2.7778vw;
		width: 100%;
	}

	.footer-icon-row {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 1.1111vw;
	}

	.footer-icon-row-item {
		display: flex;
		padding: 0.6944vw 1.3889vw 0.6944vw 0.6944vw;
		align-items: center;
		gap: 0.9722vw;
		border-radius: 0.8333vw;
		border: 1px solid #E6E6E6;
		background: var(--white);
		color: var(--dark-brown);
		font-size: 0.9028vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.1111vw; /* 123.077% */
		width: auto;
		text-decoration: none;
	}

	.footer-icon-row-item:hover {
		color: var(--dark-brown);
	}

	.footer-row {
		display: flex;
		width: 100%;
		justify-content: space-between;
	}

	.footer-menu {
		display: flex;
		justify-content: space-between;
		gap: 8.3333vw;
	}

	.footer-menu-column {
		display: flex;
		flex-direction: column;
		gap: 1.3889vw;
	}

	.footer-menu-column-item {
		color: var(--black)  !important;
		font-size: 1.0417vw;
		font-style: normal;
		font-weight: 600;
		line-height: 1.1111vw; /* 114.286% */
		text-decoration: none;
	}

	.footer-menu-column-item:hover {
		text-decoration: underline;
	}

	.footer-btns {
		display: flex;
		gap: 1.3889vw;
		align-items: flex-start;
	}

	.footer-primary-btn {
		text-decoration: none;
		height: fit-content;
		border: 2px solid transparent;
	}

	.footer-primary-btn:hover {
		border: 2px solid transparent !important;
		text-decoration: none;
	}

	.footer-secondary-btn {
		text-decoration: none;
		height: fit-content;
	}

	.footer-secondary-btn:hover {
		text-decoration: none;
	}

 
    .breadcrumbs {
        margin-bottom: 0;
    }

    .terms-conditions-content {
        padding: 1.3889vw 0 6.9444vw 0;
    }

    .terms-text ul {
        padding: 1.0417vw 0 1.0417vw 1.3889vw;
        display: flex;
        flex-direction: column;
        gap: 0.5556vw;
        font-family: Nunito Sans;
        font-size: 1.1806vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.875vw;
        color: var(--black, #111);
    }

    .terms-text h4 {
        font-family: Nunito Sans;
        font-size: 1.25vw;
        font-style: normal;
        font-weight: 700;
        line-height: 1.875vw;
        color: var(--black, #111);
        margin-top: 2.7778vw;
        margin-bottom: 0.8333vw;
    }

    .terms-text p {
        font-family: Nunito Sans;
        font-size: 1.1806vw;
        font-style: normal;
        font-weight: 400;
        line-height: 1.875vw;
        color: var(--black, #111);
    }

 }@media (min-width: calc(494px)) and (max-width: calc(1000px)) {
            body {
                --coef-w: calc(var(--width) / -910 + 1.3771);
                --offset: calc(4.6875vw * ((320 - 320 * var(--coef-w) + 30 * var(--coef-w)) / 30));
                --column-width: calc( (1px * var(--width)) - (2 * var(--offset)) );
            }
        }

        @media (max-width: calc(494px)) {
            body {
                --coef-w: 1;
                --column-width: 90.625vw;
                --offset: calc(50% - (var(--column-width) / 2));
            }
        }
        @media (max-width: 1000px) { :root {
	--column-width: calc(90.625vw * var(--coef-w));
	--offset: calc(4.6875vw * var(--coef-w));

    --black: #1E1E1E;
	--white: #FFF;
	--dark-brown: #4A3F3A;
	--btn-primary-hover: #5E504A;
	--logo-color: #D1A985;
	--back: #F7F6F5;
	--white-dot: #FEFEFE;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

body, input, textarea, select {
    font-family: 'Open Sans', sans-serif;
	-webkit-text-size-adjust: none;
}

img, svg {
	max-width: 100%;
	display: block;
}

* {
	box-sizing: border-box;
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance:none;
}

body, dl, dt, dd, ul, ol, li, form, table, tr, td, h1, h2, h3, h4, h5, h6, pre, p, span, b, i, input, textarea, fieldset {
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
	margin: 0;
}

.mb {
    margin-bottom: calc(18.75vw * var(--coef-w)) !important;
}

h1,
.h1 {
    font-size: calc(6.25vw * var(--coef-w));
    line-height: calc(7.8125vw * var(--coef-w));
    color: var(--black);
    font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
}


.none {
	display: none;
}

.fade-out {
	opacity: 1;
	transition: 0.3s;
	pointer-events: auto;
}

.fade-out.active {
	opacity: 0;
	pointer-events: none;
}

.fade-in {
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}

.fade-in.active {
	opacity: 1;
	pointer-events: auto;
}

.container {
	padding-left: var(--offset);
	padding-right: var(--offset);
}

.container-offset {
	width: var(--column-width);
	margin-left: auto;
	margin-right: auto;
}

img[srcset] {
    object-fit: scale-down !important;
    object-position: center !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: white;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

#loader.active {
    opacity: 1;
    pointer-events: auto;
}

#loader path {
    fill: var(--color-second);
}

.h1 {
	color: var(--black);
	font-family: 'Outfit', sans-serif;
	font-size: calc(9.375vw * var(--coef-w));
	font-style: normal;
	font-weight: 700;
	line-height: calc(13.125vw * var(--coef-w)); /* 140% */
	text-transform: uppercase;
}

h2,
.h2 {
	color: var(--black, #1E1E1E);
	font-family: Outfit;
	font-size: calc(5.625vw * var(--coef-w));
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

.btn-primary {
	display: flex;
	padding: calc(4.375vw * var(--coef-w)) calc(7.5vw * var(--coef-w));
	justify-content: center;
	align-items: center;
	gap: calc(3.125vw * var(--coef-w));
	align-self: stretch;
	border-radius: calc(3.75vw * var(--coef-w));
	background: var(--dark-brown);
	color: var(--white);
	font-family: 'Outfit';
	font-size: calc(4.0625vw * var(--coef-w));
	font-style: normal;
	font-weight: 700;
	line-height: calc(5.625vw * var(--coef-w));
	border: none;
	outline: none;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
	color: var(--white) !important;
	background: var(--btn-primary-hover) !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}

.btn-secondary {
	display: flex;
	padding: calc(4.375vw * var(--coef-w)) calc(7.5vw * var(--coef-w));
	justify-content: center;
	align-items: center;
	gap: calc(3.125vw * var(--coef-w));
	border-radius: calc(3.75vw * var(--coef-w));
	background: var(--white, #FFF);
	color: var(--dark-brown, #4A3F3A);
	font-family: 'Outfit';
	font-size: calc(4.0625vw * var(--coef-w));
	font-style: normal;
	font-weight: 700;
	line-height: calc(5.625vw * var(--coef-w)); /* 138.462% */
	border: 2px solid var(--dark-brown);
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover {
	color: #5D504A !important;
	border: 2px solid #5D504A !important;
	background: #e6e6e6 !important;
}

ul {
	padding-left: calc(6.25vw * var(--coef-w));
	margin: 0;
}

p {
	margin-bottom: calc(1.875vw * var(--coef-w));
}

p, li {
	color: var(--black, #1E1E1E);
	font-size: calc(4.375vw * var(--coef-w));
	font-style: normal;
	font-weight: 400;
	line-height: calc(7.1875vw * var(--coef-w));
}

input {
	color: var(--black);
	font-family: "Open Sans", sans-serif;
	font-size: calc(4.0625vw * var(--coef-w));
	font-style: normal;
	font-weight: 600;
	line-height: calc(6.25vw * var(--coef-w)); /* 153.846% */
	border: none;
	background: transparent;
	width: 100%;
}

input:focus {
    background-color: transparent;
    border: none;
    outline: none; /* To remove the default browser focus outline */
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: calc(2.5vw * var(--coef-w));
	background: transparent;
	padding: 0;
	margin: calc(10.9375vw * var(--coef-w)) 0;
}

.breadcrumb a {
	color: var(--black);
	font-size: calc(4.0625vw * var(--coef-w));
	font-style: normal;
	font-weight: 400;
	line-height: calc(6.25vw * var(--coef-w)); /* 153.846% */
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
	color: #828282;
	font-size: calc(4.0625vw * var(--coef-w));
	font-style: normal;
	font-weight: 400;
	line-height: calc(5vw * var(--coef-w)); /* 123.077% */
}

.breadcrumb svg {
    margin: 0 calc(1.5625vw * var(--coef-w));
    vertical-align: middle;
}

.desktop {
	display: none !important;
}

.mobile {
	display: block;
}

.mb {
	margin-bottom: calc(18.75vw * var(--coef-w)) !important;
}

.booking-form-input::-webkit-outer-spin-button,
.booking-form-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.booking-form-input[type="number"] {
    -moz-appearance: textfield;
}

/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: calc(13.75vw * var(--coef-w));
	height: calc(7.5vw * var(--coef-w));
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.switch .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch .slider:before {
	position: absolute;
	content: "";
	height: calc(6.25vw * var(--coef-w));
	width: calc(6.25vw * var(--coef-w));
	left: 2px;
	bottom: 3px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch input:checked + .slider {
	background-color: #4A3F3A;
}

.switch input:checked + .slider:before {
	-webkit-transform: translateX(28px);
	-ms-transform: translateX(28px);
	transform: translateX(28px);
}

/* Rounded sliders */
.switch .slider.round {
	border-radius: calc(10.625vw * var(--coef-w));
}

.switch .slider.round:before {
	border-radius: 50%;
}
 

    .breadcrumbs {
        background: var(--color-back-and-stroke);
        margin-bottom: calc(7.8125vw * var(--coef-w));
        padding: calc(2.1875vw * var(--coef-w)) 0;
    }

    .breadcrumbs-inner {
        display: inline;
        list-style: none;
    }

    .breadcrumbs-item {
        display: inline;
    }

    .breadcrumbs-link {
        font-style: normal;
        font-weight: normal;
        font-size: calc(3.75vw * var(--coef-w));
        line-height: calc(5vw * var(--coef-w));
        color: var(--color-grey);
        display: inline;
        text-decoration: none;
    }

    .breadcrumbs-link::after{
        content: ">";
        font-style: normal;
        font-weight: normal;
        font-size: calc(3.75vw * var(--coef-w));
        line-height: calc(5vw * var(--coef-w));
        color: var(--color-grey);
        margin: 0 calc(0.7813vw * var(--coef-w));
    }

    .breadcrumbs-last::after{
        display: none;
    }

    .breadcrumbs-last{
        color: var(--grey, #838383);
    }


 
    .logo {
        width: calc(23.75vw * var(--coef-w));
        height: calc(15.625vw * var(--coef-w));
        object-fit: contain;
    }

    .header-container {
        position: sticky;
        top: 0;
        background: white;
        z-index: 999;
    }

    .burger-menu {
		display: none;
		width   : calc(6.25vw * var(--coef-w));
		height  : calc(4.375vw * var(--coef-w));
		cursor  : pointer;
		position: relative;
	}

	.burger-menu span {
		background-color: black;
		height          : 2px;
		position        : absolute;
		width           : 100%;
		left            : 0;
		transition      : all 0.3s ease;
		border-radius   : calc(3.125vw * var(--coef-w));
	}

	.burger-menu span:first-child {
		top: 0;
	}

	.burger-menu span:nth-child(2) {
		top: calc(1.875vw * var(--coef-w));
	}

	.burger-menu span:last-child {
		top: calc(3.75vw * var(--coef-w));
	}

	.burger-menu.active span:first-child,
	.burger-menu.active span:last-child {
		top             : calc(1.875vw * var(--coef-w));
	}

	.burger-menu.active span:nth-child(2) {
		opacity: 0;
	}

	.burger-menu.active span:first-child {
		transform: rotate(45deg);
	}

	.burger-menu.active span:last-child {
		transform: rotate(-45deg);
	}

    .mobile-menu {
        display: block;
        position: absolute;
        top: calc(17.1875vw * var(--coef-w));
        right: 0;
        background-color: #fff;
        width: 100%;
        height: fit-content;
        padding: calc(6.25vw * var(--coef-w)) 0;
        text-align: left;
        transition: opacity 0.6s ease, visibility 0.6s ease;
        opacity: 0;
        visibility: hidden;
        z-index: 100;
    }

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

    .header-menu {
		display: flex;
        flex-direction: column;
        gap: calc(6.25vw * var(--coef-w));
        align-items: flex-start;
		list-style: none;
		margin: 0;
        margin-bottom: calc(7.8125vw * var(--coef-w));
        padding: 0;
    }

	.header-menu li a {
		color: var(--black);
		font-size: calc(4.375vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(5vw * var(--coef-w)); /* 114.286% */
	}

	.header-phone-img {
		width: calc(11.25vw * var(--coef-w));
		height: calc(11.25vw * var(--coef-w));
		object-fit: contain;
	}

	.phone-container {
		display: flex;
		align-items: center;
		gap: calc(7.1875vw * var(--coef-w));
		color: #1E1E1E !important;
		font-size: calc(4.375vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(5vw * var(--coef-w)); /* 114.286% */
		text-decoration: none;
	}

    .burger-menu {
        display: block;
    }

    .header-right {
        flex-direction: column;
    }

	.main-nav {
		display: flex;
		align-items: center;
		justify-content: space-between;
        padding: calc(1.5625vw * var(--coef-w)) 0;
		/*position: relative;*/
	}

 
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /*visibility: hidden;*/
  display: none;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: calc(3.125vw * var(--coef-w));
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


 
   .success-modal-title {
        text-align: center;
        color: green;
    }

    .success-modal {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(93.75vw * var(--coef-w));
        padding: calc(9.375vw * var(--coef-w));
        background: #fff;
        border-radius: calc(1.25vw * var(--coef-w));
        box-shadow: 0 3px calc(3.125vw * var(--coef-w)) rgba(0,0,0,0.3);
    }
    .success-modal-close-btn {
        position: absolute;
        right: calc(3.125vw * var(--coef-w));
        top: calc(3.125vw * var(--coef-w));
        font-size: calc(6.25vw * var(--coef-w));
        border: none;
        cursor: pointer;
    }

    /** Overlay */
    .overlay-success {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }

    /** JS */
    .is-visible {
        opacity: 1;
        pointer-events: auto;
    }

 
   .error-modal-title {
        text-align: center;
        color: red;
    }

    .error-modal {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(93.75vw * var(--coef-w));
        padding: calc(9.375vw * var(--coef-w));
        background: #fff;
        border-radius: calc(1.25vw * var(--coef-w));
        box-shadow: 0 3px calc(3.125vw * var(--coef-w)) rgba(0,0,0,0.3);
    }
    .error-modal-close-btn {
        position: absolute;
        right: calc(3.125vw * var(--coef-w));
        top: calc(3.125vw * var(--coef-w));
        font-size: calc(6.25vw * var(--coef-w));
        border: none;
        cursor: pointer;
    }

    /** Overlay */
    .overlay-error {
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }

    /** JS */
    .is-visible {
        opacity: 1;
        pointer-events: auto;
    }

 
    .footer-logo {
        width: calc(23.75vw * var(--coef-w));
        height: calc(15.625vw * var(--coef-w));
        object-fit: contain;
    }

    footer {
		padding: calc(18.75vw * var(--coef-w)) 0 calc(12.5vw * var(--coef-w)) 0;
		background: #F8F9FB;
		margin-top: calc(34.375vw * var(--coef-w));
	}

	.footer-inner {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
        gap: calc(6.25vw * var(--coef-w));
	}

	.footer-left {
		display: flex;
		flex-direction: column;
		gap: calc(6.25vw * var(--coef-w));
	}

	.footer-rights-reserved {
		color: #828282 !important;
		font-size: calc(3.4375vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(5vw * var(--coef-w)); /* 145.455% */
		width: calc(46.875vw * var(--coef-w));
	}

	.footer-right {
		display: flex;
		flex-direction: column;
		gap: calc(12.5vw * var(--coef-w));
		width: 100%;
	}

	.footer-icon-row {
		width: 100%;
		display: flex;
        flex-direction: column;
        gap: calc(3.75vw * var(--coef-w));
	}

	.footer-icon-row-item {
		display: flex;
		padding: calc(3.125vw * var(--coef-w)) calc(6.25vw * var(--coef-w)) calc(3.125vw * var(--coef-w)) calc(3.125vw * var(--coef-w));
		align-items: center;
		gap: calc(4.375vw * var(--coef-w));
		border-radius: calc(3.75vw * var(--coef-w));
		border: 1px solid #E6E6E6;
		background: var(--white);
		color: var(--dark-brown);
		font-size: calc(4.0625vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(5vw * var(--coef-w)); /* 123.077% */
		width: auto;
		text-decoration: none;
	}

	.footer-icon-row-item:hover {
		color: var(--dark-brown);
	}

	.footer-row {
		display: flex;
		width: 100%;
		justify-content: space-between;
        flex-direction: column;
        gap: calc(9.375vw * var(--coef-w));
	}

	.footer-menu {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
        gap: calc(6.25vw * var(--coef-w));
	}

	.footer-menu-column {
		display: flex;
		flex-direction: column;
		gap: calc(6.25vw * var(--coef-w));
	}

	.footer-menu-column-item {
		color: var(--black)  !important;
		font-size: calc(4.375vw * var(--coef-w));
		font-style: normal;
		font-weight: 600;
		line-height: calc(5vw * var(--coef-w)); /* 114.286% */
		text-decoration: none;
	}

	.footer-menu-column-item:hover {
		text-decoration: underline;
	}

	.footer-btns {
		display: flex;
		gap: calc(6.25vw * var(--coef-w));
		align-items: flex-start;
	}

	.footer-primary-btn {
		text-decoration: none;
		height: fit-content;
		border: 2px solid transparent;
	}

	.footer-primary-btn:hover {
		border: 2px solid transparent !important;
		text-decoration: none;
	}

	.footer-secondary-btn {
		text-decoration: none;
		height: fit-content;
	}

	.footer-secondary-btn:hover {
		text-decoration: none;
	}

 
    .breadcrumbs {
        margin-bottom: 0;
    }

    .terms-conditions-content {
        padding: calc(6.25vw * var(--coef-w)) 0 calc(31.25vw * var(--coef-w)) 0;
    }

    .terms-text ul {
        padding: calc(3.75vw * var(--coef-w)) 0 calc(3.75vw * var(--coef-w)) calc(6.25vw * var(--coef-w));
        display: flex;
        flex-direction: column;
        gap: calc(2.5vw * var(--coef-w));
        font-family: Nunito Sans;
        font-size: calc(4.375vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(6.875vw * var(--coef-w));
    }

    .terms-text h4 {
        font-family: Nunito Sans;
        font-size: calc(4.6875vw * var(--coef-w));
        font-style: normal;
        font-weight: 700;
        line-height: calc(7.1875vw * var(--coef-w));
        margin-top: calc(9.375vw * var(--coef-w));
        margin-bottom: calc(2.5vw * var(--coef-w));
    }

    .terms-text p {
        font-family: Nunito Sans;
        font-size: calc(4.375vw * var(--coef-w));
        font-style: normal;
        font-weight: 400;
        line-height: calc(6.875vw * var(--coef-w));
    }

 }