@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "fonde";
  src: url("../fonts/fonde.woff2") format("woff2"), url("../fonts/fonde.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}

body {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  -moz-font-feature-settings: "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.f-carousel {
  --f-carousel-spacing: 28px;
  --f-button-next-pos: 30px;
  --f-button-prev-pos: 30px;
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border-radius: 100px;
  --f-button-color: $color-green-1;
  --f-button-hover-color: #fff;
  --f-button-active-color: #fff;
  --f-button-bg: rgba(0, 0, 0, 0.5);
  --f-button-hover-bg: rgba(0, 0, 0, 0.8);
  --f-button-active-bg: rgba(0, 0, 0, 0.8);
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  --f-button-svg-stroke-width: 3;
}
.f-carousel .f-progress {
  display: none !important;
}
.f-carousel#carouselProject {
  --f-carousel-spacing: 28px;
  --f-carousel-slide-width: calc((100% - 1vw) / 2);
}
.f-carousel#carouselProject .card {
  height: max-content;
  overflow: hidden;
  position: relative;
}
.f-carousel#carouselProject .card::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(82, 66, 56, 0.5);
}
.f-carousel#carouselProject .card img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center;
}
.f-carousel#carouselProject .card .card-img-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}
.f-carousel#carouselProject .card .card-img-overlay h2 {
  width: 100%;
  max-width: 152px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(24px + 8 * (100vw - 320px) / 980);
  color: #fffff7;
  margin-bottom: 24px;
  line-height: 100%;
  text-align: center;
}
@media screen and (max-width: 320px) {
  .f-carousel#carouselProject .card .card-img-overlay h2 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1300px) {
  .f-carousel#carouselProject .card .card-img-overlay h2 {
    font-size: 32px;
  }
}
.f-carousel#carouselProject .card .card-img-overlay .button {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #ffffff;
}
.f-carousel#carouselProject .f-carousel__nav button {
  background-color: rgba(255, 255, 247, 0.4);
  color: #5e6d3e;
}
.f-carousel#carouselProject .f-carousel__nav button span {
  font-size: 20px;
  pointer-events: none;
}
.f-carousel#carouselProject .f-carousel__nav button.is-next {
  right: -4vw;
}
.f-carousel#carouselProject .f-carousel__nav button.is-prev {
  left: -4vw;
}
.f-carousel#carouselProject .f-carousel__nav button:hover {
  background-color: rgba(255, 255, 247, 0.7);
}
@media (max-width: 768px) {
  .f-carousel#carouselProject {
    --f-carousel-slide-width: 100%;
  }
  .f-carousel#carouselProject .f-carousel__nav button.is-next {
    right: 4px;
  }
  .f-carousel#carouselProject .f-carousel__nav button.is-prev {
    left: 4px;
  }
}
.f-carousel#carouselSingle {
  --f-carousel-spacing: 28px;
  --f-carousel-slide-width: calc((100% - 3vw) / 3);
}
.f-carousel#carouselSingle .card {
  height: max-content;
  overflow: hidden;
  position: relative;
}
.f-carousel#carouselSingle .card::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(82, 66, 56, 0.5);
}
.f-carousel#carouselSingle .card img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center;
}
.f-carousel#carouselSingle .card .card-img-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}
.f-carousel#carouselSingle .card .card-img-overlay h2 {
  width: 100%;
  max-width: 152px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(24px + 8 * (100vw - 320px) / 980);
  color: #fffff7;
  margin-bottom: 24px;
  line-height: 100%;
  text-align: center;
}
@media screen and (max-width: 320px) {
  .f-carousel#carouselSingle .card .card-img-overlay h2 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1300px) {
  .f-carousel#carouselSingle .card .card-img-overlay h2 {
    font-size: 30px;
  }
}
.f-carousel#carouselSingle .card .card-img-overlay .button {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #ffffff;
}
.f-carousel#carouselSingle .f-carousel__nav button {
  background-color: rgba(255, 255, 247, 0.4);
  color: #5e6d3e;
}
.f-carousel#carouselSingle .f-carousel__nav button span {
  font-size: 20px;
  pointer-events: none;
}
.f-carousel#carouselSingle .f-carousel__nav button.is-next {
  right: -4vw;
}
.f-carousel#carouselSingle .f-carousel__nav button.is-prev {
  left: -4vw;
}
.f-carousel#carouselSingle .f-carousel__nav button:hover {
  background-color: rgba(255, 255, 247, 0.7);
}
@media (max-width: 992px) {
  .f-carousel#carouselSingle {
    --f-carousel-slide-width: calc((100% - 3vw) / 2);
  }
}
@media (max-width: 768px) {
  .f-carousel#carouselSingle {
    --f-carousel-slide-width: 100%;
  }
}
.f-carousel#carouselShop {
  --f-carousel-spacing: 28px;
  --f-carousel-slide-width: calc((100% - 3vw) / 3);
}
.f-carousel#carouselShop .card {
  height: max-content;
  overflow: hidden;
  position: relative;
  background-color: transparent;
}
.f-carousel#carouselShop .card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
}
.f-carousel#carouselShop .card .card-body {
  padding: 24px 0px 32px;
  background-color: rgba(89, 89, 89, 0.02);
}
.f-carousel#carouselShop .card .card-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(18px + 6 * (100vw - 320px) / 980);
  line-height: 110%;
  text-align: center;
  color: #595959;
  margin-bottom: 8px;
}
@media screen and (max-width: 320px) {
  .f-carousel#carouselShop .card .card-body h2 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1300px) {
  .f-carousel#carouselShop .card .card-body h2 {
    font-size: 24px;
  }
}
.f-carousel#carouselShop .card .card-body p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: calc(13px + 1 * (100vw - 320px) / 980);
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5e6d3e;
  margin-bottom: 24px;
}
@media screen and (max-width: 320px) {
  .f-carousel#carouselShop .card .card-body p {
    font-size: 13px;
  }
}
@media screen and (min-width: 1300px) {
  .f-carousel#carouselShop .card .card-body p {
    font-size: 14px;
  }
}
.f-carousel#carouselShop .card .card-body a {
  font-weight: 700;
}
.f-carousel#carouselShop .f-carousel__nav button {
  background-color: rgba(255, 255, 247, 0.4);
  color: #5e6d3e;
}
.f-carousel#carouselShop .f-carousel__nav button span {
  font-size: 20px;
  pointer-events: none;
}
.f-carousel#carouselShop .f-carousel__nav button.is-next {
  right: -3vw;
}
.f-carousel#carouselShop .f-carousel__nav button.is-prev {
  left: -4vw;
}
.f-carousel#carouselShop .f-carousel__nav button:hover {
  background-color: rgba(255, 255, 247, 0.7);
}
@media (max-width: 992px) {
  .f-carousel#carouselShop {
    --f-carousel-slide-width: calc((100% - 3vw) / 2);
  }
}
@media (max-width: 768px) {
  .f-carousel#carouselShop {
    --f-carousel-slide-width: 100%;
  }
}
.f-carousel#singleShop {
  width: 100%;
  max-width: 550px;
  height: 100%;
  max-height: 680px;
  overflow: hidden;
  position: relative;
}
.f-carousel#singleShop .f-carousel__slide {
  flex: 0 0 100%;
}
.f-carousel#singleShop .f-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.f-carousel#singleShop .carousel__thumbs {
  width: 100%;
  position: absolute;
  bottom: 32px;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.f-carousel#singleShop .carousel__thumbs .carousel__thumb {
  width: 64px;
  height: 64px;
  overflow: hidden;
  margin: 0 5px;
  cursor: pointer;
  border: 1.5px solid transparent;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
.f-carousel#singleShop .carousel__thumbs .carousel__thumb img {
  width: 100%;
  display: block;
}
.f-carousel#singleShop .carousel__thumbs .carousel__thumb.is-selected {
  border-color: #ffffff;
}
@media (max-width: 768px) {
  .f-carousel#singleShop {
    margin: 0;
  }
}
.f-carousel#carouselPosts {
  --f-carousel-spacing: 28px;
  --f-carousel-slide-width: calc((100% - 3vw) / 3);
}
.f-carousel#carouselPosts .f-carousel__nav button {
  background-color: rgba(220, 194, 163, 0.2);
  color: #5e6d3e;
}
.f-carousel#carouselPosts .f-carousel__nav button span {
  font-size: 20px;
  pointer-events: none;
}
.f-carousel#carouselPosts .f-carousel__nav button.is-next {
  right: -4vw;
}
.f-carousel#carouselPosts .f-carousel__nav button.is-prev {
  left: -4vw;
}
.f-carousel#carouselPosts .f-carousel__nav button:hover {
  background-color: rgba(220, 194, 163, 0.4);
}
@media (max-width: 992px) {
  .f-carousel#carouselPosts {
    --f-carousel-slide-width: calc((100% - 3vw) / 2);
  }
}
@media (max-width: 768px) {
  .f-carousel#carouselPosts {
    --f-carousel-slide-width: 100%;
  }
}
.f-carousel#carouselPortfolio {
  width: 100%;
  height: 740px;
  border: 1.5px solid #fffff7;
  -webkit-box-shadow: 0px 50px 48px -40px rgba(89, 67, 42, 0.2);
  -moz-box-shadow: 0px 50px 48px -40px rgba(89, 67, 42, 0.2);
  box-shadow: 0px 50px 48px -40px rgba(89, 67, 42, 0.2);
  margin-bottom: 16px;
}
.f-carousel#carouselPortfolio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 992px) {
  .f-carousel#carouselPortfolio {
    height: 740px;
  }
}
@media (max-width: 768px) {
  .f-carousel#carouselPortfolio {
    height: 450px;
  }
}

.btn-close {
  width: 32px;
  height: 32px;
  background-color: rgba(220, 194, 163, 0.25);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  color: #595959;
  opacity: 1;
  box-shadow: none !important;
}
.btn-close:hover {
  background-color: rgba(220, 194, 163, 0.5);
}

.backMenu {
  cursor: pointer;
  position: absolute;
  left: -51px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(220, 194, 163, 0.25);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  color: #595959;
  opacity: 1;
  box-shadow: none !important;
}
.backMenu:hover {
  background-color: rgba(220, 194, 163, 0.5);
}
@media (max-width: 768px) {
  .backMenu {
    left: 0px;
  }
}

.button-link {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #595959;
}
.button-link span {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: rgba(220, 194, 163, 0.2);
  backdrop-filter: blur(6.5px);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.btn-seach {
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(12px + 3 * (100vw - 320px) / 980);
  line-height: 17px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #595959;
  text-decoration: none;
  background-color: rgba(220, 194, 163, 0.2);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
@media screen and (max-width: 320px) {
  .btn-seach {
    font-size: 12px;
  }
}
@media screen and (min-width: 1300px) {
  .btn-seach {
    font-size: 15px;
  }
}
.btn-seach span {
  font-size: 20px;
}
.btn-seach:hover {
  background-color: rgba(220, 194, 163, 0.4);
}

.button {
  width: 100%;
  max-width: max-content;
  display: flex;
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(12px + 3 * (100vw - 320px) / 980);
  line-height: 17px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 11px 31px -8px rgba(204, 183, 159, 0.3);
  -moz-box-shadow: 0px 11px 31px -8px rgba(204, 183, 159, 0.3);
  box-shadow: 0px 11px 31px -8px rgba(204, 183, 159, 0.3);
}
@media screen and (max-width: 320px) {
  .button {
    font-size: 12px;
  }
}
@media screen and (min-width: 1300px) {
  .button {
    font-size: 15px;
  }
}
.button:hover {
  color: #000;
}

footer .information p, footer .information p a, .copy p, .copy p a, .offcanvas#offcanvasNav .offcanvas-footer .information p a, .offcanvas#offcanvasNav .offcanvas-footer .information p, .offcanvas#offcanvasNav .offcanvas-footer .social li a {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(10px + 1 * (100vw - 320px) / 980);
  line-height: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #595959;
}
@media screen and (max-width: 320px) {
  footer .information p, footer .information p a, .copy p, .copy p a, .offcanvas#offcanvasNav .offcanvas-footer .information p a, .offcanvas#offcanvasNav .offcanvas-footer .information p, .offcanvas#offcanvasNav .offcanvas-footer .social li a {
    font-size: 10px;
  }
}
@media screen and (min-width: 1300px) {
  footer .information p, footer .information p a, .copy p, .copy p a, .offcanvas#offcanvasNav .offcanvas-footer .information p a, .offcanvas#offcanvasNav .offcanvas-footer .information p, .offcanvas#offcanvasNav .offcanvas-footer .social li a {
    font-size: 11px;
  }
}

.hidden {
  display: none;
}

.offcanvas#offcanvasNav {
  width: 100%;
  max-width: 40vw;
}
.offcanvas#offcanvasNav .offcanvas-header {
  padding: 40px 40px 20px 20px;
}
.offcanvas#offcanvasNav .offcanvas-body {
  display: flex;
  align-items: center;
  padding-left: clamp(20px, 7vw, 92px);
}
.offcanvas#offcanvasNav .offcanvas-body .navMvl {
  gap: 16px;
  list-style: none !important;
}
.offcanvas#offcanvasNav .offcanvas-body .navMvl > li > a {
  text-decoration: none !important;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: calc(30px + 10 * (100vw - 320px) / 980);
  line-height: 120%;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .offcanvas#offcanvasNav .offcanvas-body .navMvl > li > a {
    font-size: 30px;
  }
}
@media screen and (min-width: 1300px) {
  .offcanvas#offcanvasNav .offcanvas-body .navMvl > li > a {
    font-size: 40px;
  }
}
.offcanvas#offcanvasNav .offcanvas-body .navMvl > li.menu-item-has-children {
  position: relative;
}
.offcanvas#offcanvasNav .offcanvas-body .navMvl > li.menu-item-has-children > a.active {
  display: none;
}
.offcanvas#offcanvasNav .offcanvas-body .navMvl > li.menu-item-has-children > a::after {
  content: "\e941";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  font-variation-settings: "FILL" 0, "wght" 100, "GRAD" 0, "opsz" 24;
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  background-color: rgba(220, 194, 163, 0.25);
  color: #595959;
  margin: auto;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
.offcanvas#offcanvasNav .offcanvas-body .navMvl > li.menu-item-has-children .sub-menu {
  padding: 0;
  list-style: none;
  display: none;
  gap: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  height: max-content;
  flex-flow: nowrap;
  text-wrap: nowrap;
}
@media (max-width: 768px) {
  .offcanvas#offcanvasNav .offcanvas-body .navMvl > li.menu-item-has-children .sub-menu {
    width: 340px;
    text-wrap: wrap;
  }
}
.offcanvas#offcanvasNav .offcanvas-body .navMvl > li.menu-item-has-children .sub-menu.menu-show {
  display: grid;
}
.offcanvas#offcanvasNav .offcanvas-body .navMvl > li.menu-item-has-children .sub-menu li:first-child {
  position: relative;
}
@media (max-width: 768px) {
  .offcanvas#offcanvasNav .offcanvas-body .navMvl > li.menu-item-has-children .sub-menu li:first-child {
    padding-left: 40px;
  }
}
.offcanvas#offcanvasNav .offcanvas-body .navMvl > li.menu-item-has-children .sub-menu li a {
  text-decoration: none !important;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(13px + 2 * (100vw - 320px) / 980);
  line-height: 150%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(89, 89, 89, 0.7);
}
@media screen and (max-width: 320px) {
  .offcanvas#offcanvasNav .offcanvas-body .navMvl > li.menu-item-has-children .sub-menu li a {
    font-size: 13px;
  }
}
@media screen and (min-width: 1300px) {
  .offcanvas#offcanvasNav .offcanvas-body .navMvl > li.menu-item-has-children .sub-menu li a {
    font-size: 15px;
  }
}
.offcanvas#offcanvasNav .offcanvas-body .navMvl > li.menu-item-has-children .sub-menu li a:hover {
  color: #595959;
}
.offcanvas#offcanvasNav .offcanvas-body .navMvl > li.menu-item-has-children .sub-menu li a:not([href]) {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: calc(30px + 10 * (100vw - 320px) / 980);
  line-height: 120%;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .offcanvas#offcanvasNav .offcanvas-body .navMvl > li.menu-item-has-children .sub-menu li a:not([href]) {
    font-size: 30px;
  }
}
@media screen and (min-width: 1300px) {
  .offcanvas#offcanvasNav .offcanvas-body .navMvl > li.menu-item-has-children .sub-menu li a:not([href]) {
    font-size: 40px;
  }
}
.offcanvas#offcanvasNav .offcanvas-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 40px) clamp(20px, 5vw, 40px) clamp(20px, 7vw, 92px);
}
.offcanvas#offcanvasNav .offcanvas-footer .social {
  list-style: none;
  margin: 0;
  padding: 0;
}
.offcanvas#offcanvasNav .offcanvas-footer .social li a {
  text-decoration: none;
}
.offcanvas#offcanvasNav .offcanvas-footer .information p {
  margin-bottom: 6px;
}
.offcanvas#offcanvasNav .offcanvas-footer .information p a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .offcanvas#offcanvasNav {
    max-width: 100%;
  }
  .offcanvas#offcanvasNav .offcanvas-body {
    padding-right: 20px;
  }
  .offcanvas#offcanvasNav .offcanvas-footer {
    display: block;
  }
}

header {
  width: 100%;
  padding: 30px 0px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .container-fluid {
  max-width: 100%;
}
header.crystal-header {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  -webkit-box-shadow: 0 0 4px 6px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0 0 4px 6px rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 4px 6px rgba(0, 0, 0, 0.04);
  -webkit-transition: "all" 0.3s ease;
  -moz-transition: "all" 0.3s ease;
  -ms-transition: "all" 0.3s ease;
  -o-transition: "all" 0.3s ease;
  transition: "all" 0.3s ease;
}
header.crystal-header .logo h1 a {
  color: #000;
}
header.crystal-header .nav-header ul li a {
  color: #000;
}
header.crystal-header .nav-header ul li a:not([href]) {
  color: #000;
}
header.crystal-header .nav-header ul li a:not([href]):hover {
  color: #000;
}
header.crystal-header .btn-menu {
  background-color: rgba(220, 194, 163, 0.2);
}
header.crystal-header .btn-menu span {
  color: #000;
}
header .logo h1 {
  margin: 0;
  line-height: 0;
}
header .logo h1 a {
  font-family: "fonde", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(18px + 4 * (100vw - 320px) / 980);
  line-height: normal;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fffff7;
  text-decoration: none !important;
}
@media screen and (max-width: 320px) {
  header .logo h1 a {
    font-size: 18px;
  }
}
@media screen and (min-width: 1300px) {
  header .logo h1 a {
    font-size: 22px;
  }
}
header .nav-header ul {
  gap: 24px;
}
header .nav-header ul li a {
  text-decoration: none !important;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(10px + 1 * (100vw - 320px) / 980);
  line-height: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fffff7;
}
@media screen and (max-width: 320px) {
  header .nav-header ul li a {
    font-size: 10px;
  }
}
@media screen and (min-width: 1300px) {
  header .nav-header ul li a {
    font-size: 11px;
  }
}
header .nav-header ul li a:not([href]) {
  color: #fffff7;
  cursor: pointer;
}
header .nav-header ul li a:not([href]):hover {
  color: #fffff7;
}
header .btn-menu {
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
header .btn-menu span {
  color: #fffff7;
  font-size: 20px;
}

.container-fluid {
  width: 100%;
  max-width: 1260px;
  padding-left: calc(var(--bs-gutter-x) * 1);
  padding-right: calc(var(--bs-gutter-x) * 1);
}

.z-1 {
  position: relative;
}

.mt-n4 {
  margin-top: -3rem !important;
  z-index: 1;
}

.mt-n3 {
  margin-top: -1.5rem !important;
  z-index: 1;
}

.mb-n4 {
  margin-bottom: -3rem !important;
  z-index: 1;
}

.mb-n3 {
  margin-bottom: -1.7rem !important;
  z-index: 1;
}

.main-contact::after, .main-contact::before, .next-portfolio::after, .next-portfolio::before, .content-design::after, .content-design::before, .section-design::after, .section-design::before, .cover-single::before, .section-posts::after, .section-posts::before, .section-benefits::after, .section-benefits::before, .main-single::after, .main-single::before, .section-experience::after, .section-experience::before, .section-shop::after, .section-shop::before, .section-project::after, .section-project::before, .section-services::after, .section-services::before, .section-about::after, .section-about::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  background: #dcc2a3;
  opacity: 0.4;
  filter: blur(122px);
}

.cover-single .bg-sigle::after, .cover-single .bg-sigle::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  background: #5e6d3e;
  opacity: 0.4;
  filter: blur(122px);
}

.section-design .card .card-body ul li::after {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
  font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 100, "GRAD" 0, "opsz" 24;
}

.section-about .card .card-img-overlay::before, .header-section.star-icon::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
}

.header-section {
  width: 100%;
  max-width: max-content;
  position: relative;
  z-index: 1;
}
.header-section.star-icon::after {
  background-image: url("../img/star-icon.png");
  width: 20px;
  height: 20px;
  background-size: contain;
  top: -52px;
  left: 0;
  right: 0;
  margin: auto;
}
.header-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(20px + 14 * (100vw - 320px) / 980);
  text-align: center;
  margin-bottom: 30px;
  line-height: 110%;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .header-section h2 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .header-section h2 {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .header-section h2 {
    margin-bottom: 10px;
  }
}
.header-section p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(14px + 2 * (100vw - 320px) / 980);
  letter-spacing: 0.01em;
  line-height: 160%;
  text-align: center;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .header-section p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .header-section p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .header-section {
    margin: auto;
  }
}

main {
  background-color: #ffffff;
}
main.single-shop .section-experience::before {
  max-width: 552px;
  height: 552px;
  top: initial;
  bottom: -150px;
}
main.single-shop .section-experience::after {
  display: none;
}

.main-full {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
}
.main-full .full-content {
  width: 100%;
  max-width: 840px;
}
.main-full .full-content img {
  width: 100%;
  max-width: 76px;
  display: block;
  object-fit: contain;
}
.main-full .full-content h2 {
  font-family: "fonde", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(30px + 34 * (100vw - 320px) / 980);
  line-height: 90%;
  text-align: center;
  color: #fffff7;
  text-transform: uppercase;
}
@media screen and (max-width: 320px) {
  .main-full .full-content h2 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1300px) {
  .main-full .full-content h2 {
    font-size: 54px;
  }
}
.main-full p, .main-full p a {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(9px + 3 * (100vw - 320px) / 980);
  line-height: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fffff7;
  margin: 0;
  text-decoration: none;
}
@media screen and (max-width: 320px) {
  .main-full p {
    font-size: 9px;
  }
}
@media screen and (min-width: 1300px) {
  .main-full p {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .main-full p {
    width: 100%;
    text-align: center;
  }
}
.main-full .bottom-0 {
  bottom: 32px !important;
}
.main-full .container-fluid {
  max-width: 100%;
}

.section-about {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  padding: clamp(100px, 10vw, 170px) 0 clamp(30px, 5vw, 120px);
  background-color: #fffff7;
  background: linear-gradient(180deg, #ffffff 10%, #fffff7 20%, #fffff7 40%, #ffffff 60%);
}
.section-about::before {
  width: 100%;
  max-width: 552px;
  height: 552px;
  left: -100px;
  top: 100px;
}
.section-about::after {
  width: 100%;
  max-width: 552px;
  height: 552px;
  right: -100px;
  bottom: 200px;
}
.section-about .header-section {
  max-width: 520px;
}
.section-about .card {
  width: 100%;
  height: 100%;
  max-height: 340px;
  position: relative;
  overflow: hidden;
  padding: 0;
  border: none;
}
.section-about .card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-about .card .card-img-overlay::before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(82, 66, 56, 0.4);
  z-index: 0;
}
.section-about .card .card-img-overlay img {
  position: relative;
  height: 37px;
  object-fit: contain;
  z-index: 1;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%);
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%);
}
.section-about .about-text {
  max-width: 620px;
}
.section-about .about-text p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: calc(14px + 2 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #595959;
  margin-bottom: clamp(30px, 5vw, 56px);
}
@media screen and (max-width: 320px) {
  .section-about .about-text p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .section-about .about-text p {
    font-size: 16px;
  }
}

.section-about .about-text p em {
    display: block;
    font-weight: 400;
}

.section-services {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  padding: clamp(60px, 10vw, 170px) 0 clamp(30px, 5vw, 120px);
  background: linear-gradient(180deg, #ffffff 10%, #fffff7 20%, #fffff7 40%, #ffffff 60%);
}
.section-services::before {
  width: 100%;
  max-width: 552px;
  height: 552px;
  left: -100px;
  top: 263px;
}
.section-services::after {
  width: 100%;
  max-width: 552px;
  height: 552px;
  right: -100px;
  bottom: 200px;
}
.section-services .header-section {
  max-width: 730px;
}
.section-services .card {
  width: 340px;
  height: 340px;
  overflow: hidden;
  border-radius: 50%;
  border: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-services .card::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(20deg, rgba(255, 255, 247, 0.2) 0%, #eadac8 31%, #dcc2a3 43%, #f5eddf 81%, #f1e7da 100%);
  z-index: 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-services .card a {
  margin: auto;
  width: 337px;
  height: 337px;
  background: #f7f2e7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  justify-content: center;
  z-index: 1;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-services .card a img {
  height: 42px;
  margin-bottom: 22px;
  object-fit: contain;
}
.section-services .card a h2 {
  width: 100%;
  max-width: 215px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(18px + 6 * (100vw - 320px) / 980);
  line-height: 110%;
  text-align: center;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .section-services .card a h2 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1300px) {
  .section-services .card a h2 {
    font-size: 24px;
  }
}
.section-services .card a span {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  background-color: rgba(220, 194, 163, 0.3);
  color: #5e6d3e;
  margin-top: 0px;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-services .card:hover::before {
  background: linear-gradient(30deg, rgba(222, 225, 216, 0.2) 0%, #7e8a65 31%, #5e6d3e 43%, #bfc5b2 81%, #bec2b2 100%);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-services .card:hover a img {
  filter: brightness(0) saturate(100%) invert(40%) sepia(25%) saturate(611%) hue-rotate(38deg) brightness(93%) contrast(91%);
}
.section-services .card:hover a h2 {
  color: #5e6d3e;
}
.section-services .card:hover a span {
  display: flex;
  opacity: 1;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .section-services .card {
    margin: auto;
  }
}

.section-project {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  padding: clamp(40px, 10vw, 170px) 0 clamp(60px, 5vw, 120px);
  background: linear-gradient(180deg, #ffffff 10%, #fffff7 20%, #fffff7 40%, #ffffff 60%);
}
.section-project::before {
  width: 100%;
  max-width: 552px;
  height: 552px;
  left: -100px;
  top: 263px;
}
.section-project::after {
  width: 100%;
  max-width: 552px;
  height: 552px;
  right: -100px;
  bottom: 200px;
}

.section-space {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  padding: clamp(40px, 10vw, 170px) 0 clamp(50px, 5vw, 120px);
  background: linear-gradient(180deg, #ffffff 10%, #fffff7 20%, #fffff7 40%, #ffffff 100%);
}
.section-space .header-section {
  max-width: 470px;
}
@media (max-width: 768px) {
  .section-space .header-section {
    max-width: 300px;
  }
}
.section-space .nav-tabs {
  max-width: max-content;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  margin-bottom: 40px;
  background-color: rgba(92, 103, 62, 0.4);
  overflow: hidden;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
.section-space .nav-tabs .nav-link {
  min-width: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-transform: uppercase;
  border: none;
  color: #fffff7;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-space .nav-tabs .nav-link.active {
  background-color: rgba(92, 103, 62, 0.4);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
.section-space .tab-content {
  background-color: rgba(89, 89, 89, 0.04);
  padding: clamp(20px, 5vw, 30px) clamp(30px, 10vw, 80px) clamp(30px, 5vw, 50px) clamp(30px, 10vw, 80px);
}
.section-space .tab-content .active {
  display: flex;
}
.section-space .tab-content img {
  width: 350px;
  height: 350px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
.section-space .tab-content .bg-white {
  width: 183px;
  height: 183px;
}
.section-space .tab-content .bg-white img {
  width: 100%;
  height: 79px;
  object-fit: contain;
}
.section-space .tab-content p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(13px + 3 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .section-space .tab-content p {
    font-size: 13px;
  }
}
@media screen and (min-width: 1300px) {
  .section-space .tab-content p {
    font-size: 16px;
  }
}
.section-space .tab-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section-space .tab-content {
    padding: 20px 30px 40px;
  }
  .section-space .tab-content img {
    width: 300px;
    height: 300px;
  }
  .section-space .tab-content p {
    text-align: center;
  }
}
.section-space.space-about nav {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
}
.section-space.space-about nav .nav-tabs {
  background-color: #babca7;
}
.section-space.space-about .tab-content {
  padding: clamp(20px, 9vw, 130px) clamp(30px, 10vw, 80px) clamp(30px, 7vw, 100px) clamp(30px, 10vw, 80px);
}
.section-space.space-about .tab-content .d-block h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  color: #303030;
}
@media (max-width: 768px) {
  .section-space.space-about .tab-content .d-block h2 {
    text-align: center;
  }
}

.section-shop {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  padding: clamp(40px, 10vw, 170px) 0 clamp(30px, 5vw, 120px);
  background: linear-gradient(180deg, #ffffff 10%, #fffff7 20%, #fffff7 40%, #ffffff 100%);
}
.section-shop::before {
  width: 100%;
  max-width: 552px;
  height: 552px;
  left: -100px;
  top: 263px;
}
.section-shop::after {
  width: 100%;
  max-width: 552px;
  height: 552px;
  right: -100px;
  bottom: 200px;
}
.section-shop .header-section p {
  max-width: 520px;
}

.section-experience {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  padding: clamp(40px, 10vw, 170px) 0 clamp(30px, 5vw, 120px);
  background: linear-gradient(180deg, #ffffff 0%, #fffff7 40%, #fffff7 60%, #ffffff 100%);
}
.section-experience::before {
  width: 100%;
  max-width: 552px;
  height: 552px;
  left: -100px;
  top: 263px;
}
.section-experience::after {
  width: 100%;
  max-width: 552px;
  height: 552px;
  right: -100px;
  bottom: -10px;
}
.section-experience .header-section p {
  max-width: 520px;
}
.section-experience .accordion-container {
  display: flex;
  gap: 28px;
}
.section-experience .accordion-container .accordion-item {
  flex: 1;
  height: 473px;
  position: relative;
  cursor: pointer;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border: 2px solid #ffffff;
  background-color: rgba(255, 255, 247, 0.14);
}
.section-experience .accordion-container .accordion-item.expanded {
  flex: 4;
  display: flex;
  cursor: inherit;
}
.section-experience .accordion-container .accordion-item.expanded .accordion-header {
  padding: 0;
}
.section-experience .accordion-container .accordion-item.expanded .accordion-content {
  display: block;
}
.section-experience .accordion-container .accordion-item.expanded .block {
  padding-top: clamp(10px, 5vw, 50px);
  padding-bottom: clamp(10px, 5vw, 50px);
  padding-left: clamp(10px, 5vw, 40px);
  padding-right: clamp(10px, 5vw, 40px);
  overflow: scroll;
}
.section-experience .accordion-container .accordion-item.expanded img {
  width: 100%;
  max-width: 184px;
  height: 473px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.section-experience .accordion-container .accordion-item .accordion-header {
  padding: 48px 32px 0;
  position: relative;
}
.section-experience .accordion-container .accordion-item .accordion-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(18px + 6 * (100vw - 320px) / 980);
  line-height: 110%;
  color: #595959;
  margin-bottom: 12px;
}
@media screen and (max-width: 320px) {
  .section-experience .accordion-container .accordion-item .accordion-header h2 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1300px) {
  .section-experience .accordion-container .accordion-item .accordion-header h2 {
    font-size: 24px;
  }
}
.section-experience .accordion-container .accordion-item .accordion-header h3 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(10px + 2 * (100vw - 320px) / 980);
  line-height: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5e6d3e;
  margin-bottom: 0;
}
@media screen and (max-width: 320px) {
  .section-experience .accordion-container .accordion-item .accordion-header h3 {
    font-size: 10px;
  }
}
@media screen and (min-width: 1300px) {
  .section-experience .accordion-container .accordion-item .accordion-header h3 {
    font-size: 12px;
  }
}
.section-experience .accordion-container .accordion-item .button-span {
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 157px;
  left: 28px;
  z-index: 1;
  background: rgba(255, 255, 247, 0.5);
  backdrop-filter: blur(2.5px);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  color: #5e6d3e;
  font-size: 26px;
}
.section-experience .accordion-container .accordion-item .accordion-content {
  display: none;
  padding-top: 32px;
}
.section-experience .accordion-container .accordion-item .accordion-content p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(13px + 3 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .section-experience .accordion-container .accordion-item .accordion-content p {
    font-size: 13px;
  }
}
@media screen and (min-width: 1300px) {
  .section-experience .accordion-container .accordion-item .accordion-content p {
    font-size: 16px;
  }
}
.section-experience .accordion-container .accordion-item img {
  width: 100%;
  max-width: 100%;
  height: 292px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
@media (max-width: 992px) {
  .section-experience .accordion-container .accordion-item.expanded img {
    max-width: 124px;
  }
  .section-experience .accordion-container .accordion-item.expanded .block {
    padding: 30px 20px;
  }
  .section-experience .accordion-container .accordion-item .accordion-header {
    padding: 48px 20px 0;
  }
}
@media (max-width: 768px) {
  .section-experience .accordion-container {
    display: grid;
  }
  .section-experience .accordion-container .accordion-item {
    height: max-content;
  }
  .section-experience .accordion-container .accordion-item.expanded img {
    max-width: 124px;
    display: none;
  }
  .section-experience .accordion-container .accordion-item.expanded .block {
    padding: 30px 20px;
  }
  .section-experience .accordion-container .accordion-item .accordion-header {
    padding: 30px 20px 30px;
  }
  .section-experience .accordion-container .accordion-item img {
    display: none;
  }
}

.section-action {
  width: 100%;
  display: block;
  position: relative;
  padding: clamp(90px, 9vw, 156px) 0 clamp(50px, 5vw, 94px);
}
.section-action .header-section {
  max-width: 500px;
}
.section-action .header-section.star-icon::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(7492%) hue-rotate(30deg) brightness(106%) contrast(98%);
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(7492%) hue-rotate(30deg) brightness(106%) contrast(98%);
}
.section-action .header-section h2 {
  color: #fffff7;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .section-action .header-section {
    max-width: 300px;
  }
  .section-action .header-section h2 {
    margin-bottom: 30px;
  }
}

.card-shop {
  height: max-content;
  overflow: hidden;
  position: relative;
  background-color: transparent;
}
.card-shop img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
}
.card-shop .card-body {
  padding: 24px 0px 32px;
  background-color: rgba(89, 89, 89, 0.02);
}
.card-shop .card-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(18px + 6 * (100vw - 320px) / 980);
  line-height: 110%;
  text-align: center;
  color: #595959;
  margin-bottom: 8px;
}
@media screen and (max-width: 320px) {
  .card-shop .card-body h2 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1300px) {
  .card-shop .card-body h2 {
    font-size: 24px;
  }
}
.card-shop .card-body p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: calc(13px + 1 * (100vw - 320px) / 980);
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5e6d3e;
  margin-bottom: 24px;
}
@media screen and (max-width: 320px) {
  .card-shop .card-body p {
    font-size: 13px;
  }
}
@media screen and (min-width: 1300px) {
  .card-shop .card-body p {
    font-size: 14px;
  }
}
.card-shop .card-body a {
  font-weight: 700;
}

.header-pages {
  width: 100%;
  position: relative;
  background: rgba(255, 255, 247, 0.9) 0%;
  background: linear-gradient(180deg, rgba(255, 255, 247, 0.9) 0%, #eadac8 100%);
  background-blend-mode: hard-light;
  mix-blend-mode: normal;
  padding: clamp(40px, 5vw, 83px) 0;
}
.header-pages .header-section p {
  max-width: 340px;
}

.filter-item {
  display: none;
}
.filter-item.show {
  display: block;
}

.filter-menu {
  max-width: max-content;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  margin-bottom: 40px;
  background-color: rgba(220, 194, 163, 0.2);
  overflow: hidden;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
.filter-menu .filter-btn {
  padding: 12px 20px;
  min-width: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-transform: uppercase;
  border: none;
  color: #595959;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.filter-menu .filter-btn:first-child {
  padding: 12px 10px;
}
.filter-menu .filter-btn.btn-active {
  background-color: rgba(220, 194, 163, 0.3);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.main-single {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 64px) 0 clamp(60px, 10vw, 120px);
  background: linear-gradient(180deg, #ffffff 0%, #fffff7 40%, #fffff7 60%, #ffffff 100%);
}
.main-single::before {
  width: 100%;
  max-width: 552px;
  height: 552px;
  left: -100px;
  top: 0px;
}
.main-single::after {
  width: 100%;
  max-width: 552px;
  height: 552px;
  right: -100px;
  bottom: 200px;
}
.main-single .content-shop h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(20px + 14 * (100vw - 320px) / 980);
  line-height: 110%;
  color: #595959;
  margin-bottom: 16px;
}
@media screen and (max-width: 320px) {
  .main-single .content-shop h2 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .main-single .content-shop h2 {
    font-size: 34px;
  }
}
.main-single .content-shop span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: calc(14px + 2 * (100vw - 320px) / 980);
  line-height: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5e6d3e;
  margin-bottom: 30px;
}
@media screen and (max-width: 320px) {
  .main-single .content-shop span {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .main-single .content-shop span {
    font-size: 16px;
  }
}
.main-single .content-shop p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(14px + 2 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .main-single .content-shop p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .main-single .content-shop p {
    font-size: 16px;
  }
}
.main-single .content-shop .button {
  margin: 40px 0;
  max-width: max-content;
}

#accordionShop .accordion-item {
  background-color: transparent;
  border-top: 1px solid #dcc2a3;
  border-bottom: none;
  border-left: none;
  border-right: none;
}
#accordionShop .accordion-item .accordion-header button {
  padding: 20px 0;
  box-shadow: none !important;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #595959;
  background-color: transparent;
}
#accordionShop .accordion-item .accordion-collapse.show {
  border-bottom: 1px solid #dcc2a3;
}
#accordionShop .accordion-item .accordion-collapse .accordion-body {
  padding: 0 0 20px;
}
#accordionShop .accordion-item .accordion-collapse .accordion-body p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #595959;
}

.section-benefits {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  padding: clamp(40px, 10vw, 170px) 0 clamp(30px, 5vw, 120px);
  background: linear-gradient(180deg, #ffffff 10%, #fffff7 20%, #fffff7 40%, #ffffff 60%);
}
.section-benefits::before {
  width: 100%;
  max-width: 552px;
  height: 552px;
  left: -100px;
  top: 263px;
}
.section-benefits::after {
  width: 100%;
  max-width: 552px;
  height: 552px;
  right: -100px;
  bottom: 200px;
}
.section-benefits .header-section {
  max-width: 520px;
}
.section-benefits .card-benefits {
  width: 100%;
  height: 100%;
  min-height: 490px;
  position: relative;
  padding: clamp(20px, 4vw, 48px) clamp(20px, 2vw, 30px);
  background: rgba(89, 89, 89, 0.02);
  backdrop-filter: blur(4.5px);
  overflow: hidden;
  border: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-benefits .card-benefits::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(20deg, rgba(255, 255, 247, 0.2) 0%, #eadac8 31%, #dcc2a3 43%, #f5eddf 81%, #f1e7da 100%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: -1;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-benefits .card-benefits::after {
  content: "";
  display: block;
  position: absolute;
  width: 99%;
  height: 99%;
  background-color: #f7f2e7;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-benefits .card-benefits img {
  display: block;
  margin: 0 auto 22px;
  height: 45px;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.section-benefits .card-benefits h2 {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(18px + 6 * (100vw - 320px) / 980);
  line-height: 110%;
  text-align: center;
  color: #595959;
  margin-bottom: 40px;
}
@media screen and (max-width: 320px) {
  .section-benefits .card-benefits h2 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1300px) {
  .section-benefits .card-benefits h2 {
    font-size: 24px;
  }
}
.section-benefits .card-benefits ul {
  width: 100%;
  max-width: 260px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.section-benefits .card-benefits ul li {
  font-family: "Montserrat", sans-serif;
  position: relative;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  margin-bottom: 5px;
  color: #595959;
}
.section-benefits .card-benefits ul li:last-child {
  margin: 0;
}
.section-benefits .card-benefits ul li::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: -20px;
  width: 16px;
  height: 16px;
  background-image: url("../img/star-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.section-benefits .card-benefits:hover::before {
  background: linear-gradient(30deg, rgba(222, 225, 216, 0.2) 0%, #7e8a65 31%, #5e6d3e 43%, #bfc5b2 81%, #bec2b2 100%);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.section-benefits .card-benefits:hover img {
  filter: brightness(0) saturate(100%) invert(40%) sepia(25%) saturate(611%) hue-rotate(38deg) brightness(93%) contrast(91%);
}
.section-benefits .card-benefits:hover h2 {
  color: #5e6d3e;
}

.section-posts {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  padding: clamp(40px, 10vw, 160px) 0 clamp(30px, 7vw, 160px);
}
.section-posts::before {
  width: 100%;
  max-width: 552px;
  height: 552px;
  left: -100px;
  top: -150px;
}
.section-posts::after {
  width: 100%;
  max-width: 552px;
  height: 552px;
  right: -100px;
  bottom: -400px;
}

.arrowOpen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: url("../img/arrow_open.png") no-repeat rgba(220, 194, 163, 0.2);
  background-size: 9px;
  background-position: center;
  margin-left: 16px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.card-post .category {
  top: 20px;
  left: 20px;
}
.card-post figure {
  width: 100%;
  height: 100%;
  max-height: 280px;
}
.card-post figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.card-post .card-body {
  padding: 32px 32px 12px;
  background-color: rgba(89, 89, 89, 0.02);
}
.card-post .card-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(18px + 6 * (100vw - 320px) / 980);
  line-height: 110%;
  color: #595959;
  margin-bottom: 16px;
}
@media screen and (max-width: 320px) {
  .card-post .card-body h2 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1300px) {
  .card-post .card-body h2 {
    font-size: 24px;
  }
}
.card-post .card-body h2 a {
  text-decoration: none !important;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(18px + 6 * (100vw - 320px) / 980);
  line-height: 110%;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .card-post .card-body h2 a {
    font-size: 18px;
  }
}
@media screen and (min-width: 1300px) {
  .card-post .card-body h2 a {
    font-size: 24px;
  }
}
.card-post .card-body p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(13px + 2 * (100vw - 320px) / 980);
  line-height: 150%;
  color: #595959;
  margin-bottom: 0;
}
@media screen and (max-width: 320px) {
  .card-post .card-body p {
    font-size: 13px;
  }
}
@media screen and (min-width: 1300px) {
  .card-post .card-body p {
    font-size: 15px;
  }
}
.card-post .card-footer {
  padding: 12px 32px 32px;
  background-color: rgba(89, 89, 89, 0.02);
}
.card-post .card-footer .date-post {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #5e6d3e;
}
.card-post .card-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: max-content;
  text-decoration: none !important;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #595959;
}

.single-header {
  width: 100%;
  max-width: 680px;
  text-align: center;
}
.single-header img {
  width: 68px;
  height: 64px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 32px;
  filter: brightness(0) saturate(100%) invert(40%) sepia(25%) saturate(611%) hue-rotate(38deg) brightness(93%) contrast(91%);
  -webkit-filter: brightness(0) saturate(100%) invert(40%) sepia(25%) saturate(611%) hue-rotate(38deg) brightness(93%) contrast(91%);
}
.single-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(20px + 20 * (100vw - 320px) / 980);
  line-height: 120%;
  text-align: center;
  color: #303030;
  margin-bottom: 32px;
}
@media screen and (max-width: 320px) {
  .single-header h2 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .single-header h2 {
    font-size: 40px;
  }
}
.single-header p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  color: #303030;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .single-header {
    margin: 0 auto;
  }
}

.cover-single {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 94px) 0;
}
.cover-single::before {
  width: 100%;
  max-width: 401px;
  height: 358px;
  left: -230px;
  bottom: -210px;
}
.cover-single .single-media {
  width: 100%;
  max-width: 915px;
  position: relative;
  padding: 10px;
  border: 2px solid #dcc2a3;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}
.cover-single .single-media a {
  display: block;
}
.cover-single .single-media a span {
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 40px;
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  background: rgba(255, 255, 247, 0.2);
  backdrop-filter: blur(8.125px);
}
.cover-single .single-media a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border: 2px solid #ffffff;
}
.cover-single .bg-sigle {
  overflow: hidden;
  width: 100%;
  height: 80vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(180deg, #fffff7 36.61%, #f2e9df 100%), url("../img/6566727.png");
  background-blend-mode: hard-light, normal;
  mix-blend-mode: normal;
  opacity: 0.5;
}
.cover-single .bg-sigle::before {
  width: 100%;
  max-width: 552px;
  height: 552px;
  left: -100px;
  bottom: 0px;
}
.cover-single .bg-sigle::after {
  width: 100%;
  max-width: 552px;
  height: 552px;
  right: -100px;
  bottom: 0px;
}
@media (max-width: 992px) {
  .cover-single .bg-sigle {
    height: 50vh;
  }
}

.section-design {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  padding: clamp(30px, 5vw, 94px) 0 clamp(30px, 9vw, 104px);
  background: linear-gradient(180deg, #ffffff 0%, #fffff7 40%, #fffff7 60%, #ffffff 100%);
}
.section-design::before {
  width: 100%;
  max-width: 401px;
  height: 358px;
  left: -230px;
  top: -100px;
}
.section-design::after {
  width: 100%;
  max-width: 417px;
  height: 417px;
  right: -100px;
  bottom: 170px;
}
.section-design .card {
  width: 100%;
  max-width: 915px;
  overflow: hidden;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .section-design .card {
    width: 90vw;
  }
}
.section-design .card img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.section-design .card .card-body {
  padding: 40px 0px 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-design .card .card-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 78px;
}
@media (max-width: 768px) {
  .section-design .card .card-body ul {
    grid-template-columns: 100%;
    gap: 10px;
  }
}
.section-design .card .card-body ul li {
  padding-left: 30px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(18px + 4 * (100vw - 320px) / 980);
  line-height: 180%;
  color: #303030;
  position: relative;
}
@media screen and (max-width: 320px) {
  .section-design .card .card-body ul li {
    font-size: 18px;
  }
}
@media screen and (min-width: 1300px) {
  .section-design .card .card-body ul li {
    font-size: 22px;
  }
}
.section-design .card .card-body ul li::after {
  content: "\e941";
  width: max-content;
  height: max-content;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-size: 24px;
}
.section-design .header-section {
  max-width: 560px;
}

.single-service .section-experience::after {
  height: 400px;
  bottom: 180px;
}
.single-service .section-experience::before {
  height: 400px;
}
.single-service .section-project::after {
  height: 400px;
}
.single-service .section-project::before {
  height: 400px;
}
.single-service .section-posts::after {
  height: 400px;
  bottom: 0;
}
.single-service .section-posts::before {
  height: 400px;
  top: 180px;
}

.full-page {
  width: 100%;
  height: calc(100dvh - 71px);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #fffff7 0%, #f1e7da 20%, #f1e7da 80%, #fffff7 100%);
}
.full-page .content {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
}
.full-page .content h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: calc(36px + 28 * (100vw - 320px) / 980);
  line-height: 100%;
  text-align: center;
  color: #303030;
  margin-bottom: clamp(20px, 5vw, 40px);
}
@media screen and (max-width: 320px) {
  .full-page .content h2 {
    font-size: 36px;
  }
}
@media screen and (min-width: 1300px) {
  .full-page .content h2 {
    font-size: 40px;
  }
}
.full-page .content p {
  width: 100%;
  max-width: 730px;
  margin: 0 auto 0;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 2 * (100vw - 320px) / 980);
  line-height: 160%;
  text-align: center;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .full-page .content p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .full-page .content p {
    font-size: 21px;
  }
}

.content-about {
  width: 100%;
  position: relative;
  display: block;
  padding: clamp(40px, 10vw, 170px) 0 clamp(30px, 5vw, 120px);
}
.content-about .header-section h2 {
  margin-bottom: 8px;
}
.content-about .header-section p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5e6d3e;
}
.content-about figure {
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  max-height: 740px;
}
.content-about figure img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .content-about figure {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .content-about figure img {
    object-fit: cover;
    object-position: top;
  }
}
.content-about .about-text p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 2 * (100vw - 320px) / 980);
  line-height: 170%;
  color: #303030;
  margin-bottom: 30px;
}
@media screen and (max-width: 320px) {
  .content-about .about-text p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .content-about .about-text p {
    font-size: 16px;
  }
}
.content-about .about-text blockquote {
  box-sizing: border-box;
  background: rgba(220, 194, 163, 0.1);
  backdrop-filter: blur(4.5px);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  padding: 40px;
  margin-bottom: 40px;
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(20deg, rgba(255, 255, 247, 0.2) 0%, #eadac8 31%, #dcc2a3 43%, #f5eddf 81%, #f1e7da 100%) 1;
}
.content-about .about-text blockquote p:last-child {
  margin-bottom: 0;
}

.content-design {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  padding: clamp(30px, 5vw, 94px) 0 120px;
  background: linear-gradient(180deg, #ffffff 0%, #fffff7 40%, #fffff7 60%, #ffffff 100%);
}
.content-design::before {
  width: 100%;
  max-width: 401px;
  height: 358px;
  left: -230px;
  top: 130px;
}
.content-design::after {
  width: 100%;
  max-width: 417px;
  height: 417px;
  right: -100px;
  bottom: 170px;
}
.content-design .header-section {
  max-width: 587px;
}
.content-design .header-section h2 {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.content-design figure {
  width: 100%;
  height: 560px;
  overflow: hidden;
}
.content-design figure img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.content-design .design-content {
  width: 100%;
  max-width: 450px;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .content-design .design-content {
    max-width: 100%;
  }
}
.content-design .design-content p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #303030;
  margin-bottom: 30px;
}
.content-design .design-content p:last-child {
  margin-bottom: 0;
}

.section-portfolio {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  padding: clamp(30px, 5vw, 94px) 0 120px;
  background: linear-gradient(180deg, #ffffff 0%, #fffff7 40%, #fffff7 60%, #ffffff 100%);
}
.section-portfolio .card-portfolio {
  height: max-content;
  overflow: hidden;
  position: relative;
}
.section-portfolio .card-portfolio::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(82, 66, 56, 0.5);
  z-index: 1;
}
.section-portfolio .card-portfolio img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.section-portfolio .card-portfolio:hover img {
  transform: scale(1.03);
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
}
.section-portfolio .card-portfolio .card-img-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.section-portfolio .card-portfolio .card-img-overlay h2 {
  width: 100%;
  max-width: 152px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(24px + 8 * (100vw - 320px) / 980);
  color: #fffff7;
  margin-bottom: 24px;
  line-height: 100%;
  text-align: center;
}
@media screen and (max-width: 320px) {
  .section-portfolio .card-portfolio .card-img-overlay h2 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1300px) {
  .section-portfolio .card-portfolio .card-img-overlay h2 {
    font-size: 32px;
  }
}
.section-portfolio .card-portfolio .card-img-overlay .button {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #ffffff;
}

.pagination .navigation {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(220, 194, 163, 0.2);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  color: #303030;
  cursor: pointer;
}
.pagination .navigation .disabled {
  opacity: 0.2;
}
.pagination .navigation a {
  text-decoration: none !important;
  color: #303030;
}
.pagination .navigation:hover {
  background-color: rgba(126, 138, 101, 0.2);
}
.pagination .pagination-info {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: calc(10px + 2 * (100vw - 320px) / 980);
  line-height: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #303030;
}
@media screen and (max-width: 320px) {
  .pagination .pagination-info {
    font-size: 10px;
  }
}
@media screen and (min-width: 1300px) {
  .pagination .pagination-info {
    font-size: 12px;
  }
}

.content-portfolio {
  position: relative;
  overflow: hidden;
}
.content-portfolio::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 850px;
  background: url("../img/bg-portfolio.png") no-repeat;
  background-size: cover;
  background-position: bottom;
}
.content-portfolio .header-portfolio {
  width: 100%;
  padding: clamp(144px, 5vw, 144px) 0 clamp(110px, 5vw, 280px);
  display: block;
  position: relative;
}
.content-portfolio .header-portfolio h2 {
  width: 100%;
  max-width: 600px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: calc(30px + 34 * (100vw - 320px) / 980);
  line-height: 100%;
  color: #303030;
  margin-bottom: clamp(40px, 10vw, 128px);
}
@media screen and (max-width: 320px) {
  .content-portfolio .header-portfolio h2 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1300px) {
  .content-portfolio .header-portfolio h2 {
    font-size: 64px;
  }
}
.content-portfolio .header-portfolio h4 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #838383;
  margin-bottom: 8px;
}
.content-portfolio .header-portfolio .header-content {
  width: 100%;
  max-width: 400px;
}
.content-portfolio .header-portfolio .header-details {
  display: block;
  position: relative;
}
.content-portfolio .header-portfolio .header-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.content-portfolio .header-portfolio .header-details ul li {
  width: 100%;
  max-width: 144px;
}
@media (max-width: 768px) {
  .content-portfolio .header-portfolio .header-details ul {
    flex-direction: row;
    width: 100%;
  }
}
.content-portfolio .media-portfolio {
  padding-bottom: 80px;
}
.content-portfolio .media-portfolio small {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #303030;
}

.next-portfolio {
  height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.next-portfolio::before {
  background: #5e6d3e;
  width: 100%;
  max-width: 400px;
  height: 400px;
  left: -200px;
  bottom: 0;
  top: 0;
  margin: auto;
}
.next-portfolio::after {
  background: #5e6d3e;
  width: 100%;
  max-width: 400px;
  height: 400px;
  right: -200px;
  bottom: 0;
  top: 0;
  margin: auto;
}
.next-portfolio h2 a {
  text-decoration: none !important;
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-size: calc(24px + 16 * (100vw - 320px) / 980);
  line-height: 120%;
  text-align: center;
  margin-bottom: 0;
  color: #303030;
}
@media screen and (max-width: 320px) {
  .next-portfolio h2 a {
    font-size: 24px;
  }
}
@media screen and (min-width: 1300px) {
  .next-portfolio h2 a {
    font-size: 40px;
  }
}
.next-portfolio h3 {
  margin: 0 auto 24px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(10px + 2 * (100vw - 320px) / 980);
  line-height: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #303030;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
}
@media screen and (max-width: 320px) {
  .next-portfolio h3 {
    font-size: 10px;
  }
}
@media screen and (min-width: 1300px) {
  .next-portfolio h3 {
    font-size: 12px;
  }
}
.next-portfolio h3 a {
  text-decoration: none !important;
}
.next-portfolio h3 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(220, 194, 163, 0.2);
  font-size: 16px;
  font-size: calc(14px + 2 * (100vw - 320px) / 980);
  color: #303030;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
@media screen and (max-width: 320px) {
  .next-portfolio h3 span {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .next-portfolio h3 span {
    font-size: 16px;
  }
}

.main-portfolio {
  position: relative;
}
.main-portfolio .wp-block-group {
  width: 100%;
  max-width: 709px;
  margin: 0 auto clamp(30px, 10vw, 120px);
}
.main-portfolio .wp-block-group h3 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(24px + 10 * (100vw - 320px) / 980);
  line-height: 110%;
  color: #303030;
  margin-bottom: clamp(20px, 5vw, 30px);
}
@media screen and (max-width: 320px) {
  .main-portfolio .wp-block-group h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1300px) {
  .main-portfolio .wp-block-group h3 {
    font-size: 34px;
  }
}
.main-portfolio p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 2 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #303030;
}
@media screen and (max-width: 320px) {
  .main-portfolio p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .main-portfolio p {
    font-size: 16px;
  }
}
.main-portfolio p:last-child {
  margin-bottom: 0;
}
.main-portfolio figure {
  width: 100%;
  margin-bottom: 0;
  height: 100%;
  min-height: 800px;
}
.main-portfolio figure.wp-block-image {
  height: 640px;
  margin-bottom: clamp(30px, 5vw, 70px);
}
.main-portfolio figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-portfolio figure.mt-n {
  margin-top: -430px;
}
@media (max-width: 992px) {
  .main-portfolio figure.mt-n {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .main-portfolio figure.wp-block-image {
    height: 320px;
  }
}
.main-portfolio blockquote {
  box-sizing: border-box;
  background: rgba(220, 194, 163, 0.1);
  backdrop-filter: blur(4.5px);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  padding: 28px;
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(20deg, rgba(255, 255, 247, 0.2) 0%, #eadac8 31%, #dcc2a3 43%, #f5eddf 81%, #f1e7da 100%) 1;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: calc(18px + 4 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #303030;
  margin-bottom: 0;
}
@media screen and (max-width: 320px) {
  .main-portfolio blockquote {
    font-size: 18px;
  }
}
@media screen and (min-width: 1300px) {
  .main-portfolio blockquote {
    font-size: 22px;
  }
}
@media (max-width: 992px) {
  .main-portfolio blockquote {
    margin-bottom: 30px;
    margin-top: 30px;
  }
}

.main-contact {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
}
.main-contact::before {
  background: #5e6d3e;
  width: 100%;
  max-width: 400px;
  height: 400px;
  left: -200px;
  top: -200px;
  margin: auto;
}
.main-contact::after {
  background: #5e6d3e;
  width: 100%;
  max-width: 400px;
  height: 400px;
  right: -200px;
  bottom: 0;
  top: 0;
  margin: auto;
}
.main-contact .contact-form {
  padding: clamp(30px, 5vw, 94px) 0 120px;
}
.main-contact .social {
  padding: clamp(30px, 5vw, 100px) 0 160px;
}
.main-contact .form {
  width: 100%;
}
.main-contact .form h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(24px + 10 * (100vw - 320px) / 980);
  line-height: 110%;
  color: #303030;
  margin-bottom: 32px;
}
@media screen and (max-width: 320px) {
  .main-contact .form h2 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1300px) {
  .main-contact .form h2 {
    font-size: 34px;
  }
}
.main-contact .form > p {
  width: 100%;
  max-width: 500px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(14px + 2 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #303030;
  margin-bottom: 40px;
}
@media screen and (max-width: 320px) {
  .main-contact .form > p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .main-contact .form > p {
    font-size: 16px;
  }
}
.main-contact .form input[type=text],
.main-contact .form input[type=password],
.main-contact .form input[type=search],
.main-contact .form input[type=email],
.main-contact .form input[type=url],
.main-contact .form input[type=tel],
.main-contact .form input[type=number],
.main-contact .form input[type=date] {
  padding: 13px 24px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #595959;
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(20deg, rgba(255, 255, 247, 0.2) 0%, #eadac8 31%, #dcc2a3 43%, #f5eddf 81%, #f1e7da 100%) 1;
}
@media screen and (max-width: 320px) {
  .main-contact .form input[type=text],
  .main-contact .form input[type=password],
  .main-contact .form input[type=search],
  .main-contact .form input[type=email],
  .main-contact .form input[type=url],
  .main-contact .form input[type=tel],
  .main-contact .form input[type=number],
  .main-contact .form input[type=date] {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .main-contact .form input[type=text],
  .main-contact .form input[type=password],
  .main-contact .form input[type=search],
  .main-contact .form input[type=email],
  .main-contact .form input[type=url],
  .main-contact .form input[type=tel],
  .main-contact .form input[type=number],
  .main-contact .form input[type=date] {
    font-size: 15px;
  }
}
.main-contact .form input[type=text]::-webkit-input-placeholder,
.main-contact .form input[type=password]::-webkit-input-placeholder,
.main-contact .form input[type=search]::-webkit-input-placeholder,
.main-contact .form input[type=email]::-webkit-input-placeholder,
.main-contact .form input[type=url]::-webkit-input-placeholder,
.main-contact .form input[type=tel]::-webkit-input-placeholder,
.main-contact .form input[type=number]::-webkit-input-placeholder,
.main-contact .form input[type=date]::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .main-contact .form input[type=text]::-webkit-input-placeholder,
  .main-contact .form input[type=password]::-webkit-input-placeholder,
  .main-contact .form input[type=search]::-webkit-input-placeholder,
  .main-contact .form input[type=email]::-webkit-input-placeholder,
  .main-contact .form input[type=url]::-webkit-input-placeholder,
  .main-contact .form input[type=tel]::-webkit-input-placeholder,
  .main-contact .form input[type=number]::-webkit-input-placeholder,
  .main-contact .form input[type=date]::-webkit-input-placeholder {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .main-contact .form input[type=text]::-webkit-input-placeholder,
  .main-contact .form input[type=password]::-webkit-input-placeholder,
  .main-contact .form input[type=search]::-webkit-input-placeholder,
  .main-contact .form input[type=email]::-webkit-input-placeholder,
  .main-contact .form input[type=url]::-webkit-input-placeholder,
  .main-contact .form input[type=tel]::-webkit-input-placeholder,
  .main-contact .form input[type=number]::-webkit-input-placeholder,
  .main-contact .form input[type=date]::-webkit-input-placeholder {
    font-size: 15px;
  }
}
.main-contact .form input[type=text]:-moz-placeholder,
.main-contact .form input[type=password]:-moz-placeholder,
.main-contact .form input[type=search]:-moz-placeholder,
.main-contact .form input[type=email]:-moz-placeholder,
.main-contact .form input[type=url]:-moz-placeholder,
.main-contact .form input[type=tel]:-moz-placeholder,
.main-contact .form input[type=number]:-moz-placeholder,
.main-contact .form input[type=date]:-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .main-contact .form input[type=text]:-moz-placeholder,
  .main-contact .form input[type=password]:-moz-placeholder,
  .main-contact .form input[type=search]:-moz-placeholder,
  .main-contact .form input[type=email]:-moz-placeholder,
  .main-contact .form input[type=url]:-moz-placeholder,
  .main-contact .form input[type=tel]:-moz-placeholder,
  .main-contact .form input[type=number]:-moz-placeholder,
  .main-contact .form input[type=date]:-moz-placeholder {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .main-contact .form input[type=text]:-moz-placeholder,
  .main-contact .form input[type=password]:-moz-placeholder,
  .main-contact .form input[type=search]:-moz-placeholder,
  .main-contact .form input[type=email]:-moz-placeholder,
  .main-contact .form input[type=url]:-moz-placeholder,
  .main-contact .form input[type=tel]:-moz-placeholder,
  .main-contact .form input[type=number]:-moz-placeholder,
  .main-contact .form input[type=date]:-moz-placeholder {
    font-size: 15px;
  }
}
.main-contact .form input[type=text]::-moz-placeholder,
.main-contact .form input[type=password]::-moz-placeholder,
.main-contact .form input[type=search]::-moz-placeholder,
.main-contact .form input[type=email]::-moz-placeholder,
.main-contact .form input[type=url]::-moz-placeholder,
.main-contact .form input[type=tel]::-moz-placeholder,
.main-contact .form input[type=number]::-moz-placeholder,
.main-contact .form input[type=date]::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .main-contact .form input[type=text]::-moz-placeholder,
  .main-contact .form input[type=password]::-moz-placeholder,
  .main-contact .form input[type=search]::-moz-placeholder,
  .main-contact .form input[type=email]::-moz-placeholder,
  .main-contact .form input[type=url]::-moz-placeholder,
  .main-contact .form input[type=tel]::-moz-placeholder,
  .main-contact .form input[type=number]::-moz-placeholder,
  .main-contact .form input[type=date]::-moz-placeholder {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .main-contact .form input[type=text]::-moz-placeholder,
  .main-contact .form input[type=password]::-moz-placeholder,
  .main-contact .form input[type=search]::-moz-placeholder,
  .main-contact .form input[type=email]::-moz-placeholder,
  .main-contact .form input[type=url]::-moz-placeholder,
  .main-contact .form input[type=tel]::-moz-placeholder,
  .main-contact .form input[type=number]::-moz-placeholder,
  .main-contact .form input[type=date]::-moz-placeholder {
    font-size: 15px;
  }
}
.main-contact .form input[type=text]:-ms-input-placeholder,
.main-contact .form input[type=password]:-ms-input-placeholder,
.main-contact .form input[type=search]:-ms-input-placeholder,
.main-contact .form input[type=email]:-ms-input-placeholder,
.main-contact .form input[type=url]:-ms-input-placeholder,
.main-contact .form input[type=tel]:-ms-input-placeholder,
.main-contact .form input[type=number]:-ms-input-placeholder,
.main-contact .form input[type=date]:-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .main-contact .form input[type=text]:-ms-input-placeholder,
  .main-contact .form input[type=password]:-ms-input-placeholder,
  .main-contact .form input[type=search]:-ms-input-placeholder,
  .main-contact .form input[type=email]:-ms-input-placeholder,
  .main-contact .form input[type=url]:-ms-input-placeholder,
  .main-contact .form input[type=tel]:-ms-input-placeholder,
  .main-contact .form input[type=number]:-ms-input-placeholder,
  .main-contact .form input[type=date]:-ms-input-placeholder {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .main-contact .form input[type=text]:-ms-input-placeholder,
  .main-contact .form input[type=password]:-ms-input-placeholder,
  .main-contact .form input[type=search]:-ms-input-placeholder,
  .main-contact .form input[type=email]:-ms-input-placeholder,
  .main-contact .form input[type=url]:-ms-input-placeholder,
  .main-contact .form input[type=tel]:-ms-input-placeholder,
  .main-contact .form input[type=number]:-ms-input-placeholder,
  .main-contact .form input[type=date]:-ms-input-placeholder {
    font-size: 15px;
  }
}
.main-contact .form select,
.main-contact .form textarea {
  padding: 13px 24px;
  resize: none;
  height: 185px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #595959;
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(20deg, rgba(255, 255, 247, 0.2) 0%, #eadac8 31%, #dcc2a3 43%, #f5eddf 81%, #f1e7da 100%) 1;
}
@media screen and (max-width: 320px) {
  .main-contact .form select,
  .main-contact .form textarea {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .main-contact .form select,
  .main-contact .form textarea {
    font-size: 15px;
  }
}
.main-contact .form select::-webkit-input-placeholder,
.main-contact .form textarea::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .main-contact .form select::-webkit-input-placeholder,
  .main-contact .form textarea::-webkit-input-placeholder {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .main-contact .form select::-webkit-input-placeholder,
  .main-contact .form textarea::-webkit-input-placeholder {
    font-size: 15px;
  }
}
.main-contact .form select:-moz-placeholder,
.main-contact .form textarea:-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .main-contact .form select:-moz-placeholder,
  .main-contact .form textarea:-moz-placeholder {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .main-contact .form select:-moz-placeholder,
  .main-contact .form textarea:-moz-placeholder {
    font-size: 15px;
  }
}
.main-contact .form select::-moz-placeholder,
.main-contact .form textarea::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .main-contact .form select::-moz-placeholder,
  .main-contact .form textarea::-moz-placeholder {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .main-contact .form select::-moz-placeholder,
  .main-contact .form textarea::-moz-placeholder {
    font-size: 15px;
  }
}
.main-contact .form select:-ms-input-placeholder,
.main-contact .form textarea:-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #595959;
}
@media screen and (max-width: 320px) {
  .main-contact .form select:-ms-input-placeholder,
  .main-contact .form textarea:-ms-input-placeholder {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .main-contact .form select:-ms-input-placeholder,
  .main-contact .form textarea:-ms-input-placeholder {
    font-size: 15px;
  }
}
.main-contact .contact-information {
  width: 100%;
  max-width: 360px;
  padding: 32px;
  background-image: url("../img/bg-contact.png");
  background-position: center;
  background-size: cover;
  margin-bottom: 24px;
  display: grid;
  gap: 16px 0;
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(20deg, rgba(255, 255, 247, 0.2) 0%, #eadac8 31%, #dcc2a3 43%, #f5eddf 81%, #f1e7da 100%) 1;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}
.main-contact .contact-information:last-child {
  margin-bottom: 0;
}
.main-contact .contact-information h2 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: calc(10px + 2 * (100vw - 320px) / 980);
  line-height: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fffff7;
  margin-bottom: 0;
}
@media screen and (max-width: 320px) {
  .main-contact .contact-information h2 {
    font-size: 10px;
  }
}
@media screen and (min-width: 1300px) {
  .main-contact .contact-information h2 {
    font-size: 12px;
  }
}
.main-contact .contact-information p {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #fffff7;
  margin-bottom: 0;
}
@media screen and (max-width: 320px) {
  .main-contact .contact-information p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .main-contact .contact-information p {
    font-size: 15px;
  }
}
.main-contact .contact-information p span,
.main-contact .contact-information p svg {
  color: #dcc2a3;
  font-size: 15px;
  margin-right: 12px;
}
.main-contact .contact-information p a {
  text-decoration: none !important;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 320px) / 980);
  line-height: 160%;
  color: #fffff7;
}
@media screen and (max-width: 320px) {
  .main-contact .contact-information p a {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .main-contact .contact-information p a {
    font-size: 15px;
  }
}
.main-contact .contact-information.location p:nth-child(3) {
  align-items: start;
}
.main-contact .contact-information.location p:nth-child(3) svg,
.main-contact .contact-information.location p:nth-child(3) span {
  position: relative;
  top: 4px;
}
.main-contact .contact-information.location p:last-child {
  padding-left: 26px;
}
.main-contact .social {
  display: block;
}
.main-contact .social h2 {
  width: 100%;
  max-width: 360px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: calc(24px + 10 * (100vw - 320px) / 980);
  line-height: 110%;
  text-align: center;
  color: #303030;
  margin: 0 auto 40px;
}
@media screen and (max-width: 320px) {
  .main-contact .social h2 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1300px) {
  .main-contact .social h2 {
    font-size: 34px;
  }
}
.main-contact .social ul {
  list-style: none;
  gap: 30px;
  padding: 0;
  margin: 0;
}
.main-contact .social ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #303030;
  background-color: rgba(220, 194, 163, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
.main-contact .social ul li a svg {
  font-size: 18px;
}
.main-contact .social ul li a:hover {
  background-color: rgba(220, 194, 163, 0.4);
}

.content-posts {
  position: relative;
  overflow: hidden;
}
.content-posts::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 650px;
  background: url("../img/bg-portfolio.png") no-repeat;
  background-size: cover;
  background-position: bottom;
}
.content-posts .header-posts {
  width: 100%;
  padding: clamp(144px, 5vw, 144px) 0 clamp(110px, 5vw, 280px);
  display: block;
  position: relative;
}
.content-posts .header-posts h2 {
  width: 100%;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: calc(30px + 34 * (100vw - 320px) / 980);
  line-height: 100%;
  color: #303030;
  margin-bottom: clamp(20px, 10vw, 40px);
}
@media screen and (max-width: 320px) {
  .content-posts .header-posts h2 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1300px) {
  .content-posts .header-posts h2 {
    font-size: 64px;
  }
}
.content-posts .header-posts h4 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #838383;
  margin-bottom: 8px;
}
.content-posts .header-posts .header-details {
  display: block;
  position: relative;
}
.content-posts .header-posts .header-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.content-posts .header-posts .header-details ul li {
  width: 100%;
  max-width: 144px;
}
@media (max-width: 768px) {
  .content-posts .header-posts .header-details ul {
    flex-direction: row;
    width: 100%;
  }
}
.content-posts .media-posts {
  padding-bottom: 80px;
}
.content-posts .media-posts .thumbnail {
  width: 100%;
  max-width: 912px;
  height: 544px;
  position: relative;
  overflow: hidden;
  padding: 10px;
  margin: 0 auto;
  border: 2px solid #dcc2a3;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}
.content-posts .media-posts .thumbnail figure {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  overflow: hidden;
}
.content-posts .media-posts .thumbnail figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border: 2px solid #ffffff;
}
.content-posts .media-posts small {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #303030;
}
.content-posts .main-posts .container-fluid {
  max-width: 900px;
}
.content-posts .main-posts h2,
.content-posts .main-posts h3,
.content-posts .main-posts h4,
.content-posts .main-posts h5,
.content-posts .main-posts h6 {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  line-height: 110%;
  color: #303030;
  margin-bottom: 32px;
}
.content-posts .main-posts h2 {
  font-size: calc(24px + 10 * (100vw - 320px) / 980);
}
@media screen and (max-width: 320px) {
  .content-posts .main-posts h2 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1300px) {
  .content-posts .main-posts h2 {
    font-size: 34px;
  }
}
.content-posts .main-posts p {
  width: 100%;
  max-width: 750px;
  margin: 0 auto 30px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14px + 2 * (100vw - 320px) / 980);
  line-height: 170%;
  color: #303030;
}
@media screen and (max-width: 320px) {
  .content-posts .main-posts p {
    font-size: 14px;
  }
}
@media screen and (min-width: 1300px) {
  .content-posts .main-posts p {
    font-size: 16px;
  }
}
.content-posts .main-posts .wp-block-group {
  width: 100%;
  margin: auto;
  position: relative;
  margin: 72px auto;
}
.content-posts .main-posts .wp-block-group.wp-block-group-is-layout-flex {
  display: grid;
}
@media (max-width: 768px) {
  .content-posts .main-posts .wp-block-group.wp-block-group-is-layout-flex {
    justify-content: center !important;
  }
  .content-posts .main-posts .wp-block-group.wp-block-group-is-layout-flex figure {
    text-align: center;
  }
}
.content-posts .main-posts .wp-block-group.wp-block-group-is-layout-flex figure.wp-block-image {
  width: 100%;
}
.content-posts .main-posts .wp-block-group.wp-block-group-is-layout-flex figure.wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-posts .main-posts .wp-block-group.wp-block-group-is-layout-flex blockquote {
  height: max-content;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  max-width: 460px;
  background: rgba(220, 194, 163, 0.1);
  backdrop-filter: blur(4.5px);
  padding: 32px 32px 32px 67px;
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(20deg, rgba(255, 255, 247, 0.2) 0%, #eadac8 31%, #dcc2a3 43%, #f5eddf 81%, #f1e7da 100%) 1;
  right: 0;
}
.content-posts .main-posts .wp-block-group.wp-block-group-is-layout-flex blockquote p {
  margin-bottom: 0;
  font-family: "Cormorant Garamond", serif;
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-size: calc(18px + 4 * (100vw - 320px) / 980);
  line-height: 130%;
  color: #303030;
}
@media screen and (max-width: 320px) {
  .content-posts .main-posts .wp-block-group.wp-block-group-is-layout-flex blockquote p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1300px) {
  .content-posts .main-posts .wp-block-group.wp-block-group-is-layout-flex blockquote p {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .content-posts .main-posts .wp-block-group.wp-block-group-is-layout-flex blockquote {
    position: static;
  }
}
.content-posts .main-posts .wp-block-group.wp-block-group-is-layout-flex.wp-container-core-group-is-layout-1 {
  justify-content: start;
}
.content-posts .main-posts .wp-block-group.wp-block-group-is-layout-flex.wp-container-core-group-is-layout-1 blockquote {
  right: 0;
  bottom: 40px;
}
.content-posts .main-posts .wp-block-group.wp-block-group-is-layout-flex.wp-container-core-group-is-layout-2 {
  justify-content: end;
}
.content-posts .main-posts .wp-block-group.wp-block-group-is-layout-flex.wp-container-core-group-is-layout-2 blockquote {
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 530px;
  padding-left: 32px;
  padding-right: 67px;
}
.content-posts .section-posts::before {
  display: none;
}
.content-posts .section-posts::after {
  bottom: 180px;
  height: 450px;
}

.copy p a, .copy p, footer .information p a, footer .information p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #595959;
}

footer {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  padding: clamp(40px, 6vw, 88px) 0 clamp(30px, 5vw, 72px);
  background: linear-gradient(180deg, #ffffff 10%, #fffff7 20%, #fffff7 40%, #ffffff 100%);
}
footer .logo {
  height: 73px;
  position: relative;
  display: block;
  margin-bottom: 48px;
}
footer .logo a {
  width: 100%;
  height: 100%;
  display: block;
}
footer .logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer .social {
  list-style: none;
  display: flex;
  gap: 30px;
}
footer .social li {
  width: 40px;
  height: 40px;
  background-color: rgba(220, 194, 163, 0.2);
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
footer .social li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #595959;
  font-size: 20px;
}
footer .information p {
  margin-bottom: 12px;
}
footer .information p a {
  text-decoration: none;
}

.copy {
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  background-color: rgba(220, 194, 163, 0.05);
}
.copy::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fffff7;
  z-index: -1;
}
.copy p {
  margin: 0;
}

@media (max-width: 768px) {
	.main-portfolio figure {
		min-height: 400px;
	}
}

@media (max-width: 575.98px) {
	.main-portfolio figure {
		min-height: auto;
	}
}

#carouselPortfolio .f-carousel__nav button span {
    color: #fff;
}