@charset "UTF-8";
:root {
  --primary-color: #8a6530;
  --secondary-color: #c8a46b;
  --gold-color: #f0b040;
  --text-color: #fff;
  --bg-product-color: #343233;
}

body {
  background-color: #f4f4f4;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header .desktop {
  background: #1a1f24;
  padding: 15px 0;
}
header .desktop .navbar {
  display: flex;
  justify-content: center;
}
header .desktop .navbar .nav-links {
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}
header .desktop .navbar .nav-links .nav-item {
  list-style: none;
  position: relative; /* Для корректного отображения выпадающего меню */
  /* Dropdown styles */
  /* Показываем меню при наведении */
}
header .desktop .navbar .nav-links .nav-item a {
  color: #f0b040;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 0;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
header .desktop .navbar .nav-links .nav-item a:hover {
  color: white;
}
header .desktop .navbar .nav-links .nav-item .dropdown {
  display: none; /* Скрываем меню по умолчанию */
  position: absolute;
  top: 100%;
  left: 0;
  background: #333;
  padding: 10px;
  list-style: none;
  border-radius: 5px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
  width: 200px;
}
header .desktop .navbar .nav-links .nav-item:hover .dropdown {
  display: block;
}
header .desktop .navbar .nav-links .nav-item .dropdown li {
  padding: 10px 0;
  text-align: left;
}
header .desktop .navbar .nav-links .nav-item .dropdown a {
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px;
  display: block;
  transition: background-color 0.3s ease-in-out;
}
header .desktop .navbar .nav-links .nav-item .dropdown a:hover {
  background-color: #f0b040;
}
header .desktop .call-meet button {
  background: #f0b040;
  border: none;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  padding: 10px 20px;
}
@media (max-width: 768px) {
  header .desktop {
    display: none;
  }
}
header .mobile {
  background: var(--bg-product-color);
}
header .mobile .offcanvas {
  background: var(--bg-product-color);
}
header .mobile .nav-item {
  text-align: center;
}
header .mobile .nav-item .nav-link {
  padding: 4px 0;
}
header .mobile .nav-item a {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  margin: 0 10px;
}
header .mobile .mmm {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .mobile .mobile-menu {
  display: flex;
  justify-content: flex-end;
}
header .mobile .mobile-menu button {
  background-color: #f0b040;
}
header .mobile .dropdown-menu {
  display: none;
  padding: 10px 0;
  background: #333;
  color: white;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  list-style: none;
  border-radius: 5px;
}
header .mobile .dropdown-toggle:focus + .dropdown-menu,
header .mobile .dropdown-toggle:active + .dropdown-menu {
  display: block;
}
header .mobile .dropdown-item {
  color: white;
  padding: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: block;
  transition: background-color 0.3s ease-in-out;
}
header .mobile .dropdown-item:hover {
  background-color: #f0b040;
}
@media screen and (min-width: 768px) {
  header .mobile {
    display: none;
  }
}

#slider .slider {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  height: 70vh;
  margin: 0 auto;
  padding: 0;
}
#slider .slider li {
  position: relative;
  background: none no-repeat center/cover;
  min-height: 100%;
  overflow: hidden;
  flex-grow: 1;
  transition: 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
#slider .slider li:hover {
  flex-grow: 5;
}
#slider .slider li:hover h1 {
  transform: rotateZ(0) translateY(0);
}
#slider .slider li:hover p {
  transform: translateY(calc((100% + 2rem) * -1)) rotateZ(0);
}
#slider .slider a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
#slider .slider h1 {
  position: absolute;
  top: 1rem;
  left: 1rem;
  margin: 0;
  font-size: 3rem;
  color: #febb02;
  text-transform: uppercase;
  transform-origin: left top;
  transform: rotateZ(90deg) translateY(-1em);
  font-family: sans-serif;
  transition: 0.25s cubic-bezier(0.35, 0, 0, 1);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
#slider .slider p {
  position: absolute;
  top: 100%;
  right: 1rem;
  left: 1rem;
  padding: 1rem;
  font-family: sans-serif;
  transform-origin: left top;
  transform: translateY(0) rotateZ(90deg);
  transition: 0.5s cubic-bezier(0.35, 0, 0, 1);
  width: 25em;
  color: rgba(0, 0, 0, 0.65);
  background: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  border-radius: 0.25rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
#slider .slider .one {
  background-image: url(https://germanstudio.az/images/1-main.jpg);
}
#slider .slider .one::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  /* background-image: linear-gradient(15deg, #006fbc, rgba(0, 111, 188, 0) 75%, rgba(0, 111, 188, 0) 99%); */
  background-color: #1f1e1c;
  opacity: 0.6;
}
#slider .slider .two {
  background-image: url(https://germanstudio.az/images/garderob.jpg);
}
#slider .slider .two::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  /* background-image: linear-gradient(15deg, #006fbc, rgba(0, 111, 188, 0) 75%, rgba(0, 111, 188, 0) 99%); */
  background-color: #1f1e1c;
  opacity: 0.6;
}
#slider .slider .three {
  background-image: url(https://germanstudio.az/images/tv.jpg);
}
#slider .slider .three::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  /* background-image: linear-gradient(15deg, #006fbc, rgba(0, 111, 188, 0) 75%, rgba(0, 111, 188, 0) 99%); */
  background-color: #1f1e1c;
  opacity: 0.6;
}
#slider .slider .four {
  background-image: url(https://germanstudio.az/images/last.jpg);
}
#slider .slider .four::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  /* background-image: linear-gradient(15deg, #006fbc, rgba(0, 111, 188, 0) 75%, rgba(0, 111, 188, 0) 99%); */
  background-color: #1f1e1c;
  opacity: 0.6;
}
#slider .slider .five {
  background-image: url(https://germanstudio.az/images/german.jpg);
}
#slider .slider .five::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  /* background-image: linear-gradient(15deg, #006fbc, rgba(0, 111, 188, 0) 75%, rgba(0, 111, 188, 0) 99%); */
  background-color: #1f1e1c;
  opacity: 0.6;
}
#slider .slider .six {
  background-image: url(https://germanstudio.az/images/slide-6.jpg?123);
}
#slider .slider .six::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  /* background-image: linear-gradient(15deg, #006fbc, rgba(0, 111, 188, 0) 75%, rgba(0, 111, 188, 0) 99%); */
  background-color: #1f1e1c;
  opacity: 0.6;
}

#product .container,
#blog .container,
#project .container {
  padding: 20px 0;
}
#product .row,
#blog .row,
#project .row {
  margin: 0;
}
#product .col-md-3,
#product .col-6,
#blog .col-md-3,
#blog .col-6,
#project .col-md-3,
#project .col-6 {
  margin: 20px 0;
}
#product .product-title,
#blog .product-title,
#project .product-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  background: #1a1f24;
  padding: 20px 0;
}
#product .product-title h2,
#blog .product-title h2,
#project .product-title h2 {
  color: white;
  margin: 0;
}
#product .product-card,
#blog .product-card,
#project .product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  cursor: pointer;
  height: 100%;
}
#product .product-card:hover,
#blog .product-card:hover,
#project .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
#product .product-card .product-img,
#blog .product-card .product-img,
#project .product-card .product-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
#product .product-card .product-img img,
#blog .product-card .product-img img,
#project .product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
#product .product-card:hover .product-img img,
#blog .product-card:hover .product-img img,
#project .product-card:hover .product-img img {
  transform: scale(1.1);
}
#product .product-card .product-info,
#blog .product-card .product-info,
#project .product-card .product-info {
  padding: 15px;
  text-align: center;
}
#product .product-card .product-info h3,
#blog .product-card .product-info h3,
#project .product-card .product-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}
#product .product-card .product-info p,
#blog .product-card .product-info p,
#project .product-card .product-info p {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}
#product .product-card .product-info button,
#blog .product-card .product-info button,
#project .product-card .product-info .btn-gold {
  background: #f0b040;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
}

#product .btn-gold,
#blog .btn-gold,
#project .btn-gold {
  margin: 40px 0 20px 0;
  text-align: center;
}
#product .btn-gold a,
#blog .btn-gold a,
#project .btn-gold a {
  text-decoration: none;
  background: #1a1f24;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
#product .btn-gold a:hover,
#blog .btn-gold a:hover,
#project .btn-gold a:hover {
  background: #f0b040;
}

#benefits {
  background: #1a1f24;
  color: #fff;
  text-align: center;
  padding: 50px 0;
}
#benefits h2 {
  font-size: 40px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #benefits h2 {
    font-size: 24px;
  }
}
#benefits .benefit-item {
  text-align: center;
  max-width: 180px;
  margin: auto;
}
#benefits .benefit-item .circle {
  width: 150px;
  height: 150px;
  border: 3px solid #f0b040;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin: 0 auto 10px;
}
#benefits .benefit-item p {
  margin: 6px 0 0 0;
  font-size: 18px;
  color: #ddd;
}
#benefits .footer-text {
  margin-top: 30px;
  font-size: 16px;
  color: #bbb;
}

#about-projects {
  background: #f9f9f9;
}
#about-projects .product-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  background: var(--bg-product-color);
  padding: 20px 0;
}
#about-projects .product-title h2 {
  color: white;
  margin: 0;
}
#about-projects .about-text {
  margin: auto;
  text-align: center;
  padding: 40px 0;
}
#about-projects .about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}
#about-projects .btn {
  display: inline-block;
  background: #f0b040;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.footer {
  background: #111;
  color: white;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
}
.footer .footer-section {
  text-align: center;
}
.footer .footer-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.footer .footer-section p {
  font-size: 16px;
  color: #bbb;
}
.footer .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.footer .social-icons a {
  color: white;
  font-size: 22px;
  transition: 0.3s;
}
.footer .social-icons a:hover {
  color: #f0b040;
}
.footer .callback-btn {
  background: #f0b040;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  color: #333;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.footer .callback-btn:hover {
  background: #f0b040;
}
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

#test .flex-container {
  height: 70vh;
  width: 100%;
  display: -webkit-flex;
  /* Safari */
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #test .flex-container {
    flex-direction: column;
  }
}
#test .flex-title {
  color: #f1f1f1;
  position: relative;
  font-size: 40px;
  margin: auto;
  text-align: center;
  transform: rotate(90deg);
  top: 20%;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media screen and (max-width: 768px) {
  #test .flex-title {
    transform: rotate(0deg) !important;
  }
}
#test .flex-about {
  opacity: 0;
  color: #f1f1f1;
  position: relative;
  width: 70%;
  font-size: 20px;
  padding: 5%;
  top: 20%;
  border: 2px solid #f1f1f1;
  border-radius: 10px;
  line-height: 1.3;
  margin: auto;
  text-align: left;
  transform: rotate(0deg);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media screen and (max-width: 768px) {
  #test .flex-about {
    padding: 0%;
    border: 0px solid #f1f1f1;
  }
}
#test .flex-slide {
  -webkit-flex: 1;
  /* Safari 6.1+ */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media screen and (max-width: 768px) {
  #test .flex-slide {
    overflow: auto;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 768px) {
  #test .flex-slide p {
    font-size: 2em;
  }
}
@media screen and (max-width: 768px) {
  #test .flex-slide ul li {
    font-size: 2em;
  }
}
#test .flex-slide:hover {
  -webkit-flex-grow: 3;
  flex-grow: 3;
}
#test .home,
#test .about,
#test .work,
#test .bath,
#test .interior,
#test .contact {
  height: 100vh !important;
  background-position: center center !important;
  background-attachment: fixed !important;
}
#test .home {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://germanstudio.az/images/1-main.jpg);
}
#test .about {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://germanstudio.az/images/garderob.jpg);
}
#test .work {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://germanstudio.az/images/tv.jpg);
}
#test .contact {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://germanstudio.az/images/last.jpg);
}
#test .bath {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://germanstudio.az/images/german.jpg);
}
#test .interior {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(https://germanstudio.az/images/slide-6.jpg?123);
}
@media screen and (min-width: 768px) {
  #test .home {
    -moz-animation: aboutFlexSlide;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: 1;
    -moz-animation-delay: 0s;
    -webkit-animation: aboutFlexSlide;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-delay: 0s;
    animation: aboutFlexSlide;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-delay: 0s;
  }
}
@keyframes aboutFlexSlide {
  0% {
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
  50% {
    -webkit-flex-grow: 3;
    flex-grow: 3;
  }
  100% {
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
}
@media screen and (min-width: 768px) {
  #test .flex-title-home {
    color: #f0b040;
    transform: rotate(90deg);
    top: 15%;
    -moz-animation: homeFlextitle;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: 1;
    -moz-animation-delay: 0s;
    -webkit-animation: homeFlextitle;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-delay: 0s;
    animation: homeFlextitle;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-delay: 0s;
  }
}
@keyframes homeFlextitle {
  0% {
    transform: rotate(90deg);
    top: 15%;
  }
  50% {
    transform: rotate(0deg);
    top: 15%;
  }
  100% {
    transform: rotate(90deg);
    top: 15%;
  }
}
#test .flex-about-home {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  #test .flex-about-home {
    -moz-animation: flexAboutHome;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: 1;
    -moz-animation-delay: 0s;
    -webkit-animation: flexAboutHome;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-delay: 0s;
    animation: flexAboutHome;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-delay: 0s;
  }
}
@keyframes flexAboutHome {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (min-width: 992px) {
  .slider {
    height: 88vh;
  }
}
#product-detail-page {
  padding: 50px 0;
}
#product-detail-page .product-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #333;
}
#product-detail-page .product-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin: 10px 0;
  border-radius: 8px;
}
#product-detail-page .product-description {
  font-size: 16px;
  margin-top: 30px;
  line-height: 1.6;
  text-align: justify;
  color: #555;
}

#products-page {
  /* New styling for the button */
}
#products-page .product-card {
  margin: 20px 0;
  background-color: #333;
  color: #f0b040;
  border: 2px solid #f0b040;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  position: relative; /* Added */
}
#products-page .product-card a {
  text-decoration: none;
  color: black;
}
#products-page .product-card:hover {
  transform: translateY(-10px);
}
#products-page .product-img {
  height: 200px;
  object-fit: cover;
}
#products-page .product-title {
  font-weight: bold;
  font-size: 18px;
}
#products-page .section-title {
  font-weight: bold;
  font-size: 40px;
  color: #333;
}
#products-page .details-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f0b040;
  /* color: white; */
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  display: none; /* Initially hidden */
}
#products-page .product-card:hover .details-btn {
  display: block; /* Show the button when hovering */
}

#partners {
  padding: 40px 0;
}
#partners .title {
  font-weight: bold;
  text-align: center;
}
#partners .partner {
  margin: 10px 0;
}

#contacts i {
  color: var(--gold-color);
}
#contacts button {
  background-color: var(--gold-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}
#contacts .btn-gold {
  width: 100%;
}
#contacts p {
  margin: 24px 0;
}


.btnGold {
  display: blok;
  margin-top: 10px;
background: #f0b040;
color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
a{
color: white;
text-decoration: none;
}
}
a{
text-decoration: none!important;
}