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,
main,
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,
main,
menu,
nav,
section {
    display: block
}

*[hidden] {
    display: none
}

body {
    line-height: 1
}

menu,
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
}

:root {
    font-size: 2.5641025641vw
}

@media (min-width: 1200px) {
    :root {
        font-size: .5208333333vw
    }
}

.h1 {
    color: #242424;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.6rem
}

.h2 {
    color: #242424;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 4.2rem
}

.h2 span {
    font-family: Square Peg;
    font-size: 6.2rem;
    line-height: 4.8rem
}

.h3 {
    color: #242424;
    font-size: 2.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3rem
}

p {
    color: #424242;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.4rem
}

.section-title {
    color: #ff6f3d;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.2rem;
    letter-spacing: .16rem;
    text-transform: uppercase
}

@media (min-width: 1200px) {
    .h1 {
        font-size: 5.6rem;
        line-height: 6.2rem
    }

    .h2 {
        font-size: 3.8rem;
        line-height: 5rem
    }

    .h2 span {
        font-size: 5.6rem;
        line-height: 4rem
    }

    .h3 {
        font-size: 3.2rem;
        line-height: 3.8rem
    }
}

* {
    box-sizing: border-box
}

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

body {
    font-family: Inter, sans-serif;
    -webkit-user-select: none;
    user-select: none;
    background: #f4f6fa
}

body.no-scroll {
    overflow: hidden
}

.d-none {
    display: none !important
}

.wrapper {
    overflow: hidden
}

a {
    text-decoration: none
}

.container {
    padding: 0 2.5rem;
    width: 100%
}

@media (min-width: 1200px) {
    .container {
        padding: 0 5.5rem
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1.6rem 0
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header__logo {
    display: block;
    width: 3.7rem
}

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

.header__nav {
    display: none;
    gap: 5rem
}

.header__nav a {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    text-transform: uppercase
}

.header__link {
    display: none;
    color: #000;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 90%;
    letter-spacing: -.1rem;
    text-transform: uppercase
}

.header__menu-button {
    position: relative;
    cursor: pointer;
    padding: 0;
    background-color: transparent;
    border: none;
    width: 3.5rem;
    height: 3.5rem
}

.header__menu-button img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    transition: .3s
}

.header__menu-button img:nth-child(2) {
    opacity: 0
}

.header__menu-button.active img:first-child {
    opacity: 0
}

.header__menu-button.active img:nth-child(2) {
    opacity: 1
}

@media (min-width: 1200px) {
    .header {
        padding: 3rem 0
    }

    .header__logo {
        width: 5.3rem;
        margin-right: 14rem
    }

    .header__nav {
        display: flex;
        margin-right: auto
    }

    .header__link {
        display: block
    }

    .header__menu-button {
        display: none
    }
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    background: #1b1e29;
    padding: 1.6rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .3s;
    opacity: 0;
    pointer-events: none
}

.menu.active {
    opacity: 1;
    pointer-events: all
}

.menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.menu__logo {
    display: block;
    width: 3.7rem
}

.menu__logo img {
    width: 100%;
    height: auto
}

.menu__close-button {
    width: 3.5rem;
    height: 3.5rem;
    position: relative
}

.menu__close-button img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.menu__nav {
    display: grid;
    gap: 1.4rem
}

.menu__nav a {
    display: inline-flex;
    border-radius: 5.58rem;
    background: #1f2331;
    padding: 1.8rem 3rem;
    color: #e2e3ef;
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    text-transform: uppercase
}

.menu__bottom-logo {
    display: block;
    opacity: .2
}

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

.hero-section {
    padding: 12rem 0 4rem;
    position: relative
}

.hero-section__title {
    color: #202430;
    font-size: 8.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: -.7941rem;
    margin-bottom: 2rem;
    white-space: nowrap
}

.hero-section__img {
    position: absolute;
    bottom: -14rem;
    left: 0;
    width: 100%;
    z-index: 1
}

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

.hero-section__row {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 9rem
}

.hero-section__subtitle {
    color: #202430;
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    letter-spacing: -.15rem;
    max-width: 23rem
}

.hero-section__text {
    color: #202430;
    text-align: right;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -.06rem;
    max-width: 17rem;
    margin-left: auto
}

.hero-section__buttons {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 18rem
}

.hero-section__buttons .button {
    width: 20rem
}

@media (min-width: 1200px) {
    .hero-section {
        min-height: 100vh;
        padding: 0
    }

    .hero-section .container {
        padding-top: 11rem;
        padding-bottom: 6rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between
    }

    .hero-section__title {
        font-size: 19.2rem;
        letter-spacing: -1.7376rem;
        margin-bottom: 6rem;
        margin-left: -.5rem
    }

    .hero-section__img {
        width: 145rem;
        left: 50%;
        transform: translate(-50%);
        bottom: -24rem
    }

    .hero-section__row {
        justify-content: space-between;
        flex-direction: row;
        gap: 0;
        margin-bottom: auto
    }

    .hero-section__buttons {
        flex-direction: row-reverse;
        justify-content: space-between
    }

    .hero-section__buttons .button {
        width: 24rem
    }
}

.icon-button {
    display: flex;
    align-items: center;
    justify-content: center
}

.icon-button__title {
    width: 19rem;
    height: 6rem;
    background-color: #e7a600;
    border-radius: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -.028rem
}

.icon-button__icon {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #e7a600
}

.icon-button__icon svg {
    width: 1.7rem;
    height: auto
}

.button {
    border-radius: 1.4682rem;
    background: #fff;
    height: 6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: #202430;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -.028rem
}

.button svg {
    width: 1.7rem;
    height: auto
}

@media (min-width: 1200px) {
    .button {
        font-size: 1.8rem
    }

    .button svg {
        width: 2.8rem
    }
}

.about-section {
    padding: 10rem 0 6rem;
    background: #202430
}

.about-section__title {
    color: #e2e3ef;
    font-size: 5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    letter-spacing: -.25rem;
    text-transform: uppercase;
    padding-right: 2rem;
    margin-bottom: 4rem
}

.about-section__title-line {
    overflow: hidden
}

.about-section__text {
    color: #e2e3ef;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -.042rem;
    max-width: 17.5rem;
    margin-left: auto;
    margin-bottom: 6rem
}

.about-section__row {
    display: flex;
    flex-direction: column;
    gap: 4rem
}

.about-section__text-1 {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #e2e3ef;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -.028rem
}

.about-section__text-2 {
    display: none
}

.about-section__button {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    height: 6rem;
    padding: 0 3rem;
    border-radius: 6rem;
    background: #e2e3ef;
    color: #202430;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -.028rem
}

.offer-section {
    background: #E2E3EF;
    padding: 4.4rem 0;
}

.offer-section__title {
    color: #202430;
    font-size: 5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    letter-spacing: -0.57rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2.2rem;
}

.offer-section__text {
    color: #202430;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.06rem;
    display: block;
    margin-bottom: 5rem;
}

.offer-section__cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.offer-section__card {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 2.5rem;
    background: #F2F3FF;
    min-height: 44rem;
}

.offer-section__card-title {
    color: #1B1E29;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.06rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: auto;
}

.offer-section__card-text {
    color: #000;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.032rem;
    display: block;
    margin-bottom: 2rem;
}

.offer-section__card-image {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 8rem;
    height: auto;
}

.offer-section__inner-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.offer-section__item {
    background: #E7A600;
    padding: 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.offer-section__item-text {
    color: #FFF;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.036rem;
}

@media (min-width: 1200px) {

    .offer-section {
        padding: 7.4rem 0 10rem;
    }

    .offer-section__header {
        width: max-content;
        margin-left: auto;
    }

    .offer-section__title {
        font-size: 11.4rem;
        max-width: 90rem;
    }

    .offer-section__text {
        font-size: 2rem;
        max-width: 49.5rem;
    }

    .offer-section__cards {
        flex-direction: row;
    }

    .offer-section__card {
        width: 50%;
        padding: 5rem;
        min-height: 51rem;
    }

    .offer-section__card-title {
        font-size: 2rem;
    }

    .offer-section__card-text {
        font-size: 1.6rem;
        margin-bottom: 4rem;
        max-width: 52.8rem;
    }

    .card-image-first {
        width: 19.7rem;
        top: 3.7rem;
        right: 3.7rem;
    }

    .card-image-second {
        width: 25.1rem;
        top: 4.3rem;
        right: 1rem;
    }

    .offer-section__inner-list {
        flex-wrap: wrap;
        max-width: 70%;
        flex-direction: row;
    }

    .offer-section__item {
        padding: 1rem;
        gap: 2.6rem;
        min-width: max-content;
    }

    .offer-section__item-text {
        font-size: 1.8rem;
    }
}

@media (min-width: 1200px) {
    .about-section {
        padding: 0
    }

    .about-section .container {
        min-height: 100vh;
        padding: 11rem 5.5rem 6rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between
    }

    .about-section__title {
        position: relative;
        z-index: 1;
        font-size: 14.9rem;
        letter-spacing: -.745rem;
        max-width: 127rem;
        padding-right: 0;
        margin-bottom: 0
    }

    .about-section__text {
        margin-left: 50%;
        font-size: 2rem;
        letter-spacing: -.06rem;
        max-width: 52rem;
        margin-bottom: auto
    }

    .about-section__row {
        gap: 0;
        display: grid;
        grid-template-columns: 50% 25% 25%
    }

    .about-section__text-1 {
        font-size: 1.8rem
    }

    .about-section__text-2 {
        color: #e2e3ef;
        font-size: 1.8rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: -.036rem;
        display: block
    }
}

.assortment-section {
    padding: 6rem 0 0;
    background: #e2e3ef
}

.assortment-section__title {
    color: #202430;
    font-size: 5.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: -.504rem;
    margin-bottom: 2.5rem;
    white-space: nowrap
}

.assortment-section__row {
    display: grid;
    gap: 3rem;
    margin-bottom: 5rem
}

.assortment-section__row p {
    color: #202430;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal
}

.assortment-section__row p:not(:last-child) {
    max-width: 28rem
}

.assortment-section__row p:last-child {
    margin-left: auto;
    max-width: 11rem
}

.assortment-section__row strong {
    font-weight: 600
}

.assortment-section__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem
}

.assortment-section__item {
    overflow: hidden
}

.assortment-section__item img {
    width: 100%;
    height: auto;
    transition: .8s ease-in
}

.assortment-section__item:hover img {
    transform: scale(1.2)
}

@media (min-width: 1200px) {
    .assortment-section {
        padding: 12rem 0 0
    }

    .assortment-section__title {
        font-size: 30.2767rem;
        letter-spacing: -2.7249rem;
        margin-bottom: 10rem
    }

    .assortment-section__row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 11rem;
        position: relative
    }

    .assortment-section__row p {
        font-size: 1.6rem
    }

    .assortment-section__row p:first-child {
        max-width: 28rem
    }

    .assortment-section__row p:nth-child(2) {
        max-width: 36rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%)
    }

    .assortment-section__row p:last-child {
        text-align: right;
        margin-left: 0
    }

    .assortment-section__list {
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem
    }
}

.service-section {
    padding: 6rem 0 0;
    background: #e2e3ef
}

.service-section__header {
    margin-bottom: 5rem
}

.service-section__subtitle {
    color: #000;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    max-width: 28rem;
    margin-bottom: 1.6rem
}

.service-section__title {
    color: #1b1e29;
    font-size: 5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    letter-spacing: -.25rem;
    text-transform: uppercase
}

.service-section__title-line {
    overflow: hidden
}

.service-section__list {
    display: grid;
    gap: 5rem;
    margin-bottom: 4rem
}

.service-section__item {
    display: grid;
    gap: 2rem
}

.service-section__item-title {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    color: #1b1e29;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -.06rem;
    text-transform: uppercase
}

.service-section__item-title img {
    width: 2.5rem;
    height: auto
}

.service-section__item-text {
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: grid;
    gap: 1.5rem
}

.service-section__footer {
    display: flex;
    justify-content: center
}

.service-section__footer .button {
    width: 21rem
}

@media (min-width: 1200px) {
    .service-section {
        padding: 12rem 0 8rem
    }

    .service-section__subtitle {
        max-width: 33rem;
        margin-bottom: 2rem;
        font-size: 1.4rem
    }

    .service-section__title {
        font-size: 14.9rem;
        letter-spacing: -.745rem;
        max-width: 95rem
    }

    .service-section__list {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        align-items: flex-start;
        margin-bottom: 8rem
    }

    .service-section__item-title {
        font-size: 2rem;
        letter-spacing: -.06rem;
        margin-bottom: 2rem
    }

    .service-section__item-text {
        max-width: 33rem
    }

    .service-section .button {
        width: 25rem
    }
}

.logistics-section {
    padding: 6rem 0 62rem;
    background: #e2e3ef;
    overflow: hidden;
    position: relative
}

.logistics-section__title {
    color: #1b1e29;
    text-align: right;
    font-size: 5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    letter-spacing: -.25rem;
    text-transform: uppercase;
    max-width: 30rem;
    margin-bottom: 4rem;
    margin-left: auto
}

.logistics-section__title-line {
    overflow: hidden
}

.logistics-section__text {
    color: #1b1e29;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 25.5rem
}

.logistics-section__img {
    position: absolute;
    top: 28rem;
    left: 0;
    width: 100%;
    display: block
}

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

@media (min-width: 1200px) {
    .logistics-section {
        padding-top: 12rem;
        padding-bottom: 75rem
    }

    .logistics-section__title {
        font-size: 14.9rem;
        letter-spacing: -.745rem;
        max-width: 120rem
    }

    .logistics-section__img {
        width: 180rem;
        bottom: auto;
        top: 0
    }

    .logistics-section__text {
        position: absolute;
        bottom: 30rem;
        left: 102rem;
        z-index: 1;
        color: #fff;
        max-width: 33.8rem
    }
}

.form-section {
    background: #1b1e29;
    padding: 6rem 0
}

.form-section__title {
    color: #e2e3ef;
    text-align: center;
    font-size: 5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    letter-spacing: -.25rem;
    text-transform: uppercase;
    margin-bottom: 2rem
}

.form-section__title-line {
    overflow: hidden
}

.form__body {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem
}

.form__input {
    border-radius: 1.6076rem;
    border: .804px solid #e2e3ef;
    height: 5rem;
    border-radius: 1.6rem;
    padding: 0 2rem;
    color: #e2e3ef;
    font-size: 1.4468rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.0145rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent
}

.form__input::placeholder {
    color: #e2e3ef
}

.form__input:focus {
    outline: none
}

.form__textarea {
    height: 12rem;
    border-radius: 1.6076rem;
    border: .804px solid #e2e3ef;
    padding: 2rem;
    color: #e2e3ef;
    font-size: 1.4468rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.0145rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    resize: none
}

.form__textarea::placeholder {
    color: #e2e3ef
}

.form__textarea:focus {
    outline: none
}

.form__footer {
    display: flex;
    justify-content: center
}

.form__button {
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    border: none;
    display: flex;
    align-items: center
}

.form__button-title {
    background: #e2e3ef;
    color: #000;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -.028rem;
    height: 6rem;
    padding: 0 3.2rem;
    border-radius: 6rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.form__button-icon {
    background: #e2e3ef;
    width: 6rem;
    height: 6rem;
    border-radius: 6rem;
    display: flex;
    align-items: center;
    justify-content: center
}

@media (min-width: 1200px) {
    .form-section {
        padding: 8rem 0
    }

    .form-section__title {
        font-size: 14.9rem;
        letter-spacing: -.745rem;
        max-width: 102rem;
        margin: 0 auto 3rem
    }

    .form {
        max-width: 43rem;
        margin: 0 auto
    }
}

.footer {
    background: #1b1e29;
    padding-bottom: 4rem
}

.footer__logo {
    display: block;
    width: 100%;
    margin-bottom: 2rem
}

.footer__logo img {
    width: 100%;
    height: auto
}

.footer__copyright {
    color: #e2e3ef;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 3rem;
    text-align: center
}

.footer__nav {
    display: grid;
    gap: 2rem;
    margin-bottom: 10rem
}

.footer__nav li {
    display: flex;
    justify-content: center
}

.footer__nav a {
    padding: 1rem;
    display: inline-flex;
    border-radius: 3.1rem;
    background: #1f2331;
    color: #e2e3ef;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    text-transform: uppercase
}

.footer__dev {
    display: block;
    text-align: center;
    color: #e2e3ef;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal
}

.footer__dev span {
    font-weight: 400;
    text-decoration: underline
}

@media (min-width: 1200px) {
    .footer__logo {
        width: 36.8rem;
        margin: 0 auto 1rem
    }

    .footer__copyright {
        font-size: 2rem;
        margin-bottom: 3.5rem
    }

    .footer__nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3rem
    }

    .footer__nav a {
        padding: 1rem 2rem;
        border-radius: 3rem
    }

    .footer__dev {
        font-size: 1.4rem
    }


}