body{
    font-family: 'Gilroy';
    font-weight: 300;
    font-size: 16px;
    line-height: 1.25;
    overflow-x: hidden;
}
a, a:focus, button:focus, input:focus, textarea:focus{
    outline: none;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    height: 100%;
}

@media (max-width:1340px) {
    .container {
        padding: 0 30px;
    }
}
@media(max-width:699px){
    .container {
        padding: 0 20px;
    }
}

.btn-primary{
    border-radius: 8px;
    background: #005F90;
    padding: 16px 32px;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    transition: 0.2s ease;
}
.btn-primary:hover{
    background: #033955;
}
.btn-danger{
    border-radius: 8px;
    background: #F00;
    padding: 20px 40px;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    transition: 0.2s ease;
}
.btn-danger:hover{
    background: #DB0F0F;
}
.btn-product{
    border-radius: 8px;
    background: #005F90;
    padding: 20px 24px;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    transition: 0.2s ease;
}
.btn-product:hover{
    background: #033955;
}
.btn-light{
    color: #005F90;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
    transition: 0.2s ease;
}
.btn-light:hover{
    color: #F00;
}
@media (max-width:1340px){
    .btn-primary{
        padding: 16px 24px;
    }
    .btn-danger{
        padding: 16px 30px;
        font-size: 14px;
    }
    .btn-product{
        padding: 16px 20px;
        font-size: 14px;
    }
    .btn-light{
        font-size: 14px;
    }
}

.swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    border-radius: 4px;
    border: 2px solid #333;
    background: none !important;
}
.swiper-pagination-bullet-active{
    background: #333 !important;
}
.swiper-slide{
    height: auto;
}
main{
    overflow: hidden;
}
.swiper-slide{
    opacity: .2;
    transition: 0.2s ease;
}
.swiper-slide-active, .swiper-slide-next, .swiper-slide-next + .swiper-slide {
    opacity: 1;
}
.bread{
    color: #4F4F4F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%; /* 16.8px */
}
.bread span span:first-child{
	font-weight: bold;
}

@media (max-width:1049px){
    .bread{
        font-size: 14px;
    }
}
@media (max-width:699px){
    .bread{
        font-size: 13px;
        line-height: 20px;
    }
}

.catalog{
    padding-top: 80px;
    padding-bottom: 150px;
}
.catalog__head{
    margin-top: 40px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.catalog__head h3{
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 850px;
}
.catalog__list{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: -10px;
}
.catalog__list .catalog__card{
    flex: 0 0 calc(100%/3 - 20px);
    margin: 10px;
}
.catalog__card{
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.15);
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.catalog__card img{
    margin: 0 auto;
	height: 215px;
	object-fit: contain;
}
.catalog__name{
    margin-top: 30px;
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: 0.2s ease;
}
.catalog__name:hover{
    color: #005F90;
}
.catalog__price{
    margin-top: 10px;
    padding-bottom: 20px;
    color: #005F90;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.catalog__wrapper{
    margin-top: auto;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.catalog__details{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
    padding-bottom: 5px;
}
.catalog__details:last-child{
    border: none;
}
.catalog__details-name{
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.catalog__details-param{
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.catalog__action{
    display: flex;
    align-items: center;
    gap: 80px;
}

@media (max-width:1049px){
    .catalog{
        padding-top: 60px;
        padding-bottom: 100px;
    }
    .catalog__head{
        margin-top: 30px;
    }
    .catalog__head{
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .catalog__head h3{
        font-size: 30px;
        max-width: 100%;
    }
    .catalog__list{
        margin: -14px;
    }
    .catalog__list .catalog__card{
        flex: 0 0 calc(100%/2 - 20px);
    }
}
@media (max-width:699px){
    .catalog{
        padding-top: 40px;
        padding-bottom: 70px;
    }
    .catalog__head{
        margin-bottom: 40px;
    }
    .catalog__head h3{
        font-size: 22px;
    }
    .catalog__list{
        margin: -10px;
    }
    .catalog__list .catalog__card{
        flex: 1;
    }
    .catalog__card{
        padding: 30px;
    }
    .catalog__card img{
        margin: 0 auto;
        height: 150px;
        object-fit: contain;
    }
    .catalog__name{
        font-size: 18px;
    }
    .catalog__details-name{
        font-size: 13px;
    }
    .catalog__details-param{
        font-size: 15px;
    }
    .catalog__action{
        justify-content: space-between;
        gap: 0;
    }
}

.pages{
    margin-top: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}
.pages-left, .pages-right{
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.10);
    padding: 10px;
    border: 1px solid transparent;
    transition: 0.2s ease;
}
.pages-left:hover, .pages-right:hover{
    border-color: #005f9087;
}
.pages-num a{
	margin-left: 7px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.10);
    padding: 10px 15px;
    width: 32px;
    height: 32px;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 1px solid transparent;
    transition: 0.2s ease;
}
.pages-num a:hover{
    border-color: #005f9087;
}
.pages-num a:first-child{
	margin-left: 0;
}
.pages img{
    width: 16px;
}

@media (max-width:699px){
    .pages{
        justify-content: center;
    }
}

.content{

}
.content h4{
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}
.content h5{
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}
.content p{
    color: #4F4F4F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 26.1px */
    margin-bottom: 20px;
}
.content ul{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
    margin-bottom: 30px;
}
.content ul li{
    color: #4F4F4F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 26.1px */
    display: flex;
    align-items: flex-start;
}
.content ul li::before{
    content: '';
    background: #005F90;
    border-radius: 50px;
    padding: 4px;
    margin-right: 12px;
    margin-top: 7px;
}

@media (max-width:1340px){
    .content p{
        font-size: 16px;
    }
    .content ul li{
        font-size: 16px;
    }
    .content ul li::before{
        padding: 3px;
    }
}
@media (max-width:699px){
    .content h4{
        font-size: 18px;
    }
    .content h5{
        font-size: 16px;
    }
    .content p{
        font-size: 14px;
    }
    .content ul li{
        font-size: 14px;
    }
}



/* Шапка */
.nav__top{
    background: #005F90;
    padding: 15px 0;
}
.nav__top-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav__top-name{
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 115%; /* 18.4px */
}
.nav__top ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.nav__top ul a{
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    transition: 0.2s ease;
}
.nav__top ul a:hover{
    color: #c8c8c8;
}
.nav__top ul a i{
    padding-right: 12px;
    font-size: 13px;
}

.nav__mid{
    background: #FFF;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.10);
    padding: 20px 0;
}
.nav__mid-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav__mid-logo img{
    width: 110px;
}
.nav__mid ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.nav__mid ul li a{
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
    transition: 0.2s ease;
}
.nav__mid ul li a:hover{
    color: #005f90;
}
.nav__mid .btn-primary{

}
.nav__mid-soc{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav__mid-soc i{
    font-size: 22px;
    color: #000;
    transition: 0.2s ease;
}
.nav__mid-soc i:hover{
    color: #005f90;
}




/* Страницы */
.hero{
    margin-top: 80px;
    padding-bottom: 60px;
    background: #fff;
}
.hero__wrapper{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.hero__wrapper h1{
    color: #333;
    font-size: 54px;
    font-weight: 700;
    line-height: 115%; /* 62.1px */
    text-transform: uppercase;
    max-width: 570px;
    margin: -10px;
}
.hero__wrapper p{
    color: #4F4F4F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 375px;
}

@media (max-width:1340px) {
    .hero__wrapper h1{
        font-size: 44px;
    }
    .hero__wrapper p{
        font-size: 16px;
    }
}
@media (max-width:1049px){
    .hero{
        margin-top: 60px;
        padding-bottom: 60px;
    }
    .hero__wrapper{
        align-items: flex-start;
        flex-direction: column;
    }
    .hero__wrapper h1{
        font-size: 44px;
        margin: 0;
    }
    .hero__wrapper p{
        margin: 20px 0;
        font-size: 16px;
    }
}
@media(max-width:699px){
    .hero__wrapper h1{
        font-size: 30px;
        margin: 0;
    }
    .hero__wrapper p{
        font-size: 15px;
        margin-bottom: 30px;
    }
}

.category{
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    background: #F7F7F7;
    padding-top: 60px;
    padding-bottom: 80px;
}
.category h2{
    color: #333;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
}
.category__wrapper{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}
.category__list-head{
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 105%; /* 16.8px */
}
.category__list{
    flex: 1 0;
}
.category__list ul{
    margin-top: 24px;
    display: flex;
    justify-content: flex-start;
    gap: 30px 4px;
    flex-wrap: wrap;
}
.category__list ul li a{
    border-radius: 8px;
    border: 1px solid #005F90;
    background: #FFF;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.10);
    padding: 12px;
    color: #4F4F4F;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 105%; /* 14.7px */
    transition: 0.2s ease;
}
.category__list ul li a:hover{
    background: #005F90;
    color: #fff;
}
.category__list .subcategory .active{
	background: #005F90;
    color: #fff;
}

@media (max-width:1049px){
    .category{
        padding-top: 40px;
    }
    .category__wrapper{
        flex-direction: column;
        gap: 40px;
    }
}
@media(max-width:699px){
    .category{
        padding-bottom: 60px;
        border-top: 0;
    }
    .category__wrapper{
        margin-top: 30px;
        flex-direction: column;
        gap: 40px;
    }
}


.main__bg{
    width: 100%;
    height: 740px;
}
.main__bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:1540px){
    .main__bg{
        height: 500px;
    }
}
@media(max-width:699px){
    .main__bg{
        height: 250px;
    }
}

.special{
    padding-top: 100px;
    padding-bottom: 115px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}
.special__head{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.special__head h3{
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 630px;
}
.special .swiper{
    margin-top: 50px;
    overflow: visible;
}
.special__card{
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.15);
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.special__card img{
    margin: 0 auto;
	height: 220px;
}
.special__name{
    margin-top: 30px;
    padding-bottom: 20px;
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: 0.2s ease;
}
.special__name:hover{
    color: #005F90;
}
.special__wrapper{
    margin-top: auto;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
}
.special__details{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.special__details-name{
    color: #005F90;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.special__details-param{
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.special .btn-product{
    display: flex;
    justify-content: center;
}
.special__pagingation{
    display: flex;
    align-items: center;
    gap: 25px;
}
.special__count{
    width: initial !important;
}
.special__pagingation-prev, .special__pagingation-next{
    cursor: pointer;
}

@media (max-width:1049px){
    .special{
        padding-top: 70px;
    }
    .special__head h3{
        font-size: 30px;
        max-width: 100%;
    }
    .special__count-mob{
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
    .special__pagingation{
        display: none;
    }
}
@media (max-width:699px){
    .special{
        padding-top: 50px;
        padding-bottom: 70px;
    }
    .special__head h3{
        font-size: 22px;
    }
    .special__card{
        padding: 30px;
    }
    .special__card img{
        margin: 0 auto;
        height: 150px;
        object-fit: contain;
    }
    .special__name{
        font-size: 18px;
    }
    .special__details-name{
        font-size: 13px;
    }
    .special__details-param{
        font-size: 15px;
    }
    .special__count-mob{
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
}

.partners{
    padding-top: 100px;
    padding-bottom: 115px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}
.partners__head{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.partners__head h3{
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 630px;
}
.partners .swiper{
    margin-top: 50px;
    overflow: visible;
}
.partners .swiper-slide{
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.15);
    padding: 40px;
}
.partners .swiper-slide img{
    margin: 0 auto;
}
.partners__pagingation{
    display: flex;
    align-items: center;
    gap: 25px;
}
.partners__count{
    width: initial !important;
}
.partners__pagingation-prev, .partners__pagingation-next{
    cursor: pointer;
}

@media (max-width:1049px){
    .partners{
        padding-top: 70px;
        padding-bottom: 85px;
    }
    .partners__head h3{
        font-size: 30px;
        max-width: 100%;
    }
    .partners__pagingation{
        display: none;
    }
    .partners__count-mob{
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
}
@media (max-width:699px){
    .partners{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .partners__head h3{
        font-size: 22px;
    }
    .partners .swiper{
        margin-top: 30px;
    }
    .partners .swiper-slide{
        padding: 20px;
    }
}

.popular{
    padding-top: 100px;
    padding-bottom: 115px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}
.popular__head{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.popular__head h3{
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 630px;
}
.popular .swiper{
    margin-top: 50px;
    overflow: visible;
}
.popular__pagingation{
    display: flex;
    align-items: center;
    gap: 25px;
}
.popular__count{
    width: initial !important;
}
.popular__pagingation-prev, .popular__pagingation-next{
    cursor: pointer;
}
.popular__more{
    margin-top: 70px;
    text-align: right;
}

@media (max-width:1049px){
    .popular{
        padding-top: 70px;
        padding-bottom: 85px;
    }
    .popular__head h3{
        font-size: 30px;
        max-width: 100%;
    }
    .popular__pagingation{
        display: none;
    }
    .popular__count-mob{
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
    .popular__more{
        text-align: center;
    }
}
@media (max-width:699px){
    .popular{
        padding-top: 50px;
        padding-bottom: 70px;
    }
    .popular__head h3{
        font-size: 22px;
    }
    .popular .swiper{
        margin-top: 30px;
    }
    .popular__more{
        margin-top: 60px;
    }
}

.articles{
    padding-top: 120px;
    padding-bottom: 120px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}
.articles__wrapper{
    display: flex;
    justify-content: space-between;
    gap: 100px;
}
.articles__head h3{
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 60px;
    max-width: 900px;
}
.articles__list{
    display: flex;
    flex-direction: column;
    gap: 16px
}
.articles__item{
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.15);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.2s ease;
    border: 1px solid transparent;
}
.articles__item:hover{
    border-color: #005f9087;
}
.articles__item img{
    width: 24px;
}
.articles__item p{
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (max-width:1340px) {
    .articles__head h3{
        font-size: 34px;
    }
    .articles__item p{
        font-size: 18px;
    }
}
@media (max-width:1049px) {
    .articles{
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .articles__wrapper{
        flex-direction: column;
        gap: 60px;
    }
    .articles__head h3{
        font-size: 30px;
        max-width: 100%;
        margin-bottom: 40px;
    }
}
@media (max-width:699px){
    .articles{
        padding-top: 50px;
    }
    .articles__wrapper{
        flex-direction: column;
        gap: 60px;
    }
    .articles__head h3{
        font-size: 22px;
        margin-bottom: -20px;
    }
    .articles__head a{
        display: none;
    }
    .articles__item{
        padding: 15px 10px;
        gap: 10px;
    }
    .articles__item img{
        width: 20px;
    }
    .articles__item p{
        font-size: 16px;
    }
}

.services{
    padding-top: 120px;
    padding-bottom: 120px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}
.services__head{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.services__head h3{
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 630px;
}
.services__pagingation{
    display: flex;
    align-items: center;
    gap: 25px;
}
.services__count{
    width: initial !important;
}
.services__pagingation-prev, .services__pagingation-next{
    cursor: pointer;
}
.services .swiper{
    overflow: visible;
    margin-top: 50px;
}
.services__item{
    padding: 40px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.services__item-name{
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.services__item p{
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
    padding-bottom: 20px;
}
.services__item .btn-light{
    margin-top: auto;
}
.services__more{
    margin-top: 70px;
    text-align: right;
}

@media (max-width:1049px){
    .services{
        padding-top: 70px;
        padding-bottom: 80px;
    }
    .services__head h3{
        font-size: 30px;
        max-width: 100%;
    }
    .services .swiper{
        margin-top: 30px;
    }
    .services__item-name{
        font-size: 18px;
    }
    .services__item p{
        font-size: 14px;
    }
    .services__pagingation{
        display: none;
    }
    .services__count-mob{
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
    .services__more{
        text-align: center;
    }
}
@media (max-width:699px){
    .services{
        padding-top: 50px;
        padding-bottom: 70px;
    }
    .services__head h3{
        font-size: 22px;
    }
    .services .swiper{
        margin-top: 30px;
    }
    .services__item{
        padding: 30px;
    }
    .services__item-name{
        font-size: 16px;
    }
    .services__pagingation{
        display: none;
    }
    .services__more{
        text-align: center;
        margin-top: 60px;
    }
}

.about{
    padding-top: 120px;
    padding-bottom: 120px;
}
.about h3{
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.about .content{
    max-width: 850px;
}
.about__wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    gap: 80px;
}
.about__contact{
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: #FFF;
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    gap: 25px;
    width: 380px;
}
.about__item{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.about__item-name{
    color: #005F90;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.about__item-param{
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width:1340px){
    .about .content{
        font-size: 16px;
        max-width: 750px;
    }
}
@media (max-width:1049px){
    .about{
        padding-top: 70px;
        padding-bottom: 80px;
    }
    .about h3{
        font-size: 30px;
    }
    .about .content{
        max-width: 100%;
    }
    .about__wrapper{
        flex-direction: column;
        margin-top: 20px;
        gap: 40px;
    }
    .about__contact{
        margin: 0 auto;
        width: 380px;
    }
    .about__item{
        flex-direction: column;
    }
    .about__item-param{
        font-size: 18px;
    }
}
@media (max-width:699px){
    .about{
        padding-top: 50px;
        padding-bottom: 70px;
    }
    .about h3{
        font-size: 22px;
    }
    .about__wrapper{
        flex-direction: column;
        margin-top: 20px;
        gap: 30px;
    }
    .about__contact{
        width: 100%;
    }
}

.main__contact iframe{
    width: 100% !important;
    height: 520px !important;
	border: none !important;
}


@media (max-width:1340px){
    .main__contact iframe{
        height: 400px;
    }
}
@media (max-width:1049px){
    .main__contact iframe{
        height: 350px;
    }
}
@media (max-width:699px){
    .main__contact iframe{
        height: 250px;
    }
}

.product{
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}
.product__wrapper{
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.product__img{
    padding: 40px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.10);
    width: 530px;
    height: 400px;
}
.product__img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product__cat{
    display: flex;
	flex-wrap: wrap;
    gap: 8px;
}
.product__cat a{
    padding: 12px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.10);
    color: #4F4F4F;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 105%; /* 14.7px */;
    transition: 0.2s ease;
}
.product__cat a:hover{
    background: #005F90;
    color: #fff;
}
.product__info{
    width: 670px;
}
.product__info h3{
    margin-top: 30px;
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.product__price{
    margin-top: 10px;
    color: #005F90;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.products__add{
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
    background: #F7F7F7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 0;
}
.products__add-item{
    flex-basis: 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.products__add label{
    color: #4F4F4F;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 105%; /* 14.7px */
}
.products__add span{
    padding-left: 12px;
    color: #005F90;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 105%; /* 14.7px */
}
.product__action{
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width:1340px){
    .product__img{
        width: 480px;
    }
    .product__info{
        width: 600px;
    }
}
@media (max-width:1049px){
    .product{
        padding: 60px 0;
    }
    .product__wrapper{
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }
    .product__img{
        width: 100%;
    }
    .product__cat{
        margin-top: 30px;
    }
    .product__cat a:hover{
        background: #005F90;
        color: #fff;
    }
    .product__info{
        width: 100%;
    }
    .product__info h3{
        font-size: 30px;
    }
}
@media (max-width:699px){
    .product{
        padding-top: 40px;
        padding-bottom: 50px;
    }
    .product__img{
        height: 250px;
    }
    .product__cat{
        display: none;
    }
    .product__cat a:hover{
        background: #005F90;
        color: #fff;
    }
    .product__info{
        margin-top: 10px;
    }
    .product__info h3{
        font-size: 22px;
    }
    .product__price{
        font-size: 20px;
    }
    .products__add-item{
        flex-basis: 100%;
        max-width: 100%;
    }
    .product__action{
        margin-top: 40px;
        flex-wrap: wrap;
    }
    .product__action .btn-light{
        font-size: 15px;
    }
}

.details{
    padding: 100px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}
.details h3{
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.details__table{
    margin-top: 40px;
}
.details__item{
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 10px;
}
.details__item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}
.details__item-name{
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.details__item-param{
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width:1049px){
    .details{
        padding: 60px 0;
    }
    .details h3{
        font-size: 30px;
    }
    .details__table{
        margin-top: 30px;
    }
}
@media (max-width:699px){
    .details{
        padding: 50px 0;
    }
    .details h3{
        font-size: 22px;
    }
    .details__item{
        gap: 20px;
    }
    .details__item-name{
        font-size: 14px;
    }
    .details__item-param{
        font-size: 14px;
        text-align: right;
    }
}

.description{
    padding: 100px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}
.description h3{
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.description .content{
    margin-top: 40px;
}

@media (max-width:1049px){
    .description{
        padding: 60px 0;
    }
    .description h3{
        font-size: 30px;
    }
    .description .content{
        margin-top: 30px;
    }
}
@media (max-width:699px){
    .description{
        padding-top: 50px;
        padding-bottom: 40px;
    }
    .description h3{
        color: #333;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    .description .content{
        margin-top: 30px;
    }
}

.faq{
    padding: 100px 0;
    background: #F7F7F7;
}
.faq h3{
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.faq__wrapper{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq__item-question {
    cursor: pointer;
    padding: 20px;
    border: 1px solid transparent;
    text-align: left;
    outline: none;
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: 0.4s;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.10);
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}
.faq__item-question:hover {
    border-color: #005f9087;
}
.faq__item-question:after {
    content: '\f054';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    color: #005F90;
}
.faq .active:after {
    content: '\f078';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    color: #005F90;
}
.faq__item-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.faq__item-answer .content{
    margin-top: 20px;
}

@media (max-width:1049px){
    .faq{
        padding: 60px 0;
    }
    .faq h3{
        font-size: 30px;
    }
    .faq__wrapper{
        margin-top: 30px;
    }
    .faq__item-question {
        font-size: 18px;
    }
    .faq__item-question:after {
        font-size: 14px;
    }
    .faq .active:after {
        font-size: 14px;
    }
}
@media (max-width:699px){
    .faq{
        padding-top: 50px;
        padding-bottom: 70px;
    }
    .faq h3{
        font-size: 22px;
    }
    .faq__wrapper{
        gap: 10px;
    }
    .faq__item-question {
        font-size: 14px;
    }
    .faq__item-question:after {
        font-size: 12px;
    }
    .faq .active:after {
        font-size: 12px;
    }
}

.services__cat{
    padding-top: 80px;
    padding-bottom: 150px;
}
.services__cat h3{
    margin-top: 40px;
    margin-bottom: 40px;
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.services__list{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: -10px;
}
.services__list .services__item{
    flex: 0 0 calc(100%/2 - 20px);
    margin: 10px;
    height: initial;
}

@media (max-width:1049px){
    .services__cat{
        padding-top: 60px;
        padding-bottom: 100px;
    }
    .services__cat h3{
        font-size: 30px;
    }
}
@media (max-width:699px){
    .services__cat{
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .services__cat h3{
        font-size: 22px;
    }
    .services__list{
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
        margin-top: -20px;
        gap: 10px;
    }
    .services__list .services__item{
        flex: 1;
        margin: 10px;
        height: initial;
    }
}

.services__card{
    padding-top: 80px;
    padding-bottom: 150px;
}
.services__card h3{
    margin-top: 40px;
    margin-bottom: 30px;
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.services__card-descr{
    color: #4F4F4F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 26.1px */
    margin-bottom: 40px;
}
.serivces__card-action{
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width:1049px){
    .services__card{
        padding-top: 60px;
        padding-bottom: 100px;
    }
    .services__card h3{
        font-size: 30px;
    }
    .services__card-descr{
        font-size: 16px;
    }
}
@media (max-width:699px){
    .services__card{
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .services__card h3{
        font-size: 22px;
        margin-top: 30px;
    }
    .services__card-descr{
        font-size: 14px;
    }
    .serivces__card-action{
        margin-top: 40px;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
    }
}

.projects{
    padding-top: 80px;
    padding-bottom: 150px;
}
.projects h3{
    margin-top: 40px;
    margin-bottom: 40px;
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.projects__list{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: -10px;
}
.projects__item{
    flex: 0 0 calc(100%/3 - 20px);
    margin: 10px;
    height: initial;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.15);
}
.projects__item img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: 0.2s ease;
}
.projects__item img:hover{
    opacity: .8;
}
.projects__info{
    padding: 32px;
}
.projects__info-title{
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
	max-width: 320px;
}
.projects__info-action{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.projects__info-action a:first-child{
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    color: #4F4F4F;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 105%; /* 14.7px */
    padding: 12px;
    transition: 0.2s ease;
}
.projects__info-action a:first-child:hover{
    background: #005f90;
    color: #fff;
}

@media (max-width:1049px){
    .projects{
        padding-top: 60px;
        padding-bottom: 100px;
    }
    .projects h3{
        font-size: 30px;
    }
    .projects__item img{
        height: 250px;
    }
    .projects__info-title{
        font-size: 18px;
    }
    .projects__info-action{
        margin-top: 30px;
        align-items: flex-start;
    }
    .projects__info-action a:first-child{
        display: none;
    }
}
@media (max-width:699px){
    .projects{
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .projects h3{
        font-size: 22px;
        margin-top: 30px;
    }
    .projects__item{
        flex: 1;
    }
    .projects__item img{
        height: 220px;
    }
    .projects__info{
        padding: 25px 30px;
    }
    .projects__info-title{
        font-size: 18px;
		max-width: 100%;
    }
    .projects__info-action{
        margin-top: 25px;
    }
    .projects__info-action a:first-child{
        display: none;
    }
}

.projects__card{
    padding-top: 80px;
    padding-bottom: 150px;
}
.projects__card-info{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
    margin-bottom: 30px;
}
.projects__card h3{
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    max-width: 1000px;
}
.projects__card-info a{
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    color: #4F4F4F;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 105%; /* 14.7px */
    padding: 12px;
    transition: 0.2s ease;
}
.projects__card-info a:hover{
    background: #005f90;
    color: #fff;
}
.projects__card img{
    width: 100%;
    height: 550px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: 8px;
}
.projects__card-action{
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width:1340px) {
    .projects__card h3 {
        font-size: 34px;
        max-width: 800px;
    }
}
@media (max-width:1049px){
    .projects__card{
        padding-top: 60px;
        padding-bottom: 80px;
    }
    .projects__card h3 {
        font-size: 30px;
        max-width: 100%;
    }
    .projects__card-info a{
        display: none;
    }
    .projects__card img{
        height: 300px;
        margin-bottom: 30px;
    }
}
@media(max-width:699px){
    .projects__card{
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .projects__card-info{
        margin-top: 30px;
    }
    .projects__card h3 {
        font-size: 22px;
    }
    .projects__card img{
        height: 200px;
        margin-bottom: 30px;
    }
    .projects__card-action{
        margin-top: 40px;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
    }
}

.price{
    padding-top: 80px;
    padding-bottom: 150px;
}
.price h3{
    margin-top: 40px;
    margin-bottom: 40px;
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.price__wrapper{
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.price__table-title{
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.price table{
    margin-top: 20px;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.10);
    border-spacing: 0;
    background: #F7F7F7;
}
.price th{
    padding: 16px 20px;
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.price tbody{
    background: #fff;
}
.price tbody td{
    padding: 16px 20px;
    color: #4F4F4F;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.price tbody tr:last-child td{
    border: none;
}
.price tbody td a.price__table-button{
    padding: 8px 12px;
    border-radius: 8px;
    background: #F00;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition: 0.2s ease;
}
.price tbody td a.price__table-button:hover{
    background: #DB0F0F
}

.price tbody td a.price__table-product{
    color: inherit;
    font: inherit;
    transition: 0.2s ease;
}

.price tbody td a.price__table-product:hover{
    color: #005F90;
}

@media (max-width:1049px){
    .price{
        padding-top: 60px;
        padding-bottom: 100px;
    }
    .price h3{
        font-size: 30px;
    }
    .price__wrapper{
        margin-top: 30px;
    }
    .price__table-title{
        font-size: 20px;
    }
    .price__item{
        overflow: scroll;
    }
    .price__item table{
        width: 1200px;
    }
}
@media(max-width:699px){
    .price{
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .price h3{
        font-size: 22px;
        margin-top: 30px;
    }
    .price__wrapper{
        margin-top: 30px;
    }
    .price__table-title{
        font-size: 18px;
    }
    .price__item{
        overflow: scroll;
    }
    .price__item table{
        width: 100%;
    }
    .price th{
        display: none;
    }
    .price td{
        display: none;
    }
    .price thead{
        display: flex;
    }
    .price tr{
        display: flex;
    }
    .price thead th:nth-child(3), .price thead th:nth-child(9){
        display: block;
    }
    .price tr td:nth-child(3), .price tr td:nth-child(9), .price tr td:nth-child(10){
        display: block;
    }
    .price th{
        width: 110px;
    }
    .price tbody td{
        width: 100%;
    }
}

.contacts{
    padding-top: 80px;
    padding-bottom: 100px;
}
.contacts h3{
    margin-top: 40px;
    margin-bottom: 40px;
    color: #333;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 60px;
}
.contacts__wrapper{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: -20px;
}
.contacts__item{
    flex: 0 0 calc(100%/4 - 40px);
    margin: 20px;
}
.contacts__item-name{
    color: #005F90;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.contacts__item-param{
    margin-top: 12px;
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.contacts a:hover{
    transition: 0.2s ease;
    color: #005F90;
}
.contacts form{
    margin-top: 60px;
    padding: 40px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.10);
}
.form__head div{
    color: #333;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.form__head p{
    margin-top: 20px;
    color: #4F4F4F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.form__wrapper{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}
.form__wrapper input{
    flex-basis: 32.2%;
    max-width: 32.2%;
    padding: 20px 0;
    color: #4F4F4F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    transition: 0.2s ease;
}
.form__wrapper textarea{
    flex-basis: 100%;
    max-width: 100%;
    padding: 20px 0;
    color: #4F4F4F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    resize: none;
    transition: 0.2s ease;
}
.form__wrapper input:focus, .form__wrapper textarea:focus{
    border-color: #005f90;
}
.contacts button{
    margin-top: 40px;
    border: none;
    cursor: pointer;
}

@media (max-width:1049px){
    .contacts{
        padding-top: 60px;
    }
    .contacts h3{
        color: #333;
        font-size: 30px;
        margin-bottom: 40px;
    }
    .contacts__item-param{
        font-size: 16px;
    }
    .form__head div{
        font-size: 20px;
    }
    .form__head p{
        font-size: 16px;
    }
    .form__wrapper{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
    }
    .form__wrapper input{
        flex-basis: 100%;
        max-width: 100%;
        padding: 16px 0;
        font-size: 15px;
    }
    .form__wrapper textarea{
        flex-basis: 100%;
        max-width: 100%;
        padding: 16px 0;
        font-size: 15px;
    }
    .contacts button{
        margin-top: 30px;
    }
}
@media(max-width:699px){
    .contacts{
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .contacts h3{
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 40px;
    }
    .contacts__item-param{
        font-size: 16px;
    }
    .form__head div{
        font-size: 20px;
    }
    .form__head p{
        font-size: 16px;
    }
    .contacts__wrapper{
        margin: -15px;
    }
    .contacts__item{
        flex: 0 0 calc(100%/2 - 30px);
        margin: 15px;
    }
    .contacts form{
        margin-top: 50px;
        padding: 30px;
    }
    .form__wrapper input{
        padding: 12px 0;
        font-size: 14px;
    }
    .form__wrapper textarea{
        padding: 12px 0;
        font-size: 14px;
        height: 100px;
    }
    .contacts button{
        margin-top: 30px;
    }
}




/* Подвал */
.footer{
    padding-top: 40px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}
.footer__wrapper{
    display: flex;
    justify-content: space-between;
}
.footer__logo img{
    width: 160px;
}
.footer__wrapper ul{
    display: flex;
    flex-direction: column;
	justify-content: flex-start;
    gap: 15px;
}
.footer__wrapper ul li a{
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
}
.footer__wrapper ul li:first-child{
	line-height: normal;
	padding-bottom: 8px;
}
.footer__wrapper ul li:first-child a{
	color: #333;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	pointer-events: none; 
	cursor: default; 
}
.footer a:hover{
    transition: 0.2s ease;
    color: #005F90 !important;
}
.footer .btn-primary:hover{
    color: #fff !important;
}
.footer__contact{
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 24px;
}
.footer__contact a:not(:last-child){
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.footer__contact a:nth-child(3){
	cursor: default;
}
.footer__contact i{
    font-size: 14px;
    padding-right: 12px;
    transition: 0.2s ease;
}
.footer__contact i:hover{
    color: #005F90;
}
.footer__copy{
    margin-top: 40px;
    background: #333;
    padding: 20px 0;
    text-align: center;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

@media (max-width:1049px){
    .footer__wrapper{
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 40px;
    }
    .footer__logo img{
        margin: 0 auto;
    }
    .footer ul{
        flex-direction: column;
        gap: 15px;
    }
    .footer ul li a{
        font-size: 16px;
    }
    .footer ul li:first-child{
        color: #333;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        padding-bottom: 8px;
    }
    .footer__contact{
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
}
@media (max-width:699px){
    .footer__logo img{
        width: 130px;
    }
    .footer__copy{
        margin-top: 50px;
    }
    .btn-primary{
        margin-top: 10px;
    }
}




.modal {
  display: none; /* Скрываем модальное окно по умолчанию */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Создаем полупрозрачный фон */
}
.modal-content {
  background-color: #fefefe;
  margin: 5% auto; /* Выравниваем модальное окно по центру */
  padding: 40px;
  border: 1px solid #888;
	border-radius: 8px;
  width: 500px;
  animation-name: modalopen;
  animation-duration: 0.5s;
	position: relative;
}
@keyframes modalopen {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
	position: absolute;
	top: 15px;
	right: 20px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal h2{
	color: #333;
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	max-width: 350px;
}
.modal p{
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 15px;
	max-width: 400px;
}
.modal form{
	display: flex;
	flex-direction: column;
}
.modal input, .modal textarea{
	padding: 20px 0;
	color: #4F4F4F;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	border: none;
	border-bottom-color: currentcolor;
	border-bottom-style: none;
	border-bottom-width: medium;
	border-radius: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
	transition: 0.2s ease;
	resize: none;
}
.modal input:focus, .modal textarea:focus {
  border-color: #005f90;
}
.modal button{
	border: none;
	cursor: pointer;
	margin-top: 30px;
}
.openModal{
	cursor: pointer;
}
#modal1 #modal-price{
	display: none;
}
#modal-price{
	margin-top: 10px;
	color: #005F90;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}