.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  padding-top: 6rem;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(77, 94, 189, 0.6);
}
@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .modal {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(77, 94, 189, 0.6);
  }
}
.modal__box {
  position: relative;
  z-index: 10100;
  top: 0px;
  left: 50%;
  max-width: 712px;
  padding: 3.8rem 2.5rem 5.5rem 2.5rem;
  background-color: #fff;
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  -webkit-animation-name: popup;
  -webkit-animation-duration: 0.4s;
  animation-name: popup;
  animation-duration: 0.4s;
}
@media only screen and (max-width: 705px) {
  .modal__box {
    -webkit-transform: translateX(-50%) scale(0.95);
    -ms-transform: translateX(-50%) scale(0.95);
    transform: translateX(-50%) scale(0.95);
  }
}
.modal__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.modal__tab-buttons {
  margin-bottom: 33px;
}
.modal__tab-section, .modal__verif, .modal__verif-secondary, .modal__verif-secondary--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.modal__tab-section .app-form__section, .modal__verif .app-form__section, .modal__verif-secondary .app-form__section, .modal__verif-secondary--active .app-form__section {
  margin-top: 2rem;
}
.modal__close-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 33px;
  right: 28.5px;
  cursor: pointer;
}
.modal__heading-section {
  margin-bottom: 2.9rem;
}
.modal__heading-section .heading-secondary {
  margin-bottom: 1.5rem;
}
.modal__btn-section {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 3.7rem;
}
.modal__btn-section .btn-connect:not(:first-child) {
  margin-left: 2rem;
}
@media only screen and (max-width: 855px) {
  .modal__btn-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .modal__btn-section .btn-connect {
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .modal__btn-section .btn-connect:not(:first-child) {
    margin-left: 0;
  }
  .modal__btn-section .btn-connect:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.modal__divider {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3.7rem;
}
.modal__divider-line, .modal__divider-line-half {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  background-color: rgba(34, 46, 113, 0.2);
}
.modal__divider-line-half {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 50%;
  margin: auto;
}
.modal__divider-text {
  font-family: "Ubuntu";
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 1rem;
  color: rgba(34, 46, 113, 0.8);
}
.modal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.modal__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 12rem;
}
@media only screen and (max-width: 425px) {
  .modal__form {
    padding: 0;
  }
}
.modal__form select {
  background-color: transparent;
}
.modal__form select:focus, .modal__form select:active {
  background-color: transparent;
}
.modal__form-input, .modal__form-select {
  font-family: "Lato" !important;
  font-weight: 400 !important;
  font-size: 1.6rem !important;
  line-height: 1.7 !important;
  color: #222e71;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 40rem;
  border: 0;
  padding: 2.3rem 2.4rem;
  background-color: rgba(89, 165, 244, 0.1);
  border-radius: 10px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media only screen and (max-width: 1050px) {
  .modal__form-input, .modal__form-select {
    font-size: 1.7rem !important;
  }
}
@media only screen and (max-width: 780px) {
  .modal__form-input, .modal__form-select {
    font-size: 14px !important;
  }
}
.modal__form-input:not(:last-child), .modal__form-select:not(:last-child) {
  margin-bottom: 2rem;
}
.modal__form-input:focus, .modal__form-select:focus {
  outline: none;
  background-color: rgba(89, 165, 244, 0.12);
}
.modal__form-input::-webkit-input-placeholder, .modal__form-select::-webkit-input-placeholder {
  font-family: "Lato" !important;
  font-weight: 400 !important;
  font-size: 1.6rem !important;
  line-height: normal;
  color: rgba(34, 46, 113, 0.6) !important;
  opacity: 1;
}
@media only screen and (max-width: 425px) {
  .modal__form-input, .modal__form-select {
    font-size: 1.5rem;
  }
}
.modal__form-select {
  padding-top: 2.1rem !important;
  padding-bottom: 2.1rem !important;
}
@media only screen and (max-width: 425px) {
  .modal__form-select {
    font-size: 13px;
  }
}
.modal__form-select-option {
  color: #b6b6b6 !important;
}
.modal__text-small {
  font-size: 1.2rem;
  margin-top: 2rem;
  color: #222e71;
  opacity: 0.6;
}
.modal__text-small a {
  color: #222e71;
}
.modal__text-small a:link, .modal__text-small a:visited {
  color: #222e71;
}
.modal__promos {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -13rem 2rem;
}
@media screen and (max-width: 560px) {
  .modal__promos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.modal__promos-item {
  position: relative;
  width: 61%;
  height: 34.4rem;
  border-radius: 12px;
  background-color: #ffffff;
  background-image: url("../img/backgrounds/bg-inscription-desktop.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-box-shadow: 0 1px 12px 0 rgba(24, 31, 71, 0.2);
  box-shadow: 0 1px 12px 0 rgba(24, 31, 71, 0.2);
}
@media only screen and (max-width: 855px) {
  .modal__promos-item {
    background-image: url("../img/backgrounds/bg-inscription-mobile.png");
    background-position: center -60px;
    width: 323px;
    height: 33.5rem;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
@media only screen and (max-width: 590px) {
  .modal__promos-item {
    margin: auto;
  }
  .modal__promos-item:not(:last-of-type) {
    margin-bottom: 16px;
  }
}
.modal__store {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  max-width: 85vw;
  margin-top: 17px;
}
.modal__store-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 185px;
}
.modal__store-btn:last-child {
  margin-left: 20px;
}
.modal__spinner-container {
  width: 100%;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 300px;
}
.modal .flatpickr-input {
  background: url("../img/icons/calendar.png") 96%/1.4rem no-repeat rgba(89, 165, 244, 0.1) !important;
}
.modal .btn-primary {
  -ms-flex-item-align: center;
  align-self: center;
  margin-top: 1.7rem;
}
.modal__error {
  font-family: "Ubuntu";
  font-size: 1.4rem;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0px;
  text-align: center;
  color: #e57800;
}
.modal__error-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 2.7rem;
  margin-top: -1rem;
}
.modal__error-icon {
  width: 18.6px;
  margin-right: 7px;
  margin-top: -3px;
}
.modal__verif, .modal__verif-secondary, .modal__verif-secondary--active {
  position: relative !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.modal__verif .modal__form, .modal__verif-secondary .modal__form, .modal__verif-secondary--active .modal__form {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}
.modal__verif .modal__form .cta, .modal__verif-secondary .modal__form .cta, .modal__verif-secondary--active .modal__form .cta {
  margin-left: auto;
  margin-right: auto;
}
.modal__verif-secondary, .modal__verif-secondary--active {
  position: absolute !important;
  top: 46px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  padding: 3rem 5rem 7.3rem 5rem;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: all ease-in 0.1s;
  -o-transition: all ease-in 0.1s;
  transition: all ease-in 0.1s;
  opacity: 0;
  visibility: hidden;
  display: none;
}
@media only screen and (max-width: 560px) {
  .modal__verif-secondary, .modal__verif-secondary--active {
    padding: 3rem 20px 44px 20px;
  }
}
.modal__verif-secondary-title {
  font-family: "Ubuntu";
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.05rem;
  color: #5aa3f3;
  text-transform: none;
}
@media only screen and (max-width: 560px) {
  .modal__verif-secondary-title {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 0;
  }
}
.modal__verif-secondary--active {
  top: -40px;
  opacity: 1;
  visibility: visible;
  -webkit-box-shadow: 0 38px 50px rgba(0, 0, 0, 0.22);
          box-shadow: 0 38px 50px rgba(0, 0, 0, 0.22);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal__verif-secondary__btn-close {
  position: absolute;
  background-color: transparent;
  border: none;
  height: 16px;
  width: 16px;
  right: 16px;
  top: 16px;
  opacity: 0.6;
  cursor: pointer;
}
@media only screen and (max-width: 560px) {
  .modal__verif-secondary__btn-close {
    right: 10px;
    top: 10px;
  }
}
.modal__verif-secondary .divider, .modal__verif-secondary--active .divider {
  width: 100%;
  height: 1px;
  background-color: rgba(77, 94, 189, 0.1);
}

@-webkit-keyframes popup {
  0% {
    -webkit-transform: translate(-50%, -50%), scale(0.25);
    transform: translate(-50%, -50%), scale(0.25);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%), scale(1);
    transform: translate(-50%, -50%), scale(1);
    opacity: 1;
  }
}
@keyframes popup {
  0% {
    -webkit-transform: translate(-50%, -50%), scale(0.25);
    transform: translate(-50%, -50%), scale(0.25);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%), scale(1);
    transform: translate(-50%, -50%), scale(1);
    opacity: 1;
  }
}
#signup-modal .flatpickr-input {
  background: url(../img/icons/calendar.png) 93%/1.4rem no-repeat rgba(89, 165, 244, 0.1) !important;
}
#signup-modal input,
#signup-modal select {
  line-height: normal !important;
}
#signup-modal select {
  border: none;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../img/icons/arrow_blue_down.png) 100%/1.4rem no-repeat transparent;
  color: #222e71 !important;
}
.tag, .tag__header-app--active, .tag__header-app, .tag__header-home--active, .tag__header-home {
  height: 3.5rem;
  position: absolute;
  width: 100%;
  max-width: 16.9rem;
  text-transform: none;
  left: 50%;
  bottom: -20px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.27rem;
  text-align: center;
  padding: 5px 1.1rem;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tag__header-home {
  background-color: #fff;
  color: #5aa3f3;
  border: 2px solid #5aa3f3;
}
.tag__header-home--active {
  background-color: #5aa3f3;
  color: #fff;
  border: 2px solid #fff;
}
.tag__header-app {
  background-color: #5aa3f3;
  color: #fff;
  border: 2px solid #fff;
}
.tag__header-app--active {
  background-color: #eff2f8;
  color: #222e71;
  border: 2px solid #222e71;
}
.tag__content {
  line-height: 2.4rem;
  text-align: center;
}

.header {
  background-image: -o-linear-gradient(left, #5aa3f3, #4d5ebd);
  background-image: -webkit-gradient(linear, left top, right top, from(#5aa3f3), to(#4d5ebd));
  background-image: linear-gradient(to right, #5aa3f3, #4d5ebd);
  position: relative;
  z-index: 1000;
}
.header::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 200%;
  width: 100%;
  background-image: -o-linear-gradient(left, #5aa3f3, #4d5ebd);
  background-image: -webkit-gradient(linear, left top, right top, from(#5aa3f3), to(#4d5ebd));
  background-image: linear-gradient(to right, #5aa3f3, #4d5ebd);
  z-index: -1;
}
.header__top-bar {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.header__top-bar::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 98.5vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 855px) {
  .header__top-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 2.25rem 0;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    height: 100%;
  }
}
.header #header__chevron--back,
.header #header__chevron--forward {
  display: none;
}
@media only screen and (max-width: 855px) {
  .header #header__chevron--back,
.header #header__chevron--forward {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.header [class^=header__chevron--].btn-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 32px;
  top: 19px;
  border: 1px solid white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header [class^=header__chevron--].btn-icon-no-circle img {
  height: 26px;
}
.header__chevron img, .header__chevron--forward img, .header__chevron--back img {
  height: 20px;
}
.header__logo-box {
  line-height: 0;
}
@media only screen and (max-width: 855px) {
  .header__logo-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__logo {
  width: 23rem;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
@media only screen and (max-width: 855px) {
  .header__logo {
    width: 18rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 855px) {
  .header__logo-link {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 856px) {
  .header__logo-event {
    margin-top: -4px;
    margin-bottom: -6px;
    height: 7rem;
    width: unset !important;
  }
}
@media only screen and (max-width: 855px) {
  .header__logo-event {
    margin-top: -8px;
    margin-bottom: 0;
  }
}
.header__search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__search-box .btn-secondary,
.header__search-box .btn-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__search-box .btn-secondary .btn-icon,
.header__search-box .btn-primary .btn-icon {
  height: 2rem;
}
@media only screen and (max-width: 855px) {
  .header__search-box {
    width: 100%;
    margin-top: 2rem;
  }
}
.header__input {
  font-family: "Lato" !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  opacity: 1 !important;
  color: #222e71;
  background-color: #fff;
  border: none;
  padding: 2.4rem 2.5rem;
  border-radius: 1rem;
  width: 33vw;
  max-width: 39.5rem;
  margin-right: -6.8rem;
}
@media only screen and (max-width: 1050px) {
  .header__input {
    padding-left: 10px;
    max-width: 100%;
    margin-right: -7.5rem;
  }
}
@media only screen and (max-width: 855px) {
  .header__input {
    width: 100%;
    padding-left: 2.5rem;
  }
}
.header__input:focus {
  outline: none;
  background-color: #fff;
}
.header__input::-webkit-input-placeholder {
  font-family: "Lato" !important;
  font-size: 15px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: 0px !important;
  color: rgba(34, 46, 113, 0.6);
  font-stretch: normal !important;
}
.header__top-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 855px) {
  .header__top-links {
    display: none;
  }
}
.header__top-links-item, .header:link {
  display: inline-block;
}
.header__top-links-item:visited, .header:link:visited {
  text-decoration: none;
}
.header__top-links-item:not(:last-child), .header:link:not(:last-child) {
  margin-right: 3.6rem;
}
.header__top-link {
  font-family: "Ubuntu";
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.12rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
@media only screen and (min-width: 1331px) and (max-width: 1375px) {
  .header__top-link {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1067px) and (max-width: 1138px) {
  .header__top-link {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1051px) and (max-width: 1066px) {
  .header__top-link {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 906px) and (max-width: 968px) {
  .header__top-link {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 875px) and (max-width: 905px) {
  .header__top-link {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 874px) {
  .header__top-link {
    font-size: 1.2rem;
  }
}
.header__navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 2.8rem 0 0;
}
.header__navbar::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 98.5vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 855px) {
  .header__navbar {
    display: none;
  }
}
.header__navbar-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__navbar-item {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 1.4rem;
  text-transform: uppercase;
  -ms-flex-item-align: center;
  align-self: center;
  position: relative;
  padding: 2rem 0;
}
.header__navbar-link, .header__navbar-link:visited {
  font-family: "Ubuntu";
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.12rem;
  display: inline;
  padding: 2rem 0;
}
@media only screen and (min-width: 1331px) and (max-width: 1375px) {
  .header__navbar-link, .header__navbar-link:visited {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1067px) and (max-width: 1138px) {
  .header__navbar-link, .header__navbar-link:visited {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1051px) and (max-width: 1066px) {
  .header__navbar-link, .header__navbar-link:visited {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 906px) and (max-width: 968px) {
  .header__navbar-link, .header__navbar-link:visited {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 875px) and (max-width: 905px) {
  .header__navbar-link, .header__navbar-link:visited {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 874px) {
  .header__navbar-link, .header__navbar-link:visited {
    font-size: 1.2rem;
  }
}
.header__navbar-link-active {
  position: relative;
}
.header__navbar-link-active::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 14px;
  background-color: #59dc87;
  top: 6.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.header__navbar-link-disabled {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
}
.header__navbar-left .header__navbar-item:not(:last-child) {
  margin-right: 5rem;
}
.header__navbar-link--icon {
  padding-left: 1rem;
}
.header__navbar-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  box-align: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.header__navbar-right .header__navbar-item:not(:first-child) {
  margin-left: 2rem;
}
.header__navbar-right .header__navbar-item:nth-child(2) {
  margin-left: 5.6rem;
}
@media only screen and (min-width: 1331px) and (max-width: 1375px) {
  .header__navbar-right .header__navbar-item:nth-child(2) {
    margin-left: 5.6rem;
  }
}
@media only screen and (min-width: 1151px) and (max-width: 1331px) {
  .header__navbar-right .header__navbar-item:nth-child(2) {
    margin-left: 6.6rem;
  }
}
@media only screen and (min-width: 1139px) and (max-width: 1150px) {
  .header__navbar-right .header__navbar-item:nth-child(2) {
    margin-left: 5.6rem;
  }
}
@media only screen and (min-width: 1067px) and (max-width: 1138px) {
  .header__navbar-right .header__navbar-item:nth-child(2) {
    margin-left: 4.6rem;
  }
}
@media only screen and (min-width: 1051px) and (max-width: 1066px) {
  .header__navbar-right .header__navbar-item:nth-child(2) {
    margin-left: 3.6rem;
  }
}
@media only screen and (min-width: 969px) and (max-width: 996px) {
  .header__navbar-right .header__navbar-item:nth-child(2) {
    margin-left: 2.6rem;
  }
}
@media only screen and (max-width: 933px) {
  .header__navbar-right .header__navbar-item:nth-child(2) {
    margin-left: 2.6rem;
  }
}
.header__navbar-visitor {
  padding-right: 2.3rem;
}
@media only screen and (max-width: 1150px) {
  .header__navbar-visitor {
    padding-right: 3rem;
  }
}
@media only screen and (min-width: 1331px) and (max-width: 1375px) {
  .header__navbar-visitor .header__navbar-right .header__navbar-item:nth-child(2) {
    margin-left: 5.6rem;
  }
}
@media only screen and (min-width: 1151px) and (max-width: 1331px) {
  .header__navbar-visitor .header__navbar-right .header__navbar-item:nth-child(2) {
    margin-left: 6.6rem;
  }
}
@media only screen and (min-width: 1139px) and (max-width: 1150px) {
  .header__navbar-visitor .header__navbar-right .header__navbar-item:nth-child(2) {
    margin-left: 5.6rem;
  }
}
@media only screen and (min-width: 1067px) and (max-width: 1138px) {
  .header__navbar-visitor .header__navbar-right .header__navbar-item:nth-child(2) {
    margin-left: 4.6rem;
  }
}
@media only screen and (min-width: 1051px) and (max-width: 1066px) {
  .header__navbar-visitor .header__navbar-right .header__navbar-item:nth-child(2) {
    margin-left: 3.6rem;
  }
}
@media only screen and (min-width: 969px) and (max-width: 996px) {
  .header__navbar-visitor .header__navbar-right .header__navbar-item:nth-child(2) {
    margin-left: 2.6rem;
  }
}
@media only screen and (max-width: 933px) {
  .header__navbar-visitor .header__navbar-right .header__navbar-item:nth-child(2) {
    margin-left: 2.6rem;
  }
}
.header__navbar-mobile {
  display: none;
  padding: 2rem 0;
}
.header__navbar-mobile::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 98vw;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 855px) {
  .header__navbar-mobile {
    display: block;
  }
}
.header__navbar-mobile-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.header__navbar-mobile-link-active {
  position: relative;
}
.header__navbar-mobile-link-active::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 14px;
  background-color: #59dc87;
  top: 3.46rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.header__navbar-mobile-link, .header:link, .header:visited {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
}
.header__navbar-mobile-icon {
  height: 3.7rem;
}
.header .btn-big {
  padding: 14px 41px;
  letter-spacing: 0.12rem;
  font-weight: 500;
  font-size: 1.6rem;
}
.header .cta,
.header .btn-big {
  padding: 14px 24px !important;
  font-size: 1.6rem !important;
}
@media only screen and (min-width: 1331px) and (max-width: 1375px) {
  .header .cta,
.header .btn-big {
    font-size: 1.4rem !important;
  }
}
@media only screen and (min-width: 1067px) and (max-width: 1138px) {
  .header .cta,
.header .btn-big {
    font-size: 1.4rem !important;
  }
}
@media only screen and (min-width: 1051px) and (max-width: 1066px) {
  .header .cta,
.header .btn-big {
    font-size: 1.3rem !important;
  }
}
@media only screen and (min-width: 906px) and (max-width: 968px) {
  .header .cta,
.header .btn-big {
    font-size: 1.4rem !important;
  }
}
@media only screen and (min-width: 875px) and (max-width: 905px) {
  .header .cta,
.header .btn-big {
    font-size: 1.3rem !important;
  }
}
@media only screen and (max-width: 874px) {
  .header .cta,
.header .btn-big {
    font-size: 1.2rem !important;
  }
}
.header .btn-social,
.header .btn-social-blue {
  width: 36px;
  height: 36px;
}
.header__search-section {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1001;
}
@media only screen and (max-width: 855px) {
  .header__search-section {
    position: -webkit-sticky;
    position: sticky;
  }
}
.header__links-section {
  margin-top: 13.6rem;
}
@media only screen and (max-width: 855px) {
  .header__links-section {
    display: none;
  }
}

.tabbar__link-title {
  color: #fff;
}
