.main-slider {
    width: 100%;
    max-height: 601px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.main-slider .slide {
    width: 100%;
    height: 100%;
    background-image: var(--bg-url);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.slide-content {
    max-width: 1304px;
    width: 100%;
    height: 601px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #FBFBFB;
}
.slide-title {
    width: 100%;
    margin-top: 140px;
    margin-bottom: 30px;
    color: #FBFBFB;
}
.main-slider .swiper-pagination {
    display: flex;
    position: absolute;
    bottom: 17%;
    left: 40px;
    transform: none;
}
.main-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #FFFFFF66;
}
.main-slider .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background: #FBFBFB;
}

.main-slider-container {
    position: absolute;
    max-width: 1304px;
    width: 100%;
    height: 40px;
    padding-left: 40px;
    padding-right: 40px;
    left: 50%;
    bottom: 105px;
    transform: translateX(-50%);
}

@media (max-width: 1040px) {
    .main-slider .swiper-pagination {
        left: 24px;
    }
}

@media (max-width: 768px) {
    .swiper-container.main-slider .slide {
        background-image: var(--bg-url-mobile, var(--bg-url));
    }
    .slide-content {
        height: 584px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .slide-title {
        max-width: 100%;
        width: 100%;
        margin-top: 76px;
    }
}


.why-choose-us {
    padding: 120px 0;
}
.why-choose-us__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}
.why-choose-us__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.why-choose-us__right {
    max-width: 392px;
    width: 100%;
}
.why-choose-us__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.why-choose-us__item {
    border: 1px solid #BECBD4;
    border-radius: 20px;
    padding: 30px;
}
.why-choose-us__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 50px;
    background-color: #E6F2FA;
    border-radius: 50%;
}
.why-choose-us__icon img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.why-choose-us__item-title {
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    .why-choose-us__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    .why-choose-us__left {
        gap: 16px;
    }
    .why-choose-us__right {
        margin-top: 24px;
    }
    .why-choose-us__items {
        gap: 16px;
    }
    .why-choose-us__item {
        border: 1px solid #BECBD4;
        border-radius: 12px;
        padding: 20px;
    }
}

.our-products {
    padding: 120px 0 110px;
    background: #E6F2FA;
}
.our-products__header {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}
.our-products__header-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.our-products__header-right {
    max-width: 392px;
    width: 100%;
}
.our-products__slider {
    padding: 20px 0;
    margin-top: 40px;
    position: relative;
}

.our-products__item-price ins{
    text-decoration: none;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}
.our-products__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 30px;
    background: #FBFBFB;
    border-radius: 20px;
    position: relative;
    bottom: 0;
    transition: all 0.3s;
}
.our-products__item:hover {
    bottom: 10px;
}
.our-products__item-image {
    display: flex;
    margin-bottom: 20px;
}
.our-products__item-image img {
    max-width: 100%;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
}
.our-products__item-title {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 123%;
    font-weight: 700;
    text-align: center;
    color: #181818;
}
.our-products__item-desc {
    max-width: 70%;
    margin: 0 auto 20px;
    font-size: 14px;
    line-height: 122%;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.our-products__item-footer {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}
.our-products__item-footer-price {
    display: flex;
    flex-direction: column;
	width: 108px;
}
.our-products__item-footer-price-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    max-width: 108px;
    width: 100%;
    height: 47px;
    padding: 12px 25px;
    background: #FFFFFF;
    border: 1px solid #005EB8;
    border-radius: 100px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
    color: #005EB8;
    transition: all 0.3s;
}
.our-products__item-footer-price-link:hover {
    background: #FFFFFF;
    border: 1px solid #005EB8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    border-radius: 100px;
}
.our-products__item-footer > form > button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    max-width: 216px;
    width: 100%;
    height: 47px;
    margin-top: 16px;
    padding: 12px 50px;
    background: #005EB8;
    border: none;
    outline: none;
    border-radius: 100px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF;
    transition: all 0.3s;
}
.our-products__item-footer > form > button:hover {
    background: #0270D9;
}

#products-grid > ul > div > div > form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 212px;
	width: 212px;
}
#products-grid > ul > div > div > form > select {
    max-width: max-content;
}
.our-products__item-price {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: #005EB8;
}
.variations_form .button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    max-width: 216px;
    width: 100%;
    height: 47px;
    margin-top: 16px;
    padding: 12px 50px;
    background: #005EB8;
    border: none;
    outline: none;
    border-radius: 100px;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF;
    transition: all 0.3s;
}
.variations_form .button:hover {
    background: #0270D9;
}
.variations_form select option:checked {
    color: #005EB8;
}
.variations_form select:focus {
    outline: none;
}
.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select select {
    width: 100%;
    padding: 0 23px 0 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #333333;
    text-align: right;
    cursor: pointer;
}
.custom-select__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 0;
    width: 11px;
    height: 5px;
    pointer-events: none;
    transform: translateY(-50%) rotate(0deg);
    transition: transform .2s ease;
}
.custom-select.open .custom-select__icon {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select select option {
    padding: 2px 0;
    background: #FFFFFF;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: #333333;
}
.custom-select select:focus {
    outline: none;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: #005EB8;
}



.our-products__see-all-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
.our-products__nav {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    width: 100%;
    position: relative;
    top: auto;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}
.our-products-button-prev,
.our-products-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #FBFBFB;
    border-radius: 50%;
    border: none;
    pointer-events: all;
    cursor: pointer;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .our-products {
        padding: 60px 0 50px;
    }
    .our-products__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    .our-products__header-left {
        gap: 16px;
    }
    .our-products__header-right {
        margin-top: 24px;
    }
    .our-products__slider {
        margin-top: 40px;
        position: relative;
    }
    .our-products__item {
        padding: 20px;
        border-radius: 12px;
    }
    .our-products__item-image img {
        max-width: 100%;
        width: 100%;
        height: 172px;
        object-fit: cover;
    }
    .our-products__item-price {
        margin-bottom: 12px;
    }
    .our-products__item-desc {
        max-width: 70%;
        margin: 0 auto 10px;
    }
    .our-products__see-all-wrap {
        margin-top: 30px;
    }
    .our-products__nav {
        gap: 20px;
    }
    .our-products-button-prev, .our-products-button-next {
        width: 42px;
        height: 42px;
    }
}



.customer-reviews {
    padding: 120px 0;
    background: #005EB8;
    color: #FBFBFB;
}
.customer-reviews__heading {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}
.customer-reviews__heading-left {
    display: flex;
    flex-direction: column;
}
.customer-reviews__heading-right {
    max-width: 392px;
    width: 100%;
}
.customer-reviews__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.customer-reviews__meta__stars {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
}
.customer-reviews__meta__stars svg {
    width: 17px;
    height: 17px;
}
.customer-reviews__logo {
    display: flex;
    max-width: 109px;
    height: 17px;
}
.customer-reviews__logo svg {
    display: flex;
    max-width: 109px;
    width: 100%;
    height: 17px;
    object-fit: contain;
}
.customer-reviews__rating {
    font-size: 14px;
    line-height: 123%;
    font-weight: 400;
}
.customer-reviews__count {
    font-size: 14px;
    line-height: 123%;
    font-weight: 400;
}
.customer-reviews__title {
    color: #FBFBFB;
}
.customer-reviews__desc {
    max-width: 392px;
    color: #FBFBFB;
}
.customer-reviews__slider {
    position: relative;
    overflow: hidden;
}
.review-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 40px 30px 30px;
    border: 1px solid #BECBD4;
    border-radius: 20px;
    box-sizing: border-box;
}
.review-slide__stars {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4px;
    height: 25px;
}
.review-slide__text {
    flex-grow: 1;
    margin: 17px 0 20px;
    font-size: 18px;
    line-height: 123%;
}
.review-slide__name {
    line-height: 123%;
}
.customer-reviews__counter {
    font-size: 26px;
    line-height: 123%;
    font-weight: 700;
    color: #BECBD4;
}
.customer-reviews-navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
.customer-reviews__nav {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    width: 100%;
    position: relative;
    top: auto;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}
.customer-reviews-button-prev,
.customer-reviews-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #FBFBFB;
    border-radius: 50%;
    pointer-events: all;
    cursor: pointer;
    transition: all 0.3s;
}

.customer-reviews-button-prev:hover,
.customer-reviews-button-next:hover {
    background: #E6F2FA;
}

@media (max-width: 768px) {
    .customer-reviews {
        padding: 60px 0;
    }
    .customer-reviews__heading {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    .customer-reviews__heading-left {
        gap: 24px;
    }
    .customer-reviews__heading-right {
        margin-top: 24px;
    }
    .customer-reviews__meta {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 0;
    }
    .customer-reviews__logo {
        max-width: 100%;
        width: 100%;
        height: 17px;
    }
    .review-slide {
        padding: 20px 22px 20px 20px;
        border-radius: 12px;
    }
    .customer-reviews-navigation {
        margin-top: 20px;
    }
    .customer-reviews__counter {
        font-size: 20px;
    }
    .customer-reviews__nav {
        gap: 20px;
    }
    .customer-reviews-button-prev,
    .customer-reviews-button-next {
        width: 42px;
        height: 42px;
    }
}


.about-tirzamed {
    background: #E6F2FA;
    padding: 120px 0;
}
.about-tirzamed__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}
.about-tirzamed__title {
    margin-top: 20px;
}
.about-tirzamed__description {
    max-width: 392px;
}
.about-tirzamed__item {
    display: flex;
    align-items: center;
    gap: 104px;
    margin-bottom: 24px;
    padding: 49px 50px;
    border: 1px solid #BECBD4;
    border-radius: 20px;
}
.about-tirzamed__item.is-reverse {
    flex-direction: row-reverse;
}
.about-tirzamed__item:last-child {
    margin-bottom: 0;
}
.about-tirzamed__img-wrap {
    flex: 0 0 50%;
    max-width: 550px;
}
.about-tirzamed__img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.about-tirzamed__content {
    flex: 1;
    max-width: 470px;
    width: 100%;
}
.about-tirzamed__item-title {
    margin-bottom: 20px;
}
.about-tirzamed__item-text {
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .about-tirzamed {
        padding: 60px 0;
    }
    .about-tirzamed__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    .about-tirzamed__header-right {
        margin-top: 24px;
    }
    .about-tirzamed__title {
        margin-top: 16px;
    }
    .about-tirzamed__item {
        flex-direction: column-reverse;
        gap: 30px;
        margin-bottom: 60px;
        padding: 0;
        border: none;
    }
    .about-tirzamed__item.is-reverse {
        flex-direction: column-reverse;
    }
    .about-tirzamed__content {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }
    .about-tirzamed__item-text {
        margin-bottom: 30px;
    }
    .about-tirzamed__img-wrap {
        flex: 1;
        max-width: 100%;
    }
}


.why-zphc {
    padding: 120px 0;
}
.why-zphc__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.why-zphc__text {
    max-width: 446px;
}
.why-zphc__title {
    margin-top: 20px;
    margin-bottom: 40px;
}
.why-zphc__content {
    margin-bottom: 30px;
}
.why-zphc__image-wrap {
    display: flex;
    max-width: 600px;
}
.why-zphc__image-wrap img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .why-zphc {
        padding: 60px 0;
    }
    .why-zphc__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 60px;
        margin-bottom: 0;
    }
    .why-zphc__title {
        margin-top: 18px;
        margin-bottom: 24px;
    }
}




.lab-tested {
    padding: 120px 0;
    background: #005EB8;
    color: #FBFBFB;
}
.lab-tested__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    color: #FBFBFB;
}
.lab-tested__title {
    margin-top: 20px;
    color: #FBFBFB;
}
.lab-tested__header-right {
    max-width: 392px;
}
.lab-tested__description {
    color: #FBFBFB;
}
.lab-tested__item {
    max-width: 100%;
    width: 100%;
    min-height: 507px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}
.lab-tested__nav {
    display: none;
    justify-content: flex-end;
    gap: 24px;
    width: 100%;
    position: relative;
    top: auto;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}
.lab-tested-button-prev,
.lab-tested-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #FBFBFB;
    border-radius: 50%;
    border: 1px solid #ccc;
    pointer-events: all;
    cursor: pointer;
}

@media (max-width: 768px) {
    .lab-tested {
        padding: 60px 0;
    }
    .lab-tested__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }
    .lab-tested__header-left {
        gap: 24px;
    }
    .lab-tested__header-right {
        margin-top: 0;
    }
    .lab-tested__title {
        margin-top: 16px;
    }
    .lab-tested__item {
        min-height: 423px;
        border-radius: 12px;
    }
    .lab-tested__nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-top: 20px;
    }
    .lab-tested-button-prev,
    .lab-tested-button-next {
        width: 42px;
        height: 42px;
    }
}


.faq {
    padding: 120px 0;
}
.faq .container {
    display: flex;
    flex-direction: row;
    gap: 48px;
}
.faq__header {
    margin-bottom: 60px;
}
.faq__title {
    margin-top: 20px;
    margin-bottom: 30px;
}
.faq__description {

}
.faq__items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 808px;
    width: 100%;
}
.faq__item {
    border: 1px solid #BECBD4;
    border-radius: 20px;
    overflow: hidden;
}
.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 20px 19px 30px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}
.faq__question-text {
    flex: 1;
    text-align: left;
    font-size: 18px;
    line-height: 50px;
    font-weight: 700;
}
.faq__toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #005be0;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    text-align: center;
    color: #FBFBFB;
    position: relative;
    transition: transform 0.3s ease;
}
.faq__item .faq__toggle-plus,
.faq__item .faq__toggle-minus {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq__item .faq__toggle-plus {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
}
.faq__item .faq__toggle-minus {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.faq__item.is-open .faq__toggle-plus {
    opacity: 0;
    visibility: hidden;
}
.faq__item.is-open .faq__toggle-minus {
    opacity: 1;
    visibility: visible;
}
.faq__answer-wrapper {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}
.faq__item.is-open .faq__question {
    padding: 20px 20px 19px 30px;
    align-items: flex-start;
}
.faq__answer {
    padding: 0 90px 20px 30px;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    .faq .container {
        flex-direction: column;
        gap: 40px;
    }
    .faq__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 0;
    }
    .faq__items {
        gap: 16px;
    }
    .faq__item {
        border-radius: 12px;
    }
    .faq__item.is-open .faq__question {
        padding: 16px 20px;
    }
    .faq__question {
        gap: 10px;
        padding: 15px 20px;
    }
    .faq__title {
        margin-top: 16px;
        margin-bottom: 24px;
    }
    .faq__answer {
        padding: 4px 20px 16px 20px;
    }
    .faq__answer p {
        font-size: 14px;
    }
    .faq__toggle {
        width: 42px;
        height: 42px;
    }
}


.contact-us {
    padding: 120px 0 122px;
    background: #E6F2FA;
}
.contact-us__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
}
.contact-us__header-left {
    max-width: 300px;
    width: 100%;
}
.contact-us__title {
    margin-top: 20px;
    margin-bottom: 30px;
}
.contact-us__description {
    margin-top: 0.5rem;
}
.contact-us__header-right {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 808px;
    width: 100%;
}
.contact-us__header-right-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.contact-us__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 72px;
    border: 1px solid #BECBD4;
    border-radius: 20px;
    transition: all 0.3s;
}

.contact-us__icon:hover {
    border: 1px solid #333333;
}

.contact-us__icon img {
    width: 40px;
    height: 40px;
}
.contact-us__email {
    padding: 49px 60px;
    font-size: 18px;
    font-weight: 400;
}
.contact-us__email a {
    font-weight: 700;
    text-decoration: none;
    color: #333333;
    padding-left: 8px;
}
.contact-us__form-title {
    margin-bottom: 30px;
}
.contact-us__form {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    color: #333333;
}
.contact-us-form-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 24px;
    max-width: 100%;
    width: 100%;
    color: #333333;
}
.contact-us-form-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
    width: 100%;
}
.contact-us__form label {
    font-size: 18px;
    font-weight: 400;
}
.contact-us__form input {
    padding: 18px;
    background: transparent;
    border: 1px solid #BECBD4;
    border-radius: 100px;
    outline: none;
}
.contact-us__form input:active,
.contact-us__form input:focus-visible {
    background: transparent;
    border: 1px solid #949494;
}
.contact-us__form button {
    display: flex;
    max-width: max-content;
    width: 100%;
    padding: 19px 30px;
    background: #FBFBFB;
    border: 1px solid transparent;
    outline: none;
    border-radius: 100px;
    font-size: 18px;
    line-height: 123%;
    font-weight: 600;
    color: #181818;
    transition: all 0.3s;
}
.contact-us__form button:hover {
    background: transparent;
    border: 1px solid #333333;
}
.contact-us__thanks {
    margin-top: 1rem;
    color: #005EB8;
    font-weight: 700;
}

@media (max-width: 768px) {
    .contact-us {
        padding: 60px 0;
    }
    .contact-us__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        margin-bottom: 0;
    }
    .contact-us__title {
        margin-top: 16px;
        margin-bottom: 24px;
    }
    .contact-us__header-right {
        gap: 40px;
    }
    .contact-us__header-right-social {
        gap: 16px;
    }
    .contact-us__icon {
        padding: 30px 57px;
        border-radius: 12px;
    }
    .contact-us__email {
        max-width: 100%;
        width: 100%;
        padding: 39px 42px;
    }
    .contact-us__form {
        flex-direction: column;
        gap: 16px;
    }
    .contact-us__form-title {
        display: none;
    }
    .contact-us__form button {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 14px;
        padding: 14px 20px;
        align-self: start;
        max-width: 100%;
        width: 100%;
    }
    .contact-us-form-row {
        flex-direction: column;
        gap: 16px;
    }

    .faq__question-text{
        line-height: 21.6px;
    }
    .our-products__item:hover {
        bottom: 0;
    }
	.our-products__item-footer-price {
		width: 88px;
	}
	#products-grid > ul > div > div > form{
		max-width: 202px;
    	width: 202px;
	}
}

@media (max-width: 360px) {
    .our-products__item-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    .our-products__item-footer-price {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        max-width: 100%;
        width: 100%;
    }
    #products-grid > ul > div > div > form {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        width: 100%;
    }
    .our-products__item-price {
        margin-bottom: 0;
    }
    .our-products__item-footer .select2-container .select2-selection--single .select2-selection__rendered {
        padding: 0 30px 0 0 !important;
        border: none !important;
        border-radius: 0 !important;
        font-size: 16px;
        line-height: 22px;
        font-weight: 700;
        color: #333333;
        text-align: left!important;
        transition: all 0.3s;
    }
    .shop-filter .dropdown-toggle, .shop-sort .dropdown-toggle {
        min-width: 250px!important;
        width: 100%;
    }
}