html {
  scroll-behavior: smooth;
}
button {
  cursor: pointer;
}
#successModal {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  z-index: 1000;
  padding: 50px;
  border: 1px solid white;
  text-align: center;
}
@media (max-width: 768px) {
  #successModal {
    padding: 35px;
  }
}
#successModal p {
  margin-bottom: 20px;
}
body {
  background: black;
  font-family: "Times New Roman";
  position: relative;
  margin: 0;
  overflow-x: hidden;
}
body section {
  padding-inline: 113px;
}
@media (max-width: 1439px) {
  body section {
    padding-inline: 20px;
  }
}
body p,
body h1,
body h2,
body h3 {
  color: white;
}
body p {
  letter-spacing: 0.01em;
  font-weight: 400;
  margin: 0;
}
body a {
  font-weight: 400;
  text-decoration: none;
  color: white;
  letter-spacing: 0.03em;
}
body span {
  letter-spacing: -0.06em;
}
body h1 {
  font-size: 120px;
  letter-spacing: -0.05em;
  text-align: center;
  margin-bottom: 0;
  font-weight: 400;
  transform: scaleY(1.2);
}
@media (max-width: 767px) {
  body h1 {
    font-size: 70px;
  }
}
@media (max-width: 450px) {
  body h1 {
    font-size: 50px;
  }
}
body h2 {
  font-family: "Times New Roman";
  font-weight: 400;
  font-size: 76px;
  line-height: 100%;
  letter-spacing: -0.05em;
}
@media (max-width: 1439px) {
  body h2 {
    font-size: 40px;
  }
}
body .button {
  font-family: "Times New Roman";
  border: 1px solid white;
  padding: 12px 20px;
  font-size: 20px;
  background: transparent;
  color: white;
  outline: none;
}
@media (max-width: 480px) {
  body .button {
    padding: 10px;
  }
}
body .menu,
body .footer__center {
  gap: 25px;
  display: flex;
  justify-content: space-between;
}
body .menu a,
body .footer__center a {
  font-size: 20px;
}
body .header {
  display: flex;
  width: 100%;
  padding-top: 60px;
  justify-content: space-between;
  z-index: 99999;
  align-items: center;
  max-width: -webkit-fill-available;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}
@media (max-width: 1040px) {
  body .header {
    display: grid;
    justify-content: left;
    align-items: center;
    opacity: 0;
    flex-direction: column;
    background-color: #000;
    position: absolute;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    padding: 25px 0 25px 20px;
    margin: 0;
    top: 0;
  }
}
body .header .menu {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
@media (max-width: 1040px) {
  body .header .menu {
    grid-area: 1 / 1 / 2 / 2;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: none;
    left: auto;
    gap: 16px;
  }
}
@media (max-width: 1040px) {
  body .header a.button {
    grid-area: 2 / 1 / 3 / 2;
    margin-top: 20px;
  }
}
body .header .lang {
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
@media (max-width: 1040px) {
  body .header .lang {
    border: 1px solid #ffffff;
    max-width: 45px;
    margin-top: 10px;
    text-align: center;
    padding: 10px;
  }
}
body .header.active {
  opacity: 1;
}
body .burger {
  display: none;
}
@media (max-width: 1040px) {
  body .burger {
    display: block;
    /* показываем */
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
    position: absolute;
    right: 40px;
    top: 40px;
    z-index: 999999;
  }
}
body .burger span {
  position: absolute;
  top: 56%;
  display: block;
  height: 2px;
  width: 30px;
  margin-top: -1.5px;
  background-color: #fff;
  border-radius: 3px;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
body .burger span:after,
body .burger span:before {
  content: '';
  position: absolute;
  left: 0;
  top: -8px;
  height: 2px;
  width: 30px;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: top 0.2s 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, top 0.2s 0.2s, -webkit-transform 0.2s;
  -o-transition: transform 0.2s, top 0.2s 0.2s;
}
body .burger span:after {
  top: 8px;
}
body .burger.active span {
  background: 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body .burger.active span:before {
  top: 0;
  -webkit-transform: rotateZ(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotateZ(-45deg);
}
body .burger.active span:after {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -ms-transform: rotate(45deg);
  transform: rotateZ(45deg);
}
body .main {
  padding-top: 220px;
  margin-bottom: 90px;
}
@media (max-width: 1439px) {
  body .main {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  body .main {
    padding-top: 180px;
  }
}
body .main .main-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -11111;
  width: 100%;
}
body .main .main__footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 10px;
  margin-top: 200px;
  padding-bottom: 90px;
}
@media (max-width: 1439px) {
  body .main .main__footer {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  body .main .main__footer {
    grid-template-columns: 200px 240px;
    grid-template-rows: auto;
    margin-top: 100px;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  body .main .main__footer {
    grid-template-columns: 100px 210px;
    grid-template-rows: auto;
    margin-top: 100px;
    justify-content: center;
  }
}
body .main .main__footer p {
  line-height: 110%;
}
@media (min-width: 1440px) {
  body .main .main__footer img {
    width: 99%;
    height: 90%;
  }
}
body .main .main__footer div:nth-child(1) {
  grid-area: 1 / 1 / 2 / 3;
}
@media (max-width: 1439px) {
  body .main .main__footer div:nth-child(1) {
    grid-area: 1 / 2 / 2 / 4;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  body .main .main__footer div:nth-child(1) {
    grid-area: 2 / 1 / 3 / 3;
    max-width: 450px;
    max-height: 167px;
  }
}
@media (max-width: 767px) {
  body .main .main__footer div:nth-child(1) img {
    width: 100%;
  }
}
body .main .main__footer div:nth-child(2) {
  grid-area: 1 / 3 / 2 / 4;
}
@media (max-width: 1439px) {
  body .main .main__footer div:nth-child(2) {
    grid-area: 2 / 2 / 3 / 3;
  }
}
@media (max-width: 767px) {
  body .main .main__footer div:nth-child(2) {
    grid-area: 3 / 2 / 4 / 3;
    max-width: 250px;
  }
  body .main .main__footer div:nth-child(2) img {
    width: -webkit-fill-available;
  }
}
@media (max-width: 480px) {
  body .main .main__footer div:nth-child(2) {
    max-height: 126px;
    overflow: hidden;
  }
  body .main .main__footer div:nth-child(2) img {
    transform: translateY(-10%);
  }
}
body .main .main__footer div:nth-child(3) {
  grid-area: 1 / 4 / 2 / 5;
}
@media (max-width: 1439px) {
  body .main .main__footer div:nth-child(3) {
    grid-area: 2 / 3 / 3 / 4;
  }
}
@media (max-width: 767px) {
  body .main .main__footer div:nth-child(3) {
    grid-area: 3 / 1 / 5 / 2;
    max-width: 200px;
  }
  body .main .main__footer div:nth-child(3) img {
    width: -webkit-fill-available;
  }
}
@media (max-width: 480px) {
  body .main .main__footer div:nth-child(3) {
    max-width: 100px;
    max-height: 207px;
    overflow: hidden;
  }
  body .main .main__footer div:nth-child(3) img {
    width: auto;
    transform: translateX(-50%);
    max-width: 203px;
  }
}
body .main .main__footer p:nth-child(4) {
  grid-area: 2 / 1 / 3 / 3;
  max-width: 570px;
  text-align: left;
}
@media (max-width: 1439px) {
  body .main .main__footer p:nth-child(4) {
    grid-area: 1 / 1 / 4 / 2;
  }
}
@media (max-width: 767px) {
  body .main .main__footer p:nth-child(4) {
    grid-area: 1 / 1 / 2 / 3;
  }
}
body .main .main__footer p:nth-child(5) {
  grid-area: 2 / 3 / 3 / 5;
  max-width: 510px;
  text-align: left;
}
@media (max-width: 1439px) {
  body .main .main__footer p:nth-child(5) {
    grid-area: 3 / 2 / 4 / 4;
  }
}
@media (max-width: 767px) {
  body .main .main__footer p:nth-child(5) {
    grid-area: 4 / 2 / 5 / 2;
    max-width: 310px;
  }
}
body .main .main__footer img {
  margin-bottom: 30px;
}
@media (max-width: 1439px) {
  body .main .main__footer img {
    margin-bottom: 0;
  }
}
body .main .main__footer p {
  margin: 0;
  font-size: 24px;
}
@media (max-width: 1439px) {
  body .main .main__footer p {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  body .main .main__footer p {
    font-size: 14px;
    line-height: 14px;
  }
}
body .main p {
  font-weight: 400;
  font-size: 27px;
  line-height: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  body .main p {
    font-size: 18px;
  }
}
body .marquee-wrapper {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  text-transform: uppercase;
  border-bottom: 1px solid white;
  border-top: 1px solid white;
  padding: 10px 0;
}
body .marquee {
  display: inline-flex;
  animation: scroll-left 10s linear infinite;
}
body .block {
  flex: none;
  padding: 0 22px;
  color: #fff;
  font-size: 24px;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
body .advantages {
  padding-top: 90px;
  background: url("../img/bg-advantages.png") no-repeat;
  background-size: cover;
  margin-bottom: 80px;
}
@media (max-width: 1439px) {
  body .advantages {
    padding-top: 80px;
  }
}
body .advantages h2 {
  margin-bottom: 32px;
  margin-top: 0;
}
@media (max-width: 1439px) {
  body .advantages h2 {
    margin-bottom: 20px;
  }
}
body .advantages p {
  font-size: 32px;
  margin-bottom: 48px;
  max-width: 700px;
}
@media (max-width: 1439px) {
  body .advantages p {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  body .advantages p {
    font-size: 18px;
    line-height: 100%;
    max-width: 280px;
  }
}
body .advantages .block-wrapper {
  width: 100%;
}
body .advantages .advantages-slider {
  margin-bottom: 48px;
}
@media (max-width: 1440px) {
  body .advantages .advantages-slider {
    overflow: hidden;
    cursor: grab;
  }
}
body .advantages .advantages-slider p {
  font-size: 20px;
  line-height: 20px;
}
@media (max-width: 1439px) {
  body .advantages .advantages-slider p {
    font-size: 18px !important;
    line-height: 110%;
  }
}
@media (max-width: 767px) {
  body .advantages .advantages-slider p {
    font-size: 14px;
    line-height: 100%;
  }
}
body .advantages .advantages-slider .slides {
  display: flex;
  gap: 30px;
}
@media (max-width: 1439px) {
  body .advantages .advantages-slider .slides {
    gap: 18px;
    display: flex;
    transition: none;
  }
}
body .advantages .advantages-slider .slides .slide {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
}
@media (max-width: 1439px) {
  body .advantages .advantages-slider .slides .slide {
    gap: 20px;
    flex: 0 0 auto;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  body .advantages .advantages-slider .slides .slide {
    max-width: 280px;
  }
}
body .advantages .advantages-slider .slides .slide p {
  margin: 0;
}
body .advantages .advantages-slider .slides .slide:last-child {
  flex-direction: column-reverse;
  justify-content: space-between;
}
@media (min-width: 768px) {
  body .advantages .block-content {
    display: block;
  }
  body .advantages .slides-container {
    display: none;
  }
}
body .services {
  margin-bottom: 100px;
}
@media (max-width: 1439px) {
  body .services {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  body .services {
    overflow-x: hidden;
    margin-bottom: 40px;
  }
}
body .services .services-blocks {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1439px) {
  body .services .services-blocks {
    justify-content: center;
  }
}
@media (max-width: 1280px) {
  body .services .services-blocks {
    justify-content: space-between;
  }
}
@media (max-width: 450px) {
  body .services .services-blocks {
    gap: 0;
  }
}
body .services .services-blocks p {
  font-size: 20px;
}
body .services .services-blocks__left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 36px;
  position: relative;
  width: 48%;
}
body .services .services-blocks__left div:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
}
body .services .services-blocks__left div:nth-child(1) p {
  margin-top: 12px;
}
@media (max-width: 450px) {
  body .services .services-blocks__left div:nth-child(1) img {
    max-width: 210px;
  }
}
body .services .services-blocks__left div:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}
@media (max-width: 450px) {
  body .services .services-blocks__left div:nth-child(2) {
    max-height: 250px;
    overflow: hidden;
  }
  body .services .services-blocks__left div:nth-child(2) img {
    transform: translateX(-20%);
  }
}
body .services .services-blocks__left div:nth-child(2) p {
  margin-bottom: 12px;
}
body .services .services-blocks__left div:nth-child(3) {
  grid-area: 2 / 2 / 3 / 3;
  margin-left: 112px;
}
@media (max-width: 650px) {
  body .services .services-blocks__left div:nth-child(3) {
    position: absolute;
    left: 0;
    top: 30%;
    transform: translate(-50%);
    width: 210px;
    margin-left: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
  }
  body .services .services-blocks__left div:nth-child(3) img {
    width: 100%;
  }
}
@media (max-width: 450px) {
  body .services .services-blocks__left div:nth-child(3) {
    top: 0;
  }
}
body .services .services-blocks__left div:nth-child(3) p {
  margin-top: 12px;
}
@media (max-width: 767px) {
  body .services .services-blocks__left div:nth-child(3) p {
    text-align: right;
  }
}
body .services .services-blocks__right {
  display: flex;
  gap: 10px;
  width: 48%;
  justify-content: space-between;
}
@media (max-width: 1280px) {
  body .services .services-blocks__right {
    justify-content: end;
    width: 100%;
  }
}
@media (max-width: 650px) {
  body .services .services-blocks__right {
    flex-direction: column;
  }
}
body .services .services-blocks__right div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body .services .services-blocks__right div:nth-child(1) {
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 650px) {
  body .services .services-blocks__right div:nth-child(1) {
    width: 210px;
  }
  body .services .services-blocks__right div:nth-child(1) img {
    width: 100%;
  }
}
body .services .services-blocks__right div:nth-child(2) {
  align-items: flex-start;
}
@media (max-width: 650px) {
  body .services .services-blocks__right div:nth-child(2) {
    align-items: flex-end;
    margin-top: -30px;
  }
}
body .services .services-blocks__right div:nth-child(3) {
  justify-content: center;
  align-items: center;
}
@media (max-width: 650px) {
  body .services .services-blocks__right div:nth-child(3) {
    align-items: flex-end;
  }
  body .services .services-blocks__right div:nth-child(3) p {
    width: 100%;
    text-align: left;
  }
}
body .services .services-blocks__right div:nth-child(3) .design-desk {
  display: block;
}
@media (max-width: 650px) {
  body .services .services-blocks__right div:nth-child(3) .design-desk {
    display: none;
  }
}
body .services .services-blocks__right div:nth-child(3) .design-mob {
  display: block;
  max-width: 100%;
}
@media (min-width: 650px) {
  body .services .services-blocks__right div:nth-child(3) .design-mob {
    display: none;
  }
}
body .stages {
  background-size: cover;
  padding-bottom: 100px;
  padding-top: 100px;
  margin-bottom: 100px;
  position: relative;
  overflow: hidden;
}
body .stages .stages-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -11111;
  width: 100%;
}
@media (max-width: 1440px) {
  body .stages {
    padding-bottom: 70px;
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  body .stages {
    padding-top: 40px;
    margin-bottom: 25px;
  }
}
body .stages h2 {
  margin-top: 0;
  margin-bottom: 48px;
}
@media (max-width: 1440px) {
  body .stages .stages-slider {
    overflow: hidden;
  }
}
body .stages .stages-slider .slides {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 11px;
  grid-row-gap: 11px;
}
@media (max-width: 1440px) {
  body .stages .stages-slider .slides {
    display: flex;
    transition: transform 0.3s ease;
  }
}
body .stages .slide1 {
  grid-area: 1 / 1 / 2 / 2;
}
body .stages .slide2 {
  grid-area: 1 / 2 / 2 / 3;
}
body .stages .slide3 {
  grid-area: 1 / 3 / 2 / 4;
}
body .stages .slide4 {
  grid-area: 2 / 1 / 3 / 2;
}
body .stages .slide5 {
  grid-area: 2 / 2 / 3 / 3;
}
body .stages .slide6 {
  grid-area: 2 / 3 / 3 / 4;
}
body .stages .slide {
  border: 1px solid white;
  padding: 10px 20px 38px 20px;
}
@media (max-width: 1440px) {
  body .stages .slide {
    display: flex;
    flex-direction: column;
    min-width: 240px;
    transition: transform 0.3s ease;
  }
}
body .stages .slide span {
  color: white;
  font-size: 84px;
  margin-bottom: 20px;
}
@media (max-width: 1440px) {
  body .stages .slide span {
    margin-bottom: 0;
  }
}
body .stages .slide h3 {
  font-size: 32px;
  margin-top: 0;
  margin-bottom: 20px;
}
body .stages .slide p {
  font-size: 16px;
  margin: 0;
  line-height: 110%;
}
@media (max-width: 767px) {
  body .stages .slide p {
    font-size: 14px;
    line-height: 100%;
  }
}
body .feedback {
  padding-bottom: 30px;
  position: relative;
}
body .feedback .flex {
  display: grid;
}
@media (max-width: 1200px) {
  body .feedback .flex {
    justify-content: center;
  }
}
body .feedback .feedback-right {
  position: absolute;
  right: 113px;
  bottom: 0;
}
@media (max-width: 1439px) {
  body .feedback .feedback-right {
    right: 20px;
  }
}
@media (max-width: 1200px) {
  body .feedback .feedback-right {
    position: relative;
    width: 100%;
    right: auto;
    grid-area: 1 / 1 / 2 / 2;
  }
}
body .feedback .feedback-right .mob {
  display: none;
}
@media (max-width: 1200px) {
  body .feedback .feedback-right .mob {
    display: block;
  }
}
@media (max-width: 450px) {
  body .feedback .feedback-right .mob {
    display: none;
  }
}
body .feedback .feedback-right .desk {
  display: block;
}
@media (max-width: 1200px) {
  body .feedback .feedback-right .desk {
    display: none;
  }
}
@media (max-width: 450px) {
  body .feedback .feedback-right .desk {
    display: block;
    max-width: 320px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  body .feedback .feedback-right img {
    max-width: 100%;
  }
}
body .feedback h2 {
  margin-bottom: 32px;
}
body .feedback form {
  max-width: 700px;
}
@media (max-width: 1200px) {
  body .feedback form {
    max-width: max-content;
  }
}
body .feedback form .custom-checkbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-family: Arial, sans-serif;
  font-size: 16px;
  user-select: none;
  margin-top: 15px;
  cursor: pointer;
}
body .feedback form .custom-checkbox p {
  font-size: 15px;
}
@media (max-width: 767px) {
  body .feedback form .custom-checkbox p {
    font-size: 12px;
  }
}
body .feedback form .custom-checkbox p a {
  text-decoration: underline;
}
body .feedback form .custom-checkbox input {
  opacity: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-right: 45px;
}
body .feedback form .custom-checkbox .checkmark {
  display: block;
  position: absolute;
  height: 40px;
  width: 40px;
  margin-right: 15px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: background-color 0.3s, border-color 0.3s;
}
body .feedback form .custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
}
body .feedback form .custom-checkbox input:checked + .checkmark:after {
  display: block;
}
body .feedback form input {
  width: 100%;
  background: transparent;
  color: #ffffff;
  font-size: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  padding: 15px 18px;
}
@media (max-width: 1200px) {
  body .feedback form input {
    max-width: 96%;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  body .feedback form input {
    max-width: 91%;
  }
}
body .feedback form input:focus-visible {
  outline: none;
}
body .feedback form .buttons {
  display: flex;
  align-items: baseline;
}
@media (max-width: 1200px) {
  body .feedback form .buttons {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  body .feedback form .buttons {
    display: block;
  }
}
body .feedback form .buttons button,
body .feedback form .buttons a {
  margin-top: 30px;
}
@media (max-width: 1439px) {
  body .feedback form .buttons button,
  body .feedback form .buttons a {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  body .feedback form .buttons button,
  body .feedback form .buttons a {
    width: 50%;
  }
}
@media (max-width: 767px) {
  body .feedback form .buttons button,
  body .feedback form .buttons a {
    width: auto;
  }
}
body .feedback form .buttons .mail {
  background: rgba(255, 255, 255, 0.1);
  height: fit-content;
  letter-spacing: normal;
  text-align: center;
}
body .feedback form .buttons .mail img {
  margin-right: 15px;
}
@media (max-width: 480px) {
  body .feedback form .buttons .mail img {
    margin-right: 8px;
  }
}
body .feedback form .buttons .send {
  margin-right: 15px;
}
body .footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  background: url(../img/footer-bg.png);
  background-size: cover;
  align-items: flex-start;
  padding-top: 30px;
  padding-bottom: 90px;
}
@media (max-width: 1439px) {
  body .footer {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    padding-bottom: 30px;
    grid-template-rows: 100px 120px 115px 15px;
  }
}
body .footer__left {
  grid-area: 1 / 1 / 2 / 2;
}
body .footer__left p:nth-child(1) {
  font-size: 40px;
  transform: scaleY(1.3);
}
body .footer__left p:nth-child(2) {
  font-size: 20px;
  line-height: 100%;
}
body .footer__center {
  grid-area: 1 / 2 / 2 / 3;
}
@media (max-width: 1439px) {
  body .footer__center {
    grid-area: 2 / 1 / 3 / 2;
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 1439px) {
  body .footer__center a {
    font-size: 16px;
  }
}
body .footer__right {
  font-size: 14px;
  height: max-content;
  grid-area: 1 / 3 / 2 / 4;
  justify-self: flex-end;
}
@media (max-width: 1439px) {
  body .footer__right {
    grid-area: 3 / 1 / 4 / 2;
    justify-self: center;
  }
}
body .footer__right a {
  text-decoration: underline;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  font-size: 14px;
}
body .footer__bottom {
  grid-area: 2 / 1 / 3 / 4;
}
@media (max-width: 1439px) {
  body .footer__bottom {
    grid-area: 4 / 1 / 5 / 2;
  }
}
/*# sourceMappingURL=styles.css.map */