@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&display=swap");
:root {
  --header-height: 70px;
  --section-padding: 80px;
  --gap: 30px;
  --transition-duration: .25s; }

body {
  background-color: #000;
  color: #fff;
  font-family: "Sora", sans-serif;
  line-height: 1.5; }

h1 {
  font-size: 55px;
  line-height: 1.1; }

h2 {
  font-size: 50px;
  line-height: 1.1; }

h3 {
  font-size: 30px; }

h4 {
  font-size: 20px; }

h6 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px; }

p {
  color: #ddd;
  font-size: 16px; }

a:not(.button):not(.custom) {
  color: #fff;
  text-decoration: underline; }

input[type=text],
input[type=email],
select,
textarea {
  width: 100%;
  background-color: transparent;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 0 16px;
  outline: none;
  transition: border-color var(--transition-duration) ease; }
  input[type=text]:focus,
  input[type=email]:focus,
  select:focus,
  textarea:focus {
    border-color: #fff !important; }

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

input[type=checkbox] {
  width: 25px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.175);
  border-radius: 3px;
  appearance: none; }
  input[type=checkbox]:checked {
    background-image: url("../img/check.svg"); }

select option {
  background-color: #000; }

textarea {
  height: 150px;
  padding: 20px 16px;
  resize: none; }

.new-validate__error,
.new-validate__success {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px; }
  .new-validate__error h3,
  .new-validate__success h3 {
    font-size: 24px;
    margin-bottom: 15px; }

.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, .d-flex.three-columns {
    gap: var(--gap); }
    .d-flex.two-columns > .item, .d-flex.three-columns > .item {
      width: calc(100% / var(--columns) - (var(--gap) / var(--columns)) * (var(--columns) - 1)); }
  .d-flex.two-columns {
    --columns: 2; }
  .d-flex.three-columns {
    --columns: 3; }

.d-inline-flex {
  display: inline-flex; }

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

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

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

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

.bg-grey {
  background-color: rgba(255, 255, 255, 0.1); }

.pb-0 {
  padding-bottom: 0 !important; }

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

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

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

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

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

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

.button {
  display: inline-flex;
  background-color: transparent;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  text-transform: capitalize;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 13px 30px 12px;
  cursor: pointer;
  outline: none;
  transition: background-color var(--transition-duration) ease, color var(--transition-duration) ease; }
  .button:hover {
    background-color: #fff;
    color: #000; }

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

.header {
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25); }
  .header ul {
    height: var(--header-height); }
    .header ul li a {
      display: inline-flex;
      align-items: center;
      height: var(--header-height);
      color: rgba(255, 255, 255, 0.4);
      font-size: 14px;
      font-weight: 600;
      line-height: 1;
      text-transform: uppercase;
      padding-top: 1px;
      transition: color var(--transition-duration) ease; }
    .header ul li:not(:last-of-type) {
      margin-right: 35px; }
    .header ul li.active a,
    .header ul li a:hover {
      color: #fff; }

.footer {
  min-height: var(--header-height);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 15px 0 12px; }
  .footer * {
    font-size: 14px; }
  .footer .text-wrapper {
    padding-top: 2px; }

.page {
  min-height: calc(100vh - var(--header-height) * 2); }
  .page .label {
    position: relative;
    padding-left: 18px; }
    .page .label::before {
      content: "";
      position: absolute;
      top: 5px;
      left: 0;
      width: 8px;
      height: 8px;
      background-color: #fff;
      border-radius: 50%; }

#contact-page .form-wrapper form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
#contact-page .form-wrapper .input-wrapper {
  width: 100%;
  margin-bottom: 30px; }
  #contact-page .form-wrapper .input-wrapper:nth-of-type(1), #contact-page .form-wrapper .input-wrapper:nth-of-type(2) {
    width: calc(50% - var(--gap) / 2); }

#subscription-page .unsubscribe-check-wrapper {
  display: flex;
  border: 1px solid transparent;
  border-radius: 10px; }
  #subscription-page .unsubscribe-check-wrapper .text-wrapper {
    width: calc(100% - 35px);
    margin: 1px 0 0 10px; }

#faq-page .section-2 {
  --gap: 50px; }
  #faq-page .section-2 img {
    width: 100%; }

@media (max-width: 991px) {
  .d-flex.two-columns {
    --columns: 1; }

  .d-flex.three-columns {
    --columns: 2; }

  p.mw-450 {
    max-width: 100%; }

  .header,
  .footer,
  #subscription-page .section-2 {
    --gap: 0px; } }
@media (max-width: 575px) {
  h1 {
    font-size: 50px; }

  .d-flex.three-columns {
    --columns: 1; }

  .header ul.d-flex {
    justify-content: center; }

  .footer {
    text-align: center; }

  #contact-page .form-wrapper .input-wrapper:nth-of-type(1), #contact-page .form-wrapper .input-wrapper:nth-of-type(2) {
    width: 100%; } }
