/*  ==========  PRESENTATION BLOCK SECTION  ==========  */
#presentation-block{height: 280px;}
#presentation-block .container{
    display: flex;
    justify-content: center;
}
#presentation-block .container .group{align-items: center}
/*  ==========  END PRESENTATION BLOCK SECTION  ==========  */





/*  ==========  ABOUT BLOCK SECTION  ==========  */
.about-block{
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}
.about-block .page-header,
.about-block .sub-header{text-align: left;}

.about-block .image-group img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.about-block .text-group{
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.about-block .text-group .page-header{padding-bottom: 15px;}
.about-block .params{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.about-block .params .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 200px;
    height: 130px;
    padding: 16px;
    box-sizing: border-box;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background-color: #fff;
}
.about-block .params .item .icon{
    font-size: 24px;
    color: var(--color-main);
    text-shadow: 0 0 10px var(--color-main-alpha);
}
.about-block .params .item .name{
    text-align: center;
}
.about-block .order-button{
    display: block;
    float: left;
    padding: 12px 20px;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: var(--color-main);
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    outline: none;
    cursor: pointer;
}
.about-block .order-button:hover{opacity: .85;}
@media screen and (max-width: 767px){
    .about-block{
        display: flex;
        flex-direction: column-reverse;
    }
}
@media screen and (max-width: 480px){
    .about-block .params{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .about-block .params .item{width: unset; height: unset;}
}
/*  ==========  END ABOUT BLOCK SECTION  ==========  */





/*  ==========  KASPI RED SECTION  ==========  */
.kaspi-red{
    display: flex;
    gap: 25px;
    padding: 40px;
    box-sizing: border-box;
    border: 1px solid var(--color-border);
    border-radius: 18px;
}
.kaspi-red .text-group{
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex: 1;
}
.kaspi-red .title{font-size: 32px;}
.kaspi-red .text-fill{font-size: 20px;}
.kaspi-red .image-group{width: 220px;}
@media screen and (max-width: 767px){
    .kaspi-red{
        align-items: center;
        flex-direction: column-reverse;
    }
}
@media screen and (max-width: 480px){
    .kaspi-red .title{
        font-size: 26px;
        text-align: center;
    }
    .kaspi-red .text-fill{font-size: 18px;}
}
/*  ==========  END KASPI RED SECTION  ==========  */





/*  ==========  ADVANTAGES SECTION  ==========  */
.advantages{
    padding: 50px 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    justify-content: space-between;
}
.advantages .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.advantages .item .icon.i1{background-image: url('../assets/wallet.png');}
.advantages .item .icon.i2{background-image: url('../assets/quality.png');}
.advantages .item .icon.i3{background-image: url('../assets/calendar.png');}
.advantages .item .icon.i4{background-image: url('../assets/technician.png');}
.advantages .item .icon.i5{background-image: url('../assets/shield.png');}
.advantages .item .icon{
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.advantages .item .name{text-align: center;}
@media screen and (max-width: 767px){
    .advantages{grid-template-columns: repeat(3, 1fr);}
    .advantages .item{font-size: 12px;}
    .advantages .item .icon{width: 40px; height: 40px;}
}
/*  ==========  END ADVANTAGES SECTION  ==========  */





/*  ==========  PRODUCTS LIST SECTION  ==========  */
.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
    gap: 12px;
}
.product-card{
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 22px;
    box-sizing: border-box;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background-color: #fff;
}
.product-card .image{
    aspect-ratio: 1 / 1;
}
.product-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 10px 0 10px;
}
.product-card .description{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.product-card .title{
    height: 42px;
    font-size: 16;
    font-weight: 500;
    font-family: var(--font-secondary);
}
.product-card .instock{
    color: var(--color-text-secondary);
    font-size: 13px;
}
.product-card .price{
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-secondary);
}
.product-card .buttons-wrap{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-card .buttons-wrap .button{
    display: block;
    padding: 12px 20px;
    box-sizing: border-box;
    border-radius: 8px;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: center;
}
.product-card .buttons-wrap .button-main{background-color: var(--color-main);}
.product-card .buttons-wrap .button-secondary{background-color: #ededed; color: #212121}
@media screen and (max-width: 767px){
    .products-list {grid-template-columns: repeat(auto-fill,minmax(190px,1fr));}
}
@media screen and (max-width: 480px){
    .products-list {grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 4px;}
    .products-list .product-card{padding: 20px 16px;}
}
/*  ==========  END PRODUCTS LIST SECTION  ==========  */





/*  ==========  REVIEWS SECTION  ==========  */

/*  ==========  END REVIEWS SECTION  ==========  */





/*  ==========  REVIEWS SECTION  ==========  */

/*  ==========  END REVIEWS SECTION  ==========  */