@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
:root {
  --header-height: 80px;
  --section-padding: 100px;
  --gap: 30px;
  --transition: .2s ease-in-out 0s; }

body {
  font-family: "Roboto", sans-serif;
  color: #000; }

h1 {
  font-size: 48px; }

h4 {
  font-size: 24px; }

h5 {
  font-size: 18px;
  line-height: 1.4; }

h6 {
  font-size: 12px; }

p {
  color: #999;
  font-size: 16px;
  line-height: 1.4; }

a:not(.button) {
  color: #000; }

input[type=text],
input[type=email],
select,
textarea {
  width: 100%;
  background-color: transparent;
  font-family: "Roboto", sans-serif;
  color: #fff;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  outline: none; }
  input[type=text]::placeholder,
  input[type=email]::placeholder,
  select::placeholder,
  textarea::placeholder {
    color: rgba(255, 255, 255, 0.4); }
  input[type=text] option,
  input[type=email] option,
  select option,
  textarea option {
    color: #000; }

input[type=text],
input[type=email],
select {
  height: 40px; }

textarea {
  height: 120px;
  resize: none; }

.new-validate__error,
.new-validate__success {
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff; }
  .new-validate__error h3,
  .new-validate__success h3 {
    font-size: 24px;
    margin-bottom: 15px; }
  .new-validate__error p,
  .new-validate__success p {
    max-width: 690px;
    margin-left: auto;
    margin-right: auto; }

.d-flex {
  display: flex;
  flex-wrap: wrap; }
  .d-flex.justify-content-center {
    justify-content: center; }
  .d-flex.align-items-center {
    align-items: center; }
  .d-flex.two-columns > * {
    width: calc(50% - var(--gap) / 2); }
  .d-flex.gap {
    gap: var(--gap); }

.mw-510 {
  max-width: 510px; }

.mw-690 {
  max-width: 690px; }

.text-center {
  text-align: center; }
  .text-center.mw-510,
  .text-center .mw-510, .text-center.mw-690,
  .text-center .mw-690 {
    margin-left: auto;
    margin-right: auto; }

.text-left {
  text-align: left; }

.text-uppercase {
  text-transform: uppercase; }

.section-padding {
  padding: var(--section-padding) 0; }

.label-padding {
  padding: calc(var(--section-padding) * 1.5) 0; }

.bg-image {
  background-position: center center;
  background-size: cover; }
  .bg-image.bg-darker {
    position: relative; }
    .bg-image.bg-darker::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.35); }
    .bg-image.bg-darker > * {
      position: var(--position, relative);
      z-index: 1; }

.bg-grey {
  background-color: #F7F7F7; }

.text-white * {
  color: #fff; }

.text-white {
  color: #fff; }

.text-grey {
  color: #999; }

.fs-14 {
  font-size: 14px; }

.mr-5 {
  margin-right: 5px; }

.mr-10 {
  margin-right: 10px; }

.mr-40 {
  margin-right: 40px; }

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

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

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

.space.h-25 {
  height: 25px; }

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 99;
  transition: opacity var(--transition), visibility var(--transition); }
  #loader.loaded {
    opacity: 0;
    visibility: hidden; }

.button {
  display: inline-flex;
  background-color: #06C39D;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  padding: 18px 36px;
  cursor: pointer;
  outline: none;
  transition: background-color var(--transition); }
  .button i {
    font-size: 16px;
    transform: translateY(1px);
    padding-left: 8px; }
  .button:hover {
    background-color: #141414; }

#launcher,
.header_lang_top {
  z-index: 9 !important; }

.header ul {
  height: var(--header-height); }
  .header ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: var(--header-height);
    color: #999;
    text-transform: uppercase;
    transition: color var(--transition); }
  .header ul li.active a,
  .header ul li a:hover {
    color: #113D57; }
  .header ul li:not(:last-of-type) {
    margin-right: 35px; }

.footer {
  padding: 30px 0 22px; }
  .footer p {
    color: #000; }
  .footer a:hover {
    text-decoration: underline; }

.page {
  background-color: #113D57;
  border-radius: 30px; }

#contact-page .section-1 .d-flex > .item:first-of-type {
  width: calc(100% / 3 * 2 - var(--gap) / 2); }
#contact-page .section-1 .d-flex > .item:last-of-type {
  width: calc(100% / 3 - var(--gap) / 2); }
#contact-page .section-1 .form-wrapper form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  #contact-page .section-1 .form-wrapper form .input-wrapper {
    width: 100%;
    margin-bottom: 25px; }
    #contact-page .section-1 .form-wrapper form .input-wrapper:nth-of-type(1), #contact-page .section-1 .form-wrapper form .input-wrapper:nth-of-type(2) {
      width: calc(50% - 15px); }

#subscription-page .section-1 .d-flex > .item:first-of-type {
  width: calc(100% / 3 * 2 - var(--gap) / 2); }
#subscription-page .section-1 .d-flex > .item:last-of-type {
  width: calc(100% / 3 - var(--gap) / 2); }
#subscription-page .section-1 .unsubscribe-check-wrapper {
  border: 1px solid transparent; }
  #subscription-page .section-1 .unsubscribe-check-wrapper input {
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.3333333333);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    width: 25px;
    height: 25px;
    margin-top: -2px;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0.25em; }
    #subscription-page .section-1 .unsubscribe-check-wrapper input:checked {
      background-image: url("../img/check.svg"); }
  #subscription-page .section-1 .unsubscribe-check-wrapper .text-wrapper {
    display: inline-block;
    max-width: calc(100% - 50px);
    color: #fff;
    font-size: 14px;
    line-height: 1.4; }

#faq-page.page {
  background-color: #D9E2E4; }
#faq-page .faq-list > .d-flex {
  --gap: 0px;
  counter-increment: listCounter;
  border-radius: 25px;
  overflow: hidden; }
  #faq-page .faq-list > .d-flex:not(:last-of-type) {
    margin-bottom: 35px; }
  #faq-page .faq-list > .d-flex > .item:first-of-type {
    width: calc(100% / 3 - var(--gap) / 2); }
  #faq-page .faq-list > .d-flex > .item:last-of-type {
    width: calc(100% / 3 * 2 - var(--gap) / 2); }
  #faq-page .faq-list > .d-flex .context {
    background-color: #fff;
    padding: 30px; }
    #faq-page .faq-list > .d-flex .context .number {
      padding: 10px 18px;
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 10px;
      margin-right: 20px; }
      #faq-page .faq-list > .d-flex .context .number::before {
        content: "#" counter(listCounter); }

@media (max-width: 991px) {
  .mr-10 {
    margin-right: 5px; }

  .mr-40 {
    margin-right: 15px; }

  #contact-page .section-1 .d-flex > .item,
  #subscription-page .section-1 .d-flex > .item {
    width: 100% !important; }
    #contact-page .section-1 .d-flex > .item:first-of-type,
    #subscription-page .section-1 .d-flex > .item:first-of-type {
      order: 2; }
    #contact-page .section-1 .d-flex > .item:last-of-type,
    #subscription-page .section-1 .d-flex > .item:last-of-type {
      order: 1; }

  #faq-page .bg-image {
    display: none; }
  #faq-page .faq-list > .d-flex > .item:last-of-type {
    width: 100% !important; }
  #faq-page .faq-list > .d-flex .context {
    padding: 25px; } }
@media (max-width: 575px) {
  .header ul.d-flex {
    justify-content: center; }
  .header ul li:not(:last-of-type) {
    margin-right: 25px; }

  #contact-page .section-1 .form-wrapper form .input-wrapper {
    width: 100% !important; } }
