* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

img {
    pointer-events: none;
}

button:focus,
input:focus {
    outline: none;
}

html,
body {
    font-family: "Inter", sans-serif;
    cursor: default;
}

.header {
    padding-top: 20px;
    padding-bottom: 20px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
    font-size: 14px;
    border-bottom: 1px solid #DFDFDF;
}

.header_row {
    display: flex;
    align-items: center;
}

.header_logo {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #000;
}

.header_menu {
    margin-left: auto;
}
.header_menu .telephone{
    display: none;
}
.header_nav {
    margin-bottom: 10px;
}

.header_nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.header_nav ul a:hover,
.header_nav ul a.active {
    text-decoration: underline;
}

.header_social a:hover {
    text-decoration: underline;
}

.header_social {
    display: flex;
    gap: 20px;
    justify-content: flex-end;

}

.toggel_menu {
    flex-shrink: 0;
    display: none;
    position: relative;
    width: 30px;
    height: 20px;
    border: none;
    border-top: 2px solid;
    border-bottom: 2px solid;
    border-color: #000;
    background: none;
    cursor: pointer;
    transition: border 0.2s linear;
}

.toggel_menu::after,
.toggel_menu::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transform-origin: center;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
    transition: transform 0.2s linear 0.1s;
}

.toggel_menu.active {
    border-color: transparent;
}

.toggel_menu.active::after {
    transform: rotate(45deg);
}

.toggel_menu.active::before {
    transform: rotate(-45deg);
}

.logo {
    font-size: 12px;
    max-width: 100%;
    display: grid;
    grid-template-columns: 4.5em max-content;
    grid-template-areas: 'limg ltitle''limg ltext';
    grid-column-gap: 0.83em;
    align-items: flex-start;
}
.logo_img{
    grid-area: limg;
    width: 4.5em;
    height: 4.666em;
}
.logo_title{
    grid-area: ltitle;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 2em;
}
.logo_text{
    grid-area: ltext;
    font-size: 1em;
    font-weight: 200;
}
.list{
    background: #fff;
}
.list .list_item:not(:last-child){
    border-bottom: 1px solid #DFDFDF;
}
.list_row{
   row-gap:10px;
   display: flex;
   align-items: center;
   padding-top: 12px;
   padding-bottom: 12px;
   flex-wrap: wrap;
}

.list_item.yellow .list_text{
    color: #C6954D;
}

.list_item.blue .list_text{
    color: #6889C3;
}

.list_links{
    list-style: none;
    display: flex;
    font-size: 15px;
    gap: 10px;
    overflow-x: auto;
}
.list_left{
    max-width: 250px ;
    width: 100%;
    flex-shrink: 0;
}
.list_name{
    font-size: 15px;
    font-weight: 700;
}
.list_text{
    font-weight: 400;
    font-size: 10px;
}
.link{
    border-radius:0.333em;
    padding:0.73em 1.4em;
    display: inline-block;
    flex-shrink: 0;
    text-wrap: nowrap;
}
.link--yellow{
    background: #FFE2B7;
}
.link--yellow.active,
.link--yellow:hover{
    background: #fbd499;
}


.link--blue{
    background: #E0EBFF;
}
.link--blue.active,
.link--blue:hover{
    background: #b9cffa;
}


img {
    max-width: 100%;
}

.container {
    max-width: 1320px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

main>.section:nth-child(odd) {
    background-color: #F8F8F8;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #DFDFDF;
}

main>.section:first-child {
    border-top: none;
}

.section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section_head {
    margin-bottom: 26px;
}

.section_title {
    font-weight: 800;
    font-size: 24px;
}

.section_subtitle {
    font-weight: 400;
    font-size: 24px;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(309px, 1fr));
    grid-gap: 14px;
}

.product {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 4px;
}
.product:hover{
    box-shadow:  0 0 15px #09000051;
}
.product_img {
    height: 174px;
    line-height: 0;
}

.product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4px;
}

.product_info {
    background: #CBA163;
    color: #fff;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.product--blue .product_info {
    background: #6D80A2;
}

.product_logo {
    width: 100%;
}

.product_logo img {
    width: 100%;
}

.product_title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: auto;
}

.product_supply {
    margin-bottom: auto;
    font-size: 12px;
    font-weight: 400;
}

.product_text {
    font-size: 10px;
    font-weight: 400;
}

.product_links {
    font-size: 12px;
}

.product_links a {
    font-weight: 700;

}

.product_imgs {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 4px;
    line-height: 0;
}

.product_imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    height: 150px;
}
.card_silde,
.products_silder {
    position: relative;
}
.card_silde .owl-nav button,
.products_silder .owl-nav button {
    width: 40px !important;
    position: absolute;
    top: 50%;
    z-index: 50;
}

.products_silder .owl-nav button.owl-prev {
    left: 0;
    transform: translate(-110%, -50%);
}

.products_silder .owl-nav button.owl-next {
    right: 0;
    transform: translate(110%, -50%);
}
.card_silde .owl-nav button.owl-prev{
    left: 0;
} 
.card_silde .owl-nav button.owl-next {
 right: 0;
}
.card_silde .owl-nav button span,
.products_silder .owl-nav button span {
    font-size: 50px !important;
}


.card_silde .owl-nav button{
    transform: translateY(-50%);
}
.sites {
    max-width: 100%;
    display: flex;
    align-items: center;
}

.sites_item {
    flex-basis: 100%;
    flex-grow: 1;
}




.sites {
    margin-top: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    grid-gap: 16px;
}

.site {
    display: flex;
    line-height: 0;
    background: #fff;
    padding: 20px 16px;
    border-radius: 8px;
    color: #373737;
    box-shadow: 0 0 5px #ccc;
    height: 100%;
}

.site:hover {
    box-shadow: 0 0 15px #ccc;
}

.site_img {
    width: 66px;
    height: 66px;
    flex-shrink: 0;
}

.site_img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.site_info {
    margin-left: 16px;
    margin-right: 16px;
    display: flex;
    flex-direction: column;
}

.site_name {
    line-height: 120%;
    font-size: 14px;
    margin-bottom: 5px;

}

.site_rating {
    line-height: 100%;
    margin-bottom: 5px;
}

.site_rating svg path {
    fill: gold;
}

.site_links {
    font-size: 12px;
    color: #89B8D6;
    line-height: 100%;
}

.site_arrow {
    flex-shrink: 0;
    margin-left: auto;
    width: 25px;
    height: 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F8F8F8;
    box-shadow: 0 -1px 5px #ccc;
    align-self: center;
}

.site_arrow svg path {
    color: #89B8D6;
}

.footer {
    padding-top: 60px;
    padding-bottom: 40px;
    background: #F3F3F3;
}

.footer_row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
}

.footer .logo {
    margin-bottom: 35px;
    grid-column: 1 / -1;
}

.footer_contacts {
    margin-left: 65px;
}

.telephone {
    display: flex;
    flex-direction: column;
    font-weight: 400;
}

.footer_tel {
    margin-bottom: 40px;
}

.telephone a {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
}

.telephone a img {
    display: inline-block;
    margin-left: 28px;
}

.telephone span {
    font-size: 10px;
    color: #A2A2A2;
}

.footer_row>.footer_links {
    margin-top: -66px;
}

.footer_links {
    font-size: 15px;
}

.footer_links_name {
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 15px;
}

.footer_links ul {
    list-style: none;
}

.footer_links ul li:not(:last-child) {
    margin-bottom: 19px;
}

.footer_links a:hover {
    text-decoration: underline;
}

.footer_social {
    font-size: 15px;
    display: flex;
    grid-gap: 16px;
    margin-bottom: 40px;
}

.footer_social a:hover {
    text-decoration: underline;
}

.footer_text {
    grid-column: 1 / -1;
    font-size: 15px;
    margin-top: 34px;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-left: 65px;
}


.breadcrumb{
    font-size: 12px;
    font-weight: 400;
    color:#ccc;
    margin-bottom: 20px;
}
.breadcrumb > *:not(:last-child)::after{
    content: " /";
}


.card{
    display: grid;
    grid-template-columns: 600px 1fr;
    max-width: 100%;
    grid-gap: 20px;
}
.card_silde{
    width:100%;
}
.card_rating{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.card_rating svg {
    font-size: 20px;
}
.card_rating svg path{
    fill: #ccc;
}
.rating_1 svg:first-child path{
    fill: gold;
}
.rating_2 svg:nth-child(-n+2) path{
    fill: gold;
}
.rating_3 svg:nth-child(-n+3) path{
    fill: gold;
}
.rating_4 svg:nth-child(-n+4) path{
    fill: gold;
}
.rating_5 svg:nth-child(-n+5) path{
    fill: gold;
}
.card_rating_count{
    margin-left: 6px;
    font-size: 14px;
}

.card_title{
    margin-bottom: 30px;
}
.card_size{
    font-weight: 300;
    color: #545454;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}
.card_size_title{
    margin-bottom: 15px;
}
.card_size_items{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.card_size a{
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 14px;
    background:#e7e7e7;
    color: #000;
    border: 2px solid transparent;
    display: inline-block;
}
.card_size a.active{
    border-color: #CBA163;
}
.card_price{
    display: flex;
    align-items:  baseline;
    margin-bottom: 10px;
}
.card_price_item{
    font-size: 32px;
    font-weight: 800;
}
.card_price_item span{
    font-size: 16px;
    font-weight: 600;
}
.card_price_old{
    font-size: 16px;
    color: #999;
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 10px;
}
.card_purchase{
    display: flex;
    flex-direction: column;
}
.card_purchase a{
    color:#CBA163;
    font-size: 14px;
}
.card_purchase span{
    margin-bottom: 20px;
}
.card_purchase a:hover{
    text-decoration: underline;
}
.card_btn{
    width: 100%;
    border-radius: 30px;
    background: #CBA163;
    border: none;
    height: 50px;
    font-size: 18px;
    color: #000;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 10px;
}
.card_btn:hover{
    background: #e1b36d;
}

.specifications_list {
    margin-bottom: 1em;
    color: #999;
    font-weight: 400;

}
.specifications ul li{
    margin: 10px 0;
}
.specifications ul li a{
    color: #C6954D;
}
.specifications_list span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #000;
}
.specifications p:not(:last-child){
    margin-bottom: 1em;
}
.specifications h3{
        margin-bottom: 20px;
        margin-top: 40px;
}
.specifications table{
    width: 100%;
    text-align: left;
}

@media screen and (max-width:1024px){
    .card {
        grid-template-columns: 100%;
    }
}
@media screen and (max-width:991px) {
    .header_menu {
        display: none;
    }
    .header_menu .telephone{
        display: flex;
    }
    .header_menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: 0;
        right: 0;
        background-color: #fff;
        top: 100px;
        padding: 20px;
        z-index: 11;
    }

    .header_menu .header_nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .header_menu .header_social {
        justify-content: center;
        margin-top: 30px;
    }

    .header_tel {
        margin-left: auto;
        margin-right: 20px;
    }

    .header_logo {
        border-right: none;
        padding-left: 0;
    }

    .toggel_menu {
        display: block;
    }

    .header_menu .telephone {
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }


    .list_left {
        max-width: 186px;
    }
    .list_links{
        font-size: 11px;
    }
}

@media screen and (max-width:719px) {
    .footer_row {
        grid-template-columns: 1fr;
        grid-row-gap: 50px;
    }

    .footer_contacts {
        margin-left: 0px;
    }

    .footer_row>.footer_links {
        margin-top: 0px;
    }

    .footer_text {
        margin-left: 0px;
    }
}

@media screen and (max-width:657px) {
    .header_tel {
        display: none;
    }
    .header_logo{
        padding-right: 0;
    }
    .toggel_menu {
        margin-left: auto;
    }
}
@media screen and (max-width:578px){
    .list_links{
        padding-bottom: 20px;
    }
}

@media screen and (max-width:520px) {
    .logo {
        font-size: 10px;
    }
    .section_subtitle,
    .section_title {
        font-size: 20px;
    }
    .header_menu.active {
        top: 91px;
    }
}

@media screen and (max-width:400px) {
    .products {
        grid-template-columns: 1fr;
    }

    .footer .logo {
        margin-bottom: 0;
    }
    .logo{
        max-width: 220px;
    }

    .footer_social {
        flex-direction: column;
    }
    .header_menu.active {
        top: 84px;
    }
}