@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto+Mono:wght@400;500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: #000000;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  margin: 0 auto;
  padding: 0 25px;
}

.intro {
  font-family: "Unbounded", sans-serif;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2vh 4vw;
  min-height: 20vh;
  row-gap: 1.5vh;
  z-index: 10;
  box-sizing: border-box;
  justify-content: flex-start;
}

.intro p {
  display: flex;
  align-self: flex-start;
  text-transform: uppercase;
  font-size: clamp(45px, 1.5vw, 16px);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  width: 90%;
}

.team-link {
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  padding-right: 15px;
  position: relative;
}

.slideshow {
  height: calc(100vh - 80px);
  background: #121212;
  margin-top: 50px;
  width: 80%;
  display: flex;
  align-self: self-end;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.slideshow.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
  will-change: opacity, transform;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: calc(100vh - 80px);
  object-fit: cover;
  filter: brightness(65%);
}

.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.743);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  z-index: 1000;
  border-bottom: 1px solid rgb(29, 29, 29);
}

#logomenu{
  display: flex;
  justify-self: center;
  width: 100%;
}

.logo-desktop {
  display: block;
}

.logo-mobile {
  display: none;
}

.ameneties {
  display: flex;
  align-items: center;
}

.navigation {
  display: flex;
}

#menu {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#menu li {
  padding: 5px 15px;
}

#menu li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 13px;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

#menu li a:hover {
  color: #cacaca;
}

.mobile-social-media {
  display: flex;
  gap: 15px;
  margin-left: 10px;
}

.mobile-social-media a {
  text-decoration: none;
  font-size: 18px;
  color: rgb(255, 255, 255);
  transition: color 0.15s ease;
}

.mobile-social-media a:hover {
  color: #cacaca;
}

.hamburger-menu {
  display: none;
  align-items: center;
  gap: 10px;
}

.hamburger-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 13px;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: transform 0.3s ease;
  will-change: transform;
}

.hamburger-icon.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger-icon.active span:nth-child(2) {
  transform: rotate(-45deg) translate(3.5px, -4px);
}

.menu-overlay {
  position: fixed;
  bottom: -100vh; /* Changed from -100% to ensure it moves completely off-screen */
  left: 0;
  width: 100%;
  min-height: 100dvh; /* Use dynamic viewport height for better mobile compatibility */
  background-color: rgb(0, 0, 0);
  z-index: 1001;
  padding: 5px 30px;
  display: flex;
  flex-direction: column;
  transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0; /* Start with zero opacity when closed */
  will-change: bottom, opacity;
  overflow-y: auto;
}

.menu-overlay.active {
  bottom: 0;
  opacity: 1
}

.close-menu {
  background: none;
  border: none;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: right;
  padding: 10px 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-menu:hover {
  color: #a0a0a0;
}

.menu-overlay .ameneties {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.menu-overlay #menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
  text-align: center;
}

.menu-overlay #menu li {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(10px);
  animation: slideInUp 0.2s ease-out forwards;
}

.menu-overlay #menu li:nth-child(1) {
  animation-delay: 0.05s;
}

.menu-overlay #menu li:nth-child(2) {
  animation-delay: 0.1s;
}

.menu-overlay #menu li:nth-child(3) {
  animation-delay: 0.15s;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-overlay #menu li a {
  text-decoration: dashed;
  color: #ffffff;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 4px;
  transition: color 0.2s ease;
  display: block;
  line-height: 1.5;
}

.menu-overlay #menu li a:hover {
  color: #a0a0a0;
}

.menu-overlay .menu-social-section {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  text-align: center;
}

.menu-overlay .mobile-social-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.menu-overlay .mobile-social-media a {
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #e0e0e0;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-overlay .mobile-social-media a:hover {
  color: #ffffff;
}

.menu-overlay .studio-info {
  display: flex;
  flex-direction: column;
  color: #e0e0e0;
  padding-top: 20px;
  row-gap: 20px;
  text-align: center;
}

.menu-overlay .studio-info .phone-numbers .contactveneciya {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
}

.menu-overlay .studio-info .phone-numbers .contactveneciya a {
  font-family: 'Montserrat', sans-serif;
  padding: 0px 4px;
  font-size: 14px;
  color: #e0e0e0;
  transition: color 0.2s ease;
}

.menu-overlay .studio-info .phone-numbers .contactveneciya a:hover {
  color: #ffffff;
}

.menu-overlay .studio-info a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-decoration: none;
  color: #e0e0e0;
  transition: color 0.2s ease;
}

.menu-overlay .studio-info a:hover {
  color: #ffffff;
}

.menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.menu li {
  margin-bottom: 30px;
}

.menu li a {
  text-decoration: none;
  color: rgb(121, 121, 121);
  font-size: 12px;
  letter-spacing: 2px;
  transition: color 0.1s;
}

.menu li a:hover {
  color: #000;
}

.social-media {
  display: flex;
  margin-top: 3px;
  margin-right: 15px;
}

.social-media a {
  text-decoration: none;
  font-size: 15px;
  color: rgb(170, 170, 170);
  transition: color 0.1s;
}

.social-media :first-child {
  padding-right: 10px;
}

.social-media a:hover {
  color: #000;
}

.navbar {
  background: #a8a8a8;
  display: flex;
  padding: 1px;
  border-radius: 5px;
  border: 2px solid rgb(147, 147, 147);
  align-self: flex-start;
  height: auto;
}

.navbar .language-selector {
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
}

.navbar .language-selector option {
  background: #a8a8a8;
  color: #fff;
}

.bottom {
  display: flex;
  margin-top: 20px;
}

.header {
  font-size: 48px;
  margin-bottom: 45px;
}

.form-group input,
.form-group textarea {
  background-color: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(80, 80, 80, 0.637);
  color: #000000;
}

.content {
  display: flex;
  flex: 1;
  height: auto;
  overflow: hidden;
}

#beginning{
  font-size: 15px;
  padding-bottom: 20px;
  text-align: end;
}

.catch{
  margin: 80px 0px 100px;
}

#textpart{
  margin-bottom: 50px;
}

.textphilosophy{
  font-family: "Playfair Display", serif;
  font-size: 25px;
  margin: 20px 150px;
  line-height: 35px;
}

.services {
  display: flex;
  width: 200px;
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.services ul {
  list-style: none;
  padding: 15px;
}

.services li {
  padding: 15px 0;
  cursor: pointer;
  color: rgb(121, 121, 121);
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateX(10px);
  animation: slideInLeft 0.3s ease-out forwards;
}

.services li:nth-child(1) {
  animation-delay: 0.05s;
}

.services li:nth-child(2) {
  animation-delay: 0.1s;
}

.services li:nth-child(3) {
  animation-delay: 0.15s;
}

.services li:nth-child(4) {
  animation-delay: 0.2s;
}

.middle-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  background: #222222;
}

.slider-container {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
  -webkit-user-drag: none;
}

.slider-images {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.4s ease-out;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.slider-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 20;
}

.slider-arrow {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  background: rgba(62, 62, 62, 0.261);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  outline: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.097);
}

.slider-arrow:hover {
  background: rgba(34, 34, 34, 0.392);
}

.slider-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.slider-arrow.left {
  margin-left: 10px;
}

.slider-arrow.right {
  margin-right: 10px;
}

.slider-arrow i {
  font-size: 16px;
}

::-webkit-scrollbar {
  display: none;
}

.thumbnails {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 15px;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.thumbnails::-webkit-scrollbar {
  height: 8px;
}

.thumbnails::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.thumbnail-container {
  position: relative;
  width: auto;
  height: auto;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(10px);
  animation: slideInRight 0.4s ease-out forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  display: block;
}

.thumbnail-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 95.5%;
  background: rgb(0 0 0 / 38%);
  padding: 4px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #333;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.material-info {
  font-weight: 500;
  color: rgb(255, 255, 255);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50%;
}

.price-info {
  font-weight: 600;
  color: #ffffff;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.description {
  display: flex;
  flex-direction: column;
  align-items: start;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.4s ease-out forwards;
  width: 600px;
  gap: 25px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.description h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.description .subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: .1px solid #fff;
}

.description .desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.6;
}

.description .advantages-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.description .advantages {
  list-style: none;
  padding-left: 0;
}

.description .advantages li {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.8;
  position: relative;
  padding-left: 20px;
}

.description .advantages li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #cccccc;
}

.description .application {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #cccccc;
}

.description .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  background: #ffffff;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 0.5px;
  margin-left: auto;
}

.footer {
  background-color: #ffffff;
  padding: 40px 20px;
  color: #000000;
  font-size: 14px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-contact {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact-item:first-child {
  margin: 20px 0px;
}

.contact-item i {
  font-size: 18px;
  color: #000000;
}

.contact-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
}

.contact-item a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #000000;
}

.footer-bottom {
  margin: 20px;
  width: auto;
  display: flex;
  flex-direction: column;
}

.footer-bottom p {
  display: flex;
  text-align: center;
  margin: 3px 0;
  font-size: 12px;
  color: #000000;
  justify-content: center;
}

.footer-bottom a {
  font-weight: bold;
  margin-left: 3px;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #505050;
}

article{
  margin-top: 100px;
  background-color: #000000;
}

.section {
  padding: 240px 20px 40px;
}

.section h2 {
  font-family: "Unbounded", sans-serif;
  font-weight: 250;
  letter-spacing: 8px;
  border-bottom: 0.2px solid rgb(62, 62, 62);
  padding-bottom: 20px;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 35px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #222;
  transform: translateX(-50%);
  transition: width 0.6s ease-out;
  will-change: width;
}

.section h2.visible::after {
  width: 120px;
}

article .container .section h2 {
  font-family: "Unbounded", sans-serif;
  text-align: center;
  font-size: 38px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
}

#amenetiesdesc{
  font-family: "Playfair Display", serif;
  font-size: 27px;
  margin: 100px 95px 0px;
  line-height: 35px;
}

.textafteritem{
  margin: 40px 10px 150px;
}

@keyframes expandLine {
  to {
    width: 120px;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card {
  border: 1px solid #ccc;
  padding: 10px;
  height: 180px;
}

.features,
.principles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.feature,
.principle {
  width: 150px;
  height: 100px;
  border: 1px solid #ccc;
  padding: 10px;
}

.principle-row {
  display: flex;
  align-items: center;
  background-color: #000000;
  border-radius: 30px;
  border: 1px solid rgb(63, 63, 63);
  padding: 10px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 450px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.principle-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.principle-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  text-align: left;
  padding: 0 20px;
  height: 200px;
  width: 370px;
}

.principle-text h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.principle-text p {
  font-size: 14px;
  font-weight: 400;
  color: #cccccc;
  margin: 0;
}

.vertical-divider {
  width: 0.5px;
  height: 100%;
  background-color: #3e3e3e;
  border: none;
  margin: 0 20px;
}

.principle-icon {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  font-size: 50px;
  color: #ffffff;
}

.principle-icon i.fas.fa-lock {
  font-size: 60px;
  color: #ffffff;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 20px;
}

.feature {
  height: auto;
  background-color: #000000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.075);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
  border: none;
  border-radius: 20px;
  border: 1px solid rgb(63, 63, 63);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature i {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 20px;
}

.feature p {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.form {
  background-color: #222222;
}

.form input {
  margin: 10px;
  padding: 10px;
  width: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

article .container .item {
  width: 50%;
  height: auto;
  min-height: 400px;
  margin: 65px auto;
  border-radius: 0;
  position: relative;
  opacity: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.109);
}

article .container .item.visible {
  opacity: 1;
  transform: translateY(0);
}

article .container .item .info {
  display: flex;
  flex-direction: column;
  border: .5px solid rgb(56, 56, 56);
  width: 100%;
  height: 100%;
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

article .container .item:hover .info {
  opacity: 1;
}

article .container .item .description {
  padding: 30px;
  width: 100%;
}

.language-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0px 15px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.language-toggle:hover {
  opacity: 0.8;
}

.language-icon {
  margin-right: 8px;
  font-size: 15px;
}

.language-label {
  font-size: 15px;
  user-select: none;
}

.menu-overlay .language-wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
  z-index: 1000;
}

.menu-overlay .language-icon {
  color: #fff;
}

.menu-overlay .language-label {
  color: #fff;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.contact-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form {
  max-width: 600px;
  width: 100%;
}

.phone {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  gap: 20px;
}

.contact-form h1 {
  font-family: "Unbounded", sans-serif;
  font-weight: 250;
  text-align: center;
  letter-spacing: 8px;
  margin: 120px 20px 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(64, 64, 64);
  font-size: 28px;
}

.contact-form a {
  text-decoration: none;
  font-weight: 500;
  color: #ffffff;
  font-size: 14px;
  transition: .2s;
}

.contact-form a:hover {
  color: #a0a0a0;
}

.form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.form-group {
  width: 48%;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
}

button {
  background: #000000;
  color: #fff;
  padding: 15px 20px;
  border: 1px solid rgb(49, 49, 49);
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  text-transform: uppercase;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.footer-social-links a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-social-links a:hover {
  color: #000000;
}

.ruble {
  font-family: 'Arial', 'Roboto', sans-serif;
}

article .container .section h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 25px;
  letter-spacing: 8px;
  font-weight: 250;
  color: #ffffff;
}

@media (max-width: 800px) {
  .team-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-self: flex-start;
    font-size: clamp(0.7rem, 2.2vw, 0.4rem);
    order: 1;
    margin-bottom: 1vh;
    padding-top: 0.5vh;
  }

  .intro {
    display: flex;
    flex-direction: column;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1vh 4vw;
    min-height: 20vh;
    row-gap: 1.5vh;
    z-index: 10;
    box-sizing: border-box;
    justify-content: flex-start;
  }
  
  .slide img{
    height: calc(100vh - 250px);
  }

  .intro p {
    display: flex;
    align-self: flex-start;
    text-transform: uppercase;
    font-size: clamp(1.375rem, 3.5vw, 3.0rem);
    font-weight: 350;
    color: #fff;
    margin: 0;
    width: 90%;
  }

  .catch{
  margin: 20px 0px 40px;
}

#textpart{
  margin-bottom: 50px;
}

.textphilosophy{
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin: 20px 40px 90px;
  line-height: 35px;
}

#beginning{
  text-align: start;
}

#amenetiesdesc{
  font-size: 22px;
  margin: 100px 0px 0px;
}

  .mobile-header {
    padding: 15px 25px;
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
    filter: brightness(1.2);
  }

  .hamburger-menu {
    display: flex;
  }

  .hamburger-icon span {
    background-color: #ffffff;
  }

  .ameneties {
    display: none;
  }

  .menu-overlay {
    display: flex;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
  }

  .menu-overlay .close-menu,
  .menu-overlay #menu li a,
  .menu-overlay .mobile-social-media a,
  .menu-overlay .studio-info a,
  .menu-overlay .language-label,
  .menu-overlay .language-icon {
    color: #e0e0e0;
  }

  .menu-overlay #menu li a:hover,
  .menu-overlay .mobile-social-media a:hover {
    color: #a0a0a0;
  }

  .container {
    flex-direction: column;
    align-items: center;
  }

  .content {
    margin-top: 0;
    flex-direction: column;
    height: auto;
    margin-left: 0;
    background-color: #1a1a1a;
    padding-bottom: 150px;
  }

  .slideshow {
    height: calc(100vh - 250px);
    margin-top: 30px;
  }

    .slider-container {
      width: 50%;
      height: 100%;
    }

    .description {
      width: 50%;
    }

    .section {
      padding: 100px 20px 70px;
    }

    article .container .item {
      width: 100%;
      flex-direction: column;
    }

    article .container .item .info {
      flex-direction: column;
    }

    article .container .item .description {
      width: 100%;
      padding: 50px 20px;
    }

    article .container .item .slider-container {
      width: 100%;
      height: 50vh;
    }

    .form-row {
      flex-direction: column;
    }

    .form-group {
      width: 100%;
      margin-bottom: 20px;
    }

    .form-group.full-width {
      width: 100%;
    }

    .contact-form h1 {
      margin: 40px 20px 20px;
    }

    .principle-row {
      width: 100%;
      max-width: 100%;
      flex-direction: column;
      height: auto;
      padding: 20px;
    }

    .principle-text {
      width: 100%;
      height: auto;
      text-align: center;
      padding: 0;
    }

    .vertical-divider {
      display: none;
    }

    .principle-icon {
      margin-top: 20px;
    }

    .features {
      gap: 15px;
    }

    .feature {
      width: 40%;
      padding: 20px;
    }

    .footer-contact {
      gap: 20px;
    }

    .contact-item {
      margin: 10px 0;
    }

    .slideshow {
      width: 100%;
      align-self: flex-end;
    }

    @media (max-width: 600px) {
      .intro p {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
      }

      .description h2 {
        font-size: 24px;
      }

      .description .subtitle {
        font-size: 12px;
      }

      .description .desc,
      .description .application,
      .description .advantages li {
        font-size: 14px;
      }

      .description .price {
        font-size: 18px;
      }

      .feature {
        width: 100%;
      }

      .principle-row {
        padding: 15px;
      }

      .principle-text h3 {
        font-size: 18px;
      }

      .principle-text p {
        font-size: 12px;
      }

      .principle-icon {
        font-size: 40px;
      }

      .menu-overlay #menu li a {
        letter-spacing: 5px;
        font-weight: 300;
      }

      .menu-overlay .mobile-social-media a {
        font-size: 14px;
      }

      .menu-overlay .studio-info a {
        font-size: 12px;
      }

      .slider-container {
        height: 40vh;
      }
    }

    @media (max-width: 400px) {

      .intro p {
        font-size: clamp(1.8rem, 3.5vw, 2rem);
      }

      .team-link {
        font-size: 8px;
      }

      .section {
        padding: 80px 10px 40px;
      }

      .description h2 {
        font-size: 20px;
      }

      .description .price {
        font-size: 16px;
      }

      .contact-form h1 {
        font-size: 24px;
      }
    }
  }