img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button, [role=button] {
  cursor: pointer;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

button:focus {
  outline: 0;
}

a {
  display: inline-block;
  cursor: pointer;
  color: inherit;
  text-decoration: inherit;
  -webkit-tap-highlight-color: transparent;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

textarea {
  vertical-align: top;
  overflow: auto;
}

.noto-sans-armenian, body {
  font-family: "Noto Sans Armenian", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

body {
  margin: 0;
  background-color: #f5f5f5;
  color: #6b6153;
}

.sc-flex-between-end {
  justify-content: space-between;
  align-items: flex-end;
}

.sc-flex, .sc-flex-between-start, .sc-flex-between, .sc-flex-center-vertical, .sc-flex-align-center, .sc-flex-center, .sc-flex-between-end {
  display: flex;
}

.sc-flex-center {
  justify-content: center;
  align-items: center;
}

.sc-flex-align-center {
  align-items: center;
}

.sc-flex-center-vertical {
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sc-flex-between {
  justify-content: space-between;
  align-items: center;
}

.sc-flex-between-start {
  justify-content: space-between;
  align-items: flex-start;
}

.sc-title {
  text-align: center;
  max-width: 606px;
  margin: 0 auto 35px;
}
.sc-title h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 16px;
}
.sc-title h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #6b6153;
}
.sc-title p {
  font-size: 24px;
  font-weight: 300;
  color: #6b6153;
}
.sc-title.left {
  text-align: left;
  margin-bottom: 0;
}

.line-btn {
  font-size: 16px;
  color: #ffffff;
  position: relative;
  border: 1px solid #ffffff;
  padding: 13px 33px;
}
.line-btn.dark {
  border-color: #6b6153;
  color: #6b6153;
}

.sc-container {
  margin: auto;
  padding: 0 15px;
}
@media (min-width: 576px) {
  .sc-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .sc-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .sc-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .sc-container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .sc-container {
    max-width: 1230px;
  }
}

.sc-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(24, 24, 31, 0.431372549);
  backdrop-filter: blur(62.0999984741px);
}
.sc-header .sc-logo {
  max-width: 148px;
  margin-right: 27px;
  padding: 40px 0;
}
.sc-header .sc-logo a {
  display: block;
}
.sc-header .sc-navbar {
  display: flex;
  align-items: center;
}
.sc-header .sc-navbar > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(24, 24, 31, 0.431372549);
  backdrop-filter: blur(62.0999984741px);
  width: 100%;
}
@media (min-width: 1200px) {
  .sc-header .sc-navbar > ul {
    display: flex;
    position: relative;
    top: 0;
    left: 0;
    background-color: transparent;
    backdrop-filter: none;
  }
  .sc-header .sc-navbar > ul > li {
    padding: 30px 0;
  }
}
.sc-header .sc-navbar .sc-burger {
  display: block;
  margin-left: 20px;
}
@media (min-width: 1200px) {
  .sc-header .sc-navbar .sc-burger {
    display: none;
  }
}
.sc-header .sc-row {
  align-items: center;
  justify-content: space-between;
}
.sc-header .sc-row li.menu-item-has-children {
  position: relative;
}
.sc-header .sc-row li.menu-item-has-children > a {
  position: relative;
}
.sc-header .sc-row li.menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 12px;
  margin-left: 12px;
}
.sc-header .sc-row li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  display: block;
}
.sc-header .sc-row li:hover .dropdown-menu a {
  padding: 18px 20px;
}
.sc-header .sc-row li .dropdown-menu {
  position: relative;
  display: none;
  padding-left: 40px;
}
@media (min-width: 1200px) {
  .sc-header .sc-row li .dropdown-menu {
    padding-left: 0;
    position: absolute;
    width: 100%;
    background-color: rgba(49, 43, 37, 0.4);
    left: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
  }
}
.sc-header .sc-row li a {
  color: #ffffff;
  text-transform: uppercase;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
}
.sc-header .lang-menu {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
}

.sc-footer {
  background-color: #312b25;
  padding-top: 55px;
}
.sc-footer .sc-flex-between-start {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .sc-footer .sc-flex-between-start {
    flex-wrap: nowrap;
  }
}
.sc-footer .sc-footer-left-info {
  max-width: 100%;
  margin-right: 0;
}
@media (min-width: 992px) {
  .sc-footer .sc-footer-left-info {
    max-width: 450px;
    margin-right: 50px;
  }
}
@media (min-width: 1200px) {
  .sc-footer .sc-footer-left-info {
    max-width: 532px;
    margin-right: 80px;
  }
}
.sc-footer .sc-footer-left-info .sc-logo {
  margin-bottom: 65px;
}
.sc-footer .sc-footer-left-info .sc-logo img {
  margin-bottom: 45px;
}
.sc-footer .sc-footer-left-info .sc-footer-contact {
  margin-bottom: 65px;
}
.sc-footer .sc-footer-left-info .sc-footer-contact .sc-phone {
  padding: 0 15px 15px 0;
}
.sc-footer .sc-footer-left-info .sc-footer-contact .sc-row {
  display: flex;
}
.sc-footer .sc-footer-left-info .sc-social-links {
  margin-top: 65px;
  flex-wrap: wrap;
  gap: 22px;
}
.sc-footer .sc-footer-left-info .sc-social-links li {
  position: relative;
  padding-right: 22px;
}
.sc-footer .sc-footer-left-info .sc-social-links li:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #6b6153;
}
.sc-footer .sc-footer-left-info p, .sc-footer .sc-footer-left-info a {
  font-size: 16px;
  color: #ddccb4;
  font-weight: 300;
  display: block;
}
@media (min-width: 576px) {
  .sc-footer .sc-footer-left-info p, .sc-footer .sc-footer-left-info a {
    font-size: 20px;
  }
}
.sc-footer .sc-footer-gallery {
  flex-wrap: wrap;
  padding: 0 0 30px;
  gap: 20px;
}
@media (min-width: 992px) {
  .sc-footer .sc-footer-gallery {
    padding-top: 65px;
  }
}
.sc-footer .sc-footer-gallery .sc-footer-gallery-item {
  flex-basis: calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
}
.sc-footer .sc-footer-gallery .sc-footer-gallery-item img {
  width: 183px;
  height: 175px;
  object-fit: cover;
}
.sc-footer .sc-copyright {
  color: #ddccb4;
  font-size: 14px;
  padding: 35px 0 25px;
  border-top: 1px solid #ddccb4;
}

.sc-booking-cart-section {
  background-color: #eee8dd;
  text-align: center;
  padding: 64px 30px;
}
@media (min-width: 768px) {
  .sc-booking-cart-section {
    padding: 84px 48px;
  }
}
.sc-booking-cart-section p {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-size: 24px;
  color: #000000;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .sc-booking-cart-section p {
    font-size: 40px;
  }
}
.sc-booking-cart-section img {
  margin: auto;
  display: block;
  max-width: 40px;
}
@media (min-width: 768px) {
  .sc-booking-cart-section img {
    max-width: max-content;
  }
}

.sc-top-image {
  height: 100vh;
  max-height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  .sc-top-image {
    max-height: 800px;
  }
}

.sc-back-page {
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .sc-back-page {
    font-size: 20px;
  }
}

.sc-popup {
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.72);
}
.sc-popup.active {
  display: flex;
}
.sc-popup .sc-popup-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #eee8dd;
  text-align: center;
  width: calc(100% - 40px);
  max-width: 795px;
  padding: 60px 30px 50px;
}
@media (min-width: 768px) {
  .sc-popup .sc-popup-content {
    padding: 115px 100px 60px;
  }
}
.sc-popup .sc-popup-content .close {
  position: absolute;
  top: 44px;
  right: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.sc-popup .sc-popup-content .close svg path {
  stroke: #6b6153;
}
.sc-popup h2 {
  font-weight: 400;
  font-size: 24px;
  color: #6b6153;
  margin-bottom: 17px;
}
.sc-popup p {
  font-weight: 300;
  font-size: 16px;
  color: #6b6153;
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .sc-popup p {
    font-size: 20px;
  }
}
.sc-popup img {
  margin: 0 auto 18px;
  display: block;
  max-width: 63px;
}

body.sc-popup-open {
  overflow: hidden;
}

body.sc-popup-open > *:not(.sc-popup) {
  filter: blur(4px);
  transition: filter 0.3s ease;
}

.pll-switcher-select option[lang],
.lang-menu option[lang] {
  color: initial;
}

.sc-hero {
  position: relative;
  height: 100vh;
  max-height: 1200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.sc-hero .sc-hero-text {
  position: absolute;
  left: 0;
  bottom: 175px;
  max-width: 90%;
  background-color: rgba(114, 81, 65, 0.0705882353);
  backdrop-filter: blur(62.0999984741px);
  padding: 50px 30px 25px;
  color: #ffffff;
  right: 0;
  text-align: center;
  margin: auto;
}
@media (min-width: 576px) {
  .sc-hero .sc-hero-text {
    left: 0;
    bottom: 175px;
    max-width: 500px;
    background-color: rgba(114, 81, 65, 0.0705882353);
    backdrop-filter: blur(62.0999984741px);
    padding: 50px 30px 25px 70px;
    text-align: left;
    color: #ffffff;
    right: auto;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .sc-hero .sc-hero-text {
    max-width: 710px;
    padding: 78px 30px 30px 120px;
  }
}
.sc-hero .sc-hero-text img {
  max-width: 200px;
  margin: auto;
  width: 100%;
}
@media (min-width: 576px) {
  .sc-hero .sc-hero-text img {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .sc-hero .sc-hero-text img {
    max-width: 302px;
  }
}
.sc-hero .sc-hero-text p {
  font-size: 18px;
  margin: 22px 0 15px;
  font-weight: 300;
}
@media (min-width: 992px) {
  .sc-hero .sc-hero-text p {
    font-size: 24px;
    margin: 30px 0 20px;
  }
}

@media (min-width: 1200px) {
  .sc-mirage {
    margin-bottom: -100px;
  }
}
.sc-mirage .sc-row {
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .sc-mirage .sc-row {
    flex-wrap: nowrap;
  }
}
.sc-mirage .sc-mirage-text {
  text-align: center;
  margin-top: 60px;
  max-width: 100%;
  margin-right: 0;
}
@media (min-width: 576px) {
  .sc-mirage .sc-mirage-text {
    text-align: left;
    margin-top: 60px;
    max-width: 320px;
    margin-right: 17px;
  }
}
@media (min-width: 768px) {
  .sc-mirage .sc-mirage-text {
    margin-top: 100px;
    max-width: 400px;
    margin-right: 25px;
  }
}
@media (min-width: 992px) {
  .sc-mirage .sc-mirage-text {
    margin-top: 132px;
    max-width: 590px;
    margin-right: 25px;
  }
}
@media (min-width: 1200px) {
  .sc-mirage .sc-mirage-text {
    margin-right: 177px;
  }
}
.sc-mirage .sc-mirage-text h2 {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-size: 24px;
  color: #6b6153;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .sc-mirage .sc-mirage-text h2 {
    font-size: 28px;
    margin-bottom: 47px;
  }
}
@media (min-width: 992px) {
  .sc-mirage .sc-mirage-text h2 {
    font-size: 32px;
  }
}
.sc-mirage .sc-mirage-text p {
  font-size: 16px;
  font-weight: 300;
  color: #6b6153;
}
@media (min-width: 768px) {
  .sc-mirage .sc-mirage-text p {
    font-size: 20px;
  }
}
.sc-mirage .sc-mirage-img {
  max-width: 305px;
  padding-top: 20px;
  margin: auto;
}
@media (min-width: 576px) {
  .sc-mirage .sc-mirage-img {
    margin: 0;
  }
}

.couture {
  margin: 50px 0;
}
.couture .sc-row {
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .couture .sc-row {
    flex-wrap: nowrap;
  }
}
.couture .sc-couture-img {
  border-top-left-radius: 300px;
  border-top-right-radius: 300px;
  padding: 25px;
  border: 1.5px solid #c2a085;
  border-bottom: none;
  margin-right: 25px;
  max-width: 450px;
}
@media (min-width: 768px) {
  .couture .sc-couture-img {
    margin-right: 50px;
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .couture .sc-couture-img {
    margin-right: 70px;
  }
}
@media (min-width: 1200px) {
  .couture .sc-couture-img {
    margin-right: 115px;
    padding: 50px;
  }
}
.couture .sc-couture-img img {
  border-top-left-radius: 260px;
  border-top-right-radius: 260px;
  border: 1px solid #be9d7f;
  display: block;
}
.couture .sc-couture-text {
  max-width: 100%;
  padding: 30px;
  text-align: center;
}
@media (min-width: 576px) {
  .couture .sc-couture-text {
    max-width: 320px;
    padding: 0;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .couture .sc-couture-text {
    max-width: 350px;
  }
}
@media (min-width: 992px) {
  .couture .sc-couture-text {
    max-width: 450px;
  }
}
@media (min-width: 1200px) {
  .couture .sc-couture-text {
    max-width: 530px;
  }
}
.couture .sc-couture-text h2 {
  font-size: 20px;
  font-weight: 300;
  color: #6b6153;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .couture .sc-couture-text h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }
}
@media (min-width: 992px) {
  .couture .sc-couture-text h2 {
    font-size: 36px;
  }
}
.couture .sc-couture-text p {
  font-size: 16px;
  font-weight: 300;
  color: #6b6153;
}
@media (min-width: 768px) {
  .couture .sc-couture-text p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .couture .sc-couture-text p {
    font-size: 24px;
  }
}

.collection {
  margin: 100px 0;
}
@media (min-width: 1200px) {
  .collection {
    margin: 100px 0 200px;
  }
}
.collection .sc-row {
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .collection .sc-row {
    flex-wrap: nowrap;
  }
}
.collection .sc-collection-text {
  max-width: 100%;
}
@media (min-width: 768px) {
  .collection .sc-collection-text {
    max-width: 330px;
  }
}
@media (min-width: 992px) {
  .collection .sc-collection-text {
    max-width: 430px;
  }
}
@media (min-width: 1200px) {
  .collection .sc-collection-text {
    max-width: 530px;
  }
}
.collection .sc-collection-text h2 {
  font-size: 28px;
  font-weight: 300;
  color: #6b6153;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .collection .sc-collection-text h2 {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .collection .sc-collection-text h2 {
    font-size: 32px;
  }
}
.collection .sc-collection-text p {
  font-size: 20px;
  font-weight: 300;
  color: #6b6153;
  margin-bottom: 34px;
}
.collection .sc-couture-img img {
  width: 100%;
}
.collection .sc-couture-img img:first-child {
  position: relative;
  max-width: 40%;
  min-height: 330px;
  object-fit: cover;
  z-index: 1;
  left: 20%;
  border-radius: 40px;
  height: 100%;
}
@media (min-width: 768px) {
  .collection .sc-couture-img img:first-child {
    position: relative;
    height: 133px;
    object-fit: cover;
    z-index: 1;
    left: 25px;
    border-radius: 40px;
    max-width: 190px;
    min-height: 290px;
  }
}
@media (min-width: 992px) {
  .collection .sc-couture-img img:first-child {
    max-width: 232px;
    min-height: 333px;
    left: 0;
  }
}
@media (min-width: 1200px) {
  .collection .sc-couture-img img:first-child {
    max-width: 332px;
    height: 433px;
    left: 95px;
  }
}
.collection .sc-couture-img img:last-child {
  max-width: 60%;
  max-height: 60%;
  border-radius: 56px;
  width: 100%;
  object-fit: cover;
  position: relative;
  border-radius: 56px;
  right: 0;
}
@media (min-width: 768px) {
  .collection .sc-couture-img img:last-child {
    max-width: 390px;
    max-height: 390px;
    border-radius: 56px;
    width: 590px;
    object-fit: cover;
    position: absolute;
    right: 0;
  }
}
@media (min-width: 992px) {
  .collection .sc-couture-img img:last-child {
    max-width: 490px;
    max-height: 490px;
  }
}
@media (min-width: 1200px) {
  .collection .sc-couture-img img:last-child {
    max-width: 590px;
    max-height: 590px;
  }
}

.sc-categories .sc-title {
  margin-bottom: 70px;
}
.sc-categories .sc-row {
  gap: 20px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .sc-categories .sc-row {
    flex-wrap: nowrap;
  }
}
.sc-categories .cat-box {
  max-width: 100%;
  width: 100%;
}
@media (min-width: 576px) {
  .sc-categories .cat-box {
    max-width: 48%;
  }
}
@media (min-width: 768px) {
  .sc-categories .cat-box {
    max-width: 33.333%;
  }
}
.sc-categories .cat-box a {
  width: 100%;
}
.sc-categories .cat-box img {
  border-top-right-radius: 96px;
  border-top-left-radius: 96px;
  max-width: 100%;
  width: 100%;
  height: 550px;
  object-fit: cover;
}
@media (min-width: 576px) {
  .sc-categories .cat-box img {
    height: 350px;
  }
}
@media (min-width: 992px) {
  .sc-categories .cat-box img {
    height: 547px;
  }
}
.sc-categories .cat-box .cat-name {
  text-align: center;
  color: #000000;
  font-size: 20px;
  font-weight: 300;
  padding: 16px 0;
  border-bottom: 1px solid #000000;
}
@media (min-width: 992px) {
  .sc-categories .cat-box .cat-name {
    font-size: 24px;
  }
}

.sc-booking-home {
  position: relative;
  margin: 138px 0 100px;
}
.sc-booking-home > img {
  max-width: 395px;
  max-height: 390px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 576px) {
  .sc-booking-home > img {
    max-width: 495px;
    max-height: 490px;
  }
}
@media (min-width: 768px) {
  .sc-booking-home > img {
    max-width: 595px;
    max-height: 550px;
  }
}
@media (min-width: 992px) {
  .sc-booking-home > img {
    max-width: 790px;
    max-height: 555px;
  }
}
@media (min-width: 1200px) {
  .sc-booking-home > img {
    max-width: 1200px;
    max-height: 780px;
  }
}
.sc-booking-home:before {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  background-color: #312b25;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 450px;
}
@media (min-width: 576px) {
  .sc-booking-home:before {
    width: 300px;
    height: 450px;
  }
}
@media (min-width: 768px) {
  .sc-booking-home:before {
    width: 455px;
    height: 600px;
  }
}
@media (min-width: 1200px) {
  .sc-booking-home:before {
    width: calc(50% - 120px);
    height: 820px;
  }
}
.sc-booking-home .sc-booking-cart {
  position: absolute;
  right: 0;
  padding: 54px 38px;
  z-index: 1;
  bottom: 60px;
  background-color: #eee8dd;
  text-align: center;
}
@media (min-width: 768px) {
  .sc-booking-home .sc-booking-cart {
    right: 0;
    padding: 54px 38px;
    bottom: 115px;
  }
}
@media (min-width: 1200px) {
  .sc-booking-home .sc-booking-cart {
    right: 185px;
    padding: 84px 48px;
    bottom: 215px;
  }
}
.sc-booking-home .sc-booking-cart p {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-size: 22px;
  color: #000000;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .sc-booking-home .sc-booking-cart p {
    font-size: 40px;
  }
}
.sc-booking-home .sc-booking-cart img {
  margin: auto;
  display: block;
  max-width: 40px;
}
@media (min-width: 768px) {
  .sc-booking-home .sc-booking-cart img {
    max-width: max-content;
  }
}

.sc-about-collections {
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .sc-about-collections {
    margin-bottom: 100px;
  }
}
.sc-about-collections .sc-flex-center {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}
@media (min-width: 768px) {
  .sc-about-collections .sc-flex-center {
    flex-wrap: nowrap;
    gap: 60px;
  }
}
.sc-about-collections img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .sc-about-collections img {
    max-width: 380px;
    height: 480px;
  }
}
@media (min-width: 992px) {
  .sc-about-collections img {
    max-width: 520px;
    height: 640px;
  }
}
@media (min-width: 1200px) {
  .sc-about-collections img {
    max-width: 621px;
    height: 640px;
  }
}
.sc-about-collections .sc-about-collections-text {
  padding-top: 20px;
}
@media (min-width: 992px) {
  .sc-about-collections .sc-about-collections-text {
    padding-top: 40px;
  }
}
.sc-about-collections h2 {
  font-size: 20px;
  font-weight: 500;
  color: #6b6153;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .sc-about-collections h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .sc-about-collections h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
.sc-about-collections h3, .sc-about-collections h4, .sc-about-collections h5, .sc-about-collections h6 {
  font-size: 16px;
  font-weight: 400;
  color: #6b6153;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .sc-about-collections h3, .sc-about-collections h4, .sc-about-collections h5, .sc-about-collections h6 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .sc-about-collections h3, .sc-about-collections h4, .sc-about-collections h5, .sc-about-collections h6 {
    font-size: 20px;
  }
}
.sc-about-collections p {
  font-size: 16px;
  font-weight: 300;
  color: #6b6153;
  line-height: 1.7;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .sc-about-collections p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .sc-about-collections p {
    font-size: 20px;
  }
}

.sc-back-page {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #6b6153;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-top: 40px;
  margin-bottom: 36px;
  transition: opacity 0.2s;
}
.sc-back-page:hover {
  opacity: 0.7;
}
.sc-back-page svg {
  flex-shrink: 0;
  display: inline-block;
}

.sc-single-dress {
  padding: 100px 0 80px;
}
.sc-single-dress .sc-single-dress-inner {
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .sc-single-dress .sc-single-dress-inner {
    flex-wrap: nowrap;
  }
}
.sc-single-dress .sc-single-dress-gallery {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .sc-single-dress .sc-single-dress-gallery {
    flex: 0 0 55%;
    max-width: 55%;
    position: sticky;
    top: 100px;
  }
}
@media (min-width: 1200px) {
  .sc-single-dress .sc-single-dress-gallery {
    flex: 0 0 65%;
    max-width: 65%;
  }
}
.sc-single-dress .sc-single-dress-gallery #sc-product-slider {
  --f-carousel-slide-width: calc((100% - (16px)) / 2);
  --f-carousel-gap: 8px;
}
.sc-single-dress .sc-single-dress-gallery .f-thumbs {
  --f-thumbs-padding-x: 0;
  --f-thumb-border-radius: 0;
}
@media (min-width: 1200px) {
  .sc-single-dress .sc-single-dress-gallery .f-thumbs {
    --f-carousel-slide-width: 24%;
    --f-carousel-slide-height: 150px;
  }
}
.sc-single-dress .sc-single-dress-gallery .f-thumbs .f-thumbs__slide button::after {
  content: none;
}
.sc-single-dress .sc-single-dress-details {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .sc-single-dress .sc-single-dress-details {
    flex: 0 0 45%;
    max-width: 45%;
    padding-top: 20px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 1200px) {
  .sc-single-dress .sc-single-dress-details {
    flex: 0 0 35%;
    max-width: 35%;
  }
}
.sc-single-dress .sc-single-dress-collection {
  display: block;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b7801c;
  margin-bottom: 12px;
}
.sc-single-dress .sc-single-dress-name {
  font-size: 28px;
  font-weight: 300;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .sc-single-dress .sc-single-dress-name {
    font-size: 36px;
  }
}
.sc-single-dress .sc-single-dress-desc {
  font-size: 16px;
  font-weight: 300;
  color: #6b6153;
  line-height: 1.7;
  margin-bottom: 36px;
}
.sc-single-dress .sc-single-dress-specs {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: 40px;
}
.sc-single-dress .sc-spec-row {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 300;
  color: #6b6153;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .sc-single-dress .sc-spec-row {
    flex: 0 0 auto;
    width: 50%;
  }
}
.sc-single-dress .sc-spec-row h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #6B6153;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.sc-single-dress .sc-spec-row p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  text-transform: capitalize;
  color: #6B6153;
  line-break: anywhere;
}
.sc-single-dress .sc-single-dress-cta {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 8px;
}

.sc-related-dresses .sc-related-dresses-heading {
  font-size: 24px;
  font-weight: 300;
  color: #6b6153;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .sc-related-dresses .sc-related-dresses-heading {
    font-size: 28px;
  }
}

.sc-collection-dresses {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .sc-collection-dresses {
    margin-bottom: 150px;
  }
}
.sc-collection-dresses .sc-row {
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 64px;
}
.sc-collection-dresses .sc-row .sc-dress-item {
  flex-basis: 100%;
  max-width: 100%;
}
@media (min-width: 576px) {
  .sc-collection-dresses .sc-row .sc-dress-item {
    flex-basis: calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
  }
}
.sc-collection-dresses .sc-row .sc-dress-item a {
  display: block;
}
.sc-collection-dresses .sc-row .sc-dress-item:hover .image img:last-child {
  opacity: 1;
}
.sc-collection-dresses .sc-row .sc-dress-item .image {
  position: relative;
}
.sc-collection-dresses .sc-row .sc-dress-item .image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.sc-collection-dresses .sc-row .sc-dress-item .image img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.sc-collection-dresses .sc-row .sc-dress-item .name {
  color: #000000;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .sc-collection-dresses .sc-row .sc-dress-item .name {
    font-size: 24px;
    margin-bottom: 14px;
  }
}
.sc-collection-dresses .sc-row .sc-dress-item .description {
  color: #000000;
  font-size: 16px;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-about-us {
  padding-top: 115px;
}
.sc-about-us .sc-flex {
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .sc-about-us .sc-flex {
    flex-wrap: nowrap;
  }
}
.sc-about-us .sc-about-image {
  margin-right: 17px;
  position: relative;
  max-width: 100%;
  flex-basis: 100%;
  margin-bottom: 250px;
}
@media (min-width: 768px) {
  .sc-about-us .sc-about-image {
    max-width: 55%;
    flex-basis: 55%;
    margin-right: 60px;
  }
}
.sc-about-us .sc-about-image img {
  width: 100%;
  height: 515px;
  object-fit: cover;
}
.sc-about-us .sc-about-image .sc-small-image {
  position: absolute;
  top: 63%;
  max-width: 405px;
  height: 343px;
  right: -10px;
  width: 80%;
}
@media (min-width: 768px) {
  .sc-about-us .sc-about-image .sc-small-image {
    right: -20px;
    width: 80%;
  }
}
@media (min-width: 992px) {
  .sc-about-us .sc-about-image .sc-small-image {
    width: 100%;
    right: -30px;
  }
}
@media (min-width: 1200px) {
  .sc-about-us .sc-about-image .sc-small-image {
    right: -40px;
  }
}
.sc-about-us .sc-about-image .sc-small-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.sc-about-us .sc-about-image.bottom {
  margin-right: 0;
  margin-left: 17px;
  padding-top: 160px;
}
@media (min-width: 1200px) {
  .sc-about-us .sc-about-image.bottom {
    margin-left: 60px;
  }
}
.sc-about-us .sc-about-image.bottom .sc-small-image {
  top: 63%;
  left: -20px;
}
@media (min-width: 1200px) {
  .sc-about-us .sc-about-image.bottom .sc-small-image {
    left: -40px;
  }
}
.sc-about-us .sc-about-collections-text {
  max-width: 100%;
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .sc-about-us .sc-about-collections-text {
    max-width: 45%;
    flex-basis: 45%;
  }
}
.sc-about-us .sc-about-collections-text h2 {
  font-size: 28px;
  font-weight: 400;
  color: #6b6153;
  text-transform: uppercase;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .sc-about-us .sc-about-collections-text h2 {
    font-size: 32px;
  }
}
@media (min-width: 992px) {
  .sc-about-us .sc-about-collections-text h2 {
    font-size: 36px;
  }
}
.sc-about-us .sc-about-collections-text h5 {
  font-size: 20px;
  font-weight: 400;
  color: #6b6153;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .sc-about-us .sc-about-collections-text h5 {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .sc-about-us .sc-about-collections-text h5 {
    font-size: 24px;
  }
}
.sc-about-us .sc-about-collections-text p {
  font-size: 18px;
  font-weight: 300;
  color: #6b6153;
  line-height: 1.7;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .sc-about-us .sc-about-collections-text p {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .sc-about-us .sc-about-collections-text p {
    font-size: 24px;
  }
}

.sc-our-process {
  margin-bottom: 80px;
}
.sc-our-process .sc-flex {
  gap: 0;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.sc-our-process h2 {
  font-size: 28px;
  font-weight: 500;
  color: #6b6153;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .sc-our-process h2 {
    font-size: 32px;
  }
}
.sc-our-process .sc-process-column {
  max-width: 100%;
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .sc-our-process .sc-process-column {
    max-width: 33.333%;
    flex-basis: 33.333%;
  }
}
.sc-our-process .sc-process-column .sc-process-column-item {
  margin-bottom: 30px;
  padding: 15px;
}
.sc-our-process .sc-process-column .sc-process-column-item h5 {
  font-size: 22px;
  font-weight: 700;
  color: #6b6153;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .sc-our-process .sc-process-column .sc-process-column-item h5 {
    font-size: 24px;
  }
}
.sc-our-process .sc-process-column .sc-process-column-item p {
  font-size: 18px;
  font-weight: 300;
  color: #6b6153;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .sc-our-process .sc-process-column .sc-process-column-item p {
    font-size: 20px;
  }
}

.sc-contact-us {
  padding: 93px 0;
}
.sc-contact-us .sc-flex {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 992px) {
  .sc-contact-us .sc-flex {
    flex-wrap: nowrap;
  }
}
.sc-contact-us .sc-top-contact-info {
  margin-bottom: 60px;
}
.sc-contact-us .sc-contact-box {
  text-align: center;
  flex-basis: 100%;
  max-width: 100%;
  background-color: #eee8dd;
  padding: 40px 22px;
}
@media (min-width: 576px) {
  .sc-contact-us .sc-contact-box {
    flex-basis: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
@media (min-width: 992px) {
  .sc-contact-us .sc-contact-box {
    flex-basis: calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
  }
}
.sc-contact-us .sc-contact-box img {
  margin: 0 auto 18px;
  max-width: max-content;
  display: block;
}
.sc-contact-us .sc-contact-box h5 {
  font-size: 22px;
  font-weight: 400;
  color: #6b6153;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .sc-contact-us .sc-contact-box h5 {
    font-size: 24px;
  }
}
.sc-contact-us .sc-contact-box p {
  margin: 0 0 20px;
}
.sc-contact-us .sc-contact-box p, .sc-contact-us .sc-contact-box a, .sc-contact-us .sc-contact-box span {
  font-size: 16px;
  font-weight: 400;
  color: #6b6153;
}
.sc-contact-us .sc-contact-box a {
  text-decoration: underline;
}
.sc-contact-us .sc-contact-box a:hover {
  opacity: 0.75;
}
.sc-contact-us .sc-contact-form {
  max-width: 100%;
  flex-basis: 100%;
  background-color: #eee8dd;
  padding: 30px 50px;
}
@media (min-width: 992px) {
  .sc-contact-us .sc-contact-form {
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media (min-width: 1200px) {
  .sc-contact-us .sc-contact-form {
    padding: 30px 102px;
  }
}
.sc-contact-us .sc-contact-form h2 {
  font-size: 24px;
  margin-bottom: 45px;
  font-weight: 300;
  color: #6b6153;
  text-align: center;
}
.sc-contact-us .sc-contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 15px;
}
.sc-contact-us .sc-contact-form form input:not([type=submit], [type=checkbox]),
.sc-contact-us .sc-contact-form form textarea {
  width: 100%;
  display: block;
  border: 1px solid #6b6153;
  background-color: transparent;
  min-height: 42px;
  padding: 10px;
  color: #6b6153;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.sc-contact-us .sc-contact-form form input:not([type=submit], [type=checkbox])::placeholder,
.sc-contact-us .sc-contact-form form textarea::placeholder {
  color: #a6a6a6;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.sc-contact-us .sc-contact-form form input:not([type=submit], [type=checkbox]):focus,
.sc-contact-us .sc-contact-form form textarea:focus {
  border-color: #b7801c;
}
.sc-contact-us .sc-contact-form form textarea {
  min-height: 130px;
  resize: vertical;
}
.sc-contact-us .sc-contact-form form input[type=submit],
.sc-contact-us .sc-contact-form form .wpcf7-submit {
  display: block;
  width: 100%;
  border: 1px solid #6b6153;
  background-color: transparent;
  color: #6b6153;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 10px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background-color 0.2s, color 0.2s;
  margin-top: 15px;
}
.sc-contact-us .sc-contact-form form input[type=submit]:hover,
.sc-contact-us .sc-contact-form form .wpcf7-submit:hover {
  background-color: #6b6153;
  color: #fff;
}
.sc-contact-us .sc-contact-form form input[type=submit]:disabled,
.sc-contact-us .sc-contact-form form .wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.sc-contact-us .sc-contact-form form .wpcf7-not-valid-tip {
  font-size: 13px;
  color: #c0392b;
  margin-top: 4px;
  display: block;
}
.sc-contact-us .sc-contact-form form .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #6b6153;
  color: #6b6153;
}
.sc-contact-us .sc-contact-form form .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-color: #27ae60;
  color: #27ae60;
}
.sc-contact-us .sc-contact-form form .wpcf7-response-output.wpcf7-mail-sent-ng, .sc-contact-us .sc-contact-form form .wpcf7-response-output.wpcf7-aborted {
  border-color: #c0392b;
  color: #c0392b;
}
.sc-contact-us .sc-contact-form form .wpcf7-response-output.wpcf7-spam-blocked {
  border-color: #e67e22;
  color: #e67e22;
}
.sc-contact-us .sc-contact-image {
  max-width: 100%;
  flex-basis: 100%;
  max-height: max-content;
}
@media (min-width: 992px) {
  .sc-contact-us .sc-contact-image {
    max-width: 50%;
    flex-basis: 50%;
  }
}
.sc-contact-us .sc-contact-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.sc-auth .sc-auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border-bottom: 1px solid #6b6153;
}
.sc-auth .sc-auth-tab {
  font-size: 16px;
  font-weight: 400;
  color: #a6a6a6;
  padding: 0 0 12px;
  margin-right: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: color 0.25s;
}
.sc-auth .sc-auth-tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #b7801c;
  transform: scaleX(0);
  transition: transform 0.25s;
}
.sc-auth .sc-auth-tab.active {
  color: #6b6153;
}
.sc-auth .sc-auth-tab.active::after {
  transform: scaleX(1);
}
.sc-auth .sc-auth-form input[type=text],
.sc-auth .sc-auth-form input[type=email],
.sc-auth .sc-auth-form input[type=password] {
  width: 100%;
  display: block;
  border: 1px solid #6b6153;
  background-color: transparent;
  margin-bottom: 15px;
  min-height: 42px;
  padding: 10px;
  color: #6b6153;
  outline: none;
  transition: border-color 0.2s;
}
.sc-auth .sc-auth-form input[type=text]::placeholder,
.sc-auth .sc-auth-form input[type=email]::placeholder,
.sc-auth .sc-auth-form input[type=password]::placeholder {
  color: #a6a6a6;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.sc-auth .sc-auth-form input[type=text]:focus,
.sc-auth .sc-auth-form input[type=email]:focus,
.sc-auth .sc-auth-form input[type=password]:focus {
  border-color: #b7801c;
}
.sc-auth .sc-auth-form.sc-auth-form--hidden {
  display: none;
}
.sc-auth .sc-auth-submit {
  width: 100%;
  margin-top: 10px;
  padding: 13px 33px;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #ffffff;
  background-color: #6b6153;
  border: 1px solid #6b6153;
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s;
}
.sc-auth .sc-auth-submit:hover {
  background-color: transparent;
  color: #6b6153;
}
.sc-auth .sc-auth-submit:disabled, .sc-auth .sc-auth-submit.loading {
  opacity: 0.6;
  cursor: not-allowed;
}
.sc-auth .sc-auth-message {
  font-size: 14px;
  margin-bottom: 16px;
  min-height: 20px;
}
.sc-auth .sc-auth-message.error {
  color: #c0392b;
}
.sc-auth .sc-auth-message.success {
  color: #27ae60;
}

.sc-related-collection {
  padding: 80px 0;
}
.sc-related-collection h2 {
  font-size: 28px;
  font-weight: 300;
  color: #6b6153;
  margin-bottom: 40px;
  text-align: center;
}
.sc-related-collection .sc-flex {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.sc-related-collection .sc-sc-related-item {
  flex: 1 1 calc(50% - 10px);
  max-width: calc(50% - 10px);
}
@media (min-width: 768px) {
  .sc-related-collection .sc-sc-related-item {
    flex: 1 1 calc(25% - 15px);
    max-width: calc(25% - 15px);
  }
}
.sc-related-collection .sc-sc-related-item a {
  display: block;
  position: relative;
}
.sc-related-collection .sc-sc-related-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.sc-related-collection .sc-sc-related-item .sc-sc-related-name {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 300;
  color: #6b6153;
  letter-spacing: 0.08em;
}

.sc-new-fashion-shows {
  padding-top: 55px;
}
.sc-new-fashion-shows .sc-news-title {
  text-align: center;
  max-width: 693px;
  margin: 0 auto 85px;
}
.sc-new-fashion-shows .sc-news-title h2 {
  font-size: 32px;
  font-weight: 500;
  color: #6b6153;
  text-transform: uppercase;
  margin-bottom: 13px;
}
.sc-new-fashion-shows .sc-news-title p {
  font-size: 16px;
  font-weight: 300;
  color: #6b6153;
}
@media (min-width: 576px) {
  .sc-new-fashion-shows .sc-news-title p {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .sc-new-fashion-shows .sc-news-title p {
    font-size: 24px;
  }
}
.sc-new-fashion-shows .sc-new-fashion-content {
  background-color: rgba(221, 204, 180, 0.431372549);
  margin-bottom: 85px;
  padding: 145px 0 85px;
}
.sc-new-fashion-shows .sc-new-fashion-content .sc-flex {
  gap: 20px;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .sc-new-fashion-shows .sc-new-fashion-content .sc-flex {
    flex-wrap: nowrap;
  }
}
.sc-new-fashion-shows .sc-new-fashion-content .sc-new-fashion-content-item {
  flex-basis: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .sc-new-fashion-shows .sc-new-fashion-content .sc-new-fashion-content-item {
    flex-basis: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
@media (min-width: 992px) {
  .sc-new-fashion-shows .sc-new-fashion-content .sc-new-fashion-content-item {
    flex-basis: calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
  }
}
.sc-new-fashion-shows .sc-new-fashion-content .sc-new-fashion-content-item img {
  height: 503px;
  object-fit: cover;
  margin-bottom: 16px;
  width: 100%;
}
.sc-new-fashion-shows .sc-new-fashion-content .sc-new-fashion-content-item h5 {
  word-wrap: break-word;
  color: #6b6153;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 6px;
}
@media (min-width: 1200px) {
  .sc-new-fashion-shows .sc-new-fashion-content .sc-new-fashion-content-item h5 {
    font-size: 18px;
  }
}
.sc-new-fashion-shows .sc-new-fashion-content .sc-new-fashion-content-item a {
  word-wrap: break-word;
  color: #6b6153;
  font-size: 16px;
  text-align: center;
  text-decoration: underline;
  display: block;
}
@media (min-width: 1200px) {
  .sc-new-fashion-shows .sc-new-fashion-content .sc-new-fashion-content-item a {
    font-size: 18px;
  }
}

.sc-new-collection .sc-collections-title {
  text-align: center;
  margin-bottom: 75px;
}
.sc-new-collection .sc-collections-title h2 {
  text-transform: uppercase;
  font-size: 24px;
  color: #6b6153;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .sc-new-collection .sc-collections-title h2 {
    margin-bottom: 30px;
  }
}
.sc-new-collection .sc-collections-title p {
  font-size: 20px;
  color: #6b6153;
  font-weight: 300;
}
@media (min-width: 992px) {
  .sc-new-collection .sc-collections-title p {
    font-size: 24px;
  }
}
.sc-new-collection .sc-flex {
  gap: 18px;
  flex-wrap: wrap;
}
.sc-new-collection .sc-flex .sc-new-collection-item {
  max-width: 100%;
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .sc-new-collection .sc-flex .sc-new-collection-item {
    max-width: calc(50% - 9px);
    flex-basis: calc(50% - 9px);
  }
}
.sc-new-collection .sc-flex .sc-new-collection-item .image img {
  width: 100%;
  height: 816px;
  object-fit: cover;
}
.sc-new-collection .sc-flex .sc-new-collection-item .name {
  font-size: 18px;
  color: #6b6153;
  font-weight: 300;
  margin: 16px 0;
  border-bottom: 1px solid #6b6153;
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  .sc-new-collection .sc-flex .sc-new-collection-item .name {
    font-size: 24px;
  }
}
.sc-new-collection .see-more {
  width: 224px;
  margin: 80px auto;
  text-align: center;
}

.sc-single-post {
  padding: 40px 0 80px;
}
@media (min-width: 992px) {
  .sc-single-post {
    padding: 60px 0 100px;
  }
}
.sc-single-post .sc-post-article {
  max-width: 780px;
  margin: 0 auto;
}
.sc-single-post .sc-post-header {
  margin-bottom: 48px;
  border-bottom: 1px solid #e0d8cc;
  padding-bottom: 32px;
}
.sc-single-post .sc-post-date {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b7801c;
  margin-bottom: 16px;
}
.sc-single-post .sc-post-title {
  font-size: 26px;
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .sc-single-post .sc-post-title {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .sc-single-post .sc-post-title {
    font-size: 44px;
  }
}
.sc-single-post .sc-post-source {
  display: inline-block;
  font-size: 13px;
  color: #6b6153;
  text-decoration: underline;
  letter-spacing: 0.05em;
}
.sc-single-post .sc-post-content {
  font-size: 16px;
  font-weight: 300;
  color: #6b6153;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .sc-single-post .sc-post-content {
    font-size: 18px;
  }
}
.sc-single-post .sc-post-content p {
  margin-bottom: 24px;
}
.sc-single-post .sc-post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 32px auto;
}
.sc-single-post .sc-post-content h2, .sc-single-post .sc-post-content h3, .sc-single-post .sc-post-content h4 {
  font-weight: 400;
  color: #000;
  margin: 32px 0 16px;
}

.sc-related-posts {
  max-width: 100%;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #e0d8cc;
}
.sc-related-posts .sc-related-posts-heading {
  font-size: 22px;
  font-weight: 300;
  color: #6b6153;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .sc-related-posts .sc-related-posts-heading {
    font-size: 28px;
  }
}
.sc-related-posts .sc-flex {
  gap: 20px;
  flex-wrap: wrap;
}
.sc-related-posts .sc-flex .sc-new-fashion-content-item {
  flex-basis: 100%;
  max-width: 100%;
}
@media (min-width: 576px) {
  .sc-related-posts .sc-flex .sc-new-fashion-content-item {
    flex-basis: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
@media (min-width: 992px) {
  .sc-related-posts .sc-flex .sc-new-fashion-content-item {
    flex-basis: calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
  }
}

.sc-auth-dashboard {
  padding: 40px 0;
}
.sc-auth-dashboard h2 {
  font-size: 28px;
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.sc-auth-dashboard .sc-auth-email {
  font-size: 16px;
  color: #6b6153;
  font-weight: 300;
  margin-bottom: 36px;
}

.sc-404 {
  padding: 80px 0 120px;
  text-align: center;
}
@media (min-width: 992px) {
  .sc-404 {
    padding: 120px 0 180px;
  }
}
.sc-404 .sc-404-code {
  font-size: 80px;
  font-weight: 300;
  color: #b7801c;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
@media (min-width: 992px) {
  .sc-404 .sc-404-code {
    font-size: 140px;
  }
}
.sc-404 .sc-404-desc {
  font-size: 16px;
  font-weight: 300;
  color: #6b6153;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .sc-404 .sc-404-desc {
    font-size: 20px;
  }
}
.sc-404 .line-btn {
  display: inline-block;
}
