html {
    height: 100%;
    box-sizing: border-box;
}
*, *::after, *::before {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
h1 {
    font-size: 32px;
}
h2 {
    padding: 50px 0 50px 0;
    text-align: center;
}
body {
    height: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}
/* |||||||||||||||||||||||||||||BODY|||||||||||||||||||||||||||||||||||||||||| */
.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}
/* |||||||||||||||||||||||||||||HEADER|||||||||||||||||||||||||||||||||||||||||| */
.header {
    top: -146px;
    left: 0;
    z-index: 10;
    width: 100%;
    transition: all .4s ease;
    /* box-shadow: 0px 0px 19px 6px rgba(172, 59, 97, 0.2) inset; */
    box-shadow: 0px 0px 19px 6px rgba(18, 60, 105, 0.2) inset;
    /* box-shadow: 0px 0px 14px -1px rgba(18, 60, 105, 1); */
}
.header.fixed {
    position: fixed;
    transform: translateY(100px);
    background-color: #EEE2DC;
}
.header__top {
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    font-size: 13px;
    color: #123C69;
    box-shadow: 0px 15px 8px -13px rgba(18, 60, 105, 0.41);
    /* box-shadow: 0px 15px 10px -8px rgba(18, 60, 105, 0.17); */
}
.header__top-img {
    width: 11px;
    transition: 0.4s;
}
.header__top-link {
    color: #123C69;
}
.header__top-img--spare{
    display: none;
    transition: 0.4s;
}
.header__top-item:hover .header__top-link{
    color: #AC3B61;
    transition: 0.4s;
}
.header__top-item:hover .header__top-img--spare{
    display: inline-block;
    transition: 0.4s;
}
.header__top-item:hover .header__top-img--main{
    display: none;
    transition: 0.4s;
}
.header__btn {
    padding: 0 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 14px -6px rgba(172, 59, 97, 0.62) inset;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.4s;
}
.header__btn:hover{
    background-color: #AC3B61;
    color: #EEE2DC;
    transition: 0.4s;
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}
.logo {
    display: flex;
    align-items: center;
}
.logo__img {
    width: 300px;
    margin-right: 5px;
}
.menu__list {
    display: flex;
    gap: 35px;
}
.menu__list-item:hover .menu__list-link{
    color: #123C69;
    transition: 0.4s;
}
.menu__list-link {
    color: #AC3B61;
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.4s;
}
.header__display-link {
    display: none;
}
.burger__btn {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    background-color: inherit;
    border: none;
    z-index: 200px;
    cursor: pointer;
}
.burger__line {
    position: absolute;
    left: 5px;
    width: 30px;
    height: 2px;
    background-color: #AC3B61;
    transition: transform 0.5s, opacity 0.5s, background-color 0.5s;
}
.burger__btn:hover .burger__line {
    background-color: #123C69;
}
.burger__line:nth-child(1) {
    transform: translateY(-10px);
}
.burger__line:nth-child(3) {
    transform: translateY(10px);
}
.header__inner.open__burger .burger__line:nth-child(1){
    transform: translateY(0) rotate(45deg);
}
.header__inner.open__burger .burger__line:nth-child(2){
    opacity: 0;
}
.header__inner.open__burger .burger__line:nth-child(3){
    transform: translateY(0) rotate(-45deg);
}

/* |||||||||||||||||||||||||||||MAIN|||||||||||||||||||||||||||||||||||||||||| */
main {
    flex-grow: 1;
}
#slider {
    padding: 50px 0;
    background-image: url(../images/w1.jpg);
}
.swiper {
    display: flex;
    max-width: 950px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.swiper:hover .swiper-pagination {
    opacity: 1;
    transition: 0.7s;
}
.swiper:hover .swiper-button-prev {
    left: 5px;
    transition: 0.7s;
}
.swiper:hover .swiper-button-next {
    right: 5px;
    transition: 0.7s;
}
.swiper-wrapper {
    box-sizing: content-box;
}
.swiper-slide {
    display: flex;
}
.swiper-slide img{
    width: 100%;
    height: 100%;
}
.swiper-pagination {
    opacity: 0;
    transition: 0.7s;
}
.swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
    opacity: 0.6;
    background-color: #EEE2DC;

}
.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #AC3B61;
    box-shadow: 0px 0px 8px 3px rgba(172, 59, 97, 0.49);
}
.swiper-pagination-bullet:hover {
    opacity: 1;
    box-shadow: 0px 0px 8px 4px rgba(18, 60, 105, 0.49);
}
.swiper-button-prev {
    left: -40px;
}
.swiper-button-next {
    right: -40px;
}
.swiper-button-next,
.swiper-button-prev {
    color: #123C69;
    background-color: #EEE2DC;
    box-shadow: 0px 0px 6px 1px rgba(18, 60, 105, 1) inset;
    transition: 0.7s;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    opacity: 0.8;
}
.swiper-button-next::after,
.swiper-button-prev::after  {
    font-size: 20px;
}
.swiper-button-prev:hover, .swiper-button-next:hover{
    color: #EEE2DC;
    background-color: #AC3B61;
    box-shadow: 0px 0px 6px 1px rgba(238, 226, 220, 1) inset;
}
.advantages__title {
    color: #123C69;
}
.advantages__cards {
    display: flex;
    justify-content: space-around;
}
.advantages__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20%;
}
.advantages__img {
    margin-bottom: 20px;
    width: 35px;
}
.advantages__text {
    margin-bottom: 40px;
    text-align: center;
    color: #123C69;
}
#products {
    background-image: url(../images/w1.jpg);
    padding-bottom: 50px;
}
.products__title {
    color: #AC3B61;
}
.products__list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.product__item {
    margin: 10px;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, rgb(246, 246, 246) 50%, rgb(186, 178, 181));
}
.product__item:hover {
    box-shadow: 0px 0px 15px 1px rgba(18, 60, 105, 1) inset;
    transition: 0.4s;
    color: #AC3B61;
    
}
.product__item:hover .product__text{
    transition: 0.4s;
    color: #AC3B61;
    
}
.product__card {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}
.product__img {
    padding-top: 15px;
    height: 130px;
    margin: 0 auto;
}
.product__text {
    height: 15%;
    text-align: center;
    color: #123C69;
}
.clients__title{
    color: #123C69;
    padding: 50px 0 15px 0;
}
.clients__logoes {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.clients__logo {
    width: 15%;
}

/* |||||||||||||||||||||||||||||FOOTER|||||||||||||||||||||||||||||||||||||||||| */
.footer {
    padding: 15px 0 10px 0;
    background-color: #123C69;
}
.footer__top {
    display: flex;
    justify-content: space-between;
}
.footer__menu {
    width: 20%;
}
.footer__menu-item {
    padding-bottom: 15px;
}
.footer__menu-link {
    color: #EEE2DC;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    transition: 0.4s;
}
.footer__menu-link:hover {
    color: #AC3B61;
    transition: 0.4s;
}
.footer__menu-link:hover .footer__menu-text{
    color: #AC3B61;
    transition: 0.4s;
}
.footer__menu-link:hover .footer__menu-img--main{
    display: none;
    transition: 0.4s;
}
.footer__menu-link:hover .footer__menu-img--spare{
    display: inline-block;
    transition: 0.4s;
}
.footer__btn {
    border-radius: 5px;
    padding: 5px;
    width: fit-content;
    background-color: #EEE2DC;
    color: #123C69;
    transition: 0.8s;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}
.footer__btn-title {
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}
.footer__btn:hover {
    color: #EEE2DC;
    background-color: #AC3B61;
    transition: 0.4s;
}
.footer__menu-img {
    width: 10px;
    margin-right: 2px;
    transition: 0.4s;
}
.footer__menu-img--spare {
    display: none;
}
.footer__menu-text {
    color: #BAB2B5;
    font-weight: 400;
    text-transform: lowercase;
    transition: 0.4s;

}
.footer__map {
    width: 80%;
    display: flex;
    justify-content: space-around;
}
.footer__map-box {
    width: 46%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
}
.footer__map-title {
    color: #EEE2DC;
    font-size: 14px;
}
iframe {
    opacity: 0.9;
    border-radius: 5px;
}
.footer__bottom {
    margin: 15px 0; 
    text-align: center;
    color: #BAB2B5;
    font-size: 14px;
}

/* ||||||||||||||||||||||||||||||||||||||FORM|||||||||||||||||||||||||||||||||||||| */
.form {
    margin: 20px;
    width: 400px;
}
.form__input-box:not(:last-child) {
 margin-bottom: 20px;
}
.form__input-inp {
    border: 1px solid #123C69;
    outline: none;
    width: 100%;
    padding: 15px;
}
.form__input-inp:focus {
    box-shadow: 0px 0px 12px 1px rgba(18, 60, 105, 0.46);
}
#comment {
    min-height: 120px;
    resize: vertical;
}
.form__btn {
    width: 100%;
    background-color: #AC3B61;
    padding: 15px;
    outline: none;
    border: none;
    color: #EEE2DC;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.5s;
}
.form__btn:hover {
    background-color: #a00035;
}

/* |||||||||||||||||||||||||||||||||||POPUP|||||||||||||||||||||||||||||||||||||||||| */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 500;
    background-color: #EEE2DC;
    display: grid;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.7s visibility 0.7s;
}
.popup__content {
    margin: 25px;
    padding: 25px;
    position: relative;
    max-width: 550px;
    z-index: 301;
    transform: scale(0);
    transition: transform 0.8s;
    background-color: #edc7b7;
    border-radius: 5px;
}
.popup.open {
    visibility: visible;
    opacity: 0.99;
}
.popup.open .popup__content {
    transform: scale(1);
    transition: transform 0.8s;
}
.popup__close-btn {
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 7px;
    font-size: 30px;
    color: #123C69;
}
.popup__close-btn:hover {
    color: #AC3B61;
    transition: 0.7s;
}

/* |||||||||||||||||||||||||||||||||||||||||BREADCRUMBS|||||||||||||||||||||||||||||||||||||| */
.breadcrumbs {
    padding: 20px 0 0 15px;
}
.breadcrumbs__list {
    display: flex;
    align-items: center;
    text-align: center;
}
.breadcrumbs__link:hover {
    color: #AC3B61;
}
.breadcrumbs__link {
    color: #123C69;
    font-size: 13px;
}
.breadcrumbs__text {
    color: #123C69;
    font-size: 13px;
}
.breadcrumbs__title {
    color: #AC3B61;
    margin: 10px 0;
} 
/* -----------------------CONTACTS------------------------------- */
.contacts {
    display: flex;
    max-width: 100%;
}
.contact__certificate {
    margin-right: 20px;
}
.contact__certificate-img {
    width: 450px;
    transform: rotate(0.6deg);
}
.contact__details {
    max-width: 700px;
}
.contact__details-title {
    margin-bottom: 30px;
    font-size: 20px;
    color: #123C69;
    text-align: center;
}
.contact__ceo {
    margin-top: 35px;
    color: #123C69;
    font-size: 17px;
}
.contact__details-row {
    margin-top: 15px;
    display: flex;
    font-size: 17px;
}
.contact__row-left {
    width: 30%;
    font-weight: 700;
    color: #AC3B61;
}
.contact__row-right {
    padding-left: 5px;
    width: 70%;
    color: #123C69;
}

/* ----------------------------ABOUT------------------------------ */
.about__content {
    margin: 0 auto;
    padding-top: 20px;
    max-width: 950px;
}
.about__text {
    text-indent: 50px;
    color: #123C69;
    line-height: 25px;
    text-align: justify;
}
.about__certificate-title {
    margin: 20px 0;
    color: #AC3B61;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}
.about__certificate-box {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.about__certificate-img {
    width: 350px;
    margin: 5px;
}
.about__certificate-img._rotate {
    transform: rotate(-0.5deg);
}
.str__red {
    color: #AC3B61;
    font-weight: 700;
}

/* -----------------------SMAZKA--------------------------------- */
.catalog__product {
    display: flex;
}
.catalog__nav {
    margin: 5px;
    width: 200px;
    flex-shrink: 0;
}
.catalog__item {
    margin: 20px;
    transition: 0.5s;
    opacity: 0.6;
}
.catalog__item:hover {
    opacity: 1;
}
.catalog__link:hover {
    transition: 0.5s;
}
.catalog__link-info {
    display: flex;
    align-items: center;
}
.catalog__img {
    width: 15px;
    margin-right: 5px;
}
.catalog__text {
    font-size: 13px;
}
#product__information {
    background-image: url(../images/w1.jpg);
    background-size: cover;
}
.catalog__info {
    margin: 20px 0 0;
    padding: 20px 0 15px 0;
}
.catalog__info-title {
    color: #AC3B61;
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}
.catalog__info-item {
    margin-bottom: 5px;
    color: #123C69;
    line-height: 20px;
    letter-spacing: 1px;
    font-size: 14px;
}
.catalog__info--color{
    color: #AC3B61;
}

/* -------------------------------------------CARD---------------------------------------------- */
.catalog__card {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, 270px);
    justify-content: center;
    justify-items: center;
    margin: 0 auto;
}
.card__product {
    position: relative;
    margin: 5px;
    padding: 5px 3px 70px;
    width: 260px;
    min-height: 500px;
    background-image: url(../images/w2.jpg);
    background-size: cover;
    border-radius: 5px;
}
.card__product:hover {
    box-shadow: 0px 0px 30px -1px rgba(18, 60, 105, 0.93);
    transition: 0.5s;
}
.card__product-img {
    margin: auto auto;
    height: 220px;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card__product-info {
    margin: 0 10px;
}
.card__product-title {
    margin: 20px 0;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    color: #123C69;
}
.card__product-text {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 0;
    font-size: 13px;
}
.card__text-left{
    color: #123C69;
}
.card__text-right {
    color: #AC3B61;
}
.card__product-price {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 5px;
    margin: 0 15px 15px 0;
    text-align: center;
    font-size: 14px;
    color: red;
    font-weight: 700;
    box-shadow: 0px 0px 11px 3px rgba(255, 0, 0, 1);
    border-radius: 5px;
}

/* ==========================MODIFIERS============================= */
.menu__list-link--active {
    color: #123C69;
}
.scotch__img--size, 
.other__img--size{
    height: 150px;
}
.smazka__img--size {
    height: 200px;
}

/* @@@@@@@@@@@@@@@@@@@@@@Media@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
@media (max-width: 1350px) {
    .header {
        padding: 0 15px;
    }
}
@media (max-width: 1050px) {
    .contact__certificate-img {
        width: 300px;
    }
    .contact__details-title {
        margin-bottom: 30px;
        font-size: 17px;
    }
    .contact__ceo {
        margin-bottom: 35px;
        font-size: 14px;
    }
    .contact__details-row {
        font-size: 14px;
    }
}
@media (max-width: 1000px) {
    .logo {
        z-index: 5;
    }
    .burger__btn {
        display: block;
    }
    .menu {
        position: absolute;
        right: 0;
        top: -130vh;
        width: 100%;
        height: 130vh;
        background-color: #BAB2B5;
        opacity: 0.95;
        transition: transform 0.5s;
    }
    .menu__list {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 250px;
    }
    .menu__list-link {
        font-size: 22px;
        color: #123C69;
    }
    .menu__list-item:hover .menu__list-link{
        color: #AC3B61;
        transition: 0.4s;
    }
    .header__inner.open__burger .menu {
        transform: translateY(100%);
    }
    .advantages__img {
        width: 25px;
    }
    .advantages__text {
        margin-bottom: 40px;
        font-size: 10px;
    }
    .footer__top {
        flex-direction: column;
    }
    .footer__menu {
        padding: 0 5px;
        margin-bottom: 5px;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .footer__map {
        width: 100%;
        flex-direction: column;
    }
    .footer__map-box {
        width: 100%;
    }
    .footer__map-title {
        margin: 10px 0;
    }
}
@media (max-width: 925px) {
    .catalog__product {
        display: inline-block;
    }
    .catalog__nav {
        width: 100%;
    }
    .catalog__list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    .breadcrumbs__title {
        font-size: 26px;
    }
    h2 {
        font-size: 19px;
    }
    .header,
    .header__inner {
        padding: 0;
    }
    .header__top {
        display: none;  
    }
    .header.fixed {
        position: fixed;
        transform: translateY(100px);
        background-color: #EEE2DC;
    }
    .header.fixed {
        transform: translateY(145px);
    }
    .header__display-link {
        display: inline-flex;
    }
    .header__display-link {
        display: inline-flex;
    }
    .header__btn {
        background-color: #EEE2DC;
    }
    .header__top-img {
        color: #123C69;
    }
    .logo__img {
        width: 200px;
    }
    .burger__btn {
        width: 30px;
        height: 30px;
    }
    .burger__line {
        left: 5px;
        width: 20px;
    }
    .burger__line:nth-child(1) {
        transform: translateY(-6px);
    }
    .burger__line:nth-child(3) {
        transform: translateY(6px);
    }
    .menu__list-link {
        font-size: 15px;
    }
    #advantages {
        display: none;
    }
    .product__item {
        width: 115px;
        height: 115px;
    }
    .product__img {
        height: 65px;
    }
    .product__text {
        font-size: 10px;
    }
    .swiper-pagination-bullet {
        width: 20px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 25px;
        height: 25px;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after  {
        font-size: 15px;
    }
}

@media (max-width: 765px) {
    .contact__certificate {
        margin-bottom: 10px;
    }
    .contacts {
        flex-direction: column-reverse;
        align-items: center;
    }
    .contact__details-title {
        margin-top: 30px;
    }
    .contact__details {
        width: 90%;
    }
    .about__certificate-title {
        font-size: 26px;
    }
    .about__certificate-img {
        width: 420px;
    }
}
@media (max-width: 600px) {
    .catalog__text {
        display: none;
    }
    .catalog__img {
        width: 30px;
    }

    .form {
        width: 350px;
    }
    .form__input-box:not(:last-child) {
     margin-bottom: 15px;
    }
    #comment {
        min-height: 100px;
    }
    .form__input-inp {
        padding: 10px;
        font-size: 14px;
    }
    .form__btn {
        padding: 10px;
        font-size: 14px;
    }
}
@media (max-width: 500px) {
    .swiper-pagination-bullet {
        width: 10px;
        height: 1px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 15px;
        height: 15px;
        top: 55%;
        bottom: 45%;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after  {
        font-size: 5px;
    }
    .footer__menu {
        flex-direction: column;
    }
    .footer__map-title {
        font-size: 10px;
    }
    .popup__close-btn {
        font-size: 20px;
    }
    .contact__details {
        width: 100%;
    }
    .contact__certificate-img {
        width: 200px;
    }
    .contact__details-title {
        font-size: 14px;
    }
    .contact__ceo {
        margin-bottom: 35px;
        font-size: 11px;
        text-align: center;
    }
    .contact__details-row {
        font-size: 11px;
    }
    .contact__row-right {
        padding-left: 15px;
    }
    .about__certificate-img {
        width: 300px;
        margin: 5px;
    }
    .form {
        width: 300px;
    }
    .form__input-inp {
        padding: 10px;
        font-size: 12px;
    }
    .form__btn {
        padding: 10px;
        font-size: 12px;
    }
}
@media (max-width: 410px) {
    .form {
        width: 200px;
    }
    .form__input-box:not(:last-child) {
     margin-bottom: 15px;
    }
    #comment {
        min-height: 100px;
    }
    .form__input-inp {
        padding: 8px;
        font-size: 8px;
    }
    .form__btn {
        padding: 8px;
        font-size: 8px;
    }
}
@media (max-width: 320px) {
    .swiper-pagination {
        height: 12px;
    }
    .swiper-button-next,
    .swiper-button-prev {
      top: 65%;
      bottom: 35%;
    }
}