:root {
  --main-font-family: "Poppins", sans-serif;
  --white: #FFFFFF;
  --box-shadow-dropdown: 4px 10px 16px 0px rgba(0, 0, 0, 0.20);
  --bg-screen-container: #12161C;
  --bg-button-primary: #242936;
  --bg-button-active: #FF7E00;
  --border-form: rgba(255, 255, 255, 0.1);
  --border-select: #1B1B1E;
  --border-radius-xxs: 0.125rem;
  --border-radius-xs: 0.25rem;
  --border-radius-s: 0.5rem;
  --border-radius-m: 0.625rem;
  --box-shadow-header: 0 5px 10px rgb(0 0 0 / 25%);
}

body {
  font-family: var(--main-font-family);
  font-style: normal;
}

h1 {
  font-weight: 400;
  font-size: 5rem;
  line-height: 6.25rem;
  text-align: center;
  color: var(--white);
}
@media only screen and (max-width: 100em) {
  h1 {
    font-size: 3rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 37.5em) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-weight: 400;
  font-size: 4rem;
  line-height: 4rem;
  text-transform: uppercase;
  color: var(--white);
}
@media only screen and (max-width: 100em) {
  h2 {
    font-size: 2rem;
    line-height: 1.5;
  }
}

h3 {
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 4rem;
  text-transform: uppercase;
  color: #082B5F;
}
@media only screen and (max-width: 100em) {
  h3 {
    font-size: 1.75rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 37.5em) {
  h3 {
    font-size: 1rem;
  }
}

h4 {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

h5 {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75rem;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

p {
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

a {
  color: var(--blue-light);
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  box-sizing: border-box;
  background: var(--bg-screen-container);
}

::-webkit-scrollbar {
  width: 0.75rem;
  height: 0.5rem;
}

::-webkit-scrollbar-track {
  background: var(--background-scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background: var(--background-scrollbar-thumb);
  border-radius: 0.75rem;
}

.container {
  width: 100%;
  max-width: 1522px;
  margin: 0 auto;
  padding: 0 5rem;
}
@media only screen and (max-width: 100em) {
  .container {
    max-width: 992px;
  }
}
@media only screen and (max-width: 75em) {
  .container {
    padding: 0 1rem;
  }
}
.container.xl {
  max-width: 1748px;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

input {
  border: 0;
  outline: none;
}

.mb-2 {
  margin-bottom: 1.25rem;
}

.screen-container {
  position: relative;
  height: 100vh;
}

.logo {
  display: block;
  width: 100%;
  cursor: pointer;
}

.button button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  background: var(--bg-button-primary);
  border-radius: 3rem;
  border: none;
  padding: 1rem 3rem;
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--white);
  cursor: pointer;
  transition: 0.2s;
}
.button button:hover {
  background: var(--bg-button-active);
}

.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}
.bg-image.visible {
  overflow: visible;
}
.bg-image.full-width-height img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg-image.half-width {
  width: 55%;
}

.notification {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  pointer-events: none;
  opacity: 0;
  transition: 1s;
}
.notification h4 {
  font-weight: 200;
  font-size: 2.5rem;
  line-height: 1.2;
  text-transform: uppercase;
}
@media only screen and (max-width: 37.5em) {
  .notification h4 {
    font-size: 1.75rem;
  }
}
.notification p {
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 1.33;
  opacity: 0.8;
}
@media only screen and (max-width: 37.5em) {
  .notification p {
    font-size: 1rem;
  }
}
.notification.show {
  opacity: 1 !important;
  pointer-events: auto;
}

.contacts-us__wrap .form .form__contact-us .empty-field {
  border-bottom: 1px solid var(--bg-button-active);
}

.section__contacts-us {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 2rem;
  padding: 1rem 0px;
}
@media only screen and (max-width: 100em) {
  .section__contacts-us {
    padding: 1rem 0 3rem;
    gap: 1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section__contacts-us {
    justify-content: start;
    padding: 0 0 2rem;
    gap: 0;
  }
}

.contacts-us__logo img {
  width: 7.5rem;
}
@media only screen and (max-width: 75em) {
  .contacts-us__logo {
    text-align: center;
  }
  .contacts-us__logo img {
    width: 7.26rem;
  }
}
@media only screen and (max-width: 75em) and (max-width: 37.5em) {
  .contacts-us__logo img {
    width: 6.38rem;
  }
}

.contacts-us__wrap {
  display: flex;
  gap: 1rem;
  flex-grow: 1;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .contacts-us__wrap {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 37.5em) {
  .contacts-us__wrap {
    gap: 1rem;
  }
}
.contacts-us__wrap .promo {
  display: flex;
  flex-direction: column;
  flex: 1 1 50%;
  padding-right: 6rem;
}
@media only screen and (max-width: 75em) {
  .contacts-us__wrap .promo {
    flex: 1 1 auto;
    padding-right: 0;
    justify-content: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .contacts-us__wrap .promo {
    flex-direction: row;
  }
}
.contacts-us__wrap .promo__content {
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  height: 100%;
}
@media only screen and (max-width: 75em) {
  .contacts-us__wrap .promo__content {
    margin-left: 0;
    align-items: center;
  }
}
.contacts-us__wrap .promo__content h1 {
  font-weight: 200;
  font-size: 5rem;
  line-height: 105%;
  text-align: start;
  margin-bottom: 2rem;
  max-width: 47.5rem;
}
@media only screen and (max-width: 100em) {
  .contacts-us__wrap .promo__content h1 {
    font-size: 3.5rem;
    max-width: 40.5rem;
  }
}
@media only screen and (max-width: 75em) {
  .contacts-us__wrap .promo__content h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.563rem;
    max-width: 40rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .contacts-us__wrap .promo__content h1 {
    font-size: 2rem;
    max-width: 23rem;
  }
}
.contacts-us__wrap .promo__content p {
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 150%;
  letter-spacing: 0.2;
  opacity: 0.7;
  max-width: 41rem;
}
@media only screen and (max-width: 75em) {
  .contacts-us__wrap .promo__content p {
    font-size: 1.25rem;
    opacity: 0.6;
    max-width: 30rem;
    text-align: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .contacts-us__wrap .promo__content p {
    font-size: 0.9rem;
    max-width: 20rem;
  }
}
.contacts-us__wrap .form {
  position: relative;
  display: flex;
  justify-content: center;
  color: #FFFFFF;
  padding-right: 1.8rem;
}
@media only screen and (max-width: 75em) {
  .contacts-us__wrap .form {
    flex: 1 1 auto;
    margin: 0;
    padding-right: 0;
  }
}
.contacts-us__wrap .form .form__wrap {
  position: relative;
  width: 32.5rem;
  padding: 6rem 0 5rem;
}
@media only screen and (max-width: 100em) {
  .contacts-us__wrap .form .form__wrap {
    padding: 0;
    width: 28rem;
  }
}
.contacts-us__wrap .form .form__wrap .bg-image.visible img {
  position: absolute;
  bottom: -1.5rem;
  right: 0;
  width: 170%;
}
@media only screen and (max-width: 37.5em) {
  .contacts-us__wrap .form .form__wrap .bg-image.visible img {
    bottom: 0;
    width: 169%;
    height: 170%;
  }
}
@media only screen and (max-width: 75em) {
  .contacts-us__wrap .form .form__wrap {
    padding: 1.5rem 3.75rem;
    width: 37.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .contacts-us__wrap .form .form__wrap {
    padding: 2rem 1.5rem;
    width: 21.438rem;
  }
}
.contacts-us__wrap .form .form__contact-us {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  opacity: 1;
  transition: 0.4s;
}
@media only screen and (max-width: 100em) {
  .contacts-us__wrap .form .form__contact-us {
    gap: 1.75rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .contacts-us__wrap .form .form__contact-us {
    gap: 1.5rem;
  }
}
.contacts-us__wrap .form .form__contact-us p {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.2;
}
@media only screen and (max-width: 75em) {
  .contacts-us__wrap .form .form__contact-us p {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 37.5em) {
  .contacts-us__wrap .form .form__contact-us p {
    font-size: 0.875rem;
    line-height: 1.43;
  }
}
.contacts-us__wrap .form .form__contact-us input {
  width: 100%;
  border-bottom: 1px solid var(--border-form);
  background: none;
  padding: 1.25rem 0.25rem;
  font-family: var(--main-font-family);
  font-style: normal;
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--white);
}
.contacts-us__wrap .form .form__contact-us input:-webkit-autofill {
  background-color: transparent !important;
  -webkit-text-fill-color: var(--white) !important;
  color: var(--white);
  -webkit-background-clip: text !important;
  background-clip: text !important;
}
@media only screen and (max-width: 75em) {
  .contacts-us__wrap .form .form__contact-us input {
    padding: 1.125rem 0.25rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 37.5em) {
  .contacts-us__wrap .form .form__contact-us input {
    padding: 0.875rem 0.25rem;
    font-size: 0.875rem;
    line-height: 1.43;
  }
}
.contacts-us__wrap .form .form__contact-us .custom-select p {
  margin-bottom: 0.5rem;
}
.contacts-us__wrap .form .form__contact-us textarea {
  height: 4rem;
  background-color: transparent;
  border: none;
  resize: none;
  outline: none;
  border-bottom: 1px solid var(--border-form);
  padding: 1.25rem 0.25rem;
  font-family: var(--main-font-family);
  font-style: normal;
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--white);
}
@media only screen and (max-width: 75em) {
  .contacts-us__wrap .form .form__contact-us textarea {
    height: 3.75rem;
    padding: 1.125rem 0.25rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 37.5em) {
  .contacts-us__wrap .form .form__contact-us textarea {
    height: 3rem;
    padding: 0.875rem 0.25rem;
    font-size: 0.875rem;
    line-height: 1.43;
  }
}
.contacts-us__wrap .form .form__contact-us.hidden {
  opacity: 0;
}
.contacts-us__wrap .form .form-box__button {
  margin-top: 1rem;
}
@media only screen and (max-width: 75em) {
  .contacts-us__wrap .form .form-box__button {
    margin-top: 1rem;
  }
  .contacts-us__wrap .form .form-box__button button {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 37.5em) {
  .contacts-us__wrap .form .form-box__button {
    margin-top: 0.5rem;
  }
  .contacts-us__wrap .form .form-box__button button {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.43;
  }
}
.contacts-us__wrap .form .form-box__button img {
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 75em) {
  .contacts-us__email {
    margin: 3rem auto 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .contacts-us__email {
    margin-top: 2.5rem;
  }
}
.contacts-us__email a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
@media only screen and (max-width: 75em) {
  .contacts-us__email a {
    gap: 0.75rem;
  }
}
.contacts-us__email a img {
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 37.5em) {
  .contacts-us__email a {
    gap: 0.5rem;
  }
  .contacts-us__email a img {
    width: 24px;
    height: 24px;
  }
}
.contacts-us__email a p {
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 1.6;
}
@media only screen and (max-width: 75em) {
  .contacts-us__email a p {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}
@media only screen and (max-width: 37.5em) {
  .contacts-us__email a p {
    font-size: 0.875rem;
    line-height: 1.43;
  }
}

.custom-select {
  position: relative;
  border-bottom: 1px solid var(--border-form);
}
.custom-select:hover {
  border-bottom: 1px solid #2E8FF0;
}
.custom-select select {
  display: none;
}

.select-selected {
  position: relative;
  padding: 1.25rem 0.25rem;
  font-family: var(--main-font-family);
  font-style: normal;
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--white);
  opacity: 0.4;
  cursor: pointer;
}
@media only screen and (max-width: 75em) {
  .select-selected {
    font-size: 1rem;
    line-height: 1.5;
    padding: 1.125rem 0.25rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .select-selected {
    font-size: 0.875rem;
    line-height: 1.43;
    padding: 0.75rem 0.25rem;
  }
}

.is-selected {
  opacity: 1;
}

.select-selected:after {
  position: absolute;
  top: 30%;
  right: 1%;
  content: url("../../static/img/expand_down.png");
  display: inline-block;
  width: 24px;
  height: 24px;
  transition: 0.2s;
}

.select-selected.select-arrow-active:after {
  transform: rotate(180deg) translateY(-10%);
}

.select-items div {
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--white);
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--border-select);
}
@media only screen and (max-width: 75em) {
  .select-items div {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 37.5em) {
  .select-items div {
    font-size: 0.875rem;
    line-height: 1.43;
  }
}

.select-items {
  position: absolute;
  background: #0F141B;
  box-shadow: var(--box-shadow-dropdown);
  top: calc(100% + 0.125rem);
  left: 0;
  right: 0;
  z-index: 99;
  width: calc(100% + 0.125rem);
}
.select-items div {
  font-weight: 200;
}

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: var(--bg-button-primary);
}
/*# sourceMappingURL=style.min.css.map */
