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

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.container {
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 767px) {
  .container {
    max-width: 768px;
    padding: 0 72px;
  }
}
@media (min-width: 1023px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1279px) {
  .container {
    max-width: 1280px;
  }
}

.body {
  color: #191a19;
}

.visualy-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.btn {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  background: #df6437;
  color: #fff;
  fill: #fff;
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.text-orange {
  color: #df6437;
  font-weight: 800;
  font-size: 16px;
}
@media (min-width: 767px) {
  .text-orange {
    font-size: 20px;
  }
}
@media (min-width: 1023px) {
  .text-orange {
    font-size: 24px;
  }
}

.text-green {
  color: #3ba637;
  font-weight: 800;
  font-size: 16px;
}
@media (min-width: 767px) {
  .text-green {
    font-size: 20px;
  }
}
@media (min-width: 1023px) {
  .text-green {
    font-size: 24px;
  }
}

.page-in-right {
  opacity: 0;
  animation: pageInRight 0.5s ease-in-out forwards;
}

.page-out-right {
  opacity: 1;
  animation: pageOutRight 0.5s ease-in-out forwards;
}

.page-in-left {
  opacity: 0;
  animation: pageInLeft 0.5s ease-in-out forwards;
}

.page-out-left {
  opacity: 1;
  animation: pageOutLeft 0.5s ease-in-out forwards;
}

@keyframes pageInRight {
  0% {
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pageOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(30px);
  }
}
@keyframes pageInLeft {
  0% {
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pageOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-30px);
  }
}
.header {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 767px) {
  .header {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}

.header__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media (min-width: 767px) {
  .header__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.header__logo-wrap {
  width: 164px;
  height: 38px;
}
@media (min-width: 767px) {
  .header__logo-wrap {
    width: 180px;
    height: 41px;
  }
}
@media (min-width: 1023px) {
  .header__logo-wrap {
    width: 196px;
    height: 45px;
  }
}

.header__logo {
  width: 100%;
  height: 100%;
}

.hero {
  padding-top: 32px;
  padding-bottom: 32px;
}

.hero__container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.hero__title {
  color: #df6437;
  z-index: 101;
  text-align: center;
  font-family: "Encode Sans", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: capitalize;
  align-self: center;
  width: 350px;
  padding-top: 50px;
  padding-bottom: 50px;
  text-shadow: 4px 3px 0px #000;
}
@media (min-width: 767px) {
  .hero__title {
    font-size: 52px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1023px) {
  .hero__title {
    width: auto;
    align-self: auto;
    font-size: 71px;
    padding: 0;
    margin-bottom: 30px;
  }
}

.hero__text-wrap {
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
}

.hero__text-wrap:not(:last-child)::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 99;
}

.hero__text {
  color: #191a19;
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  text-align: center;
}
@media (min-width: 767px) {
  .hero__text {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
  }
}
@media (min-width: 1023px) {
  .hero__text {
    font-size: 20px;
    width: 540px;
  }
}

.earth {
  width: 200px;
  height: 200px;
  background-image: url(https://raw.githubusercontent.com/cartalan/TierraGirando/master/img/mapa.png);
  background-size: cover;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  left: 0;
  margin: auto;
  background-color: #47b6c4;
  box-shadow: -30px -20px 0 0 rgba(0, 0, 0, 0.15) inset, -70px -30px 0 0 rgba(0, 0, 0, 0.1) inset, 5px 5px 0 0 rgba(255, 255, 255, 0.2) inset;
  animation: rotationEarthMob 10s infinite linear;
}
@media (min-width: 767px) {
  .earth {
    width: 310px;
    height: 310px;
    right: 0;
    animation: rotationEarthTab 10s infinite linear;
  }
}
@media (min-width: 1023px) {
  .earth {
    width: 420px;
    height: 420px;
    right: -82px;
    left: auto;
    animation: rotationEarthDesk 10s infinite linear;
  }
}
@media (min-width: 1279px) {
  .earth {
    right: 55px;
  }
}
@keyframes rotationEarthMob {
  from {
    background-position: left center;
  }
  to {
    background-position: -396px center;
  }
}
@keyframes rotationEarthTab {
  from {
    background-position: left center;
  }
  to {
    background-position: -615px center;
  }
}
@keyframes rotationEarthDesk {
  from {
    background-position: left center;
  }
  to {
    background-position: -830px center;
  }
}
.video__frame {
  width: 100%;
  height: 170px;
}
@media (min-width: 767px) {
  .video__frame {
    height: 350px;
  }
}
@media (min-width: 1023px) {
  .video__frame {
    height: 534px;
  }
}
@media (min-width: 1279px) {
  .video__frame {
    height: 646px;
  }
}

.about {
  padding-top: 40px;
  padding-bottom: 40px;
  background-image: url("../img/bg-logo-single.png");
  background-size: 150%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 767px) {
  .about {
    background-size: 80%;
    padding-top: 56px;
  }
}
@media (min-width: 1023px) {
  .about {
    background-size: 50%;
    padding-bottom: 140px;
  }
}

.about__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  width: 100%;
}
@media (min-width: 767px) {
  .about__list {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 48px 24px;
  }
}

.about__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
}
@media (min-width: 767px) {
  .about__item {
    width: calc(50% - 12px);
    margin-bottom: 0;
  }
}

.about__item--single {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}
@media (min-width: 767px) {
  .about__item--single {
    width: calc(50% - 12px);
  }
}

@media (min-width: 1023px) {
  .about__item-position {
    width: 81px;
    height: 81px;
  }
}

.about__item-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  text-align: center;
  gap: 16px;
  padding: 0 16px;
}

.about__item-text {
  color: #191a19;
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.video--page-1 {
  padding-top: 16px;
  padding-bottom: 48px;
}

.page-nav--page-1 {
  padding-bottom: 128px;
}

.poster-page {
  height: 448px;
  background-image: url("../img/bg-page-1-mountain.jpg");
  background-size: auto calc(100% - 32px);
  background-position: top center;
  background-repeat: no-repeat;
}
@media (min-width: 767px) {
  .poster-page {
    background-image: none;
    height: 427px;
  }
}
@media (min-width: 1023px) {
  .poster-page {
    height: 646px;
  }
}

.poster-page__container {
  height: 100%;
  padding-bottom: 30px;
  padding-top: 82px;
  padding-left: 45px;
  padding-right: 50px;
  background-image: url("../img/buds-1.png");
  background-size: 338px 171px;
  background-position: bottom left 20%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 767px) {
  .poster-page__container {
    padding-bottom: 49px;
    padding-left: 192px;
    padding-right: 60px;
    padding-top: 71px;
    background-image: url("../img/buds-1.png"), url("../img/bg-page-1-mountain.jpg");
    background-size: 378px 193px, auto calc(100% - 49px);
    background-position: bottom left 10%, top center;
  }
}
@media screen and (min-width: 1023px) {
  .poster-page__container {
    padding-bottom: 103px;
    padding-left: 247px;
    padding-right: 70px;
    padding-top: 121px;
    background-size: 591px 302px, auto calc(100% - 103px);
    background-position: bottom left 15%, top center;
  }
}
@media screen and (min-width: 1279px) {
  .poster-page__container {
    padding-bottom: 103px;
    padding-left: 400px;
    padding-right: 100px;
    padding-top: 121px;
  }
}

.poster-page__text {
  text-align: right;
  color: #191a19;
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
@media (min-width: 767px) {
  .poster-page__text {
    font-size: 18px;
  }
}
@media (min-width: 1023px) {
  .poster-page__text {
    font-size: 24px;
  }
}

.poster-page-1__text--span {
  font-size: 20px;
}
@media (min-width: 767px) {
  .poster-page-1__text--span {
    font-size: 28px;
  }
}
@media (min-width: 1023px) {
  .poster-page-1__text--span {
    font-size: 32px;
  }
}

.poster-page-1__text--span--second {
  display: inline-block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 767px) {
  .poster-page-1__text--span--second {
    margin-top: 8px;
    font-size: 20px;
  }
}
@media (min-width: 1023px) {
  .poster-page-1__text--span--second {
    margin-top: 12px;
    font-size: 28px;
  }
}

.poster-page-2 {
  height: 386px;
  background-image: url("../img/bg-page-2.jpeg");
  background-size: auto calc(100% - 32px);
  background-position: top right -40px;
  background-repeat: no-repeat;
}
@media (min-width: 767px) {
  .poster-page-2 {
    background-image: none;
    height: 427px;
  }
}
@media (min-width: 1023px) {
  .poster-page-2 {
    height: 515px;
  }
}

.poster-page-2__container {
  height: 100%;
  padding-bottom: 30px;
  padding-left: 16px;
  padding-right: 0;
  padding-top: 82px;
  background-image: url("../img/buds-1.png");
  background-size: 338px 171px;
  background-position: bottom left 20%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 767px) {
  .poster-page-2__container {
    padding-bottom: 49px;
    padding-left: 64px;
    padding-top: 96px;
    background-image: url("../img/buds-1.png"), url("../img/bg-page-2.jpeg");
    background-size: 378px 193px, auto calc(100% - 49px);
    background-position: bottom left 10%, top right;
  }
}
@media screen and (min-width: 1023px) {
  .poster-page-2__container {
    padding-bottom: 110px;
    padding-left: 64px;
    padding-top: 96px;
    background-size: 591px 302px, auto calc(100% - 110px);
    background-position: bottom left 15%, top right;
  }
}
@media screen and (min-width: 1279px) {
  .poster-page-2__container {
    padding-bottom: 110px;
    padding-left: 112px;
    padding-top: 96px;
  }
}

.poster-page-2__text {
  text-align: left;
  color: #191a19;
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  width: 230px;
}
@media (min-width: 767px) {
  .poster-page-2__text {
    font-size: 16px;
    line-height: 180%;
    width: auto;
  }
}
@media (min-width: 1023px) {
  .poster-page-2__text {
    font-size: 20px;
  }
}
@media (min-width: 1279px) {
  .poster-page-2__text {
    font-size: 24px;
  }
}

.poster-page-2__text--span {
  font-size: 16px;
}
@media (min-width: 767px) {
  .poster-page-2__text--span {
    font-size: 20px;
  }
}
@media (min-width: 1023px) {
  .poster-page-2__text--span {
    font-size: 24px;
  }
}
@media (min-width: 1279px) {
  .poster-page-2__text--span {
    font-size: 28px;
  }
}

.poster-page-2__text--span--inherit {
  font-size: inherit;
}

.info {
  background-image: url("../img/bg-logo-multi.png");
  background-size: cover;
}
@media (min-width: 767px) {
  .info {
    background-image: none;
  }
}

.info-page-2__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 40px;
}
@media (min-width: 767px) {
  .info-page-2__container {
    background-image: url("../img/bg-logo-multi.png");
    background-size: cover;
  }
}

.info-with-img {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
@media (min-width: 767px) {
  .info-with-img {
    flex-direction: row;
    gap: 16px;
  }
}
@media (min-width: 1023px) {
  .info-with-img {
    gap: 27px;
  }
}
@media (min-width: 1279px) {
  .info-with-img {
    gap: 32px;
  }
}

.info-img-wrap {
  width: 100%;
  max-width: 200px;
  height: auto;
}
@media (min-width: 767px) {
  .info-img-wrap {
    max-width: 300px;
  }
}
@media (min-width: 1023px) {
  .info-img-wrap {
    max-width: 300px;
  }
}
@media (min-width: 1279px) {
  .info-img-wrap {
    max-width: 350px;
  }
}

.info-img-wrap--2 {
  max-width: 300px;
}
@media (min-width: 767px) {
  .info-img-wrap--2 {
    max-width: 300px;
  }
}
@media (min-width: 1023px) {
  .info-img-wrap--2 {
    padding-top: 100px;
    max-width: 536px;
  }
}
@media (min-width: 1279px) {
  .info-img-wrap--2 {
    max-width: 600px;
  }
}

.info-img {
  width: 100%;
  height: auto;
}

.info__title {
  color: #191a19;
  font-family: "Inter";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 24px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: disc !important;
}

.info-list--small-gap {
  gap: 8px;
}

.info__item {
  color: #191a19;
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  margin-left: 24px;
}

.info__item--single {
  margin-top: 32px;
  font-size: 16px;
}

.span--bold {
  font-weight: 700;
}

.span--orange {
  color: #df6437;
}

.poster-page-3 {
  height: 440px;
  background-image: url("../img/bg-page-3.png");
  background-size: auto 360px;
  background-position: calc(50% - 100px) top;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}
@media (min-width: 767px) {
  .poster-page-3 {
    background-image: none;
    height: 400px;
  }
}
@media (min-width: 1023px) {
  .poster-page-3 {
    height: 543px;
  }
}
@media (min-width: 1279px) {
  .poster-page-3 {
    height: 680px;
  }
}

.poster-page-3__container {
  height: 100%;
  padding-bottom: 40px;
  padding-left: 16px;
  padding-right: 24px;
  display: flex;
  justify-content: flex-end;
  padding-top: 82px;
  background-image: url("../img/arrow.svg");
  background-size: 260px 260px;
  background-position: bottom right 30%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 767px) {
  .poster-page-3__container {
    padding-bottom: 110px;
    padding-left: 64px;
    padding-right: 96px;
    padding-top: 64px;
    background-image: url("../img/arrow.svg"), url("../img/bg-page-3.png");
    background-size: 378px 230px, contain;
    background-position: bottom right 20%, top center;
  }
}
@media screen and (min-width: 1023px) {
  .poster-page-3__container {
    padding-bottom: 150px;
    padding-left: 64px;
    padding-right: 128px;
    padding-top: 64px;
    background-size: 335px 335px, contain;
    background-position: bottom right 28%, top center;
  }
}
@media screen and (min-width: 1279px) {
  .poster-page-3__container {
    padding-bottom: 250px;
    padding-left: 112px;
    background-size: 410px 410px, contain;
    background-position: bottom right 26%, top center;
    padding-top: 96px;
  }
}

.poster-page-3__text {
  text-align: left;
  color: #191a19;
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  text-align: right;
  width: 230px;
}
@media (min-width: 767px) {
  .poster-page-3__text {
    font-size: 16px;
    line-height: 180%;
  }
}
@media (min-width: 1023px) {
  .poster-page-3__text {
    font-size: 20px;
    width: 306px;
  }
}
@media (min-width: 1279px) {
  .poster-page-3__text {
    font-size: 24px;
    width: 370px;
  }
}

.poster-page-3__text--span {
  font-size: 16px;
}
@media (min-width: 767px) {
  .poster-page-3__text--span {
    font-size: 20px;
  }
}
@media (min-width: 1023px) {
  .poster-page-3__text--span {
    font-size: 24px;
  }
}
@media (min-width: 1279px) {
  .poster-page-3__text--span {
    font-size: 28px;
  }
}

.poster-page-3__text--span--inherit {
  font-size: inherit;
}

.back-ground {
  background-image: url("../img/bg-logo-multi.png");
  background-size: cover;
  background-position: top 380px center;
  background-repeat: no-repeat;
}
@media (min-width: 767px) {
  .back-ground {
    width: 768px;
    margin-left: auto;
    margin-right: auto;
    background-position: top 335px center;
  }
}
@media (min-width: 1023px) {
  .back-ground {
    width: 1024px;
    background-position: top 430px center;
  }
}
@media (min-width: 1279px) {
  .back-ground {
    width: 1280px;
    padding-bottom: 64px;
    background-position: top 540px center;
  }
}

@media (min-width: 767px) {
  .page-3 .poster-page-3__container {
    margin: 0;
  }
}

.page-3__text.text-green {
  margin-top: 32px;
  font-family: "Inter";
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 180%;
}

.page-3__text.text-orange {
  margin-top: 32px;
  font-family: "Inter";
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 200%;
}

.devider {
  padding-bottom: 140px;
  position: relative;
}

.devider__img-wrap {
  margin-bottom: 40px;
}

.devider__img {
  width: 100%;
  height: 100%;
}

.position-arrow {
  position: absolute;
  width: 130px;
  height: 150px;
  bottom: 0px;
  left: 120px;
  z-index: 99;
}
@media (min-width: 767px) {
  .position-arrow {
    transform: scaleX(-1);
    width: 180px;
    height: 200px;
    bottom: 40px;
    left: 90px;
  }
}
@media (min-width: 1023px) {
  .position-arrow {
    width: 200px;
    height: 220px;
    bottom: 30px;
    left: 170px;
  }
}

.info-7-text {
  color: #191a19;
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
@media (min-width: 767px) {
  .info-7-text {
    font-size: 16px;
    line-height: 180%;
  }
}
@media (min-width: 1023px) {
  .info-7-text {
    font-size: 16px;
  }
}
@media (min-width: 1279px) {
  .info-7-text {
    font-size: 20px;
  }
}

.register-form {
  padding-top: 32px;
  padding-bottom: 100px;
}

.register-form__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.register-form__title {
  color: #3ba637;
  font-family: "Inter";
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 180%;
  text-align: center;
  margin-bottom: 40px;
}

.register-form__wrap {
  background-color: #367bd3;
  border-radius: 20px;
  width: 100%;
}
@media (min-width: 767px) {
  .register-form__wrap {
    max-width: 600px;
  }
}
@media (min-width: 1023px) {
  .register-form__wrap {
    max-width: 800px;
  }
}

.register-form__title-wrap {
  padding: 16px 32px 16px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.register-form__title--big {
  color: #fff;
  text-align: center;
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 180%;
}
@media (min-width: 767px) {
  .register-form__title--big {
    font-size: 20px;
  }
}

.register-form__title--small {
  color: #fff;
  text-align: center;
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
}
@media (min-width: 767px) {
  .register-form__title--small {
    font-size: 16px;
  }
}

.register-form__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  gap: 40px;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  border: 1px solid #367bd3;
}
@media (min-width: 767px) {
  .register-form__form {
    padding: 32px 86px;
  }
}

.main-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.main-form label {
  color: #000;
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  padding-bottom: 16px;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #cfd4d9;
  width: 100%;
  height: 40px;
}

.form-control:not(:last-child) {
  margin-bottom: 24px;
}

.main-form .btn {
  margin-top: 18px;
  width: 100%;
}

.page-nav__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.page-nav__btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.page-nav__btn--back {
  background-color: transparent;
  color: #bebebe;
  font-size: 14px;
}

.footer {
  background-color: #252324;
  padding: 64px 0;
}

.footer__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.footer__logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
}

.footer__logo {
  width: 100%;
  transform: translateX(7%);
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.footer__contacts-title {
  color: #bebebe;
  font-family: "Inter";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: capitalize;
  text-align: center;
}

.footer__contacts-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.footer__contacts-svg {
  fill: #bebebe;
  width: 24px;
  height: 24px;
}

.footer__contacts-link:hover .footer__contacts-svg {
  fill: #fff;
}/*# sourceMappingURL=main.css.map */