@import url("https://fonts.googleapis.com/css2?family=Fira+Sans+Extra+Condensed:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat-Black.otf") format("opentype");
}
@font-face{
    font-family:akrobat bold;
    font-style:normal;
    font-weight:700;
    src:local('Akrobat Bold'),url(https://fonts.cdnfonts.com/s/14486/Akrobat-Bold.woff) format('woff')
}
* {
  font-family: "Fira Sans Extra Condensed", sans-serif;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  border: none;
  background: none;
  /* font-size: inherit; */
}
html {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #faf8f6;
  overflow-x: hidden;
}
body {
  width: 100%;
  max-width: 2500px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #faf8f6;
  /* background-image: url(../img/bannerbg.png);
  background-position: left left;
  background-repeat: no-repeat; */

  overflow-x: hidden;
  position: relative;
}
*::-webkit-scrollbar {
  width: 6px;
  height: 2px;
  background-color: #404348;
  border-radius: 4px;
}

*::-webkit-scrollbar-thumb {
  background-color: #c68f24;
  border-radius: 4px;
}

h1{
	color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
a{
	color: #cea740;
}
/* HEADER START */

header {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 15;
  top: 0;
  /* background-image: url("https://textile-vremeni.ru/wp-content/themes/tekstile/img/bannerbg.png");
  background-repeat: no-repeat; */
  /* background-color: #faf8f6; */
}
.header-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8%;
  padding-right: 40px;
}

.header-left {
  display: flex;
  height: 56px;
  align-items: center;
}

.menu-icon {
  width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  left: 40px;
  top: 0px;
}

.menu-icon svg {
  width: 40px;
  height: 16px;
  transition: all 0.5s ease;
}
.menu-icon:hover svg line {
  stroke: #b78d20;
}
.logo {
  display: flex;
  flex-direction: column;
}

.logo img {
  width: 239px;
}

.logo-text {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px; /* 112.5% */
  letter-spacing: -0.32px;
}

.header-center {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.catalog-btn {
  display: inline-flex;
  height: 58px;
  padding: 0px 30px;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.5s ease;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  color: #fff;
  text-align: right;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.catalog-btn:hover {
  background: linear-gradient(180deg, #c68f24 9.38%, #ab6e12 91.15%), #cea740;
  color: #fff;
}
.header-center-text {
  display: flex;
  height: 58px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.header-center-text button {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 3px;
  border-bottom: 1px dashed #717171;
  transition: all 0.5s ease;
  cursor: pointer;
}
.header-center-text button:hover {
  color: #b78d20;
  border-color: #b78d20;
}

.header-right {
  display: flex;
  gap: 40px;
  display: flex;
  margin-left: 5vw;
}

.header-wp {
  display: inline-flex;
  height: 58px;
  padding: 0px 30px;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid #c5c5c5;
  transition: all 0.5s ease;
}
.header-wp span {
  color: #2c2c2c;
  text-align: right;
  font-family: "Roboto Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
.header-wp:hover {
  border-color: #2c2c2c;
  background: #2c2c2c;
}
.header-wp:hover span {
  color: #fff;
}
.header-wp svg path {
  transition: all 0.5 ease;
}
.header-wp:hover svg path {
  fill: #fff;
}
.header-right-tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header-tel {
  display: flex;
  align-items: center;
  color: #2c2c2c;
  text-align: right;
  font-family: "Fira Sans Extra Condensed";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.header-tel svg {
  display: none;
}

.header-tel-text {
  color: #6d6d6d;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px; /* 128.571% */
}
.header-tel:hover {
  color: #b78d20;
}

.catalog-menu {
  display: flex;
  flex-direction: column;
  padding: 60px 215px 30px 60px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 30px 0px 132px 0px;
  border: 1px solid #d7d7d7;
  background: #fff;
  box-shadow: 10px 7px 30px 0px rgba(0, 0, 0, 0.02);
  position: absolute;
  transition: transform 2s cubic-bezier(0.075, 0.82, 0.165, 1);
  top: 120%;
  flex-shrink: 0;
  transform: translateY(-500%);
}
.catalog-menu.active {
  transition: transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: translateX(0);
}

.katalog-menu-item {
  width: 100%;
  display: flex;
  gap: 174px;
}

.catalog-menu-box {
  display: flex;
  flex-direction: column;
  gap: 35px;
  flex-shrink: 0;
}
.katalog-menu-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 104%; /* 24.96px */
}
.catalog-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 20px;
}

.catalog-list li {
  display: inline-flex;
}
.catalog-list li a {
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.catalog-list li a:hover {
  color: #2c2c2c;
}

.catalog-menu-bottom {
  display: flex;
  margin-top: 56px;
  gap: 275px;
  margin-left: 18px;
}

.catalog-menu-bottom a {
  color: #2c2c2c;
  font-family: Akrobat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 0px; /* 0% */
  opacity: 0.5;
  border-bottom: 1px dotted #2c2c2c;
  padding-bottom: 10px;
  transition: all 0.5s ease;
}

.catalog-menu-bottom a:hover {
  border-bottom: 1px dotted #cea740;
  color: #cea740;
}

.menu-item {
  display: flex;
  width: 506px;
  height: 86vh;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  border-radius: 0px 0px 105px 0px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  transform: translateX(-200%);
  transition: transform 2.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  box-shadow: 10px 7px 30px 0px rgba(0, 0, 0, 0.02);
  padding: 25px 60px 188px 157px;
}
.menu-item.active {
  width: 506px;
  transition: transform 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: translateX(0);
}
.menu-item-content {
  display: flex;
  height: 100;
  flex-direction: column;
  position: relative;
}
.menu-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  position: absolute;
  top: 25px;
  left: 40px;
}
.menu-close svg line {
  transition: all 0.5s ease;
}
.menu-close-text {
  color: #333335;
  text-align: center;
  font-family: Akrobat;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
.menu-close:hover svg line {
  stroke: #b78d20;
}
.menu-close:hover .menu-close-text {
  color: #b78d20;
}

.menu-logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-logo img {
  width: 239px;
}

.menu-logo-text {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px; /* 112.5% */
  letter-spacing: -0.32px;
}
nav {
  display: flex;
  flex-direction: column;
  margin-top: 55%; /*120px*/
}
.dd-menu-li {
  display: none !important;
}
.menu-li {
  width: 100%;
  display: inline-flex;
  margin-top: 25px;
}

.menu-a {
  color: #2c2c2c;
  /* text-align: right; */
  font-family: "Akrobat Bold";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s ease;
  font-synthesis: none;
}

.menu-a::after {
  content: "";
  width: 80%;
  display: block;
  height: 1px;
  background: #2c2c2c;
  margin-top: 3px;
  transition: all 0.5s ease;
}

.menu-a:hover {
  color: #b78d20;
}

.menu-a:hover::after {
  background: #b78d20;
}
.menu-contack {
  display: none;
}
/* HEADER END */
/* BODY BG START */
.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
/* BODY BG END */
/* BANNER START */
.banner-container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  
}
.catalog-banner {
  margin-top: -140px;
}
.plastic-banner {
  margin-top: -140px;
}
.banner-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
  padding-left: 8%;
  gap: 25px;
  position: relative;
}

.banner-text {
  width: 1000px;
  display: flex;
  flex-direction: column;
  margin-top: 90px;
  padding-bottom: 30px;
  flex-shrink: 0;
}

.banner-title {
  display: flex;
  flex-direction: column;
}
.banner-title h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 48px */
  /* margin-block-start: 0.67em; */
  /* margin-block-end: 0.67em; */
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
.banner-title h1 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 48px */
}
.banner-title h4 {
  color: #cea740;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.banner-title .subtitle {
  display: inline;
}
.banner-title .subtitle h3 {
  display: inline;
}
.banner-title .subtitle h3 br {
  display: none;
}
.banner-title .subtitle h3 span {
  display: none;
}
.banner-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 60px;
}
.banner-list p {
  width: 85%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 23.4px */
}
.banner-list p::before {
  content: "";
  display: flex;
  width: 32px;
  height: 32px;
  background: url(../img/ok.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.banner-list p img {
  width: 32px;
  height: 32px;
}

.banner-button-item {
  display: flex;
  margin-left: 15px;
  margin-top: 40px;
  gap: 27px;
}
.catalog-banner .banner-button-item {
  margin-top: 100px;
}
.plastic-banner .banner-button-item {
  margin-top: 130px;
}
.banner-button-box {
  width: 312px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner-btn {
  width: 100%;
  height: 80px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.5s ease;
  color: #fff;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.5s ease;
}

.banner-btn img {
  margin-left: -15px;
  margin-top: -10px;
}
.curtain-btn {
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%);
}
.curtain-btn:hover {
  background: linear-gradient(180deg, #c68f24 9.38%, #ab6e12 91.15%);
}
.curtain-btn.active {
  background: #CEA740;
}
.dizayn-btn {
  background: linear-gradient(180deg, #494949 0%, #353535 100%);
}
.dizayn-btn:hover {
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
}

.banner-btn-text {
  color: #ababab;
  text-align: center;
  font-family: "Fira Sans Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  margin-top: 20px;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  margin-top: 20px;
  position: relative;
  border-radius: 30% 0px 0px 0px;
  background: url(../img/bannerr.png);
  background-repeat: no-repeat;
  background-size: 100% 120%;
  /* filter: drop-shadow(30px 10px 10px rgba(0, 0, 0, 0.2)); */
}
.catalog-banner .banner-img {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  margin-top: 20px;
  position: relative;
  border-radius: 30% 0px 0px 0px;
  background: url(../img/banner2.png);
  background-repeat: no-repeat;
  background-size: 100% 120%;
}

.plastic-banner .banner-img {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  margin-top: 20px;
  position: relative;
  border-radius: 30% 0px 0px 0px;
  background: url(../img/pbanner.png);
  background-repeat: no-repeat;
  background-size: 100% 120%;
}
/* BANNER END */

/* CURTIAN MODEL START */

.curtians-model-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
  z-index: 1;
}

.curtians-model-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 8%;
}

.curtians-model-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.curtians-model-title p {
  color: #494949;
  font-family: "Cormorant Garamond";
  font-size: 55px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}

.curtians-model-title p span {
  color: #cea740;
  font-family: "Cormorant Garamond";
  font-size: 55px;
}

.models-item {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8%;
  gap: 0%;
  margin-top: 50px;
}

.models-btn-box {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.models-btn {
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: start;
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s ease;
  cursor: pointer;
  padding: 10px 0;
}

.models-btn::after {
  content: "";
  width: 70%;
  height: 1px;
  border-bottom: 1px solid #cea740;
  display: block;
  margin-top: 8px;
}
.models-btn:hover {
  margin-left: 20px;
  font-size: 24px;
  color: #2c2c2c;
}
.models-btn.active {
  font-size: 24px;
  color: #2c2c2c;
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: 20px;
}
.models-btn.active::after {
  border-color: #2c2c2c;
  width: 120%;
}

.models-img-box {
  width: 76%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 44px;
  padding-right: 56px;
  position: relative;
}
.models-img-box::after {
  content: "";
  display: block;
  width: 50%;
  height: 60%;
  background: url(../img/shadow.png);
  background-repeat: no-repeat;
  position: absolute;
  background-size: cover;
  right: 0;
  bottom: 0;
  border-radius: 0px 0px 80px 0px;
}

.cortians-img {
  width: 100%;
  height: 60vh;
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1;
  filter: drop-shadow(10px 7px 15px rgba(0, 0, 0, 0.2));
}

.cortians-img img {
  width: 100%;
  height: 100%;
}
.cortians-img.active {
  display: flex;
}

/* CURTIAN MODEL END */

/* SALON START */

.salon-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin-top: 114px;
  padding: 0 8%;
}
.salon-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
}

.salon-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 55px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 60px;
}
.salon-title br {
  display: none;
}
.salon-info {
  width: fit-content;
  display: flex;
  gap: 20px;
  align-items: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 15px 0px rgba(73, 73, 73, 0.1);
  padding: 10px 20px;
  margin-top: 30px;
}
.salon-info-box {
  display: flex;
  flex-direction: column;
}
.salon-info-box p {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
}
.salon-info-box span {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 20.8px */
}

.salon-bottom {
  display: flex;
  gap: 90px;
  margin-top: 30px;
}
.salon-text {
  width: 306px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 60px;
}

.salon-text p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 20.8px */
}

.salon-info-link {
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 40px;
  transition: all 0.5s ease;
}
.salon-info-link::after {
  content: "";
  width: 85%;
  height: 1px;
  border-bottom: 1px solid #cea740;
  display: block;
  margin-top: 3px;
  transition: all 0.5s ease;
}
.salon-info-link:hover {
  color: #2c2c2c;
}
.salon-info-link:hover::after {
  border-color: #2c2c2c;
}
.salon-img {
  width: 39vw;
  margin-bottom: -24px;
  position: relative;
}
.salon-elips {
  width: 19vw;
  position: absolute;
  right: 12%;
  bottom: 11%;
}
.salon-right {
  width: 19vw;
  position: absolute;
  right: 0;
  top: -24px;
  z-index: 1;
}

/* SALON END */

/* EXAMPLE START */

.example-container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 200px;
}

.example-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.examle-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 55px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}

.example-button-item {
  display: inline-flex;
  height: 51px;
  align-items: center;
  gap: -1px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid #e7e2d6;
  margin-top: 60px;
  overflow-y: hidden;
  overflow-x: auto;
}

.example-btn {
  display: flex;
  padding: 20px 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  flex-shrink: 0;
  color: #c9a74f;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s ease;
}

.example-btn.active {
  display: flex;
  padding: 24px 60px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 12px;
  background: #be8b06;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.filter-item {
  width: 0;
  height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.filter-item.active {
  width: 100%;
  height: fit-content;
}

.filter-button-item {
  width: 100%;
  display: inline-flex;
  height: 51px;
  /* align-items: center;
  justify-content: center; */
  flex-shrink: 0;
  margin-top: 30px;
  border-bottom: 1px solid #c5c5c5;
  margin-bottom: 40px;
  overflow-y: hidden;
  overflow-x: auto;
}
.filter-button-item .filter-all-btn:first-child {
  margin-left: auto;
}
.filter-button-item .filter-all-btn:last-child {
  margin-right: auto;
}
.filter-button-item::-webkit-scrollbar {
  display: none;
}
.filter-btn {
  display: flex;
  height: 100%;
  padding: 10px 41px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #717171;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  transition: all 0.5s ease;
}

.filter-btn.active {
  color: #717171;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-bottom: 2px solid #717171;
}

.example-item {
  width: 0;
  height: 0;
  display: flex;
  flex-direction: column;
}

.example-item.active {
  width: 100%;
  height: fit-content;
}
.example-item-box {
  width: 100%;
  display: flex;
  gap: 1vw;
  margin-bottom: 1vw;
  height: 15vw;
  min-height: 200px;

  overflow-y: hidden;
  overflow-x: auto;
}
.example-item-box::-webkit-scrollbar {
  display: none;
}

.example-item-box a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.example-item-box a img {
  /* width: 100%; */
  height: 100%;
}

.go-portfolio-page {
  display: inline-flex;
  height: 58px;
  padding: 0px 40px;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid #cea740;
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 36px;
}

.go-portfolio-page:hover {
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
  color: #fff;
  border: none;
}

/* EXAMPLE END */

/* GET EXAMPLE START  */

.get-example-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  margin-top: 130px;
}
.get-example-content {
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  background: url(../img/exbg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 90px 0 60px 55px;
}
.ex-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.get-example-left {
  width: 730px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex-shrink: 0;
}

.get-example-title {
  color: #fff;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}
.get-example-text {
  width: 77%;
  color: #fff;
  font-family: "Fira Sans Extra Condensed";
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 28.6px */
  margin-top: 40px;
}
.example-form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 12px;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  cursor: pointer;
  transition: all 0.5s ease;
  padding: 22px 40px;
  color: #fff;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 70px;
}

.example-form-btn:hover {
  /*background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);*/
  background: linear-gradient(180deg, #C68F24 9.38%, #AB6E12 91.15%), #CEA740;
}
.example-form-btn.active {
  background: #CEA740;
}
.get-example-right {
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
  position: absolute;
  right: 19%;
  bottom: 0;
}

.example-personal-img {
  width: 100%;
}

.example-personal {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-shrink: 0;
  margin: 60px 20px 60px 0;
}
.example-personal h4 {
  color: #fff;
  font-family: "Cormorant Garamond";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
}
.example-personal p {
  color: #fff;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 20.8px */
}
.example-personal img {
  position: absolute;
  top: -10px;
  left: -35px;
}
/* GET EXAMPLE END */

/* TAILOR START */

.tailor-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  margin-top: 165px;
}

.tailor-content {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
}

.tailer-text-item {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.tailor-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}
.tailor-text {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 28.6px */
  margin-top: 30px;
}
.tailor-link {
  width: fit-content;
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s ease;
  margin-top: 40px;
}
.tailor-link::after {
  content: "";
  width: 85%;
  height: 1px;
  border-bottom: 1px solid #cea740;
  display: block;
  margin-top: 3px;
}
.tailor-link:hover {
  color: #2c2c2c;
}
.tailor-link:hover::after {
  border-color: #2c2c2c;
}
.tailor-card-item {
  display: flex;
  gap: 50px;
  margin-top: 62px;
  position: relative;
  z-index: 1;
}

.tailor-card {
  display: flex;
}
.tailor-card-content {
  width: 25vw;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
}

.tailor-card-img {
  width: 100%;
  height: 23vw;
  display: block;
  flex-shrink: 0;
  position: relative;
  margin-left: -20px;
}

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

.tailor-card-text {
  display: flex;
  flex-direction: column;
}

.tailor-card-text h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.tailor-card-text p {
  color: #cea740;
  font-family: "Cormorant Garamond";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.tailor-bg {
  width: 48vw;
  height: 32vw;
  position: absolute;
  top: 0;
  right: 0;
}
.tailor-year {
  width: 28vw;
  position: absolute;
  right: 3vw;
  top: 29vw;
}

/* TAILOR END */

/* INTERIOR MAGAZINE START */

.interior-magazine-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 130px;
  padding: 0 8%;
}

.interior-magazine-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.interior-title-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.interior-title {
  color: #2c2c2c;
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}
.interior-text {
  color: #717171;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 28.6px */
}

.interior-card-item {
  display: flex;
  /* justify-content: space-between; */
  gap: 2%;
  margin-top: 60px;
}

.interior-card {
  width: 23%;
  height: 523px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ababab;
  transition: all 0.5s ease;
}
@media only screen and (min-width: 1441px) {
  .interior-card {
    width: 306px;
  }
}
.interior-card:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: none;
  border-bottom: 1px solid #ababab !important;
  transform: scale(1.05);
}
.interior-card-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow:hidden;
}

.interior-card-img {
  width: auto;
  height: 310px;
  flex-shrink: 0;
  border-radius: 10px;
}
@media only screen and (max-width: 2000px) {
  .interior-card-img {
    height: 13vw;
  }
}
.interior-card-text {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.interior-date {
  color: #ababab;
  font-family: "Fira Sans Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
}

.interior-card-text h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  margin-top: 5px;
}

.interior-card-text p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 20.8px */
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.interior-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.interior-card-bottom a {
  width: fit-content;
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.interior-card-bottom a::after {
  content: "";
  width: 85%;
  height: 1px;
  border-bottom: 1px solid #cea740;
  display: block;
  margin-top: 0px;
  transition: all 0.5s ease;
}
.interior-card-bottom a:hover {
  color: #2c2c2c;
}
.interior-card-bottom a:hover::after {
  border-color: #2c2c2c;
  width: 120%;
}

.interior-time {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
  padding-bottom: 14px;
}
.interior-time-text {
  color: #ABABAB;
  font-family: "Fira Sans Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
}
.interior-all-link {
  width: fit-content;
  display: flex;
  height: 58px;
  padding: 0px 40px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid #cea740;
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s ease;
  margin: 0 auto 0 auto;
  margin-top: 30px;
}

.interior-all-link:hover {
  color: #fff;
  background: #2a2a2a;
}

/* INTERIOR MAGAZINE END */

/* CONTACK DESINGER START */

.contack-desinger-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  margin-top: 125px;
}

.contack-desinger-content {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.contack-desinger-item {
  width: 85%;
  height: fit-content;
  display: flex;
  background: url(../img/desingerbg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  border-radius: 0px 0px 160px 0px;
  justify-content: space-between;
  padding: 78px 0 120px 53px;
}
.cantack-desinger-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.contack-desinger-text {
  width: 500px;
  display: flex;
  flex-direction: column;
  position: relative;
  flex-shrink: 0;
}

.contack-desinger-text h2 {
  color: #fff;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}
.contack-desinger-text p {
  color: #fff;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  margin-top: 30px;
}
.contack-desinger-text a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 50.4px */
  transition: all 0.5s ease;
  margin-top: 40px;
}

.contack-desinger-text a svg path {
  transition: all 0.5s ease;
}
.contack-desinger-text a:hover svg path {
  fill: #fff;
}
.contack-desinger-text a:hover {
  color: #fff;
}

.contack-desinger-text span {
  color: #fff;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 20.8px */
  margin-top: 20px;
}
.contack-desinger-personal-item {
  width: 100%;
  height: 110%;
  display: flex;
  position: absolute;
  align-items: flex-end;
  left: 30%;
  bottom: 0px;
}

.contack-desinger-personal {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-shrink: 0;
  margin-bottom: 30px;
}
.contack-desinger-personal h4 {
  color: #fff;
  font-family: "Cormorant Garamond";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
}
.contack-desinger-personal p {
  color: #fff;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 20.8px */
}
.contack-desinger-personal img {
  position: absolute;
  top: -10px;
  left: -35px;
}
.contack-desinger-person-img {
  height: 100%;
}
.contack-desinger-form {
  display: flex;
  width: 416px;
  padding: 40px 20px 30px 20px;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 4px 15px 0px rgba(73, 73, 73, 0.1);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contack-desinger-form h3 {
  width: 100%;
  color: #2c2c2c;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 35.2px */
}
.contack-desinger-form-img {
  width: 100%;
  display: flex;
  margin-top: 20px;
}

.contack-desinger-form p {
  color: #717171;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  margin-top: 20px;
}

.contack-desinger-form-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.des-form-box {
  width: 100%;
  height: 60px;
  position: relative;
  display: flex;
  height: 67px;
  padding: 24px 20px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #dfdfdf;
  margin-top: 10px;
}
.des-form-box input,
.des-form-box inpup::placeholder {
  outline: none;
  border: none;
  width: 100%;
  color: #ababab;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  text-transform: uppercase;
}
.des-form-box input:focus {
  border: none;
  outline: none;
}

.des-form-box label {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  text-transform: uppercase;
  display: block;
  position: absolute;
  top: -7px;
}
.des-form-box-send {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  cursor: pointer;
  transition: all 0.5s ease;
  cursor: pointer;
}
.des-form-box-send button {
  color: #fff;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
.des-form-box-send:hover {
  background: linear-gradient(180deg, #C68F24 9.38%, #AB6E12 91.15%);
}

.des-checkbox-box {
  width: 100%;
  height: fit-content;
  display: flex;
  margin-top: 20px;
  cursor: pointer;
}

.des-checkbox-box label {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.des-checkbox-box label input {
  appearance: none;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s linear;
  /* background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740; */
  border: 4px solid #CEA740;
}
.des-checkbox-box label input:hover {
  background: #F1E5C4;
}
.des-checkbox-box label input:checked {
  border: unset;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  border-radius: 6px;
}
.des-checkbox-box label input::before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  background: url(../img/yes.png);
  background-size: cover;
  transition: all 0.3s linear;
  border-radius: 6px;
}
.des-checkbox-box label input:checked::before {
  width: 100%;
  height: 100%;
}
.variants-form-box:has(input:focus) {
  border: 1px solid #CEA740;
}
.des-form-box-send:has(button:disabled) {
  background: gray;
  cursor: default;
}
.des-policy,
.des-policy a {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 19.6px */
  transition: all 0.3s linear;
}

.des-policy a:hover {
  color: #b78d20;
}

/* CONTACK DESINGER END */

/* FOOTER START CODE */

footer {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f4f1;
  padding: 40px 8% 20px 8%;
  margin-top: 62px;
}

.footer-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-top-left {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  width: 239px;
  height: 33px;
}
.footer-logo svg {
  width: 100%;
}

.footer-logo-text {
  color: #6d6d6d;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
}

.footer-top-right {
  display: flex;
  align-items: center;
}

.footer-form-btn {
  display: flex;
  height: 46px;
  padding: 0px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid #c5c5c5;
  color: #6d6d6d;
  text-align: right;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s linear;
  margin-right: 60px;
}
.footer-form-btn:hover {
  color: #fff;
  background: #2a2a2a;
}
.footer-form-btn:hover svg path {
  fill: #fff;
}
@media only screen and (min-width: 1px) {
  .footer-form-btn svg {
    display: none;
  }
}
.footer-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
}

.footer-tel-a {
  color: #6d6d6d;
  text-align: right;
  font-family: "Fira Sans Extra Condensed";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s linear;
}

.footer-tel-a:hover {
  color: #b78d20;
  transform: scale(1.05);
}

.footer-tel-text {
  color: #6d6d6d;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px; /* 128.571% */
}

.footer-contack {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contack svg {
  border-radius: 8px;
  transition: all 0.5s ease;
}
.footer-contack svg:hover rect {
  fill: #2aabee;
}

.footer-contack svg:hover path {
  fill: #25d366;
}
.footer-contack .footer-wp:hover #Vector {
  fill: #fff;
}
.footer-contack .footer-telegram:hover path {
  fill: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu-btn {
  display: none;
}
.footer-a {
  color: #6d6d6d;
  font-family: "Fira Sans Extra Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s linear;
}
.footer-a:hover {
  color: #b78d20;
}

.footer-menu2 {
  width: 70%;
  display: flex;
  justify-content: space-between;
}
.footer-menu2-box {
  display: flex;
  gap: 30px;
}

.menu2-btn {
  display: flex;
  color: #9f9d97;
  text-align: right;
  font-family: "Fira Sans Extra Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.footer-menu2-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-a2 {
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s linear;
}
.last-a2 {
  color: #9f9d97;
  font-family: "Fira Sans Extra Condensed";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}
.footer-a2:hover {
  color: #2a2a2a;
}
.footer-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9f9d97;
  font-family: "Fira Sans Extra Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
}
.footer-copy p .website {
  color: #b78d20;
}
.footer-copy p a {
  color: #b78d20;
}
.footer-copy p a:hover {
  color: #2a2a2a;
}
/* FOOTER START END */

/* !ALL FORM CODE START */
/* CURTAIN-FORM START */
.contack-form-modal-container,
.example-form-modal-container,
.curtain-form-modal-container,
.desinger-form-modal-container,
.conditions-form-modal-container,
.online-form-modal-container,
.program-form-modal-container,
.join-form-modal-container {
  width: 0;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 1000;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  /* transition: all 0.5s ease; */
  padding: 0 19.4%;
}
.contack-form-modal-container.active,
.example-form-modal-container.active,
.curtain-form-modal-container.active,
.desinger-form-modal-container.active,
.conditions-form-modal-container.active,
.online-form-modal-container.active,
.program-form-modal-container.active,
.join-form-modal-container.active {
  width: 100%;
  height: 100vh;
}

.modal-form-content {
  width: 856px;
  height: fit-content;
  display: flex;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(
      0deg,
      rgba(38, 28, 12, 0.62) 0%,
      rgba(38, 28, 12, 0.62) 100%
    ),
    url(../img/curtainform.png),
    lightgray -16.205px 0px / 128.686% 100% no-repeat;
}

.example-form-modal-container > .modal-form-content {
  background: url(../img/examplemodalbg.png),
    lightgray -302.987px -20px / 101.58% 103.571% no-repeat;
}

.example-form-modal {
  justify-content: flex-end;
}
.desinger-form-container {
  flex-direction: row-reverse;
}
.modal-form-container {
  width: 100%;
  display: flex;
  position: relative;
}

.modal-form-close {
  position: absolute;
  top: 20px;
  right: 20px;
  transition: all 0.5s ease;
  cursor: pointer;
  z-index: 3;
}

.modal-form-close svg rect {
  transition: all 0.5s ease;
}

.modal-form-close svg:hover rect {
  fill: #2a2a2a;
}

.modal-form-img {
  width: 50%;
  height: 100%;
  display: flex;
  position: relative;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
}

.modal-form-personal-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
}
.join-form-modal-container .modal-form-personal-img {
  top: 35px;
  height: 95%;
}
.form-person-info {
  display: flex;
  width: 352px;
  height: fit-content;
  flex-direction: column;
  padding: 10px 10px 10px 20px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
}
.form-person-info h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.form-person-info p {
  color: #2c2c2c;
  font-family: Akrobat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
}
.modal-form {
  width: 50%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 30px 20px;
}

.modal-form h3 {
  color: #2c2c2c;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 35.2px */
}

.modal-form-line {
  width: 100%;
  display: flex;
  margin-top: 20px;
}
.modal-form p {
  color: #717171;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  margin-top: 10px;
}

.modal-form-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.modal-form-box {
  width: 100%;
  position: relative;
  display: flex;
  height: 67px;
  padding: 24px 20px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #dfdfdf;
  margin-top: 10px;
}

.modal-form-box input,
.modal-form-box inpup::placeholder {
  outline: none;
  border: none;
  width: 100%;
  /* color: #ababab; */
  color: #2C2C2C;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
}
.modal-form-box:has(input:focus) {
  border: 1px solid #CEA740;
}
.modal-form-box label {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
  display: block;
  position: absolute;
  top: -7px;
}

.modal-form-box-send {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  cursor: pointer;
  transition: all 0.5s ease;
}

.modal-form-box-send button {
  cursor: pointer;
  color: #fff;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.modal-form-box-send:hover {
  background: linear-gradient(180deg, #c68f24 9.38%, #ab6e12 91.15%), #cea740;
}
.modal-form-box-send:has(button:disabled) {
  background: gray;
}
.modal-form-box {
  width: 100%;
  height: fit-content;
  display: flex;
  margin-top: 20px;
  cursor: pointer;
}
.modal-form-box label {
  /* width: 100%; */
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: white;
  padding-right: 4px;
  padding-left: 4px;
  margin-left: -4px
}
.modal-form-checkbox-box label input {
  appearance: none;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s linear;
  /* background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740; */
  border: 4px solid #CEA740;
  background: #FFFFFF;
  border-radius: 4px
}
.modal-form-checkbox-box label input:hover {
  background: #F1E5C4;
}
.modal-form-checkbox-box label input:checked {
  border: unset;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  border-radius: 6px;
}
.modal-form-checkbox-box {
  display: flex;
  margin-top: 20px;
}
.modal-form-checkbox-box label {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.modal-form-checkbox-box label input::before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  background: url(../img/yes.png);
  background-size: cover;
  transition: all 0.3s linear;
  border-radius: 6px;
}
.modal-form-checkbox-box label input:checked::before {
  width: 100%;
  height: 100%;
}

.modal-form-policy,
.modal-form-policy a {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  transition: all 0.3s linear;
}

/* CURTAIN-FORM END */

/* !ALL FORM CODE END*/

/* !CURTIAN CATALOG PAGE START */

.pagination-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 130px;
  position: relative;
  z-index: 3;
}

.pagination-content {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 8%;
  gap: 20px;
}

.pagination-link {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #ababab;
  font-family: "Fira Sans Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  transition: all 0.5s linear;
}
.pagination-link:hover {
  color: #cea740;
}

.pagination-link::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(../img/str.png);
}

.page-name {
  color: #cea740;
  font-family: "Fira Sans Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
}

/* CURTIANS START */

.curtians-catalog-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 25px;
}
.curtian-catalog-bg {
  position: absolute;
  left: 0;
  top: 0;
}

.curtians-catalog-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 8%;
}
.curtians-catalog-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}

.curtians-catalog-item-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.curtians-catalog-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}

.curtians-catalog-item-title {
  color: #ababab;
  font-family: "Fira Sans Extra Condensed";
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.curtians-catalog-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  grid-auto-rows: 382px;
  margin-top: 40px;
}

.curtians-catalog-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border-radius: 20px 20px 20px 0px;
  transition: all 0.5s linear;
  position: relative;
  padding: 10px 10px 10px 20px;
  box-sizing: border-box;
  transition: all 0.5s linear;
  box-shadow: 0 45px 25px -20px rgba(0, 0, 0, 0.25);
}

.curtians-catalog-card:hover {
  border: 2px solid #cea740;
}

.curtians-catalog-card-img {
  width: 100%;
  height: 100%;
  position: absolute;
  max-height: 382px;
  left: 0;
  top: 0;
  object-fit: cover;
}

.curtians-catalog-card-link {
  width: 100%;
  height: 70px;
  display: flex;
  padding: 10px 10px 10px 20px;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px 10px 10px 0px;
  background: #fff;
  backdrop-filter: blur(2px);
  transition: all 0.5s linear;
  color: #222;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  text-transform: uppercase;
  z-index: 1;
}

.curtians-catalog-card-link:hover {
  background: #cea740;
  color: #fff;
}
.curtians-catalog-card-link svg path {
  transition: all 0.5s linear;
}
.curtians-catalog-card-link:hover svg path {
  fill: #fff;
}

/* CURTIANS END */

/* !CURTIAN CATALOG PAGE END */

/* !CATALOG DETAIL PAGE START */

/* CURTAIN SAMPLES START */
.curtain-samples-mobil-container{
  display: none;
}
.curtain-samples-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}
.curtain-samples-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 8%;
}

.text-content h4,
.text-content h3,
.text-content h2{
font-family: Fira Sans Extra Condensed;
font-size: 22px;
font-weight: 400;
line-height: 23.4px;
}
.text-content p{
font-family: Fira Sans Extra Condensed;
font-size: 18px;
font-weight: 400;
line-height: 23.4px;
text-align: left;
}
.care-info-item ol,
.care-info-item ul{
	padding-left:20px;
}
.care-info-item ol{
	position:relative;
	margin-bottom:15px;
}
.care-info-item ol li{
	list-style: decimal;
	position:relative;
}
.care-info-item ul li{
	position:relative;
	margin-bottom:15px;
}
.care-info-item ul li:before{
	content:"";
	position:absolute;
	width:10px;
	height:10px;
	background:#ab6e12;
	border-radius:50%;
	left:-20px;
	top:4px;
}

.curtain-samples-top {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.curtain-samples-text {
  width: 524px;
  height: 100%;
  display: flex;
}
.plactic-text.curtain-samples-text {
  width: 100%;
  height: 100%;
  display: flex;
  margin: 30px 0 60px 0;
}
.curtain-samples-text h2 {
  color: #494949;
  font-family: "Cormorant Garamond";
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}

.curtain-samples-text h2 span {
  color: #cea740;
  font-family: "Cormorant Garamond";
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}

.curtain-samples-img-box {
  width: 80%;
  height: 18vw;
  display: flex;
  gap: 20px;
}
.curtain-samples-img-box a {
  width: 50%;
  height: 100%;
}
.curtain-samples-img-box img {
  width: 100%;
  height: 100%;
}
.curtain-samples-img-box a:nth-child(2) img {
  border-top-right-radius: 100px;
}
.curtain-samples-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.curtian-samples-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.curtain-samples-item-box {
  width: 33.33%;
  height: 21.5vw;
  overflow: hidden;
}

.curtain-samples-item-box a {
  width: 100%;
  height: 100%;
  display: block;
}
.curtain-samples-item-box a img {
  width: 100%;
  height: 100%;
}
.curtian-samples-row .curtain-samples-item-box:nth-child(3) {
  border-radius: 0px 80px 0px 0px;
}
.curtian-samples-row2 {
  width: 100%;
  height: fit-content;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.curtain-samples-item-box2 {
  width: 50%;
  height: 44.5vw;
}

.curtain-samples-item-box2 a {
  width: 100%;
  height: 100%;
  display: block;
}

.curtain-samples-item-box2 a img {
  width: 100%;
  height: 100%;
  border-radius: 0px 0px 0px 200px;
}

.curtain-samples-row3 {
  width: 50%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.curtain-samples-item-box3 {
  width: calc(50% - 10px);
  height: 21.5vw;
}

.curtain-samples-item-box3 a {
  width: 100%;
  height: 100%;
  display: block;
}
.curtain-samples-item-box3 a img {
  width: 100%;
  height: 100%;
}
.curtain-samples-row4 {
  width: 100%;
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  margin-top: 20px;
  display: none;
  gap: 15px;
}
.curtain-samples-item-box4 {
  width: 32.33%;
  height: 21.5vw;
  overflow: hidden;
  display: none;
}

.curtain-samples-item-box4 a {
  width: 100%;
  height: 100%;
  display: block;
}
.curtain-samples-item-box4 a img {
  width: 100%;
  height: 100%;
}
.curtain-samples-all-link {
  width: fit-content;
  display: flex;
  height: 58px;
  padding: 0px 40px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid #cea740;
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s ease;
  margin: 30px auto 0 auto;
}

.curtain-samples-all-link:hover {
  color: #fff;
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
}

/* CURTAIN SAMPLES END */

/* CURTAIN SLIDER START */

.curtian-slider-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

.curtain-slider-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.curtain-slider-all-title {
  width: 100%;
  display: flex;
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
  padding: 0 8%;
}

.curtain-slider-row {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}
.slider-item-title {
  width: 100%;
  display: flex;
  color: #ababab;
  font-family: "Fira Sans Extra Condensed";
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  padding: 0 8%;
}
.curtain-slider {
  width: 100%;
  height: fit-content;
  margin-top: 40px;
  position: relative;
}

.curtain-slider .slick-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: auto;
  right: 8%;
  top: -80px;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  margin-right: 60px;
}

.curtain-slider .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  right: 8%;
  top: -80px;
  display: block;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.curtain-slider:before,
.curtain-slider:before {
  display: none;
}
.curtain-slider .slick-prev:hover svg path,
.curtain-slider .slick-next:hover svg path {
  fill: #2c2c2c;
}

.curtain-slider .slick-prev:hover svg rect,
.curtain-slider .slick-next:hover svg rect {
  stroke: #2c2c2c; /* Hover durumunda renk */
}
.curtain-slider-item {
  width: auto;
  max-width: 600px;
  height: 280px;
  max-height: 320px;
}
.curtain-slider-item a {
  width: 100%;
  height: 100%;
  display: block;
}
.curtain-slider-item a img {
  width: 100%;
  height: 100%;
}
.curtain-slider .slick-slide {
  margin-right: 20px;
}
/* CURTAIN SLIDER END */

/* CURTAIN DETAiL START */

.curtain-detail-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  margin-top: 60px;
}
.text-block-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  margin-top: 60px;
  position: relative;
}
.video-block-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
.video-block-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 8%;
}
.video-block-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  z-index: 1;
}
.video-block-videos {
  width: 100%;
  height: fit-content;
  display: flex;
  gap: 2%;
  margin-top: 60px;
  flex-flow: row wrap;
}
.video-block-video{
	width: 23%;
}
.youtube-container {
  overflow: hidden;
  width: 100%;
  height: 550px;
  border-radius: 10px;
  margin-bottom: 10px;
} 

.youtube-container iframe {
  width: 300%;
  height: 100%;
  margin-left: -100%;
}
.video-block-description {
  display: flex;
  flex-direction: column;
}
.video-block-description h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.video-block-description p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.curtain-detail-content {
  width: 100%;
  height: fit-content;
  display: flex;
  position: relative;
  align-items: center;
  /* background: url(../img/curtiand.png);
  background-repeat: no-repeat;
  background-size: cover; */
  padding: 150px 0;
}
.text-block-content {
  width: 100%;
  height: fit-content;
  display: flex;
  position: relative;
  align-items: center;
  padding: 150px 0;
}
.curtain-detail-btn {
  display: block;
  position: absolute;
  cursor: pointer;
  transition: all 0.5s ease;
  opacity: 1;
  z-index: 1;
}
.curtain-detail-btn:hover {
  opacity: 0.5;
}
.curtain-detail-container .active {
  opacity: 1
}
.curtain-detail-btn1 {
  right: 23%;
  top: 17%;
}
.curtain-detail-btn2 {
  right: 43%;
  top: 45%;
}
.curtain-detail-btn3 {
  right: 44%;
  top: 73%;
}
.curtain-detail-text {
  width: 636px;
  display: none;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.curtain-detail-text.active {
  display: flex;
}

.curtain-detail-text h2 {
  color: #cea740;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}

.curtain-detail-text h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 36px */
  margin-top: 100px;
}

.curtain-detail-text h3::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/yellowstar.png);
  background-repeat: no-repeat;
  padding-bottom: 10px;
}

.curtain-detail-text p {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 28.6px */
  margin-top: 40px;
}



.text-block-text {
  width: 636px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  max-height: 500px;
  overflow: auto;
}
.text-block-text ul {
  margin-left: 20px;
  list-style: initial;
}
.text-block-text ul li {
  list-style: initial;
}
.text-block-text h2 {
  color: #cea740;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}
.text-block-text h2 {
  margin-bottom: 40px;
}
.text-block-text h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 36px */
  margin-top: 100px;
}

.text-block-text h3::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/yellowstar.png);
  background-repeat: no-repeat;
  padding-bottom: 10px;
}

.text-block-text :is(p, ul) {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 28.6px */
}
.text-block-text p {
  margin-bottom: 40px;
}
.text-block-bg {
  width: 100%;
  height: 100%;
  display: flex;
  flex-shrink: 0;
  position: absolute;
}
.text-block-bg img {
  width: 100%;
  height: 100%;
}

.curtain-detail-bg {
  width: 100%;
  height: 100%;
  display: flex;
  flex-shrink: 0;
  position: absolute;
}
.curtain-detail-bg-img1 {
  width: 100%;
  height: 100%;
}

/* CURTAIN DETAiL END */

/*  REGUEST START*/

.reguest-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.reguest-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 8%;
}

.reguest-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
  z-index: 1;

}
.reguest-item {
  width: 100%;
  height: fit-content;
  display: flex;
  gap: 24px;
  margin-top: 60px;
}
.reguest-card {
  width: 33.33%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}
.reguest-card-text{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reguest-card img {
  width: 100%;
  height: 74%;
  border-radius: 0px 100px 0px 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.reguest-card h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}

.reguest-card p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  /* display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; */
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*  REGUEST END*/

/* STYLE START  */

.style-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

.style-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 8%;
}

.style-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}
.style-item {
  width: 100%;
  height: fit-content;
  display: flex;
  gap: 24px;
  margin-top: 60px;
}
.style-card {
  width: 33.33%;
  height: 265px;
  display: flex;
  flex-direction: column;
}

.style-card img {
  width: 100%;
  height: 188px;
  border-radius: 9px 100px 0px 0px;
  background: #f3ebd8;
  transition: all 0.5s linear;
}

.style-card img:hover {
  background: #cea740;
}
.style-card h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  margin-top: 20px;
}

.style-card p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 20.8px */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 10px;
}

/* STYLE END */

/* DETAIL-INSTRUCTION START */

.detailed-instruction-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 137px;
  padding: 0 8%;
}

.detailed-instruction-content {
  width: 100%;
  height: 32vw;
  display: flex;
  flex-direction: column;
  background: url(../img/ffbg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 30px;
  position: relative;
  padding: 0 55px 0 87px;
}

.detailed-instruction-title {
  color: #fff;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
  margin-top: 70px;
}
.detailed-instruction-link {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-top: 80px;
}

.detailed-instruction-link a {
  display: flex;
  width: 369px;
  padding: 30px;
  align-items: center;
  gap: 43px;
  border-radius: 20px 20px 20px 0px;
  background: #fff;
  box-shadow: 10px 7px 20px 0px rgba(0, 0, 0, 0.1);
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  transition: all 0.5s ease;
}
.detailed-instruction-link a:hover {
  background: #c68f24;
  color: #fff;
}

.detailed-instruction-img {
  position: absolute;
  display: block;
  width: 100%;
  top: 50px;
  left: 0;
}

/* DETAIL-INSTRUCTION END  */

/* CONTACK variants START */

.contack-variants-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  margin-top: 220px;
  margin-bottom: 30px;
}

.contack-variants-content {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.contack-variants-item {
  width: 85%;
  height: 600px;
  display: flex;
  background: url(../img/variant.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  border-radius: 0px 0px 200px 0px;
  justify-content: space-between;
  padding: 78px 0 120px 53px;
}
.cantack-variants-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.contack-variants-text {
  width: 500px;
  display: flex;
  flex-direction: column;
  position: relative;
  flex-shrink: 0;
}

.contack-variants-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}
.contack-variants-text p {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  margin-top: 30px;
}

.contack-variants-personal-item {
  width: 100%;
  height: 110%;
  display: flex;
  position: absolute;
  align-items: flex-end;
  left: 30%;
  bottom: 0px;
}

.contack-variants-personal {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-shrink: 0;
  margin-bottom: 30px;
}
.contack-variants-personal h4 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
}
.contack-variants-personal p {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 20.8px */
}
.contack-variants-personal img {
  position: absolute;
  top: -10px;
  left: -35px;
}
.contack-variants-person-img {
  height: 100%;
}
.contack-variants-form {
  display: flex;
  width: 416px;
  padding: 40px 28px 30px 28px;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 4px 15px 0px rgba(73, 73, 73, 0.1);
  position: absolute;
  right: 0;
  bottom: -30px;
}
.contack-variants-form h3 {
  width: 100%;
  color: #2c2c2c;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 35.2px */
}
.contack-variants-form-img {
  width: 100%;
  display: flex;
  margin-top: 20px;
}

.contack-variants-form p {
  color: #717171;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  margin-top: 20px;
}

.contack-variants-form-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.variants-form-box {
  width: 100%;
  height: 60px;
  position: relative;
  display: flex;
  height: 67px;
  padding: 24px 20px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #dfdfdf;
  margin-top: 10px;
}
.variants-form-box input,
.variants-form-box inpup::placeholder {
  outline: none;
  border: none;
  width: 100%;
  color: #ababab;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  text-transform: uppercase;
}
.variants-form-box input:focus {
  border: none;
  outline: none;
}

.variants-form-box label {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  text-transform: uppercase;
  display: block;
  position: absolute;
  top: -7px;
  background-color: white;
  padding-inline: 4px;
  margin-left: -4px;
}
.variants-form-box-send {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  cursor: pointer;
  transition: all 0.5s ease;
  cursor: pointer;
}
.variants-form-box-send button {
  color: #fff;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.variants-form-box-send:hover {
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
}
.variants-checkbox-box {
  width: 100%;
  height: fit-content;
  display: flex;
  margin-top: 20px;
  cursor: pointer;
}

.variants-checkbox-box label {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.variants-checkbox-box label input {
  appearance: none;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s linear;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
}

.variants-checkbox-box label input::before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  background: url(../img/yes.png);
  background-size: cover;
  transition: all 0.3s linear;
}

.variants-checkbox-box label input:checked::before {
  width: 100%;
  height: 100%;
}

.variants-policy,
.variants-policy a {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 19.6px */
  transition: all 0.3s linear;
}

.variants-policy a:hover {
  color: #b78d20;
}

/* CONTACK variants END */

/* !CATALOG DETAIL PAGE END */
/* !catalog2 KATALOG PAGE START */

.catalog2-catalog-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
.catalog2-catalog-bg {
  position: absolute;
  left: 0;
  top: 0;
}

.catalog2-catalog-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 8%;
}
.catalog2-catalog-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}

.catalog2-catalog-item {
  width: 100%;
  height: fit-content;
  display: flex;
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 2%;
}

.catalog2-catalog-card {
  width: 23.5%;
  height: 382px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border-radius: 20px 20px 20px 0px;
  transition: all 0.5s linear;
  position: relative;
  padding: 10px 10px 10px 20px;
  box-sizing: border-box;
  transition: all 0.5s linear;
  box-shadow: 0 45px 25px -20px rgba(0, 0, 0, 0.25);
  margin-bottom: 2%;
}

.catalog2-catalog-card:hover {
  border: 2px solid #cea740;
}

.catalog2-catalog-card-img {
  width: 100%;
  height: 100%;
  position: absolute;
  max-height: 382px;
  left: 0;
  top: 0;
}

.catalog2-catalog-card-link {
  width: 100%;
  height: 70px;
  display: flex;
  padding: 10px 10px 10px 20px;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px 10px 10px 0px;
  background: #fff;
  backdrop-filter: blur(2px);
  transition: all 0.5s linear;
  color: #222;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  text-transform: uppercase;
}

.catalog2-catalog-card-link:hover {
  background: #cea740;
  color: #fff;
}
.catalog2-catalog-card-link svg path {
  transition: all 0.5s linear;
}
.catalog2-catalog-card-link:hover svg path {
  fill: #fff;
}

/* !catalog2 KATALOG PAGE END */

/* !PLASTIC CURTIAN PAGE START */

.cornices-type-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}
.cornices-type-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 8%;
}

.cornices-type--title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}

.cornices-type-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin-top: 60px;
}

.cornices-type-item a {
  width: 23.5%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 2%;
}

.cornices-img-box {
  width: 100%;
  height: 232px;
  background: #f3ebd8;
  transition: all 0.5s linear;
  border-radius: 9px 100px 0px 0px;
}
.cornices-img-box img {
  width: 100%;
  height: 100%;
}

.cornices-type-item a:hover .cornices-img-box {
  background: #cea740;
}
.cornices-type-item a h4 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
}
.cornices-type-item a:hover {
  border: 2px solid #cea740;
  border-radius: 9px 100px 0px 0px;
}
/* !PLASTIC CURTIAN PAGE  END */

/* !LOYALTY PROGRAM PAGE START */

/* BANNER2 START */
.banner2-container {
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url(../img/kt.png);
  background-repeat: no-repeat;
   background-size: 80% 100%;
   background-position: top right; 
  margin-top: -110px;
  
}

.banner2-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; 
  flex-shrink: 0;
  padding-left: 8%;
 
}

.banner2-text {
  width: 48%;
  height: 50%;
  display: flex;
  flex-direction: column;
  margin-top: 90px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.banner2-text h3 {
  width: 646px;
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 48px */
}

.banner2-btn {
  width: fit-content;
  display: flex;
  padding: 30px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.5s ease;
  color: #fff;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.5s ease;
  border-radius: 12px;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  margin-top: 60px;
}

.banner2-btn:hover {
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
}

.banner2-img {
  width: 70%;
  height: auto;
  display: flex;
  flex-shrink: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.banner2-img img {
  width: 100%;
}
/* BANNER2 END */

.affiliate-program-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;  
 
}
.affiliate-program-content {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  padding: 0 8%;
  gap: 6%;
}

.affiliate-img {
  width: 55%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.affiliate-img img {
  width: 100%;
}

.affiliate-text {
  width: 50%;
  height: fit-content;
}

.affiliate-text h3 {
  color: #494949;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}

.affiliate-text p {
  color: #494949;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 20.8px */
  margin-top: 30px;
}

.affiliate-btn {
  display: flex;
  padding: 30px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  color: #fff;
  text-align: right;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 40px;
  transition: all 0.5s ease;
}
.affiliate-btn:hover {
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
}

/* !LOYALTY PROGRAM PAGE END */

/*! ABOUT PAGE START CODE */

/* ABOUT BANNER START */
.about-banner-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -140px;
  background: url(../img/bannerbg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  /* margin-bottom: 80px; */
}
.about-banner-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 160px;
  padding: 0 8%;
  gap: 25px;
}
.about-banner-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}

.about-banner-item {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

.about-banner-text {
  width: 30%;
  display: flex;
  flex-direction: column;
  margin-top: 100px;
}

.about-banner-text h3 {
  color: #494949;
  font-family: "Cormorant Garamond";
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 80px */
  margin-bottom: 20px;
}
.about-banner-text p {
  color: #494949;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 20.8px */
  margin-top: 20px;
}

.about-banner-img {
  width: 70%;
  height: 100%;
  display: flex;
  margin-top: 80px;
  margin-right: -50px;
}

.about-banner-img-left {
  width: 35%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-banner-img-left img {
  width: 100%;
}
.about-img-left {
  width: 100%;
  height: 24vw;
}
.about-img-right {
  width: 100%;
  height: 14.8vw;
}
.about-banner-img-right {
  width: 65%;
  height: 100%;
}

.about-img-big {
  width: 100%;
  height: 44vw;

}

/* ABOUT BANNER END */

/* ABOUT INFO START */

.about-info-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8%;

  margin-top: 96px;
}
.about-info-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
}
.about-info-text {
  display: flex;
  flex-direction: column;
}

.about-info-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}

.about-info-text p {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  margin-top: 10px;
}

.about-info-img-item {
  width: 100%;
  height: 100%;
  display: block;
  margin-top: 83px;
}

.about-info-img-left {
  width: 100%;
  height: fit-content;
  display: flex;
}
.a1-img {
  width: 24vw;
  z-index: 1;
}
.a2-img {
  width: 38vw;
  z-index: 1;
}

.a3-img {
  width: 20vw;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.a-elips {
  width: 20vw;
  position: absolute;
  bottom: 15%;
  right: 10%;
}

/* ABOUT INFO END */

/*! ABOUT PAGE START END */

/* !CONTACK PAGE START */

/* CONTACK CONTENT START */

.contack-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url(../img/bannerbg.png);
  background-repeat: no-repeat;
  margin-top: -140px;
  padding: 0 8% 70px 8%;
}
.contack-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 140px;
  position: relative;
}

.contack-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  gap: 40px;
}
.contack-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.contack-text-top {
  display: flex;
  gap: 25px;
}
.contack-tel {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contack-tel span {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px; /* 128.571% */
}
.contack-tel a {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.contack-tel a:hover {
  color: #c9a74f;
}
.contack-mail {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contack-mail span {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px; /* 128.571% */
}
.contack-mail a {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  transition: all 0.5s ease;
}
.contack-mail a:hover {
  color: #c9a74f;
}

.contack-text-bottom {
  display: flex;
  gap: 20px;
}

.contack-adres {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contack-adres span {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px; /* 128.571% */
}
.contack-adres a {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  transition: all 0.5s ease;
}
.contack-adres a:hover {
  color: #c9a74f;
}
.contack-time {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contack-time span {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px; /* 128.571% */
}
.contack-time p {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  transition: all 0.5s ease;
}

.contack-info {
  width: 80%;
  display: flex;
  margin-top: 65px;
  height: 19vw;
  min-height: 280px;
  gap: 25px;
  z-index: 1;
}

.contack-map {
  width: 70%;
  height: 100%;
  position: relative;
}

.contack-info-img {
  width: 30%;
  height: 100%;
}

.contack-info-img img {
  width: 100%;
  height: 100%;
}

.contack-right-img {
  width: 24%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.contack-elips {
  width: 25%;
  position: absolute;
  right: 8%;
  bottom: 20%;
}

/* CONTACK CONTENT END */

/* !CONTACK PAGE END */

/* !INTERIOR CATALOG PAGE START */

.interior-catalog-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  position: relative;
}

.interior-catalog-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 8%;
}

.inerior-catalog-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inerior-catalog-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}

.inerior-catalog-text p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 28.6px */
}

.interior-catalog-box {
  width: 100%;
  display: flex;
  gap: 10px;
  margin-top: 60px;
  flex-shrink: 0;
  overflow-x: auto;
}

.interior-catalog-btn {
  display: flex;
  padding: 16px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid #e7e2d6;
  background: #fff;
  color: #c9a74f;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.5s ease;
  cursor: pointer;
  flex-shrink: 0;

}
.interior-catalog-box::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background-color: #404348;
  border-radius: 4px;
}

.interior-catalog-box::-webkit-scrollbar-thumb {
  background-color: #c68f24;
  border-radius: 4px;
}
.interior-catalog-btn.active {
  color: #fff;
  border-radius: 12px;
  background: #be8b06;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

.interior-catalog-btn:hover {
  color: #fff;
  border-radius: 12px;
  background: #be8b06;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

.interior-catalog-item {
  display: none;
  flex-direction: column;
  transition: all 0.5s ease;
  margin-top: 40px;
}

.interior-catalog-item.active {
  display: flex;
}

.interior-catalog-card-item {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
  width: 105%;
}

.interior-catalog-card {
  width: 306px;
  height: 510px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ababab;
  transition: all 0.5s ease;
  padding-bottom: 10px;
  margin-bottom: 3%;
}

.a-img {
  width: 100%;
  height: 340px;
  display: flex;
  /* overflow: hidden; */
  border-radius: 10px;
}
.a-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.interior-catalog-card-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-right: 10px;
}
.interior-catalog-card-select a {
  display: flex;
  height: 26px;
  padding: 4px 12px;
  align-items: center;
  gap: -1px;
  border-radius: 12px;
  background: #ede1c1;
  color: #717171;
  font-family: "Fira Sans Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  transition: all 0.5s ease;
}
.interior-catalog-card-select a:hover {
  color: #fff;
  background: #be8b06;
}

.interior-catalog-card-select span {
  color: #ababab;
  font-family: "Fira Sans Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
}

.interior-catalog-card-text {
  width: 100%;
  height: 185px;
  display: flex;
  flex-direction: column;
}
.interior-catalog-card-text a {
  display: flex;
  height: 100%;
  flex-direction: column;
  margin-top: 10px;
  justify-content: space-between;
}
.interior-catalog-card-text-box {
  display: flex;
  flex-direction: column;
}
.interior-catalog-card-text-box h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  max-height: 52.8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.interior-catalog-card-text-box p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 20.8px */
  max-height: 52.8px;
  /* overflow: hidden; */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-top: 10px;
}
.interior-catalog-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.interior-catalog-link {
  width: fit-content;
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s ease;
}

.interior-catalog-link::after {
  content: "";
  width: 80%;
  height: 1px;
  display: block;
  background: #cea740;
  transition: all 0.5s ease;
}
.interior-catalog-link:hover {
  color: #2a2a2a;
}
.interior-catalog-link:hover::after {
  background: #2a2a2a;
}
.interior-catalog-card-date {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-right: 10px;
}
.interior-catalog-card-date span {
  color: #ababab;
  font-family: "Fira Sans Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
}

.interior-catalog-more {
  width: fit-content;
  display: flex;
  height: 58px;
  padding: 0px 40px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid #cea740;
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 auto;
  cursor: pointer;
}

.interior-catalog-more:hover {
  background: #2a2a2a;
  color: #fff;
}

/* POPULER START CODE */

.populer-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
}

.populer-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 8%;
}
.populer-title {
  color: #2c2c2c;
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}
.populer-catalog-item {
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
  margin-top: 60px;
}

.populer-catalog-item.active {
  display: flex;
}

.populer-catalog-card-item {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
}

.populer-catalog-card {
  width: 23.5%;
  height: 580px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ababab;
  transition: all 0.5s ease;
  padding-bottom: 10px;
  margin-bottom: 3%;
}

.a-img {
  width: 100%;
  height: 270px;
  display: flex;
  border-radius: 10px;
}
.interior-catalog-item .a-img {
	overflow: hidden;
}

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

.populer-catalog-card-select {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.populer-catalog-card-select a {
  display: flex;
  height: 26px;
  padding: 4px 12px;
  align-items: center;
  gap: -1px;
  border-radius: 12px;
  background: #ede1c1;
  color: #717171;
  font-family: "Fira Sans Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  transition: all 0.5s ease;
}
.populer-catalog-card-select a:hover {
  color: #fff;
  background: #be8b06;
}

.populer-catalog-card-select span {
  color: #ababab;
  font-family: "Fira Sans Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
}

.populer-catalog-card-text {
  width: 100%;
  height: 185px;
  display: flex;
  flex-direction: column;
}
.populer-catalog-card-text a {
  display: flex;
  height: 100%;
  flex-direction: column;
  margin-top: 10px;
  justify-content: space-between;
}
.populer-catalog-card-text-box {
  display: flex;
  flex-direction: column;
}
.populer-catalog-card-text-box h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  max-height: 52.8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.populer-catalog-card-text-box p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 20.8px */
  max-height: 52.8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-top: 10px;
}
.populer-catalog-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.populer-catalog-link {
  width: fit-content;
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s ease;
}

.populer-catalog-link::after {
  content: "";
  width: 80%;
  height: 1px;
  display: block;
  background: #cea740;
  transition: all 0.5s ease;
}
.populer-catalog-link:hover {
  color: #2a2a2a;
}
.populer-catalog-link:hover::after {
  background: #2a2a2a;
}
.populer-catalog-card-date {
  display: flex;
  align-items: center;
  gap: 5px;
}
.populer-catalog-card-date span {
  color: #ababab;
  font-family: "Fira Sans Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
}

/* POPULER END CODE */

/* !INTERIOR CATALOG PAGE END */

/* !CURTIAN CARE PAGE START */
.curtian-care-top-img-block{
  width: 100%;
	max-height:600px;
	overflow:hidden;
}
.curtian-care-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 20px;
}

.curtian-care-top-img {
  width: 100%;
}

.curtian-care-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 8%;
  gap: 60px;
}

.curtian-care-banner {
  width: 100%;
  display: flex;
  padding: 20px 60px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(158, 158, 158, 0.1);
  /* margin-top: -80px; */
}
.curtian-care-container:has(.curtian-care-top-img) .curtian-care-banner {
  margin-top: -80px;
}
.curtian-care-banner h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}

.curtian-care-banner-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.care-btn-box {
  display: flex;
  align-items: center;
  gap: 30px;
}

.care-btn {
  display: flex;
  height: 26px;
  padding: 4px 12px;
  align-items: center;
  gap: -1px;
  border-radius: 12px;
  background: #ede1c1;
  color: #717171;
  font-family: "Fira Sans Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  cursor: pointer;
  transition: all 0.5s ease;
}

.care-btn:hover {
  background: #be8b06;
  color: #fff;
}

.care-info-box {
  display: flex;
  align-items: center;
  gap: 30px;
}

.care-info-box span {
  color: #ababab;
  font-family: "Fira Sans Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 21px */
}
.care-date {
  display: flex;
  align-items: center;
  gap: 3px;
}

.care-info-item {
  width: 85%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.care-info-item p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 23.4px */
}

.care-text {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 24px;
}

.care-text img {
  width: 50%;
}
.care-text .text {
  width: 50%;
}
.care-text .text h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.care-text .text p:not(:last-child) {
  margin-bottom: 1em;
}
.care-text1 {
  display: flex;
  align-items: center;
  gap: 24px;
}
.care-text1 img {
  width: 50%;
  object-fit: cover;
}
.care-text1 .text {
  width: 50%;
}
.care-text1 .text h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.care-text1 .text p:not(:last-child) {
  margin-bottom: 1em;
}
.select-banner {
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 30px;
  background: #faf8f6;
  box-shadow: 0px 10px 20px 0px rgba(158, 158, 158, 0.1);
  overflow: hidden;
}
.select-banner2 {
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 30px;
  background: #faf8f6;
  box-shadow: 0px 10px 20px 0px rgba(158, 158, 158, 0.1);
  overflow: hidden;
  background: url(../img/bb2.png);
  background-size: 100%;
}

.pl-img {
  position: absolute;
  height: 100%;
  left: 0;
}
.pr-img {
  position: absolute;
  height: 100%;
  right: 0;
}

.select-banner-item {
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.select-banner-item h3 {
  color: #2C2C2C;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}
.select-banner-item p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 28.6px */
}
.select-banner2 h3 {
  color: #fff;
}

.select-banner2 p {
  color: #fff;
}
.select-link {
  display: flex;
  height: 58px;
  padding: 0px 30px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  color: #fff;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s ease;
  cursor: pointer;
  margin-top: 40px;
}
.select-link:hover {
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
}

.care-sosial {
  display: flex;
  align-items: center;
  gap: 20px;
}
.care-sosial-text {
  font-size: 18px;
  font-weight: 400;
  color: #2C2C2C
}
.care-sosial-link-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.care-sosial-link-box a {
  width: 36px;
  height: 36px;
  transition: all 0.5s ease;
  border-radius: 10px;
  overflow: hidden;
}

.care-sosial-link-box a svg {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}

.care-telegram:hover rect {
  fill: #2aabee;
}
.care-telegram:hover path {
  fill: #fff;
}
.care-vkontakte:hover rect {
  fill: #07F;
}
.care-vkontakte:hover path {
  fill: #fff;
}
.care-ww:hover rect {
  fill: #2aabee;
}
.care-ww:hover path:nth-child(1) {
  fill: #00db00;
}
.care-ww:hover path:nth-child(2) {
  fill: #fff;
}

.care-linkedin:hover path:nth-child(1) {
  fill: rgb(235, 125, 1);
}

.care-linkedin:hover path:nth-child(2) {
  fill: #fff;
}

.care-linkedin:hover path:nth-child(3) {
  fill: #fff;
}

.copy-btn {
  display: flex;
  height: 36px;
  padding: 0px 10px;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #f3ebd8;
  cursor: pointer;
  color: #cea740;
  font-family: "Fira Sans Condensed";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 18.2px */
  transition: all 0.5s ease;
}
.copy-btn:hover {
  background: #be8b06;
  color: #fff;
}
.copy-btn svg path {
  transition: all 0.5s ease;
}
.copy-btn:hover svg path {
  fill: #fff;
}

/* !CURTIAN CARE PAGE END */
/* !FORM END PAGE START */

/* FORM END START */

.form-end-container {
  width: 100%;
  height: 45vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -100px;
}

.form-end-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8%;
}

.form-text {
  width: 636px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  gap: 30px;
}
.form-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 48px */
}
.form-text span {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 28.6px */
}

.form-text p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 20.8px */
}

.form-end-a {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  transition: all 0.5s ease;
}
.form-end-a:hover {
  color: #cea740;
}

.form-end-reflesh-btn {
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-decoration-line: underline;
  cursor: pointer;
  transition: all 0.5s ease;
}
.form-end-reflesh-btn:hover {
  color: #2a2a2a;
}

.back-link {
  display: flex;
  height: 58px;
  padding: 0px 30px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  color: #fff;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s linear;
}

.back-link:hover {
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
}

.form-end-img{
  width: 65%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.form-end-img img{
  width: 100%;
  height: 100%;
}



/* FORM END END */

/* !FORM END PAGE END */

/* !MEDIA START CODE */
@media only screen and (max-width: 1750px) {
  .banner-title h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  .banner-title h1 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  .interior-card-img {
    height: 17vw;
  }
  .banner-btn {
    width: 100%;
    height: 80px;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: all 0.5s ease;
    color: #fff;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s ease;
  }

  .cortians-img {
    width: 100%;
    height: 50vh;
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }









}
@media only screen and (max-width: 1600px) {
  .logo img {
    width: 239px;
  }
  .logo-text {
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: -0.32px;
  }
  .banner-text {
    width: 700px;
    display: flex;
    flex-direction: column;
    margin-top: 90px;
    flex-shrink: 0;
  }
  .catalog-btn {
    display: inline-flex;
    height: 58px;
    padding: 0px 20px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.5s ease;
    background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
    color: #fff;
    text-align: right;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
  }

  .header-center-text button {
    color: #717171;
    font-family: "Fira Sans Extra Condensed";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 3px;
    border-bottom: 1px dashed #717171;
    transition: all 0.5s ease;
    cursor: pointer;
  }

  .header-right {
    display: flex;
    gap: 40px;
    display: flex;
    margin-left: 3vw;
  }

  .header-wp {
    display: inline-flex;
    height: 58px;
    padding: 0px 20px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #c5c5c5;
    transition: all 0.5s ease;
  }

  .header-tel {
    display: flex;
    align-items: center;
    color: #2c2c2c;
    text-align: right;
    font-family: "Fira Sans Extra Condensed";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s ease;
  }

  .header-tel-text {
    color: #6d6d6d;
    font-family: "Fira Sans Extra Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
  }

  .banner-title h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  .banner-title h1 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  .banner-title h4 {
    color: #cea740;
    font-family: "Cormorant Garamond";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }

  .banner-list p {
    width: 85%;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
  }

  .banner-button-box {
    width: 50%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .banner-button-item {
    display: flex;
    justify-content: space-between;
    margin-left: 15px;
    margin-top: 40px;
    gap: 25px;
  }

  .models-img-box {
    width: 76%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 44px;
    padding-right: 40px;
    position: relative;
  }
  .banner-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
  .models-item {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 5%;
    gap: 0%;
    margin-top: 50px;
  }

  .curtians-model-title p {
    color: #494949;
    font-family: "Cormorant Garamond";
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }
  .models-btn.active {
    font-size: 20px;
    color: #2c2c2c;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 20px;
  }

  .salon-img {
    width: 39vw;
    margin-bottom: -24px;
    position: relative;
  }
  .salon-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 60px;
  }

  .get-example-title {
    color: #fff;
    font-family: "Cormorant Garamond";
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }
  .banner-btn-text {
    color: #ababab;
    text-align: center;
    font-family: "Fira Sans Condensed";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-top: 10px;
  }
  .contack-desinger-text h2 {
    color: #fff;
    font-family: "Cormorant Garamond";
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }
  .contack-desinger-text p {
    color: #fff;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-top: 30px;
  }
  .contack-desinger-text a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cea740;
    font-family: "Fira Sans Extra Condensed";
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    transition: all 0.5s ease;
    margin-top: 40px;
  }

  .contack-desinger-text span {
    color: #fff;
    font-family: "Fira Sans Extra Condensed";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    margin-top: 20px;
  }

  .contack-desinger-text {
    width: 40%;
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
  }

  .contack-desinger-form {
    display: flex;
    width: 360px;
    padding: 40px 20px 30px 20px;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 15px 0px rgba(73, 73, 73, 0.1);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .contack-variants-item {
    width: 90%;
    height: fit-content;
    display: flex;
    background: url(../img/variant.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    border-radius: 0px 0px 200px 0px;
    justify-content: space-between;
    padding: 90px 0 180px 53px;
  }
  .contack-variants-text {
    width: 360px;
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
  }

  .contack-desinger-item {
    width: 90%;
    height: fit-content;
    display: flex;
    background: url(../img/desingerbg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    border-radius: 0px 0px 160px 0px;
    justify-content: space-between;
    padding: 90px 0 140px 53px;
  }
  .contack-variants-personal-item {
    width: 100%;
    height: 110%;
    display: flex;
    position: absolute;
    align-items: flex-end;
    left: 20%;
    bottom: 0px;
  }
  .curtians-catalog-card {
    height: 20vw;
  }
  .banner2-container {
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url(../img/kt.png);
    background-repeat: no-repeat;
    background-size: 80% 100%;
    background-position: top right;
}
  .banner2-text h3 {
    width: 646px;
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }









  .affiliate-text h3 {
    color: #494949;
    font-family: "Cormorant Garamond";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}


.about-banner-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.about-banner-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.about-banner-text h3 {
  color: #494949;
  font-family: "Cormorant Garamond";
  font-size: 75px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 20px;
}


.inerior-catalog-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}


.interior-catalog-btn {
  display: flex;
  padding: 16px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid #e7e2d6;
  background: #fff;
  color: #c9a74f;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.5s ease;
  cursor: pointer;
  flex-shrink: 0;
}




.interior-catalog-card-select {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}



.populer-title {
  color: #2c2c2c;
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}


.curtian-care-banner h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.care-info-item p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.select-banner-item h3 {
  color: #2C2C2C;
  font-family: "Cormorant Garamond";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.select-banner2 h3 {
  color: #fff !important;
}

.select-banner2 p {
  color: #fff !important;
}

.care-info-item {
  width: 90%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 60px;
}


.form-end-container {
  width: 100%;
  height: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -100px;
}

.form-text {
  width: 556px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  gap: 30px;
}


.form-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}







}
@media only screen and (max-width: 1440px) {
  .header-wp {
    display: inline-flex;
    height: 50px;
    padding: 0px 20px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #c5c5c5;
    transition: all 0.5s ease;
  }
  .logo img {
    width: 200px;
  }

  .logo-text {
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: -0.32px;
  }

  .catalog-btn {
    display: inline-flex;
    height: 50px;
    padding: 0px 20px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.5s ease;
    background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
    color: #fff;
    text-align: right;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
  }

  .banner-btn {
    width: 100%;
    height: 80px;
    display: flex;
    gap: 5px;
    align-items: center;
    transition: all 0.5s ease;
    color: #fff;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s ease;
  }

  .header-right {
    display: flex;
    gap: 20px;
    display: flex;
    margin-left: 0;
  }

  .banner-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
    padding-left: 8%;
    gap: 25px;
  }
  .menu-icon {
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 0px;
  }

  .banner-title h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  .banner-title h1 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  .banner-text {
    width: 550px;
    display: flex;
    flex-direction: column;
    margin-top: 90px;
    padding-bottom: 0px;
    flex-shrink: 0;
  }
  header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 15;
    top: 0;
    /* background-image: url("https://textile-vremeni.ru/wp-content/themes/tekstile/img/bannerbg.png");
    background-repeat: no-repeat; */
    /* background-color: #faf8f6; */
  }

  .banner-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* margin-top: -80px; */
    /* background: url(../img/bannerbg.png);
    background-repeat: no-repeat;
    background-size: cover; */
  }

  .curtians-model-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 8%;
  }

  .curtians-model-title p {
    color: #494949;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }
  .curtians-model-title p span {
    color: #cea740;
    font-family: "Cormorant Garamond";
    font-size: 42px;
  }

  .models-btn.active {
    font-size: 18px;
    color: #2c2c2c;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 20px;
  }
  .models-btn {
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #cea740;
    font-family: "Fira Sans Extra Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s ease;
    cursor: pointer;
    padding: 10px 0;
  }
  .salon-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-top: 114px;
    padding: 0 8%;
  }

  .salon-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 60px;
  }

  .salon-elips {
    width: 21vw;
    position: absolute;
    right: 11%;
    bottom: 13%;
  }

  .example-container {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
  }

  .examle-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }
  .example-button-item {
    width: 100%;
    display: inline-flex;
    height: 51px;
    align-items: center;
    gap: -1px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #e7e2d6;
    margin-top: 60px;
    overflow-y: hidden;
    overflow-x: scroll;
  }

  .example-button-item::-webkit-scrollbar,
  .filter-button-item::-webkit-scrollbar {
    width: 6px;
    height: 0px;
    background-color: #404348;
    border-radius: 4px;
  }

  .example-button-item::-webkit-scrollbar-thumb,
  .filter-button-item::-webkit-scrollbar-thumb {
    background-color: #c68f24;
    border-radius: 4px;
  }
  .example-item-box {
    width: 100%;
    display: flex;
    gap: 1vw;
    margin-bottom: 1vw;
    height: 19vw;
  }
  .example-item.active {
    width: 100vw;
    height: fit-content;
    overflow-y: hidden;
    overflow-x: auto;
  }
  .get-example-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    margin-top: 130px;
  }
  .get-example-left {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    flex-shrink: 0;
  }
  .get-example-title {
    color: #fff;
    font-family: "Cormorant Garamond";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .get-example-text {
    width: 72%;
    color: #fff;
    font-family: "Fira Sans Extra Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    margin-top: 40px;
  }

  .get-example-right {
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
    position: absolute;
    right: 10%;
    bottom: 0;
    height: 110%;
  }
  .example-personal-img {
    width: 100%;
    max-height: 100%;
  }

  .tailor-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    margin-top: 165px;
  }

  .tailor-bg {
    width: 45vw;
    height: 34vw;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
  }

  .tailor-card-item {
    display: flex;
    gap: 30px;
    margin-top: 62px;
    position: relative;
    z-index: 1;
  }

  .tailor-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .tailor-card-item {
    display: flex;
    gap: 30px;
    margin-top: 42px;
    position: relative;
    z-index: 1;
  }
  .tailor-text {
    color: #717171;
    font-family: "Fira Sans Extra Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    margin-top: 30px;
  }
  .tailor-card-text h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .tailor-card-text p {
    color: #cea740;
    font-family: "Cormorant Garamond";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .tailor-card-content {
    width: 28vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }

  .tailor-card-img {
    width: 100%;
    height: 25vw;
    display: block;
    flex-shrink: 0;
    position: relative;
    margin-left: -20px;
  }

  .interior-title {
    color: #2c2c2c;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .interior-text {
    color: #717171;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
  }

  .interior-card {
    width: 290px;
    height: 520px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ababab;
    transition: all 0.5s ease;
  }
  .interior-card-img {
    width: 100%;
    height: 18vw;
    flex-shrink: 0;
    border-radius: 10px;
  }

  .interior-card-text h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }

  .interior-card-text p {
    color: #717171;
    font-family: "Fira Sans Extra Condensed";
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    margin-top: 10px;
  }

  .contack-desinger-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    margin-top: 125px;
  }

  .contack-desinger-item {
    width: 90%;
    height: fit-content;
    display: flex;
    background: url(../img/desingerbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 0px 0px 20% 0px;
    justify-content: space-between;
    padding: 55px 0 80px 40px;
  }
  .contack-desinger-personal-item {
    width: 100%;
    height: 110%;
    display: flex;
    position: absolute;
    align-items: flex-end;
    left: 25%;
    bottom: 0px;
  }

  .contack-desinger-form {
    display: flex;
    width: 360px;
    padding: 30px 15px 20px 15px;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 15px 0px rgba(73, 73, 73, 0.1);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .contack-desinger-form h3 {
    width: 100%;
    color: #2c2c2c;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }

  footer {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f4f1;
    padding: 40px 8% 20px 8%;
    margin-top: 62px;
  }

  .footer-logo {
    width: 200px;
    height: 33px;
  }

  .footer-logo-text {
    color: #6d6d6d;
    font-family: "Fira Sans Extra Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }
  .curtians-catalog-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .curtians-catalog-item {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
  }

  .curtians-catalog-item-title {
    color: #ababab;
    font-family: "Fira Sans Extra Condensed";
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
  }

  .curtians-catalog-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    grid-auto-rows: 300px;
    margin-top: 40px;
  }
  .curtians-catalog-card-img {
    width: 100%;
    height: 100%;
    position: absolute;
    max-height: 100%;
    left: 0;
    top: 0;
  }
  .curtians-catalog-card-link {
    width: 100%;
    height: fit-content;
    display: flex;
    padding: 10px 10px 10px 20px;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 10px 0px;
    background: #fff;
    backdrop-filter: blur(2px);
    transition: all 0.5s linear;
    color: #222;
    font-family: "Fira Sans Extra Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
  }

  .curtain-samples-text h2 {
    color: #494949;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .curtain-samples-text h2 span {
    color: #cea740;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .curtain-slider-all-title {
    width: 100%;
    display: flex;
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    padding: 0 8%;
  }

  .slider-item-title {
    width: 100%;
    display: flex;
    color: #ababab;
    font-family: "Fira Sans Extra Condensed";
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    padding: 0 8%;
  }

  .curtain-detail-text h2 {
    color: #cea740;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }
  .curtain-detail-text h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin-top: 100px;
  }

  .curtain-detail-text p {
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    margin-top: 40px;
  }

  .text-block-text h2 {
    color: #cea740;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }
  .text-block-text h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin-top: 100px;
  }

  .text-block-text :is(p, ul) {
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
  }

  .reguest-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }
  .reguest-card {
    width: 33.33%;
    height: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .reguest-card img {
    width: 100%;
    height: 302px;
    border-radius: 0px 100px 0px 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .style-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .contack-variants-personal-item {
    width: 100%;
    height: 110%;
    display: flex;
    position: absolute;
    align-items: flex-end;
    left: 150px;
    bottom: 0px;
  }

  .detailed-instruction-title {
    color: #fff;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin-top: 70px;
  }

  .detailed-instruction-link a {
    display: flex;
    width: 340px;
    padding: 30px;
    align-items: center;
    gap: 43px;
    border-radius: 20px 20px 20px 0px;
    background: #fff;
    box-shadow: 10px 7px 20px 0px rgba(0, 0, 0, 0.1);
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    transition: all 0.5s ease;
  }

  .contack-variants-text {
    width: 22.5vw;
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
  }

  .contack-variants-text h2 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .contack-variants-form {
    display: flex;
    width: 360px;
    padding: 30px 15px 20px 15px;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 15px 0px rgba(73, 73, 73, 0.1);
    position: absolute;
    right: 0;
    bottom: -30px;
  }

  .contack-variants-form h3 {
    width: 100%;
    color: #2c2c2c;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }

  .contack-variants-form p {
    color: #717171;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-top: 20px;
  }

  .curtain-detail-text {
    width: 45%;
    display: none;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }
  .text-block-text {
    width: 45%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }
  .contack-variants-item {
    width: 100%;
    height: fit-content;
    display: flex;
    background: url(../img/variant.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    border-radius: 0px 0px 200px 0px;
    justify-content: space-between;
    padding: 90px 0 180px 53px;
  }

  .catalog2-catalog-card {
    width: 23.5%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border-radius: 20px 20px 20px 0px;
    transition: all 0.5s linear;
    position: relative;
    padding: 10px 10px 10px 20px;
    box-sizing: border-box;
    transition: all 0.5s linear;
    box-shadow: 0 45px 25px -20px rgba(0, 0, 0, 0.25);
    margin-bottom: 2%;
}
  .catalog2-catalog-card-img {
    width: 100%;
    height: 100%;
    position: absolute;
    max-height: 100%;
    left: 0;
    top: 0;
}


.catalog2-catalog-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}


.cornices-type--title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}



.banner2-container {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url(../img/kt.png);
  background-repeat: no-repeat;
  background-size: 80% 100%;
  background-position: top right;
  margin-top: -110px;
}
.banner2-text h3 {
  width: 646px;
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}



.affiliate-text h3 {
  color: #494949;
  font-family: "Cormorant Garamond";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.about-banner-text h3 {
  color: #494949;
  font-family: "Cormorant Garamond";
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 20px;
}

.about-banner-text {
  width: 35%;
  display: flex;
  flex-direction: column;
  margin-top: 70px;
}
.about-banner-img {
  width: 65%;
  height: 100%;
  display: flex;
  margin-top: 60px;
}


.about-info-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}

.contack-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}


.contack-right-img {
  width: 28%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.contack-elips {
  width: 28%;
  position: absolute;
  right: 8%;
  bottom: 20%;
}

.catalog-menu {
    left: -80px;
}









}

@media only screen and (max-width: 1250px) {
  .curtain-samples-item-box4 {
    width: 31.3%;
  }
  .header-center {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
  }
  .header-wp span {
    color: #2c2c2c;
    text-align: right;
    font-family: "Roboto Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s ease;
  }

  .header-center-text {
    display: flex;
    height: 50px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
  }
  .header-center-text button {
    color: #717171;
    font-family: "Fira Sans Extra Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 3px;
    border-bottom: 1px dashed #717171;
    transition: all 0.5s ease;
    cursor: pointer;
  }

  .logo img {
    width: 180px;
  }
  .header-right {
    display: flex;
    gap: 20px;
    display: flex;
    margin-left: 5vw;
  }
  .header-wp span {
    color: #2c2c2c;
    text-align: right;
    font-family: "Roboto Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s ease;
    display: none;
  }

  .catalog-menu {
    display: flex;
    flex-direction: column;
    padding: 40px 222px 20px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 30px 0px 132px 0px;
    border: 1px solid #d7d7d7;
    background: #fff;
    box-shadow: 10px 7px 30px 0px rgba(0, 0, 0, 0.02);
    position: absolute;
    transition: transform 2s cubic-bezier(0.075, 0.82, 0.165, 1);
    top: 120%;
    flex-shrink: 0;
    transform: translateY(-500%);
    left: -162px;
  }
  .catalog-menu-bottom {
    gap: 227px;
  }
  .catalog-menu.active {
    transition: transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: translateX(0);
  }
  .katalog-menu-item {
    width: 100%;
    display: flex;
    gap: 10vw;
  }

  .menu-item.active {
    width: fit-content;
    transition: transform 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: translateX(0);
  }

  .menu-item {
    display: flex;
    width: fit-content;
    height: fit-content;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    border-radius: 0px 0px 105px 0px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    transform: translateX(-200%);
    transition: transform 2.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    box-shadow: 10px 7px 30px 0px rgba(0, 0, 0, 0.02);
    padding: 20px 40px 130px 137px;
  }

  .banner-title h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  .banner-title h1 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }

  .banner-title h4 {
    color: #cea740;
    font-family: "Cormorant Garamond";
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }

  .banner-text {
    width: 48%;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
  }

  .banner-list p {
    width: 95%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
  }

  .banner-list p::before {
    content: "";
    display: block;
    width: 28px;
    height: 29px;
    background: url(../img/ok.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    z-index: 1;
  }

  .banner-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }

  .banner-btn {
    width: 100%;
    height: 70px;
    display: flex;
    gap: 5px;
    align-items: center;
    transition: all 0.5s ease;
    color: #fff;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s ease;
  }

  .banner-btn img {
    margin-left: -10px;
    margin-top: -10px;
    width: 80px;
    height: 80px;
  }

  .banner-btn-text {
    color: #ababab;
    text-align: center;
    font-family: "Fira Sans Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-top: 10px;
  }

  .models-btn {
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #cea740;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s ease;
    cursor: pointer;
    padding: 5px 0;
  }

  .models-btn.active {
    font-size: 16px;
    color: #2c2c2c;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 10px;
  }

  .salon-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 60px;
  }

  .salon-text {
    width: 306px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
  }
  .salon-info-link {
    color: #cea740;
    font-family: "Fira Sans Extra Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 30px;
    transition: all 0.5s ease;
  }
  .salon-bottom {
    display: flex;
    gap: 60px;
    margin-top: 30px;
  }
  .salon-text p {
    color: #717171;
    font-family: "Fira Sans Extra Condensed";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
  }

  .salon-right {
    width: 20vw;
    position: absolute;
    right: 0;
    top: -24px;
    z-index: 1;
  }

  .salon-img {
    width: 39vw;
    margin-bottom: -24px;
    position: relative;
  }

  .examle-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .example-button-item {
    width: 100%;
    display: inline-flex;
    height: 51px;
    align-items: center;
    gap: -1px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #e7e2d6;
    margin-top: 40px;
    overflow-y: hidden;
    overflow-x: scroll;
  }

  .filter-button-item {
    width: 100%;
    display: inline-flex;
    height: 45px;
    /* align-items: center;
    justify-content: center; */
    flex-shrink: 0;
    margin-top: 20px;
    border-bottom: 1px solid #c5c5c5;
    margin-bottom: 40px;
    overflow-y: hidden;
    overflow-x: auto;
  }

  .get-example-title {
    color: #fff;
    font-family: "Cormorant Garamond";
    font-size: 3.2vw;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }
  .get-example-text {
    width: 72%;
    color: #fff;
    font-family: "Fira Sans Extra Condensed";
    font-size: 1.6vw;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    margin-top: 40px;
  }
  .example-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 12px;
    background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
    cursor: pointer;
    transition: all 0.5s ease;
    padding: 20px 30px;
    color: #fff;
    font-family: "Fira Sans Extra Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 70px;
  }
  .example-personal {
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
    margin: 60px -6vw 60px 0;
  }

  .tailor-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .tailor-text {
    color: #717171;
    font-family: "Fira Sans Extra Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    margin-top: 30px;
  }

  .tailor-year {
    width: 24vw;
    position: absolute;
    right: 3vw;
    top: 29vw;
  }

  .interior-title {
    color: #2c2c2c;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }
  .interior-text {
    color: #717171;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
  }

  .interior-card {
    width: 270px;
    height: 480px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ababab;
    transition: all 0.5s ease;
  }

  .interior-card-text h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  .interior-card-text p {
    color: #717171;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    margin-top: 10px;
  }

  .interior-card-img {
    width: 100%;
    height: 20vw;
    flex-shrink: 0;
    border-radius: 10px;
  }
  .interior-card-bottom a {
    width: fit-content;
    color: #cea740;
    font-family: "Fira Sans Extra Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    padding-bottom: 10px;
  }

  .contack-desinger-text {
    width: 40%;
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
  }

  .contack-desinger-text h2 {
    color: #fff;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .contack-desinger-text p {
    color: #fff;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-top: 30px;
  }

  .contack-desinger-personal-item {
    display: none;
  }
  .contack-desinger-item {
    width: 100%;
    height: fit-content;
    display: flex;
    background: url(../img/desingerbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 0px 0px 20% 0px;
    justify-content: space-between;
    padding: 90px 0 90px 40px;
  }
  .contack-desinger-form {
    display: flex;
    width: 420px;
    padding: 30px 15px 20px 15px;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 15px 0px rgba(73, 73, 73, 0.1);
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer-menu2 {
    width: 80%;
    display: flex;
    justify-content: space-between;
  }

  .contack-variants-personal-item {
    width: 100%;
    height: 110%;
    display: none;
    position: absolute;
    align-items: flex-end;
    left: 150px;
    bottom: 0px;
  }

  .contack-variants-text {
    width: 40%;
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
  }
  .contack-variants-form {
    display: flex;
    width: 420px;
    padding: 30px 15px 20px 15px;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 15px 0px rgba(73, 73, 73, 0.1);
    position: absolute;
    right: 0px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .curtain-samples-text h2 {
    color: #494949;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .curtain-samples-text h2 span {
    color: #cea740;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .curtain-samples-text {
    width: 40%;
    height: 100%;
    display: flex;
  }

  .curtain-samples-img-box {
    width: 55%;
    height: 23vw;
    flex: none;
    display: flex;
    gap: 15px;
  }

  .curtian-samples-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 15px;
  }

  .curtian-samples-row2 {
    width: 100%;
    height: fit-content;
    display: flex;
    gap: 15px;
    margin-top: 15px;
  }

  .curtain-samples-row3 {
    width: 50%;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .curtain-samples-row4 {
    margin-top: 15px;
  }

  .curtain-slider-all-title {
    width: 100%;
    display: flex;
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    padding: 0 8%;
  }
  .slider-item-title {
    width: 100%;
    display: flex;
    color: #ababab;
    font-family: "Fira Sans Extra Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    padding: 0 8%;
  }

  .curtain-slider .slick-slide {
    margin-right: 15px;
  }

  .curtain-detail-text h2 {
    color: #cea740;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .curtain-detail-text h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin-top: 70px;
  }

  .curtain-detail-text p {
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    margin-top: 40px;
  }

  .text-block-text h2 {
    color: #cea740;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .text-block-text h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin-top: 70px;
  }

  .text-block-text :is(p, ul) {
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
  }

  .curtain-detail-content {
    width: 100%;
    height: fit-content;
    display: flex;
    position: relative;
    align-items: center;
    padding: 120px 0;
  }
  .text-block-content {
    width: 100%;
    height: fit-content;
    display: flex;
    position: relative;
    align-items: center;
    padding: 120px 0;
  }
  .reguest-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .reguest-item {
    width: 100%;
    height: fit-content;
    display: flex;
    gap: 15px;
    margin-top: 40px;
  }

  .reguest-card {
    width: 33.33%;
    height: 390px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .reguest-card img {
    width: 100%;
    height: 260px;
    border-radius: 0px 100px 0px 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .style-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .style-item {
    width: 100%;
    height: fit-content;
    display: flex;
    gap: 15px;
    margin-top: 40px;
  }

  .style-card {
    width: 33.33%;
    height: 265px;
    display: flex;
    flex-direction: column;
  }

  .style-card img {
    width: 100%;
    height: 168px;
    border-radius: 9px 100px 0px 0px;
    background: #f3ebd8;
    transition: all 0.5s linear;
  }

  .style-card h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    margin-top: 10px;
  }

  .style-card p {
    color: #717171;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 10px;
  }

  .detailed-instruction-content {
    width: 100%;
    height: 34vw;
    display: flex;
    flex-direction: column;
    background: url(../img/ffbg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 30px;
    position: relative;
    padding: 0 55px 0 87px;
  }

  .detailed-instruction-title {
    color: #fff;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    margin-top: 50px;
  }

  .detailed-instruction-link {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    margin-top: 60px;
  }

  .detailed-instruction-link a {
    display: flex;
    width: 300px;
    padding: 20px;
    align-items: center;
    gap: 43px;
    border-radius: 20px 20px 20px 0px;
    background: #fff;
    box-shadow: 10px 7px 20px 0px rgba(0, 0, 0, 0.1);
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    transition: all 0.5s ease;
  }

  .contack-variants-text h2 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .contack-variants-text p {
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-top: 30px;
  }

  .contack-variants-form {
    display: flex;
    width: 420px;
    padding: 30px 15px 20px 15px;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 15px 0px rgba(73, 73, 73, 0.1);
    position: absolute;
    right: 0px;
    top: auto;
    bottom: 0;
    transform: translateY(0%);
  }

  .catalog-banner .banner-button-item {
    margin-top: 70px;
  }
  .-banner .banner-button-item {
    margin-top: 70px;
  }
  .catalog2-catalog-card-link {
    width: 100%;
    height: fit-content;
    display: flex;
    padding: 10px 10px 10px 20px;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 10px 0px;
    background: #fff;
    backdrop-filter: blur(2px);
    transition: all 0.5s linear;
    color: #222;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
}


.cornices-type--title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}


.banner2-container {
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url(../img/kt.png);
  background-repeat: no-repeat;
  background-size: 80% 90%;
  background-position: top right;
  margin-top: -140px;
}
.banner2-text {
  width: 48%;
  height: 50%;
  display: flex;
  flex-direction: column;
  margin-top: 90px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.banner2-text h3 {
  width: 100%;
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.affiliate-text h3 {
  color: #494949;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.banner2-btn {
  width: fit-content;
  display: flex;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.5s ease;
  color: #fff;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.5s ease;
  border-radius: 12px;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  margin-top: 60px;
}
.affiliate-btn {
  display: flex;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  color: #fff;
  text-align: right;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 40px;
  transition: all 0.5s ease;
}



.about-banner-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}



.about-banner-text h3 {
  color: #494949;
  font-family: "Cormorant Garamond";
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 10px;
}

.about-info-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}

.about-info-text {
  width: 70%;
  display: flex;
  flex-direction: column;
}

.contack-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  gap: 40px;
}
.contack-adres a {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  transition: all 0.5s ease;
}

.contack-time p {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  transition: all 0.5s ease;
}
.contack-right-img {
  width: 28%;
  height: 32vw;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}



.interior-catalog-card {
  height: 510px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ababab;
  transition: all 0.5s ease;
  padding-bottom: 10px;
  margin-bottom: 3%;
}




.a-img {
  width: 100%;
  height: 270px;
  display: flex;
  /* overflow: hidden; */
  border-radius: 10px;
}

.populer-catalog-card {
  width: 23.5%;
  height: 540px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ababab;
  transition: all 0.5s ease;
  padding-bottom: 10px;
  margin-bottom: 3%;
}












}

@media only screen and (max-width: 1040px) {
  .header-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 6%;
    padding-right: 5%;
  }
  .menu-icon {
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    left: 10px;
    top: 0px;
  }
  .menu-icon svg {
    width: 35px;
    height: 36px;
    transition: all 0.5s ease;
  }

  .header-center-text {
    display: none;
    height: 50px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
  }

  .header-right {
    display: flex;
    gap: 20px;
    display: flex;
    margin-left: 15vw;
  }

  .katalog-menu-item {
    width: 100%;
    display: flex;
    gap: 7vw;
  }

  .katalog-menu-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 104%;
  }

  .catalog-list li a {
    color: #cea740;
    font-family: "Fira Sans Extra Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s ease;
  }
  .catalog-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .catalog-menu-bottom a {
    color: #2c2c2c;
    font-family: Akrobat;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 0px;
    opacity: 0.5;
    border-bottom: 1px dotted #2c2c2c;
    padding-bottom: 10px;
    transition: all 0.5s ease;
  }

  .banner-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
    padding-left: 5%;
    gap: 25px;
  }
  .banner-button-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: 15px;
    margin-top: 40px;
    gap: 25px;
  }

  .banner-button-box {
    width: 240px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .banner-btn {
    width: 240px;
    height: 70px;
    display: flex;
    gap: 5px;
    align-items: center;
    transition: all 0.5s ease;
    color: #fff;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s ease;
  }

  .banner-text {
    width: 400px;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    position: relative;
    z-index: 2;
  }

  .banner-title h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  .banner-title h1 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }

  .banner-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .banner-list p {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
  }
  .banner-list p::before {
    content: "";
    display: flex;
    width: 32px;
    height: 32px;
    background: url(../img/ok.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }

  .banner-btn-text {
    display: none;
  }

  .curtians-model-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }

  .curtians-model-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 5%;
  }

  .models-item {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0%;
    gap: 0%;
    margin-top: 50px;
  }

  .models-btn {
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #cea740;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s ease;
    cursor: pointer;
    padding: 5px 0;
  }
  .models-btn.active {
    font-size: 16px;
    color: #2c2c2c;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 10px;
  }

  .cortians-img {
    width: 100%;
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
  }

  .cortians-img {
    width: 100%;
    height: 40vh;
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }

  .models-btn-box {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .curtians-model-title p {
    color: #494949;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .curtians-model-title p span {
    color: #cea740;
    font-family: "Cormorant Garamond";
    font-size: 35px;
  }

  .salon-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-top: 100px;
    padding: 0 5%;
  }

  .salon-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 40px;
  }

  .salon-info-box p {
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
  }

  .salon-info img {
    width: 30px;
  }
  .salon-elips {
    width: 21vw;
    position: absolute;
    right: 5vw;
    bottom: 10vw;
  }

  .salon-info-link {
    color: #cea740;
    font-family: "Fira Sans Extra Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 20px;
    transition: all 0.5s ease;
  }
  .salon-text {
    width: 306px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
  }

  .example-btn.active {
    display: flex;
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 12px;
    background: #be8b06;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    color: #fff;
  }

  .example-btn {
    display: flex;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    flex-shrink: 0;
    color: #c9a74f;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease;
  }

  .filter-btn {
    display: flex;
    height: 100%;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #717171;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    transition: all 0.5s ease;
  }

  .get-example-content {
    width: 100%;
    height: auto;
    display: flex;
    position: relative;
    background: url(../img/exbg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 60px 0 40px 35px;
  }

  .example-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 12px;
    background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
    cursor: pointer;
    transition: all 0.5s ease;
    padding: 15px 20px;
    color: #fff;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 40px;
  }

  .tailor-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    margin-top: 165px;
  }

  .tailor-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .tailor-text {
    color: #717171;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    margin-top: 20px;
  }

  .tailor-link {
    width: fit-content;
    color: #cea740;
    font-family: "Fira Sans Extra Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s ease;
    margin-top: 30px;
  }

  .tailor-card-item {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
  }

  .tailor-card-text h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .tailor-card-text p {
    color: #cea740;
    font-family: "Cormorant Garamond";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .interior-magazine-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    padding: 0 5%;
  }
  .interior-text {
    color: #717171;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
  }

  .interior-title {
    color: #2c2c2c;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .interior-card-item {
    display: flex;
    justify-content: space-between;
    gap: 2%;
    margin-top: 40px;
  }
  .contack-desinger-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    margin-top: 125px;
  }
  footer {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f4f1;
    padding: 40px 5% 20px 5%;
    margin-top: 62px;
  }
  .pagination-content {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 5%;
    gap: 20px;
  }
  .curtians-catalog-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 5%;
  }

  .curtians-catalog-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 350px;
    margin-top: 40px;
  }

  .curtians-catalog-item {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
  }

  .curtians-catalog-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
  }

  .curtians-catalog-item-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 90px;
  }

  .interior-magazine-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 130px;
    padding: 0 5%;
  }

  .curtain-samples-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 5%;
  }

  .curtain-samples-img-box {
    width: 55%;
    height: 26vw;
    display: flex;
    gap: 15px;
  }

  .curtain-samples-item-box {
    width: 33.33%;
    height: 23.5vw;
    overflow: hidden;
  }
  .curtain-samples-item-box3 {
    width: calc(50% - 10px);
    height: 23.5vw;
  }

  .curtain-samples-item-box2 {
    width: 50%;
    height: 48.5vw;
  }

  .curtain-slider-all-title {
    width: 100%;
    display: flex;
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    padding: 0 5%;
  }

  .slider-item-title {
    width: 100%;
    display: flex;
    color: #ababab;
    font-family: "Fira Sans Extra Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    padding: 0 5%;
  }

  .curtain-slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    right: 5%;
    top: -80px;
    display: block;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
  }

  .curtain-slider .slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    left: auto;
    right: 5%;
    top: -80px;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    margin-right: 60px;
  }

  .curtain-detail-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    margin-top: 60px;
  }

  .reguest-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 5%;
  }

  .reguest-card h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
  }

  .reguest-card p {
    color: #717171;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    /* display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; */
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .reguest-card {
    width: 33.33%;
    height: 370px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .reguest-card img {
    width: 100%;
    height: 240px;
    border-radius: 0px 100px 0px 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .style-card {
    width: 33.33%;
    height: 265px;
    display: flex;
    flex-direction: column;
  }

  .style-card img {
    width: 100%;
    height: 148px;
    border-radius: 9px 100px 0px 0px;
    background: #f3ebd8;
    transition: all 0.5s linear;
  }

  .style-card h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    margin-top: 10px;
  }
  .style-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 5%;
  }

  .detailed-instruction-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 100px;
    padding: 0 5%;
  }

  .detailed-instruction-link a {
    display: flex;
    width: 280px;
    padding: 20px;
    align-items: center;
    gap: 43px;
    border-radius: 20px 20px 20px 0px;
    background: #fff;
    box-shadow: 10px 7px 20px 0px rgba(0, 0, 0, 0.1);
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    transition: all 0.5s ease;
  }

  .get-example-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    margin-top: 100px;
  }
  .contack-variants-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    margin-top: 220px;
    margin-bottom: 30px;
  }

  .contack-variants-item {
    width: 100%;
    height: fit-content;
    display: flex;
    background: url(../img/variant.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    border-radius: 0px 0px 200px 0px;
    justify-content: space-between;
    padding: 90px 0 180px 35px;
  }

  .catalog2-catalog-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 5%;
  }
  .catalog2-catalog-item {
    width: 100%;
    height: fit-content;
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 4%;
}

  .catalog2-catalog-card {
    width: 30.66%;
    height:37vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border-radius: 20px 20px 20px 0px;
    transition: all 0.5s linear;
    position: relative;
    padding: 10px 10px 10px 20px;
    box-sizing: border-box;
    transition: all 0.5s linear;
    box-shadow: 0 45px 25px -20px rgba(0, 0, 0, 0.25);
    margin-bottom: 2%;
}



.cornices-type-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 5%;
}

.cornices-type-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
  margin-top: 60px;
}

.cornices-type-item a {
  width: 30.666%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 4%;
}



.cornices-type-item a h4 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}

.cornices-img-box {
  width: 100%;
  height: 20vw;
  background: #f3ebd8;
  transition: all 0.5s linear;
  border-radius: 9px 100px 0px 0px;
}

.banner2-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  padding-left: 5%;
}

.affiliate-program-content {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  padding: 0 5%;
  gap: 6%;
}

.banner2-container {
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url(../img/kt.png);
  background-repeat: no-repeat;
  background-size: 80% 90%;
  background-position: top right;
  margin-top: -130px;
}
.banner2-text {
  width: 60%;
  height: 50%;
  display: flex;
  flex-direction: column;
  margin-top: 90px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.about-banner-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 160px;
  padding: 0 5%;
  gap: 25px;
}

.about-banner-text {
  width: 45%;
  display: flex;
  flex-direction: column;
  margin-top: 70px;
}

.about-banner-img {
  width: 55%;
  height: 100%;
  display: flex;
  margin-top: 60px;
}
.about-banner-text p {
  color: #494949;
  font-family: "Fira Sans Extra Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  margin-top: 15px;
}

.about-banner-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -140px;
  background: url(../img/bannerbg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-bottom: 40px;
}
.about-info-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  margin-top: 96px;
}
.a3-img {
  width: 22vw;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.a-elips {
  width: 22vw;
  position: absolute;
  bottom: 15%;
  right: 10%;
}

.a1-img {
  width: 28vw;
  z-index: 1;
}

.a2-img {
  width: 42vw;
  z-index: 1;
}


.about-info-text {
  width: 72%;
  display: flex;
  flex-direction: column;
}


.contack-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url(../img/bannerbg.png);
  background-repeat: no-repeat;
  margin-top: -140px;
  padding: 0 5% 70px 5%;
}


.contack-text {
  width: 70%;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  gap: 40px;
}

.contack-right-img {
  width: 28%;
  height: 36vw;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.contack-elips {
  width: 32%;
  position: absolute;
  right: 8%;
  bottom: 20%;
}





.contack-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.inerior-catalog-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.interior-catalog-box {
  width: 100%;
  display: flex;
  gap: 10px;
  margin-top: 40px;
  flex-shrink: 0;
  overflow-x: auto;
}
.inerior-catalog-text p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
}


.interior-catalog-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 5%;
}

.interior-catalog-btn {
  display: flex;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid #e7e2d6;
  background: #fff;
  color: #c9a74f;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.5s ease;
  cursor: pointer;
  flex-shrink: 0;
}
.interior-catalog-card-item {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
}
.interior-catalog-card {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ababab;
  transition: all 0.5s ease;
  padding-bottom: 10px;
  margin-bottom: 3%;
}

.populer-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 5%;
}

.populer-title {
  color: #2c2c2c;
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.populer-catalog-item {
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
  margin-top: 60px;
}

.populer-catalog-card {
  width: 32%;
  height: 550px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ababab;
  transition: all 0.5s ease;
  padding-bottom: 10px;
  margin-bottom: 3%;
}

.populer-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.curtian-care-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 5%;
  gap: 40px;
}

.curtian-care-banner h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}


.select-banner-item h3 {
  color: #2C2C2C;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.curtian-care-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
  gap: 40px;
}

.care-info-item p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.select-banner {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 30px;
  background: #faf8f6;
  box-shadow: 0px 10px 20px 0px rgba(158, 158, 158, 0.1);
  overflow: hidden;
}


.select-banner2 {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 30px;
  background: #faf8f6;
  box-shadow: 0px 10px 20px 0px rgba(158, 158, 158, 0.1);
  overflow: hidden;
  background: url(../img/bb2.png);
  background-size: 100%;
}



.curtian-care-banner {
  width: 100%;
  display: flex;
  padding: 20px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(158, 158, 158, 0.1);
  /* margin-top: -60px; */
}
.curtian-care-container:has(.curtian-care-top-img) .curtian-care-banner {
  margin-top: -60px;
}

.form-end-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5%;
}

.form-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}


.form-text span {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
}

.form-text p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
}



.form-text {
  width: 556px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  gap: 20px;
}




.back-link {
  display: flex;
  height: 58px;
  padding: 0px 30px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  color: #fff;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s linear;
  margin-top: 10px;
}


.form-end-container {
  width: 100%;
  height: 60vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -100px;
}

.catalog-menu {
    padding: 40px 200px 20px 40px;
}
.catalog-menu-bottom {
  gap: 162px;
}

}

@media only screen and (max-width: 900px) {
  .about-img-left {
    width: 100%;
    height: auto;
  }
  .about-img-right {
    width: 100%;
    height: auto;
  }
  
  .about-img-big {
    width: 100%;
    height: auto;
  
  }
  .logo {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
  }

  .header-right {
    display: flex;
    gap: 20px;
    display: flex;
    margin-left: 0vw;
  }

  .catalog-btn {
    display: inline-flex;
    height: 45px;
    padding: 0px 15px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.5s ease;
    background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
    color: #fff;
    text-align: right;
    font-family: "Fira Sans Extra Condensed";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
  }

  .header-wp {
    display: inline-flex;
    height: 40px;
    padding: 0px 10px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #c5c5c5;
    transition: all 0.5s ease;
  }

  .header-tel {
    display: flex;
    align-items: center;
    color: #2c2c2c;
    text-align: right;
    font-family: "Fira Sans Extra Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s ease;
  }

  .header-tel-text {
    color: #6d6d6d;
    font-family: "Fira Sans Extra Condensed";
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
  }

  .banner-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
    padding-left: 5%;
    gap: 15px;
  }

  .banner-text {
    width: 360px;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    position: relative;
    z-index: 2;
  }

  .banner-title h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  .banner-title h1 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }

  .banner-title h4 {
    color: #cea740;
    font-family: "Cormorant Garamond";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  .banner-button-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: 15px;
    margin-top: 30px;
    gap: 25px;
  }

  .banner-btn {
    width: 240px;
    height: 55px;
    display: flex;
    gap: 5px;
    align-items: center;
    transition: all 0.5s ease;
    color: #fff;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.5s ease;
  }

  .banner-list p {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
  }

  .curtians-model-title p {
    color: #494949;
    font-family: "Cormorant Garamond";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .curtians-model-title p span {
    color: #cea740;
    font-family: "Cormorant Garamond";
    font-size: 30px;
  }

  .curtians-model-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    padding-left: 5%;
  }

  .curtians-model-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .curtians-catalog-card {
    height: 30vw;
  }
  .models-img-box {
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0px;
    padding-right: 0px;
    position: absolute;
    right: 0;
    top: 0;
    flex-shrink: 0;
  }
  .curtians-model-title {
    padding-bottom: 50px;
  }
  .cortians-img {
    width: 100%;
    height: 45vh;
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }

  .cortians-img::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(
      90deg,
      #faf8f6 0%,
      rgba(250, 248, 246, 0.22) 48.39%
    );
    z-index: 2;
  }

  .models-img-box::after {
    content: "";
    display: none;
    width: 50%;
    height: 60%;
    background: url(../img/shadow.png);
    background-repeat: no-repeat;
    position: absolute;
    background-size: cover;
    right: 0;
    bottom: 0;
    border-radius: 0px 0px 80px 0px;
  }

  body {
    width: 100%;
    max-width: 2500px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #faf8f6;
    /* background-image: url(../img/bannerbg.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 170%; */
    overflow-x: hidden;
    position: relative;
  }
  .models-item {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0%;
    gap: 0%;
    margin-top: 50px;
    position: relative;
  }

  .models-btn-box {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
  }
  .models-btn {
    height: 35px;
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #cea740;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s ease;
    cursor: pointer;
    padding: 5px 0;
  }

  .salon-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-top: 100px;
    padding: 0;
    padding-left: 5%;
  }

  .salon-right {
    width: 20vw;
    height: 25vw;
    position: absolute;
    right: 0;
    top: -24px;
    z-index: 1;
  }

  .salon-bottom {
    display: flex;
    gap: 30px;
    margin-top: 30px;
  }

  .example-personal {
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
    margin: 60px -15vw 40px 0;
  }

  .get-example-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    margin-top: 100px;
  }

  .tailor-bg {
    width: 45vw;
    height: 40vw;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
  }
  .tailor-year {
    width: 24vw;
    position: absolute;
    right: 3vw;
    top: 36vw;
  }

  .interior-card {
    width: 250px;
    height: 470px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ababab;
    transition: all 0.5s ease;
  }

  .interior-card-img {
    width: 100%;
    height: 23vw;
    flex-shrink: 0;
    border-radius: 10px;
  }

  .interior-card-text h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }
  .interior-card-text p {
    color: #717171;
    font-family: "Fira Sans Extra Condensed";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    margin-top: 10px;
  }

  .interior-card-bottom a {
    width: fit-content;
    color: #cea740;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    padding-bottom: 10px;
  }

  .contack-desinger-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    margin-top: 100px;
  }
  .contack-desinger-text {
    width: 45%;
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
  }
  .contack-desinger-form {
    display: flex;
    width: 380px;
    max-width: 45%;
    padding: 30px 15px 20px 15px;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 15px 0px rgba(73, 73, 73, 0.1);
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
  }
  .contack-desinger-text h2 {
    color: #fff;
    font-family: "Cormorant Garamond";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .contack-desinger-text p {
    color: #fff;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-top: 30px;
  }

  .contack-desinger-form h3 {
    width: 100%;
    color: #2c2c2c;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }
  .contack-desinger-form p {
    color: #717171;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-top: 20px;
  }

  .des-form-box {
    width: 100%;
    height: 60px;
    position: relative;
    display: flex;
    padding: 20px 20px;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #dfdfdf;
    margin-top: 10px;
  }

  .des-policy,
  .des-policy a {
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    transition: all 0.3s linear;
  }

  .des-form-box-send button {
    color: #fff;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s ease;
  }
  .des-form-box input,
  .des-form-box inpup::placeholder {
    outline: none;
    border: none;
    width: 100%;
    color: #ababab;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
  }

  .footer-logo {
    width: 200px;
    height: 33px;
  }

  .footer-logo-text {
    color: #6d6d6d;
    font-family: "Fira Sans Extra Condensed";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
  }
  .footer-form-btn {
    display: flex;
    height: 40px;
    padding: 0px 20px;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #c5c5c5;
    color: #6d6d6d;
    text-align: right;
    font-family: "Fira Sans Extra Condensed";
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s linear;
    margin-right: 40px;
  }

  .footer-tel-a {
    color: #6d6d6d;
    text-align: right;
    font-family: "Fira Sans Extra Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s linear;
  }
  .footer-tel-text {
    color: #6d6d6d;
    font-family: "Fira Sans Extra Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 15px;
  }

  .footer-menu2 {
    width: 70%;
    display: flex;
    justify-content: space-between;
  }
  .footer-menu2-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #9f9d97;
    font-family: "Fira Sans Extra Condensed";
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }

  .footer-a2 {
    /* color: #cea740; */
    font-family: "Fira Sans Extra Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s linear;
  }

  .catalog-menu.active {
    transition: transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: translateX(-20vw);
  }

  .catalog-menu {
    display: flex;
    flex-direction: column;
    padding: 40px 130px 20px 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 30px 0px 20% 0px;
    border: 1px solid #d7d7d7;
    background: #fff;
    box-shadow: 10px 7px 30px 0px rgba(0, 0, 0, 0.02);
    position: absolute;
    transition: transform 2s cubic-bezier(0.075, 0.82, 0.165, 1);
    top: 120%;
    left: 0;
    flex-shrink: 0;
    transform: translateY(-500%);
  }

  .contack-form-modal-container,
  .example-form-modal-container,
  .curtain-form-modal-container,
  .desinger-form-modal-container,
  .conditions-form-modal-container,
  .online-form-modal-container,
  .program-form-modal-container,
  .join-form-modal-container {
    width: 0;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 1000;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.4) 100%
    );
    transition: all 0.5s ease;
    padding: 0;
  }

  .modal-form-content {
    width: 90%;
    height: fit-content;
    display: flex;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(
        0deg,
        rgba(38, 28, 12, 0.62) 0%,
        rgba(38, 28, 12, 0.62) 100%
      ),
      url(../img/curtainform.png),
      lightgray -16.205px 0px / 128.686% 100% no-repeat;
  }

  .curtians-catalog-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 37vw;
    margin-top: 30px;
  }

  .curtians-catalog-item-title {
    color: #ababab;
    font-family: "Fira Sans Extra Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
  }

  .curtians-catalog-card-link {
    width: 100%;
    height: fit-content;
    display: flex;
    padding: 10px 10px 10px 20px;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 10px 0px;
    background: #fff;
    backdrop-filter: blur(2px);
    transition: all 0.5s linear;
    color: #222;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
  }
  .contack-variants-form {
    display: flex;
    width: 380px;
    padding: 30px 15px 20px 15px;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 15px 0px rgba(73, 73, 73, 0.1);
    position: absolute;
    right: 0px;
    top: auto;
    bottom: 0;
    transform: translateY(0%);
}



.detailed-instruction-content {
  width: 100%;
  height: 40vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../img/ffbg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 30px;
  position: relative;
  padding: 0 35px 0 35px;
}


.curtain-samples-item-box2 a img {
  width: 100%;
  height: 100%;
  border-radius: 0px 0px 0px 60px;
}



.curtain-detail-text h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-top: 50px;
}

.text-block-text h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-top: 50px;
}


.banner2-container {
  width: 100%;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url(../img/kt.png);
  background-repeat: no-repeat;
  background-size: 80% 90%;
  background-position: top right;
  margin-top: -130px;
}




.affiliate-program-content {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  padding: 0 5%;
  gap: 20px;
}

.affiliate-img {
  width: 60%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
.affiliate-text {
  width: 40%;
  height: fit-content;
}


.affiliate-btn {
  display: flex;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  color: #fff;
  text-align: right;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 40px;
  transition: all 0.5s ease;
}


.about-banner-item {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 25px;
  justify-content: space-between;
  flex-direction: column;
}



.about-banner-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 70px;
}

.about-banner-img {
  width: 100%;
  height: 100%;
  display: flex;
  margin-top: 40px;
}



.about-banner-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -140px;
  background: url(../img/bannerbg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-bottom: 0px;
}

.about-banner-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.about-info-text {
  width: 70%;
  display: flex;
  flex-direction: column;
}

.about-info-img-item {
  width: 100%;
  height: 100%;
  display: block;
  margin-top: 60px;
}

.about-info-text p {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-top: 10px;
}
.about-info-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.a3-img {
  width: 25vw;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}


.a-elips {
  width: 22vw;
  position: absolute;
  bottom: 18%;
  right: 10%;
}


.contack-info {
  width: 100%;
  display: flex;
  margin-top: 65px;
  height: 19vw;
  min-height: 280px;
  gap: 25px;
  z-index: 1;
}

.contack-text {
  width: 80%;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  gap: 40px;
}

.contack-elips {
  width: 30%;
  position: absolute;
  right: 0%;
  bottom: 30%;
}

.a-img {
  width: 100%;
  height: 260px;
  display: flex;
  /* overflow: hidden; */
  border-radius: 10px;
}


.interior-catalog-card {
  height: 500px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ababab;
  transition: all 0.5s ease;
  padding-bottom: 10px;
  margin-bottom: 3%;
}
.interior-catalog-card-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.populer-catalog-card-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.form-text {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  gap: 20px;
  margin-top: 40px;
}
.form-end-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -100px;
}
.form-end-img {
  width: 70%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}


.form-end-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5%;
  padding-top: 15%;
  padding-bottom: 10%;
}






}

@media only screen and (max-width: 768px) {
  header {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 15;
    top: 0;
    /* background-image: url("https://textile-vremeni.ru/wp-content/themes/tekstile/img/bannerbg.png");
    background-repeat: no-repeat; */
    /* background-color: #faf8f6; */
    /* background-size: 190% auto; */
  }
  .header-tel svg {
    display: block;
  }

  .header-tel {
    display: flex;
    align-items: center;
    color: #2c2c2c;
    text-align: right;
    font-family: "Fira Sans Extra Condensed";
    font-size: 0px;
    font-style: normal;
    font-weight: 700;
    line-height: 0;
    text-transform: uppercase;
    transition: all 0.5s ease;
  }
  .header-tel-text {
    display: none;
  }

  .banner-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* margin-top: -60px; */
  }

  .banner-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-left: 20px;
    gap: 15px;
  }

  .banner-text {
    width: 320px;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    position: relative;
    z-index: 2;
  }

  .salon-info-box p {
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
  }

  .salon-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 30px;
  }

  .salon-img {
    width: 42vw;
    height: 30vw;
    margin-bottom: -24px;
    position: relative;
  }

  .salon-elips {
    width: 23vw;
    position: absolute;
    right: 5vw;
    bottom: 15vw;
  }
  .salon-right {
    width: 23vw;
    height: 27vw;
    position: absolute;
    right: 0;
    top: -24px;
    z-index: 1;
  }
  .salon-info-link {
    color: #cea740;
    font-family: "Fira Sans Extra Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 20px;
    transition: all 0.5s ease;
  }

  .salon-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-top: 100px;
    padding: 0;
    padding-left: 20px;
  }
  .go-portfolio-page {
    display: inline-flex;
    height: 50px;
    padding: 0px 30px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #cea740;
    color: #cea740;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 20px;
  }

  .curtians-model-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    padding-left: 20px;
  }

  .catalog-menu.active {
    transition: transform 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: translateX(-30vw);
  }

  .example-button-item {
    width: 100%;
    display: inline-flex;
    height: 51px;
    align-items: center;
    gap: -1px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #e7e2d6;
    margin-top: 30px;
    overflow-y: hidden;
    overflow-x: scroll;
  }

  .filter-button-item {
    width: 100%;
    display: flex;
    height: 45px;
    /* align-items: center;
    justify-content: center; */
    align-self: flex-start;
    flex-shrink: 0;
    margin-top: 20px;
    border-bottom: 1px solid #c5c5c5;
    margin-bottom: 30px;
    overflow-y: hidden;
    overflow-x: scroll;
  }
  .get-example-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin-top: 100px;
  }

  .example-btn.active {
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 12px;
    background: #be8b06;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    color: #fff;
  }

  .tailor-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin-top: 125px;
  }
  .interior-card-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4%;
    margin-top: 40px;
  }
  .interior-card {
    width: 290px;
    height: 480px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ababab;
    transition: all 0.5s ease;
    margin-bottom: 4%;
  }
  .interior-magazine-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    padding: 0 20px;
  }

  .interior-card-img {
    width: 100%;
    height: 240px;
    flex-shrink: 0;
    border-radius: 10px;
  }

  .interior-card-text h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }

  .interior-card-text p {
    color: #717171;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    margin-top: 10px;
  }

  .interior-all-link {
    width: fit-content;
    display: flex;
    height: 50px;
    padding: 0px 40px;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #cea740;
    color: #cea740;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s ease;
    margin: 0 auto 0 auto;
    margin-top: 20px;
  }

  .contack-desinger-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin-top: 80px;
  }

  .example-personal {
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
    margin: 60px -29vw 40px 0;
  }

  .example-personal-img {
    width: 100%;
    max-height: 115%;
  }
  .get-example-content {
    width: 100%;
    height: auto;
    display: flex;
    position: relative;
    background: url(../img/exbg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 40px 0 40px 20px;
  }

  .tailor-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin-top: 100px;
  }

  .tailor-card-img {
    width: 100%;
    height: 28vw;
    display: block;
    flex-shrink: 0;
    position: relative;
    margin-left: -10px;
  }

  .tailor-card-item {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
  }

  .tailor-card-content {
    width: 32vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }

  .tailor-bg {
    width: 50vw;
    height: 40vw;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
  }

  .contack-desinger-item {
    width: 100%;
    height: fit-content;
    display: flex;
    background: url(../img/desingerbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 0px 0px 20% 0px;
    justify-content: space-between;
    padding: 70px 0 70px 25px;
  }

  .contack-desinger-form p {
    color: #717171;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-top: 10px;
  }

  .contack-desinger-form {
    display: flex;
    width: 390px;
    max-width: 48%;
    padding: 20px 15px 20px 15px;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 15px 0px rgba(73, 73, 73, 0.1);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .des-form-box {
    width: 100%;
    height: 50px;
    position: relative;
    display: flex;
    padding: 10px 20px;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #dfdfdf;
    margin-top: 10px;
  }

  .des-checkbox-box label input {
    appearance: none;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s linear;
    /* background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740; */
  }

  footer {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f4f1;
    padding: 40px 20px;
    margin-top: 62px;
  }
  .footer-form-btn {
    display: flex;
    height: 40px;
    padding: 0px 15px;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #c5c5c5;
    color: #6d6d6d;
    text-align: right;
    font-family: "Fira Sans Extra Condensed";
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s linear;
    margin-right: 20px;
  }

  .modal-form h3 {
    color: #2c2c2c;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }

  .modal-form p {
    color: #717171;
    text-align: center;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-top: 10px;
  }
  .modal-form-box {
    width: 100%;
    position: relative;
    display: flex;
    height: fit-content;
    padding: 15px 20px;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #dfdfdf;
    margin-top: 10px;
  }

  .modal-form-policy,
  .modal-form-policy a {
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    transition: all 0.3s linear;
  }

  .modal-form-checkbox-box label input {
    appearance: none;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s linear;
    background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  }

  .modal-form-box-send button {
    color: #fff;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
  }

  .form-person-info {
    display: flex;
    width: 90%;
    height: fit-content;
    flex-direction: column;
    padding: 10px 10px 10px 20px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
  }

  .form-person-info h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .form-person-info p {
    color: #2c2c2c;
    font-family: Akrobat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
  }

  .curtians-catalog-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
  }
  .curtians-catalog-card-link {
    width: 100%;
    height: fit-content;
    display: flex;
    padding: 6px 6px 6px 12px;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 10px 0px;
    background: #fff;
    backdrop-filter: blur(2px);
    transition: all 0.5s linear;
    color: #222;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
  }

  .curtians-catalog-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .pagination-content {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
  }


  .curtain-samples-text h2 {
    color: #494949;
    font-family: "Cormorant Garamond";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}

.curtain-samples-text h2 span {
  color: #cea740;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}


.curtain-samples-img-box {
  width: 55%;
  height: 26vw;
  display: flex;
  gap: 10px;
}


.curtain-samples-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}


.curtain-samples-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.curtian-samples-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.curtain-samples-row3 {
  width: 50%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.curtian-samples-row2 {
  width: 100%;
  height: fit-content;
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.curtain-samples-row4 {
  margin-top: 10px;
}

.curtain-samples-item-box3 {
  width: calc(50% - 5px);
  height: 23.5vw;
}



.curtain-samples-all-link {
  width: fit-content;
  display: flex;
  height: 50px;
  padding: 0px 30px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid #cea740;
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s ease;
  margin: 30px auto 0 auto;
}




.curtain-slider .slick-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: auto;
  right: 20px;
  top: -80px;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  margin-right: 50px;
}



.curtain-slider .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  right: 20px;
  top: -80px;
  display: block;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}


.curtain-slider .slick-next,
.curtain-slider .slick-prev{
  width: 30px;
  height: 30px;
}


.curtain-slider .slick-next svg,
.curtain-slider .slick-prev svg{
  width: 100%;
  height: 100%;
}

.curtain-slider .slick-slide {
  margin-right: 10px;
}

.curtain-slider-item {
  width: auto;
  max-width: 600px;
  height: 250px;
  max-height: 250px;
}


.curtain-detail-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: 60px;
}
.text-block-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: 60px;
}

.curtain-detail-content {
  width: 100%;
  height: fit-content;
  display: flex;
  position: relative;
  align-items: center;
  padding: 80px 0;
}
.text-block-content {
  width: 100%;
  height: fit-content;
  display: flex;
  position: relative;
  align-items: center;
  padding: 80px 0;
}

.curtain-detail-bg {
  width: 100%;
  height: 100%;
  display: flex;
  flex-shrink: 0;
  position: absolute;
  right: -50px;
}



.curtain-detail-text {
  width: 45%;
  display: none;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  padding-left: 20px;
}
.text-block-text {
  width: 45%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  padding-left: 20px;
}

.curtain-detail-btn1 {
  right: 14%;
  top: 17%;
}

.curtain-detail-btn2 {
  right: 33%;
  top: 45%;
}

.curtain-detail-btn3 {
  right: 34%;
  top: 73%;
}

.point-active,
.point{
  width: 65px;
  height: auto;
}

.curtain-detail-text p {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  margin-top: 40px;
}
.text-block-text :is(p, ul) {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
}
.reguest-item {
  width: 100%;
  height: fit-content;
  display: flex;
  gap: 2%;
  margin-top: 40px;
  flex-wrap: wrap;
}
.reguest-card {
  width: 48%;
  height: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2%;
}
.reguest-card img {
  width: 100%;
  height: 280px;
  border-radius: 0px 100px 0px 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



.reguest-card h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}

.reguest-card p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  /* display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; */
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reguest-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}


.style-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}


.style-item {
  width: 100%;
  height: fit-content;
  display: flex;
  gap: 2%;
  margin-top: 40px;
  flex-wrap: wrap;
}

.style-card {
  width: 48%;
  height: 285px;
  display: flex;
  flex-direction: column;
  margin-bottom: 2%;
}


.style-card img {
  width: 100%;
  height: 168px;
  border-radius: 9px 100px 0px 0px;
  background: #f3ebd8;
  transition: all 0.5s linear;
}

.style-card h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-top: 10px;
}
.style-card p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 10px;
}


.style-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.detailed-instruction-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 60px;
  padding: 0 20px;
}

.detailed-instruction-link a {
  display: flex;
  width: 240px;
  padding: 15px;
  align-items: center;
  gap: 43px;
  border-radius: 20px 20px 20px 0px;
  background: #fff;
  box-shadow: 10px 7px 20px 0px rgba(0, 0, 0, 0.1);
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  transition: all 0.5s ease;
}

.contack-variants-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  margin-top: 170px;
  margin-bottom: 30px;
}

.contack-variants-form {
  display: flex;
  width: 380px;
  max-width: 50%;
  padding: 30px 15px 20px 15px;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 4px 15px 0px rgba(73, 73, 73, 0.1);
  position: absolute;
  right: 0px;
  top: auto;
  bottom: 0;
  transform: translateY(0%);
}

.contack-variants-form-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.variants-form-box {
  width: 100%;
  height: 60px;
  position: relative;
  display: flex;
  height: 55px;
  padding: 24px 20px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #dfdfdf;
  margin-top: 10px;
}


.variants-form-box input, .variants-form-box inpup::placeholder {
  outline: none;
  border: none;
  width: 100%;
  color: #ababab;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
}
.variants-form-box-send button {
  color: #fff;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}


.contack-variants-form p {
  color: #717171;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-top: 20px;
}
.variants-policy, .variants-policy a {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  transition: all 0.3s linear;
}
.variants-checkbox-box label input {
  appearance: none;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s linear;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
}



.contack-variants-item {
  width: 100%;
  height: fit-content;
  display: flex;
  background: url(../img/variant.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  border-radius: 0px 0px 200px 0px;
  justify-content: space-between;
  padding: 90px 0 150px 20px;
}


.contack-variants-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}


.contack-variants-form h3 {
  width: 100%;
  color: #2c2c2c;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}

.detailed-instruction-title {
  color: #fff;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-top: 20px;
}
.detailed-instruction-link {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}
.detailed-instruction-img {
  position: absolute;
  display: block;
  width: 100%;
  top: 30px;
  left: 0;
}
.catalog2-catalog-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.catalog2-catalog-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.catalog2-catalog-card {
  width: 30.666%;
  height: 37vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border-radius: 20px 20px 20px 0px;
  transition: all 0.5s linear;
  position: relative;
  padding: 5px 5px 5px 10px;
  box-sizing: border-box;
  transition: all 0.5s linear;
  box-shadow: 0 45px 25px -20px rgba(0, 0, 0, 0.25);
  margin-bottom: 4%;
}


.catalog2-catalog-card-link {
  width: 100%;
  height: fit-content;
  display: flex;
  padding: 5px 5px 10px 10px;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px 10px 10px 0px;
  background: #fff;
  backdrop-filter: blur(2px);
  transition: all 0.5s linear;
  color: #222;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  text-transform: uppercase;
}





.cornices-type-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.cornices-img-box {
  width: 100%;
  height: 20vw;
  background: #f3ebd8;
  transition: all 0.5s linear;
  border-radius: 9px 80px 0px 0px;
}

.cornices-type-item a {
  width: 30.666%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4%;
}
.cornices-type-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
  margin-top: 40px;
}

.banner2-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  padding-left: 20px;
}
.affiliate-program-content {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  padding: 0 20px;
  gap: 30px;
}

.banner2-text h3 {
  width: 100%;
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}


.affiliate-text {
  width: 100%;
  height: fit-content;
}

.affiliate-text h3 {
  color: #494949;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.affiliate-text h3 br{
  display: none;
}
.affiliate-img {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}


.about-banner-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 160px;
  padding: 0 20px;
  gap: 25px;
}


.about-banner-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 0px;
}



.about-banner-text h3 {
  color: #494949;
  font-family: "Cormorant Garamond";
  font-size: 55px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 0px;
}


.about-banner-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}


.about-info-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.about-info-text p {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-top: 10px;
}


.about-info-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  margin-top: 96px;
}


.contack-right-img {
  width: 28%;
  height: 36vw;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  display: none;
}
.contack-elips {
  width: 30%;
  position: absolute;
  right: 0%;
  bottom: 30%;
  display: none;
}
.contack-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  gap: 40px;
}

.contack-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url(../img/bannerbg.png);
  background-repeat: no-repeat;
  margin-top: -140px;
  padding: 0 20px 40px 20px;
}


.contack-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  gap: 40px;
}
.contack-info {
  width: 100%;
  display: flex;
  margin-top: 65px;
  height: fit-content;
  min-height: fit-content;
  gap: 25px;
  z-index: 1;
  flex-direction: column;
}


.contack-map {
  width: 100%;
  height: 50vw;
  position: relative;
}
.contack-info-img {
  width: 100%;
  height: 45vw;
}


.contack-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url(../img/bannerbg.png);
  background-repeat: no-repeat;
  margin-top: -110px;
  padding: 0 20px 40px 20px;

 
}

.interior-catalog-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  position: relative;
}

.inerior-catalog-text p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
}


.interior-catalog-btn {
  display: flex;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid #e7e2d6;
  background: #fff;
  color: #c9a74f;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.5s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.interior-catalog-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.interior-catalog-card-text-box h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  max-height: 52.8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.interior-catalog-card-text-box p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
  max-height: 52.8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-top: 10px;
}
.interior-catalog-link {
  width: fit-content;
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.5s ease;
}

.a-img {
  width: 100%;
  height: 240px;
  display: flex;
  /* overflow: hidden; */
  border-radius: 10px;
}


.interior-catalog-card {
  width: 32%;
  height: 55vw;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ababab;
  transition: all 0.5s ease;
  padding-bottom: 10px;
  margin-bottom: 3%;
}


.interior-catalog-card-select a {
  display: flex;
  height: 20px;
  padding: 4px 12px;
  align-items: center;
  gap: -1px;
  border-radius: 12px;
  background: #ede1c1;
  color: #717171;
  font-family: "Fira Sans Condensed";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  transition: all 0.5s ease;
}

.interior-catalog-more {
  width: fit-content;
  display: flex;
  height: 50px;
  padding: 0px 30px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid #cea740;
  color: #cea740;
  font-family: "Fira Sans Extra Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 auto;
  cursor: pointer;
}


.populer-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.populer-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.populer-catalog-item {
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
  margin-top: 40px;
}

.populer-catalog-card-select a {
  display: flex;
  height: 20px;
  padding: 4px 12px;
  align-items: center;
  gap: -1px;
  border-radius: 12px;
  background: #ede1c1;
  color: #717171;
  font-family: "Fira Sans Condensed";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  transition: all 0.5s ease;
}

.populer-catalog-card-text-box h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  max-height: 52.8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.populer-catalog-card-text-box p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
  max-height: 52.8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-top: 10px;
}
.populer-catalog-card {
  width: 32%;
  height: 470px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ababab;
  transition: all 0.5s ease;
  padding-bottom: 10px;
  margin-bottom: 3%;
}


.bg-img {
  width: 190%;
  position: absolute;
  top: 0;
  left: 0;
}




.curtian-care-banner h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.care-info-box span {
  color: #ababab;
  font-family: "Fira Sans Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.select-banner {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 30px;
  background: #faf8f6;
  box-shadow: 0px 10px 20px 0px rgba(158, 158, 158, 0.1);
  overflow: hidden;
}
.select-banner2 {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 30px;
  background: #faf8f6;
  box-shadow: 0px 10px 20px 0px rgba(158, 158, 158, 0.1);
  overflow: hidden;
  background: url(../img/bb2.png);
  background-size: 100%;
}

.care-sosial-link-box {
  display: flex;
  align-items: center;
  gap: 10px;
}


.care-info-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 40px;
}


.form-end-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-top: 15%;
  padding-bottom: 10%;
}


.form-text {
  width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  gap: 20px;
  margin-top: 40px;
}

.catalog-menu {
    left: -15px;
}


}
@media only screen and (max-width: 700px) {
    .catalog-menu {
        left: -55px;
    }
}

@media only screen and (max-width: 650px) {
  .catalog2-catalog-bg {
    display: none;
  }
  .footer-logo-text {
    display: none;
  }
  .logo-text {
    display: none;
  }

  .catalog-btn {
    display: none;
  }

  .logo img {
    width: 190px;
  }

  .dd-menu-li {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0px;
  }

  .dd-menu-a {
    /* width: 100%; */
    position: static;
    align-items: center;
  }

  .dd-menu-a::before {
    content: "\f107";
    display: flex;
    font-family: FontAwesome;
    position: absolute;
    right: 10px;
    font-size: 20px;
    transition: all 0.5s ease;
  }

  .dd-menu-a.active::before {
    transform: rotate(180deg);
  }

  .dd-menu-container {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    transition: all 0.5s ease;
    height: 0;
    overflow: hidden;
  }
  .dd-menu-container.active {
    width: 100%;
    height: fit-content;
    margin-top: 20px;
  }

  .dd-menu-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.5s ease;
    /* border: 1px solid red; */
  }
  .dd-menu-item:not(:last-child) {
    margin-bottom: 15px;
  }
  .dd-menu-title {
    width: calc(100% - 15px);
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    color: rgba(113, 113, 113, 1);
    font-family: Akrobat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s ease;
    gap: 20px;
    margin-left: 15px;
    font-synthesis: none;
  }
  .dd-menu-title::before {
    content: "";
    width: 10%;
    display: block;
    height: 1px;
    background: #2c2c2c;
    transition: all 0.5s ease;
    position: absolute;
    top: 25px;
  }
  .dd-menu-title::after {
    content: "\f107";
    display: flex;
    font-family: FontAwesome;
    font-size: 15px;
    transition: all 0.5s ease;
  }
  .dd-menu-title.active {
    color: #b78d20;
  }
  .dd-menu-title.active::after {
    transition: all 0.5s ease;
    transform: rotate(180deg);
  }

  .dd-menu-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    height: 0;
    transition: all 0.5s ease;
  }
  .dd-menu-list.active {
    transition: all 0.5s ease;
    height: fit-content;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .dd-menu-list li {
    width: 100%;
    display: inline-flex;
    margin-left: 30px;
  }

  .dd-menu-list li a {
    width: 100%;
    font-family: Akrobat;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s ease;
    color: #c9a74f;
  }

  .dd-menu-list li a:hover {
    color: #ab6e12;
  }

  .dd-menu-bottom {
    display: flex;
    gap: 20px;
    transition: all 0.5s ease;
    margin-top: 10px;
  }

  .dd-menu-bottom a {
    transition: all 0.5s ease;
    color: #2c2c2c;
    font-family: Akrobat;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 0px;
    opacity: 0.5;
    border-bottom: 1px dotted #2c2c2c;
    padding-bottom: 10px;
  }

  .dd-menu-bottom a:hover {
    color: #ab6e12;
  }

  .menu-item {
    display: flex;
    width: 360px;
    height: 70vh;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    border-radius: 0px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    transform: translateX(-200%);
    transition: transform 2.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    box-shadow: 10px 7px 30px 0px rgba(0, 0, 0, 0.02);
    padding: 20px 20px 40px 20px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .menu-content {
    display: flex;
    height: 90%;
    width: 100%;
    flex-direction: column;
    overflow: auto
  }
  .menu-item::-webkit-scrollbar {
    width: 4px;
    height: 2px;
    background-color: #404348;
    border-radius: 4px;
  }

  .menu-item::-webkit-scrollbar-thumb {
    background-color: #c68f24;
    border-radius: 4px;
  }
  .menu-logo-text {
    color: #2c2c2c;
    font-family: "Fira Sans Extra Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: -0.32px;
  }
  .menu-logo img {
    width: 180px;
  }
  .menu-logo {
    margin-bottom: 30px;
  }
  .menu-close {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    position: absolute;
    top: 25px;
    left: auto;
    right: 10px;
  }
  .menu-close-text {
    display: none;
  }
  .menu-li {
    padding-right: 10px;
    position: relative;
  }
  .menu-sb {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* margin-top: 30px; */
    justify-content: space-between;
  }

  nav {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    margin-top: 0px;
  }

  .menu-a::after {
    content: "";
    width: 80%;
    display: block;
    height: 1px;
    background: #2c2c2c;
    margin-top: 3px;
    transition: all 0.5s ease;
  }

  .menu-contack {
    display: flex;
    align-items: center;
    margin-top: 30px;
    bottom: 30px;
    position: absolute;
    width: 90%;
  }

  .menu-tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
  }

  .menu-tel-a {
    color: #6d6d6d;
    text-align: right;
    font-family: "Fira Sans Extra Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s linear;
  }

  .menu-tel-a:hover {
    color: #b78d20;
    transform: scale(1.05);
  }

  .menu-tel-text {
    color: #6d6d6d;
    font-family: "Fira Sans Extra Condensed";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px; /* 128.571% */
  }

  .menu-contack-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }
  .menu-item svg {
    border-radius: 8px;
    transition: all 0.5s ease;
  }
  .menu-item svg:hover rect {
    fill: #b78d20;
  }

  .menu-item svg:hover path {
    fill: #b78d20;
  }
  .menu-item .menu-wp:hover #Vector {
    fill: #fff;
  }
  .menu-item .menu-telegram:hover path {
    fill: #fff;
  }

  .banner-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    position: relative;
    z-index: 2;
  }

  .banner-title {
    display: flex;
    flex-direction: column;
    order: 1;
  }
  .banner-title h4 {
    display: none;
  }
  .banner-title .subtitle {
    display: block;
    margin-block-start: 10px;
  }
  .banner-title .subtitle h3 {
    display: block;
    font-family: 'Fira Sans Extra Condensed';
font-style: normal;
font-weight: 300;
font-size: 18px;
line-height: 130%;
color: #2C2C2C;
  }
  .banner-title .subtitle h3 br {
    display: initial;
  }
  .banner-title .subtitle h3 span {
    display: initial;
    color: #CEA740;
  }

  .banner-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20vw;
    padding-right: 20px;
    order: 3;
  }

  .banner-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-left: 20px;
    gap: 15px;
    position: relative;
  }

  .banner-img {
    width: 300px;
    height: 250px;
    display: block;
    overflow: hidden;
    margin-top: 40px;
    position: relative;
    border-radius: 30% 0px 0px 0px;
    background: url(../img/bannerr.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: 0;
    top: 15%;
  }

  .catalog-banner .banner-img {
    width: 300px;
    height: 250px;
    display: block;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
    border-radius: 30% 0px 0px 0px;
    background: url(../img/banner2.png);
    background-repeat: no-repeat;
    background-size: 100% 120%;

    position: absolute;
    right: 0;
    top: 15%;
  }
  
  .plastic-banner .banner-img {
    width: 300px;
    height: 250px;
    display: block;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
    border-radius: 30% 0px 0px 0px;
    background: url(../img/pbanner.png);
    background-repeat: no-repeat;
    background-size: 100% 120%;
    position: absolute;
    right: 0;
    top: 18%;
  }
  
  .banner-button-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
    margin-left: 0px;
    margin-top: 17vw;
    gap: 25px;
    order: 2;
    
  }

  .salon-title {
    width: 50%;
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 30px;
  }

  .salon-info {
    width: 50%;
    display: flex;
    gap: 20px;
    align-items: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 15px 0px rgba(73, 73, 73, 0.1);
    padding: 10px 20px;
    margin-top: 30px;
  }

  .salon-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
  }

  .salon-right {
    width: 35vw;
    height: 35vw;
    position: absolute;
    right: 0;
    top: -24px;
    z-index: 1;
  }

  .salon-elips {
    width: 35vw;
    position: absolute;
    right: 5vw;
    bottom: 20vw;
  }

  .salon-img {
    width: 50vw;
    height: 35vw;
    margin-bottom: 0px;
    position: relative;
  }

  .example-container {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 110px;
  }

  .get-example-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0px;
    margin-top: 100px;
  }
  .get-example-content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    background: url(../img/bggg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 40px 0 0px 0px;
  }

  .get-example-right {
    width: 100%;
    height: 480px;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
    position: relative;
    width: 100%;
    margin-top: 30px;
    overflow: hidden;
  }
  .example-personal-img {
    width: 100%;
    max-height: fit-content;
    height: auto;
    position: absolute;
    top: 0;
  }
  .example-personal {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    position: absolute;
    flex-shrink: 0;
    margin: 0;
    left: 0px;
    bottom: 20px;
    background: linear-gradient(
      84.95deg,
      #3c3c3c 14.4%,
      rgba(53, 43, 31, 0) 78.59%
    );
    padding: 20px 0px 20px 60px;
    z-index: 1;
  }

  .example-personal img {
    position: absolute;
    top: 10px;
    left: 25px;
  }
  .get-example-left {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    padding: 0 20px;
  }

  .get-example-title {
    color: #fff;
    font-family: "Cormorant Garamond";
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-align: center;
  }

  .get-example-text {
    width: 100%;
    color: #fff;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    text-align: center;
    margin-top: 30px;
  }

  .contack-desinger-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/desingerbg.png);
    background-repeat: no-repeat;
    background-size: 120% 100%;
    padding: 0 0px;
    margin-top: 60px;
    border-radius: 0px 100px 0% 0px;
  }
  .contack-desinger-content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    position: relative;
    position: relative;
    border-radius: 0px 100px 0% 0px;
    padding: 30px 20px;
    background: linear-gradient(90deg, #565656 0%, rgba(83, 73, 61, 0) 100%);
  }

  .contack-desinger-item {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    background: transparent;
    justify-content: space-between;
    padding: 0px;
  }

  .contack-desinger-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex-shrink: 0;
  }

  .contack-desinger-text h2 {
    color: #fff;
    font-family: "Cormorant Garamond";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-align: center;
  }

  .cantack-desinger-bg {
    display: none;
  }
  .contack-desinger-text p {
    color: #fff;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    margin-top: 30px;
    text-align: center;
  }
  .contack-desinger-text a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cea740;
    font-family: "Fira Sans Extra Condensed";
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    transition: all 0.5s ease;
    margin-top: 40px;
    text-align: center;
  }
  .contack-desinger-text span {
    color: #fff;
    font-family: "Fira Sans Extra Condensed";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    margin-top: 20px;
    text-align: center;
  }

  .contack-desinger-form {
    display: flex;
    width: 360px;
    max-width: 100%;
    padding: 20px 15px 20px 15px;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 15px 0px rgba(73, 73, 73, 0.1);
    position: static;
    right: 20px;
    top: 50%;
    transform: translateY(0%);
    margin-top: 30px;
  }

  .examle-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-align: center;
    padding: 0px 20px;
  }

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

  .footer-top-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-top-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
  }

  .footer-form-btn {
    display: flex;
    height: 40px;
    padding: 0px 20px;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #c5c5c5;
    color: #6d6d6d;
    text-align: right;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s linear;
    margin-right: 0px;
  }
  .footer-tel-a {
    color: #6d6d6d;
    text-align: right;
    font-family: "Fira Sans Extra Condensed";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s linear;
  }

  .modal-form-container {
    width: 100%;
    height: fit-content;
    display: flex;
    position: static;
    flex-direction: column-reverse;
    gap: 10px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .modal-form {
    width: 100%;
    height: fit-content;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 30px 20px;
  }
  .modal-form-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .modal-form-content {
    width: 90%;
    height: fit-content;
    display: flex;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(
        0deg,
        rgba(38, 28, 12, 0.62) 0%,
        rgba(38, 28, 12, 0.62) 100%
      ),
      url(../img/curtainform.png),
      lightgray -16.205px 0px / 128.686% 100% no-repeat;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
  }

  .example-form-modal-container > .modal-form-content {
    background: none;
  }

  .example-form-modal-container > .modal-form-content .modal-form-container {
    height: fit-content;
  }
  .modal-form-img {
    display: none;
  }

  .form-person-info {
    display: flex;
    width: fit-content;
    height: fit-content;
    flex-direction: column;
    padding: 20px 30px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(2px);
    position: absolute;
    left: 30px;
    bottom: 30px;
  }

  .form-person-info h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .form-person-info p {
    color: #2c2c2c;
    font-family: Akrobat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
  }

  .curtians-catalog-card-link {
    width: 100%;
    height: fit-content;
    display: flex;
    padding: 6px 6px 6px 12px;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 10px 0px;
    background: #fff;
    backdrop-filter: blur(2px);
    transition: all 0.5s linear;
    color: #222;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    text-transform: uppercase;
  }

  .curtians-catalog-card-img {
    object-fit: cover;
  }
  .curtain-samples-top {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}


.curtain-samples-text {
  width: 100%;
  height: 100%;
  display: flex;
}

.curtain-samples-img-box {
  width: 100%;
  height: 30vw;
  display: flex;
  gap: 10px;
}

.curtain-samples-item-box {
  width: 33.33%;
  height: 30vw;
  overflow: hidden;
}

.curtain-samples-item-box3 {
  width: calc(50% - 5px);
  height: 26vw;
}
.curtain-samples-item-box2 {
  width: 50%;
  height: 53.8vw;
}


.curtain-slider-row {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}



.curtain-slider .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  right: 20px;
  top: -70px;
  display: block;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.curtain-slider .slick-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: auto;
  right: 20px;
  top: -70px;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  margin-right: 50px;
}



.curtain-slider {
  width: 100%;
  height: fit-content;
  margin-top: 30px;
  position: relative;
}

.curtain-detail-text {
  width: 50%;
  display: none;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  padding-left: 20px;
}

.curtain-detail-text h2 {
  color: #cea740;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}



.curtain-detail-text h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-top: 30px;
}

.curtain-detail-text p {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  margin-top: 20px;
}


.text-block-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  padding-left: 20px;
}

.text-block-text h2 {
  color: #cea740;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 20px;
}



.text-block-text h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-top: 30px;
}

.text-block-text :is(p, ul) {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
}


.reguest-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.style-title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.detailed-instruction-title {
  color: #fff;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-top: 20px;
  text-align: center;
}
.detailed-instruction-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../img/ffbg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 0;
  position: relative;
  padding: 0 35px 0 35px;

}

.detailed-instruction-img {
  position: static;
  display: block;
  width: 200%;
  top: 00px;
  left: 0;
  margin-bottom: -70px;
}

.detailed-instruction-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 60px;
  padding: 0 0px;
}


.detailed-instruction-link a {
  display: flex;
  width: 220px;
  padding: 15px;
  align-items: center;
  gap: 43px;
  border-radius: 20px 20px 20px 0px;
  background: #fff;
  box-shadow: 10px 7px 20px 0px rgba(0, 0, 0, 0.1);
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  transition: all 0.5s ease;
}

.contack-variants-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0px;
  margin-top: 120px;
  margin-bottom: 30px;
}
.contack-variants-content {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  background: url(../img/variant.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 0px 17% 0px 0px;
  padding: 30px 20px;
  gap: 30px;


}
.contack-variants-item {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  background:none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: static;
  border-radius: 0;
  justify-content: space-between;
  padding: 0;
}

.cantack-variants-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.contack-variants-form {
  display: flex;
  width: 380px;
  max-width: 100%;
  padding: 30px 15px 20px 15px;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 4px 15px 0px rgba(73, 73, 73, 0.1);
  position: static;
  right: 0px;
  top: auto;
  bottom: 0;
  transform: translateY(0%);
}

.contack-variants-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  flex-shrink: 0;
}



.cornices-type--title {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}


.cornices-type-item a h4 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}


.banner2-text {
  width: 65%;
  height: 50%;
  display: flex;
  flex-direction: column;
  margin-top: 90px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}



.affiliate-text {
  width: 100%;
  height: fit-content;
  align-items: center;
  justify-content: center;
}

.affiliate-text h3 {
  color: #494949;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
}
.affiliate-text p {
  color: #494949;
  font-family: "Fira Sans Extra Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  margin-top: 30px;
  text-align: center;
  
}

.affiliate-btn {
  display: flex;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  color: #fff;
  text-align: right;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
   transition: all 0.5s ease;
   margin: 30px auto 0 auto;
}

.banner2-container {
  width: 100%;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url(../img/kt.png);
  background-repeat: no-repeat;
  background-size: 90% 70%;
  background-position:top right;
  margin-top: -110px;
}

.banner2-btn {
  margin-top: 20px;
}
.banner2-text {
  width: 65%;
  height: 50%;
  display: flex;
  flex-direction: column;
  margin-top: 0px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.affiliate-program-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* margin-top: -80px; */
}


.a3-img {
  width: 28vw;
  height: 32vw;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.a-elips {
  width: 26vw;
  position: absolute;
  bottom: 22%;
  right: 10%;
}

.a1-img {
  width: 32vw;
  z-index: 1;
}



.a2-img {
  width: 46vw;
  z-index: 1;
}




.contack-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url(../img/bannerbg.png);
  background-repeat: no-repeat;
  margin-top: -110px;
  padding: 0 20px 40px 20px;
  
}

.inerior-catalog-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}


.interior-catalog-btn {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid #e7e2d6;
  background: #fff;
  color: #c9a74f;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transition: all 0.5s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.interior-catalog-card {
  width: 48%;
  height: 490px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ababab;
  transition: all 0.5s ease;
  padding-bottom: 10px;
  margin-bottom: 3%;
}
.populer-catalog-card {
  width: 48%;
  height: 460px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ababab;
  transition: all 0.5s ease;
  padding-bottom: 10px;
  margin-bottom: 3%;
}


.inerior-catalog-text p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
}

.interior-catalog-box {
  width: 100%;
  display: flex;
  gap: 10px;
  margin-top: 30px;
  flex-shrink: 0;
  overflow-x: auto;
}


.populer-title {
  color: #2c2c2c;
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}


.care-text {
  display: flex;
  align-items: center;
  flex-direction:column-reverse;
    gap: 30px;
}

.care-text img {
  width: 100%;
}

.care-text .text {
  width: 100%;
  text-align: center;
}

.care-text1 {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-direction: column-reverse;
}
.care-text1 .text {
  width: 100%;
  text-align: center;
}
.care-text1 img {
  width: 100%;
}
.care-info-item .text-content {
  text-align: center;
}
.select-banner-item h3 {
  color: #2C2C2C;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.select-link {
  display: flex;
  height: 50px;
  padding: 0px 30px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #cea740 9.38%, #b78d20 91.15%), #cea740;
  color: #fff;
  font-family: "Fira Sans Extra Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s ease;
  cursor: pointer;
  margin-top: 40px;
}
.curtian-care-banner {
  width: 100%;
  display: flex;
  padding: 15px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(158, 158, 158, 0.1);
  /* margin-top: -60px; */
}

.care-info-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.care-btn-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.curtian-care-banner h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.form-end-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 0px;
}



.form-end-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-top: 0;
  padding-bottom: 10%;
}
.form-end-img {
  width: 360px;
  height: 300px;
  position: absolute;
 border-radius: 60px 0px 0px 0px;
 overflow: hidden;
  right: 0;
  top: 50px;
}

.form-text {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  gap: 20px;
  margin-top: 40px;
}

.form-text span {
  width: 195px;
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
}
.form-text p {
  width: 195px;
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  margin-top: 0px;
}
.form-end-a {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  transition: all 0.5s ease;
}
.about-banner-text p {
  display: contents;
}
.about-banner-text p br {
  display: none;
}
.about-banner-text h3 {
  margin-bottom: 10px;
}
.about-banner-img-right {
  margin-right: -30px;
  width: 78%;
  margin-top: -11px;
}
.about-banner-img-left {
  width: 42%;
  margin-left: -20px
}
.about-img-right {
    width: 83% !important;
    margin-left: 19px;
    margin-top: -20px;
}
}
@media only screen and (max-width: 550px) {
  .banner-list {
    margin-top: 27vw;
  }
  .banner-title h3 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    padding-right: 20px;
  }
  .banner-title h1 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    padding-right: 20px;
  }
  .banner-title h4 {
    color: #cea740;
    font-family: "Cormorant Garamond";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}
  .banner-img {
    width: 250px;
    height: 290px;
    display: block;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
    border-radius: 30% 0px 0px 0px;
    background: url(../img/bannerr.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: 0;
    top: 20%;
  }
  .catalog-banner .banner-img {
    width: 300px;
    height: 250px;
    display: block;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
    border-radius: 30% 0px 0px 0px;
    background: url(../img/banner2.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: 0;
    top: 25%;
  }
  
.plastic-banner .banner-img {
  width: 300px;
  height: 250px;
  display: block;
  overflow: hidden;
  margin-top: 20px;
  position: relative;
  border-radius: 30% 0px 0px 0px;
  background: url(../img/pbanner.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 25%;
}
  .salon-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-right: 20px;
  }
  .salon-title {
    width: 100%;
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 30px;
  }

  .salon-info {
    width: 50%;
    display: flex;
    gap: 20px;
    align-items: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: none;
    padding: 10px 0px;
    margin-top: 30px;
  }

  .salon-right {
    width: 42vw;
    height: 45vw;
    position: absolute;
    right: 0;
    top: 15%;
    z-index: 1;
}
  .salon-bottom {
    display: flex;
    gap: 30px;
    margin-top: 0px;
    flex-direction: column;
  }
  body:has(.salon-img) {
    background: white;
  }
  .salon-img {
    width: 100%;
    height: auto;
    margin-bottom: -35px;
    position: relative;
    margin-left: -35px;
    box-shadow: unset;
  }
  .salon-elips {
    width: 40vw;
    position: absolute;
    right: 5vw;
    bottom: 40vw;
  }

  .example-button-item {
    width: 100%;
    display: inline-flex;
    height: 45px;
    align-items: center;
    gap: -1px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #e7e2d6;
    margin-top: 30px;
    overflow-y: hidden;
    overflow-x: scroll;
  }
  .examle-title {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-align: center;
    padding: 0px 20px;
  }

  .go-portfolio-page {
    display: inline-flex;
    height: 45px;
    padding: 0px 20px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #cea740;
    color: #cea740;
    font-family: "Fira Sans Extra Condensed";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 20px;
  }

  .get-example-right {
    width: 100%;
    height: 370px;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
    position: relative;
    width: 100%;
    margin-top: 30px;
    overflow: hidden;
  }

  .example-personal-img {
    width: 100%;
    max-height: fit-content;
    height: auto;
    position: absolute;
    top: 0;
  }

  .example-personal {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    position: absolute;
    flex-shrink: 0;
    margin: 0;
    left: 0px;
    bottom: 20px;
    background: linear-gradient(
      84.95deg,
      #3c3c3c 14.4%,
      rgba(53, 43, 31, 0) 78.59%
    );
    padding: 20px 0px 20px 60px;
    z-index: 1;
  }

  .tailor-bg {
    width: 50vw;
    height: 40vw;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
  }

  .tailor-year {
    width: 320px;
    position: absolute;
    right: 0;
    top: 45vw;
  }
  .tailor-card-item {
    display: flex;
    gap: 10px;
    margin-top: 35vw;
    position: relative;
    z-index: 1;
    flex-direction: column;
  }

  .tailor-card-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .tailor-card-img {
    width: 60%;
    height: auto;
    display: block;
    flex-shrink: 0;
    position: relative;
    margin-left: -10px;
  }

  .tailor-card-text {
    width: 40%;
    display: flex;
    flex-direction: column;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-menu-item {
    width: 33%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s linear;
  }

  .footer-menu2 {
    width: 62%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  .footer-menu2-box {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 20px;
  }

  .footer-menu2-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    overflow: hidden;
    height: 0;
    transition: all 0.5s linear;
  }
  .footer-a2 {
    width: 48%;
    /* color: #cea740; */
    font-family: "Fira Sans Extra Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s linear;
  }

  .footer-menu2-item.active {
    height: fit-content;
    margin-top: 15px;
  }
  .footer-menu-btn {
    display: none;
    color: #9f9d97;
    text-align: start;
    align-items: center;
    justify-content: space-between;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(171, 171, 171, 1);
    padding-bottom: 10px;
    transition: all 0.5s ease;
  }

  .footer-menu-btn::after {
    content: "\f107";
    display: block;
    font-family: FontAwesome;
    font-size: 15px;
    transition: all 0.5s ease;
  }

  .footer-menu-btn.active::after {
    transform: rotate(180deg);
  }
  .footer-menu-btn.active {
    color: rgba(44, 44, 44, 1);
  }

  .menu2-btn {
    display: flex;
    color: #9f9d97;
    text-align: start;
    align-items: center;
    justify-content: space-between;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(171, 171, 171, 1);
    padding-bottom: 10px;
    transition: all 0.5s ease;
  }

  .menu2-btn::after {
    content: "\f107";
    display: block;
    font-family: FontAwesome;
    font-size: 15px;
    transition: all 0.5s ease;
  }

  .menu2-btn.active::after {
    transform: rotate(180deg);
  }
  .menu2-btn.active {
    color: rgba(44, 44, 44, 1);
  }

  .footer-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #9f9d97;
    font-family: "Fira Sans Extra Condensed";
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .interior-card {
    width: 275px;
    height: 480px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ababab;
    transition: all 0.5s ease;
    margin-bottom: 4%;
  }
  .interior-card-img {
    width: 100%;
    height: 250px;
    flex-shrink: 0;
    border-radius: 10px;
  }

  .curtians-catalog-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    grid-auto-rows: 60vw;
    margin-top: 20px;
  }
  .pagination-content {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
  }

  .pagination-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ababab;
    font-family: "Fira Sans Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    transition: all 0.5s linear;
  }
  .page-name {
    color: #cea740;
    font-family: "Fira Sans Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .curtians-catalog-card {
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border-radius: 20px 20px 20px 0px;
    transition: all 0.5s linear;
    position: relative;
    padding: 5px 5px 5px 10px;
    box-sizing: border-box;
    transition: all 0.5s linear;
    box-shadow: 0 45px 25px -20px rgba(0, 0, 0, 0.25);
  }
  .curtians-catalog-card-link {
    width: 100%;
    height: fit-content;
    display: flex;
    padding: 5px 5px 5px 10px;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 10px 0px;
    background: #fff;
    backdrop-filter: blur(2px);
    transition: all 0.5s linear;
    color: #222;
    font-family: "Fira Sans Extra Condensed";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    text-transform: uppercase;
  }
  .curtians-catalog-card-link svg {
    width: 26px;
    height: 26px;
  }

.curtain-samples-container{
  display: none;
}


.curtain-samples-mobil-container{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-top: 80px;

}


.curtain-samples-mobil-content{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;

}
.curtain-samples-text {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 20px;
}
.curtain-samples-mobil-slider-box{
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
}
.curtain-samples-mobil-slider{
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 30px;
}

.curtain-samples-mobil-slider-item{
  width: 100%;
  height: 450px;

}
.curtain-samples-mobil-slider-item a{
  width: 100%;
  height: 100%;
  display: block;
}
.curtain-samples-mobil-slider-item a img{
  width: 100%;
  height: 100%;
  display: block;
}


.curtain-samples-mobil-slider .slick-prev,
.curtain-samples-mobil-slider .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 3;
}
.curtain-samples-mobil-slider .slick-prev{
  left: 20px;
}
.curtain-samples-mobil-slider .slick-next{
  right: 20px;
}

.curtain-samples-mobil-slider .slick-prev:before, 
.curtain-samples-mobil-slider .slick-next:before {
 display: none;
}

.curtain-samples-mobil-slider .slick-prev svg path,
.curtain-samples-mobil-slider .slick-next svg path {
  fill: #fff;;
}

.curtain-samples-mobil-slider .slick-prev:hover svg rect,
.curtain-samples-mobil-slider .slick-next:hover svg rect {
  stroke: #b78d20; /* Hover durumunda renk */
}

#slider-counter{
  width:fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom:10px;
  z-index: 5;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
linear-gradient(0deg, #A4A4A4, #A4A4A4);
padding: 5px 10px;
gap: 3px;
border-radius: 10px;
color: #fff;
font-family: "Fira Sans Extra Condensed";
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 110%;

}



.curtain-slider-all-title {
  width: 100%;
  display: flex;
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  padding: 0 5%;
}

.curtain-detail-text {
  width: 50%;
  display: none;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  padding-left: 20px;
}

.text-block-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  padding-left: 20px;
}


.curtain-detail-content {
  width: 100%;
  height: fit-content;
  display: flex;
  position: relative;
  align-items: center;
  padding: 80px 0;
  
}
.text-block-content {
  width: 100%;
  height: fit-content;
  display: flex;
  position: relative;
  align-items: center;
  padding: 80px 0;
}
.reguest-card {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.reguest-card:nth-child(even){
  flex-direction: row-reverse;
}

.reguest-card img {
  width: 50%;
  height: 100%;
  border-radius: 0px 70px 0px 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



.reguest-card-text{
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.reguest-card h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  display: block;
}
.reguest-card p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  /* display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; */
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}




.style-card h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin-top: 10px;
}

.style-card p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 10px;
}

.detailed-instruction-link {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}


.detailed-instruction-link a {
  display: flex;
  width:315px;
  padding: 20px;
  align-items: center;
  gap: 43px;
  border-radius: 20px 20px 20px 0px;
  background: #fff;
  box-shadow: 10px 7px 20px 0px rgba(0, 0, 0, 0.1);
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  transition: all 0.5s ease;
}






.contack-variants-form h3 {
  width: 100%;
  color: #2c2c2c;
  text-align: center;
  font-family: "Fira Sans Extra Condensed";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}

.catalog2-catalog-card {
  width: 48%;
  height: 60vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border-radius: 20px 20px 20px 0px;
  transition: all 0.5s linear;
  position: relative;
  padding: 5px 5px 5px 10px;
  box-sizing: border-box;
  transition: all 0.5s linear;
  box-shadow: 0 45px 25px -20px rgba(0, 0, 0, 0.25);
  margin-bottom: 4%;
}


.catalog2-catalog-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.cornices-type-item a {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4%;
}
.cornices-img-box {
  width: 100%;
  height: 27vw;
  background: #f3ebd8;
  transition: all 0.5s linear;
  border-radius: 9px 80px 0px 0px;
}

.a3-img {
  width: 27vw;
  height: 35vw;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}


.a-elips {
  width: 31vw;
  position: absolute;
  bottom: 22%;
  right: 10%;
}


.about-info-img-item {
  width: 100%;
  height: 100%;
  display: block;
  margin-top: 40px;
}
.about-info-text p {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-top: 10px;
}

.about-info-text {
  width: 65%;
  display: flex;
  flex-direction: column;
}


.contack-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 0px;
  gap: 30px;
}




.contack-tel a {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.5s ease;
}


.care-date img{
  width: 20px;
}


.care-info-box span {
    color: #ababab;
    font-family: "Fira Sans Condensed";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}



.curtian-care-banner h2 {
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-align: center;
}


.curtian-care-banner-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.curtian-care-banner {
  width: 100%;
  display: flex;
  padding: 15px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(158, 158, 158, 0.1);
  margin-top: 30px;
}

.curtian-care-top-img {
  width: 100%;
  height: 50vw;
}
}

@media only screen and (max-width: 450px) {
  .menu-item.active {
    width: 100%;
    height: 100dvh;
  }
  .footer-top-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 35px;
  }

  .footer-form-btn {
    display: flex;
    height: 40px;
    padding: 0px 20px;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #c5c5c5;
    color: #6d6d6d;
    text-align: right;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s linear;
    margin-right: 0px;
    order: 2;
  }

  .footer-tel {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
    order: 1;
    font-size: 23px;
  }
  .footer-contack {
    display: flex;
    align-items: center;
    gap: 10px;
    order: 3;
  }
  .footer-menu-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s linear;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-menu-btn {
    display: flex;
    color: #9f9d97;
    text-align: start;
    align-items: center;
    justify-content: space-between;
    font-family: "Fira Sans Extra Condensed";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(171, 171, 171, 1);
    padding-bottom: 10px;
    transition: all 0.5s ease;
  }

  .footer-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    overflow: hidden;
    height: 0;
    transition: all 0.5s ease;
  }

  .footer-menu.active {
    height: fit-content;
    margin-top: 20px;
  }

  .footer-menu2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  .footer-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .footer-a {
    width: 48%;
    color: #6d6d6d;
    font-family: "Fira Sans Extra Condensed";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    transition: all 0.5s linear;
  }

  .footer-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-items: center;
    color: #9f9d97;
    font-family: "Fira Sans Extra Condensed";
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .banner-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 27vw;
    order: 3;
  }
  .curtians-model-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 20px;
  }

  .curtians-model-title p {
    color: #494949;
    font-family: "Cormorant Garamond";
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  .curtians-model-title p span {
    color: #cea740;
    font-family: "Cormorant Garamond";
    font-size: 25px;
  }

  .salon-container {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-top: 80px;
    padding: 0;
    padding-left: 20px;
  }

  .salon-title {
    width: 100%;
    color: #2c2c2c;
    font-family: "Cormorant Garamond";
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 30px;
    max-width: 270px;
    /* text-align: center; */
  }
  .salon-title br {
    display: unset;
  }

  .salon-info img {
    display: none;
  }

  .example-container {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
  }

  .interior-card-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
  }

  .interior-card {
    width: 390px;
    height: 570px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ababab;
    transition: all 0.5s ease;
    margin-bottom: 4%;
  }

  .interior-card-img {
    width: 100%;
    height: 350px;
    flex-shrink: 0;
    border-radius: 10px;
  }

  .tailor-year {
    width: 80%;
    position: absolute;
    right: 0;
    top: 25%;
  }


  .salon-right {
    width: 42vw;
    height: 50vw;
    position: absolute;
    right: 0;
    top: 20%;
    z-index: 1;
}


.salon-elips {
  width: 45vw;
  position: absolute;
  right: 5vw;
  bottom: 40vw;
}
.curtain-detail-bg {
  width: 100%;
  height: 100%;
  display: flex;
  flex-shrink: 0;
  position: absolute;
  right: -50px;
  align-items: center;
}
.curtain-detail-bg-img1 {
  width: 100%;
  height: 70%;
}


.curtain-detail-btn1 {
  right: 0px;
  top: 17%;
  z-index: 4;

}
.curtain-detail-btn2 {
  right: 00px;
  top: 45%;
  z-index: 4;

}
.curtain-detail-btn3 {
  right: 0px;
  top: 73%;
  z-index: 4;
}
.curtain-detail-text {
  width: 100%;
  display: none;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  padding-left: 20px;
  padding: 30px 20px 80px 20px;
  background: linear-gradient(
      90deg,
      #fff 0%,
      rgba(250, 248, 246, 0.22) 100%
    );
}
.text-block-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  padding-left: 20px;
  padding: 30px 20px 80px 20px;
  background: linear-gradient(
      90deg,
      #fff 0%,
      rgba(250, 248, 246, 0.22) 100%
    );
}

.curtain-detail-content {
  width: 100%;
  height: fit-content;
  display: flex;
  position: relative;
  align-items: center;
  padding: 0;
}
.text-block-content {
  width: 100%;
  height: fit-content;
  display: flex;
  position: relative;
  align-items: center;
  padding: 0;
}
.curtain-detail-text h2 {
  color: #cea740;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.curtain-detail-text h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-top: 30px;
  padding-right: 25%;
}
.curtain-detail-text p {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  margin-top: 20px;
  padding-right: 25%;
}

.text-block-text h2 {
  color: #cea740;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.text-block-text h3 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin-top: 30px;
  padding-right: 25%;
}
.text-block-text :is(p, ul) {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  padding-right: 25%;
  max-height: 140px;
}

.style-card {
  width: 100%;
  height: 285px;
  display: flex;
  flex-direction: column;
  margin-bottom: 2%;
}


.contack-variants-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
}




.contack-variants-text p {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-top: 30px;
  text-align: center;

}


.curtain-samples-mobil-slider-item {
  width: 100%;
  height: 350px;
}



.catalog-banner .banner-img {
  width: 300px;
  height: 250px;
  display: block;
  overflow: hidden;
  margin-top: 20px;
  position: relative;
  border-radius: 30% 0px 0px 0px;
  background: url(../img/banner2.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 30%;
}


.plastic-banner .banner-img {
  width: 300px;
  height: 250px;
  display: block;
  overflow: hidden;
  margin-top: 20px;
  position: relative;
  border-radius: 30% 0px 0px 0px;
  background: url(../img/pbanner.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 30%;
}

.about-info-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.a3-img {
display: none;
}

.a1-img {
  display: none;

}

.about-info-container {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0px;
  margin-top: 96px;
}

.a2-img {
  width: 100%;
  z-index: 1;
}



.about-info-text h2 {
  color: #2c2c2c;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
  text-align: center;
}
.about-info-text p {
  color: #2c2c2c;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-top: 10px;
  text-align: center;

}


.a-elips {
  width: 40vw;
  position: absolute;
  bottom: 30%;
  right: -15vw;
}


.contack-text-top {
  display: flex;
  gap: 30px;
  flex-direction: column;
}


.contack-text-bottom {
  display: flex;
  gap: 30px;
  flex-direction: column;
}

.contack-tel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contack-mail {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.contack-adres {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.contack-time {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}



.contack-map {
  width: 100%;
  height: 60vw;
  position: relative;
}

.contack-info-img {
  width: 100%;
  height: 60vw;
}



.contack-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url(../img/bannerbg.png);
  background-repeat: no-repeat;
  margin-top: -110px;
  padding: 0 20px 40px 20px;
  
}


.interior-catalog-card {
  width: 90%;
  height: 440px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ababab;
  transition: all 0.5s ease;
  padding-bottom: 10px;
  margin-bottom: 3%;
}
.interior-catalog-card-item {
  width: 100%;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.populer-catalog-card-item {
  width: 100%;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.interior-catalog-item.active {
  display: flex;
  align-items: center;
}
.interior-catalog-item {
  display: none;
  flex-direction: column;
  transition: all 0.5s ease;
  margin-top: 40px;
  align-items: center;
}
.interior-catalog-card {
  width: 60%;
  height: 400px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ababab;
  transition: all 0.5s ease;
  padding-bottom: 10px;
  margin-bottom: 30px;
}


.populer-catalog-card {
  width: 90%;
  height: 390px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ababab;
  transition: all 0.5s ease;
  padding-bottom: 10px;
  margin-bottom: 30px;
}


.a-img {
  width: 100%;
  /* height: 350px; */
  height: 40%;
  display: flex;
  /* overflow: hidden; */
  border-radius: 10px;
}


.select-banner-item h3 {
  color: #2C2C2C;
  font-family: "Cormorant Garamond";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
}

.care-info-item p {
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}

.select-banner-item {
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.care-sosial {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}


.form-text p {
  width: 100%;
  color: #717171;
  font-family: "Fira Sans Extra Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  margin-top: 160px;
}



.form-end-img {
  width: 360px;
  height: 300px;
  position: absolute;
  border-radius: 60px 0px 0px 0px;
  overflow: hidden;
  right: -20%;
  top: 20px;
}

.form-text {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  gap: 20px;
  margin-top: 60px;
}





}

@media only screen and (max-width: 390px) {
  .header-wp {
    display: inline-flex;
    height: 40px;
    padding: 0px 10px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid #c5c5c5;
    transition: all 0.5s ease;
  }

  .header-wp svg {
    width: 20px;
    height: auto;
  }

  .salon-info {
    width: 65%;
    display: flex;
    gap: 20px;
    align-items: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: none;
    padding: 10px 0px;
    margin-top: 30px;
  }
  .salon-text {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
  }

  .salon-right {
    width: 35vw;
    height: 65vw;
    position: absolute;
    right: 0;
    top: 37vw;
    z-index: 1;
  }

  .salon-elips {
    width: 40vw;
    position: absolute;
    right: 5vw;
    bottom: 40vw;
  }
  .example-personal-img {
    width: 100%;
    max-height: fit-content;
    height: auto;
    position: absolute;
    top: 0;
  }
  .tailor-year {
    width: 80%;
    position: absolute;
    right: 0;
    top: 52vw;
  }

  .interior-card {
    width: 90%;
    height: 450px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ababab;
    transition: all 0.5s ease;
    margin-bottom: 4%;
  }

  .interior-card-img {
    width: 100%;
    height: 220px;
    flex-shrink: 0;
    border-radius: 10px;
  }

  .interior-catalog-card {
    width: 90%;
    height: 380px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ababab;
    transition: all 0.5s ease;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
  .a-img {
    width: 100%;
    height: 170px;
    display: flex;
    /* overflow: hidden; */
    border-radius: 10px;
}


.populer-catalog-card {
  width: 90%;
  height: 380px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ababab;
  transition: all 0.5s ease;
  padding-bottom: 10px;
  margin-bottom: 30px;
}



















}

@media only screen and (max-width: 550px) {

  .curtain-detail-content {
    display: block;
  }
  .curtain-detail-text {
    display: flex;
    padding-block: 0;
  }
  .curtain-detail-text h2 {
    display: none;
  }
  .curtain-detail-text p {
    display: none;
  }
  .curtain-detail-text.active h2 {
    display: flex;
  }
  .curtain-detail-bg {
    top: 0;
  }
  .curtain-detail-btn {
    display: none;
  }
  .curtain-detail-text h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 110%;
  }
}


/* !MEDIA START END */