@font-face {
    font-family: 'Carolina';
    src: url('../fonts/Carolina.woff2') format('woff2'), url('./fonts/Carolina.woff') format('woff'), url('./fonts/Carolina.svg#Carolina') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --main-color: #6B7E94;
    --red-color: #C93B41;
    --font-color: #3A3A3A;
    --divider: 135px;
}

.carolina {
    font-family: 'Carolina';
}

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

body {
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

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

section {
    position: relative;
}

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

 ::selection {
    background: #F3E6FF;
    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;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

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 {
    width: 100%;
    height: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 1420px;
}

svg.icon {
    width: 21px;
    height: 20px;
    fill: #C81928;
}

svg.icon.empty {
    fill: #c5c3c3;
}

@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;
    }
}

main article {
    position: relative;
}

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

.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: var(--red-color);
}

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

#header {
    border-top: 30px solid var(--main-color);
    padding-top: 2em;
    padding-bottom: 2em;
}

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

.header-menu {
    position: relative;
    display: flex;
    gap: 1em;
}

.header-menu:after {
    content: '';
    display: block;
    position: absolute;
    left: -30px;
    top: -20px;
    border-radius: 30px;
    z-index: -1;
    background-color: var(--main-color);
    height: 61px;
    width: 200%;
}

.header-menu ul {
    display: flex;
    gap: 2em;
    align-items: center;
    justify-content: space-between;
}

.header-menu ul li {
    position: relative;
    overflow: hidden;
}

.header-menu ul li:after {
    content: '';
    position: absolute;
    left: -105%;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: 0.25s;
}

.header-menu ul li:hover:after {
    left: 0;
}

.header-menu ul li a {
    text-transform: uppercase;
    color: #fff;
    transition: 0.3s;
}

#hero {
    overflow: hidden;
    background-color: #fff;
}

.hero-slide {
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    width: 100%;
    height: 824px;
}


/* .hero-slide:before {
    content: '';
    display: block;
    width: 40%;
    box-shadow: 5em 0 7em 6em #fff;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: #FFF;
} */

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

.hero-slide .slide-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1em;
}

.hero-slide .slide-content__text {
    background-color: #fff;
    box-shadow: 0 0 5em 7.5em #fff;
    max-width: 730px;
}

.hero-slide .slide-content__text .tit {
    text-transform: uppercase;
    color: #000;
    font-size: 3em;
    font-weight: 700;
    line-height: 1.2;
}

.btn {
    margin: 15px 0;
}

.btn a {
    position: relative;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 30px;
    display: inline-flex;
    gap: 2em;
    font-size: 1.1em;
    padding: 15px 54px;
    border: 1px solid transparent;
    box-sizing: border-box;
    transition: 0.3s;
}

.btn a:after {
    content: url(../img/svg/arrow_w.svg);
    transition: 0.2s;
}

.btn.white a {
    color: #000;
    background-color: #fff;
}

.btn.white a:after {
    content: url(../img/svg/arrow.svg);
}

.btn a:hover {
    background-color: #8097b1;
    border-color: var(--main-color);
}

.btn.white a:hover {
    background-color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 2em #00000027;
}

.btn a:hover:after {
    transform: translateX(5px);
}

.title-head {
    margin-top: 70px;
    margin-bottom: 20px;
}

.title-head .tit.carolina {
    font-size: 6.7em;
    display: flex;
    gap: 18px;
    align-items: baseline;
}

.title-head .desc {
    max-width: 750px;
    margin-bottom: 3em;
}

.decor-line {
    flex: 1;
    height: 2px;
    background-color: var(--font-color);
}

.head-img {
    height: 330px;
}

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

.sales-slide {
    display: flex;
}

.sales-slide__img {
    flex: 0 0 auto;
    height: 544px;
}

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

.sales-slide__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2em;
    background-color: var(--main-color);
    color: #fff;
    min-width: 444px;
}

.sales-slide__text .tit {
    font-size: 2em;
    margin-bottom: 15px;
}

.sales-slide__text .btn {
    margin-top: 2em;
}

.swiper-sales .nav {
    position: absolute;
    display: flex;
    gap: 12px;
    right: calc((100% - 444px) / 2);
    bottom: 1.5em;
}

.swiper-sales .nav>div {
    position: static;
    color: #fff;
}

.swiper-sales .nav>div:after {
    font-size: 1em;
}

.quo-text {
    font-size: 6.7em;
    line-height: 1;
    margin: 1em 0;
    display: flex;
    flex-direction: column;
}

.quo-text span:last-child {
    align-self: flex-end;
}

#director {
    background-color: #fff;
    padding: 3.5em 0;
}

.person {
    display: flex;
    gap: 2em;
    align-items: center;
}

.person__img {
    max-width: 367px;
    max-height: 486px;
    flex: 0 0 auto;
}

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

.person__text .tit {
    font-size: 2em;
    line-height: 1;
}

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

.w100 {
    flex: 0 0 auto;
    width: 100%;
}

.w33 {
    flex: 0 0 auto;
    width: calc(33.33331% - 16px);
}

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

.w40 {
    flex: 0 0 auto;
    width: calc(40% - 12px);
}

.collections-full-card {
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.collections-full-card__img {
    flex: 0 0 auto;
    border-radius: 20px;
    overflow: hidden;
    width: 939px;
    height: 574px;
}

.collections-full-card__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.collections-full-card__text {
    padding: 1.5em 1.5em;
    min-width: 425px;
}

.collections-full-card__text .tit {
    font-size: 2em;
    line-height: 1;
}

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

.collections-card {
    max-width: 450px;
    border-radius: 20px;
    background-color: #fff;
    overflow: hidden;
    margin: auto;
}

.collections-card.wtext {
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
}

.collections-card__text {
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.collections-card__text .tit {
    font-size: 2em;
    line-height: 1;
}

#contact-form {
    background-color: #fff;
    margin: 10em 0;
}

.contact-form {
    display: flex;
    justify-content: flex-end;
}

.form-bg {
    flex: 0 0 auto;
}

.form-wrapper {
    padding: 3em 2em;
    flex: 0 0 auto;
    width: 575px;
}

.form-wrapper .tit {
    font-size: 2em;
    line-height: 1;
    margin-bottom: 2em;
}

.inp input {
    width: 100%;
    border: none;
    box-sizing: border-box;
    border-bottom: 1px solid var(--main-color);
    padding: 10px 10px 10px 24px;
    font-size: 1.2em;
}

.subm {
    margin-top: 3em;
}

.subm input[type="submit"] {
    display: block;
    width: 100%;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 30px;
    font-size: 1.1em;
    padding: 15px 54px;
    border: 1px solid transparent;
    box-sizing: border-box;
    transition: 0.3s;
}

.subm input[type="submit"]:hover {
    background-color: #8097b1;
}

.subm label {
    display: flex;
    margin-top: 1em;
    align-items: baseline;
    gap: 10px;
    cursor: pointer;
    margin: 1em 1em 0;
}

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

.portfolio-card {
    max-width: 450px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 0 #00000023;
}

.portfolio-card__img {
    position: relative;
    width: 100%;
    height: 407px;
    overflow: hidden;
}

.portfolio-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.portfolio-card .pin {
    position: absolute;
    top: 1em;
    right: 1em;
    background-color: var(--red-color);
    color: #fff;
    padding: 10px;
    width: 100px;
    text-align: center;
    line-height: 1;
    border-radius: 40px;
}

.portfolio-card__text {
    padding: 12px 24px 14px;
}

.portfolio-card:hover {
    box-shadow: 0 0 24px #00000023;
}

.portfolio-card:hover .portfolio-card__img img {
    transform: scale(1.02);
}

.portfolio>.btn {
    text-align: center;
    margin-top: 4.5em;
}

#digits {
    color: #fff;
    padding: 1em 0 3em;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 5em;
}

#digits .decor-line {
    background-color: #fff;
}

.num.carolina {
    font-size: 6.7em;
    line-height: 1;
}

.row {
    display: flex;
    margin-bottom: 24px;
    gap: 24px;
}

.digit-block p {
    margin: 0 0 1em;
}

.digits .row:nth-child(1) .desc {
    margin-right: 27em;
    margin-top: 1em;
}

.digits .row:nth-child(2) {
    align-items: center;
}

.digits .row:nth-child(2) .digit-block {
    margin: 2em 6em;
}

.digits .row:nth-child(2) .w50:nth-child(2) .digit-block {
    display: flex;
    align-items: end;
    gap: 30px;
    margin-right: 0;
    margin-left: 18em;
}

.digits .row:nth-child(3) .w50:nth-child(1) .digit-block {
    display: flex;
    align-items: end;
    gap: 30px;
    margin-right: 15em;
}

.digits .row:nth-child(3) .w50:nth-child(2) .digit-block {
    margin-right: 15em;
}

.digits .row:nth-child(4) .digit-block {
    margin-top: 2em;
    margin-left: 21.2em;
}

#testimonials {
    margin: 5em 0;
}

.testimonials-card {
    max-width: 460px;
    margin: auto;
    background-color: #fff;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 470px;
}

.testimonials-card__head {
    display: flex;
    gap: 15px;
    padding: 1.5em 1.5em 0;
    align-items: flex-end;
}

.testimonials-card__head .img {
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
}

.testimonials-card__head .info .name {
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 5px;
}

.testimonials-card__head .info .date {
    color: #949494;
}

.testimonials-card__text {
    padding: 0 1.5em;
    max-height: 270px;
}

.testimonials-card__foot {
    padding: 1em 1.5em;
    background-color: var(--main-color);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonials-card__foot .btn {
    margin: 0;
}

.testimonials-card__foot .btn a {
    padding: 5px 20px;
}

#invite {
    background-color: #fff;
}

.invite-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    padding: 2em 0;
}

.invite__text .tit {
    font-size: 6.7em;
    text-align: right;
}

.invite__text .desc {
    font-size: 2.1em;
    text-align: right;
}

.invite-wrapper .btn {
    text-align: right;
    margin-top: 2em;
}

#footer {
    background-color: var(--main-color);
    padding: 4em 0 1em;
    color: #fff;
}

.footer-wrapper {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.footer-wrapper .tit {
    text-transform: uppercase;
    margin-bottom: 1em;
}

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

.cont-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.cont-row .title {
    color: #C8CFD8;
    width: 58px;
}

.cont-row .value {
    display: flex;
    flex-direction: column;
}

.footer_contacts1 {
    max-width: 350px;
}

.footer_contacts2 ul a {
    text-decoration: underline;
    padding-bottom: 10px;
}

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

.footer-menu a {
    text-decoration: underline;
}

.footer-wrapper .btn a {
    width: 100%;
}

.footer-wrapper .btn a::after {
    display: none;
}

.footer-bottom {
    margin-top: 2em;
    display: flex;
    gap: 30%;
    /* justify-content: space-around; */
    font-size: 0.75em;
    color: #C8CFD8;
}

.footer-bottom a {
    color: #C8CFD8;
}

#totop {
    position: fixed;
    right: 1em;
    bottom: 1em;
}

.collections .text-content {
    text-align: left;
}

.text-content {
    text-align: center;
    margin-top: 5em;
    max-width: 960px;
}

.breadcrumbs {
    margin: 1em 0;
    font-size: 12px;
    opacity: 0.5;
}

.flex-table {
    max-width: 500px;
    margin: 3em 0;
}

.flex-table li {
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
}

.flex-table span {
    flex: 0 0 auto;
}

.flex-table .empty {
    display: block;
    flex: 1;
    border-bottom: 2px dotted;
    margin: 0 8px;
}

.info-block {
    font-size: 2em;
    margin-bottom: 3em;
}

.info-block p {
    margin: 0;
}

.wbtn {
    display: flex;
    align-items: center;
    gap: 24px;
}

.wbtn .btn {
    font-size: 18px;
}

.sale-price {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: baseline;
    line-height: 1;
}

.sale-price .empty {
    display: block;
    flex: 1;
    border-bottom: 2px dotted;
    margin: 0 8px;
}

.sale-price span:first-child {
    font-size: 1.5em;
}

.portfolio .text-content.text-center,
#gallery .text-content.text-center,
#services .text-content.text-center {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--divider);
}

#services .collections-card__text {
    flex-direction: column;
    align-items: flex-start;
    height: 180px;
}

#services .collections-card__text .btn {
    margin-bottom: 0;
}

.full-banner {
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    display: flex;
    justify-content: flex-end;
    padding: 5% 9%;
}

.full-banner__text {
    text-align: center;
}

.full-banner .tit {
    font-size: 6.7em;
}

.full-banner .desc {
    font-size: 2em;
    margin-bottom: 24px;
}

.divider {
    margin: var(--divider) 0;
}

#video-section {
    margin: var(--divider) 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* height: 800px; */
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 16 / 7;
}

#video-section a {
    /* height: 10%; */
    aspect-ratio: 1 / 1;
    cursor: pointer;
    width: 10%;
    border-radius: 50%;
    background-color: #ffffff0f;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: -2px 2px 17px -10px #0000006b;
    transition: 0.2s;
}

#video-section a:hover {
    transform: scale(1.125);
}

#video-section a svg {
    width: 5vw;
    height: 5vw;
}

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

.gal-pic {
    flex: 0 0 auto;
    width: calc(33.3333% - 16px);
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
}

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

.textbg-wrapper {
    max-width: 537px;
    margin-left: auto;
    background-color: var(--main-color);
    color: #fff;
    padding: 4em 7em;
    text-align: center;
}

.textbg-wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.textbg-wrapper ul li:after {
    content: '. . .';
    display: block;
    margin-top: 12px;
}

.textbg-wrapper ul li:last-child:after {
    display: none;
}

.content-section .h2 {
    color: var(--red-color);
    margin: 2em 0 1em;
    text-transform: uppercase;
}

.content-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3em;
    gap: 10px;
}

.content-list li {
    width: 100%;
}

.contacts .content-list {
    gap: 24px;
}

.contacts .content-list li:nth-child(1),
.contacts .content-list li:nth-child(2) {
    width: calc(50% - 12px);
}

.content-list p {
    margin-top: 0;
}

.textpic {
    display: flex;
    align-items: center;
}

.textpic .content {
    flex: 0 0 auto;
    width: 50%;
    background-color: var(--main-color);
    padding: 3em 1em;
    color: #fff;
    position: relative;
}

.textpic .content:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 100%;
    top: 0;
    background-color: var(--main-color);
}

.textpic .content .h2 {
    text-transform: uppercase;
    margin-bottom: 1em;
    font-weight: 400;
}

.textpic .pic img {
    max-width: none;
}


/* swiper I */

.single-portfolio {
    display: flex;
    align-items: center;
}

.gallery-top {
    flex: 0 0 auto;
    width: 70%;
    height: 60vh;
    margin-right: 24px;
}

.gallery-thumbs {
    flex: 0 0 auto;
    width: 30%;
    height: 70vh;
}

.gallery-thumbs .swiper-wrapper {
    flex-direction: column;
}

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

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

.story-wrapper {
    display: flex;
    flex-direction: column;
}

.story-single {
    display: flex;
    gap: 24px;
    position: relative;
    padding-bottom: 2em;
}

.story-date {
    flex: 0 0 140px;
    font-size: 1.5em;
    color: var(--main-color);
    font-weight: 600;
    text-align: center;
    position: relative;
}

.story-date:after {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    left: 50%;
    width: 2px;
    background: var(--main-color);
    background: -webkit-linear-gradient(180deg, var(--main-color) 0%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(180deg, var(--main-color) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(180deg, var(--main-color) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#006699", endColorstr="#00000000", GradientType=0);
}

.story-text {
    border-top: 1px solid #f0f0f1;
    padding-top: 1em;
}

.story-text ul {
    padding-left: 1em;
}

.story-text ul li {
    margin-bottom: 24px;
}


/* swiper O */

@media screen and (max-width: 1440px) {
    html {
        font-size: 16px;
    }
    .hero-slide {
        height: 595px;
    }
    .quo-text {
        font-size: 5.5em;
    }
    .title-head .tit.carolina {
        font-size: 5.5em;
    }
    .person__text .tit {
        font-size: 1.6em;
    }
    .collections-full-card__text .tit {
        font-size: 1.6em;
    }
    .collections-full-card__img {
        width: 660px;
        height: 402px;
    }
    .collections-card__text .tit,
    .sales-slide__text .tit {
        font-size: 1.6em;
    }
    .btn a {
        padding: 10px 28px;
        line-height: 1;
    }
    .portfolio-card__img {
        height: 322px;
    }
    #services .collections-card__text {
        height: auto;
    }
}

@media screen and (max-width: 1199px) {
    #header {
        border-top: 7px solid var(--main-color);
        padding-top: 1em;
        padding-bottom: 1em;
    }
    .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:after {
        left: 1px;
        top: -19px;
        height: 61px;
        width: 61px;
    }
    .header-menu nav ul {
        flex-direction: column;
    }
    #header .logo {
        width: 150px;
    }
    .sales-slide__img {
        height: 330px;
    }
    .collections-card__text .tit,
    .sales-slide__text .tit,
    .person__text .tit,
    .collections-full-card__text .tit {
        font-size: 1.3em;
    }
    .form-wrapper .tit {
        font-size: 1.6em;
    }
    .portfolio-card__img {
        height: 268px;
    }
    .num.carolina {
        font-size: 4.2em;
        white-space: nowrap;
    }
    .digits .row:nth-child(3) .w50:nth-child(1) .digit-block {
        margin-right: 2em;
    }
    .digits .row:nth-child(1) .desc {
        margin-right: 8em;
    }
    .digits .row:nth-child(2) .digit-block {
        margin: 2em 3em;
    }
    .digits .row:nth-child(2) .w50:nth-child(2) .digit-block {
        margin-left: 2em;
    }
    .digits .row:nth-child(3) .w50:nth-child(2) .digit-block {
        margin-right: 5em;
    }
    .digits .row:nth-child(4) .digit-block {
        margin-left: 3em;
    }
    .invite__text .tit {
        font-size: 4.7em;
    }
    .invite__text .desc {
        font-size: 1.2em;
    }
    .full-banner .tit {
        font-size: 5.5em;
    }
    .full-banner .desc {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 992px) {
    .hero-slide .slide-content__text .tit {
        font-size: 2em;
    }
    .hero-slide {
        height: 350px;
    }
    .title-head .tit.carolina {
        font-size: 3.5em;
    }
    .sales-slide__text {
        min-width: auto;
    }
    .quo-text {
        font-size: 3.5em;
    }
    .sales-slide__img {
        height: 300px;
    }
    .person {
        flex-wrap: wrap;
    }
    .person__img {
        max-width: 180px;
    }
    .collections-full-card {
        flex-wrap: wrap;
    }
    .collections-full-card__img {
        order: 1;
        width: 100%;
    }
    .collections-full-card__text {
        order: 2;
    }
    .w33 {
        width: calc(50% - 16px);
    }
    .contact-form {
        position: static;
    }
    #contact-form {
        overflow: hidden;
    }
    .form-bg {
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
    }
    .form-wrapper {
        width: 100%;
        z-index: 3;
        background-color: #ffffffd9;
        box-shadow: 0 0 5em 7.5em #ffffffdb;
        padding: 2em 0;
    }
    .btn a {
        align-items: center;
    }
    .w40 {
        width: calc(50% - 12px);
    }
    .footer-wrapper {
        flex-wrap: wrap;
    }
    .footer-wrapper>div {
        flex: 0 0 auto;
        width: 100%;
    }
    .footer-bottom {
        flex-wrap: wrap;
    }
    .swiper-sales .nav {
        right: 1em;
        bottom: 1em;
    }
    .info-block {
        font-size: 1.2em;
        margin-bottom: 3em;
    }
    .wbtn .btn {
        font-size: 16px;
    }
    .textpic .content {
        width: 100%;
        padding: 2em;
    }
    .textpic .pic,
    .textpic .content:before {
        display: none;
    }
}

@media screen and (max-width: 768px) {
     :root {
        --divider: 75px;
    }
    .sales-slide {
        flex-direction: column-reverse;
    }
    .w33 {
        width: 100%;
    }
    .collections-card__img img {
        width: 100%;
    }
    .row {
        flex-wrap: wrap;
    }
    .w50,
    .w40 {
        width: 100%;
    }
    .digits .digit-block {
        margin: 0 0 1em!important;
    }
    .testimonials-card {
        height: auto;
        gap: 24px;
    }
    .collections-full-card__text {
        min-width: auto;
    }
    .collections-full-card__img {
        height: auto;
    }
    .full-banner .tit {
        font-size: 3em;
    }
    .full-banner .desc {
        font-size: 1em;
    }
    .btn a {
        font-size: 1em;
    }
    .full-banner {
        background-position: center;
    }
}

@media screen and (max-width: 576px) {
    .sales-slide__img {
        height: auto;
    }
    .swiper-sales .nav {
        right: 0.4em;
        bottom: 0em;
    }
    .quo-text {
        text-align: center;
    }
    .story-date {
        flex: 0 0 60px;
        font-size: 1.1em;
    }
    .head-img {
        height: 185px;
    }
    .title-head {
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .full-banner .tit {
        text-shadow: 0 0 #000;
    }
}

@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;
    }
}