html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Metropolis", sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  color: rgb(15, 33, 54);
  overflow-x: hidden;
}

.mb5-5 {
  margin-bottom: 5.5rem;
}

.no-scroll {
  overflow-y: hidden;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 4px;
}

*::-webkit-scrollbar-track {
  background-color: rgb(255, 255, 255);
}

*::-webkit-scrollbar-thumb {
  background-color: rgb(166, 166, 166);
  border: 2px solid rgb(255, 255, 255);
  border-top: none;
  border-bottom: none;
}

.scroll-button {
  position: fixed;
  right: 7rem;
  bottom: 40vh;
  z-index: 10;
  cursor: pointer;
  display: none;
}

.circle {
  width: 60px;
  height: 60px;
  border: 8px solid rgb(244, 5, 0);
  border-radius: 50%;
  z-index: 10;
  box-shadow: 6px 0 6px rgba(175, 192, 211, 0.25), -3px 0 6px rgba(175, 192, 211, 0.25);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  background-color: rgba(175, 192, 211, 0.125);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.circle::after {
  position: absolute;
  content: "";
  border: 8px solid rgb(244, 5, 0);
  width: 22px;
  height: 22px;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(-45deg);
  margin-top: 7px;
  transition: 0.4s;
}

.scroll-button:hover .circle {
  border-color: rgb(255, 255, 255);
}
.scroll-button:hover .circle::after {
  border-color: rgb(255, 255, 255);
}

@media (max-width: 800px) {
  .scroll-button {
    display: none !important;
  }
}
@font-face {
  font-family: "Metropolis";
  src: local("Metropolis-Regular"), url("../fonts/Metropolis-Regular.otf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Metropolis";
  src: local("Metropolis-Regular"), url("../fonts/Metropolis-SemiBold.otf");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Metropolis";
  src: local("Metropolis-Regular"), url("../fonts/Metropolis-Bold.otf");
  font-weight: 700;
  font-display: swap;
}
.header {
  padding: 0.875rem 5.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  background-color: rgb(255, 255, 255);
  z-index: 2;
  position: relative;
}

.mobile-menu {
  display: none;
  height: 0rem;
  transition: 0.3s;
}

.mobile-menu.active {
  position: absolute;
  height: calc(100vh - 1.75rem - 72px);
  width: 100vw;
  background-color: white;
  top: 100%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mobile-menu.active .header-nav__link {
  text-align: center;
  margin: 0;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}
.mobile-menu.active .header-nav__link::after {
  width: 100%;
}

.header-logo {
  position: absolute;
  left: 0;
}

.header-nav {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
}

.header-nav__link {
  text-decoration: none;
  color: rgb(15, 33, 54);
  line-height: 1;
  padding: 0.25rem;
  margin: 0 1rem;
  font-weight: 600;
  position: relative;
  transition: 0.4s;
}

.header-nav__link:hover {
  color: rgb(244, 5, 0);
}
.header-nav__link:hover::after {
  width: 100%;
  background-color: rgb(244, 5, 0);
}

.header-nav__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: rgb(15, 33, 54);
  bottom: -0.125rem;
  left: 0;
  transition: 0.4s;
}

.burger-button {
  display: none;
  flex-direction: column;
  padding: 0.5rem 0 0.5rem 0.5rem;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.line {
  width: 1.5rem;
  height: 0.25rem;
  background-color: rgb(244, 5, 0);
  margin-bottom: 0.375rem;
  transition: 0.3s;
}

.line:last-of-type {
  margin-bottom: 0;
}

.active .line {
  margin-bottom: 0;
}
.active .line:nth-child(2) {
  display: none;
}
.active .line:nth-child(1) {
  transform: rotate(45deg) translateY(2px) translateX(1px);
}
.active .line:nth-child(3) {
  transform: rotate(-45deg) translateY(-2px) translateX(1px);
}

@media (max-width: 1200px) {
  .header {
    padding: 0.875rem 1rem;
    justify-content: flex-end;
  }
  .header-nav {
    justify-content: flex-end;
  }
  .header-nav__link:last-of-type {
    margin-right: 0;
  }
}
@media (max-width: 580px) {
  .header-nav__link {
    font-size: 0.875rem;
  }
}
@media (max-width: 460px) {
  .header-menu {
    display: none;
  }
  .burger-button {
    display: flex;
  }
}
.main-section {
  padding: 0 5.25rem;
  position: relative;
  overflow: hidden;
}

.main-section__title {
  font-weight: 700;
  font-size: 5rem;
  line-height: 1;
  padding: 8.75rem 0 30.25rem;
  position: relative;
}
.main-section__title span {
  color: rgb(244, 5, 0);
}

.main-section__menu {
  margin-top: 2rem;
}
.main-section__menu .header-nav__link {
  margin: 0;
  font-size: 1.125rem;
  padding: 0.5rem;
}
.main-section__menu .header-nav__link:nth-child(2) {
  margin: 0 2rem;
}
.main-section__menu .header-nav__link:last-of-type {
  border: 1px solid rgb(175, 192, 211);
}
.main-section__menu .header-nav__link:last-of-type:hover {
  border-color: rgb(244, 5, 0);
}

.main-logo {
  width: 7rem;
  height: auto;
  position: absolute;
  bottom: 15rem;
}

.posters {
  position: absolute;
  right: 240px;
  top: 0;
  display: flex;
  transform: rotate(45deg);
  z-index: -1;
  display: flex;
  align-items: center;
  max-width: 1400px;
}

.posters-column__element {
  margin-bottom: 0.75rem;
}

.posters-column {
  margin-right: 1rem;
}

.column-4 {
  animation: column4 70s linear infinite;
}

.column-3 {
  animation: column3 70s linear infinite;
}

.column-2 {
  animation: column2 70s linear infinite;
}

.column-1 {
  animation: column1 70s linear infinite;
}

@keyframes column4 {
  from {
    transform: translateY(-120px);
  }
  50% {
    transform: translateY(-670px);
  }
  to {
    transform: translateY(-120px);
  }
}
@keyframes column3 {
  from {
    transform: translateY(-680px);
  }
  50% {
    transform: translateY(-460px);
  }
  to {
    transform: translateY(-680px);
  }
}
@keyframes column2 {
  from {
    transform: translateY(-530px);
  }
  50% {
    transform: translateY(-670px);
  }
  to {
    transform: translateY(-530px);
  }
}
@keyframes column1 {
  from {
    transform: translateY(-660px);
  }
  50% {
    transform: translateY(-520px);
  }
  to {
    transform: translateY(-660px);
  }
}
@media (max-width: 1680px) {
  .posters {
    max-width: 1000px;
    right: 180px;
    top: 30px;
  }
}
@media (max-width: 1560px) {
  .main-section__title {
    padding: 6.75rem 0 32.25rem;
    font-size: 4.5rem;
  }
}
@media (max-width: 1400px) {
  .main-section__title {
    padding: 6.75rem 0 28.25rem;
    font-size: 3.75rem;
  }
  .posters {
    max-width: 950px;
    top: 50px;
    right: 100px;
  }
}
@media (max-width: 1200px) {
  .main-section {
    padding: 0 1rem;
  }
  .posters {
    right: 40px;
  }
  .posters-column__element {
    width: 100%;
  }
  .posters-column__element img {
    width: 100%;
    height: auto;
  }
  .main-section__title {
    font-size: 3rem;
  }
  .column-1,
  .column-2,
  .column-3,
  .column-4 {
    animation-duration: 40s !important;
  }
  @keyframes column4 {
    from {
      transform: translateY(-70px);
    }
    50% {
      transform: translateY(-240px);
    }
    to {
      transform: translateY(-70px);
    }
  }
  @keyframes column3 {
    from {
      transform: translateY(-260px);
    }
    50% {
      transform: translateY(-210px);
    }
    to {
      transform: translateY(-260px);
    }
  }
  @keyframes column2 {
    from {
      transform: translateY(-200px);
    }
    50% {
      transform: translateY(-250px);
    }
    to {
      transform: translateY(-200px);
    }
  }
  @keyframes column1 {
    from {
      transform: translateY(-260px);
    }
    50% {
      transform: translateY(-200px);
    }
    to {
      transform: translateY(-260px);
    }
  }
}
@media (max-width: 1100px) {
  .main-logo {
    bottom: 9rem;
  }
}
@media (max-width: 1020px) {
  .main-section__title {
    font-size: 2.5rem;
  }
  .main-logo {
    bottom: 17rem;
  }
}
@media (max-width: 870px) {
  .posters {
    max-width: 650px;
    right: 50px;
  }
  .main-section__title {
    padding: 5rem 0 27rem;
  }
}
@media (max-width: 800px) {
  .posters {
    max-width: 650px;
    right: 50px;
    transform: rotate(45deg) translateY(20px);
  }
  .main-section__title {
    font-size: 2rem;
    max-width: 14rem;
  }
  .main-logo {
    max-width: 5rem;
  }
}
@media (max-width: 720px) {
  .posters {
    right: 0px;
    transform: rotate(45deg) translateY(50px);
  }
  .main-logo {
    max-width: 4rem;
    bottom: 20rem;
  }
}
@media (max-width: 660px) {
  .posters {
    max-width: 560px;
    right: -150px;
    transform: rotate(45deg) translateY(180px);
  }
  .main-section__title {
    font-size: 1.75rem;
  }
}
@media (max-width: 580px) {
  .main-section__title {
    padding: 2rem 0 23rem;
  }
  .main-logo {
    max-width: 4rem;
    bottom: 18rem;
  }
}
@media (max-width: 460px) {
  .posters {
    right: -150px;
    max-width: 520px;
  }
  .main-section__title {
    font-size: 1.5rem;
  }
  .main-section__menu .header-nav__link {
    margin: 0;
    font-size: 0.875rem;
    padding: 0.5rem;
  }
  .main-section__menu .header-nav__link:nth-child(2) {
    margin: 0 1rem;
  }
}
@media (max-width: 390px) {
  .main-section__title {
    font-size: 1.5rem;
    max-width: 10rem;
  }
  .main-section__menu {
    margin-top: 1rem;
  }
}
@media (max-width: 320px) {
  .main-section__menu .header-nav__link {
    margin: 0 0.125rem;
  }
}
.project-section {
  padding: 5rem;
  padding-bottom: 10rem;
  background-color: rgb(12, 26, 43);
  position: relative;
  background-image: url("../assets/ruch-hour-3d.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  display: flex;
  justify-content: space-between;
}

.project-section_wild-wheels {
  background-image: url("../assets/wild_wheels-3d.jpg");
  background-position: right;
  background-color: #121b2c;
}
.project-section_wild-wheels .project-posters img {
  margin: 0 0.25rem;
}

.project-information {
  display: flex;
  color: rgb(255, 255, 255);
  padding-top: 5.25rem;
}

.project-image {
  width: 11.25rem;
  height: 11.25rem;
  border-radius: 40px;
  position: relative;
  margin-right: 2.5rem;
}

.project-image > img {
  width: 100%;
  height: auto;
}

.game-title {
  font-weight: 600;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.project-information-text {
  max-width: 492px;
}

.game-description {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.25;
  color: rgb(175, 192, 211);
  margin-bottom: 2.25rem;
}

.game-downloads__icon {
  margin-right: 0.5rem;
  align-self: flex-start;
  width: 1.25rem;
}

.game-downloads {
  display: flex;
  margin-bottom: 2rem;
}

.game-downloads__title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.game-downloads__subtitle {
  font-weight: 600;
  font-size: 0.635rem;
  color: rgb(175, 192, 211);
  letter-spacing: -0.03em;
}

.game-downloads__count {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.25;
  color: rgb(175, 192, 211);
}

.achivment-item {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.25;
  display: flex;
  align-items: center;
}

.game-achievement {
  display: flex;
  margin-bottom: 7.5rem;
}

.download-buttons {
  display: flex;
  align-items: center;
}

.download-button {
  background-color: rgb(0, 0, 0);
  display: inline-flex;
  border: 1px solid rgb(166, 166, 166);
  border-radius: 0.5rem;
}

.google-play {
  margin-right: 2.5rem;
}

.project-posters {
  position: relative;
  bottom: -3.75rem;
}

@media (max-width: 1600px) {
  .project-posters {
    bottom: -1.25rem;
    align-self: flex-end;
  }
  .project-posters img {
    width: 300px;
    height: auto;
  }
  .project-section {
    padding: 5rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 1500px) {
  .project-posters img {
    width: 260px;
    height: auto;
  }
}
@media (max-width: 1410px) {
  .project-image {
    width: 120px;
  }
  .project-posters img {
    width: 230px;
    height: auto;
  }
}
@media (max-width: 1300px) {
  .project-information-text {
    max-width: 400px;
  }
  .game-title {
    font-size: 2.5rem;
  }
  .download-button {
    max-width: 180px;
  }
  .download-button img {
    width: 100%;
  }
  .game-achievement {
    margin-bottom: 5rem;
  }
}
@media (max-width: 1200px) {
  .project-section {
    padding: 5rem 1rem 10rem 1rem;
  }
}
@media (max-width: 1075px) {
  .project-section {
    flex-direction: column;
    background-position: top;
  }
  .project-posters {
    align-self: center;
    margin-top: 2rem;
  }
  .project-section_wild-wheels {
    flex-direction: column-reverse;
    background-position: top right;
    background-size: 100% 50%;
  }
}
@media (max-width: 600px) {
  .project-section {
    padding: 2.5rem 1rem 5rem 1rem;
  }
  .project-information {
    flex-direction: column;
    padding-top: 0;
  }
  .project-information-text {
    max-width: calc(100vw - 2rem);
  }
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  .download-button {
    margin: 0;
    margin-bottom: 0.75rem;
  }
  .project-posters {
    max-width: 100vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .project-posters img {
    max-width: 45%;
    height: auto;
  }
  .project-section_wild-wheels {
    background-size: auto 400px;
    background-position: top center;
  }
}
.badge-title {
  border-radius: 0.75rem 0.75rem 0.75rem 0;
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.red-badge {
  padding: 0.75rem 1rem;
  background-color: rgb(244, 5, 0);
  color: rgb(255, 255, 255);
}

.red-badge::after {
  position: absolute;
  content: "";
  bottom: -24px;
  left: 0;
  border: 18px solid transparent;
  border-left: 18px solid rgb(244, 5, 0);
  border-top: 18px solid rgb(244, 5, 0);
}

.black-badge {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem 0.75rem 0.75rem 0;
  display: inline-block;
}

.black-badge-triangle {
  position: relative;
  display: inline-block;
  border-radius: 0 0 0.75rem 0;
}

.black-badge-triangle::after {
  position: absolute;
  content: "";
  bottom: -24px;
  left: 0;
  border: 18px solid transparent;
  border-left: 18px solid rgb(0, 0, 0);
  border-top: 18px solid rgb(0, 0, 0);
}

.right-badge {
  border-radius: 0.75rem 0.75rem 0 0.75rem;
  display: inline-block;
}

.right-badge::after {
  position: absolute;
  content: "";
  bottom: -34px;
  right: 0;
  border: 18px solid transparent;
  border-right: 18px solid rgb(0, 0, 0);
  border-top: 18px solid rgb(0, 0, 0);
}

@media (max-width: 500px) {
  .badge-title {
    font-size: 2rem;
  }
  .red-badge::after {
    bottom: -14px;
    border: 12px solid transparent;
    border-left: 12px solid rgb(244, 5, 0);
    border-top: 12px solid rgb(244, 5, 0);
  }
  .black-badge-triangle::after {
    bottom: -14px;
    border: 12px solid transparent;
    border-left: 12px solid rgb(0, 0, 0);
    border-top: 12px solid rgb(0, 0, 0);
  }
  .right-badge::after {
    bottom: -18px;
    border: 12px solid transparent;
    border-right: 12px solid rgb(0, 0, 0);
    border-top: 12px solid rgb(0, 0, 0);
  }
}
.upcoming-section {
  padding: 5rem 0 5rem 5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 1200px) {
  .upcoming-section {
    padding: 5rem 0 5rem 1rem;
  }
}
@media (max-width: 1100px) {
  .upcoming-section {
    flex-direction: column;
  }
}
.slider-container {
  display: flex;
  margin-left: 250px;
  align-items: center;
  padding: 5rem 0;
}

.slider-buttons {
  display: flex;
  flex-direction: column;
  margin: 0 1.5rem;
  position: relative;
  top: -5rem;
}

.end-buttons {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  top: 19rem;
  right: 0;
  padding: 0.25rem;
  border-radius: 0.25rem;
  opacity: 0.7;
}

.slider-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.slider-button path {
  fill: rgb(15, 33, 54);
}

.slider-button:first-of-type {
  margin-bottom: 2.5rem;
}

.slider-button:hover path {
  fill: rgb(244, 5, 0);
}

.slider-button:disabled path {
  fill: rgb(175, 192, 211);
}

.slider {
  display: flex;
  align-items: flex-start;
  overflow-x: hidden;
  margin-right: -5rem;
}

.slider-wrapper {
  display: flex;
  transition: 0.3s;
}

.slider.scroll {
  overflow-x: scroll;
}

.slider-item {
  display: flex;
  flex-direction: column;
  margin-right: 2rem;
  max-width: 260px;
  transition: 0.4s;
}
.slider-item img {
  width: 100%;
  height: auto;
}

.slider-item__image {
  width: 260px;
  height: 400px;
  border-radius: 24px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 1.5rem;
}

.slider-item-1 {
  background-image: url("../assets/slider/slider-item-1.webp");
}

.slider-item-2 {
  background-image: url("../assets/slider/slider-item-2.webp");
}

.slider-item-3 {
  background-image: url("../assets/slider/slider-item-3.webp");
}

.slider-item-4 {
  background-image: url("../assets/slider/slider-item-4.webp");
}

.slider-item-5 {
  background-image: url("../assets/slider/slider-item-5.webp");
}

.slider-item-6 {
  background-image: url("../assets/slider/slider-item-6.webp");
}

.slider-item-7 {
  background-image: url("../assets/slider/slider-item-7.webp");
}

.slider-item-8 {
  background-image: url("../assets/slider/slider-item-8.webp");
}

.slider-item__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  max-width: 95%;
  margin-left: 5%;
}

.slider-item__subtitle {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  max-width: 95%;
  margin-left: 5%;
}

@media (max-width: 1400px) {
  .slider-container {
    margin-left: 30px;
  }
  .slider-item {
    max-width: 200px;
  }
  .slider-item__image {
    max-width: 200px;
    max-height: 380px;
  }
}
@media (max-width: 1100px) {
  .slider-container {
    align-self: center;
    max-width: 100vw;
    margin-left: 0;
  }
  .end-buttons {
    top: 28.5rem;
  }
}
@media (max-width: 600px) {
  .slider-container {
    padding: 2.5rem 0;
  }
  .end-buttons {
    top: 26rem;
  }
}
@media (max-width: 500px) {
  .slider-container {
    padding-left: 1rem;
    max-width: calc(100vw - 1rem);
    overflow-x: hidden;
  }
  .slider-buttons {
    display: none;
  }
  .slider {
    padding-bottom: 0;
    margin-right: 0;
  }
  #slider {
    overflow-x: auto;
    padding-bottom: 2rem;
  }
  #slider::-webkit-scrollbar-thumb {
    background-color: rgb(255, 255, 255);
  }
}
.form-section {
  padding: 5rem 0 7.5rem;
  background-color: rgb(235, 243, 246);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#form {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  max-width: 420px;
  width: 100%;
  position: relative;
}

.input-container {
  position: relative;
  margin-bottom: 2.5rem;
}

input[type=text],
textarea {
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-family: "Metropolis", sans-serif;
  font-size: 1.25rem;
  color: rgb(15, 33, 54);
  border: none;
  padding: 1.375rem;
  border-radius: 0.75rem;
  outline: none;
  border: 1px solid transparent;
}

input[type=text]::-moz-placeholder, textarea::-moz-placeholder {
  color: rgb(175, 192, 211);
}

input[type=text]::placeholder,
textarea::placeholder {
  color: rgb(175, 192, 211);
}

textarea {
  text-align: start;
  resize: none;
  height: 8.75rem;
  font-weight: 400;
  font-size: 1rem;
}

input[type=submit] {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Metropolis", sans-serif;
  padding: 1.25rem 1.5rem;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
  outline: none;
  border: none;
  border-radius: 0.75rem;
  display: inline-block;
  cursor: pointer;
}

input[type=submit]:disabled {
  background-color: rgb(175, 192, 211);
  cursor: auto;
}

.error {
  font-size: 0.75rem;
  color: rgb(244, 5, 0);
  position: absolute;
  margin-top: 0.25rem;
  display: none;
}

input[type=text].input-invalid,
textarea.input-invalid {
  border-color: rgb(244, 5, 0);
}

input[type=text].input-invalid ~ .error,
textarea.input-invalid ~ .error {
  display: block;
}

input[type=text]:-webkit-autofill,
input[type=text]:-webkit-autofill:hover,
input[type=text]:-webkit-autofill:focus,
input[type=text]:-webkit-autofill:active {
  box-shadow: 0 0 0 40px rgb(255, 255, 255) inset !important;
}

#success {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 600;
  position: absolute;
  bottom: 0;
  background-color: green;
  border-radius: 0.75rem;
  color: rgb(255, 255, 255);
  z-index: -1;
}

.success-show {
  z-index: 2 !important;
}

.success-hide {
  z-index: -1 !important;
}

@media (max-width: 900px) {
  .form-section {
    padding: 2.5rem 0 3rem;
  }
}
@media (max-width: 460px) {
  #form {
    max-width: calc(100vw - 2rem);
  }
}
.footer {
  padding: 6.25rem 5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background-color: rgb(0, 0, 0);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-contacts a {
  color: rgb(244, 5, 0);
  text-decoration: none;
}

.footer-mail {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.footer-link {
  opacity: 0.5;
  font-size: 0.625rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 0.125rem;
}

@media (max-width: 1200px) {
  .footer {
    padding: 4rem 1rem;
  }
}
.privacy-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
}

.privacy-logo {
  max-width: 5rem;
  margin: 0 auto 2rem;
}

.privacy-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.privacy-data {
  text-align: start;
  margin-bottom: 1rem;
}

.privacy-block {
  margin-bottom: 2rem;
}
.privacy-block li {
  margin-bottom: 0.5rem;
}

.privacy-block:last-of-type {
  margin-bottom: 0;
}

.privacy-block__title {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.privacy-block__text {
  line-height: 1.5;
}

.privacy-ul__margin {
  margin: 1rem 0 1rem 2rem;
}

b {
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */