#footer {
  color: #fff;
  margin-top: 10em;
}
#footer .wrapper {
  border-radius: 3.3em;
  background-color: #121C44;
  padding: 16rem 10rem;
  display: grid;
  grid-template-columns: 53% 1fr;
  gap: 5%;
}
#footer h3 {
  font-weight: 500;
  font-size: 2.2em;
  margin-bottom: 1em;
}
#footer ul {
  list-style: none;
  padding: 0;
  font-size: 10px;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
#footer ._company ul {
  gap: 2em;
}
#footer ._company h3 {
  margin-bottom: 1.1em;
}
#footer li {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 1.6em;
}
#footer li span {
  color: #2598E5;
}
#footer li a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1em;
}
#footer.hotels .wrapper {
  background-color: #112C2F;
}
#footer.hotels li span {
  color: #A9D9DE;
}
#footer.hotels .footer_newsletter .subscribe button {
  background-color: #194D54;
}
#footer.hotels .footer_newsletter .subscribe:hover button {
  background-color: #112C2F;
}
#footer.transfers .wrapper {
  background-color: #130b2a;
}
#footer.transfers li span {
  color: #a67aea;
}
#footer.transfers .footer_newsletter .subscribe button {
  background-color: #8E4EEE;
}
#footer.transfers .footer_newsletter .subscribe:hover button {
  background-color: #130b2a;
}
#footer.food .wrapper {
  background-color: #112C2F;
}
#footer.food li span {
  color: #F59330;
}
#footer.food .footer_newsletter .subscribe button {
  background-color: #F59330;
}
#footer.food .footer_newsletter .subscribe:hover button {
  background-color: #F8C48F;
}

.footer_logo {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
  margin-bottom: 2em;
}
.footer_logo img {
  max-width: 27em;
}

.footer_info {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10em;
}

.footer_social {
  grid-column: 2/span 1;
  grid-row: 2/span 1;
}
.footer_social ._content {
  margin-left: auto;
}
.footer_social ._grid {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  gap: 3em 10%;
}
.footer_social h5 {
  font-size: 1.8em;
  width: 100%;
}
.footer_social .s_g_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em 2em;
}
.footer_social .s_g_item a {
  height: 2em;
}
.footer_social .s_g_item a img {
  width: auto;
  height: 100%;
}

.footer_newsletter {
  grid-column: 1/span 1;
  grid-row: 3/span 1;
  margin-top: 4em;
  max-width: 68em;
}
.footer_newsletter h3 {
  margin-bottom: 0 !important;
}
.footer_newsletter .subscribe {
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  width: 100%;
  border-radius: 4em;
  padding: 1em 1em 1em 3em;
  margin-top: 2em;
  cursor: pointer;
}
.footer_newsletter .subscribe h4 {
  font-size: 2em;
  font-weight: 700;
  margin: 0;
  color: #121C44;
}
.footer_newsletter .subscribe input {
  display: none;
}
.footer_newsletter .subscribe button {
  font-size: 1.8em;
  font-weight: 700;
  color: #fff;
  background-color: #121C44;
  display: flex;
  justify-content: center;
  border: none;
  border-radius: 2em;
  padding: 0.6em 2em;
  cursor: pointer;
  transition: background 0.5s;
}
.footer_newsletter .subscribe button:hover {
  background-color: #2598E5;
}

.copyright {
  grid-column: 2/span 1;
  grid-row: 3/span 1;
  margin: auto 0 0 auto;
  font-size: 2em;
}
.copyright.no_newsletter {
  grid-column: 1/span 1;
  margin: 0;
  margin-top: 2em;
}

#join {
  margin-top: 0;
  position: relative;
  top: 18rem;
  display: flex;
  flex-direction: column;
  gap: 4em;
}
#join iframe {
  width: 100%;
  height: 900px;
}
#join h2 {
  font-size: 4.4em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
#join .wrapper {
  display: grid;
  grid-template-columns: 1fr;
  /*display: flex;
  flex-direction: column;*/
  border-radius: 3em;
  padding: 5em 8em;
  box-shadow: rgba(0, 0, 0, 0.3) 0 2em 3em;
}
#join .wrapper > p {
  font-size: 2.2em;
  font-weight: 300;
  max-width: 65rem;
  margin-bottom: 2em;
  line-height: 1.4;
}
#join .wrapper > p strong, #join .wrapper > p em {
  font-weight: 700;
}
#join .wrapper::before {
  content: "";
  background-color: #F1F1F1;
  mix-blend-mode: multiply;
  grid-column: 1/-1;
  grid-row: 1/-1;
}
#join .grid_input {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  gap: 3em;
  width: 107rem;
}
#join .grid_input ._double {
  grid-column: 1/-1;
}
#join.hotels {
  color: #112C2F;
}
#join.hotels .terms {
  background-color: #A9D9DE;
  color: #112C2F;
}
#join.hotels .submit_row a {
  color: #194D54;
}
#join.hotels .submit_row a.btn {
  color: #fff;
}
#join.hotels .terms_aggreed .submit_row .terms {
  background-color: #194D54;
  color: #fff;
}
#join.hotels .terms_aggreed .submit_row .btn {
  background-color: #194D54;
  color: #fff;
}
#join.hotels .terms_aggreed .submit_row .btn:hover {
  background-color: #112C2F;
}
#join.transfers {
  color: #130b2a;
}
#join.transfers .terms {
  background-color: #a67aea;
  color: #121C44;
}
#join.transfers .submit_row a {
  color: #8E4EEE;
}
#join.transfers .submit_row .btn {
  color: #fff;
}
#join.transfers .terms_aggreed .submit_row .terms {
  background-color: #8E4EEE;
  color: #fff;
}
#join.transfers .terms_aggreed .submit_row .btn {
  background-color: #8E4EEE;
  color: #fff;
}
#join.transfers .terms_aggreed .submit_row .btn:hover {
  background-color: #130b2a;
}
#join.food {
  color: #121C44;
}
#join.food .submit_row a {
  color: #F59330;
}
#join.food .submit_row .btn {
  color: #fff;
}
#join.food .terms {
  background-color: #F8C48F;
  color: #fff;
}
#join.food .terms_aggreed .submit_row .terms {
  background-color: #F59330;
  color: #fff;
}
#join.food .terms_aggreed .submit_row .btn {
  background-color: #F59330;
  color: #fff;
}
#join.food .terms_aggreed .submit_row .btn:hover {
  background-color: #F8C48F;
}

.join_response {
  color: #121C44;
  padding-bottom: 8em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.join_response h3 {
  font-size: 4em;
  font-weight: 700;
}
.join_response .resp {
  font-size: 2.4em;
  font-weight: 400;
}

.single_input {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 2em;
  gap: 1em;
  font-weight: 400;
  background-color: #F5F6FA;
  border-radius: 2em;
  padding: 0.6em 1.4em;
  position: relative;
  min-height: 2.7em;
}
.single_input._email {
  grid-column: 1/-1;
}
.single_input._drop {
  padding: 0;
  background: transparent;
}
.single_input._drop .drop_wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1em;
  gap: 1em;
  font-weight: 400;
  background-color: #F5F6FA;
  border-radius: 2em;
  padding: 0.5em 1.4em;
  width: 100%;
  min-height: 3.4em;
}
.single_input._drop._opened .drop_wrapper {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
  align-items: flex-start;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.14) 0 0.3em 1.2em;
  border-radius: 1.2em;
  padding: 0.85em 1.4em 1em 1.4em;
}
.single_input._drop._opened ul {
  display: flex;
  flex-direction: column;
  gap: 0.85em;
  width: 100%;
  padding: 1px 0em;
  z-index: 10;
  max-height: 28em;
  overflow: auto;
}
.single_input._drop._opened li {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding-right: 1em;
}
.single_input._drop._opened li.active {
  font-weight: 700;
  font-style: italic;
}
.single_input._drop._opened li:hover {
  font-weight: 700;
}
.single_input._drop._opened .drop_btn {
  transform: rotate(180deg);
  position: relative;
  top: -0.21em;
}
.single_input label {
  font-weight: 700;
}
.single_input .drop_btn {
  cursor: pointer;
  margin-left: auto;
}
.single_input .dropdown {
  padding: 0;
  list-style: none;
  flex-grow: 2;
}
.single_input .dropdown li {
  display: none;
}
.single_input .dropdown li.active {
  display: flex;
}
.single_input input {
  flex-grow: 2;
  border: none;
  background: transparent;
  border-bottom: solid 1px #DCDEE1;
  padding: 0.5em 0.5em;
}
.single_input._textarea {
  flex-direction: column;
  align-items: flex-start;
  border-radius: 1em;
  padding: 1.4em;
}
.single_input textarea {
  width: 100%;
  height: 1.2em;
  border: none;
  border-bottom: solid 1px #F1F1F1;
  background-color: transparent;
}
.single_input.required label {
  color: #e63a1c;
}

#country img {
  height: 1.2em;
  width: auto;
}
#country .drop_wrapper {
  width: 9.2em;
  gap: 0.6em;
}
#country._opened {
  width: 100% !important;
}
#country._opened .drop_wrapper {
  width: 100% !important;
}
#country .phone_wrapper {
  display: flex;
  align-items: center;
  gap: 1em;
  width: 15em;
  font-size: 1em;
  gap: 1em;
  font-weight: 400;
  background-color: #F5F6FA;
  border-radius: 2em;
  padding: 0 1.4em;
  position: relative;
  min-height: 3.4em;
}
#country .phone_wrapper input {
  width: 8em;
}
#country .phone_wrapper .tel_code {
  font-weight: 700;
}

.submit_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 2em;
  font-size: 2em;
  gap: 2em;
  font-weight: 400;
  background-color: #F5F6FA;
  border-radius: 2em;
  padding: 0.5em 0.8em;
  width: 100%;
}
.submit_row a {
  color: #2598E5;
  font-weight: 700;
}
.submit_row .terms {
  background: #B3DBF6;
  cursor: pointer;
  border: none;
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: #fff;
}
.submit_row .terms span {
  font-size: 1.5em;
}
.submit_row .btn {
  background: #707070;
  color: #fff;
  border: none;
  border-radius: 2em;
  padding: 0.5em 2em;
  margin-left: auto;
}

.terms_aggreed .submit_row .terms {
  background: #2598E5;
}
.terms_aggreed .submit_row label {
  font-weight: 500;
}
.terms_aggreed .submit_row .btn {
  background: #2598E5;
  cursor: pointer;
  transition: background 0.5s;
}
.terms_aggreed .submit_row .btn:hover {
  background-color: #201244;
}

.show_newsletter #subscribe {
  display: flex;
}

#subscribe {
  position: fixed;
  top: 0;
  left: 5vw;
  width: 90vw;
  height: 100vh;
  overflow: auto;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}
#subscribe::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.28);
  mix-blend-mode: multiply;
  z-index: 0;
}
#subscribe .news_logo {
  display: none;
  position: relative;
  z-index: 1;
  margin-bottom: 4em;
}
#subscribe .newsletter {
  width: 100%;
}
#subscribe .newsletter .single_input {
  font-size: 1.6em;
}

.subscribe_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 5em;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0 2em 3em;
  color: #121C44;
  border-radius: 3em;
  position: relative;
  gap: 4em;
}
.subscribe_wrapper h1 {
  font-size: 3.25em;
  font-weight: 300;
  margin: 0;
  width: 50%;
  line-height: 1.12;
  width: 70%;
}
.subscribe_wrapper h1 strong {
  font-weight: 700;
}
.subscribe_wrapper .close_subscribe {
  position: absolute;
  top: 5em;
  right: 5em;
  cursor: pointer;
}
.subscribe_wrapper .close_subscribe span {
  font-size: 3.6em;
}
.subscribe_wrapper .grid_input {
  display: grid;
  grid-template-columns: repeat(2, 48%);
  gap: 2em 4%;
  width: 80%;
  max-width: 100rem;
}
.subscribe_wrapper ._email {
  grid-column: 1/-1;
}

._gr #country .drop_wrapper {
  width: 11em;
}
._gr #country .phone_wrapper {
  width: 13em;
  gap: 0.2em;
}

@media (max-aspect-ratio: 1.5) {
  #join .wrapper {
    padding: 5em 3em;
  }
  #footer {
    font-size: 1.2em;
  }
  #footer .wrapper {
    display: flex;
    flex-direction: column;
    gap: 5em;
  }
}
@media (max-width: 1000px), (max-aspect-ratio: 1) {
  #join.transfers {
    margin-top: -22em;
  }
  #join .grid_input {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  #join .wrapper {
    display: flex;
    flex-direction: column;
  }
  #country {
    flex-wrap: wrap;
  }
  #country .phone_wrapper {
    width: 25em;
  }
  .footer_social ._grid {
    display: flex;
    flex-direction: column;
  }
  #footer .wrapper {
    border-radius: 0;
  }
  .copyright {
    margin-left: 0;
  }
  .subscribe_wrapper .grid_input {
    width: 100%;
  }
}
@media (max-width: 1000px), (max-aspect-ratio: 0.7222222222) {
  #join h2 {
    font-size: 3.6em;
    margin-bottom: 1em;
  }
  #country {
    /* padding:1em;
     background: $grey_2;*/
  }
  #country .phone_wrapper {
    flex-grow: 1;
    width: 100%;
    padding: 0;
    min-height: 0;
    background: transparent;
  }
  #country .drop_wrapper {
    background: #fff;
    width: 100%;
  }
  #country img {
    margin-left: auto;
  }
  .single_input {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 1em;
    padding: 1.6em 1.4em;
    gap: 0;
    background-color: transparent;
    padding: 0;
  }
  .single_input label {
    margin-bottom: 0.61em;
  }
  .single_input input {
    width: 100%;
  }
  .single_input._drop .drop_wrapper {
    padding: 0;
    min-height: 0;
    background: transparent;
  }
  #footer .wrapper {
    padding: 14rem 5rem;
  }
  .subscribe_wrapper .grid_input {
    grid-template-columns: 1fr;
  }
  .footer_info {
    flex-direction: column;
    gap: 5em;
  }
  #newsletter_open {
    padding: 2em;
    align-items: center;
    justify-content: center;
  }
  #newsletter_open button {
    display: none;
  }
  #footer ._contact li > a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #join_form .submit_row {
    display: grid;
    grid-template-columns: 5em 1fr;
    gap: 2em;
    padding: 1em;
    border-radius: 1em;
  }
  #join_form .terms {
    grid-column: 1/span 1;
  }
  #join_form label {
    grid-column: 2/span 1;
  }
  #join_form .btn {
    grid-column: 1/span 2;
    grid-row: 2;
    width: 100%;
    text-align: center;
  }
}/*# sourceMappingURL=footer.css.map */