*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
body{
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    text-shadow: 1px 1px 1px #000;
    font-family: 'Intro Book';
    font-weight: normal;
    font-style: normal;
    background-color: #662338;
}
p{
    line-height: 27px;
}
.container{
    width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}
a{
    text-decoration: none;
}
.header_box{
    display: flex;
    align-items: center;
    height: 80px;
    gap: 10px;
}
.header_logo{
    width: 300px;
    display: flex;
    gap: 10px;
}
.header_logo_img{
    display: flex;
    align-items: center;
}
.header_logo_img img{
    width: 50px;
}
.header_logo_name{
    display: flex;
    flex-direction: column;
}
.header_logo_name_first{
    font-size: 30px;
    color: #ffa7cb;
}
.header_logo_name_sub{
    font-size: 14px;
}
.header_nav{
    flex-grow: 1;
}
.header_nav nav ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
ul li{
    list-style: none;
}
.header_nav nav ul li a{
    color: #fff;
    text-decoration: none;
}
.header_tg{
    width: 250px;
    text-align: right;
}
.header_tg a {
    color: #fff;
    padding: 8px 30px;
    border-radius: 20px;
    background: rgb(0,126,255);
    background: linear-gradient(180deg, rgba(0,126,255,1) 0%, rgba(0,77,156,1) 100%);
}
section.main {
    background-color: #662338;
    padding-bottom: 80px;
}

.main_box{
    width: 720px;
    margin-top: 140px;
}
.main_name h1 {
    font-size: 47px;
    line-height: 59px;
    text-transform: uppercase;
    font-family: 'Intro';
    font-weight: bold;
    font-style: normal;
    color: #ffa7cb;
}
.main_descr{
    margin-top: 40px;
}
.main_list{
    margin-top: 60px;
}
.main_list ul{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.main_list ul li img{
    margin-right: 10px;
}
.main_list ul li a{
    color: #fff;
    position: relative;
}
.main_list ul li a span {
    font-size: 14px;
    color: #ffa7cb;
    margin-left: 8px;
}
.main_btn{
    margin-top: 60px;
}
.main_btn a {
    color: #fff;
    padding: 8px 30px;
    border-radius: 20px;
    background: rgb(0,126,255);
    background: linear-gradient(180deg, rgba(0,126,255,1) 0%, rgba(0,77,156,1) 100%);
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    animation: scaleAnimation 3s infinite;
}





section.product{
    padding: 40px 0;
}
.section_name h2{
    font-size: 50px;
    line-height: 62px;
    text-transform: uppercase;
    font-family: 'Intro';
    font-weight: bold;
    font-style: normal;
    color: #ffa7cb;
}
.product_box{
    margin-top: 80px;
    display: flex;
    gap: 60px 15px;
    flex-wrap: wrap;
}
.product_item {
    width: calc((100% / 3) - 10px);
    background-color: #441d29;
    border-radius: 20px;
    padding: 40px;
}
.product_item_name h2{
    font-size: 26px;
    line-height: 36px;
    text-transform: uppercase;
    font-family: 'Intro';
    font-weight: bold;
    font-style: normal;
    color: #ffa7cb;
}
.product_item_img {
    margin: 20px 0;
    height: 270px;
    display: flex;
    align-items: center;
}
.product_item_img img{
    width: auto;
}
.product_item_descr ul{
    display: flex;
    gap: 8px;
    flex-direction: column;
}
.product_item_descr ul li{
    display: flex;
    align-items: center;
}
.product_item_descr ul li img{
    margin-right: 10px;
}
.product_item_price{
    margin-top: 28px;
    font-size: 21px;
    text-transform: uppercase;
    font-family: 'Intro';
    font-weight: bold;
    font-style: normal;
    display: flex;
    align-items: center;
    color: #ffa7cb;
}
.product_item_price img{
    margin-right: 10px;
}
.product_item_btn{
    margin-top: 30px;
}
.product_item_btn a{
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    background-color: #007eff;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    animation: scaleAnimation 3s infinite;
}
@keyframes scaleAnimation {
    0% { transform: scale(.9); }
    50% { transform: scale(1); }
    100% { transform: scale(.9); }
}


.product_item_login{
    margin-top: 20px;
}
.product_item_login a{
    color: #ffa7cb;
    font-family: 'Intro';
    font-weight: bold;
    font-style: normal;
}




section.order{
    padding: 40px 0;
}
.order_box{
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}
.order_item{
    width: calc((100% / 3) - 30px);
}
.order_item_name{
    margin-top: 20px;
}
.order_item_name h3{
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'Intro';
    font-weight: bold;
    font-style: normal;
    color: #ffa7cb;
}
.order_item_descr{
    margin-top: 15px;
}





section.contact{
    padding: 40px 0;
}
.contact_box{
    width: 600px;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact_btn a{
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    background-color: #007eff;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    animation: scaleAnimation 3s infinite;
}
.contact_login a{
    color: #007eff;
    font-size: 28px;
    text-transform: uppercase;
    font-family: 'Intro';
    font-weight: bold;
    font-style: normal;
}


section.gallery{
    padding: 40px 0;
}
.gallery_box{
    margin-top: 40px;
}
.slick-slide img {
    display: inline-block;
    width: 100%;
}
.gallery_item{
    padding: 40px;
}
.gallery_item img{
    border-radius: 20px;
}
.slick-prev:before, .slick-next:before{
    opacity: 1;
    color: #ffa7cb;
}
.slick-prev{
    left: 0;
    z-index: 1;
}
.slick-next {
    right: 0;
}
footer{
    padding: 5px 0;
    font-size: 14px;
}
.footer_keywords p{
    font-size: 16px;
    line-height: 20px;
}
@media screen and (max-width: 1400px) {
    .container{
        width: 100%;
        padding: 0 20px;
    }
}

@media screen and (max-width: 1200px) {
    .header_nav{
        display: none;
    }
    .header_box {
        justify-content: center;
    }
    .main_box {
        width: 100%;
        margin-top: 20px;
    }
    section.main {
        background-image: none;
        padding-bottom: 40px;
    }
    .product_item{
        width: 100%;
    }
    .order_item{
        width: 100%;
    }
    .contact_box {
        width: 100%;
    }
    .product_box {
        margin-top: 60px;
        gap: 30px 15px;
    }
}

@media screen and (max-width: 580px) {
    .main_name h1 {
        font-size: 37px;
        line-height: 47px;
    }
    .section_name h2 {
        font-size: 42px;
        line-height: 52px;
    }
    .header_tg{
        display: none;
    }
    .header_box{
        justify-content: start;
    }
}

@media screen and (max-width: 450px) {
    .product_item_img img {
        width: 100%;
    }
    .main_name h1 {
        font-size: 34px;
        line-height: 44px;
    }
    .section_name h2 {
        font-size: 36px;
        line-height: 46px;
    }
    .product_item {
        padding: 20px;
    }
}

@media screen and (max-width: 360px) {
    .product_item_btn a {
        padding: 6px 15px;
    }
}

@media screen and (max-width: 340px) {
    .product_item_btn a {
        font-size: 17px;
    }
}
