body {
    font-family: "Montserrat Alternates", sans-serif;
    background-color: #0f0f0f;
    color: #e4e4e4;
    line-height: 1.6;
}

.container {
    max-width: 1480px;
    padding-inline: 20px;
    margin: 0 auto;
}

@media (max-width: 450px) {
    .container {
        padding-inline: 20px;
        margin: 0 auto;
    }
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: 0.8s ease;    
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.header__inner {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-weight: 500;
    font-size: 22px;
    text-transform: uppercase;
}

.menu__mobile {
    display: none;
}

.menu__list {
    display: flex;
    align-items: center;
    gap: 50px;
    font-size: 14px;
    text-transform: uppercase;
    color: #c5c5c5;
}

.burger {
  display: none;
  font-size: 35px;
  cursor: pointer;
}

.menu__item:hover {
    color: #ffbb54;
    transition: ease 0.3s;
}

.header__contacts {
    display: flex;
    text-align: right;
    align-items: center;
    font-weight: 500;
    font-size: 22px;
    gap: 35px;
}

.header__contacts span {
    font-size: 14px;
    color: #727272;
}

.header__contacts a{
    display: flex; 
    flex-direction: column;
}

.telegram-icon{
    filter: invert(1);
}

@media (max-width: 1340px) {
    .header__logo {
        font-size: 20px;
    }

    .menu__list {
        gap: 40px;
        font-size: 12px;
    }

    .header__contacts {
        font-size: 20px;
    }  
}

@media (max-width: 1050px) {
    .header__inner {
        padding: 20px 0;
    }

    .header__contacts {
        display: none;
    } 
    
    .burger {
        display: block;
    }


    .menu.active {
        right: 0;
        opacity: 1;
    }

    .menu.active .menu__mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .menu {
        position: fixed;
        top: 96px;
        right: -100%;
        opacity: 0;
        width: 250px;
        background-color: #181818;

        padding: 40px 20px;
        transition: 0.5s;
        height: 100dvh;
        z-index: 8;
  }

    .menu__list {
        flex-direction: column;
        font-size: 16px;
        text-align: center;
        gap: 50px;
    }
}

@media (max-width: 450px) {
    .header__inner {
        padding: 5px 0;
    }

    .menu {
        top: 66px;
    }
}

/* SECTION HERO */

.hero {
    padding-top: 97px;
    position: relative;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 1000px) {
    .hero {
         background-image: url('../images/hero-mobile.png');
    } 
}

@media (max-width: 450px) {
    .hero {
        background-attachment: none;
    } 
}

.hero__inner {
    display: flex;
    justify-content: space-between;
    padding-bottom: 100px;
    opacity: 0;
    transform: translateX(-150px);
    transition: 1s ease;
    height: 900px;
}

@media (max-width: 1340px) {
    .hero__inner {
        height: 800px;
    }
}

@media (max-width: 1050px) {
    .hero__inner {
        height: 750px;
    }
}

.hero__inner.visible {
    opacity: 1;
    transform: translateX(0);
}

.text-content {
    max-width: 900px;
    margin-top: 100px;
}


.hero__title {
    text-transform: uppercase;
    font-size: 66px;
    line-height: 1.2;
    text-shadow: 0 2px 50px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    max-width: 555px;
    font-weight: 500;
}

.hero__description {
    font-size: 20px;
    max-width: 515px;
    margin-bottom: 30px;
    color: #e4e4e4;
    text-shadow: 0 2px 50px rgba(0, 0, 0, 0.8);
}

.hero__button-block {
    display: flex;
    gap: 15px;
}

.hero__button {
    font-family: "Montserrat Alternates", sans-serif;
    color: #e4e4e4;
    font-size: 20px;
    padding: 25px 20px;
    border-radius: 7px;
    border: 1px solid #e4e4e4;
    transition: 0.3s ease;
    cursor: pointer;
}

@media (max-width: 1050px) {
    .hero__button {
        font-size: 16px;
        padding: 20px 15px;
    }

    .hero__description {
        font-size: 16px;
        max-width: 410px;
        margin-bottom: 25px;
    }

    .hero__title {
        font-size: 50px;
        line-height: 1.2;
        text-shadow: 0 2px 50px rgba(0, 0, 0, 0.8);
        margin-bottom: 15px;
        max-width: 500px;
    }
    
    .hero__button-block {
        gap: 12px;
    }
}

@media (max-width: 450px) {
    .hero__button {
        padding: 15px 15px;
        font-size: 14px;
    }

    .hero__title {
        font-size: 40px;
        margin-bottom: 15px;
        max-width: 350px;
    } 

    .hero__description {
        font-size: 16px;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .text-content {
        margin-top: 15px;
    }

    .hero__button-block {
        flex-direction: column;
    }
}

.hero__button:hover{
    background-color: #e4e4e4;
    border: 1px solid #e4e4e4;
    color: #111111;
}

/* SECTION GALLERY */

.gallery {
    padding-top: 160px;
}

@media (max-width: 1340px) {
    .gallery {
        padding-top: 150px;
    }
}

@media (max-width: 450px) {
    .gallery {
        padding-top: 100px;
    }
}

.gallery__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    opacity: 0;
    transform: translateY(150px);
    transition: opacity 1s ease, transform  1s ease;
}

@media (max-width: 1340px) {
    .gallery__inner {
        gap: 30px;
    }
}

@media (max-width: 1050px) {
    .gallery__inner {
        gap: 25px;
    }
}

.gallery__inner.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery__title {
    color: #ffbb54;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
}

@media (max-width: 1340px) {
    .title {
        font-size: 30px;
    }
}

.gallery__slide {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gallery__slide-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: hidden;
    border-radius: 7px;
}

@media (max-width: 450px) {
    .gallery__slide-items {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
}

.gallery__img {
    border-radius: 10px;
    max-height: 635px;
}

@media (max-width: 450px) {
    .gallery__img {
        border-radius: 10px;
        align-items: center;
    }
}

.gallery__slide-items img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.gallery__slide-bottom {
    opacity: 0;
    max-height: 0;
    transition: 0.6s ease;
}

.gallery__slide:hover .gallery__slide-bottom {
    opacity: 1;
    max-height: 250px;
}

@media (max-width: 450px) {
    .gallery__slide:hover .gallery__slide-bottom {
    max-height: 400px;
}
}

.slide-bottom__title {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 400;
    margin-top: 42px;
    color: #a0a0a0;
}

@media (max-width: 1340px) {
    .slide-bottom__title {
        font-size: 22px;
        margin-top: 40px;
    }
}

@media (max-width: 1050px) {
    .slide-bottom__title {
        font-size: 15px;
    }
}

@media (max-width: 850px) {
    .slide-bottom__title {
        margin-top: 33px;
    }
}

@media (max-width: 450px) {
    .slide-bottom__title {
        margin-top: 20px;
    }
}


.gallery__slide__description-box {
    display: flex;
    gap: 25px;
    padding-top: 25px;
    padding-bottom: 40px;
    border-bottom: 1px solid #afafaf81;
}

@media (max-width: 1340px) {
    .gallery__slide__description-box {
        gap: 25px;
        padding-top: 20px;
        padding-bottom: 40px;
    }
}

@media (max-width: 1050px) {
    .gallery__slide__description-box {
        gap: 15px;
    }
}

@media (max-width: 850px) {
    .gallery__slide__description-box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding-bottom: 33px;
        gap: 10px;
    }
}

.description-box__item {
    border: 1px solid #292929;
    border-radius: 7px;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 850px) {
    .description-box__item {
        max-width: 500px;
        height: 75px;
    }
}

@media (max-width: 450px) {
    .description-box__item {
        max-width: 500px;
        height: 95px;
    }
}

@media (max-width: 1340px) {
    .description-box__item {
        padding: 15px 20px;
    }
}

@media (max-width: 1050px) {
    .description-box__item {
        padding: 12px 15px;
    }
}

.description-box__item__title {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #e4e4e4;
}

@media (max-width: 1050px) {
    .description-box__item__title {
        font-size: 14px;
    }
}

@media (max-width: 450px) {
    .description-box__item__title {
        font-size: 14px;
    }
}

.description-box__item__text {
    font-size: 16px;
    color: #818181;
}

@media (max-width: 1050px) {
    .description-box__item__text {
        font-size: 14px;
    }
}

@media (max-width: 450px) {
    .description-box__item__text {
        font-size: 14px;
    }
}

.description-box__item__price {
    font-size: 16px;
    color: #818181;
}

@media (max-width: 1050px) {
    .description-box__item__price {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .description-box__item__price {
        font-size: 14px;
    }
}

.description-count {
    display: flex;
    align-items: center;
    font-size: 42px;
    margin-left: auto;
    font-weight: 400;
    color: #ffbb54;
    border: 1px solid #292929;
    border-radius: 7px;
    padding: 10px 15px;
}

@media (max-width: 1340px) {
    .description-count {
        font-size: 40px;
    }
}

@media (max-width: 1050px) {
    .description-count {
        font-size: 32px;
    }
}

@media (max-width: 850px) {
    .description-count {
        font-size: 28px;
        margin-left: 0;
    }
}

/* SECTION MAKING */

.making {
    padding-top: 160px;
}

@media (max-width: 1340px) {
    .making {
        padding-top: 150px;
    }
}

@media (max-width: 400px) {
    .making {
        padding-top: 100px;
    }
}

.making__inner {
    align-items: center;
    opacity: 0;
    transform: translateY(150px);
    transition: opacity 1s ease, transform  1s ease;
}

.making__content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.making__img {
    height: 540px;
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .making__img {
        display: none;
    }
}

.making__inner.visible {
    opacity: 1;
    transform: translateY(0);
}

.making__title {
    color: #ffbb54;
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 70px;
}

@media (max-width: 450px) {
    .making__title {
        margin-bottom: 55px;
    }
}


.making__sub-title {
    font-size: 24px;
    color: #757575;
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.8;
    text-transform: uppercase;
}

@media (max-width: 1340px) {
    .making__sub-title {
        font-size: 20px;
        max-width: 900px;
        margin-bottom: 55px;
    }
}

@media (max-width: 1050px) {
    .making__sub-title {
        font-size: 18px;
        max-width: 860px;
        margin-bottom: 45px;
    }
}

@media (max-width: 450px) {
    .making__sub-title {
        font-size: 16px;
        margin-bottom: 30px;
        text-align: center;
    }
}

.making__sub-title span {
    color: #e9e9e9;
}

.making__items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 400px) {
    .making__items {
        gap: 25px;
    }
}

.making__item {
    display: flex;
    flex-direction: column;
    border: 1px solid #353535;  
    padding: 35px 35px;    
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.making__icons {
    filter: invert(1);
    width: 40px;
}

.icon-plus {
    width: 20px;
    margin-left: auto;
    filter: invert(1);
}

@media (max-width: 1050px) {
    .making__icons {
        width: 38px;
    }

    .icon-plus {
        width: 18px;
    }
}

@media (max-width: 450px) {
    .icon-plus {
        width: 14px;
    }
}

@media (max-width: 1050px) {
    .making__item {
        padding: 25px 30px;    
    }
}

@media (max-width: 450px) {
    .making__item {
        padding: 15px 25px; 
    }
}

@media (max-width: 1050px) {
    .making__icons {
        width: 30px;
    }
} 

@media (max-width: 450px) {
    .making__icons {
        display: none;
    }
} 

.making__item-text {
    display: flex;
    align-items: center;
    font-size: 20px;
}

.making__item-text p{
    margin-left: 45px;
}

@media (max-width: 450px) {
    .making__item-text p {
        margin-left: 0;
        margin-right: 10px;
    }
}

@media (max-width: 1050px) {
    .making__item-text {
        font-size: 16px; 
    }
}

@media (max-width: 450px) {
    .making__item-text {
        font-size: 14px; 
        min-height: 57px;
        justify-content: center;
        gap: 5;
    }
}

.making__item-description { 
    transition: opacity 0.2s ease,  0.6s ease;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.making__item-description p{ 
    font-size: 16px;
    color: #d8d8d871;
    padding-top: 20px;
    margin-top: 20px;
    padding-inline: 10px;
    border-top: 1px solid #525252; 
}

@media (max-width: 400px) {
    .making__item-description p {
        font-size: 12px;
    }
}

.making__item-description.active{
    max-height: 200px;
    opacity: 1;
}


@media (max-width: 1340px) {
    .making__title-end {
        font-size: 20px;
        max-width: 900px;
        margin-top: 55px;
    }
}

@media (max-width: 1050px) {
    .making__title-end {
        font-size: 18px;
        max-width: 860px;
        margin-top: 45px;
    }
}

@media (max-width: 400px) {
    .making__title-end {
        font-size: 13px;
        margin-top: 35px;
        margin-bottom: 50px;
    }
}

/* SECTION PROCESS */

.process {
    padding-top: 160px;
}

@media (max-width: 1340px) {
    .process {
        padding-top: 150px;
    }
}

@media (max-width: 450px) {
    .process {
        padding-top: 100px;
    }
}

.process__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(150px); 
    transition: opacity 1s ease, transform  1s ease;
}

.process__inner.visible {
    opacity: 1;
    transform: translateY(0);
}

.process__title {
    color: #ffbb54;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
}

.process__content {
    position: relative;
    margin-top: 70px;
    display: flex;
}

@media (max-width: 450px) {
    .process__content {
        margin-top: 55px;
    }
}

.process__images {
    width: 450px;
    height: 100%;
    position: sticky;
    top: 100px;
    border-radius: 7px;
}

@media (max-width: 1050px) {
    .process__images {
        width: 400px;
    }
}

@media (max-width: 850px) {
    .process__images {
        display: none;
    }
}

.process__description {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-left: 70px;
}

@media (max-width: 1340px) {
    .process__description {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
        padding-left: 70px;
    }
}

@media (max-width: 850px) {
    .process__description {
        padding-left: 0;
    }
}

@media (max-width: 450px) {
    .process__description {
        gap: 25px;
        padding-left: 0;
    }
}

.process__description-item {
    display: flex;
    flex-direction: column;
    transition: 0.6s ease;
    max-width: 500px;
    border: 1px solid #353535;
    padding: 20px 30px;
    border-radius: 7px;
}

@media (max-width: 1340px) {
    .process__description-item {
        max-width: 720px;
        padding: 20px 30px;
    }
}

@media (max-width: 1050px) {
    .process__description-item {
        padding: 20px 25px;
    }
}

.process__description-item:hover {
    scale: 1.02;
}

.process__description-title {
    font-size: 24px;
    font-weight: 500;
}

@media (max-width: 1050px) {
    .process__description-title {
        font-size: 20px;
        font-weight: 500;
    }
}

@media (max-width: 450px) {
    .process__description-title {
        font-size: 14px;
        text-transform: uppercase;
    }
}

.process__description-text {
    transition: 0.3s ease;
    font-size: 16px;
    line-height: 2;
    margin-top: 15px;
    color: #727272;
}

@media (max-width: 1050px) {
    .process__description-text {
        font-size: 14px;
        margin-top: 12px;
    }
}

@media (max-width: 450px) {
    .process__description-text {
        font-size: 14px;
    }
}

.process__number {
    color: #ffbb54;
    padding-right: 5px;
}

@media (max-width: 450px) {
    .process__number {
        font-size: 16px;
    }
}

/* SECTION CLADDING */

.cladding {
    padding-top: 160px;
    padding-bottom: 145px;
}

@media (max-width: 1340px) {
    .cladding {
        padding-top: 150px;
        padding-bottom: 115px;
    }
}

@media (max-width: 450px) {
    .cladding {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.cladding__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(150px); 
    transition: 1s ease;
}   

.cladding__inner.visible {
    opacity: 1;
    transform: translateY(0);
} 

.cladding__title {
    color: #ffbb54;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 400;
}

@media (max-width: 450px) {
    .cladding__title {
        margin-bottom: 55px;
    }
}

.cladding__service {
    display: flex;
    flex-direction: column;
    margin-bottom: 70px;
    width: 100%;
}

.cladding__service__text__box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media (max-width: 1340px) {
    .cladding__service__text__box {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
}

.cladding__service__sub-title {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 35px;
    font-weight: 400;
}

@media (max-width: 1340px) {
    .cladding__service__sub-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .cladding__service__sub-title {
        font-size: 16px;
        margin-bottom: 30px;
        text-align: center;
    }
}

.cladding__service__sub-title span{
    color: #ffbb54;
    margin-right: 10px;
}

.cladding__service__description {
    padding: 20px 35px;
    height: 150px;
    border: 1px solid #353535;
    border-radius: 10px;
    color: #727272;
    line-height: 1.8;
    font-size: 20px;
    transition: 0.5s ease;
}

@media (max-width: 1050px) {
    .cladding__service__description {
        font-size: 16px;
        height: 130px;
    }
}

@media (max-width: 450px) {
    .cladding__service__description {
        padding: 20px 25px;
        height: 145px;
        font-size: 14px;
    }
}

.cladding__service__description:hover {
    transform: scale(1.02);
}

.cladding__service__description span {
    color: #e2e2e2;
}

.cladding__material__title {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 35px;
}

@media (max-width: 1340px) {
    .cladding__material__title {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .cladding__material__title {
        font-size: 16px;
        margin-bottom: 30px;
        text-align: center;
    }
}

.cladding__material__title span{
    color: #ffbb54;
    margin-right: 10px;
}

.cladding__material__items {
    display: flex;
    gap: 25px;
}

@media (max-width: 1050px) {
    .cladding__material__items{
        gap: 25px;
    }
}

@media (max-width: 1000px) {
    .cladding__material__items{
        display: block;
    }
}

.cladding__material__items-l{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 50%;
}

@media (max-width: 1340px) {
    .cladding__material__items-l {
        gap: 25px;
    }
}

@media (max-width: 1000px) {
    .cladding__material__items-l {
        width: 100%;
        margin-bottom: 25px;
    }
}

.cladding__material__items-r{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 50%;
}

@media (max-width: 1340px) {
    .cladding__material__items-r{
        gap: 25px;
    }
}

@media (max-width: 1000px) {
    .cladding__material__items-r{
        width: 100%;
    }
}

.cladding__material__item {
    border: 1px solid #353535;
    border-radius: 7px;
    transition: ease 0.3s;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (max-width: 1050px) {
    .cladding__material__item {
        max-width: 457px;
    }
}

@media (max-width: 1000px) {
    .cladding__material__item {
        padding: 30px 25px;
        max-width: 100%;
    }
}

.cladding__material__item__main {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}

@media (max-width: 1050px) {
    .cladding__material__item__main {
        font-size: 16px;
    }
}

@media (max-width: 450px) {
    .cladding__material__item__main {
        font-size: 14px;
    }
}

.opacity.active{
    opacity: 1;
    max-height: 190px;
}

.opacity {
    transition: opacity 0.2s ease,  0.6s ease;
    opacity: 0;
    max-height: 0;
}

@media (max-width: 450px) {
    .opacity.active{
        opacity: 1;
        max-height: 230px;
    }
}

@media (max-width: 1300px) {
    .opacity.active{
        opacity: 1;
        max-height: 230px;
    }
}

.opacity p {
    margin-top: 20px;
    color: #727272;
}

@media (max-width: 450px) {
    .opacity p {
        font-size: 14px;
        color: #727272;
    }
}

.icon {
    filter: invert(1);
}

@media (max-width: 1340px) {
    .title {
        font-size: 30px;
    }
}

@media (max-width: 450px) {
    .title {
        font-size: 20px;
    }
}


/* FOOTER */

.footer {
    background-color: #0c0c0c;
    text-align: center;
    align-items: center;
    color: #383838;
    font-size: 14px;
    font-weight: 600;
    padding: 45px 0;
}

.footer__inner {
    display: flex;
    gap: 125px;
    font-weight: 400;
    color: #afafaf;
    text-align: left;
}

.footer__company {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

@media (max-width: 450px) {
    .footer__company {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .footer__inner {
        display: block;
    }

    .footer__nav {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .footer__contacts {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
}

.footer__nav__title {
    font-weight: 500;
}

.footer__nav__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #464646;
    font-size: 12px;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
}

.footer__contacts__title {
    font-weight: 500;
}

.footer__contacts__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #464646;
    font-size: 12px;
}

.footer__contacts__item {
    display: flex;
    flex-direction: column;
}

.footer__contacts__item span{
    margin-bottom: 2px;
    font-weight: 500;
    color: #696969;
}

.footer__origin {
    margin-left: auto;
    font-size: 16px;
    color: #464646;
    text-transform: uppercase;
}

@media (max-width: 1250px) {
    .footer__inner {
        justify-content: space-between;
        gap: 40px;
    }
}

@media (max-width: 850px) {
    .footer__company {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .footer__inner {
        display: block;
    }

    .footer__nav {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .footer__contacts {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .footer__origin {
        font-size: 14px;
        text-align: center;
    }

}









