* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
    outline: none;
    color: inherit;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Tahoma", sans-serif;
    font-size: 16px;
    background-color: #fff;
}

.container {
    width: 1400px;
    margin: 0 auto;
}

/* Application modal */
.application-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1000;
    top: 0;
    left: 0;
}

.application__input {
    padding: 10px 15px;
    border: 1px solid #eee;
    color: #000;
    margin-bottom: 10px;
}

.application-modal__content {
    background-color: #fff;
    padding: 15px 30px;
    display: flex;
    flex-direction: column;
}

.application-modal__control-box {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.application-modal__close-btn {
    background: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.application-modal__title {
    text-align: center;
    color: #8da293;
}

.application__image {
    display: flex;
    justify-content: center;
}

.application__params {
    display: flex;
    width: 100%;
    align-items: center;
}

.application__param {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 10px;
    width: 50%;
}

.application__param:nth-child(2) {
    justify-content: flex-end;
}

.application__amount {
    display: block;
    background-color: #8da293;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.application-modal__btn {
    margin-top: 20px;
    background-color: #8da293;
    color: #fff;
    text-align: center;
    padding: 15px 30px;
    cursor: pointer;
}

.application__amount:after {
    content: ' рублей'
}

.application-param__title {
    font-size: 14px;
    color: grey;
}

.application__form {
    display: flex;
    flex-direction: column;
}

/* effects */
.application-modal__btn:hover {
    background-color: #5e7364;
}

.application__input:focus {
    border: 1px solid #8da293;
}

/* Up Button */
.up-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    z-index: 800;
    opacity: 0;
}

/* Header */
.header {
    height: 200px;
    position: relative;
}

.header > .container {
    display: flex;
    height: 100%;
    position: relative;
}

.header:after {
    content: url('../assets/header/header.bg_right.png');
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    display: block;
}

.header__left {
    width: 60%;
    display: flex;
    align-items: center;
    gap: 20px;
    background: url('../assets/header/header.bg_left.png') left  no-repeat;
    background-size: 100%;
}

.header-left__box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-left__text {
    font-size: 11px;
    line-height: 15px;
    color: #787878;
    display: block;
    max-width: 260px;
}

.header-left__image-wrapper img {
    max-width: 230px;
    max-height: 130px;
}

.header__right {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.header__image-links-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__image-link img {
    max-width: 39px;
    max-height: 39px;
}

.header__text-links-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header__text-link {
    font-size: 16px;
    color: #b0b0b0;
}

.header__phone-link {
    font-size: clamp(24px, 1vw, 48px);
    color: #8da293;
    white-space: nowrap;
}

.header__cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.header-cart__image-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #8da293;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-cart__amount {
    font-size: 12px;
    color: #8da293;
    font-weight: bold;
}

.header-cart__amount:after {
    content: ' р.';
}

/* effects */
.header__email-link:hover {
    color: #969696;
}

.header__phone-link:hover {
    color: #5e7364;
}

.header__cart:hover .header-cart__image-box {
    background-color: #5e7364;
}

.header__cart:hover .header-cart__amount {
    color: #5e7364;
}
/* Nav */

.nav {
    background-color: #8da293;
    height: 57px;
}

.nav > .container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav .nav-list {
    display: flex;
    align-items: center;
    list-style-type: none;
    justify-content: center;
}

.nav__search-btn {
    cursor: pointer;
    background: none;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
}

.nav-list__el {
    width: 168px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}

.nav-list__link {
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Georgia", serif;
    text-align: center;
}

.nav__search-box {
    display: none;
    width: 100%;
    justify-content: flex-end;
    margin-right: 70px;
}

.nav__search {
    width: 30%;
    height: 100%;
    padding: 10px 15px;
}

/* effects */
.nav-list__el:nth-child(n+6) {
    display: none;
}

.nav-list__el:hover {
    background-color: #fff;
    color: #8da293;
}

.nav-list__el.active {
    background-color: #fff;
    color: #8da293;
    position: relative;
}

.nav-list__el.active:after {
    content: '';
    width: 100%;
    height: 4px;
    background-color: #8da293;
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0;
    z-index: 10;
}

.nav__mobile-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
}

/* Main */

.main {
    position: relative;
}

.main__slider-wrapper {
    background-color: #f1f1f1;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.main-slider {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-slider__control-box {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slider__control-box > .main-slider__control {
    background: none;
    cursor: pointer;
}

.main-slider__control-box > .main-slider__control img {
    width: 80%;
    display: block;
    object-fit: contain;
}

.main-slider__content {
    width: 80%;
}

.main-slide__wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slide__right img {
    width: 100%;
    object-fit: contain;
}

.main-slide__title {
    font-size: clamp(32px, 32px + 5vw, 111px);
    color: #8da293;
    font-weight: 400;
}

.main-slide__subtitle {
    width: 80%;
    color: #ffffff;
    background-color: #8da293;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: clamp(18px, 18px + 3vw, 26px);
}

.main__additional-controls .container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    margin-top: -60px;
}

.main-slider-pagination {
    position: static !important;
    width: auto !important;
}

.swiper-pagination-bullet-active {
    background-color: #8da293;
}

.modal-btn {
    border-radius: 35px;
    background-color: #8da293;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: right;
    cursor: pointer;
    gap: 15px;
    font-size: 17px;
    color: #ffffff;
}

.main .modal-btn {
    width: 402px;
    height: 61px;
}

.main:after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #f3f3f3;
    display: block;
    position: absolute;
    left: 0;
    bottom: 25px;
    z-index: -1;
}

/* effects */

.modal-btn:hover {
    background-color: #5e7364;
}

/* Features */
.features {
    margin-top: 80px;
}

.features > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature {
    width: 300px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.feature__image {
    width: 60%;
    height: 70%;
    display: flex;
    align-items: center;
}

.feature__image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.feature__text {
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #8da293;
}

/* Content Templates */

.content-wrapper {
    margin-top: 160px;
}

.content-head {
    position: relative;
    border-bottom: 3px solid #8da293;
    padding-bottom: 30px;
}

.content-head:after {
    content: url('../assets/catalog/catalog.decoration.png');
    position: absolute;
    right: 0;
    bottom: -55px;
}

.content__title {
    font-size: 169px;
    line-height: 0;
    text-transform: uppercase;
    color: #f2f2f2;
    z-index: -1;
}

.content__subtitle {
    font-size: 48px;
    color: #8da293;
    text-transform: capitalize;
    margin-left: 40px;
    margin-top: 20px;
    font-weight: 400;
}

.content-body {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.content__text {
    font-size: 16px;
    color: #7d7d7d;
    text-align: justify;
}

/* Catalog */
.products .content-body {
    display: block;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card-wrapper {
    border: 1px solid #e0e0e0;
}

.buy-one-click-btn {
    font-size: 14px;
    color: #fff;
    width: 100%;
    height: 50px;
    background-color: #8da293;
    margin-top: 10px;
    text-align: center;
    cursor: pointer;
}

.product-card__head {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-top: 30px;
    height: 56px;
}

.product-tag {
    background-color: #8da293;
    height: 44px;
    width: 142px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: #fff;
}

.product-price {
    font-size: 30px;
    line-height: 18px;
    color: #5b5b5b;
    position: relative;
    padding-right: 20px;
}

.product-price__actually {
    display: block;
    color: #dc0000;
    margin: 10px 0;
}

.product-price__actually:after {
    content: '₽';
    margin-left: 10px;
}

.product-price__old {
    font-size: 18px;
    line-height: 18px;
    text-decoration: line-through;
    color: #5b5b5b;
    font-family: "Tahoma";
    text-align: right;
    display: block;
    margin-right: 30px;
}

.product-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-text {
    padding: 20px 10px;
    font-size: 18px;
    line-height: 18px;
    color: #8da293;
    height: 76px;
    display: block;
    overflow: hidden;
}

.product-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 15px 20px;
    gap: 10px;
}

.product-quantity {
    display: flex;
    width: 150px;
    height: 46px;
    border-radius: 23px;
    background-color: #ffffff;
    border: 1px solid #dfdfdf;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-size: 14px;
    color: #535353;
}

.product-quantity__control-box {
    width: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-quantity__value-box {
    height: 100%;
    width: 90px;
    border-left: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-quantity__control {
    width: 100%;
    height: 100%;
}

.product-quantity__control, .cart-btn {
    background: none;
    cursor: pointer;
}

.product-slider-controls {
    display: flex;
    gap: 36px;
    justify-content: center;
    padding: 30px 0;
}

.products-prev, .products-next {
    width: 76px;
    height: 76px;
    background-color: #8da293;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.products-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 60px;
}

/* effects */
.buy-one-click-btn:hover {
    background-color: #5e7364;
}

.product-quantity__control:hover {
    background-color: #f5f5f5;
}

.products-prev:hover, .products-next:hover {
    background-color: #5e7364;
}

/* Product Category */
.categories .content-body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 60px;
}

.product-category-swiper {
    display: none;
}

.product-category {
    width: 100%;
    height: 400px;
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.product-category__image {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
}

.product-category__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-category__title {
    width: 182px;
    height: 54px;
    background-color: #8da293;
    font-size: 24px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -10px;
}

.product-category__controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.products-category-prev, .products-category-next {
    width: 76px;
    height: 76px;
    background-color: #8da293;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Articles */
.articles .content-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 70px;
}

.article {
    width: 100%;
    height: 627px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.article__head {
    height: 60px;
}

.article__title {
    font-size: 18px;
    font-weight: 400;
    color: #8da293;
}

.article__image {
    width: 100%;
    height: 184px;
    display: flex;
    justify-content: center;
}

.article__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article__text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 220px;
    padding: 10px;
    overflow: hidden;
}

.article__text {
    font-size: 13px;
    color: #7d7d7d;
}

.article__footer {
    margin-top: 30px;
}

.article__btn {
    color: #fff;
    width: 100%;
    height: 50px;
    background-color: #8da293;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.articles__load-btn-box {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.articles__load-btn {
    border-radius: 35px;
    background-color: rgba(141,162,147,0);
    border: 2px solid #8da293;
    width: 360px;
    height: 75px;
    font-size: 14px;
    text-transform: uppercase;
    color: #8da293;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* effects */
.article__btn:hover {
    background-color: #5e7364;
}

.articles__load-btn:hover {
    background-color: #8da293;
    color: #fff;
}

/* News */
.news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px 70px;
}

/* Reviews page */
.reviews-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 50px 70px;
}

.reviews-box .gallery__item {
    width: 100%;
    height: 300px;
}

/* Footer */
.footer {
    width: 100%;
    margin-top: 20px;
}

.footer__top {
    width: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.footer__top img {
    width: 100%;
    object-fit: contain;
}

.footer__logo-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    gap: 30px;
    align-items: flex-end;
    justify-content: center;
    margin-top: -160px;
}

.footer-logo__line {
    width: 50%;
    height: 3px;
    background-color: #8da293;
}

.footer__bottom  {
    padding: 30px 0;
}

.footer__bottom .container {
    display: flex;
}

.footer-bottom__box {
    width: 33.3%;
}

.seopraim-link {
    color: red;
    font-size: 8px;
    text-align: center;
}

.seopraim-link:before {
    content: 'Разработка сайта ';
    font-size: 9px;
    color: #acacac;
}

.seopraim-link:after {
    content: 'Praim';
    font-size: 9px;
    color: #acacac;
}

.footer-bottom__box {
    font-size: 12px;
    color: #7b7b7b;
}

.social {
    display: flex;
    gap: 5px;
}

.social-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-logo__decorated-line {
    position: relative;
}

.footer-logo__decorated-line:after {
    content: url('../assets/footer/footer.decoration.png');
    display: block;
    position: absolute;
    right: 0;
    top: -55px;
}

/* Gallery */
.gallery {
    width: 100%;
    height: 444px;
    border: 1px solid #dfdfdf;
    background-color: #8da293;
    margin-top: 232px;
    position: relative;
}

.gallery .container {
    z-index: 10;
    position: relative;
}

.gallery:after {
    content: url('../assets/mediabox/mediabox.stars.png');
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.gallery .container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    z-index: 100;
}

.gallery__box {
    width: 33.3%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-wrapper__line {
    display: flex;
    gap: 30px;
}

.gallery__item {
    width: calc(169px - 30px);
    height: calc(169px - 30px);
    border-radius: 30px;
    background-color: #fff;
    position: relative;
}

.gallery-left {
    background: url('../assets/mediabox/mediabox.z.png') center no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}

.gallery__subtitle {
    font-size: 24px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
}

.gallery__text {
    font-size: 13px;
    line-height: 17px;
    color: #ffffff;
    text-align: justify;
}

.gallery__btn {
    width: 100%;
    height: 75px;
    border-radius: 35px;
    background-color: #fff;
    border: 2px solid #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    color: #8da293;
    cursor: pointer;
}

.gallery-right {
    position: relative;
    display: flex;
    gap: 10px;
}

.gallery-right__title-box {
    width: 80px;
    display: flex;;
    justify-content: center;
}

.gallery-box__title{
    font-size: 80px;
    line-height: 11px;
    text-transform: uppercase;
    color: #9cb0a1;
    font-family: "Segoe", sans-serif;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-weight: 400;
}


.gallery-phone-wrapper {
    width: 333px;
    height: 655px;
    z-index: 10;
    position: relative;
    transition: all 1s;
}

.gallery__photo {
    width: 333px;
    height: 655px; 
}

.gallery-phone__content-wrapper {
    background-color: #fff;
    width: 311px;
    height: 538px;
    position: absolute;
    bottom: 58px;
    left: 10px;
}

.gallery-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gallery-video::-webkit-media-controls, .gallery-mini-video::-webkit-media-controls {
    display: none;
}

.gallery-mini-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: inherit;
    z-index: 15;
    position: relative;
}

.gallery__video-backdrop {
    width: 100%;
    height: 100%;
    z-index: 20;
    position: absolute;
    display: block;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-video-backdrop__btn {
    background: none;
    cursor: pointer;
}

.gallery__small-video-backdrop {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    border-radius: inherit;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__control:hover {
    background-color: #5e7364;
}

.gallery__top-line-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: -10px;
}

.gallery__top-line-wrapper .gallery__line {
    width: 70%;
    height: 3px;
    background-color: #8da293;
    position: relative;
    margin-bottom: 10px;
}

.gallery__bottom-line-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 5px;
}

.gallery__bottom-line-wrapper .gallery__line {
    width: 70%;
    height: 3px;
    background-color: #8da293;
    position: relative;
}

.gallery__bottom-line-wrapper .gallery__line:before {
    content: url('../assets/mediabox/mediabox.decoration_bottom.png');
    display: block;
    position: absolute;
    left: 20px;
}

.gallery__top-line-wrapper .gallery__line:after {
    content: url('../assets/mediabox/mediabox.decoration_top.png');
    display: block;
    position: absolute;
    right: 20px;
    top: -55px;
}

.gallery-control-box {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 140px;
    margin-bottom: 200px;
}

.gallery__control {
    width: 76px;
    height: 76px;
    background-color: #8da293;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* effects */
.gallery__btn:hover {
    background: none;
    color: #fff;
}

.gallery__control:hover {
    background-color: #5e7364;
}

/* Search Modal window */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-modal-content {
    background-color: #fff;
    padding: 20px;
    width: 500px;
    height: 400px;
}

.search-modal__close-btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.search-modal__close-btn {
    background: none;
    cursor: pointer;
}

.search-modal__close-btn svg {
    width: 20px;
    height: 20px;
}

.search-modal__title {
    font-weight: 400;
    text-align: center;
    margin: 20px 0;
    color: #8da293;
}

.search-advertisement {
    display: flex;
    gap: 30px;
}

.search__category {
    display: flex;
    flex-direction: column;
    width: 33.3%;
}

.search-advertisement__subtitle {
    font-weight: 600;
    color: grey;
    margin: 10px 0;
    text-align: center;
}

.search-advertisement__link {
    font-size: 12px;
    color: grey;
    font-style: italic;
    margin-bottom: 5px;
    text-align: left;
    text-align: center;
}

.search-input-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.search-modal__input {
    padding: 10px 15px;
    border: 1px solid #eee;
    color: #0d0d0d;
    width: 100%;
}

.search-modal__btn {
    width: 100%;
    color: #fff;
    padding: 10px 15px;
    background-color: #8da293;
    text-align: center;
    cursor: pointer;
}

/* Effects */
.search-modal__input:focus {
    border: 1px solid #8da293;
}

.search-modal__btn:hover {
    background-color: #5e7364;
}

.search-advertisement__link:hover {
    text-decoration: underline;
}

/* Support Modal */
.support-modal {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    display: none;
}

.support-modal-wrapper {
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.support__title {
    color: #8da293;
}

.support__text {
    font-size: 14px;
    margin: 10px 0;
    color: grey;
}

.support__form {
    display: flex;
    flex-direction: column;
}

.support-form__input {
    width: 100%;
    padding: 10px 15px;
    color: #000;
    border: 1px solid #eee;
    margin-bottom: 10px;
}

.support-form__textarea {
    padding: 10px 15px;
    resize: none;
    border: 1px solid #eee;
    height: 80px;
    width: 100%;
    font-family: sans-serif;
}

.support__btn {
    margin-top: 20px;
    color: #fff;
    width: 100%;
    padding: 10px 15px;
    text-align: center;
    background-color: #8da293;
    cursor: pointer;
}

.support-modal__control-box {
    display: flex;
    justify-content: flex-end;
}

.support-modal__close-btn {
    width: 20px;
    height: 20px;
    background: none;
    cursor: pointer;
}

/* Effects */
.support__btn:hover {
    background-color: #5e7364;
}

.support-form__input:focus, .support-form__textarea:focus {
    border: 1px solid #5e7364;
}

/* Video Wrapper */
.video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-wrapper__phone-box {
    display: flex;
    flex-direction: column;
    position: relative;
}

.video-wrapper-controls {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.video-wrapper__control {
    width: 75px;
    height: 75px;
    background-color: #8da293;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.video-wrapper__phone-image {
    transform: rotate(-90deg);
    transition: all 1s ease;
}

.video-wrapper__content-box {
    position: absolute;
    top: 170px;
    left: -102px;
    width: 540px;
    height: 312px;
}

.video-wrapper__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Effects */
.video-wrapper__control:hover {
    background-color: #5e7364;
}

/* Mobile menu */
.mobile__menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.5);
    z-index: 1000;
    display: none;
}

.mobile-menu__content {
    width: 70%;
    background-color: #fff;
    height: 100%;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
}

.mobile-menu__title {
    text-align: center;
    color: #8da293;
    margin-bottom: 20px;
}

.mobile-menu__link {
    text-transform: lowercase;
    margin: 3px 0;
}

/* Styles of auto-generated content */

.auto-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 50px;
}

.page .content__subtitle {
    white-space: normal;
    text-transform: uppercase;
}

/* Cart */
.cart-body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 70px;
}

/* Search */
.search-content__title {
    color: #8da293;
    font-weight: 400;
}

.search-content {
    flex-direction: column;
}

.search-content__box-title {
    font-weight: 400;
    font-size: 30px;
    text-transform: capitalize;
    color: #8da293;
}

.search-content__box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 30px;
}

.search-content__box-wrapper {
    border-top: 1px solid #8da293;
    margin-top: 20px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 60px;
    padding: 20px 0;
}

/* Product card */
.product-card-container {
    width: 100%;
    gap: 30px;
    align-items: center;
    flex-direction: row !important;
}

.product-card-container .product-card-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 30px 20px;
}

.product-card-wrapper .product-card__left, .product-card__right {
    width: calc(50% - 40px);
}

.product-card__right .product-body__text {
    margin: 60px 0;
    text-align: justify;
    height: auto;
    font-size: 14px;
    color: #7b7b7b;
}

/* Cart animation box */
.cart__anim-box {
    position: absolute;
    z-index: 1000;
    animation: flyToCorner 1s forwards;
    background-color: red;
    width: 300px;
    height: 300px;
}

/* Zoomed Photo */
.pixel-voyager-overlay {
    background: rgba(0, 0, 0, .5) !important;
}

.pixel-voyager-overlay canvas {
    background-color: #fff !important;
}

.pixel-voyager-corner {
    display: none !important;
}

/* Notification */

.notification {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 250px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #8da293;
    z-index: 1000;
    font-size: 13px;
    text-align: center;
    display: none;
}

@keyframes flyToCorner {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(100vw, -100vh) scale(0);
    opacity: 0;
  }
}

/* Adaptable to different screen resolutions */

@media screen and (min-width: 1000px) and (max-width: 1279px){
    .container {
        width: 1000px;
        margin: 0 auto;
    }

    .gallery-box__title {
        display: none;
    }
}

@media screen and (min-width: 1400px){
    .header__left {
        justify-content: space-between;
    }
}

@media screen and (min-width: 2000px){
    .container {
        width: 1400px;
    }
}

@media screen and (max-width: 999px){
    .container {
        width: 100%;
        padding: 0 20px;
    }

    .header {
        height: auto;
    }

    .header:after {
        content: '';
        display: none;
    }

    .header .container {
        flex-direction: column;
    }

    .header__left {
        flex-direction: column;
        width: 100%;
        padding: 30px 0;
    }

    .header-left__box {
        width: 100%;
    }

    .header-left__text {
        text-align: justify;
    }

    .header-left__image-wrapper {
        display: none;
    }

    .header__right {
        width: 100%;
        margin-bottom: 20px;
        padding: 0 10px;
        justify-content: center;
    }

    .nav-list {
        display: none !important;
    }

    .nav__mobile-btn {
        display: flex;
    }

    .nav .container {
        justify-content: flex-start;
    }

    .main__slider-wrapper {
        min-height: auto;
    }

    .main-slider {
        gap: 30px;
    }

    .main-slide__wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 30px;
    }

    .main-slide__subtitle {
        width: 100%;
        font-size: 16px;
    }

    .features .container {
        flex-wrap: wrap;
    }

    .feature {
        width: calc(50% - 20px);
        height: 200px;
        gap: 0;
    }

    .content__title {
        font-size: 80px;
    }

    .content__subtitle {
        font-size: 35px;
        margin-bottom: 30px;
        margin-left: 0;
        white-space: nowrap;
    }

    .product-slider-controls {
        margin-top: 30px;
    }

    .product-category-stable {
        display: none;
    }

    .product-category-swiper {
        display: block;
        width: 100%;
    }

    .categories .content-body {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 60px;
    }

    .product-category__controls {
        display: flex;
    }

    .gallery {
        margin-top: 200px;
        height: auto;
    }

    .gallery__box.gallery-right {
        width: 100%;
    }

    .gallery .container {
        flex-direction: column;
    }

    .gallery__box.gallery-left {
        width: 100%;
        gap: 30px;
    } 

    .gallery:after {
        display: none;
    }

    .gallery__box:nth-child(2) {
        display: none;
    }

    .articles {
        margin-top: 170px;
    }

    .articles .content-body {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 70px;
    }

    .gallery-control-box {
        display: none;
    }

    .footer {
        margin-top: 100px;
    }

    .footer__logo {
        width: 50%;
        margin-bottom: 60px;
    }

    .footer__logo img {
        width: 100%;
    }

    .footer__top {
        width: 100%;
    }

    .footer__bottom {
        margin-top: 40px;
    }

    .footer__bottom .container {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .footer-bottom__box {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .video-wrapper-controls {
        margin-top: 50px;
    }

    .header__phone-link {
        font-size: 20px !important;
    }

    .cart-body {
        grid-template-columns: repeat(1, 1fr);
    }

    .main__additional-controls .container {
        padding: 0 20px;
    }

    .main .modal-btn {
        width: 100%;
    }

    .search-content__box-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .product-card-container .product-card-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .product-card__left, .product-card__right {
        width: 100%;
    }

    .product-body__text {
        margin: 10px 0;
    }

    .news {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .reviews-box {
        grid-template-columns: repeat(1, 1fr);
    }
}