/* Fonts */
@font-face {
  font-family: "Benton Sans";
  src: url("/sales_assets/fonts/BentonSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benton Mod Display";
  src: url("/sales_assets/fonts/BentonModDisp-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benton Sans Compressed";
  src: url("/sales_assets/fonts/BentonSansComp-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benton Sans Condensed";
  src: url("/sales_assets/fonts/BentonSansCond-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Benton Sans Extra Compressed";
  src: url("/sales_assets/fonts/BentonSansExtraComp-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* variables */
:root {
  --red: #FE646F;
  --navy: #011B3D;
  --white: #FFFFFF;
  --cream: #EEEDEA;
  --black: #000000;
  --blue: #0187E8;
  --grey: #2A2A2A;
  --error: #B42318;
  --transition: all 0.6s ease;
}

/* general */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  font-family: "Benton Sans", sans-serif;
  color: var(--black);
  background-color: var(--white);
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0 !important;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  opacity: 0.8;
}
/* Section animations */
section, section .row {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
section.in-view, section .row.in-view {
  opacity: 1;
  transform: translateY(0);
}
section.nav, section.nav .row, section.header, section.header .row, section#section-ads, section#section-ads .row {
  opacity: 1 !important;
  transform: unset !important;
}
section.footer {
  opacity: 1 !important;
  transform: none !important;
}
section.footer .row {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
section.footer .row.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* general */
.title h3 {
  font-family: "Benton Mod Display", sans-serif;
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-wrap: balance;
}
.title p {
  font-size: 16px;
  line-height: 1.1;
  max-width: 95%;
  color: var(--grey);
}
/* header */
.header {
  min-height: 100svh;
  /*background: url('/sales_assets/img/header.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;*/
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: 200px 0;
}
.header::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}
.header video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.header .nav {
  background: linear-gradient(0deg,rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.3) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px 60px 100px;
  z-index: 33;
}
.header .nav .logo {
  margin: 0 0 0 auto;
  height: 40px;
  filter: brightness(0) invert(1);
}
.header .container {
  position: relative;
  z-index: 33;
}
.header-txt {
  margin-bottom: 40px;
}
.header-txt h1 {
  font-family: "Benton Mod Display", sans-serif;
  font-size: clamp(20px, 4vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}
.header-txt p {
  font-family: "Benton Sans Extra Compressed", sans-serif;
  font-size: clamp(16px, 4vw, 26px);
  line-height: 1;
  margin-top: 20px;
}
.scroll-down {
  height: 40px;
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  cursor: pointer;
  transition: var(--transition);
  z-index: 33;
}
.scroll-down:hover {
  transform: translateX(-50%) scale(1.05);
}
/* Progress bar */
.progressBar {
  width: 100%;
  background-color: #f1f1f1;
}
.progressBar div {
  height: 2px;
  width: 0;
  background-color: var(--black);
}
/* form */
#contactform{
  width: 100%;
  max-width: 550px;
  min-height: 400px;
  margin: 0 0 0 auto;
  background: var(--white);
  color: var(--black);
  border-radius: 0px;
  text-align: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 40px 30px 40px 30px;
  position: relative;
  z-index: 99;
}
#contactform h3 {
  font-size: 28px;
  text-transform: uppercase;
  font-family: "Benton Sans Compressed", sans-serif;
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: -10px;
}
#contactform h6 {
  font-size: 13px;
  line-height: 1.1;
  margin: 5px 0 50px 0;
  text-wrap: balance;
}
.form-step {
  display: none;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  width: 100%;
  gap: 20px 0;
}

.form-step.active {
  display: flex;
}
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.form-nav h4 {
  color: var(--black);
  font-family: "Benton Sans Compressed", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}
#contactform h5 {
  color: #808080;
  font-family: "Benton Sans Compressed", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}
.form-crtl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
}
.form-crtl button {
  background: transparent;
  border: none;
  transition: var(--transition);
}
.form-crtl button img {
  filter: brightness(0);
  height: 25px;
}
.form-crtl button.next img {
  transform: rotate(180deg);
}
.form-crtl button:hover {
  transform: scale(1.1);
}
.form-crtl button.next.off, .form-crtl button.prev.off {
  opacity: 0.5;
  pointer-events: none;
}
.form-step p {
  color: #999999;
  line-height: 1.6;
  font-size: 12px;
  text-wrap: balance;
  width: 100%;
  max-width: 350px;
}
.form-input-box, .form-input-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.form-input-box {
  margin: 15px 0;
}
.custom-number-input, .input-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px 0;
  width: 45%;
}
.counter-input-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
}
.counter-input-group button {
  background: transparent;
  border: none;
  padding: 0;
}
.counter-input-group button img {
  height: 20px;
  aspect-ratio: 1;
}
.custom-number-input label {
  font-size: 16px;
}
.counter-input-group input {
  width: 40px;
  height: 25px;
  border: none;
  font-family: "Benton Mod Display";
  font-size: 30px;
  line-height: 25px;
  text-align: center;
  text-transform: uppercase;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button
 {
  -webkit-appearance: none;
  appearance: none;
}
input[type="number"]::-moz-inner-spin-button,
input[type="number"]::-moz-outer-spin-button {
  -moz-appearance: none;
  appearance: none;
}
input[type="number"]::-ms-inner-spin-button,
input[type="number"]::-ms-outer-spin-button {
  -ms-appearance: none;
  appearance: none;
}
.radio-opt {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 40px;
}
.radio-opt .line {
  height: auto;
  width: 1px;
  background: var(--black);
}
.radio-button {
  width: 45%;
}
.radio-button input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-button label {
  background: transparent;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 230px;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--black);
  font-family: "Benton Sans Condensed", sans-serif;
  flex-direction: column;
  gap: 30px 0;
  text-transform: uppercase;
  font-size: 16px;
}
.radio-button label img {
  margin: 0;
  width: 70px;
}
.radio-opt-normal .radio-button label {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 10px;
}
.radio-button label:hover {
  transform: scale(1.05);
}
.radio-std {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  gap: 20px 0;
  margin-top: 30px;
}
.radio-std .radio-button label {
  width: 100%;
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0 10px;
  text-align: left;
}
.radio-std .radio-button label span {
  width: 17px;
  height: 17px;
  aspect-ratio: 1;
  border-radius: 40px;
  border: 1px solid var(--black);
  position: relative;
  margin-top: -2px;
}
.radio-std .radio-button label span::before {
  content: '';
  width: 7.5px;
  height: 7.5px;
  aspect-ratio: 1;
  border-radius: 30px;
  background: var(--black);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
  opacity: 0;
}
.radio-std .radio-button label:hover {
  transform: scale(1);
}
.radio-std .radio-button label:hover span::before, .radio-button input[type="radio"]:checked + label span::before {
  opacity: 1;
}
.form-input {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin: 10px 0;
  gap: 10px 0;
}
.last-step-inputs {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  gap: 20px;
}
.last-step-inputs > div {
  width: 45%;
}
.last-step-inputs > div:nth-child(3) {
  width: 100%;
}
.last-step-inputs > div input {
  width: 100%;
  max-width: 100%;
}
#step-6 h6 {
  margin: 0;
  font-size: 14px;
  max-width: 80%;
}
.form-input label {
  text-align: left;
  margin: 0 0 5px 0;
  font-size: 16px;
  line-height: 1;
  width: 280px;
  max-width: 100%;
}
.form-input input, .input-box input {
  width: 100%;
  max-width: 200px;
  height: 40px;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid var(--black);
  font-size: 16px;
  color: var(--black) !important;
  font-weight: 400 !important;
  padding: 0;
  -webkit-appearance: none;
  text-align: left !important;
  line-height: 1;
}
.form-input input:focus-visible, .input-box input:focus-visible, .counter-input-group input:focus-visible {
  outline: none !important;
}
::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
#year {
  background-image: url('/sales_assets/img/icons/calander.svg');
  background-position: 0% 40%;
  background-size: 18px;
  background-repeat: no-repeat;
  padding-left: 25px;
}
#value {
  background-image: url('/sales_assets/img/icons/euro.svg');
  background-position: 0% 40%;
  background-size: 13px;
  background-repeat: no-repeat;
  padding-left: 25px;
}
.form-input input.error, .input-box input.error {
  border-bottom: 1px solid var(--red);
}
.form-input input.valid, .input-box input.valid {
  border-bottom: 1px solid var(--black);
}
.form-check {
  text-align: left;
  padding: 0;
  margin-top: 5px;
  max-width: 55%;
}
.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: #4D4D4D;
  font-size: 8px;
  font-weight: 400;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--black);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--black);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: 0px;
  font-size: 14px;
}
#politica-link {
  color: var(--black);
  text-decoration: none;
}
#politica-link:hover {
  color: var(--blue);
  text-decoration: underline;
}
label.error, #terms-error {
  width: 100%;
  text-align: left;
  font-size: 9px;
  color: var(--red);
  font-weight: 400;
  padding: 0;
  margin: 10px 0 0 0;
  line-height: 1;
  display: none;
}
#step-1 label.error {
  text-align: center;
}
.form-button {
  width: 170px;
  height: 45px;
  border-radius: 0px;
  border: 1px solid var(--black);
  font-size: 15px;
  text-transform: uppercase;
  line-height: 1;
  font-family: "Benton Sans Compressed", sans-serif;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
}
.form-button:hover {
  transform: scale(1.05);
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}
.form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
}
/* section 1 */
.section1 {
  padding: 150px 0;
}
.section1 .title {
  width: 100%;
  max-width: 430px;
}
.gallery-box {
  position: relative;
  margin-top: 150px;
}
.gallery-crtl {
  position: absolute;
  right: 12%;
  bottom: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 40px;
  z-index: 33;
}
.gallery-crtl img {
  height: 25px;
  transition: var(--transition);
  cursor: pointer;
}
.gallery-prev:hover {
  transform: scale(1.2);
}
.gallery-next {
  transform: rotate(180deg);
}
.gallery-next:hover {
  transform: scale(1.2) rotate(180deg);
}
.gallery-img {
  width: 100%;
  max-width: 600px;
  min-height: 670px;
  background-size: cover !important;
  background-repeat: no-repeat !important;  
  background-position: center !important;
}
.gallery-txt h6 {
  font-family: "Benton Mod Display", sans-serif;
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 50px 0 15px 0;
}
.gallery-txt p {
  font-family: "Benton Sans Compressed", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  text-wrap: balance;
}
/* section2 */
.section2 {
  padding: 0 0 150px 0;
}
.section2 .title p {
  max-width: 675px;
}
.book {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.ebook {
  height: 450px;
  margin-top: -10px;
  margin-left: -30px;
}
.popupOpen {
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
  border: 1px solid var(--black);
  padding: 0 30px;
  min-width: 200px;
  height: 55px;
  font-size: 20px;
  font-family: "Benton Sans Extra Compressed", sans-serif;
  line-height: 1;
  margin-top: 10px;
  color: var(--black);
  transition: var(--transition);
}
.popupOpen img {
  width: 15px;
  transform: rotate(-90deg);
  filter: brightness(0);
  transition: var(--transition);
  margin-top: -5px;
}
.popupOpen:hover {
  background: var(--black);
  color: var(--white);
}
.popupOpen:hover img {
  filter: brightness(0) invert(1);
}
/* full width img */
.divider-img {
  background: url('/sales_assets/img/pool.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 610px;
}
/* section3 */
.section3 {
  padding: 150px 0;
}
.section3 .title h3 {
  margin-bottom: 20px;
}
.section3 .title h6 {
  font-family: "Benton Sans Condensed", sans-serif;
  font-size: 15px
  font-weight: 400;
  line-height: 1.1;
  text-wrap: balance;
  text-transform: uppercase;
}
.know-more {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0 50px;
}
.more-info {
  width: 31%;
}
.more-info h6 {
  font-size: 18px;
  font-family: "Benton Sans Condensed";
  margin: 0 0 20px 0;
  text-transform: uppercase;
}
.more-info p {
  line-height: 1.2;
  font-size: 15px;
  max-width: 90%;
}
/* footer */
.footer {
  padding: 60px 0;
  background: #111111;
  color: var(--white);
}
.footer img, .footer svg {
  filter: brightness(0) invert(1);
}
.bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.footer_link_box {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0 20px;
  padding: 50px 0;
}
.list1, .list2, .list3 {
  width: fit-content;
  padding: 0 40px;
}
.footer__links {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  list-style: none;
  gap: 16px 0;
  margin: 0;
  padding: 0;
}
.list1 .footer__links:last-of-type {
  margin-top: 40px;
}
.footer__links li {
  line-height: 1;
  margin: 0;
  font-size: 14px;
  cursor: pointer;
}
.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5.5rem;
}
.footer__social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 10px;
}
.footer__social-link {
  color: var(--white);
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 25px;
}
.footer__social-link img {
  width: 45px;
  height: 45px;
  aspect-ratio: 1;
  transition: var(--transition);
  cursor: pointer;
}
.footer__social-link img:hover {
  transform: scale(1.2);
  color: rgba(255, 255, 255, 0.5);
}
.footer__languages {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.footer__globe {
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  color: var(--white);
}
.footer__globe svg {
  width: 100%;
  height: 100%;
}
.footer__links__lang {
  display: inline-flex;
  list-style: none;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  line-height: 1;
  color: var(--white);
  margin: 0;
}
.footer__links__lang li {
  opacity: 1;
  padding: 0 15px;
  border-right: 1px solid var(--white);
  transition: var(--transition);
}
.footer__links__lang li:last-of-type {
  border: none;
}
.footer__links__lang li:hover {
  opacity: 0.5;
}
.footer__credit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer__back-to-top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-none);
  background: transparent;
  font-size: 16px;
  color: var(--white);
  line-height: 1;
  transition: var(--transition);
}
.footer__back-to-top:hover {
  background: var(--white);
  color: var(--black);
}
/* popup form */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup-content {
  background-color: var(--white);
  padding: 50px 40px;
  width: 95%;
  max-width: 550px;
  border-radius: 0px;
  text-align: left;
  position: relative;
}
.popup-content h5 {
  text-align: left;
  font-size: 24px;
  text-transform: uppercase;
  font-family: "Benton Sans Compressed", sans-serif;
  line-height: 1.1;
  text-wrap: balance;
}
#eBookform .form-input input, .input-box input {
  max-width: 90%;
}
#eBookform .form-input > div {
  width: 100%;
  text-align: left;
}
#eBookform .form-check {
  max-width: 90%;
  margin: 20px 0 20px 0;
}
.eBookformCta {
  width: 100%;
  text-align: center;
}
#eBookform .form-button {
  margin: 0 auto;
}
.popup-content hr {
  opacity: 1;
  margin: 25px auto;
  background: var(--black);
  height: 1px;
  width: 100%;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 45px;
  font-weight: 400;
  font-family: "Benton Mod Display", sans-serif;
  cursor: pointer;
  color: var(--black);
  transition: var(--transition);
}
.close-btn:hover {
  transform: scale(1.05);
}
/* section ads */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* messages */
.message-box {
  background: var(--white);
  text-align: left;
  color: var(--black);
  padding: 30px 40px;
  min-height: 250px;
  width: 95%;
  max-width: 530px;
  margin: 0 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px 0;
  text-wrap: balance;
}
.message-box h3 {
  font-family: "Benton Sans Compressed", sans-serif;
  font-size: 32px;
  line-height: 1;
}
.message-box p {
  margin: 0;
  width: 100%;
  max-width: 360px;
  line-height: 1.3;
  font-size: 16px;
}
/* accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Media Queries */
@media only screen and (max-width: 1400px) {
  .gallery-crtl {
    right: 50px;
    bottom: 200px;
  }
  .more-info p {
    max-width: 100%;
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .header .nav {
    padding-right: 60px;
    padding-left: 60px;
  }
  .gallery-box {
    margin-top: 100px;
  }
  .list1, .list2, .list3 {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .header .nav {
    padding-right: 40px;
    padding-left: 40px;
  }
  .header-txt h1 {
    font-size: clamp(20px, 4vw, 36px);
  }
  .form-nav h4 {
    font-size: 16px;
  }
  #contactform {
    padding-right: 25px;
    padding-left: 25px;
    margin-right: -60px;
  }
  .radio-button label img {
    width: 50px;
  }
  .radio-std .radio-button {
    width: 100%;
  }
  .radio-button label {
    font-size: 16px;
  }
  .form-submit {
    flex-wrap: wrap;
    gap: 20px;
  }
  .form-check {
    max-width: 100%;
  }
  .section1, .section3 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .gallery-img {
    min-height: 540px;
  }
  .know-more {
    gap: 0 25px;
  }
  .footer_link_box {
    gap: 0;
  }
  .list1, .list2, .list3 {
    padding-right: 10px;
    padding-left: 10px;
  }
  .section1 .title {
    width: 50%;
  }
  .section3 {
    text-align: center;
  }
  .section3 .title {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 860px) {
  #contactform {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    padding: 100px 0 140px;
    min-height: 90svh;
  }
  .header .nav {
    padding: 24px 24px 40px;
  }
  .header .nav .logo {
    height: 30px;
    margin: 0 auto;
  }
  .header-txt {
    margin-bottom: 35px;
    text-align: center;
  }
  .header-txt h1 {
    font-size: clamp(28px, 6vw, 36px);
    text-wrap: balance;
  }
  .header-txt p {
    font-size: clamp(18px, 3vw, 24px);
  }
  .scroll-down {
    height: 32px;
    bottom: 25px;
  }
  #contactform {
    max-width: none;
    min-height: 0;
    padding: 40px 50px;
  }
  #contactform h3 {
    font-size: 24px;
  }
  #contactform h5 {
    width: 90%;
  }
  .custom-number-input label, .input-box label {
    max-width: 120px;
    font-size: 14px;
  }
  .form-nav h4 {
    font-size: 18px;
    line-height: 1.1;
    text-wrap: balance;
  }
  .form-nav h4 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px 0;
  }
  #step-6 h6 {
    max-width: 100%;
  }
  .form-check {
    max-width: 100%;
  }
  .section1, .section3 {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
  }
  .section1 .title {
    width: 100%;
    max-width: 550px;
  }
  .title p {
    font-size: 14px;
    text-wrap: balance;
  }
  .title h3 {
    font-size: 28px;
  }
  .gallery-box {
    margin-top: 60px;
  }
  .gallery-crtl {
    right: 50px;
    bottom: 180px;
    gap: 0 24px;
  }
  .gallery-crtl img {
    height: 20px;
  }
  .gallery-img {
    height: clamp(380px, 120vw, 560px);
    min-height: 0;
  }
  .gallery-txt h6 {
    margin-top: 30px;
  }
  .section2 {
    padding-bottom: 80px;
    text-align: center;
    text-wrap: balance;
  }
  .section2 .title p {
    max-width: none;
  }
  .section3 .title {
    margin-bottom: 0;

  }
  .book {
    margin-top: 35px;
  }
  .ebook {
    height: clamp(280px, 80vw, 380px);
    margin-left: 0;
  }
  .popupOpen {
    min-width: 0;
    width: min(100%, 280px);
    font-size: 18px;
  }
  .divider-img {
    min-height: 55svh;
  }
  .section3 .title {
    max-width: 550px;
  }
  .know-more {
    align-items: stretch;
    flex-direction: column;
    gap: 30px 0;
    margin-top: 45px;
  }
  .more-info {
    width: 100%;
  }
  .more-info p {
    max-width: none;
  }
  .footer {
    text-align: center;
    padding: 60px 0;
  }
  .footer .logo {
    max-width: 240px;
  }
  .footer_link_box {
    align-items: center;
    flex-direction: column;
    gap: 35px 0;
    padding: 40px 0;
    text-align: center;
  }
  .list1, .list2, .list3 {
    width: 100%;
    padding: 0;
  }
  .footer__links {
    align-items: center;
  }
  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 24px 0;
    justify-items: center;
    margin-top: 30px;
  }
  .footer__social, .footer__credit {
    justify-content: center;
  }
  .popup-content {
    max-height: calc(100svh - 32px);
    overflow-y: auto;
    padding: 40px 24px;
  }
  .message-box {
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (max-width: 475px) {
  .header {
    padding-top: 90px;
  }
  .header .nav {
    padding-right: 20px;
    padding-left: 20px;
  }
  .header .nav .logo {
    height: 26px;
  }
  .header-txt h1 {
    font-size: clamp(24px, 8vw, 32px);
  }
  .form-nav h4 {
    max-width: 60%;
    font-size: 15px;
  }
  .form-input-box {
    align-items: stretch;
    flex-direction: column;
    gap: 15px 0;
  }
  .form-submit {
    align-items: stretch;
    flex-direction: column;
    gap: 20px 0;
  }
  .custom-number-input, .input-box {
    width: 100%;
  }
  .last-step-inputs {
    gap: 10px;
    width: 100%;
  }
  .last-step-inputs > div {
    width: 100%;
  }
  .last-step-inputs > div input {
    max-width: none;
  }
  .form-crtl {
    gap: 0 10px;
  }
  .form-crtl button img {
    height: 20px;
  }
  .radio-button label {
    font-size: 16px;
    gap: 15px 0;
    min-height: 125px;
  }
  .radio-button label img {
    width: 65px;
  }
  .radio-std .radio-button label {
    min-height: auto;
  }
  .form-button {
    width: 100%;
  }
  .counter-input-group input {
    width: 65px;
    height: 30px;
    line-height: 1;
  }
  .title h3 {
    margin-bottom: 25px;
  }
  .gallery-img {
    height: clamp(360px, 120vw, 480px);
  }
  .divider-img {
    min-height: 45svh;
  }
  .footer__links__lang li {
    padding-right: 10px;
    padding-left: 10px;
  }
  .popup-content {
    width: calc(100% - 24px);
    padding: 35px 20px;
  }
  .popup-content h5 {
    font-size: 21px;
    padding-right: 20px;
  }
  .close-btn {
    top: 5px;
    right: 10px;
    font-size: 38px;
  }
  .message-box h3 {
    font-size: 24px;
  }
  .message-box p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 390px) {
  #contactform {
    padding: 40px 20px;
  }
  .radio-button label img {
    width: 55px;
  }
  .custom-number-input label, .input-box label {
    max-width: 100%;
  }
  .form-input-box {
    margin: 5px 0;
  }
  .counter-input-group input {
    font-size: 25px;
    line-height: 1;
  }
  .footer__links__lang {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px auto;
  }
  .footer__globe {
    display: none;
  }
  .footer__links__lang li {
    width: 40%;
  }
  .footer__links__lang li:nth-child(2) {
    border: none;
  }
  .header-txt p {
    text-wrap: balance;
  }
  .section2 .title h3 {
    font-size: 24px;
  }
  .footer .logo {
    width: 190px;
  }
}
/* modal overide */
.modal-content {
  color: var(--navy) !important;
}
.modal .btn {
  border-radius: 0 !important;
  background: var(--navy) !important;
}
.modal .btn:hover {
  background: var(--blue) !important;
}