html{
    box-sizing: border-box;
    height: 100%;
}

*,
*::before,
*::after{
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
}

li {
    list-style-type: none; /* Убираем маркеры */
}
  
ul {
    margin-left: 0; /* Отступ слева в браузере IE и Opera */
    padding-left: 0; /* Отступ слева в браузере Firefox, Safari, Chrome */
}

img{
    max-width: 100%;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
}

.wrapper{
    min-height: 100%;
    display: flex;
    text-align: center;
    flex-direction: column;
}

.main{
    flex: 1 1 auto;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header{
    box-shadow: 0px 4px 21px -1px #000000;
}

.header_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header_burger-btn{
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    z-index: 2;
}

.header_burger-btn span{
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #000000;
    left: 5px;
    transition: transform .5s, opacity .5s, background-color .5s;
}

.header_burger-btn span:nth-child(1){
    transform: translateY(-10px);
}

.header_burger-btn span:nth-child(2){
    transform: translateY(0px);
}

.header_burger-btn span:nth-child(3){
    transform: translateY(10px);
}

.header.open .header_burger-btn span{
    background-color: #ffffff;
}

.header.open .header_burger-btn span:nth-child(1){
    transform: translateY(0) rotate(45deg);
}

.header.open .header_burger-btn span:nth-child(2){
    opacity: 0;
}

.header.open .header_burger-btn span:nth-child(3){
    transform: translateY(0) rotate(-45deg);
}

.logo{
    display: block;
}

.logo_img{
    width: 200px;
}

.menu_list{
    display: flex;
}

.menu_item:not(:last-child){
    margin-right: 60px;
}

.menu_link{
    font-size: 26px;
    font-weight: 600;
    color: #000000;
    transition: .3s;
}

.menu_link:hover{
    color: #476072;
}

@media (max-width: 992px) {
    .header_burger-btn{
        display: block;
    }
    .menu{
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #000000;
        padding: 60px 20px 20px 20px;
        transition: transform .5s;
    }
    .menu_list{
        display: block;
    }
    .menu_link{
        color: #ffffff;
        font-size: 36px;
        display: flex;
        padding: 10px 0;
    }

    .header.open .menu{
        transform: translateX(100%);
    }
}

.banner_container{
    width: 100%;
    height: 94vh;
    background-image: url('/img/banner.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden; /*скрывает если вышло за баннер*/
}

.banner {
    text-align: center;
    padding: 100px 15px;
}

.small-text{
    font-size: 66px;
    color: #ffffff;
    text-shadow: 2px 2px 2px #000;
    margin-top: 1%;
    font-weight: 600;
}

.small-text_2{
    font-size: 56px;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 2px #000;
    margin-top: 20px;
}

.small-text_3{
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 2px #000;
    margin-top: 50px;
}

.banner a {
    display: inline-block;
    background: #fff;
    box-shadow: 0 0 10px 0 #000000;
    color: #476072;
    text-transform: uppercase;
    padding: 15px;
    text-decoration: none;
    font-size: 40px;
    font-weight: 600;
    transition: .3s;
    margin-top: 40px;
}

.banner a:hover {
    background: #476072;
    color: #fff;
    padding: 15px 20px;
}

@media (max-width: 992px){
    .small-text{
        font-size: 48px;
    }
    .small-text_2{
        font-size: 42px;
    }
}

.inf_text{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.inf_text h1{
    font-size: 52px;
    font-weight: 600;
    margin-top: 20px;
    border: none;
    border-bottom: 2px solid #000000;
    padding-bottom: 20px;

}

.inf_text p{
    font-size: 20px;
    margin-top: 10px;
}

.towar_cards {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 60px;
}

.cards-holder {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 60px;
    gap: 60px;
}


.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 300px;
    box-shadow: 0 0 10px 0 #000000;
    background-color: #fff;
    padding: 10px 10px;
}

.card-image {
    display: flex;
    justify-content: center;
    padding: 10px 10px 10px 10px;
    cursor: pointer;
}

.card-title {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    transition: .3s;
}

.card-title:hover{
    color: #476072;
}
/*
.cards-img-container{
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    margin-top: 10px;
}
*/
.cards-img{
    position: fixed;
    top: 0; left: 0;
    background: rgb(0, 0, 0, .9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}

.cards-img span{
    position: absolute;
    top: 0; right: 20px;
    font-size: 60px;
    font-weight: bolder;
    color: #fff;
    cursor: pointer;
}

.cards-img img{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #fff;
    border-radius: 5px;
    width: 750px;
    object-fit: cover;
}

@media (max-width:768px){
    .cards-img img{
        width: 95%;
    }
}

.card_cont{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 280px;
    box-shadow: 0 0 10px 0 #000000;
    background-color: #fff;
    padding-top: 10px;
}

.card-image_cont {
    display: flex;
    justify-content: center;
    padding: 10px 10px 10px 10px;
}

.call-mail a{
    display: inline-block;
    background: #476072;
    color: #ffffff;
    text-transform: uppercase;
    padding: 6px;
    text-decoration: none;
    font-size: 26px;
    font-weight: 600;
    transition: .3s;
    margin-bottom: 10px;
    margin-top: 5px;
}

.call-mail a:hover {
    background: #394d5c;
    color: #fff;
}

/*
.but_pl {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    position: relative;
    border: 1px solid white;
    padding: 0 1rem;
}

.but_cal {
    color: #fff;
    font-size: 26px;
    background-color: #476072;
    border: none;
    width: 150px;
    height: 36px;
}
*/

.card-title_cont {
    display: flex;
    justify-content: center;
    margin: 0 10px 10px 10px;
    font-size: 26px;
    font-weight: 400;
    color: #000000;
}

/**
.card-title_cont_name{
    display: flex;
    justify-content: center;
    font-size: 32px;
    font-weight: 500;
    color: #000000;
}
**/
.card-title_cont_prof{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 18px;
    color: #707070;
}

.card-title_cont_inf{
    display: flex;
    justify-content: center;
    font-size: 18px;
    color: #424242;
    margin: 0 10px 10px;
}

.card-title_vit {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    border: none;
    border-bottom: 2px solid #000000;
    padding-bottom: 10px;
}

.card-title_vit_bottom{
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 400;
    color: #000000;
}

.tzhena{
    display: flex;
    justify-content: center;
    font-size: 26px;
    font-weight: 600;
    color: #000000;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #000000;
}

.buy{
    background-color: #ffffff;
    color: #476072;
    font-size: 32px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 10px 0 #000000;
    margin-top: 16px;
    margin-bottom: 6px;
}

.buy:hover {
    background: #476072;
    color: #fff;

}

.nal{
    display: flex;
    justify-content: center;
    margin-top: 10px;
    color: green;

}

.ne_nal{
    display: flex;
    justify-content: center;
    margin-top: 10px;
    color: red;
    
}

.new{
    display: flex;
    justify-content: center;
    padding-bottom: 5px;
    color: #87CEEB;
    font-size: 26px;
    font-family: 'Arial Black', Gadget, sans-serif;
}

@media (max-width: 398px){
    .card-title_cont{
        font-size: 21px;
    }
}

/*низ*/
.footer{
    background-color: #476072;    
    margin-top: 240px; /*расстояние от товаров*/
    padding-bottom: 10px;
    box-shadow: 0px 4px 21px -1px #000000;
    text-align: center;/*по центру текст*/
}

.logo_niz{
    margin-top: 30px;
}

.prava_id{
    font-weight: 500; /* жирный шрифт(ширина шрифта) */
    font-size: 10px; /*размер шрифта*/
    margin-top: 30px;
    color: #ffffff;
}

.id{
    text-decoration: none; /* убираем подчёркивание под словами*/
    color: #ffffff;
}
/*-------------------------------------------*/