@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap");

* {
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    color: #000;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
body {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
body > * {
    width: 100%;
}
a {
    text-decoration: none;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.yellow-highlighted {
    color: #e4b211;
}
.highlighted {
    color: #0066db !important;
}
.section__title {
    width: 100%;
    text-align: center;
    font-size: 32px;
}
.show {
    transition: opacity ease 500ms;
}
.hide {
    transition: opacity ease 500ms;
    opacity: 0;
}
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.subheader {
    width: 100%;
    height: 30px;
    background-color: #e3e3e3;
    padding: 5px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}
.subheader > .container {
    width: 100%;
}
.subheader__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.subheader__left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    font-size: 12px;
    font-weight: bold;
}
.subheader__left a {
    color: #007393;
    transition: all 0.2s;
}
.subheader__left a:hover {
    color: #018fb6;
}
.search__row {
    display: flex;
    align-items: center;
}
.search {
    height: 24px;
    border: 1px solid #ffca00;
    border-right: none;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    max-width: 300px;
    width: 100%;
    font-size: 12px;
    padding: 0 7px 0 7px;
}
.search__submit {
    font-size: 18px;
    height: 24px;
    width: 24px;
    aspect-ratio: 1;
    background-color: #ffca00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    cursor: pointer;
}

header {
    width: 100%;
    background-color: #018fb6;
    padding: 5px 0;
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 2;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: -10px 0 -10px;
}
.header__logo img {
    height: 50px;
    margin: 5px 0;
}
.header__logo > span {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin-left: 20px;
}
.header__nav-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}
.header__nav-item {
    list-style: none;
}
.header__nav-item__cart a {
    display: flex;
    align-items: center;
}
.header__nav-item__cart p {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    margin-left: 10px;
}
.header__nav-item__cart p span {
    color: #fff;
}
.header__nav-item__cart p span:first-child {
    text-transform: uppercase;
    font-weight: bold;
}
.header__nav-item a {
    color: #fff;
    opacity: 0.8;
    font-size: 16px;
    transition: opacity 0.3s;
}
.header__nav-item a:hover {
    opacity: 1;
}

.header__burger {
    height: 20px;
    width: 30px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: none;
}
.header__burger-line {
    height: 3px;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s;
}
.header__burger.active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translateY(9px) translateX(3px);
}
.header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}
.header__burger.active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px) translateX(3px);
}

.banner {
    height: 600px;
    width: 100%;
    background: #fff;
    background-image: url("./../img//banner.jpg"); /* fallback */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
}
.banner .container {
    height: 100%;
}
.banner__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner__title {
    font-size: 60px;
}
.banner__subtitle {
    font-size: 34px;
    font-weight: 300;
    margin-top: 10px;
}
.banner__list {
    margin-top: 20px;
}
.banner__list-item {
    margin-top: 15px;
    list-style: none;
}
.banner__button {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background-color: #018fb6;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 10px;
    margin-top: 30px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0px 5px 17px 0px rgba(0, 0, 0, 0.5);
}
.banner__button:hover {
    background-color: #006480;
    box-shadow: none;
}

.calculator {
    padding: 60px 0 50px;
}
.calculator__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.calculator__submit {
    margin-top: 20px;
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 700;
    background-color: #018fb6;
    color: #fff;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s;
}
.calculator__body {
    margin: 30px 0 20px;
    width: 100%;
}
.calculator__items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
}
.calculator__item {
    width: 100%;
    border: 1px solid #018fb6;
    border-radius: 10px;
    overflow: hidden;
}
.calculator__item.nullable .calculator__item-control {
    display: none;
}
.calculator__item.nullable .calculator__item-title {
    font-size: 14px;
}
.calculator__item-image {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
}
.calculator__item-image img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.calculator__item-image span {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
    padding: 3px 8px;
    background-color: #eee;
    border-radius: 5px;
    color: #000;
}
.calculator__item-image .available {
    background-color: rgb(108, 179, 129);
    top: auto;
    bottom: 10px;
}
.calculator__item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgb(255, 121, 121);
    color: #fff;
    font-size: 12px;
    height: 21px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.calculator__item-content {
    padding: 10px 10px;
}
.calculator__item-description {
    font-size: 12px;
    margin-top: 3px;
}
.calculator__item-price {
    height: 100%;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.calculator__item-price__title {
    font-size: 10px;
    font-weight: 700;
}
.calculator__item-price__currency {
    font-size: 10px;
    font-weight: 500;
}
.calculator__item-link {
    width: 100%;
    height: 100%;
    flex: 1 0 auto;
    border: 1px solid #018fb6;
    border-radius: 5px;
    padding: 10px;
}
.calculator__item-link.error {
    border: 1px solid rgb(255, 121, 121);
}
.calculator__item-control {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.calculator__item-quantity {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    width: fit-content;
}
.calculator__item-quantity__input {
    height: 100%;
    width: 30px;
    background: none;
    padding: 0 7px;
    text-align: center;
    font-weight: 700;
}
.calculator__item-quantity__button {
    height: 100%;
    aspect-ratio: 1;
    background-color: rgb(222, 229, 230);
    border-radius: 5px;
    font-size: 21px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.calculator__item-quantity__button:hover {
    opacity: 0.5;
}
.calculator__item-remove:hover {
    opacity: 0.7;
}
.calculator__item-add {
    min-height: 370px;
    height: 100%;
    width: 100%;
    border: 3px dashed rgb(228, 232, 233);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.calculator__item-add:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}
.calculator__item-add__text {
    text-transform: uppercase;
    color: rgb(185, 195, 196);
    font-size: 21px;
    font-weight: 700;
    pointer-events: none;
    user-select: none;
    text-align: center;
}
.calculator__item-add__step {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
    margin-top: 10px;
}
.calculator__item-add__step-number {
    font-size: 32px;
    font-weight: bold;
    color: rgba(185, 195, 196, 0.534);
    margin-right: 15px;
    display: block;
    min-width: 22px;
    text-align: center;
}
.calculator__item-add__step-text {
    font-size: 14px;
}
.calculator__item-add__input {
    border: 1px solid #006480;
    border-radius: 3px;
    font-size: 14px;
    padding: 7px;
    width: calc(100% - 20px);
    margin: 20px 0 10px;
}
.calculator__item-add__button {
    font-size: 14px;
    padding: 7px;
    width: calc(100% - 20px);
    border-radius: 3px;
    background: rgb(185, 195, 196);
    cursor: pointer;
    font-weight: bold;
}
.calculator__discount {
    color: rgb(108, 179, 129);
    font-weight: bold;
    font-size: 21px;
    margin-bottom: 15px;
    text-align: center;
}
.calculator__sum {
    color: #018fb6;
    font-weight: bold;
    font-size: 18px;
}
.calculator__sum * {
    color: #018fb6;
}
.calculator__sum s {
    font-size: 10px;
}
.calculator__submit:hover {
    background-color: #006480;
}

.benefits {
    padding: 60px 0 50px;
    background-color: rgb(245, 245, 245);
}
.benefits__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.benefits__item {
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(2, 1fr);
    grid-column: auto;
    gap: 10px;
    border: 1px solid #018fb6;
    border-radius: 10px;
    overflow: hidden;
    min-height: 121px;
}
.benefits__item-image {
    width: 100%;
    height: 100%;
}
.benefits__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.benefits__item-content {
    padding: 10px 0;
}
.benefits__item-title {
    font-size: 16px;
}
.benefits__item-subtitle {
    font-size: 12.5px;
}

.reviews {
    padding: 40px 0 50px;
    background-color: rgb(245, 245, 245);
}
.reviews__content {
    margin-top: 40px;
}

footer {
    background-color: #018fb6;
    margin-top: auto;
}
.footer__content {
    padding: 50px 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}
.footer__col-title {
    color: #fff;
    font-size: 21px;
}
.footer__form-subtitle {
    font-size: 12px;
    color: #fff;
    margin-top: 5px;
    font-weight: 300;
}
.footer__form-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.footer__form-input {
    background-color: #ffffff00;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #fff;
    padding: 10px;
    margin-bottom: 10px;
}
.footer__form-input.error {
    border-color: rgb(255, 121, 121);
}
.footer__form-input::placeholder {
    color: #ffffffb0;
}
.footer__form-submit {
    border-radius: 4px;
    background-color: #fff;
    color: #018fb6;
    padding: 11px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}
.footer__form-submit:hover {
    background-color: #ffffffe0;
}
.footer__nav {
    grid-column: 3;
}
.footer__contacts {
    grid-column: 4;
}
.footer__nav-list {
    list-style: none;
    margin-top: 20px;
}
.footer__nav-list a {
    color: #fff;
    display: block;
    margin-top: 7px;
    position: relative;
    font-size: 14px;
}
.footer__nav-list a::before {
    display: block;
    content: "";
    max-width: 0px;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: -30px;
    transition: all 0.3s;
}
.footer__nav-list a:hover::before {
    max-width: 20px;
}
.footer__contacts-list {
    margin-top: 20px;
}
.footer__contacts-row {
    color: #fff;
    display: flex;
    align-items: center;
    margin-top: 7px;
    position: relative;
    font-size: 14px;
}
.footer__contacts-row svg {
    margin-right: 10px;
    fill: #fff !important;
}
.footer__contacts-row::before {
    display: block;
    content: "";
    max-width: 0px;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: -30px;
    transition: all 0.3s;
}
.footer__contacts-row:hover::before {
    max-width: 20px;
}

.modal {
    background-color: #000000b0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal__body {
    background-color: #fff;
    max-width: 420px;
    width: 100%;
    padding: 40px 20px;
    position: relative;
    box-shadow: 0px 5px 17px 0px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
}
.modal__close {
    background: none;
    color: #018fb6;
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    line-height: 22px;
    cursor: pointer;
}
.modal__title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}
.modal__field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}
.modal__field-title {
    font-size: 12px;
    margin-bottom: 5px;
}
.modal__field-input {
    width: 100%;
    border: 1px solid #018fb6;
    border-radius: 5px;
    padding: 7px 10px;
    font-size: 14px;
    margin-bottom: 15px;
}
.modal__field-input.error {
    border-color: rgb(255, 121, 121);
}
.modal__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #018fb6;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.modal__button:hover {
    background-color: #006480;
}

.success {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-color: rgb(247, 247, 247);
}
.success__content {
    padding: 50px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    border-radius: 20px;
}
.success__icon svg {
    height: 200px;
    width: 200px;
    stroke: #79a3ca;
}
.success__title {
    text-transform: uppercase;
    color: #018fb6;
    font-weight: 700;
    text-align: center;
}
.success__subtitle {
    font-weight: 300;
    text-align: center;
    max-width: 500px;
    margin-top: 20px;
}
.success__back {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #018fb6;
    color: #fff;
    font-weight: bold;
    font-size: 21px;
    border-radius: 5px;
    padding: 10px 50px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    text-transform: uppercase;
}
.success__back:hover {
    background-color: #006480;
}
.success__buy {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #069132;
    color: #fff;
    font-weight: bold;
    font-size: 21px;
    border-radius: 5px;
    padding: 10px 50px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    text-transform: uppercase;
}
.success__buy:hover {
    background-color: #297305;
}

.about,
.faq {
    margin: 40px 0;
}
.about__content,
.faq__content {
    margin-top: 40px;
}
.question {
    margin-bottom: 20px;
}

.catalog {
    padding: 50px 0;
}
.catalog__content {
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
}
.catalog__nav {
    max-width: 250px;
    margin-right: 25px;
    width: 100%;
}
.catalog__nav-open {
    display: none;
}
.catalog__nav-title {
    font-size: 24px;
    font-weight: bold;
}
.catalog__nav-list {
    list-style: none;
    margin-top: 10px;
}
.catalog__nav-list__item a {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    cursor: pointer;
    transition: all 0.3s;
    color: #333;
}
.catalog__nav-list__item:hover a {
    color: #018fb6;
}
.catalog__grid {
    flex: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.catalog__grid.search__grid {
    grid-template-columns: repeat(4, 1fr);
}
.catalog__item {
    width: 100%;
    border: 1px solid #018fb6;
    border-radius: 10px;
    overflow: hidden;
}
.catalog__item-image {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
}
.catalog__item-image .available {
    background-color: rgb(108, 179, 129);
    top: auto;
    bottom: 10px;
}
.catalog__item-image img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.catalog__item-image span {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
    padding: 3px 8px;
    background-color: #eee;
    border-radius: 5px;
    color: #000;
}
.catalog__item-content {
    padding: 10px 10px;
}
.catalog__item-title {
    font-size: 14px;
}
.catalog__item-price {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.catalog__item-price__title {
    font-size: 10px;
    font-weight: 700;
}
.catalog__item-price__currency {
    font-size: 10px;
    font-weight: 500;
}
.catalog__item-control {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.catalog__item-cart {
    background-color: #018fb6;
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: all 0.3s;
}
.catalog__item-cart:hover {
    background-color: #006480;
}
.cart-empty {
    grid-column-start: 1;
    grid-column-end: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgb(255, 121, 121);
    font-weight: bold;
    font-size: 21px;
    text-align: center;
}
.cart-empty a {
    text-transform: uppercase;
    color: #018fb6;
    border: 2px solid #018fb6;
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 700;
    background-color: #fff;
    border-radius: 7px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
}
.cart-empty a:hover {
    background-color: #ecfbff;
}

.pagination {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    row-gap: 30px;
    list-style: none;
    margin-top: 50px;
}
.pagination__item {
    margin: 0 10px;
}
.pagination__item a {
}
.pagination__item span {
    font-weight: bold;
}

.toastify {
    display: flex !important;
    justify-content: space-between;
    width: fit-content !important;
    border-radius: 3px !important;
    cursor: default !important;
}
.toast-close {
    cursor: pointer;
    height: fit-content;
}
.toastify p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 20px;
}
.toastify a {
    color: #018fb6;
    background-color: #fff;
    padding: 7px 12px;
    border-radius: 3px;
    margin-top: 10px;
    transition: all 0.3s;
}
.toastify a:hover {
    background-color: #ffffffe0;
}

.product > .container {
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 40px;
}
.product__images {
    max-width: 500px;
    width: 100%;
    margin-right: 40px;
}
.product__image {
    border: 1px solid #c8c8c8;
    margin-bottom: 10px;
    position: relative;
}
.product__image .available {
    position: absolute;
    left: 10px;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 5px;
    color: #000;
    background-color: rgb(108, 179, 129);
    top: auto;
    bottom: 10px;
}
.product__image img {
    width: 100%;
}
.product__images-previews {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.product__images-preview {
    width: 100%;
    border: 1px solid #c8c8c8;
    border-radius: 5px;
}
.product__images-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}
.product__content {
    flex: 1;
}
.product__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
}
.product__title {
    flex: 1;
}
.product__price {
    font-size: 21px;
    margin-left: 20px;
}
.product__buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
.product__add {
    background-color: #018fb6;
    color: #fff;
    font-weight: bold;
    padding: 7px 15px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}
.product__add:hover {
    background-color: #006480;
}
.product__description {
    font-size: 12px;
    margin-top: 20px;
}
.product__description p {
    margin-top: 5px;
}
.product__available{
    margin-bottom: 14px;
}
.product__available span {
    background-color: #04AA6D;
    color: #fff;
    border-radius: 20px;
    padding: 6px;
    font-weight: bold;
}
.product__unavailable{
    margin-bottom: 14px;
}
.product__unavailable span {
    background-color: #e7e7e7;
    color: #000;
    border-radius: 20px;
    padding: 6px;
    font-weight: bold;
}
.product__sku {
    font-size: 21px;
    margin-left: 20px;
    margin-left: 0;
    margin-bottom: 5px;
}

.popular {
    padding: 40px 0 0px;
}
.popular__content {
    padding: 40px 0 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.popular__button {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 40px;
}

@media (max-width: 768px) {
    .subheader__left {
        flex-direction: column;
    }
    .subheader__left > a:first-child {
        display: none;
    }
    .subheader__left > a:last-child {
        display: none;
    }

    .section__title {
        font-size: 24px;
    }

    .header__nav {
        position: absolute;
        top: -30px;
        left: 0;
        right: 0;
        transform: translateY(-100%);
        background-color: #018fb6;
        transition: all 0.3s;
    }
    .header__nav.active {
        top: 100%;
        transform: none;
    }
    .header__nav-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 30px 15px 30px;
    }
    .header__burger {
        display: flex;
    }

    .banner {
        background: none;
        padding-top: 30px;
        padding-bottom: 50px;
        height: auto;
    }
    .banner__content {
        justify-content: flex-start;
    }
    .banner__title {
        font-size: 37px;
    }
    .banner__subtitle {
        margin-top: 0;
        font-size: 23px;
    }
    .banner__list-item {
        font-size: 12px;
    }
    .banner__button {
        font-size: 16px;
        padding: 10px 25px;
        border-radius: 5px;
    }

    .calculator__items {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .calculator__item-add {
        min-height: 330px;
    }
    .calculator__item-add__text {
        font-size: 18px;
    }
    .calculator__item-add__step-number {
        font-size: 24px;
        min-width: 18px;
        margin-right: 5px;
    }
    .calculator__item-add__step-text {
        font-size: 10px;
    }
    .calculator__item-image span {
        font-size: 8px;
        border-radius: 2px;
    }
    .calculator__item-remove {
        font-size: 10px;
    }
    .calculator__item-title {
        font-size: 14px;
    }
    .calculator__item-description {
        font-size: 10px;
    }
    .calculator__item-control {
        height: auto;
        width: 100%;
        flex-direction: column;
    }
    .calculator__item-quantity {
        overflow: visible;
        justify-content: center;
        margin-bottom: 10px;
    }
    .calculator__item-price {
        margin-left: 0;
    }
    .calculator__discount {
        font-size: 18px;
    }
    .calculator__sum {
        font-size: 16px;
    }

    .benefits__content {
        grid-template-columns: 1fr;
    }
    .footer__content {
        grid-template-columns: 1fr;
        row-gap: 50px;
    }
    .footer__col {
        grid-column: auto;
    }
    .footer__form {
        order: 1;
    }
    .footer__contacts {
        order: 2;
    }
    .footer__nav {
        order: 3;
    }

    .success__content {
        padding: 30px 20px;
    }
    .success__icon svg {
        width: 150px;
        height: 150px;
    }
    .success__title {
        font-size: 21px;
    }
    .success__subtitle {
        font-size: 16px;
    }
    .about__content,
    .faq__content {
        margin-top: 20px;
    }

    .catalog__content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .catalog__nav {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        top: 0;
        background: #ffffffe0;
        backdrop-filter: blur(3px);
        z-index: 1;
        margin: 0;
        max-width: 100%;
        padding: 70px 15px 30px;
        overflow: auto;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        display: none;
    }
    .catalog__nav-open {
        display: block;
        font-size: 14px;
        border: 1px solid #018fb6;
        padding: 7px 12px;
        border-radius: 5px;
        margin-bottom: 20px;
        background: #eee;
    }
    .catalog__nav-title {
        width: fit-content;
    }
    .catalog__nav-list__item,
    .catalog__nav-list__item a {
        width: fit-content;
    }
    .catalog__grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .toastify {
        max-width: calc(100% - 40px) !important;
        font-size: 14px;
    }
    .toast-close {
        cursor: pointer;
        height: fit-content;
    }
    .toastify p {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin-right: 20px;
    }
    .toastify a {
        color: #018fb6;
        background-color: #fff;
        padding: 7px 12px;
        border-radius: 3px;
        margin-top: 10px;
        transition: all 0.3s;
    }
    .toastify a:hover {
        background-color: #ffffffe0;
    }
    .product > .container {
        flex-direction: column;
        padding-top: 15px;
    }
    .product__header {
        padding-top: 20px;
        flex-direction: column;
        width: 100%;
    }
    .product__title {
        font-size: 20px;
    }
    .product__price {
        margin-left: 0;
        margin-top: 20px;
    }
    .popular__content {
        grid-template-columns: repeat(2, 1fr);
    }
}
