@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Black.woff2") format("woff2"),
    url("../fonts/Inter-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2"),
    url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"),
    url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  line-height: 1;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Inter";
}
a{
    display: block;
    text-decoration: none;
}
img{
    display: block;
    width: 100%;
}
strong{
    font-weight: 700;
}
.dv-container{
    max-width: 1200px;
    margin: 0 auto;
}
.mc-product .dv-logo{
    padding: 20px 0;
}
.mc-product .dv-logo img{
    width: 100px;
    margin: 0 auto;
    display: block;
}
.mc-product .name-product{
    font-size: 30px;
    text-align: center;
    font-weight: 700;
    margin: 20px 0 40px 0;
}
.mc-product .dv-row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.mc-product .dv-row .left{
    flex: 0 0 50%;
    max-width: 48%;
    width: 100%;
}
.mc-product .dv-row .right{
    flex: 0 0 50%;
    max-width: 48%;
    width: 100%;
}
.mc-product .dv-row .right .titl-right{
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}
.mc-product .dv-row .right p{
    margin-bottom: 10px;
}
.mc-product .dv-row .product-slider-big{
    margin-bottom: 20px;
}
.mc-product .dv-row .product-slider-big img{
    height: 575px;
    object-fit: cover;
}
.mc-product .dv-row .product-slider-sm img{
    height: 140px;
    object-fit: cover;
}
.mc-product .product-slider-sm .slick-slide {
  margin: 0 10px;
}
.mc-product .product-slider-sm .item{
    border: 1px solid #da8f8245;
    cursor: pointer;
}
.mc-product .product-slider-sm .item.slick-current{
    border: 1px solid #ef7d6a;
}
.mc-product{
    padding: 10px 0 100px 0;
}

@media(max-width: 1200px) {
    .dv-container{
        max-width: 95%;
        margin: 0 auto;
    }
}
@media(max-width: 1024px) {
    .mc-product .dv-row .product-slider-big img{
        height: 470px;
        object-fit: cover;
    }
    .mc-product .dv-row .product-slider-sm img{
        height: 100px;
    }
}
@media(max-width: 900px) {
    .mc-product .dv-row .left{
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 50px;
    }
    .mc-product .dv-row .right{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .mc-product .dv-row .product-slider-big img{
        height: 715px;
    }
    .mc-product .dv-row .product-slider-sm img{
        height: 200px;
    }
}
@media(max-width: 576px) {
    .mc-product .name-product{
        font-size: 25px;    
    }
    .mc-product .dv-row .product-slider-big img{
        height: 380px;
    }
    .mc-product .dv-row .product-slider-sm img{
        height: 75px;
    }
}   