h1.pagetitle {
    color: #032c7f;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.4;
}

@media screen and (max-width: 1336px) {
    .title {
        font-size: 28px;
    }
}

@media screen and (max-width: 991px) {
    .title {
        font-size: 22px;
    }
}

.service_places {
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
}

.service_place {
    margin-bottom: 20px;
}

.retail-stores__link.link {
    flex-shrink: 0;
    min-width: 241px;
    height: auto;
    margin-left: 30px;
    font-size: 18px;
}

.row {
    margin: 0;
}

#search__result {
    position: absolute;
    width: 100%;
    padding: 10px;
    z-index: 1;
    background-color: white;
}

#search__result ul {
    list-style: auto;
    list-style-position: inside;
}

#search__result ul li::marker {
    font-weight: 600;
    color: #4d4d4d;
    font-size: 12px;
}

.search_result {
    font-size: 12px;
    max-width: 90%;
}

.card__info {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index:9;
}

.card__like {
    display: flex;
    align-items: center;
    margin-left: 14px;
    flex-shrink: 0;
    transition: 300ms;
    cursor: pointer;
}
.card__like:hover svg {
    stroke: #2d63cc;
}
.card__like.active svg {
    fill: #2d63cc;
    stroke: #2d63cc;
    transition: 300ms;
}
.card__like svg {
    width: 33px;
    height: 30px;
    fill: none;
    transition: 300ms;
    stroke-width: 2px;
    stroke: #787878;
}

.card__like.active svg:hover {
    fill: none;
}

.favorite-message {
    display: none;
    max-width: 215px;
    position: absolute;
    z-index: 999;
    top: 25px;
    right: 26px;
    background-color: white;
    border: 1px solid grey;
    border-radius: 8px 0px 8px 8px;
    padding: 5px;
}

.product__navs {
    position: relative;
}

.product__nav a.favorite-message {
    top: -15px;
}

.product__navs {
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 991px) {
    .product__navs {
        grid-template-columns: 1fr 1fr;
        display: grid;
    }
}
@media only screen and (max-width: 767px) {
    .product__navs {
        display: flex;
        justify-content: space-between;
    }
}
.product__nav {
    display: flex;
    align-items: flex-end;
    margin-right: 82px;
    cursor: pointer;
}
@media only screen and (max-width: 991px) {
    .product__nav {
        margin-right: 0;
    }
}
.product__nav:hover span {
    color: #2d63cc;
}
.product__nav:hover svg {
    stroke: #2d63cc;
}
.product__nav:hover svg.compare {
    fill: #2d63cc;
}
.product__nav.active svg {
    fill: #2d63cc;
    stroke: #2d63cc;
}
.product__nav.active svg.compare {
    stroke: transparent;
    fill: #2d63cc;
}
.product__nav:last-child {
    margin-right: 0;
}
.product__nav span {
    font-size: 14px;
    color: #4d4d4d;
    margin-left: 10px;
    display: block;
    line-height: 1;
    transition: 300ms;
}
.product__nav svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: #787878;
    stroke-width: 2px;
    transition: 300ms;
}

.product__nav a.favorite-message {
    top: 10px;
    left: -202px;
}

@media (max-width: 576px){
    .product__nav a.favorite-message {
        left: 10px;
        border-radius: 0px 8px 8px 8px;
    }
}

.header__btn.favourite > div > svg {
    fill: none;
    stroke: #787878;
    stroke-width: 2px;
    transition: 300ms;
}

.header__btn.favourite:hover div > svg {
    stroke: #2d63cc;
}

.breadcrumbs__items {
    display: flex;
    align-items: center;
}

.product-card {
    height: 490px;
}

@media (max-width: 991px) {
    .product-card {
        height: 368px;
    }
}

.modal-fog.thanks {
    padding: 0;
    overflow: hidden;
}

.modal_notification {
    background: rgb(255, 255, 255);
    width: 744px;
    height: 376px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal_notification img.modal_close {
    position: absolute;
    right: 20px;
    top: 22px;
}

.modal_notification h3 {
    color: rgb(11, 11, 11);
    font-size: 16px;
    margin-bottom: 33px;
    font-weight: bold;
}

.modal_notification p {
    font-size: 16px;
    margin-bottom: 60px;
    text-align: center;
}

.modal_notification .modal_close {
    cursor: pointer;
}

a.modal_close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 226px;
    height: 45px;
    border: 2px solid #032c7f;
    border-radius: 4px;
    background-color: #032c7f;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    transition-property: border-color, background-color, color;
    transition-duration: 300ms;
}

@media screen and (max-width: 1366px) {
    .modal_notification {
        width: 504px;
        height: 296px;
    }
}

section.promotions {
    margin-topx : 50px;
}

body.scroll-h {
    overflow: hidden;
}

.certificates_header {
    color: #222222;
    font-size: 20px;
    font-weight: bolder;
}

.certificates {
    display: grid;
    grid-template-columns: repeat(5, auto);
    grid-gap: 20px;
}

.certificates > a > img {
    width: 120px;
    height: 160px;
}