* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Mariupol", sans-serif;
  text-decoration: none;
  list-style: none;
}

:root {
  --trans: all 0.3s linear;
}

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

.container_pd {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0px 20px;
}

@media (max-width: 1250px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 1020px) {
  .container {
    padding: 0 20px;
  }
}
@media (min-width: 1441px) {
  .container {
    max-width: 1920px;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
}

img {
  width: 100%;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--color_dark_blue);
  border-radius: 6px;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color_black);
}

.btn_yellow {
  color: #fff;
  font-family: Mariupol;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 46px;
  background: #ffc64c;
  height: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 24px;
  padding-right: 24px;
  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;
  cursor: pointer;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  text-wrap: nowrap;
  border: none;
}

.purple-link {
  color: #9090ff;
  font-family: Mariupol;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


.input {
  width: 100%;
  background: white;
  border: none;
  border-bottom: 1px solid #070738;
  padding-bottom: 18px;
  color: #9090ff;
  font-family: Mariupol;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  outline: none;
  cursor: pointer;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.input::-webkit-input-placeholder {
  color: #070738;
  text-transform: uppercase;
}
.input::-moz-placeholder {
  color: #070738;
  text-transform: uppercase;
}
.input:-ms-input-placeholder {
  color: #070738;
  text-transform: uppercase;
}
.input::-ms-input-placeholder {
  color: #070738;
  text-transform: uppercase;
}
.input::placeholder {
  color: #070738;
  text-transform: uppercase;
}
.input:active {
  border-bottom: 1px solid #9090ff;
}
.input:focus {
  border-bottom: 1px solid #9090ff;
}

@media (hover: hover) and (pointer: fine) {
  .btn_yellow:hover {
    background: #9090ff;
  }
  html .header-link:hover {
    border-bottom: 1px solid white;
  }
  .footer-link:hover {
    color: #9090ff;
  }
}