@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
/* start reset css */

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    /*font: inherit;*/
    vertical-align: baseline;
    transition: 0.4s;
}

@media (max-width: 768px) {
    html, body {
        font-size: 14px;
    }
}

button:focus {
    outline: 0;
}

.slider-item:focus {
    outline: 0;
}

input:focus {
    outline: 0;
}

textarea:focus {
    outline: 0;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1.4;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button:focus {
    outline: none !important;
}

/* end reset css */

/* __________header */

.header-wrap {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.custom-logo-link img {
    max-height: 87px;
    object-fit: contain;
    width: auto;
}

.header-wrap .header-menu-wrap {
    display: flex;
    justify-content: space-between;
    z-index: 5;
    width: 87%;
}

.header-wrap .header-menu-wrap li a {
    color: #000;
    text-transform: uppercase;
    margin: 1rem;
}

.header-wrap .header-menu-wrap li.menu-item-has-children, .burger-menu-wrap.open li.menu-item-has-children {
    position: relative;
}

.header-wrap .header-menu-wrap li.menu-item-has-children::after, .burger-menu-wrap.open li.menu-item-has-children::after {
    content: '';
    display: block;
    background-image: url('../img/Icon-ios-arrow-down.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 10px;
    width: 10px;
    position: absolute;
    bottom: 5px;
    right: 1px;
    transition: 0.5s;
    cursor: pointer;
}

.burger-menu-wrap.open li.menu-item-has-children::after {
    top: 0;
}

.header-wrap .header-menu-wrap li.menu-item-has-children:hover::after, .burger-menu-wrap li.menu-item-has-children.open::after {
    transform: rotate(180deg);
}

.header-wrap .header-menu-wrap li.menu-item-has-children .sub-menu {
    display: none;
    position: absolute;
    left: 50%;
    /* position the left edge of the element at the middle of the parent */
    transform: translate(-50%, 0%);
    padding: 1rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgb(238, 238, 238);
    border-left: 1px solid rgb(238, 238, 238);
    border-right: 1px solid rgb(238, 238, 238);
    z-index: 1;
    background-color: #fff;
    min-width: 130px;
    width: fit-content;
}

.header-wrap .header-menu-wrap li.menu-item-has-children .sub-menu a {
    margin: 0;
    white-space: nowrap;
}

.burger-menu-wrap {
    display: none;
}

@keyframes openBurgerMenu {
    0% {
        -moz-transform: translate(50px, 0px);
        -webkit-transform: translate(50px, 0px);
        -o-transform: translate(50px, 0px);
        -ms-transform: translate(50px, 0px);
        transform: translate(100%, 0px);
    }
    100% {
        -moz-transform: translate(50px, 0px);
        -webkit-transform: translate(50px, 0px);
        -o-transform: translate(50px, 0px);
        -ms-transform: translate(50px, 0px);
        transform: translate(0%, 0px);
    }
}

.burger-menu-wrap .sub-menu {
    display: none;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 1rem 0;
}

.burger-menu-wrap.open {
    animation-name: openBurgerMenu;
    animation-duration: 0.9s;
}

.burger-menu-wrap .sub-menu.open {
    display: flex;
    flex-direction: column;
    animation: openSubmenu 0.5s ease-in-out;
    z-index: 1;
    background-color: #fff;
}

.burger-menu-wrap .sub-menu li {
    text-align: left;
    padding-left: 2rem;
}

.burger-menu-wrap a {
    color: #000;
    text-transform: uppercase;
}

.burger-menu-wrap li {
    margin: 1.5rem 0;
}

.burger-menu-wrap .sub-menu li {
    margin: 0.65rem 0;
}

.burger-menu-wrap.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    z-index: 99;
    background-color: #fff;
    width: 35%;
    min-height: 100vh;
    padding: 0.5rem 2rem;
    border-left: 1px solid #d6d6d6;
}

.header-wrap .header-menu-wrap li.menu-item-has-children .sub-menu li {
    font-size: 14px;
    border-bottom: 1px solid rgb(238, 238, 238);
    padding: 10px 0;
}

.header-wrap .header-menu-wrap li.menu-item-has-children .sub-menu li:last-child {
    border: none;
}

.header-wrap .header-menu-wrap li.menu-item-has-children .sub-menu li a {
    color: #17467d;
}

@keyframes openSubmenu {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.header-wrap .header-menu-wrap li.menu-item-has-children:hover .sub-menu {
    display: flex;
    animation: openSubmenu 0.5s ease-in-out;
}

.header-wrap .header-menu-wrap li a:hover {
    text-decoration: none;
    opacity: 0.65;
}

.header-wrap .cart {
    position: relative;
}

.header-wrap .cart .count {
    position: absolute;
    top: -24px;
    right: -11px;
    border-radius: 100%;
    background-color: #17467d;
    height: 25px;
    width: 25px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    line-height: 25px;
}

@keyframes cartAnimation {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
    75% {
        transform: rotate(-10deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.header-wrap .cart:hover {
    animation-name: cartAnimation;
    animation-duration: 0.4s;
}

.burger-menu {
    display: none;
    width: 40px;
    margin-right: 2rem;
    cursor: pointer;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background-color: #17467d;
    margin-bottom: 4px;
}

.burger-menu.open span:nth-child(1) {
    transform: rotate(-35deg) translate(-5px, 0px);
}

.burger-menu.open span:nth-child(2) {
    display: none;
}

.burger-menu.open span:nth-child(3) {
    transform: rotate(35deg) translate(-5px, 0px);
    ;
}

.header-wrap .soc-contact {
    display: flex;
}

.header-wrap .soc-contact img {
    width: 26px;
    object-fit: contain;
    margin: 0 11px;
}

.header-wrap .soc-contact img:hover {
    animation-name: cartAnimation;
    animation-duration: 0.4s;
}

/* .burger-menu:hover span:nth-child(1){
    margin-left: 7px;
} */

.burger-menu:hover span:nth-child(2) {
    margin-left: 7px;
}

header .burger-menu-wrap .soc-contact {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

header .burger-menu-wrap .soc-contact img {
    width: 42px;
}

/* #single-product-add-cart.added button {
    color: #aac63b;
    position: relative;
} */

.add_to_cart_button.added button:after {}

@media (max-width: 500px) {
    header .burger-menu-wrap .soc-contact img {
        margin: 0 15px;
    }
}

@media (max-width: 1350px) {
    .header-wrap .header-menu-wrap {
        width: 97%;
    }
}

@media (max-width: 1200px) {
    .header-wrap .header-menu-wrap {
        display: none;
    }
    .header-wrap .burger-menu {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .header-wrap .burger-menu, .header-wrap .cart {
        margin-top: 15px;
    }
    .header-wrap .soc-contact img {
        margin-top: 15px;
    }
    .header-wrap .soc-contact {
        display: none;
    }
}

@media (max-width: 1252px) {
    .header-wrap .header-menu-wrap li a {
        font-size: 14px;
    }
}

@media (max-width: 1020px) {
    .header-wrap .header-menu-wrap li a {
        margin: 0.75rem;
    }
}

@media (max-width: 768px) {
    .burger-menu-wrap.open {
        width: 50%;
    }
}

@media (max-width: 500px) {
    .burger-menu-wrap.open {
        width: 100%;
    }
    .header-wrap .burger-menu, .header-wrap .cart {
        margin-top: 20px;
    }
    .header-wrap .soc-contact img {
        margin: 0 5px;
        margin-top: 15px;
        width: 22px;
    }
}

.breadcrumbs-wrap span {
    font-size: 14px;
    margin-right: 5px;
}

.breadcrumbs-wrap a {
    text-decoration: none;
    color: #000;
}

/* product-page  */

.product-page {
    max-width: 1640px;
    margin: 0 auto;
    /* padding: 0 7rem; */
}

@media (max-width: 1920px) {
    .product-page {
        padding: 0 3rem;
    }
}

@media (max-width: 1740px) {
    .product-page {
        padding: 0 7rem;
    }
}

/* footer */

.footer-wrap .form-content {
    max-width: 1920px;
    margin: 0 auto;
}

.footer-wrap .footer-title {
    -webkit-text-stroke: 2px #fff;
    color: #17467d;
    font-size: 60px;
    font-weight: bold;
    margin: 100px 0 55px;
}

.footer-wrap {
    background-color: #17467d;
}

.footer-wrap .form-wrap form {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer-wrap .form-wrap input {
    width: 536px;
    border-radius: 5px;
    border: none;
    padding: 19px 5px;
    text-align: center;
    margin-bottom: 3px;
}

.footer-wrap .form-wrap input.wpcf7-tel {
    padding: 15.5px 5px;
}

.footer-wrap .form-wrap p {
    margin-bottom: 10px;
    position: relative;
}

.footer-wrap .form-wrap .ajax-loader {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 10px;
    background-repeat: no-repeat;
    left: 0;
    background-position: 50% 35%;
}

.footer-wrap .form-wrap p:last-child {
    margin-bottom: 0;
}

.footer-wrap .form-wrap input::placeholder {
    font-size: 18px;
    text-align: center;
}

.footer-wrap .form-wrap button {
    border-radius: 5px;
    border: none;
    font-size: 18px;
    color: #aac63b;
    text-transform: uppercase;
    font-weight: bold;
    width: 260px;
    padding: 19px 5px;
    background-color: #fff;
    transition: 0.4s;
}

.footer-wrap .form-wrap p:last-of-type {
    margin-bottom: 50px;
}

.footer-wrap .form-wrap span {
    text-align: center;
    color: #bb1600;
    font-size: 14px;
}

.footer-wrap .form-wrap input.wpcf7-not-valid {
    border: #bb1600 1px solid;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0 0 1em;
    border: none;
    color: #bb1600;
    font-weight: bold;
    text-align: center;
}

.footer-wrap .form-wrap button:hover {
    opacity: 0.85;
    color: #aac63b;
}

.footer-wrap .footer-contacts {
    display: flex;
    justify-content: center;
    padding-top: 17px;
    padding-bottom: 35px;
    background-color: #fff;
}

.footer-wrap .footer-contacts .text, .footer-wrap .footer-contacts .phone {
    font-size: 16px;
    color: #474747;
}

.footer-wrap .footer-contacts .phone {
    margin: 0 20px;
    white-space: nowrap;
}

.footer-wrap .soc-contact {
    display: flex;
}

.footer-wrap .soc-contact img {
    width: 32px;
    object-fit: contain;
    margin: 0 11px;
}

.footer-wrap .soc-contact img:hover {
    animation-name: cartAnimation;
    animation-duration: 0.4s;
}

@media (max-width: 930px) {
    .footer-wrap .footer-title {
        font-size: 40px;
        margin: 50px 0 25px;
    }
    .footer-wrap .form-wrap input {
        width: 336px;
        padding: 15px 5px;
    }
    .footer-wrap .form-wrap button {
        font-size: 16px;
        width: 160px;
        padding: 13px 5px;
    }
}

@media (max-width: 768px) {
    .footer-wrap .footer-contacts .phone {
        margin: 0 20px;
        white-space: nowrap;
    }
    .footer-wrap .footer-title {
        -webkit-text-stroke: 0px;
        color: #fff;
    }
}

@media (max-width: 600px) {
    .footer-wrap .footer-title {
        font-size: 30px;
        text-align: center;
    }
    .footer-wrap .form-wrap input {
        width: 236px;
        padding: 10px 5px;
    }
    .footer-wrap .form-wrap button {
        font-size: 16px;
        width: 110px;
        padding: 10px 5px;
        font-size: 14px;
    }
    .footer-wrap .form-wrap input::placeholder {
        font-size: 14px;
    }
}

@media (max-width: 570px) {
    .footer-wrap .footer-contacts {
        display: flex;
        flex-direction: column;
    }
    .footer-wrap .footer-contacts .text, .footer-wrap .footer-contacts .phone {
        text-align: center;
        font-size: 14px;
    }
    .footer-wrap .footer-contacts .text, .footer-wrap .footer-contacts .phone {
        margin-bottom: 10px;
    }
}

/* sliders */

.slider-wrap {
    margin-top: 20px;
}

.slick-track {
    margin-left: 0;
}

.slider {
    margin: 16px 0 25px;
}

.slider-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.slider-subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
}

.slider-item .slider-item-content {
    /* padding-bottom: 1rem; */
    padding: 0 25px 1rem;
}

.slider-item:hover {
    text-decoration: none;
}

.slider-item .img-wrap {
    height: auto;
    /* display: flex; */
    align-items: center;
    justify-content: center;
}

.slider-item .img-wrap a {
    height: auto;
    min-width: 100%;
}

.slider-item .img-prod {
    height: inherit;
    width: 100%;
    object-fit: contain;
}

.slider-item .info-and-price {
    margin-top: 34px;
    height: 100%;
}

.slider-item .stars-wrap img {
    margin-right: 4px;
}

.slider-item .product-group {
    font-size: 12px;
    color: #989898;
    margin-top: 5px;
    text-align: center;
}

.slider-item .product-name {
    font-size: 14px;
    color: #000;
    margin-top: 7px;
    font-weight: bold;
    text-align: center;
}

.slider-item .product-price {
    margin-top: 5px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.slider-item .product-price span {
    font-weight: bold;
    color: #17467d;
    margin-right: 3px;
}

.slider-item .product-price span.sale-price {
    color: #7B7B7B!important;
}

.slider-item .product-price span.sale-price span {
    color: #7B7B7B;
}

.slider-item .product-price .regular-price span {
    color: #FF4E00;
}

.slider-item .product-price button {
    background-color: #17467d;
    width: 37px;
    height: 33px;
    border: none;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.slider-item .product-price button img {
    width: 75%;
    min-width: 20px;
}

.slider-item .product-price button:hover {
    opacity: 0.75;
}

.slider .slick-track {
    display: flex !important;
}

.slider .slick-slide {
    height: inherit !important;
}

.slick-prev, .slick-next {
    display: none!important;
}

.review-slider .slick-prev, .review-slider .slick-next {
    display: block!important;
}

.slider-in-shop .slider-item .slider-item-content {
    /* padding-bottom: 1rem; */
    padding: 0;
}

.slider-in-shop .slider-item .img-wrap {
    padding: 0 5px;
}

.slider-in-shop .slider-item .info-and-price {
    margin-top: 34px;
    height: 100%;
}

.slider-in-shop {
    background: rgb(193, 193, 193);
    background: linear-gradient(0deg, rgb(230, 230, 230) 25%, rgba(255, 255, 255, 1) 70%);
}

.slider-in-shop.slick-dotted.slick-slider {
    margin-bottom: 0px!important;
    padding-bottom: 100px;
}

.slider-in-shop .slick-dots {
    position: absolute;
    bottom: 35px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}

.services-slider .slick-track {
    display: flex !important;
}

.services-slider .slick-slide {
    height: inherit !important;
}

.services-slider .slick-dots li.slick-active button:before {
    background-color: #17467d;
    border: 1px solid #707070!important;
}

@media (max-width: 1024px) {
    .slider-item .slider-item-content {
        padding: 0 15px 1rem;
    }
    /* .slider-item .img-wrap {
        height: 236px;
    } */
    .slider-item .info-and-price {
        margin-top: 14px;
    }
}

@media (max-width: 768px) {
    .slider-title {
        font-size: 25px;
    }
}

/* _____________product Page */

.product-info {
    margin-top: 40px;
}

.gallery-wrap .photo-gallery {
    max-height: 500px;
}

.gallery-wrap .photo-gallery .slider-item {
    margin-bottom: 0px;
    /* display: flex; */
    /* justify-content: start;
    height: 120px; */
    margin: 0;
    margin-bottom: 1rem;
    padding: 0;
}

.gallery-wrap .photo-gallery .slider-item.slick-current {
    border: 1px solid #707070;
}

.gallery-wrap .photo-gallery .slider-item:focus {
    outline: 0;
}

.slick-vertical .slick-slide {
    border: none;
}

.gallery-wrap .photo-gallery img {
    width: 120px;
    object-fit: contain;
}

.gallery-wrap {
    display: flex;
}

.gallery-wrap .photo-gallery {
    margin-right: 15px;
}

.gallery-wrap .main-photo img {
    /* object-fit: contain;
    margin: 0 auto;
    width: 100%; */
    object-fit: cover;
    margin: 0 auto;
    width: 100%;
    min-height: 500px;
    height: 100%;
}

.gallery-wrap .main-photo {
    overflow: hidden;
}

.product-info .product-title {
    font-size: 30px;
    font-weight: bold;
    margin-top: 30px;
}

.product-info .stars-wrap {
    margin-top: 20px;
}

.product-info .stars-wrap img {
    margin-right: 4px;
}

.product-info .price-wrap {
    align-items: center;
    margin-top: 18px;
}

.product-info .price-wrap .old-price {
    color: #7B7B7B;
    text-decoration: line-through;
    margin-right: 20px;
}

.product-info .price-wrap .price {
    color: #FF4E00;
    font-weight: bold;
    font-size: 24px;
}

.product-info .info-text {
    color: #5A5A5A;
    margin-top: 35px;
}

.pay-btns-wrap {
    margin-top: 40px;
    width: 80%;
}

.quantity-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pay-btns-wrap .quantity-select {
    width: 20%;
}

.quantity-select input {
    border: none;
    text-align: center;
    min-width: 20px;
    max-width: 25px;
    background-color: #bcbcbc00;
}

.pay-btns-wrap p {
    color: #7B7B7B;
}

.pay-btns-wrap .btns-wrap {
    width: 20%;
}

.pay-btns-wrap .btns-wrap a, .quantity-select span {
    border-radius: 100%;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    height: 18px;
    width: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    cursor: pointer;
}

.pay-btns-wrap .btns-wrap .plus-btn, .quantity-select .plus {
    font-size: 18px;
    font-weight: lighter;
}

.pay-btns-wrap button {
    background-color: #17467d;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    width: 143px;
    padding: 15px 5px;
    transition: 0.5s;
}

.pay-btns-wrap button:hover {
    opacity: 0.75;
}

.products-tab-wrap {
    margin-top: 100px;
    margin-left: 120px;
}

#productInfoTab {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #707070;
}

#productInfoTab a {
    color: #7B7B7B;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #7B7B7B;
    border: none;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 0;
}

.nav-tabs {
    border-bottom: none
}

.nav-tabs .nav-link.active {
    position: relative;
}

.nav-tabs .nav-link.active::after {
    content: '';
    height: 100%;
    width: 3px;
    background-color: #17467d;
    position: absolute;
    right: -2px;
    top: 0;
}

#productInfoTabContent {
    padding: 0.5rem 1.5rem;
}

#productInfoTabContent p {
    color: #5A5A5A;
}

.nav-link {
    padding: 1.5rem 1rem;
}

#productInfoTab a.active {
    color: #17467d;
}

#comments .woocommerce-Reviews-title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

#productInfoTabContent p .woocommerce-info, .woocommerce-noreviews, #productInfoTabContent p.no-comments {
    background-color: #fff!important;
    font-weight: bold;
    margin: 20px 0;
}

#respond .comment-reply-title {
    /* color: #5A5A5A;
    font-size: 14px; */
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

#commentform {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    margin-top: 20px;
}

#respond .comment-notes {
    font-size: 14px;
    margin: 8px 0;
    min-width: 100%;
}

.comment-form-author, .comment-form-email {
    display: flex;
    flex-direction: column;
    width: 48%;
}

.comment-form-author input, .comment-form-email input {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 0.5rem;
    border: 1px solid #5A5A5A;
    margin-bottom: 1rem;
    border-radius: 0;
}

.comment-form-author {
    margin-right: 2%;
}

.comment-form-email {
    margin-left: 2%;
}

.comment-form-author label, .comment-form-email label, .comment-form-comment label, .comment-form-rating label, .comment-notes {
    display: none;
}

.comment-form-rating {
    margin-bottom: 1rem;
}

.comment-form-comment, #comment {
    width: 100%;
}

#comment {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 0.5rem;
    border: 1px solid #5A5A5A;
    resize: none;
    margin-bottom: 1rem;
    border-radius: 0;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.comment-form-cookies-consent input {
    margin-right: 15px;
    border-radius: 0;
    width: 23px;
    height: 23px;
}

.comment-form-cookies-consent {
    margin-bottom: 1rem;
}

.form-submit #submit {
    background-color: #17467d;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    width: 143px;
    padding: 15px 5px;
    transition: 0.5s;
}

.form-submit #submit:hover {
    opacity: 0.75;
}

.commentlist .comment_container {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
}

#review_form_wrapper {
    margin-top: 2rem;
}

.commentlist {
    margin: 1rem 0;
}

.commentlist .comment_container img {
    margin-right: 1rem;
}

.commentlist .comment_container .comment-text {
    display: flex;
    flex-wrap: wrap;
    width: 85%;
}

.commentlist .comment_container .star-rating, .commentlist .comment_container .meta {
    width: 50%;
}

.commentlist .comment_container .meta {
    display: flex;
}

.commentlist .comment_container .description {
    width: 100%;
}

@media (max-width: 1400px) {
    .pay-btns-wrap {
        margin-top: 40px;
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .pay-btns-wrap {
        width: 65%;
    }
    .products-tab-wrap {
        margin-top: 50px;
        margin-left: 0px;
    }
    .nav-link {
        padding: 1rem 1rem 1rem 0;
    }
}

@media (max-width: 992px) {
    .product-page {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .gallery-wrap {
        flex-direction: column-reverse;
    }
    .gallery-wrap .photo-gallery .slider-item {
        margin-right: 15px;
    }
    .gallery-wrap .photo-gallery img {
        width: 100%;
    }
    .pay-btns-wrap {
        width: 85%;
    }
    .gallery-wrap .photo-gallery {
        margin-right: 0px;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    #productInfoTab {
        flex-direction: row;
        overflow-x: scroll;
        flex-wrap: nowrap;
        border-right: none;
        border-bottom: 1px solid #707070;
    }
    .nav-tabs .nav-item {
        margin-bottom: 0px;
    }
    /* #productInfoTab::before {
        content: '';
        height: 1px;
        width: 100%;
        background-color: #707070;
        position: absolute;
        bottom: 0px;
        min-width: 103vw;
    } */
    #productInfoTab a {
        white-space: nowrap;
    }
    .nav-tabs .nav-link.active::after {
        display: none;
    }
    .nav-tabs .nav-link.active::before {
        content: '';
        height: 3px;
        width: 100%;
        background-color: #17467d;
        position: absolute;
        bottom: 0px;
        left: 0;
    }
    .nav-link {
        padding: 1rem;
    }
    #productInfoTabContent {
        padding: 0.5rem 0;
    }
}

@media (max-width: 530px) {
    .pay-btns-wrap {
        width: 100%;
    }
    .pay-btns-wrap button {
        font-size: 12px;
        width: 80px;
        padding: 7px 5px;
    }
    .products-tab-wrap {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .pay-btns-wrap .quantity-select {
        width: 23%;
    }
    .pay-btns-wrap .quantity-select input {
        max-width: 31px;
    }
}

@media (max-width: 576px) {
    .product-page {
        padding: 0;
    }
}

/* ______________category Page */

.category-page {
    max-width: 1640px;
    margin: 0 auto;
    /* padding: 0 7rem; */
}

.category-product-list .slider-item {
    /* display: flex;
    justify-content: space-between; */
    margin: 0;
    /* height: 100%; */
}

/* .category-product-list .slider-item .img-prod {
    height: 100%;
} */

.category-page .category-title {
    font-size: 32px;
    font-weight: bold;
    width: 26%;
    margin: auto 0;
    padding-bottom: 1rem;
}

.category-page .category-btns {
    align-items: center;
    justify-content: start;
    width: 74%;
    margin-bottom: 1rem;
}

.category-page .category-btns button {
    width: 190px;
    color: #949494;
    font-size: 18px;
    background-color: #F3F3F3;
    border: none;
    padding: 13px 5px;
    margin-right: 10px;
    transition: 0.5s;
}

.category-page .category-btns button.active {
    background-color: #aac63b;
    color: #fff;
}

.category-page .category-btns button:hover {
    background-color: #aac63b;
    color: #fff;
}

.add_to_cart_button.loading button {
    opacity: 0.5;
}

.add_to_cart_button.loading::before {
    content: '';
    display: flex;
    width: 100%;
    height: 100%;
    background-image: url('../img/loading.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
    position: absolute;
    top: 0;
    opacity: 1;
    margin: 0 auto;
}

.slider-item .add_to_cart_button.loading::before {
    content: '';
    display: flex;
    width: 100%;
    height: 100%;
    background-image: url('../img/loading.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    position: absolute;
    top: 0;
    opacity: 1;
    margin: 0 auto;
}

.woocommerce-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.woocommerce-pagination .page-numbers li {
    margin: 0 5px;
}

.woocommerce-pagination .page-numbers a {
    color: #727272;
    text-decoration: none;
    padding: 2px 10px;
    border-radius: 5px;
}

.woocommerce-pagination .page-numbers a:hover {
    color: rgb(255, 255, 255);
    background-color: #17467d;
}

.woocommerce-pagination .page-numbers span {
    color: rgb(255, 255, 255);
    background-color: #17467d;
    border-radius: 5px;
    padding: 2px 10px;
}

.woocommerce-pagination .page-numbers .next {
    color: #727272;
    text-decoration: none;
    padding: 0;
}

.woocommerce-pagination .page-numbers .next:hover {
    color: #17467d;
    background-color: #ffffff;
}

@media (max-width: 1920px) {
    .category-page {
        padding: 0 3rem;
    }
}

@media (max-width: 1740px) {
    .category-page {
        padding: 0 7rem;
    }
    .category-page .category-title {
        width: 35%;
        font-size: 29px;
    }
    .category-page .category-btns {
        width: auto;
    }
}

@media (max-width: 1550px) {
    .category-page .category-title {
        font-size: 27px;
    }
}

@media (max-width: 1540px) {
    .category-page .category-title {
        font-size: 27px;
    }
}

@media (max-width: 1470px) {
    .category-page .category-title {
        font-size: 24px;
    }
}

@media (max-width: 1370px) {
    .category-page .category-title {
        font-size: 22px;
    }
}

@media (max-width: 1200px) {
    .category-page .category-title {
        width: 100%;
    }
    .category-page .category-btns {
        width: 100%;
    }
}

@media (max-width: 1164px) {
    .category-page .category-btns button {
        width: 140px;
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .category-page {
        padding: 0 1rem;
    }
}

@media (max-width: 670px) {
    .category-page .category-btns {
        flex-wrap: wrap;
    }
    .category-page .category-btns button {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .category-page {
        padding: 0;
    }
}

@media (max-width: 540px) {
    .category-page .category-btns button {
        font-size: 14px;
    }
}

@media (max-width: 373px) {
    .category-page .category-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    .category-page .category-btns button {
        margin-bottom: 10px;
    }
}

/* ___________________shop-page */

.shop-page-top {
    background-image: url('../img/Tips-on-healthy-families.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.shop-page-title, .shop-page, .shop-page-bottom .content-wrap {
    max-width: 1640px;
    margin: 0 auto;
}

.shop-page {
    margin-bottom: 7rem;
}

.shop-page-title .title {
    margin-top: 150px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
}

.shop-page-title .subtitle {
    margin-bottom: 150px;
    font-size: 80px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
}

.shop-page .shop-catalog-menu {
    display: flex;
    flex-wrap: wrap;
    margin-top: -85px;
}

.shop-page .shop-catalog-menu .shop-catalog-item {
    width: 20%;
    display: flex;
    flex-direction: column;
    padding: 75px 1rem;
    justify-content: space-between;
    min-height: 295px;
    /* border: olive 1px solid;
    background-color: orange; */
    position: relative;
}

.shop-page .shop-catalog-menu .shop-catalog-item img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    min-width: 100%;
    max-width: 100%;
}

.shop-page .shop-catalog-menu .shop-catalog-item span {
    font-size: 26px;
    color: #fff;
    width: 57%;
    z-index: 5;
    font-weight: bolder;
}

.shop-page .shop-catalog-menu .shop-catalog-item a {
    font-size: 14px;
    width: 57%;
    padding: 18px 5px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    background: none;
    outline: none;
    color: black;
    mix-blend-mode: screen;
    z-index: 5;
}

.shop-page .shop-catalog-menu .shop-catalog-item a:hover {
    opacity: 0.75;
    text-decoration: none;
}

.shop-page .shop-catalog-menu .shop-catalog-item a::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: white;
    border-radius: 0.3em;
    content: '';
    mix-blend-mode: color-burn;
}

.shop-page-bottom .content-wrap img {
    max-height: 530px;
    object-fit: contain;
    width: 100%;
}

.shop-page-bottom .content .title {
    font-size: 16px;
    text-transform: uppercase;
    color: #17467d;
}

.shop-page-bottom .content .subtitle {
    font-size: 50px;
    color: #000;
    font-weight: bold;
    line-height: 50px;
    margin: 35px 0;
}

.shop-page-bottom .content .info-text {
    color: #242424;
    margin-bottom: 25px;
}

.shop-page-bottom .content a {
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    background-color: #17467d;
    border-radius: 5px;
    text-align: center;
    width: 190px;
    padding: 12px 5px;
}

.shop-page-bottom {
    padding: 120px 0;
}

@media (max-width: 1740px) {
    .shop-page-title, .shop-page, .shop-page-bottom .content-wrap {
        padding: 0 7rem;
    }
}

@media (max-width: 1600px) {
    .shop-page-title .title {
        margin-top: 70px;
        font-size: 18px;
    }
    .shop-page-title .subtitle {
        margin-bottom: 70px;
        font-size: 60px;
    }
    .shop-page .shop-catalog-menu {
        margin-top: -55px;
    }
    /* .shop-page .shop-catalog-menu .shop-catalog-item {
        width: 25%;
    } */
    .shop-page .shop-catalog-menu .shop-catalog-item span {
        font-size: 20px;
    }
    .shop-page .shop-catalog-menu .shop-catalog-item a {
        font-size: 12px;
        padding: 10px 5px;
    }
    .shop-page .shop-catalog-menu .shop-catalog-item {
        padding: 55px 1rem;
        min-height: 245px;
    }
    .shop-page-bottom {
        padding: 80px 0;
    }
}

@media (max-width: 1500px) {
    .shop-page .shop-catalog-menu .shop-catalog-item {
        padding: 50px 1rem;
        min-height: 230px;
    }
    .shop-page-title .subtitle {
        margin-bottom: 70px;
        font-size: 50px;
    }
    .slider-title {
        font-size: 29px;
    }
    .shop-page-bottom .content .subtitle {
        font-size: 40px;
        line-height: 40px;
    }
}

@media (max-width: 1200px) {
    .shop-page .shop-catalog-menu .shop-catalog-item {
        width: 25%;
    }
    .shop-page-title .title {
        margin-top: 50px;
        font-size: 16px;
    }
    .shop-page-title .subtitle {
        margin-bottom: 50px;
        font-size: 40px;
    }
    .shop-page .shop-catalog-menu {
        margin-top: -35px;
    }
    .shop-page .shop-catalog-menu .shop-catalog-item {
        padding: 40px 1rem;
        min-height: 200px;
    }
    .shop-page .shop-catalog-menu .shop-catalog-item span {
        width: 100%;
        font-size: 18px;
        text-align: left;
    }
    .shop-page .shop-catalog-menu .shop-catalog-item a {
        width: 100%;
    }
    .shop-page-bottom .content .subtitle {
        font-size: 35px;
        line-height: 35px;
    }
}

@media (max-width: 790px) {
    .shop-page .shop-catalog-menu .shop-catalog-item {
        width: 33.333%;
    }
    .shop-page .shop-catalog-menu .shop-catalog-item span {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .shop-page-bottom .content a {
        align-self: center;
    }
    .shop-page-bottom {
        padding: 30px 0;
    }
    .shop-page-bottom .content-wrap img {
        margin-bottom: 15px;
    }
}

@media (max-width: 992px) {
    .shop-page-title, .shop-page, .shop-page-bottom .content-wrap {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .shop-page-title, .shop-page, .shop-page-bottom .content-wrap {
        padding: 0;
    }
    .shop-page .shop-catalog-menu .shop-catalog-item {
        width: 50%;
    }
}

@media (max-width: 400px) {
    .shop-page .shop-catalog-menu .shop-catalog-item {
        width: 85%;
    }
    .shop-page .shop-catalog-menu {
        justify-content: center;
    }
    .shop-page .shop-catalog-menu .shop-catalog-item span {
        font-size: 20px;
    }
    .shop-page .shop-catalog-menu .shop-catalog-item a {
        width: 60%;
    }
}

/* _________________price-page */

.price-page {
    max-width: 1640px;
    margin: 0 auto;
}

.price-item:last-child {
    margin-bottom: 3rem;
}

.price-item .price-title-warp.open {
    border: none;
}

.price-page .price-title-warp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 0;
    border-bottom: 1px solid #BCBCBC;
}

.price-page .price-title-warp button {
    background-color: rgba(255, 255, 255, 0);
    border: none;
    transition: 0.5s;
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    transform: rotate(180deg);
    min-width: 30px;
}

.price-page .price-title-warp button img {
    width: 100%;
}

.price-page .price-title-warp .title {
    font-size: 24px;
}

.price-page .price-title-warp button:hover {
    opacity: 0.75;
}

.price-value-wpap {
    overflow: hidden;
    max-height: 0;
    transition: 0.17s;
}

.price-value-wpap.open {
    display: flex;
    flex-direction: column;
    max-height: 1000px;
    /* transition: 0.9s; */
    margin: 2rem 0;
}

@keyframes openPriceBtn {
    0% {
        -moz-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.price-title-warp button.open {
    animation-name: openPriceBtn;
    animation-duration: 0.5s;
    transform: rotate(0deg);
}

.price-value-wpap .price-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F6F6F6;
    padding: 0.7rem 1rem 0.7rem 2rem;
    margin: 2px 0;
}

.price-value-wpap .price-value .btns-wrap span {
    font-size: 18px;
    margin-right: 5px;
}

.price-value-wpap .price-value .btns-wrap a {
    text-transform: uppercase;
    background-color: #17467d;
    border-radius: 5px;
    color: #fff;
    width: 170px;
    padding: 14px 5px;
    text-align: center;
    font-weight: 900;
}

.price-value-wpap .price-value .btns-wrap {
    width: 25%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-value-wpap .price-value .btns-wrap a:hover {
    opacity: 0.75;
    text-decoration: none;
}

@media (max-width: 1740px) {
    .price-page {
        padding: 0 7rem;
    }
}

@media (max-width: 1600px) {
    .price-value-wpap .price-value .btns-wrap {
        width: 32%;
    }
}

@media (max-width: 1500px) {
    .price-page .price-title-warp .title {
        font-size: 22px;
    }
}

@media (max-width: 1355px) {
    .price-value-wpap .price-value .btns-wrap {
        width: 36%;
    }
}

@media (max-width: 1255px) {
    .price-value-wpap .price-value .btns-wrap a {
        width: 130px;
        padding: 10px 5px;
    }
}

@media (max-width: 992px) {
    .price-page {
        padding: 0 1rem;
    }
}

@media (max-width: 900px) {
    .price-value-wpap .price-value .btns-wrap {
        width: 46%;
    }
    .price-value-wpap .price-value .price-subtitle {
        width: 64%;
    }
}

@media (max-width: 576px) {
    .price-page {
        padding: 0;
    }
    .price-value-wpap .price-value .btns-wrap a {
        min-width: 90px;
        max-width: 90px;
        padding: 7px 5px;
        font-size: 12px;
    }
    .price-value-wpap .price-value {
        padding: 0.5rem;
    }
    .price-value-wpap .price-value .btns-wrap span {
        font-size: 12px;
        margin-left: 5px;
    }
}

.pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
}

.pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pagination .nav-links .current {
    color: rgb(255, 255, 255);
    background-color: #17467d;
    border-radius: 5px;
    padding: 2px 10px;
}

.pagination .nav-links .page-numbers {
    margin: 0 5px;
}

.pagination .nav-links .page-numbers:hover {
    color: rgb(255, 255, 255);
    background-color: #17467d;
    border-radius: 5px;
    padding: 2px 10px;
}

.pagination .nav-links .next:hover {
    color: #333333;
    background-color: #fff;
    border-radius: 5px;
    padding: 2px 10px;
}

.pagination .nav-links a {
    color: #727272;
    text-decoration: none;
    padding: 2px 10px;
    border-radius: 5px;
}

/* ______________reviews-page */

.reviews-page, .person-reviews-page {
    max-width: 1640px;
    margin: 0 auto;
}

.reviews-page .title {
    font-size: 24px;
    margin: 40px 0 30px;
}

.review-item {
    display: flex;
}

.review-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    background-color: #F5F5F5;
}

.video-wrap {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.person-reviews-page .review-wrap {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.reviews-page .review-item:nth-child(2n) .review-wrap {
    margin-right: 0.25rem;
}

.reviews-page .review-item:nth-child(2n+1) .review-wrap {
    margin-left: 0.25rem;
}

.review-item img {
    max-width: 260px;
    height: 100%;
    object-fit: cover;
}

.person-reviews-page .review-wrap img {
    min-height: 150px;
    height: 100%;
    width: 40%;
    object-fit: cover;
}

.review-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

.person-reviews-page .review-content {
    height: 100%;
    width: auto;
}

/* .review-content .name {
    font-size: 18px;
    font-weight: bold;
} */

.review-content .name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 27px;
}

.review-item .review-content .review-text, .person-reviews-page .review-text {
    font-size: 14px;
    margin-bottom: 35px;
}

.review-item .review-content a {
    text-transform: uppercase;
    font-size: 16px;
    text-decoration: underline;
    color: #000;
}

.review-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.review-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1740px) {
    .reviews-page, .person-reviews-page {
        padding: 0 7rem;
    }
}

@media (max-width: 1500px) {
    .video-wrap {
        width: 100%;
    }
    .person-reviews-page .review-wrap {
        width: 100%;
    }
}

@media (max-width: 1400px) {
    .reviews-page .review-item img {
        height: 60%;
        object-fit: contain;
        margin-left: 1rem;
    }
}

@media (max-width: 1200px) {
    .reviews-page .review-item .review-wrap {
        flex-direction: column;
    }
    .reviews-page .review-item img {
        height: auto;
        width: 100%;
        object-fit: contain;
        padding-left: 3rem;
        margin-left: 0;
        margin-top: 3rem;
        padding-right: 3rem;
    }
}

@media (max-width: 992px) {
    .reviews-page, .person-reviews-page {
        padding: 0 1rem;
    }
    .reviews-page .review-item img {
        height: auto;
        width: 100%;
        object-fit: contain;
        padding-left: 0;
        margin-top: 0;
        padding-right: 0;
    }
    .person-reviews-page .review-wrap img {
        max-height: 135px;
    }
}

@media (max-width: 768px) {
    .reviews-page .review-item .review-wrap {
        flex-direction: row;
    }
    .reviews-page .review-item:nth-child(2n) .review-wrap {
        margin-right: 0;
    }
    .reviews-page .review-item:nth-child(2n+1) .review-wrap {
        margin-left: 0;
    }
    .person-reviews-page .review-wrap img {
        max-height: 120px;
    }
}

@media (max-width: 576px) {
    .reviews-page, .person-reviews-page {
        padding: 0;
    }
    .reviews-page .review-item .review-wrap, .review-wrap {
        flex-direction: column;
    }
}

/* ______________home-page */

.home-page-top-main {
    position: relative;
}

.home-page-top .home-page-top-text {
    position: absolute;
    bottom: 20%;
    left: 16%;
    z-index: 2;
    /* width: 100%; */
}

.home-page-products-slider {
    background-color: #F5F5F5;
    padding: 7rem 0;
}

.services-block .title, .review-slider, .home-page-products-slider .products-slider {
    max-width: 1920px;
    margin: 0 auto;
}

.services-block .services-list {
    margin: 0 auto;
}

.review-slider {
    max-width: 1920px;
    margin: 0 auto;
}

.services-block {
    background-color: #17467d;
    padding-bottom: 4.5rem;
}

.services-block .title p {
    text-align: center;
    -webkit-text-stroke: 2px #fff;
    color: #17467d;
    font-size: 60px;
    font-weight: bold;
    margin: 3rem 0 3rem;
    padding-left: 4rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .services-block .title p {
        -webkit-text-stroke: 0px #fff;
        color: #fff;
    }
}

.services-block .count-wrap {
    position: relative;
    width: fit-content;
    height: fit-content;
}

.services-block .count-wrap .count {
    -webkit-text-stroke: 1px #fff;
    color: #17467d;
    font-size: 200px;
    font-weight: bold;
    line-height: 200px;
}

.services-list .services-items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 14%;
    min-height: 720px;
}

@media (max-width: 992px) {
    .services-list .services-items {
        margin-right: 7%;
        margin-left: 7%;
    }
}

.services-list .services-items .services-items-content img {
    max-width: 100%;
    object-fit: cover;
    margin-bottom: 15px;
    min-width: 100%;
    height: 85%;
}

.services-list .services-items .services-items-content {
    height: 350px;
}

.services-list .services-items .services-items-content a {
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding: 5px 0;
}

.services-list .services-items .services-items-content a:hover {
    text-decoration: none;
}

.services-list .services-items p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 28px;
}

.services-block .count-wrap .count-title {
    position: absolute;
    font-weight: bold;
    font-size: 26px;
    z-index: 5;
    top: 53%;
    /* position the top  edge of the element at the middle of the parent */
    left: 50%;
    /* position the left edge of the element at the middle of the parent */
    transform: translate(-50%, -50%);
    width: 100%;
    text-transform: uppercase;
}

.review-slider-wrap {
    position: relative;
    padding: 4rem 0;
}

.review-slider-wrap .title-wrap {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: fit-content;
    line-height: 55px;
    margin-bottom: 6rem;
}

.review-slider-wrap .title-wrap .title {
    -webkit-text-stroke: 2px rgb(0, 0, 0);
    color: #ffffff;
    font-size: 72px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .review-slider-wrap .title-wrap .title {
        -webkit-text-stroke: 0px rgb(0, 0, 0);
        color: #000;
    }
}

.title-wrap a:hover {
    text-decoration: none;
}

.review-slider-wrap .title-wrap .title:hover {
    color: #aac63b;
}

.review-slider-wrap .title-wrap .subtitle {
    color: #000;
    font-size: 60px;
    font-weight: bold;
    margin-left: 88px;
    z-index: 10;
}

.review-slider-wrap .green-bcg {
    position: absolute;
    right: 0;
    display: block;
    height: 100%;
    top: 0;
    width: 16.666667%;
}

.review-slider-box {
    z-index: 10;
}

.helper {
    max-width: 1640px;
    margin: 0 auto;
}

.home-page-top .home-page-top-text h1, .home-page-top .home-page-top-text span {
    font-size: 120px;
    font-weight: bold;
    color: #fff;
    line-height: 110px;
    z-index: 2;
}

.home-page-top .home-page-top-text span {
    margin-left: 4rem;
}

.home-page-top img {
    width: 100%;
    object-fit: cover;
    min-height: 100%;
}

.green-bcg {
    background-color: #17467d;
    position: relative;
}

.home-page-products-slider .products-slider .btn-wrpap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-page-products-slider .products-slider .btn-wrpap .title {
    font-size: 32px;
    font-weight: bold;
    width: 60%;
    text-transform: uppercase;
}

.home-page-products-slider .products-slider .btn-wrpap a {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    width: 60%;
    border-radius: 5px;
    padding: 23px 5px;
    background-color: #17467d;
    text-align: center;
    margin-top: 20px;
}

.home-page-top .video-wrap {
    /* width: 50%; */
    width: 1052px;
    height: 685px;
    margin-left: auto;
    margin-right: 7%;
    margin-top: -14%;
    z-index: 1;
}

.home-page-top .review-video-wrap {
    height: 100%;
    padding-bottom: 0;
}

#videoInHomepage {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

#playVideoBtn {
    position: absolute;
    /* margin-left: auto;
    margin-right: auto; */
    /* left: 0;
    right: 0; */
    /* bottom: 40%; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(255, 255, 255, 0);
    border: none;
}

#playVideoBtn .img-wrap {
    position: relative;
    width: 100px;
    height: 100px;
}

#playVideoBtn img {
    position: relative;
    z-index: 11;
    width: 100px;
    height: 100px;
}

#playVideoBtn .img-wrap::before {
    position: absolute;
    display: block;
    content: '';
    background-color: #17467d;
    z-index: 10;
    border-radius: 100%;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

@keyframes hoverPlayBtn {
    0% {
        width: 0%;
        height: 0%;
        bottom: 50%;
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(8deg);
    }
    100% {
        width: 100%;
        height: 100%;
        bottom: 0%;
        transform: rotate(0deg);
    }
}

@keyframes hoverPlayBtnWrap {
    0% {
        transform: rotate(0deg) translate(-50%, -50%);
    }
    100% {
        transform: rotate(360deg) translate(-50%, -50%);
    }
}

#playVideoBtn:hover {
    /* animation-name: hoverPlayBtnWrap; */
    animation-duration: 0.5s;
}

#playVideoBtn:hover .img-wrap::before {
    animation-name: hoverPlayBtn;
    animation-duration: 0.5s;
    width: 100%;
    height: 100%;
}

@keyframes closeBtn {
    0% {
        opacity: 1;
        /* transform: rotate(0deg); */
    }
    100% {
        opacity: 0;
        /* transform: rotate(36deg); */
    }
}

#playVideoBtn.clicked {
    animation-name: closeBtn;
    animation-duration: 0.5s;
}

#playVideoBtn.close {
    display: none;
}

.video-discription {
    background-color: #fff;
    z-index: 20;
    padding: 2.5rem 2rem;
    position: absolute;
    left: -23%;
    /* right: 50%; */
    width: 75%;
    bottom: -17%;
}

.video-discription p {
    line-height: 28px;
    margin-bottom: 20px;
}

.video-discription a {
    color: #17467d;
    text-decoration: underline;
    text-transform: uppercase;
}

.helper-gray-block {
    background-color: #F5F5F5;
    width: 50%;
    min-height: 515px;
    margin-top: -18%;
}

.review-slider .slider-item {
    padding-right: 20px;
}

.review-slider .review-wrap img {
    max-width: 260px;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1830px) {
    .home-page-top .home-page-top-text {
        left: 12%;
    }
    .home-page-top .video-wrap {
        width: 900px;
        height: 600px;
    }
}

@media (max-width: 1750px) {
    .home-page-top .home-page-top-text {
        left: 7%;
    }
}

@media (max-width: 1650px) {
    .home-page-top .home-page-top-text {
        left: 15%;
    }
    .home-page-top .home-page-top-text h1, .home-page-top .home-page-top-text span {
        font-size: 100px;
        line-height: 100px;
    }
    .video-discription {
        padding: 2rem 1.5rem;
        left: -15%;
        width: 75%;
        bottom: -29%;
    }
}

@media (max-width: 1550px) {
    .home-page-top .home-page-top-text h1, .home-page-top .home-page-top-text span {
        font-size: 90px;
        line-height: 80px;
    }
}

@media (max-width: 1500px) {
    .helper-gray-block {
        margin-top: -23%;
    }
    .home .slick-prev {
        right: 24%;
    }
}

@media (max-width: 1400px) {
    .home-page-top .home-page-top-text h1, .home-page-top .home-page-top-text span {
        font-size: 80px;
        line-height: 70px;
    }
}

@media (max-width: 1370px) {
    .home-page-top .video-wrap {
        width: 800px;
        height: 500px;
    }
    .video-discription {
        bottom: -42%;
    }
    .home-page-products-slider .products-slider .btn-wrpap a {
        width: 70%;
    }
    .home-page-products-slider .products-slider .btn-wrpap .title {
        font-size: 28px;
        width: 70%;
    }
}

@media (max-width: 1250px) {
    .home-page-top .home-page-top-text h1, .home-page-top .home-page-top-text span {
        font-size: 70px;
        line-height: 60px;
    }
}

@media (max-width: 1200px) {
    .video-discription {
        left: 0%;
        width: 100%;
        bottom: -44%;
    }
    .services-block .title p {
        padding-left: 2rem;
    }
    .home-page-products-slider {
        padding: 4rem 0;
    }
}

@media (max-width: 1100px) {
    .home-page-top .home-page-top-text {
        left: 19%;
    }
    .home-page-top .home-page-top-text h1, .home-page-top .home-page-top-text span {
        font-size: 60px;
        line-height: 50px;
    }
    .home-page-top .video-wrap {
        margin-right: 4%;
    }
}

@media (max-width: 1000px) {
    .home-page-top .home-page-top-text {
        left: 50%;
        transform: translate(-50%, 0);
    }
    .home-page-top .home-page-top-text h1, .home-page-top .home-page-top-text span {
        white-space: nowrap;
    }
    .home-page-top .video-wrap {
        margin-right: 2%;
    }
    .home-page-products-slider .products-slider .btn-wrpap a {
        width: 90%;
    }
    .home-page-products-slider .products-slider .btn-wrpap .title {
        font-size: 28px;
        width: 90%;
    }
    .services-block .title p {
        font-size: 50px;
    }
    .review-slider .slider-item {
        padding-right: 0px;
    }
}

@media (max-width: 991px) {
    .green-bcg, .review-slider-wrap .green-bcg, .right-block {
        display: none;
    }
    .helper-gray-block {
        background-color: #fff;
        margin-top: 0;
        min-height: 255px;
    }
    .video-discription {
        position: relative;
        bottom: 0;
        left: 0;
        padding: 2rem 0rem;
    }
    .home-page-top .video-wrap {
        margin-right: auto;
    }
    .row {
        margin-right: 0px;
        margin-left: 0px;
    }
    /* .services-list .services-items {
        margin-right: 0;
        flex-direction: row;
        margin-bottom: 60px;
    } */
    /* .services-list .services-items .services-items-content {
        min-width: 330px;
        margin-left: 30px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: flex-start;
    } */
    .services-list .services-items p {
        margin-bottom: 0px;
    }
    .slider-in-home .slider-item .slider-item-content {
        padding: 0 7px;
    }
    .home .slick-next {
        right: 14%;
    }
    .review-slider-wrap .title-wrap .title {
        font-size: 5rem;
        width: 100%;
    }
    .review-slider-wrap .title-wrap .subtitle {
        font-size: 7vw;
        margin-left: 0;
        padding-left: 6%;
        width: 100%;
        white-space: nowrap;
    }
}

@media (max-width: 900px) {
    .home-page-top .video-wrap {
        width: 630px;
        height: 400px;
    }
}

@media (max-width: 870px) {
    .home-page-top .home-page-top-text h1, .home-page-top .home-page-top-text span {
        font-size: 50px;
        line-height: 40px;
    }
    .home-page-products-slider .products-slider .btn-wrpap a {
        width: 100%;
    }
    .home-page-products-slider .products-slider .btn-wrpap .title {
        width: 100%;
    }
    .services-block .title p {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .home-page-products-slider .products-slider .btn-wrpap a {
        width: 100%;
        max-width: 350px;
        text-align: center;
    }
    .home-page-products-slider .products-slider .btn-wrpap .title {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 750px) {
    .services-list .services-items {
        flex-direction: column;
    }
    /* .services-list .services-items .services-items-content {
        min-width: 330px;
        margin-left: 0px;
    } */
    .services-list .services-items p {
        margin-bottom: 30px;
    }
}

@media (max-width: 700px) {
    .home-page-top .home-page-top-text h1, .home-page-top .home-page-top-text span {
        font-size: 40px;
        line-height: 30px;
    }
    .home-page-top .video-wrap {
        width: 80%;
        height: auto;
    }
    #videoInHomepage {
        max-width: 100%;
    }
    /* #playVideoBtn {
        bottom: 65%;
    } */
    .helper-gray-block {
        display: none;
    }
    .services-block .title p {
        font-size: 30px;
    }
    #playVideoBtn {
        top: 23%;
    }
}

/* @media (max-width: 620px) {
    .services-list .services-items {
        margin-right: 0%;
    }
} */

@media (max-width: 600px) {}

@media (max-width: 570px) {
    .home-page-top .home-page-top-text h1, .home-page-top .home-page-top-text span {
        font-size: 30px;
        line-height: 20px;
    }
    .review-slider-wrap .title-wrap .title {
        font-size: 9vw;
    }
    .review-slider-wrap .title-wrap {
        line-height: 40px;
    }
}

@media (max-width: 500px) {
    .home-page-top .video-wrap {
        width: 90%;
    }
    .services-block .title p {
        font-size: 27px;
    }
    .home-page-products-slider .products-slider .btn-wrpap a {
        max-width: 235px;
    }
}

@media (max-width: 450px) {
    #playVideoBtn img {
        width: 60px;
        height: 60px;
    }
    #playVideoBtn .img-wrap {
        width: 60px;
        height: 60px;
    }
    #playVideoBtn {
        top: 18%;
    }
    .home-page-top .home-page-top-text h1, .home-page-top .home-page-top-text span {
        font-size: 27px;
    }
    .home-page-products-slider .products-slider .btn-wrpap .title {
        font-size: 24px;
    }
    .review-slider-wrap .title-wrap .title {
        font-size: 12vw;
    }
}

@media (max-width: 400px) {
    .home-page-top .home-page-top-text span {
        margin-left: 0rem;
    }
}

/* @media (max-width: 380px) {
    #playVideoBtn {
        bottom: 77%;
    }
}

@media (max-width: 350px) {
    #playVideoBtn {
        bottom: 80%;
    }
} */

/* ________________________________service-page */

.service-page-top .front-img {
    width: 100%;
    object-fit: cover;
    margin-top: 5px;
    display: table-header-group;
    max-height: 760px;
}

.service-page-top-main {
    position: relative;
}

.service-page-top .service-page-top-text {
    position: relative;
    /* top: 43px; */
    /* left: 20%; */
    z-index: 2;
}

.service-page-top .service-page-top-text {
    max-width: 1060px;
    margin-right: 0;
    margin-left: auto;
}

@media (max-width: 1740px) {
    .service-page-top .service-page-top-text {
        padding-left: 7rem;
        padding-right: 7rem;
    }
}

@media (max-width: 992px) {
    .service-page-top .service-page-top-text {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.service-page-top-text .title {
    font-size: 100px;
    font-weight: bold;
    -webkit-text-stroke: 2px #17467d;
    color: #fff;
}

@media (max-width: 768px) {
    .service-page-top-text .title {
        -webkit-text-stroke: 0px #17467d;
        color: #17467d;
    }
}

.service-page-top-text .subtitle {
    font-size: 80px;
    font-weight: bold;
    color: #fff;
    padding-left: 20%;
    position: absolute;
}

.service-page-top-main .discription {
    width: 100%;
    background-color: #F5F5F5;
    padding-left: 15%;
}

.service-page-top-main .discription-wrap {
    width: 60%;
    background-color: #fff;
    z-index: 55;
    position: relative;
    padding: 2.5rem 2rem;
    margin-top: -9%
}

.service-page-top-main .discription-wrap p {
    line-height: 28px;
}

.service-page-top-main .discription-wrap a, .service-page-top-main .discription-main .discription-text a {
    font-size: 18px;
    font-weight: bold;
    background-color: #aac63b;
    color: #fff;
    text-transform: uppercase;
    padding: 17px 22px;
    border-radius: 5px;
    display: block;
    width: fit-content;
    margin-top: 55px;
}

.service-page-top-main .discription-wrap a:hover, .service-page-top-main .discription-main .discription-text a:hover {
    opacity: 0.75;
    text-decoration: none;
}

.service-page-top-main .discription-main .discription-text {
    padding-right: 25px;
}

.service-page-top-main .discription-main .img-block {
    min-width: 60%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-page-top-main .discription-main .img-block .main-img {
    width: 90%;
    object-fit: contain;
}

.service-page-top-main .discription-main {
    padding-bottom: 2%;
    padding-top: 5%;
}

.service-page-top-main .discription-main .img-block .helper-img {
    bottom: -50%;
    margin-right: 30px;
    margin-left: auto;
    width: 63%;
    object-fit: contain;
    margin-top: -90px;
}

.service-page-top-main .discription-main .discription-text h2 {
    font-size: 40px;
    font-weight: bold;
    color: #AAAAAA;
    line-height: 55px;
    margin-bottom: 40px;
}

.service-page-top-main .discription-main .discription-text p {
    line-height: 28px;
}

.review-slider-wrap .helper-wrap {
    width: 86%;
    margin-left: 7%;
}

.services-page .review-slider-wrap {
    background-color: #F5F5F5;
}

.services-page .review-wrap {
    background-color: #fff;
}

.services-page .review-slider-wrap .title-wrap .title {
    color: #F5F5F5;
}

.services-page .slider-wrap {
    max-width: 1640px;
    margin: 30px auto 0;
}

.other-service-box {
    padding: 4rem 0;
}

.other-service-box .title {
    -webkit-text-stroke: 2px rgb(0, 0, 0);
    color: #ffffff;
    font-size: 72px;
    font-weight: bold;
    margin-left: 15%;
    margin-bottom: 4rem;
}

.other-service-box .other-service {
    color: #000;
    font-size: 60px;
    font-weight: bold;
    margin-left: 15%;
}

.other-service-box .other-service:hover {
    text-decoration: none;
    opacity: 0.5;
}

.slider-wrap .title-link {
    color: #aac63b;
    margin: 0 auto 60px;
    display: block;
    width: fit-content;
}

.slider-wrap .title-link:hover {
    opacity: 0.75;
}

.page-wrap .main-container {
    position: relative;
}

.page-wrap .main-page-title {
    /* position: absolute;
    right: -1480px; */
    /* top: 40%; */
    font-size: 110px;
    font-weight: bold;
    -webkit-text-stroke: 2px #fff;
    color: #17467d;
    transform: rotate(90deg);
    white-space: nowrap;
}

.service-list-block {
    width: calc(50% - 8px);
}

.service-list-block img {
    width: 100%;
    object-fit: cover;
    min-height: 590px;
    margin-bottom: 45px;
}

.service-list-block .name {
    font-size: 26px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
    margin-left: 30px;
}

.service-list-block:nth-child(2n+1) {
    margin-top: -25%;
    margin-right: 16px;
}

.service-list-block .text {
    margin-bottom: 50px;
    margin-left: 30px;
}

.service-list-block a {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #aac63b;
    text-transform: uppercase;
    display: block;
    padding: 15px 20px;
    margin-bottom: 17%;
    width: fit-content;
    border-radius: 5px;
    margin-left: 30px;
}

.service-list-block a:hover {
    opacity: 0.75;
    text-decoration: none;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    padding-top: 20%;
    max-width: 1088px;
    margin: 0 auto;
}

.service-list-page-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 85px;
    margin: 30px 0;
}

.service-list-page-titles .title {
    -webkit-text-stroke: 2px #17467d;
    color: #fff;
    font-size: 100px;
    font-weight: bold;
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .service-list-page-titles .title {
        -webkit-text-stroke: 0px #17467d;
        color: #17467d;
    }
}

.service-list-page-titles .subtitle {
    color: #000;
    font-size: 80px;
    font-weight: bold;
    margin-left: 20%;
    text-transform: capitalize;
}

@media (max-width: 1800px) {
    .page-wrap.main-page-title {
        font-size: 109px;
    }
}

@media (max-width: 1740px) {
    .services-page .slider-wrap {
        padding: 0 7rem;
    }
    /* .service-page-top .service-page-top-text {
        left: 15%;
    } */
}

@media (max-width: 1600px) {
    .page-wrap .main-page-title {
        right: -1507px;
    }
    .service-list {
        padding-top: 25%;
    }
}

@media (max-width: 1550px) {
    .service-page-top-text .title {
        font-size: 90px;
    }
    .service-page-top-text .subtitle {
        font-size: 70px;
    }
    .service-page-top-main .discription-wrap {
        width: 80%;
    }
    .other-service-box .title {
        font-size: 62px;
        margin-bottom: 3rem;
    }
    .other-service-box .other-service {
        font-size: 50px;
    }
    .page-wrap .main-page-title {
        font-size: 106px;
        right: -1458px;
    }
    .service-list-page-titles .title {
        font-size: 85px;
    }
    .service-list-page-titles .subtitle {
        font-size: 70px;
    }
    .service-list {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    /* .service-page-top .front-img {
        margin-top: 140px;
    } */
}

@media (max-width: 1350px) {
    .service-page-top-text .title {
        font-size: 80px;
    }
    .service-page-top-text .subtitle {
        font-size: 60px;
    }
    /* .service-page-top .service-page-top-text {
        top: 15px;
    } */
    /* .service-page-top .front-img {
        margin-top: 100px;
    } */
    .page-wrap .main-page-title {
        font-size: 106px;
        right: -1478px;
    }
}

@media (max-width: 1199px) {
    .service-page-top-main .discription {
        padding-left: 5%;
    }
    .services-page .review-slider-wrap .helper-wrap {
        width: 100%;
        margin-left: 0;
    }
    .service-page-top-main .discription-main .img-block {
        min-width: 45%;
    }
    .services-page .review-slider-wrap .title-wrap {
        margin-left: 10%;
    }
    .other-service-box .title {
        margin-left: 5%;
    }
    .other-service-box .other-service {
        margin-left: 5%;
    }
    .page-wrap .main-page-title {
        display: none;
    }
}

@media (max-width: 1100px) {
    /* .service-page-top .service-page-top-text {
        left: 10%;
    } */
    .services-page .review-slider-wrap .title-wrap {
        margin-left: 4%;
    }
}

@media (max-width: 992px) {
    .services-page .slider-wrap {
        padding: 0 1rem;
    }
    /* .service-page-top .service-page-top-text {
        left: 13%;
    } */
    .services-page .review-slider-wrap .title-wrap {
        margin-left: auto;
    }
    .other-service-box .title {
        font-size: 5rem;
        margin-bottom: 2rem;
    }
    .other-service-box .other-service {
        font-size: 7vw;
    }
    .service-page-top-text .title {
        font-size: 9vw;
    }
    .service-page-top-text .subtitle {
        font-size: 7vw;
    }
}

@media (max-width: 850px) {
    /* .service-page-top .front-img {
        margin-top: 90px;
    } */
    .discription-main {
        flex-direction: column;
    }
    .service-page-top-main .discription-main .img-block .main-img {
        width: 100%;
        object-fit: contain;
    }
    .service-page-top-main .discription {
        padding-right: 5%;
    }
    .service-page-top-main .discription-main .img-block .helper-img {
        width: 50%;
        margin-right: 20px;
        margin-top: -137px;
    }
    .service-list-page-titles .title {
        font-size: 75px;
    }
    .service-list-page-titles .subtitle {
        font-size: 60px;
    }
    .service-list-page-titles {
        line-height: 64px;
    }
}

@media (max-width: 760px) {
    .service-list-block {
        width: 100%
    }
    .service-list-block:nth-child(2n+1) {
        margin-top: 0;
        margin-right: 0px;
    }
    .service-list {
        padding-top: 0%;
    }
}

@media (max-width: 750px) {
    /* .service-page-top .front-img {
        margin-top: 70px;
    } */
    .service-page-top-main .discription-wrap {
        width: 100%;
        margin-top: -4%;
    }
}

@media (max-width: 650px) {
    .other-service-box .title {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
    .other-service-box .other-service {
        font-size: 6vw;
    }
    .other-service-box {
        padding: 2rem 0;
    }
}

@media (max-width: 600px) {
    /* .service-page-top .front-img {
        margin-top: 60px;
    } */
}

@media (max-width: 576px) {
    .services-page .slider-wrap {
        padding: 0;
    }
    .service-list {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (max-width: 515px) {
    /* .service-page-top .front-img {
        margin-top: 50px;
    } */
}

@media (max-width: 500px) {
    .other-service-box .title {
        font-size: 10vw;
        margin-bottom: 1rem;
    }
    .service-page-top-main .discription-main .discription-text h2 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .service-page-top-main .discription-wrap a, .service-page-top-main .discription-main .discription-text a {
        font-size: 16px;
    }
    /* .service-page-top .service-page-top-text {
        left: auto;
    } */
    .service-page-top-text .title {
        text-align: center;
    }
}

@media (max-width: 427px) {
    /* .service-page-top .front-img {
        margin-top: 45px;
    } */
}

@media (max-width: 370px) {
    /* .service-page-top .front-img {
        margin-top: 35px;
    } */
}

/* ___________________cart-page */

.cart-page {
    max-width: 1920px;
    margin: 0 auto;
    background-color: #EEEEEE;
    padding-bottom: 2rem;
}

.cart-list-wrapper {
    max-width: 1364px;
    margin: 0 auto;
}

.product-thumbnail {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.product-thumbnail a {
    min-width: 100%;
    display: block;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 204px;
}

.product-thumbnail .product-name {
    margin: 0 1.5rem;
}

.cart-list-wrapper .product-name a {
    font-weight: 14px;
    color: #000;
    font-weight: bold;
}

.cart-list-wrapper .product-name a:hover {
    text-decoration: none;
}

.woocommerce-cart-form .product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: fit-content;
}

.woocommerce-cart-form .product-price del, .product-subtotal del {
    font-size: 18px;
}

.woocommerce-cart-form .product-price ins, .product-subtotal ins {
    font-size: 18px;
    color: #FF4E00;
    text-decoration: none;
    margin-right: 15px;
    font-weight: bold;
}

.woocommerce-cart-form bdi {
    margin-right: 15px;
}

.product-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
}

.cart-item-row .row {
    display: flex;
    align-items: center;
}

.product-subtotal .product-remove a {
    font-size: 14px;
    color: #FF4E00;
}

.product-subtotal .product-remove a:hover {
    text-decoration: none;
}

.cart-product-quantity {
    display: flex;
    align-items: center;
}

.cart-product-quantity .quantity-select {
    width: 50%;
}

.cart-header-titles p {
    font-size: 14px;
}

.cart-header-titles {
    padding-bottom: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #C8C8C8;
}

.cart-total-row {
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #C8C8C8;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.cart-total-row strong bdi {
    color: #FF4E00;
    margin-left: 15px;
    font-weight: bold;
}

.cart-item-row {
    margin-bottom: 1rem;
}

.cart-total-row {
    margin-right: 0;
}

.cart-total-row p {
    font-size: 18px;
}

.cart-total-row span {
    font-size: 20px;
}

.wc-proceed-to-checkout {
    display: flex;
    justify-content: flex-end;
}

.wc-proceed-to-checkout a button, .return-to-shop a button {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 5px;
    background-color: #aac63b;
    padding: 25px;
    border: none;
    transition: 0.5s;
}

.return-to-shop a button {
    padding: 15px;
    margin: 20px auto 0;
}

.empty-cart-wrapper .title {
    text-align: center;
}

.wc-proceed-to-checkout a button:hover, .return-to-shop a button:hover {
    text-decoration: none;
    opacity: 0.75;
}

.wc-proceed-to-checkout a:hover, .return-to-shop a:hover {
    text-decoration: none;
    opacity: 0.75;
}

.product-subtotal .d-flex {
    flex-wrap: wrap;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield;
    /* Firefox */
}

.woocommerce-cart-form .cart-total-row bdi {
    margin-right: 0px;
}

.woocommerce-billing-fields__field-wrapper input {
    background-color: #bcbcbc00;
    border: none;
    border-bottom: 1px solid #ABABAB;
    border-radius: 0;
}

.woocommerce-billing-fields title {
    font-size: 18px;
}

#customer_details {
    background-color: #EEEEEE;
    margin-left: -15px;
}

[type="radio"]:checked, [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked+label, [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

[type="radio"]:checked+label:before, [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #707070;
    border-radius: 100%;
    background: #EEEEEE;
}

[type="radio"]:checked+label:after, [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 20px;
    height: 20px;
    background: #17467d;
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

#shipping_method .select2-selection {
    background-color: #bcbcbc00;
    border: none;
    border-bottom: 1px solid #ABABAB;
    border-radius: 0;
}

#shipping_method .select2 {
    width: 100%!important;
}

#shipping_method .woocommerce-input-wrapper {
    width: 100%;
}

#customer_details .form-row.validate-required, #customer_details .wc_payment_method {
    margin-top: 1.5rem;
}

#customer_details .form-row.validate-required {
    margin-left: 1.6rem;
}

#customer_details .person-info input::placeholder {
    font-size: 16px;
}

#customer_details .person-info .title, .woocommerce-checkout-review-order-table .title, .woocommerce-checkout-payment .title {
    font-size: 18px;
}

.woocommerce-checkout-review-order-table .title, .woocommerce-checkout-payment .title {
    margin-top: 2rem;
}

.person-info .form-row {
    margin-left: 0rem!important;
}

#shipping_method li {
    margin-top: 1.5rem;
}

#customer_details .wc_payment_method label {
    display: flex;
    align-items: center;
}

#customer_details .wc_payment_method label img {
    margin-left: 15px;
}

#customer_details .person-info .woocommerce-input-wrapper {
    width: 100%;
}

.form-control:focus {
    color: #495057;
    background-color: rgba(255, 255, 255, 0);
    border-color: #ABABAB;
    outline: 0;
    box-shadow: none;
}

.form-control {
    padding-left: 0;
}

#customer_details .back-to-cart {
    font-size: 16px;
    color: #8F8F8F;
    transition: 0.5s;
}

#customer_details .back-to-cart:hover {
    text-decoration: none;
    color: #4e4e4e;
}

#customer_details .place-order button {
    background-color: #17467d;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 18px;
    width: 260px;
    padding: 23px 5px;
    border: none;
    border-radius: 5px;
    transition: 0.5s;
}

#customer_details .place-order button:hover {
    opacity: 0.75;
}

#customer_details .place-order {
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customer_details-wrap {
    max-width: 805px;
    margin-right: 0;
    margin-left: auto;
    padding: 3rem 0;
}

.cart-collaterals {
    max-width: 805px;
    margin-left: 0;
    margin-right: auto;
    padding: 3rem 0;
}

.form-row {
    margin-right: 0px;
    margin-left: 0px;
}

.breadcrumbs-wrap {
    max-width: 1640px;
    margin: 0 auto;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}

#order_review .product-info-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
}

#order_review .product-thumbnail img {
    max-height: 105px;
    min-height: 85px;
}

#order_review .woocommerce-cart-form .product-price ins, .product-subtotal ins, #order_review .product-subtotal {
    font-weight: 900;
    color: black;
}

#order_review .cart-total-row {
    flex-direction: row;
}

#order_review .cart-total-row div:first-child {
    font-weight: 900;
    font-size: 18px;
}

#order_review .cart-total-row del bdi {
    color: #7B7B7B;
}

#customer_details {
    padding-right: 0;
}

#order_review .cart-total-row del bdi {
    color: #7B7B7B;
}

.checkout-page .woocommerce .woocommerce-order {
    max-width: 1640px;
    margin: 0 auto;
}

.checkout-page .woocommerce .order_details li {
    margin-top: 1rem;
}

.checkout-page .woocommerce .page-title {
    font-size: 24px;
}

.checkout-page .woocommerce .title {
    color: #333333;
}

.checkout-page .woocommerce .violet {
    background-color: #aac63b;
    color: #fff;
    text-transform: uppercase;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    transition: 0.5s;
}

.checkout-page .woocommerce .violet:hover {
    opacity: 0.75;
}

@media (max-width: 1740px) {
    .customer_details-wrap {
        padding-left: 7rem;
    }
    .cart-collaterals {
        padding-right: 7rem;
    }
    .breadcrumbs-wrap {
        padding-left: 7rem;
        padding-right: 7rem;
    }
    .checkout-page .woocommerce .woocommerce-order {
        padding: 0 7rem;
    }
}

@media (max-width: 1500px) {
    .customer_details-wrap {
        padding-left: 6rem;
    }
    .cart-collaterals {
        padding-right: 6rem;
    }
    .checkout-page .breadcrumbs-wrap {
        padding-left: 5rem;
        padding-right: 5rem;
    }
    #customer_details .place-order {
        width: 100%;
        justify-content: flex-start;
    }
    #customer_details .place-order button {
        margin-left: 13%;
        padding: 15px 5px;
        width: 200px;
    }
}

@media (max-width: 992px) {
    .customer_details-wrap {
        padding-right: 0rem;
        padding-left: 0rem;
    }
    .checkout-page .breadcrumbs-wrap {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .checkout-page .woocommerce .woocommerce-order, .checkout-page .woocommerce .order_details, .checkout-page .woocommerce form {
        padding: 0 1rem;
    }
    .cart-collaterals {
        padding-right: 0rem;
        padding-left: 0rem;
    }
    .breadcrumbs-wrap {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .checkout-page .container-fluid:first-child {
        padding-left: 0;
        padding-right: 0;
    }
    .checkout-page .container-fluid:first-child .col-lg-12 {
        padding-left: 0;
        padding-right: 0;
    }
    .customer_details-wrap {
        margin-left: 0;
    }
    #customer_details .col-lg-7, #customer_details .col-lg-6 {
        padding: 0;
    }
    #customer_details .person-info .woocommerce-input-wrapper {
        width: 75%;
    }
    #shipping_method .select2 {
        width: 75%!important;
    }
}

@media (max-width: 767px) {
    .woocommerce-cart-form .product-price{
        display: none;
    }
}

@media (max-width: 576px) {
    .customer_details-wrap {
        padding-left: 0rem;
    }
    .cart-collaterals {
        padding-right: 0rem;
    }
    /* .breadcrumbs-wrap {
        padding: 0rem;
    } */
}

@media (max-width: 1200px) {
    .cart-product-quantity .quantity-select {
        width: 100%;
    }
}

@media (max-width: 1100px) {
    .product-thumbnail img {
        min-height: 150px;
    }
}

@media (max-width: 992px) {
    .woocommerce-cart-form bdi {
        font-size: 16px;
    }
    .woocommerce-cart-form .product-price ins, .product-subtotal ins {
        font-size: 16px;
    }
    #customer_details {
        margin-left: 0px;
    }
}

@media (max-width: 767px) {
    .product-thumbnail a {
        min-width: 25%;
        display: block;
    }
    .cart-product-quantity .quantity-select {
        width: 100%;
    }
    .cart-header-titles {
        display: none;
    }
    #order_review .cart-total-row div:first-child {
        white-space: nowrap;
        font-size: 16px;
    }
    #order_review .cart-total-row div:last-child {
        text-align: end;
    }
    .product-thumbnail img {
        min-height: 80px;
    }
    .woocommerce-cart-form bdi {
        margin-right: 5px;
    }
    .woocommerce-cart-form .product-price ins, .product-subtotal ins {
        margin-right: 0px;
    }
    .product-subtotal .d-flex{
        margin: 0 auto;
    }
}

@media (max-width: 510px) {
    .wc-proceed-to-checkout a button {
        font-size: 14px;
        padding: 15px;
    }
    #customer_details .place-order button {
        margin-left: 20px;
        padding: 10px 5px;
        width: 150px;
        font-size: 16px;
    }
    .payment_method_liqpay img {
        display: none;
    }
    .product-subtotal .product-remove a span{
        background-color: #FF4E00;
        height: 3px;
        width: 25px;
        display: block;
        border-radius: 2px;
    }
    .product-subtotal .product-remove a span:first-child{
        transform: rotate(42deg) translate(0px, 2px);
    }
    .product-subtotal .product-remove a span:last-child{
        transform: rotate(-42deg) translate(0px, -2px);
    }
}

/* ______________contact-page-wrap */

.contact-page-wrap {
    max-width: 1640px;
    margin: 0 auto 2rem;
}

.contact-page-wrap .title span {
    font-size: 24px;
}

.contact-page-wrap .title {
    margin: 2rem 0;
}

.contact-page-wrap .contact-us {
    background-color: #F2F2F2;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-page-wrap .contact-us .title {
    font-size: 20px;
    margin: 0;
}

.contact-page-wrap .contact-us .soc-contact {
    display: flex;
    margin: 1.5rem 0;
    justify-content: center;
}

.contact-page-wrap .contact-us .soc-contact li {
    margin: 0 10px;
}

.contact-page-wrap .contact-us .info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-page-wrap .contact-us .info .subtitle {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.contact-page-wrap .contact-us .info .text {
    text-align: center;
}

.contact-page-wrap .contact-us .info .phone {
    font-size: 24px;
    color: #000;
    margin-top: 1rem;
}

.contact-page-wrap .contact-us .info .phone:hover {
    text-decoration: none;
}

.contact-page-wrap .adress-wrap {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
}

.contact-page-wrap .adress-wrap .adress {
    padding: 1rem 0;
    border-bottom: 1px solid #707070;
    color: #7B7B7B;
}

.contact-page-wrap .adress-wrap .adress:last-child {
    border-bottom: none;
}

.contact-page-wrap .adress-wrap .adress {
    display: flex;
    flex-direction: column;
}

.contact-page-wrap .adress-wrap .adress .phone {
    font-weight: bold;
    color: #7B7B7B;
    text-align: center;
}

.contact-page-wrap .adress-wrap .adress .phone:hover {
    text-decoration: none;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

@media (max-width: 1740px) {
    .contact-page-wrap {
        padding: 0 7rem;
    }
}

@media (max-width: 992px) {
    .contact-page-wrap {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .contact-page-wrap .contact-page-block {
        display: flex;
    }
}

@media (max-width: 576px) {
    .contact-page-wrap .contact-page-block {
        flex-direction: column;
    }
}

/* ____________price-item-page */

.price-item-page .top {
    padding-top: 1rem;
}

.price-item-page .breadcrumbs-wrap {
    margin-right: 0;
    margin-left: auto;
    max-width: 1437px;
}

.price-item-page .img-wrap img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 0;
    margin-top: auto;
}

.price-item-page .img-wrap {
    display: flex;
    align-items: flex-end;
}

.price-item-page .top {
    background-color: #aac63b;
}

.price-item-page .top .img-wrap img {
    max-height: 740px;
}

.price-item-page .title, .price-item-page .text, .price-item-page .links, .price-item-page .personal-list, .personal-block .subtitle {
    max-width: 1300px;
    margin-right: 0;
    margin-left: auto;
}

.price-item-page .title {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.price-item-page .title p {
    -webkit-text-stroke: 2px #fff;
    color: #17467d;
    font-size: 100px;
    font-weight: bold;
    line-height: 120px;
}

@media (max-width: 768px) {
    .price-item-page .title p {
        -webkit-text-stroke: 0px #fff;
        color: #fff;
    }
}

.price-item-page .title h1 {
    color: #ffffff;
    font-size: 100px;
    font-weight: bold;
    width: 70%;
    text-align: end;
}

.price-item-page .top .text p {
    width: 70%;
    margin-top: 1.5rem;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.price-item-page .text {
    margin-bottom: 2rem;
}

.price-item-page .info-block {
    background-color: #E9E9E9;
    padding-top: 3rem;
}

.price-item-page .info-block .text p {
    width: 70%;
    font-size: 18px;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    line-height: 28px;
}

.price-item-page .info-block .links {
    display: flex;
    flex-direction: column;
    margin-bottom: 4.5rem;
    margin-top: 2rem;
}

.price-item-page .info-block .links a {
    -webkit-text-stroke: 2px #17467d;
    color: #E9E9E9;
    font-size: 65px;
    font-weight: bold;
    line-height: 70px;
    position: relative;
    background-color: #E9E9E9;
    z-index: 3;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .price-item-page .info-block .links a {
        -webkit-text-stroke: 0px #17467d;
        color: #17467d;
    }
}

.price-item-page .info-block .links a::before {
    display: none;
    content: '';
    background-image: url('../img/Icon-awesome-arrow-right.svg');
    width: 75px;
    height: 75px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: -8%;
    z-index: 1;
}

.price-item-page .info-block .links a:hover {
    text-decoration: none;
}

@keyframes displayIcon {
    0% {
        transform: translate(0px, 0px);
    }
    25% {
        transform: translate(-15px, 0px);
    }
    50% {
        transform: translate(-30px, 0px);
    }
    75% {
        transform: translate(-15px, 0px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes displayIconMin {
    0% {
        transform: rotate(180deg) translate(0px, 0px);
    }
    25% {
        transform: rotate(180deg) translate(-15px, 0px);
    }
    50% {
        transform: rotate(180deg) translate(-30px, 0px);
    }
    75% {
        transform: rotate(180deg) translate(-15px, 0px);
    }
    100% {
        transform: rotate(180deg) translate(0px, 0px);
    }
}

.price-item-page .info-block .links a:hover::before {
    animation-name: displayIcon;
    animation-duration: 0.5s;
    display: block;
}

@media (max-width: 768px) {
    .price-item-page .info-block .links a:hover::before {
        opacity: 0;
    }
}

.price-item-page .info-block .img-wrap img {
    max-height: 690px;
}

.right-block {
    position: sticky;
    overflow: hidden;
    display: flex;
    justify-content: center;
    height: 100vh;
    right: 0;
    top: 0;
}

.right-block span, .right-block p {
    /* transform: rotate(90deg);  */
    transform: rotate(90deg) translate(30%, 0px);
    white-space: nowrap;
    position: absolute;
    justify-content: center;
    align-items: center;
    -webkit-text-stroke: 2px #17467d;
    color: #fff;
    font-size: 100px;
    font-weight: bold;
    line-height: 120px;
    /* height: 130%; */
}

.right-block p {
    -webkit-text-stroke: 2px #ffffff;
    color: #aac63b;
}

.right-block .second {
    display: flex;
    top: 0px;
    animation-name: slideText;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

/* .right-block span.first{
    display: none;
    top: 0;
    animation-name: slideText2;
    animation-duration: 32s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 17s;
} */

/* .right-block .marquee1{
    animation: slideText 50s linear infinite
}
.right-block .marquee2{
    animation: slideText 50s linear 18s infinite 
}
.right-block .marquee3{
    animation: slideText 50s linear 36s infinite
} */

@keyframes slideText {
    0% {
        transform: rotate(90deg) translate(50%, 0px);
        opacity: 1;
    }
    100% {
        transform: rotate(90deg) translate(-72%, 0px);
    }
    /* 0% {
        transform: rotate(90deg) translate(30%, 0px);
        opacity: 1;
    }
    64% {
        transform: rotate(90deg) translate(-72%, 0px);
        opacity: 1;
    }
    64.1% {
        opacity: 0;
    }
    66% {
        transform: rotate(90deg) translate(72%, 0px);
        opacity: 0;
    }
    66.1% {
        opacity: 1;
    }
    100% {
        transform: rotate(90deg) translate(30%, 0px);
    } */
}

/* @keyframes slideText2 {
    0% {
        transform: rotate(90deg) translate(-100%, 0px);
        display: flex;
    }
    100% {
        transform: rotate(90deg) translate(100%, 0px);
    }
} */

.personal-block {
    background-color: #aac63b;
    /* padding-top: 25%; */
    padding-bottom: 4rem;
}

.personal-block .subtitle {
    font-size: 100px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.36;
    font-weight: 900;
    white-space: nowrap;
    margin-bottom: 25%;
    margin-top: 0;
    margin-right: 30px;
    padding-top: 1.5rem;
}

.personal-block .personal-list {
    display: flex;
    flex-wrap: wrap;
    padding-right: 10%;
}

.personal-block .personal-list img {
    width: 100%;
    height: 618px;
    object-fit: cover;
}

.personal-block .personal-list-block:nth-child(2n+1) {
    margin-top: -25%;
    margin-right: 16px;
}

.personal-list-block {
    width: calc(50% - 8px);
}

.personal-list-block .name {
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 24px;
    margin-top: 2rem;
    margin-left: 5%;
}

.personal-list-block .person-info {
    color: #fff;
    margin-left: 5%;
    margin-top: 0.5rem;
    margin-bottom: 4rem;
}

.price-item-page .review-slider-wrap .title-wrap {
    margin: 0;
    margin-bottom: 6rem;
}

.price-item-page .review-slider-wrap .title-wrap .title {
    margin-left: 0;
    margin-right: auto;
}

.price-item-page .review-slider-wrap {
    max-width: 1425px;
    margin-right: 3%;
    margin-left: auto;
}

.price-item-page .review-slider-wrap .helper-wrap {
    width: 100%;
    margin-left: 0;
}

@media (max-width: 1740px) {
    .price-item-page .title, .price-item-page .text, .price-item-page .links, .price-item-page .personal-list {
        padding-left: 9rem;
    }
    .price-item-page .review-slider-wrap {
        padding-left: 7rem;
    }
    .price-item-page .review-slider-wrap .title-wrap .title {
        padding-left: 0;
    }
    .personal-block .subtitle {
        width: fit-content;
    }
}

@media (max-width: 1500px) {
    .price-item-page .review-slider-wrap {
        padding-left: 4rem;
    }
    .price-item-page .title p {
        font-size: 80px;
        line-height: 100px;
    }
    .price-item-page .title h1 {
        font-size: 80px;
    }
    .price-item-page .top .text p {
        font-size: 16px;
    }
    .right-block span {
        font-size: 80px;
        line-height: 100px;
    }
    .personal-block .personal-list img {
        height: 518px;
    }
    .price-item-page .info-block .links a {
        font-size: 57px;
        line-height: 62px;
    }
    .personal-block .subtitle {
        font-size: 80px;
        margin-right: auto;
    }
}

@media (max-width: 1199px) {
    .price-item-page .top .text p {
        width: 80%;
    }
    .price-item-page .info-block .text p {
        width: 80%;
    }
    .personal-block .subtitle {
        font-size: 70px;
    }
}

@media (max-width: 992px) {
    .personal-block .subtitle {
        font-size: 60px;
        margin-bottom: 28%;
    }
    .green-bcg, .review-slider-wrap .green-bcg, .right-block {
        display: none;
    }
    .price-item-page .title, .price-item-page .text, .price-item-page .links, .price-item-page .personal-list, .price-item-page .review-slider-wrap {
        padding: 0 1.5rem;
    }
    .price-item-page .info-block .links a {
        width: fit-content;
    }
    .price-item-page .info-block .links a::before {
        right: -83px;
        left: auto;
        transform: rotate(180deg);
    }
    .price-item-page .info-block .links a:hover::before {
        animation-name: displayIconMin;
        animation-duration: 0.5s;
        display: block;
    }
    .price-item-page .top .text p {
        width: 98%;
    }
    .price-item-page .info-block .text p {
        width: 98%;
    }
    /* .personal-block {
        padding-top: 30%;
    } */
    .price-item-page .title h1 {
        width: 94%;
    }
}

@media (max-width: 768px) {
    .personal-block .personal-list img {
        height: 350px;
    }
    .price-item-page .info-block .links a {
        font-size: 50px;
        line-height: 55px;
    }
    .price-item-page .info-block .links a::before {
        width: 50px;
        height: 50px;
        right: -58px;
        top: 12px;
        /* position the top  edge of the element at the middle of the parent */
    }
    .personal-block .subtitle {
        font-size: 50px;
        margin-bottom: 28%;
    }
}

@media (max-width: 650px) {
    .personal-list-block {
        width: 100%;
    }
    .personal-block .personal-list-block:nth-child(2n+1) {
        margin-top: 0;
        margin-right: 0px;
    }
    /* .personal-block {
        padding-top: 5%;
    } */
    .personal-block .personal-list img {
        height: 518px;
    }
    .price-item-page .title p {
        font-size: 60px;
        line-height: 80px;
    }
    .price-item-page .title h1 {
        font-size: 60px;
    }
    .personal-block .subtitle {
        font-size: 40px;
        margin-bottom: 5%;
    }
}

@media (max-width: 550px) {
    .price-item-page .info-block .links a {
        font-size: 40px;
        line-height: 45px;
    }
    .price-item-page .info-block .links a::before {
        width: 30px;
        height: 30px;
        right: -38px;
        top: 16px;
        /* position the top  edge of the element at the middle of the parent */
    }
    .personal-block .subtitle {
        font-size: 35px;
        text-align: center;
        white-space: pre-wrap;
    }
}

@media (max-width: 450px) {
    .price-item-page .info-block .links a {
        font-size: 30px;
        line-height: 35px;
    }
    .price-item-page .info-block .links a::before {
        width: 30px;
        height: 30px;
        right: -38px;
        top: 10px;
        /* position the top  edge of the element at the middle of the parent */
    }
    .price-item-page .title p {
        font-size: 50px;
        line-height: 70px;
    }
    .price-item-page .title h1 {
        font-size: 50px;
    }
}

@media (max-width: 400px) {
    .personal-block .personal-list img {
        height: 318px;
    }
}

.service-page-top .breadcrumbs-wrap {
    max-width: 1440px;
    margin-right: 0;
    margin-left: auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.wpcf7 form .wpcf7-response-output {
    color: #fff!important;
}

footer .your-tel {
    font-size: 19px!important;
}

#modalWithPrice .modal-dialog .modal-content, #modalOrderService .modal-dialog .modal-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

#modalWithPrice .modal-dialog .modal-content .form-btn, #modalOrderService .modal-dialog .modal-content .form-btn {
    text-transform: uppercase;
    background-color: #17467d;
    border-radius: 5px;
    color: #fff;
    width: 170px;
    padding: 14px 8px;
    text-align: center;
    font-weight: 900;
    border: none;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

#modalWithPrice .modal-dialog .modal-content input, #modalOrderService .modal-dialog .modal-content input {
    background-color: #bcbcbc00;
    border: 1px solid #ABABAB;
    border-radius: 0;
    height: 50px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 1rem;
}

#modalWithPrice .modal-dialog .modal-content form, #modalOrderService .modal-dialog .modal-content form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#modalWithPrice .modal-dialog .modal-content input::placeholder, #modalOrderService .modal-dialog .modal-content input::placeholder {
    text-align: center;
    color: #ABABAB;
}

#modalWithPrice .modal-dialog .modal-content .btn-close, #modalOrderService .modal-dialog .modal-content .btn-close {
    position: absolute;
    right: 15px;
    top: 15px;
    background-color: rgba(255, 255, 255, 0);
    border: none;
    height: fit-content;
    padding: 0;
}

#modalWithPrice .modal-dialog .modal-content .btn-close img, #modalOrderService .modal-dialog .modal-content .btn-close img {
    opacity: 0.65;
    height: 23px;
}

#modalWithPrice .modal-dialog .modal-content .title, #modalOrderService .modal-dialog .modal-content .title {
    font-size: 25px;
    margin-bottom: 17%;
    margin-top: 1.5rem;
}

.woocommerce-order .order-text {
    margin-top: 2rem;
}

.woocommerce-order .order-text p {
    font-size: 24px;
    font-weight: bold;
}

#primary {
    max-width: 1640px;
    margin: 0 auto;
}

#primary .entry-title {
    -webkit-text-stroke: 2px #17467d;
    color: #fff;
    font-size: 60px;
    font-weight: bold;
    margin: 30px 0 55px;
}

@media (max-width: 768px) {
    #primary .entry-title {
        -webkit-text-stroke: 0px #17467d;
        color: #17467d;
    }
}

#primary p {
    line-height: 24px;
}

#primary .entry-content {
    margin-bottom: 30px;
}

@media (max-width: 1740px) {
    #primary {
        padding: 0 7rem;
    }
}

@media (max-width: 992px) {
    #primary {
        padding: 0 1rem;
    }
    #primary .entry-title {
        font-size: 50px;
        margin: 20px 0 35px;
    }
}

@media (max-width: 576px) {
    .shop-page-title, .shop-page {
        padding: 0;
    }
    #primary .entry-title {
        font-size: 30px;
        margin: 20px 0 35px;
    }
}

.error-404 .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    margin: 3rem 0;
}

.error-404 .return-home a {
    text-transform: uppercase;
    background-color: #17467d;
    border-radius: 5px;
    color: #fff;
    padding: 14px;
    text-align: center;
    font-weight: 900;
    border: none;
}

#primary p {
    line-height: 28px;
}

.error-404 .return-home {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.error-404 .return-home a:hover {
    opacity: 0.75;
    text-decoration: none;
}

.wpcf7 form .wpcf7-response-output {
    color: #aac63b;
}

.add_to_cart_button.added img {
    display: none;
}

.add_to_cart_button.added button:after {
    right: auto!important;
    top: auto!important;
}

#product-to-card::after {
    display: none;
}

#single-product-add-cart.added #product-to-card{
    opacity: 0.5;
}

/* .shop-page-title, .shop-page {
    max-width: 1640px;
    margin: 0 auto;
}

@media (max-width: 1740px) {
    .shop-page-title, .shop-page {
        padding: 0 7rem;
    }
}
@media (max-width: 992px) {
    .shop-page-title, .shop-page {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .shop-page-title, .shop-page {
        padding: 0;
    }
} */