@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Rage Italic LET';
    src: url('../fonts/RageItalicLetPlain.woff2') format('woff2'), url('../fonts/RageItalicLetPlain.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

:root {
    --main-color: #647300;
    --light-color: #95A435;
    --bg-color: #FDFAF2;
    --brown-color: #BB966F;
    --font-color: #0A0A0A;
    --divider: 135px;
}

html {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    overflow-x: hidden;
    font-size: 18px;
    position: relative;
    color: var(--font-color);
    line-height: 1.25;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    position: relative;
    overflow-x: hidden;
    max-width: 1920px;
    margin: auto;
}

body.front-page {
    background-color: var(--bg-color);
}

body.compensate-for-scrollbar {
    margin: 0;
}

.callig {
    font-family: 'Rage Italic LET';
}

.divider {
    height: var(--divider);
}

article,
section {
    position: relative;
}

 ::-moz-selection {
    background: #D0DFA1;
    color: #000;
    text-shadow: none;
}

 ::selection {
    background: #D0DFA1;
    color: #000;
    text-shadow: none;
}

 ::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #D4D3D3;
}

 :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #D4D3D3;
    opacity: 1;
}

 ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #D4D3D3;
    opacity: 1;
}

 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #D4D3D3;
}

 ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #D4D3D3;
}

 ::placeholder {
    /* Most modern browsers support this now. */
    color: #D4D3D3;
}

[hidden] {
    display: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--font-color);
    background-color: transparent;
}

html,
body,
header,
main,
section,
div,
footer {
    box-sizing: border-box;
}

a,
div,
button,
input {
    -webkit-tap-highlight-color: #00000000
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

img {
    border-style: none;
    max-width: 100%;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

textarea {
    resize: vertical;
}


/* adm Styles */

input,
textarea,
select {
    outline: none;
}

.upcase {
    text-transform: uppercase;
}

strong {
    font-weight: 700;
}


/* h1,
.h1 {
    font-size: 2em;
    margin: 0.67em 0;
    font-weight: 800;
}

h2,
.h2 {
    font-size: 1.7em;
    font-weight: 500;
}

h3,
.h3 {
    font-size: 1.4em;
} */

address {
    font-style: normal;
}

.container-fluid {
    width: 100%;
    height: 100%;
    padding-right: 3rem;
    padding-left: 3rem;
    margin-right: auto;
    margin-left: auto;
}

.container {
    width: 100%;
    height: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 1560px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1420px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1560px;
    }
}

.showmenu {
    display: none;
    margin-left: 1em;
    flex-direction: column;
    cursor: pointer;
    align-items: end;
}

.showmenu span {
    width: 2em;
    height: 4px;
    margin-bottom: 5px;
    background-color: #fff;
    display: inline-block;
    transition: 0.15s;
}

.showmenu span:last-child {
    margin-bottom: 0;
}

.closemenu {
    color: #fff;
    cursor: pointer;
    display: none;
    text-align: right;
    position: absolute;
    right: 0.6em;
    top: 0.8em;
    font-size: 1.7em;
    line-height: 0;
}

.closemenu:hover {
    color: #f00;
}

.showmenu:hover span {
    background-color: var(--light-color);
}

.btn {
    margin: 15px 0 0;
}

.btn.full-btn {
    margin-top: 2em;
}

.btn.full-btn a {
    width: 100%;
}

.btn a {
    position: relative;
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    font-size: 1.1em;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    padding: 21px 25%;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.3s;
}

.btn.white a {
    color: var(--font-color);
    background-color: #fff;
}

.btn a:hover {
    background-color: var(--light-color);
}

.btn.white a:hover {
    background-color: var(--main-color);
    color: #fff;
}

#totop {
    border-radius: 50%;
    position: fixed;
    right: 2em;
    bottom: -2em;
    background: #7f7f7f30;
    width: 35px;
    height: 35px;
    transition: 0.1s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    z-index: 5;
}

#totop.show {
    bottom: 2em;
}

.breadcrumbs {
    color: #666;
    /* opacity: 0.5; */
    font-size: 0.75em;
    margin: 1em 0 2em;
}


/* site */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100%;
    z-index: 9;
    margin-top: 0;
    transition: 0.15s;
}

html.scroll #header {
    margin-top: -112px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 0;
}

.header-top .logo {
    width: 212px;
}

.header-top .logo img {
    max-width: 100%;
}

.cont-icons {
    display: flex;
    gap: 1em;
    align-items: center;
}

.cont-icons a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.header-icons a {
    background-color: var(--main-color);
}

.fav span {
    position: absolute;
    top: 11px;
    right: 8px;
    background-color: #fff;
    color: var(--main-color);
    border-radius: 50%;
    font-size: 0.75em;
    width: 1em;
    height: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-bottom {
    background-color: var(--main-color);
    padding: 1em 0;
}

.header-menu nav>ul {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.header-menu nav>ul>li {
    position: relative;
    z-index: 5;
}

.header-menu ul.sub-menu {
    position: absolute;
    left: 0;
    top: -2em;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    background-color: #647300b9;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 4em 2em 2em;
    z-index: 2;
    transition: 0.23s;
}

.header-menu nav>ul>li:hover a+ul.submenu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(0px);
}

.header-menu a {
    font-size: 1.2em;
    color: #fff;
}

.header-menu .sub-menu a {
    font-size: 1.2em;
    color: #fff;
    text-decoration: underline;
}

.hero-slide {
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 100svh; */
    height: 100dvh;
    /* height: 100lvh; */
    padding-top: 174px;
}

.hero-slide .container-fluid {
    height: 100%;
}

.hero-slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 900px;
}

.slide-content__text {
    position: relative;
}

.slide-content__text:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #aea59ecc;
    filter: blur(55px);
    z-index: 0;
}

.slide-content__text>div {
    position: relative;
    z-index: 1;
}

.slide-content__text .pretit {
    font-size: 2.75em;
}

.slide-content__text .tit {
    font-size: 4.3em;
    font-weight: 700;
    text-transform: uppercase;
}

.slide-content__text .btn {
    margin-top: 5em;
}

.about_wrapper .container-fluid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.about_left,
.about_right {
    flex: 0 0 auto;
    max-width: calc(50% - 15px);
}

.about_left {
    position: relative;
}

.about_left .phrase {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 2em;
    padding: 0.4em;
}

.about_left img {
    height: 100%;
    object-fit: cover;
}

.about_right .tit {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.25em;
}

.about_right ul li {
    margin-bottom: 2em;
    border-left: 10px solid var(--main-color);
    padding: 1em 0.5em;
}

.about_right ul li:nth-child(2) {
    margin-left: 4em;
}

.about_right ul li strong {
    margin-bottom: 1em;
}

.about_right ul li p {
    margin-top: 0;
}

.about_right .callig {
    font-size: 2em;
}

.about_right .btn {
    margin-top: 2em;
}

.section-head {
    margin: 3em 0;
    max-width: 650px;
}

.section-head .tit,
.single-content h1 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.25em;
}

.single-content h2,
.single-content h3 {
    font-weight: 700;
    font-size: 1.25em;
    margin-top: 2em;
}

.section-head .tit.callig {
    text-transform: unset;
    font-size: 2.7em;
    font-weight: 400;
}

.section-foot {
    margin: 3em 0;
}

.section-foot .tit {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.25em;
}

.section-foot .tit.callig {
    text-transform: unset;
    font-size: 2em;
    font-weight: 400;
}

.section-foot .desc {
    max-width: 600px;
}

.wbg {
    background-color: var(--brown-color);
    color: #fff;
}

.portfolio_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 50px 50px;
    grid-auto-flow: row;
    grid-template-areas: "pf1 pf2 pf3" "pf4 pf4 pf5" "pf6 pf7 pf5";
}

.designer_card {
    max-width: 850px;
    padding: 1em;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.designer_card .tit {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.25em;
}

.designer_card .left {
    flex: 0 0 auto;
    max-width: 60%;
}

.designer_card .right {
    flex: 0 0 auto;
    max-width: 40%;
}

.pf1 {
    grid-area: pf1;
}

.pf2 {
    grid-area: pf2;
}

.pf3 {
    grid-area: pf3;
}

.pf4 {
    grid-area: pf4;
}

.pf5 {
    grid-area: pf5;
}

.pf6 {
    grid-area: pf6;
}

.pf7 {
    grid-area: pf7;
}

.pf_card .img {
    position: relative;
    width: 100%;
    height: 100%;
}

.pf_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pf_card {
    background-color: #fff;
    position: relative;
    width: 100%;
    height: 100%;
}

.pf_card .text {
    border: 1px solid var(--main-color);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 97% 97%;
    background-size: 74px;
    padding: 2em 1.5em;
}

.pf1 .pf_card .text {
    background-image: url(../img/pf-icon1.webp);
    padding-bottom: 75px;
}

.pf7 .pf_card .text {
    background-image: url(../img/pf-icon2.webp);
    padding-bottom: 75px;
}

.pf_card strong {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.25em;
    margin-bottom: 1em;
    display: inline-block;
}

.pf_card .text ul {
    list-style-type: disc;
    padding-left: 1em;
}

.pf_card .text ul li {
    margin-bottom: 1em;
}

.idea-card {
    position: relative;
}

.idea-card img {
    width: 100%;
    height: auto;
}

.idea-card__product {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.idea-product {
    position: absolute;
    z-index: 2;
}

.idea-product.ip1 {
    top: 55%;
    right: 81%;
}

.idea-product.ip2 {
    top: 10%;
    right: 5%;
}

.idea-card__product .spot {
    background-color: #ffffff;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    transition: 0.17s;
    cursor: pointer;
}

.idea-card__product .content {
    min-width: 225px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.7);
    background-color: #ffffff3d;
    color: #000;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    padding: 12px;
    transition: 0.35s;
}

.idea-card__product .content .sku {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.idea-card__product .content .sku span {
    opacity: 0.5;
}

.idea-card__product .content .name {
    margin: 1em 0;
    font-size: 1.1em;
}

.idea-card__product .spot:hover+.content {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.swiper-nav {
    display: flex;
    gap: 80px;
    justify-content: center;
    margin: 2em 0;
}

.swiper-nav>div {
    position: relative;
    right: unset;
    left: unset;
}

.advantages_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}

.advantages_wrapper>div {
    flex: 0 0 auto;
    width: calc(100% / 3 - 30px);
}

.advantage-card {
    position: relative;
    background-color: var(--light-color);
    padding: 2em 1em;
    color: #fff;
}

.advantage-card .tit {
    font-size: 2em;
}

.advantage-card ul {
    list-style: disc;
    padding-left: 1em;
}

.advantage-card ul li {
    margin-bottom: 1em;
}

.advantage-card .icon {
    position: absolute;
    top: -37px;
    right: 12px;
    width: 74px;
    height: 74px;
}

.bottom-form_wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 2em;
}

.bottom-form_wrapper .form-card {
    flex: 0 0 auto;
    max-width: 570px;
}

.form-card .tit {
    font-size: 1.7em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.5em;
}

.form-card .desc {}

.form-card .callig {
    font-size: 2em;
    margin-top: 0.5em;
}

.form-card form {
    margin-bottom: 2em;
}

.form-block .form-card {
    max-width: 845px;
}

.inp input {
    border: none;
    border-bottom: 1px solid #000;
    padding: 10px 0;
    background-color: transparent;
    width: 100%;
    display: block;
    box-sizing: border-box;
    font-size: 1em;
}

.subm {
    margin-top: 2em;
}

.subm input {
    border: none;
    position: relative;
    background-color: var(--main-color);
    color: #fff;
    font-size: 1.1em;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    padding: 21px 5px;
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin: 1em 0;
    transition: 0.3s;
}

.subm label {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 0.75em;
}

.subm label input {
    width: auto;
}

.subm label a {
    text-decoration: underline;
}

#footer {
    background-color: #495401;
    padding: 4em 0 2em;
}

.footer-head {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.footer-head .vertical {
    width: 1px;
    background-color: var(--bg-color);
    /* height: 100%; */
}

.footer-contacts p {
    margin: 0 0 2em;
}

.footer-contacts p span {
    text-transform: uppercase;
    display: block;
    color: #fff;
}

.footer-contacts p a {
    color: #A5A5AA;
}

.footer-menu nav ul li {
    margin-bottom: 1em;
}

.footer-menu .sub-menu {
    display: none;
}

.footer-menu a {
    color: #fff;
}

.footer-soc {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-icons {
    align-items: baseline;
}

.footer-icons a {
    background-color: #fff;
}

.footer-icons svg path {
    stroke: #000;
}

.footer-icons .fav span {
    display: none;
}

.footer-foot {
    margin-top: 3em;
    font-size: 12px;
    /* display: flex; */
    /* justify-content: space-between; */
    color: #A5A5AA;
}

.footer-foot a {
    color: #A5A5AA;
}

#page-head {
    padding-top: 174px;
}

.breadcrumbs,
.breadcrumbs a {
    font-size: 12px;
    color: #A5A5AA;
}

.products-page_head {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.products-page_head>div {
    flex: 0 0 auto;
    width: calc(50% - 15px);
}

.products-page_head .img {
    text-align: center;
}

.products-page_head img {
    max-width: 100%;
}

.products-page_head .section-head {
    margin-bottom: 2em;
}

.products_wrapper {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.products_wrapper>div {
    flex: 0 0 auto;
    width: calc(25% - 18px);
    max-width: 432px;
}

.product-card .img {
    position: relative;
}

.product-card img {
    width: 100%;
}

.product-card .tofav {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.product-card.liked svg path {
    fill: white;
}

.product-card.white.liked svg path {
    fill: black;
}

.product-card.white .tofav {
    right: unset;
    left: 15px;
}

.product-card .price {
    color: #A5A5AA;
    text-align: center;
}

.product-card .price span {
    padding: 0.5em 0;
    display: inline-block;
}

.product-card .btn {
    margin-top: 0;
}

.product-card .btn a {
    width: 100%;
    font-size: 1em;
    padding: 18px;
}

.product-card .img {
    aspect-ratio: 7 / 8;
}

.product-card.white .img {
    aspect-ratio: 8 / 7;
}

.product-card .img img {
    height: 100%;
    object-fit: cover;
}

.product-card.white .img img {
    height: 100%;
    object-fit: contain;
    object-position: center;
}


/*  */

.single-page_head {
    display: flex;
    gap: 30px;
}

.single-page_head>div {
    flex: 0 0 auto;
    /* width: calc(50% - 15px); */
}

.single-page_head img {
    width: 100%;
}

.single-page_head .section-head {
    margin-bottom: 2em;
}

.single-content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.single-content ul {
    list-style: disc;
    margin-left: 1em;
}

.single-content ul li {
    margin-bottom: 5px;
}

.single-content {
    line-height: 1.5;
}

table {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #dddddd;
    border-collapse: collapse;
}

table th {
    font-weight: bold;
    padding: 5px;
    background: #6473001f;
    border: 1px solid #dddddd;
}

table td {
    border: 1px solid #dddddd;
    padding: 5px;
}

.content-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.25em;
    flex: 0 0 auto;
    width: 100%;
}

.content-col {
    flex: 0 0 auto;
    width: calc(50% - 12px);
}

.category_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
}

.category-card {
    flex: 0 0 auto;
    width: calc(50% - 50px);
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 850px;
    margin: auto;
}

.category-card .tit {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.25em;
}

.category-card .desc {
    max-width: 600px;
}

.category-card .btn a {
    width: 100%;
}

@media screen and (max-width: 1600px) {
    html {
        font-size: 16px;
    }
}

@media screen and (max-width: 1440px) {
    .portfolio_grid {
        grid-template-areas: "pf1 pf1 pf3" "pf2 pf4 pf5" "pf7 pf6 pf5";
    }
    .products-page_head>div {
        width: 100%;
    }
    .products-page_head .left {
        order: 2;
    }
}

@media screen and (max-width: 1199px) {
    .showmenu {
        display: flex;
    }
    .closemenu {
        display: inline-block;
    }
    .header-menu nav {
        position: fixed;
        top: 1em;
        right: -20em;
        background-color: var(--main-color);
        z-index: 9;
        padding: 3em 3em 2em;
        border-radius: 15px;
        transition: 0.25s ease-in-out;
    }
    .opnmenu .header-menu nav {
        right: 1em;
    }
    .header-menu ul {
        flex-direction: column;
    }
    .about_wrapper .container-fluid {
        justify-content: center;
    }
    .about_left,
    .about_right {
        width: 100%;
        max-width: 730px;
    }
    .portfolio_grid {
        grid-template-areas: "pf1 pf1 pf2" "pf6 pf4 pf4" "pf6 pf7 pf7";
    }
    .pf5,
    .pf3 {
        display: none;
    }
    .advantages_wrapper {
        justify-content: center;
        gap: 60px;
    }
    .advantages_wrapper>div {
        flex: 0 0 auto;
        width: calc(100% / 2 - 30px);
    }
    .footer-head {
        flex-direction: column;
        gap: 30px;
    }
    .vertical {
        display: none;
    }
    .single-page_head {
        flex-wrap: wrap;
        justify-content: center;
    }
    .single-page_head>div {
        flex: 0 0 auto;
        width: 100%;
        /* max-width: 850px; */
    }
    .single-page_head .left {
        order: 2;
    }
    .single-page_head .right {
        display: flex;
        flex-direction: column;
    }
    .single-page_head .right .img {
        order: 2;
    }
    .content-col {
        width: 100%;
        max-width: 850px;
    }
    .products_wrapper>div {
        width: calc(33.3331% - 16px);
    }
    .category-card {
        width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .slide-content__text .tit {
        font-size: 3.3em;
    }
    .slide-content__text .pretit {
        font-size: 1.75em;
    }
    .bottom-form_wrapper {
        flex-direction: column;
        max-width: 768px;
        align-items: center;
        margin: auto;
    }
    .bottom-form_wrapper .form-card {
        order: 2;
    }
}

@media screen and (max-width: 768px) {
     :root {
        --divider: 75px;
    }
    .about_right ul li:nth-child(2) {
        margin-left: 0;
    }
    .btn a,
    .subm input {
        font-size: 0.9em;
        padding: 15px;
    }
    .portfolio_grid {
        grid-template-areas: "pf1 pf1 pf1" "pf2 pf4 pf4" "pf7 pf7 pf7";
    }
    .pf6 {
        display: none;
    }
    .advantages_wrapper>div {
        width: 100%;
        max-width: 460px;
    }
    .products_wrapper>div {
        width: calc(50% - 12px);
    }
}

@media screen and (max-width: 576px) {
    .container-fluid {
        padding-right: 1rem;
        padding-left: 1rem;
    }
    .header-top {
        gap: 24px;
        padding: 0.5em 0;
    }
    .cont-icons a {
        width: 35px;
        height: 35px;
    }
    .cont-icons svg {
        width: 22px;
        height: 17px;
    }
    .fav span {
        top: 0px;
        right: 0px;
        background-color: #25ff00;
        color: #25ff00;
    }
    .section-head {
        margin: 1em 0;
    }
    .hero-slide {
        height: 490px;
    }
    .slide-content__text .tit {
        font-size: 2em;
    }
    .slide-content__text .pretit {
        font-size: 1.4em;
    }
    .slide-content__text .btn {
        margin-top: 2em;
        text-align: center;
    }
    .portfolio_grid {
        grid-template-areas: "pf1 pf1 pf1" "pf4 pf4 pf4" "pf7 pf7 pf7";
    }
    .pf2 {
        display: none;
    }
    .bottom-form_wrapper .form-card {
        width: 100%;
    }
    .designer_card {
        flex-direction: column;
        gap: 20px;
    }
    .designer_card .left {
        order: 2;
        width: 100%;
        max-width: unset;
    }
    .designer_card .right {
        width: 100%;
        max-width: unset;
    }
    .products_wrapper {
        justify-content: center;
    }
    .products_wrapper>div {
        width: 100%
    }
}

@media screen and (max-width: 500px) {}

@media screen and (max-width: 400px) {}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " ("attr(href) ")";
    }
    abbr[title]:after {
        content: " ("attr(title) ")";
    }
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}