.newsletter-section.hidden {
  display: none;
  pointer-events: none;
}

.newsletter-section {
  display: flex;
  flex-direction: column;
  background-color: #de7853;
  color: #fff;
}
.newsletter-section .main {
  margin-top: -150px;
  z-index: 1;
  width: 100%;
  padding: 85px 30px;
  text-align: left;
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  font-family: Montserrat;
}
.newsletter-section .main .title {
  font-family: Montserrat;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.12;
  text-align: inherit;
}
.newsletter-section .main .subtitle {
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: inherit;
  color: #fff;
}
.newsletter-section .main button.newsletter-popup-btn {
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 19px 32px;
  border-radius: 99px;
  transition: all 0.3s ease-in-out;
  width: fit-content;
  border: 0;
  background-color: #fff;
  color: #0f1935;
  transition: 0.25s all;
}
.newsletter-section .main button.newsletter-popup-btn:active, .newsletter-section .main button.newsletter-popup-btn:visited, .newsletter-section .main button.newsletter-popup-btn:focus {
  outline: 0;
  border: 0;
}
.newsletter-section .image {
  flex: 1;
  display: flex;
  order: 0;
  width: 100%;
}
.newsletter-section .image img {
  width: 100%;
  max-width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  mask-image: linear-gradient(180deg, rgb(0, 0, 0) 50%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .newsletter-section .image img {
    height: 100%;
  }
  .newsletter-section .main {
    padding: 6% 155px;
    text-align: center;
    align-items: center;
  }
  .newsletter-section .main .title {
    font-size: 56px;
  }
}
@media screen and (min-width: 1220px) {
  .newsletter-section {
    flex-direction: row;
  }
  .newsletter-section .image {
    order: 2;
  }
  .newsletter-section .image img {
    mask-image: linear-gradient(270deg, rgb(0, 0, 0) 50%, transparent 100%);
  }
  .newsletter-section .main {
    margin: 0;
    align-items: stretch;
    width: 45%;
    text-align: left;
    padding: 6% 0 6% 75px;
    line-height: 1.42;
  }
}
@media screen and (min-width: 1440px) {
  .newsletter-section .main {
    padding: 6% 0 6% 155px;
  }
}

.newsletter-popup {
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: rgba(33, 201, 217, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.newsletter-popup.open {
  pointer-events: all;
  opacity: 1;
}
.newsletter-popup.open .content {
  opacity: 1;
}
.newsletter-popup .content {
  opacity: 0;
  position: relative;
  width: 100%;
  max-width: 640px;
  background-color: #0f1935;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s 0.2s;
}
.newsletter-popup img {
  max-height: 240px;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}
.newsletter-popup button.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  border: 0;
  outline: 0;
  background: #fff !important;
  border-radius: 100px;
  padding: 0;
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 24px;
  color: #0f1935 !important;
}
.newsletter-popup .main {
  overflow-x: hidden;
  padding: 4rem;
  width: 100%;
}
.newsletter-popup .main .track {
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 4rem;
  position: relative;
  left: 0;
  transition: left 0.3s;
}
.newsletter-popup .main .track[data-step=email] {
  left: 0;
}
.newsletter-popup .main .track[data-step=otp], .newsletter-popup .main .track[data-step=registration] {
  left: calc(-100% - 4rem);
}
.newsletter-popup .main .track[data-step=success] {
  left: calc(-200% - 8rem);
}
.newsletter-popup .main .step {
  height: auto;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s;
}
.newsletter-popup .main .step.step-3 {
  text-align: center;
  align-items: center;
}
.newsletter-popup .main .step.step-3 .success-icon {
  font-size: 70px;
  color: #21c9d9;
}
.newsletter-popup .main .step.hidden {
  opacity: 0;
  pointer-events: none;
}
.newsletter-popup .main .title {
  font-family: Montserrat;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.42;
  text-align: inherit;
}
.newsletter-popup .main .subtitle {
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: inherit;
  color: #fff;
  margin-bottom: 1.5rem;
}
.newsletter-popup .main button.submit-btn {
  font-family: Montserrat;
  font-size: 16px;
  background-color: #21c9d9;
  padding: 19px 32px 18px;
  font-weight: 600;
  color: #0f1935;
  border-radius: 100px;
  width: fit-content;
  border: 0;
  align-self: center;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-self: center;
}
.newsletter-popup .main button.submit-btn:disabled {
  opacity: 0.4;
}
@media screen and (max-width: 750px) {
  .newsletter-popup {
    z-index: 999999;
  }
  .newsletter-popup .content {
    height: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .newsletter-popup img {
    height: 240px;
  }
  .newsletter-popup .main {
    padding: 1.5rem;
    display: flex;
    height: 100%;
  }
  .newsletter-popup .track {
    height: fit-content;
  }
}
@media screen and (max-width: 620px) {
  .newsletter-popup .main {
    padding: 2rem;
  }
  .newsletter-popup .main button.submit-btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    display: block;
  }
  .newsletter-popup .main .title {
    font-size: 40px;
  }
}
@media screen and (max-width: 440px) {
  .newsletter-popup .main .title {
    font-size: 36px;
  }
  .newsletter-popup .main .subtitle {
    font-size: 18px;
  }
}

.newsletter-popup .error-msg {
  text-align: center;
  font-size: 12px;
  color: #dc6565;
}

.newsletter-popup input {
  outline: 0;
  border: 0;
  border-bottom: solid 2px rgba(255, 255, 255, 0.9);
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  padding: 19px 24px;
  transition: all 0.2s;
  outline: 0 !important;
  text-transform: capitalize;
}
.newsletter-popup input:active, .newsletter-popup input:focus {
  outline: 0 !important;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: solid 2px #21c9d9;
}
.newsletter-popup input:disabled {
  opacity: 0.4;
  border-bottom: solid 2px rgba(255, 255, 255, 0.4);
}
.newsletter-popup input.invalid {
  border-bottom: solid 2px rgba(255, 255, 255, 0.9);
}
.newsletter-popup input.error {
  border-bottom: solid 2px #dc6565;
}
.newsletter-popup input::placeholder {
  color: #fff;
}
@media screen and (max-width: 620px) {
  .newsletter-popup input {
    padding: 0.75rem 1.5rem;
  }
}

#registration-fields {
  display: grid;
  border: 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
  width: 100%;
}
@media screen and (max-width: 620px) {
  #registration-fields {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

#otp-fields {
  display: flex;
  gap: 1rem;
  border: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}
#otp-fields input {
  text-transform: uppercase;
  line-height: 1;
  padding: 0.85rem 0;
  text-align: center;
  transition: 0.3s all;
}
#otp-fields input, #otp-fields input:visited, #otp-fields input:focus {
  caret-color: #21c9d9 !important;
  outline: 0;
  background-color: #0f1935 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border-width: 0 !important;
  box-shadow: inset 0 -2px 0 0 rgba(33, 201, 217, 0.5) !important;
  width: 3.5rem;
  height: 3.5rem;
}
#otp-fields input:focus, #otp-fields input:-webkit-autofill, #otp-fields input:-webkit-autofill:focus, #otp-fields input:-webkit-autofill:active {
  -webkit-background-clip: text !important;
  background-color: #0f1935 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.9) !important;
  box-shadow: inset 0 -2px 0 0 rgba(255, 255, 255, 0.5) !important;
}
#otp-fields input.error {
  box-shadow: inset 0 0 0 1px #dc6565 !important;
}
#otp-fields input:disabled {
  opacity: 0.5;
}
#otp-fields input:-webkit-autofill {
  box-shadow: inset 0 -2px 0 0 rgba(33, 201, 217, 0.5) !important;
}

.air-datepicker-global-container {
  z-index: 100000000000000000;
}

body:has(.newsletter-popup.open) {
  overflow-y: hidden;
}

.newsletter-popup .loader {
  width: 1.5rem;
  height: 1.5rem;
  border: 3px solid #0F1935;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-flex;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=newsletter.css.map */
