@font-face {
  font-family: "Zalando";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/ZalandoSansExpanded-ExtraLight.woff2") format("woff2");
}
@font-face {
  font-family: "Zalando";
  font-style: italic;
  font-weight: 200;
  src: url("../fonts/ZalandoSansExpanded-ExtraLightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Zalando";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/ZalandoSansExpanded-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Zalando";
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/ZalandoSansExpanded-LightItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Zalando";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ZalandoSansExpanded-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Zalando";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/ZalandoSansExpanded-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Zalando";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/ZalandoSansExpanded-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Zalando";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/ZalandoSansExpanded-MediumItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Zalando";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/ZalandoSansExpanded-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Zalando";
  font-style: italic;
  font-weight: 600;
  src: url("../fonts/ZalandoSansExpanded-SemiBoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Zalando";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/ZalandoSansExpanded-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "Zalando";
  font-style: italic;
  font-weight: 800;
  src: url("../fonts/ZalandoSansExpanded-ExtraBoldItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Zalando";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/ZalandoSansExpanded-Black.woff2") format("woff2");
}
/* == BASE RULES AND VARIABLES== */
*:focus {
  outline: none;
}

*:invalid {
  box-shadow: none;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-width: 360px;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font: normal normal 14px/1.5 Zalando, sans-serif, sans-serif;
  background: linear-gradient(120deg, #232930 16.25%, #06060B 97.39%);
  color: #fff;
}

/* == text elements == */
h1, h2, h3, h4, h5, h6 {
  margin: 0.5em 0;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 34px;
}

h4 {
  font-size: 24px;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin: 0 0 1em;
}

p {
  margin: 0 0 0.75em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  transition: all 0.25s ease-out;
  text-decoration: none;
  background-color: transparent;
}

strong {
  font-weight: 600;
}

/* == media elements == */
img {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}

img,
iframe,
video {
  max-width: 100%;
  user-select: none;
}

a img {
  border: none;
}

/* == form elements == */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 34px;
}

.form-footer {
  display: flex;
  gap: 20px;
}

.form-footer-btn {
  min-width: 130px;
}

.form-footer {
  justify-content: space-between;
}

.field {
  width: 100%;
}

.field-half {
  width: calc(50% - 20px);
}

input, textarea, button, select {
  font: inherit;
  color: inherit;
}

input, textarea {
  outline: none;
}

input {
  width: 100%;
}

[type=search] {
  appearance: textfield;
}
[type=search]::-webkit-search-decoration, [type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-results-button, [type=search]::-webkit-search-results-decoration {
  display: none;
}

.input-text {
  appearance: none;
  width: 100%;
  height: 40px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: border-color 0.25s ease-out;
  font-size: 16px;
}

.input-text:focus {
  border-color: #2288E1;
}

.input-file {
  display: none;
  opacity: 0;
  position: absolute;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: center;
}

.checkbox input[type=checkbox] {
  appearance: none;
  display: inline-block;
  margin: 0;
  padding: 0;
  border: none;
  width: 20px;
  height: 20px;
  position: relative;
  margin: 0;
  flex: 0 0 auto;
  background-color: #fff;
  border: 1px solid #DADADA;
  border-radius: 4px;
  cursor: pointer;
}

.checkbox input[type=checkbox]:focus {
  outline: 2px solid #2288E1;
}

.checkbox input[type=checkbox]::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 8px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-mask-image: url("../img/check.svg");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: currentColor;
  color: #fff;
  opacity: 0;
}

.checkbox input[type=checkbox]::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #2288E1;
  border-radius: inherit;
  opacity: 0;
}

.checkbox input[type=checkbox]:checked {
  border-width: 0;
}

.checkbox input[type=checkbox]:checked::after {
  opacity: 1;
}

.checkbox input[type=checkbox]:checked:before {
  opacity: 1;
}

.checkbox a {
  color: #2288E1;
  text-decoration: underline;
}

textarea {
  resize: none;
  overflow: auto;
}

.textarea-text {
  width: 100%;
  height: 40px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
}

.textarea-text:focus {
  border-color: #2288E1;
}

select::-ms-expand {
  display: none;
}

label {
  user-select: none;
}

.field-label {
  display: block;
  margin: 0 0 8px;
  line-height: 1;
  font-size: 16px;
}

.field-label em {
  color: #F82E2E;
}

button {
  cursor: pointer;
  background: 0;
  color: inherit;
  transition: all 0.25s ease-out;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  user-select: none;
  cursor: pointer;
  padding: 17px 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  max-width: 100%;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}

.btn:focus {
  outline: 2px solid #2288E1;
}

.btn-bordered-white {
  border-color: #fff;
}

.btn-bordered-black {
  border-color: #000;
}

.btn-block {
  width: 100%;
}

/* == table elements == */
table {
  width: 100%;
}

/* == SKELETON RULES == */
/*~ header ~*/
.header {
  padding: 28px 0;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}

.header > .container {
  display: flex;
  align-items: center;
}

.header-buttons {
  margin: 0 0 0 auto;
}

.logo {
  font-weight: 600;
  font-size: 26px;
}

/*~ skeleton ~*/
.main {
  flex: 1 1 auto;
}

.container {
  max-width: 1470px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

.box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.buttons-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* == LAYOUT RULES == */
.intro {
  min-height: 100vh;
  padding: var(--h-height) 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.intro::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}

.intro .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
}

.intro-text {
  padding: 32px 0 0;
  max-width: 900px;
  font-size: 20px;
}

.intro-text p {
  max-width: 720px;
  width: 100%;
}

.services {
  padding: 100px 0;
  border-top: 1px solid #2288E1;
  border-bottom: 1px solid #2288E1;
}

.services-head {
  margin: 0 0 50px;
}

.services-card {
  width: calc((100% - 60px) / 3);
  flex: 1 1 auto;
  border-radius: 40px;
  border: 1px solid rgba(34, 136, 225, 0.4);
  backdrop-filter: blur(10px);
  padding: 40px;
}

.services-card p {
  color: rgba(255, 255, 255, 0.6);
}

/*~ footer ~*/
.footer {
  padding: 54px 0;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

.footer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}

.footer-text {
  margin: 0 0 20px;
}

.footer-text:last-child {
  margin: 0;
}

.modal {
  padding: 60px;
  max-width: 720px;
  width: 100%;
  border-radius: 40px;
  color: #000;
  display: none;
}

.modal-head {
  font-size: 20px;
  margin: 0 0 60px;
}

.modal-head:last-child {
  margin: 0;
}

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

.modal-small .modal-head {
  margin: 0 0 30px;
}

.fancybox-slide--html .fancybox-close-small {
  padding: 4px;
  right: 20px;
  top: 20px;
}

/* ~~ MEDIA QUERIES ALWAYS AT THE END ~~ */
@media (hover: hover) {
  .btn-bordered-white:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .btn-bordered-black:hover {
    background-color: #000;
    color: #fff;
  }
  .checkbox a:hover {
    text-decoration: none;
  }
}
@media (max-width: 1459px) {
  h1 {
    font-size: 56px;
  }
  h2 {
    font-size: 38px;
  }
  h4 {
    font-size: 22px;
  }
  .container {
    max-width: 1270px;
  }
}
@media (max-width: 1279px) {
  h1 {
    font-size: 46px;
  }
  h2 {
    font-size: 36px;
  }
  h4 {
    font-size: 20px;
  }
  .container {
    max-width: 960px;
  }
  .intro-text {
    font-size: 18px;
  }
  .services {
    padding: 60px 0;
  }
  .services-head {
    margin: 0 0 40px;
  }
  .services-card {
    padding: 30px;
    border-radius: 30px;
  }
  .footer {
    padding: 40px 0;
  }
  .modal-head {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .container {
    max-width: 100%;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 34px;
  }
  h4 {
    font-size: 18px;
  }
  .btn {
    padding: 15px 20px;
    font-size: 14px;
  }
  .header {
    padding: 15px 0;
  }
  .logo {
    font-size: 22px;
  }
  .services {
    padding: 45px 0;
  }
  .services-card {
    width: calc((100% - 30px) / 2);
  }
  .modal-head {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 32px;
  }
  .form-row {
    gap: 0;
  }
  .field {
    width: 100%;
    margin: 0 0 32px;
  }
  .field:last-child {
    margin: 0;
  }
  .field-label {
    font-size: 14px;
    margin: 0;
  }
  .input-text {
    font-size: 14px;
  }
  .textarea-text {
    font-size: 14px;
  }
  .intro-text {
    font-size: 16px;
  }
  .form-footer {
    flex-direction: column;
  }
  .form-footer-checkbox {
    order: -1;
  }
  .form-footer-btn {
    width: 100%;
  }
  .modal {
    max-width: 100%;
    padding: 30px;
    border-radius: 30px;
  }
  .modal-head {
    font-size: 14px;
    padding: 0 15px 0 0;
    margin: 0 0 30px;
  }
  .fancybox-slide--html .fancybox-close-small {
    right: 10px;
    top: 5px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  .services-card {
    width: 100%;
  }
  .footer {
    font-size: 12px;
  }
}