/* Colors */
.bg-light {
  background-color: #F8F9F3;
}

/* Typography */
*,
::after,
::before {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-feature-settings: "calt" off;
  /* paragpaph */
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  color: #1C1C1D;
  background-color: #F6F5FC;
  overflow-x: hidden;
}

.full {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: DM Serif Display;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
}

h1 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 400;
  line-height: 31.2px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #8E8F8F;
}

h2 {
  text-align: center;
  /* H5 */
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 24px */
  letter-spacing: 0.2px;
}

@media only screen and (min-width: 600px) {
  h2 {
    /* H2 */
    font-size: 26px;
    font-weight: 400;
    line-height: 120%;
    /* 31.2px */
    letter-spacing: 0.26px;
  }
}
h3 {
  /* H4 */
  font-size: 33px;
  line-height: 120%;
  /* 39.6px */
  letter-spacing: 0.33px;
}

@media only screen and (min-width: 600px) {
  h3 {
    /* H3 */
    font-size: 40px;
    line-height: 110%;
    /* 44px */
    letter-spacing: 0.4px;
  }
}
h4 {
  /* H5 */
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 24px */
  letter-spacing: 0.2px;
}

@media only screen and (min-width: 600px) {
  h4 {
    /* H4 */
    font-size: 33px;
    line-height: 120%;
    /* 39.6px */
    letter-spacing: 0.33px;
  }
}
h5 {
  /* H5 */
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 24px */
  letter-spacing: 0.2px;
}

p {
  margin: 0;
  padding: 0;
}

a {
  font-family: "Be Vietnam Pro", sans-serif;
  color: #333;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

video {
  object-fit: cover;
}

select {
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  appearance: none;
  background-image: url("../img/icons/arrow-down.png");
  background-repeat: no-repeat;
  background-position: right 25px top 25px;
}

small {
  font-size: 14px;
}

input,
button,
select {
  font-family: "Be Vietnam Pro", sans-serif;
}

.caption {
  color: #6E6F6F;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  /* 16.8px */
  letter-spacing: -0.14px;
  text-transform: uppercase;
}

.text-danger {
  color: #F33535;
  font-size: 12px;
  font-weight: 500;
}

/* Buttons */
.btn {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 194px;
  border-radius: 74px;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.07), 0px 4px 6px -1px rgba(0, 0, 0, 0.12);
  /* button text */
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  letter-spacing: -0.16px;
  border: 0;
  cursor: pointer;
}
.btn:disabled {
  background-color: rgb(167, 150, 228);
}
.btn-primary {
  background-color: #6243CE;
  color: #fff;
}
.btn-primary:disabled {
  background-color: rgba(98, 67, 206, 0.5);
}
.btn-secondary {
  background-color: #252D43;
  color: #fff;
}
.btn-secondary:hover {
  background-color: #6243CE;
}
.btn-secondary:disabled {
  background-color: #6E6F6F;
}
.btn-accent {
  background-color: #F35C5C;
  color: #fff;
}
.btn-blank {
  background-color: transparent;
}

/* Alert */
.alert {
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: rgba(243, 53, 53, 0.06);
}
.alert-danger {
  color: #F33535;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  /* 16.8px */
  letter-spacing: -0.12px;
}

/* Forms */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-section-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (min-width: 600px) {
  .form-section-container {
    gap: 16px;
  }
}
.form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}
@media only screen and (min-width: 600px) {
  .form-row {
    gap: 16px;
  }
}
.form-row .col-submit {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 8px 0 16px 0;
}
.form-row .col-consent {
  display: flex;
  justify-content: center;
  width: 100%;
}
.form-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .form-col {
    gap: 16px;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  /* margin-bottom: 32px; */
}
.form-control {
  display: flex;
  width: 100%;
  padding: 15px 24px;
  align-items: center;
  align-self: stretch;
  border: 0;
  border-radius: 8px;
  background-color: #F6F5FC;
  color: #1C1C1D;
  font-feature-settings: "calt" off;
  /* small paragraph */
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 19.6px */
  letter-spacing: -0.14px;
}
@media only screen and (min-width: 600px) {
  .form-control {
    font-weight: 400;
  }
}
.form-control:disabled {
  background-color: #F6F5FC;
}
.form-control::placeholder {
  color: #1C1C1D;
}
.form-control-label {
  display: block;
  /* margin-bottom: 8px; */
}
select.form-control {
  background-image: url("../img/icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: top 15px right 5px;
}
select.form-control.active {
  background-image: url("../img/icons/chevron-up.svg");
}

.form-control-date-control {
  display: flex;
  gap: 10px;
}
.form-check {
  display: flex;
  gap: 5px;
  align-items: center;
  /* Elements */
}
.form-check-label small {
  color: #6E6F6F;
  font-size: 12px;
}
.form-check-input {
  background: 0;
}
.form-check-elements {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}
.form-check-elements .form-check {
  position: relative;
  border-radius: 8px;
  background: #F7F7F7;
  height: 52px;
  cursor: pointer;
}
.form-check-elements .form-check:hover, .form-check-elements .form-check:focus {
  background: #F2F0FE;
}
.form-check-elements .form-check.checked {
  background: #F2F0FE;
}
.form-check-elements .form-check.checked .form-check-label {
  color: #1C1C1D;
}
.form-check-elements .form-check.checked .form-check-label span::before {
  display: block;
}
.form-check-elements .form-check-label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.form-check-elements .form-check-label span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #6E6F6F;
}
.form-check-elements .form-check-label span::before {
  display: none;
  width: 7px;
  height: 7px;
  background-image: url("../img/icons/bullet.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: " ";
}
.form-check-elements .form-check-input {
  display: block;
  width: 100%;
  height: 100%;
  content: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 15px 24px;
  z-index: 0;
  cursor: pointer;
}

/* Cards */
.card {
  background: #FFF;
  margin: 0;
  border-radius: 50px 50px;
}
@media only screen and (min-width: 600px) {
  .card {
    padding: 96px 135px 88px 135px;
    border-radius: 100px 100px;
  }
}

/* Grid */
.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1470px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}
.container-lg {
  max-width: 1320px;
}
.container-md {
  max-width: 1200px;
}
.container-sm {
  max-width: 770px;
}
.container-xs {
  max-width: 600px;
}

.row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (min-width: 600px) {
  .row {
    flex-direction: row;
  }
}

.col {
  padding-left: 15px;
  padding-right: 15px;
}

/* Container */
/* Footer */
.site-footer .footer-main {
  width: 100%;
}
.site-footer .footer-main label {
  font-family: DM Serif Display;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.2px;
}

.d-none {
  display: none !important;
}

.mute {
  color: #6E6F6F;
}

.rating {
  display: flex;
  gap: 3px;
}

.breadcrumbs {
  display: none;
  gap: 1px;
  align-items: center;
}
@media only screen and (min-width: 600px) {
  .breadcrumbs {
    display: flex;
  }
}
.breadcrumbs a {
  display: flex;
}

/* Loader */
.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 50px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 1;
  padding: 10vw 15px;
}

/* Progress Bar */
.progress-bar {
  color: #fff;
  background-color: #4CAF50;
}
.progress-bar-wrapper {
  display: block;
  width: 100%;
  max-width: 500px;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.accordion-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  width: 100%;
  border: none;
  text-align: left;
  padding-right: 20px;
  outline: none;
  transition: 0.4s;
  color: #1C1C1D;
  /* H4 */
  font-family: DM Serif Display;
  font-size: 33px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 39.6px */
  letter-spacing: 0.33px;
  background-color: transparent;
  background-image: url("../img/icons/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right top;
}
.accordion-item {
  display: flex;
  padding: 16px 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
@media only screen and (min-width: 600px) {
  .accordion-item {
    padding: 24px;
  }
}
.accordion-item.active {
  border-radius: 24px;
  background-color: #fff;
  /* cards */
  box-shadow: 0px 0.907px 0.946px 0px rgba(0, 0, 0, 0.01), 0px 3.989px 1.958px 0px rgba(0, 0, 0, 0.02), 0px 9.792px 3.905px 0px rgba(0, 0, 0, 0.02), 0px 18.858px 7.654px 0px rgba(0, 0, 0, 0.02), 0px 31.733px 14.073px 0px rgba(0, 0, 0, 0.03), 0px 48.96px 24.029px 0px rgba(0, 0, 0, 0.04);
}
.accordion-item.active .accordion-header {
  background-image: url("../img/icons/chevron-up.svg");
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  pointer-events: none;
}
.modal-dialog {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: transparent;
  background-clip: padding-box;
}
.modal-header {
  display: none;
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
}
.modal-footer {
  display: none;
}
.modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.7);
  cursor: pointer;
}

.reviews .card {
  background-color: #FFF;
  box-shadow: 0px 0.91px 0.95px 0px rgba(0, 0, 0, 0.0078431373), 0px 3.99px 1.96px 0px rgba(0, 0, 0, 0.0156862745), 0px 9.79px 3.9px 0px rgba(0, 0, 0, 0.0196078431), 0px 18.86px 7.65px 0px rgba(0, 0, 0, 0.0235294118), 0px 31.73px 14.07px 0px rgba(0, 0, 0, 0.031372549), 0px 48.96px 24.03px 0px rgba(0, 0, 0, 0.0392156863);
  border-radius: 32px;
  padding: 24px;
}
.reviews .card .btn {
  box-shadow: none;
}
@media only screen and (min-width: 600px) {
  .reviews .carousel {
    max-width: 100%;
  }
}
.reviews .carousel-item {
  margin-bottom: 80px;
}
.reviews .carousel-item-wrapper {
  max-width: 275px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 32px;
  margin: 16px 4px;
}
.reviews .carousel-item-layout {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  border-radius: 32px;
}
.reviews .carousel-item-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reviews .carousel-item-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #FFF;
}
.reviews .carousel-item-footer .btn {
  text-align: start;
  justify-content: start;
  padding: 12px 3px;
  color: #000;
}
.reviews .carousel-item-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.reviews .carousel-item-title {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}
.reviews .carousel-item-icon {
  width: 37px;
  height: 37px;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.reviews .carousel-item-description {
  display: block;
  height: 105px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.reviews .carousel-item-rating-items {
  display: flex;
  align-items: center;
  gap: 2px;
}
.reviews .carousel-item-rating-item {
  width: 17px;
  height: 17px;
  background-repeat: no-repeat;
  background-image: url("../img/icons/star-purple.svg");
  background-size: 100%;
}
.reviews .carousel-item.active .carousel-item-description {
  height: auto;
  text-overflow: inherit;
  overflow: auto;
}
.reviews .carousel-navigation {
  display: flex;
  gap: 16px;
  justify-content: center;
}
@media only screen and (min-width: 600px) {
  .reviews .carousel-navigation {
    justify-content: start;
  }
}

.payment h4 {
  margin-top: 24px;
  margin-bottom: 16px;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .payment h4 {
    margin-top: 40px;
  }
}
.payment .container {
  position: relative;
}

/* iti */
.iti {
  width: 100%;
  color: #333;
}

.input-country .iti__flag-container {
  right: 0 !important;
}

.iti__selected-flag {
  background: 0 !important;
}

.iti input[type=text] {
  pointer-events: none;
}