*{
    padding: 0;
    margin: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz&display=swap');

/*Для всей страницы укажем название шрифта*/
body{
    font-family: Yanone Kaffeesatz, sans-serif ;
}

.container{
    max-width: 1200px ;
}

/*Рамочка вокруг шапки*/
.header{
    border-bottom: 1px solid #E5E5E5;
    padding: 25px 25px;
}

.logo{
    left: 370px;
}

/*Уберем маркеры у меню*/
.menu ul{
    list-style: none;
    display: flex;
}

/*Отступы между пунктами меню*/
.menu-item{
    margin-right: 115px;
}

/*Стили для ссылок внутри меню*/
.menu-item a{
    font-size: 30px;
    text-decoration: none;
    color: #008CFF;
}

/*Блок 1*/
.container-fluid{

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 794px;
}

.main-title{
    font-weight: bold;
    font-size: 80px;
    line-height: 110%;
    color: #008CFF;
    margin-bottom: 40px;
    margin-top: 25%;
    }

.main-text {
    font-size: 32px;
    line-height: 130%;
    color: #008CFF;
    /*Отступ снизу с переносом строки*/
    margin-bottom: 40px;
}

/*Опишем кнопки*/
.button{
    padding: 20px;
    width: 334px;
    height: 64px;
    background: #1469A3;
    /*Уберем рамку, потому что некоторые браузеры ее добавляют*/
    border: 0;
    /*Сделаем так, чтобы наши отступы входили в размеры*/
    box-sizing: border-box ;
    /*Выравнивание текста*/
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FCFFFF;
    /*Чтобы цвет менялся плавно*/
    transition: background-color .5s;
}

.button:hover{
    cursor: pointer;
    background: #70AE6E;
}

/*Карточки с продуктами*/
.product{
    padding: 100px 0;
}

.sub-title {
    font-weight: bold;
    font-size: 60px;
    line-height: 70px;
    color: #008CFF;
}

.products-items{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between ;
}

.product-item{
    max-width: 384px ;
    text-align: center;
    margin-top: 40px;
}


/*Эффект увеличения картинок в карточках*/
.product-item-image:hover img {
    transform: scale(1.1);
}
.product-item-image img {
    vertical-align: bottom;
    transition: all .3s;
}



.product-item-title{
    font-weight: bold;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #1469A3;
    padding: 15px 0 17px 0;
}

.product-item-info{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1469a3;
    font-size: 20px;
}

.product-item-point{
    width: 110px;
    height: 92px;
    margin: 0 7.5px;
}

.product-item-point img{
    margin-bottom: 11px;
}

.product-item-action{
    margin-top: 13px ;
}


/*Делаем жирной строку внутри карточки*/
.product-item-point> div:nth-child(2){
    font-weight: bold;
}


.price{
    overflow: hidden;
    background-image: url("../images/pic1.png");
    background-size: cover;
    padding: 104px 0 154px 0;
    background-position: center;
}

.price .container{
    position: relative;
    padding-bottom: 121px;
}

.price .sub-title{
    margin-bottom: 20px;
}

.price-text{
    font-size: 32px;
    line-height: 130%;
    color: #1469a3;
    margin-bottom: 60px;
}

.price-form{
    max-width: 344px;
    position: absolute;
    bottom: 8px;
    right: 16px;
}

.price-input {
    padding: 22px 18px;
    width: 344px;
    height: 65px;
    background: #FFFFFF;
    border: 1px solid #ffffff;
    box-sizing: border-box;
    outline: none;
    font-size: 20px;
    color: #1469a3;
    margin-bottom: 15px;
}

.price-input::placeholder{
    color: #1469A3
}

.price .button{
    width: 100%;
}

.footer{
    border-top: 1px solid #E5E5E5;
    padding: 25px 25px;
}

.footer .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rights{
    font-size: 15px;
    text-align: right;
    color: #1469A3;
}
