@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #333333;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 80px 0;
}

.layout_padding2 {
  padding: 60px 0;
}

.layout_padding2-top {
  padding-top: 60px;
}

.layout_padding2-bottom {
  padding-bottom: 60px;
}

.layout_padding-top {
  padding-top: 80px;
}

.layout_padding-bottom {
  padding-bottom: 80px;
}

h1,
h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #333333;
}

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.heading_container h2 {
  position: relative;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 700;
}
.heading_container h2 span {
  color: #FFB600;
}
.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}
.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: #FFB600;
}

.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
}

/* header section */
.hero_area {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
}

.bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bg-box::before {
  content: "";
  display: block;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.5;
}

.sub_page .hero_area {
  min-height: auto;
}
.sub_page .hero_area .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sub_page .hero_area .bg-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right top;
     object-position: right top;
}

.header_section {
  padding: 15px 0;
}
.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.navbar-brand span {
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
}
.navbar-brand img {
  height: 48px;
}

.custom_nav-container {
  padding: 0;
}
.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #FFB600;
}

.custom_nav-container .nav_search-btn {
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  color: #ffffff;
  margin: 0 10px;
}
.custom_nav-container .nav_search-btn:hover {
  color: #FFB600;
}

.user_option {
  display: flex;
  justify-content: start;
  gap: 5px;
}
.user_option a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: #ffffff;
  font-size: 16px;
}
.user_option a:hover {
  color: #FFB600;
}
.user_option .cart_link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.user_option .cart_link svg {
  width: 17px;
  height: auto;
  fill: #ffffff;
  margin-bottom: 2px;
}
.user_option .cart_link:hover svg {
  fill: #FFB600;
}
.user_option .order_online {
  display: inline-block;
  padding: 8px 30px;
  background-color: #FFB600;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  border: none;
}
.user_option .order_online:hover {
  background-color: rgb(204, 145.6, 0);
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
}
.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  transition: all 0.3s;
}
.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}
.custom_nav-container .navbar-toggler[aria-expanded=true] {
  transform: rotate(360deg);
}
.custom_nav-container .navbar-toggler[aria-expanded=true] span {
  transform: rotate(45deg);
}
.custom_nav-container .navbar-toggler[aria-expanded=true] span::before, .custom_nav-container .navbar-toggler[aria-expanded=true] span::after {
  transform: rotate(90deg);
  top: 0;
}

/* end header section */
/* slider section */
.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding: 60px 0;
}
.slider_section .row {
  align-items: center;
}
.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}
.slider_section .detail-box {
  color: #ffffff;
  margin-bottom: 60px;
}
.slider_section .detail-box h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}
.slider_section .detail-box p {
  font-size: 16px;
}
.slider_section .detail-box a {
  display: inline-block;
  padding: 10px 40px;
  background-color: #FFB600;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}
.slider_section .detail-box a:hover {
  background-color: rgb(204, 145.6, 0);
}
.slider_section .img-box img {
  width: 100%;
}
.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  justify-content: flex-start;
  align-items: center;
}
.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}
.slider_section .carousel-indicators li.active {
  width: 16px;
  height: 16px;
  background-color: #FFB600;
}

/* end slider section */
/* offer section */
.offer_section {
  position: relative;
  padding-top: 60px;
}
.offer_section .box {
  display: flex;
  align-items: center;
  margin-top: 30px;
  border-radius: 5px;
  padding: 20px 15px;
  background-color: #333333;
  color: #ffffff;
}
.offer_section .box .img-box {
  width: 150px;
  min-width: 150px;
  height: 150px;
  margin-right: 15px;
  position: relative;
  transition: all 0.3s;
  border-radius: 5px;
  overflow: hidden;
}
.offer_section .box .img-box img {
  width: 100%;
  transition: all 0.3s;
}
.offer_section .box .detail-box h5 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0;
}
.offer_section .box .detail-box h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin: 10px 0;
}
.offer_section .box .detail-box h6 span {
  font-size: 2rem;
  font-weight: 700;
}
.offer_section .box .detail-box a {
  display: inline-block;
  padding: 10px 30px;
  background-color: #FFB600;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  border: none;
}
.offer_section .box .detail-box a:hover {
  background-color: rgb(204, 145.6, 0);
}
.offer_section .box .detail-box a svg {
  width: 18px;
  height: auto;
  margin-left: 5px;
  fill: #ffffff;
}
.offer_section .box:hover .img-box img {
  transform: scale(1.05);
}

/* end offer section */
/* food section */
.food_section .filters_menu {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 30px 0 20px 0;
}
.food_section .filters_menu li {
  padding: 8px 20px;
  cursor: pointer;
  border-radius: 5px;
}
.food_section .filters_menu li.active {
  background-color: #FFB600;
  color: #ffffff;
}
.food_section .box {
  position: relative;
  margin-top: 20px;
  background-color: #ffffff;
  border-radius: 5px;
  color: #333333;
  overflow: hidden;
  background: #ffffff;
}
.food_section .box .img-box {
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  margin: -1px;
  padding: 20px;
}
.food_section .box .img-box img {
  max-width: 100%;
  max-height: 140px;
  transition: all 0.3s;
}
.food_section .box .detail-box {
  padding: 20px;
}
.food_section .box .detail-box h5 {
  font-weight: 600;
}
.food_section .box .detail-box p {
  font-size: 15px;
}
.food_section .box .detail-box h6 {
  margin-top: 10px;
}
.food_section .box .options {
  display: flex;
  justify-content: space-between;
}
.food_section .box .options a {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #FFB600;
  display: flex;
  justify-content: center;
  align-items: center;
}
.food_section .box .options a svg {
  width: 18px;
  height: auto;
  fill: #ffffff;
}
.food_section .box:hover .img-box img {
  transform: scale(1.05);
}
.food_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.food_section .btn-box a {
  display: inline-block;
  padding: 10px 40px;
  background-color: #FFB600;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  border: none;
}
.food_section .btn-box a:hover {
  background-color: rgb(204, 145.6, 0);
}

/* end food section */
/* about section */
.about_section {
  background: #333333;
  color: #ffffff;
}
.about_section .row {
  align-items: center;
}
.about_section .img-box {
  position: relative;
  display: flex;
  justify-content: center;
}
.about_section .img-box img {
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 2;
}
.about_section .detail-box h2 {
  color: #ffffff;
}
.about_section .detail-box p {
  margin-top: 15px;
}
.about_section .detail-box a {
  display: inline-block;
  padding: 10px 40px;
  background-color: #FFB600;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}
.about_section .detail-box a:hover {
  background-color: rgb(204, 145.6, 0);
}

/* end about section */
/* book section */
.book_section {
  position: relative;
}
.book_section .heading_container {
  margin-bottom: 25px;
}
.book_section .form_container .form-control {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 20px;
  padding-left: 20px;
  border: 1px solid #ccc;
  outline: none;
  color: #333333;
  border-radius: 5px;
  box-shadow: none;
}
.book_section .form_container .form-control::-moz-placeholder {
  color: #666666;
}
.book_section .form_container .form-control::placeholder {
  color: #666666;
}
.book_section .form_container .nice-select .current {
  font-size: 16px;
}
.book_section .form_container button {
  margin-top: 15px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 40px;
  background-color: #FFB600;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  border: none;
}
.book_section .form_container button:hover {
  background-color: rgb(204, 145.6, 0);
}
.book_section .map_container {
  width: 100%;
  height: 300px;
  border-radius: 5px;
  overflow: hidden;
}
.book_section .map_container #googleMap {
  height: 100%;
  min-height: 100%;
  width: 100%;
}

/* end book section */
/* client section start */
.client_section .heading_container {
  margin-bottom: 25px;
}
.client_section .box {
  display: flex;
  flex-direction: column;
  margin: 15px;
}
.client_section .box .img-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  margin-top: 25px;
}
.client_section .box .img-box img {
  border-radius: 5px;
  border: 3px solid #FFB600;
  position: relative;
}
.client_section .box .img-box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 15px;
  height: 15px;
  background-color: #FFB600;
  transform: rotate(45deg) translateX(-50%);
}
.client_section .box .detail-box {
  background-color: #f5f5f5;
  color: #333333;
  padding: 20px;
  border-radius: 5px;
}
.client_section .box .detail-box h6 {
  font-weight: 600;
  font-size: 18px;
  margin: 10px 0 5px 0;
}
.client_section .box .detail-box p {
  margin-bottom: 0;
  font-size: 15px;
  margin-bottom: 10px;
}
.client_section .owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding: 0 15px;
}
.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  background-color: #FFB600;
  color: #ffffff;
  outline: none;
  font-size: 20px;
  margin: 0 5px;
  border-radius: 5px;
}

/* end client section */
/* contact section */
.contact_section .heading_container {
  margin-bottom: 40px;
}
.contact_section .form_container .form-group {
  margin-bottom: 20px;
}
.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  padding-left: 20px;
  background-color: transparent;
  border: 1px solid #ccc;
  outline: none;
  color: #333333;
  border-radius: 5px;
}
.contact_section .form_container input::-moz-placeholder {
  color: #666666;
}
.contact_section .form_container input::placeholder {
  color: #666666;
}
.contact_section .form_container input.message-box {
  height: 100px;
  border-radius: 5px;
}
.contact_section .form_container .btn-box {
  display: flex;
  justify-content: center;
}
.contact_section .form_container button {
  margin-top: 10px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 40px;
  background-color: #FFB600;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  border: none;
}
.contact_section .form_container button:hover {
  background-color: rgb(204, 145.6, 0);
}

/* end contact section */
/* footer section */
.footer_section {
  background-color: #333333;
  color: #ffffff;
  padding: 60px 0 30px 0;
  text-align: start;
}
.footer_section h4 {
  font-size: 24px;
}
.footer_section h4,
.footer_section .footer-logo {
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}
.footer_section p {
  color: #cccccc;
}
.footer_section .footer-col {
  margin-bottom: 25px;
}
.footer_section .footer_contact .contact_link_box {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.footer_section .footer_contact .contact_link_box .footer_info_list_item {
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 0.25rem 0;
  font-size: 16px;
}
.footer_section .footer_contact .contact_link_box .footer_info_list_item i {
  width: 1rem;
  height: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5rem;
}
.footer_section .footer_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}
.footer_section .footer_contact .contact_link_box a i {
  margin-right: 5px;
}
.footer_section .footer_contact .contact_link_box a:hover {
  color: #FFB600;
}
.footer_section .footer-logo {
  display: block;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
}
.footer_section .footer_social {
  display: flex;
  justify-content: start;
  margin-top: 15px;
  margin-bottom: 10px;
}
.footer_section .footer_social a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: #ffffff;
  margin: 0;
  margin-right: 5px;
  font-size: 16px;
}
.footer_section .footer_social a:hover {
  color: #FFB600;
}
.footer_section .footer-info {
  text-align: center;
  margin-top: 20px;
}
.footer_section .footer-info p {
  color: #ffffff;
  margin: 0;
}
.footer_section .footer-info p a {
  color: inherit;
}

/* end footer section */
/* Project Detail Section */
.project_detail_section {
  background-color: #ffffff;
}

.project_hero {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}

.project_hero .hero_image {
  width: 100%;
  height: 100%;
  position: relative;
}

.project_hero .hero_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project_hero .hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.project_hero .hero_title {
  position: absolute;
  width: 100%;
  bottom: 30px;
  color: #ffffff;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.project_hero .hero_title h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.project_info {
  padding-top: 20px;
  padding-bottom: 20px;
}

.project_description {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
}

.project_description p {
  margin-bottom: 15px;
}

/* Meta Information */
.project_meta {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 5px;
  margin-top: 30px;
}

.project_meta .meta_item {
  margin-bottom: 20px;
}

.project_meta .meta_item h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFB600;
  margin-bottom: 8px;
  font-weight: 700;
}

.project_meta .meta_item p {
  font-size: 16px;
  color: #777777;
  margin: 0;
  font-weight: 200;
  text-transform: uppercase;
}

/* Gallery Grid */
.project_gallery {
  padding-top: 10px;
  padding-bottom: 20px;
}

.project_gallery .heading_container {
  margin-bottom: 30px;
}

.gallery_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery_item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: #f5f5f5;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery_item:hover {
  transform: translateY(-3px);
}

.gallery_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
}

.gallery_item:hover img {
  transform: scale(1.03);
}

/* Back Button */
.btn_box {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 60px;
}

.btn_back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background-color: #FFB600;
  color: #ffffff;
  border-radius: 5px;
  transition: all 0.3s;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.btn_back:hover {
  background-color: rgb(204, 145.6, 0);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .project_hero {
    height: 50vh;
    min-height: 350px;
  }
  .project_hero .hero_title h1 {
    font-size: 2.3rem;
  }
  .gallery_grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .gallery_grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media (max-width: 576px) {
  .project_hero {
    height: 40vh;
    min-height: 300px;
  }
  .project_hero .hero_title {
    bottom: 15px;
  }
  .project_hero .hero_title h1 {
    font-size: 1.8rem;
  }
  .project_meta {
    padding: 20px;
  }
  .gallery_grid {
    grid-template-columns: 1fr;
  }
}
/* ==============================================================
   PROJECTS LIST (без конфликтов с Project Details)
   ============================================================== */
.prj-list-section {
  background-color: #ffffff;
  padding: 30px 0;
}

.prj-list-heading h2 {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.prj-list-heading span {
  color: #FFB600;
}

.prj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.prj-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 1/1;
}

.prj-thumb {
  width: 100%;
  height: 100%;
  position: relative;
}

.prj-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.prj-card:hover .prj-thumb img {
  transform: scale(1.1);
}

.prj-thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.prj-card-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #ffffff;
  z-index: 2;
}

.prj-card-info h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.prj-location {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.prj-card-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

/* Responsive */
@media (max-width: 991px) {
  .prj-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .prj-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .prj-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
/* ==============================================================
   HOME: Featured Projects (без конфликтов)
   ============================================================== */
.home-prj-section {
  background: #ffffff;
  padding: 80px 0;
}

.home-prj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.home-prj-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1/1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.home-prj-card:hover {
  transform: translateY(-8px);
}

.home-prj-thumb {
  width: 100%;
  height: 100%;
  position: relative;
}

.home-prj-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.home-prj-card:hover .home-prj-thumb img {
  transform: scale(1.1);
}

.home-prj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
}

.home-prj-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #ffffff;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.home-prj-card:hover .home-prj-info {
  transform: translateY(0);
}

.home-prj-info h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.home-prj-location {
  font-size: 0.95rem;
  opacity: 0.9;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.home-prj-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.navbar-collapse .btn-sm {
  margin-right: 2rem;
}

.col-md-7, .col-lg-6 {
  min-height: 32vh;
}

/* Responsive */
@media (max-width: 1100px) {
  .col-md-7, .col-lg-6 {
    min-height: 38vh;
  }
}
@media (max-width: 991px) {
  .home-prj-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .navbar-collapse {
    display: flex;
    flex-direction: column;
  }
  .navbar-collapse .btn-sm {
    margin-left: 0.75rem;
    margin-right: 0;
  }
}
@media (max-width: 800px) {
  .col-md-7, .col-lg-6 {
    min-height: 43vh;
  }
}
@media (max-width: 576px) {
  .home-prj-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .home-prj-info h3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 400px) {
  .col-md-7, .col-lg-6 {
    min-height: 48vh;
  }
}
.language-switcher a {
  margin: 0 8px;
  text-decoration: none;
  color: #666;
}

.language-switcher a.active {
  font-weight: bold;
  color: #000;
  text-decoration: underline;
}

/* Скрываем все пункты меню по умолчанию */
.navbar-nav .nav-item {
  display: none !important;
}

/* Показываем только нужные */
body.en .show-en {
  display: block !important;
}

body.ru .show-ru {
  display: block !important;
}

body.kk .show-kk {
  display: block !important;
}

body.zh-CN .show-zh {
  display: block !important;
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: rgba(0, 0, 0, 0) !important;
}

.btn-sm, .btn-group-sm > .btn {
  font-size: 1rem;
}

body.en .project-home, body.kk .project-home, body.ru .project-home, body.zh-CN .project-home {
  display: block !important;
}

.project_desc_group {
  margin-top: 24px;
}

.project_desc_group_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.project_desc_column {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.project_desc_item {
  margin-bottom: 6px;
}

.project_info .project_desc_group {
  padding: 10px 0;
}

.photo-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10050;
}

.photo-modal.is-active {
  display: flex;
}

/* backdrop ниже окна просмотра */
.photo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10060; /* меньше, чем inner */
}

/* окно просмотра выше backdrop */
.photo-modal-inner {
  /* максимальные границы */
  max-width: 90vw;
  max-height: 90vh;
  /* динамический размер — JS выставит width / height */
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 10070; /* больше, чем backdrop */
}

/* кнопки / навигация выше всего */
.photo-modal-close,
.photo-modal-nav {
  z-index: 10080;
  position: absolute;
}

/* картинка — абсолютная, управляемая JS (натуральный размер в px) */
.photo-modal-img {
  position: absolute;
  left: 0;
  top: 0;
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  -o-object-fit: none;
     object-fit: none;
  transform-origin: 0 0; /* удобнее для вычислений */
  will-change: transform;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}

.photo-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 10090;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.photo-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10090;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
}

.photo-modal-prev {
  left: 20px;
}

.photo-modal-next {
  right: 20px;
}

.photo-modal-nav:focus,
.photo-modal-close:focus {
  outline: none;
}

.location-image {
  width: 100%;
  margin: 20px 0;
  border-radius: 5px;
  overflow: hidden;
  background: #f5f5f5;
  /* заставим картинку красиво обрезаться */
  aspect-ratio: 16/9;
}

.location-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.location-image:hover img {
  transform: scale(1.03);
}

html, body {
  height: 100%;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1 0 auto;
}

.footer_section {
  flex-shrink: 0;
}

/* ===== CERTIFIED ===== */
.certified-grid {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.certified-item img {
  max-width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* ===== PRINCIPLES ===== */
.principles-grid {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.principle-card {
  text-align: center;
  max-width: 240px;
}

.principle-icon img {
  height: 60px;
  margin-bottom: 20px;
}

/* ===== KPI ===== */
.kpi-section {
  background: #2f2f2f;
  color: #fff;
  padding: 80px 0;
}
.kpi-section h2 {
  color: #fff;
  text-align: center;
}
.kpi-section .kpi-wrapper {
  display: flex;
  flex-direction: column;
}

.kpi-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}
.kpi-grid .kpi-item {
  display: flex;
  gap: 1rem;
}
.kpi-grid .kpi-item img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 3rem;
}
.kpi-grid .kpi-item .kpi-info .kpi-value {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  text-align: left;
}
.kpi-grid .kpi-item .kpi-info .kpi-label {
  display: block;
  text-align: left;
}

/* ===== CLIENTS ===== */
.clients-section h2 {
  text-align: center;
  width: 100%;
}

.clients-grid {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin: 40px 0;
}
.clients-grid .client-logo {
  position: relative;
}
.clients-grid .client-logo .client-link {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.clients-grid .client-logo .client-link:hover {
  background-color: rgba(251, 183, 1, 0.3333333333);
  transition: 0.3s;
  border-radius: 10px;
}
.clients-grid img {
  width: 100%;
  max-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0.5rem;
}

@media (max-width: 1100px) {
  .principle-card {
    text-align: center;
    max-width: 380px;
  }
}
.about-section {
  padding: 80px 0;
}

.about-section--light {
  background: #ffffff;
}

.about-section--dark {
  background: #333333;
  color: #ffffff;
}
.about-section--dark h2 {
  color: #ffffff;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Адаптив */
@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  .about-image {
    margin-top: 30px;
  }
}
.goto {
  display: none;
}

/* =================== */
body.en .goto_en {
  display: block !important;
}

body.ru .goto_ru {
  display: block !important;
}

body.kk .goto_kk {
  display: block !important;
}

body.zh-CN .goto_zh-cn {
  display: block !important;
}

@media (max-width: 1200px) {
  .about-section h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  .about-section .row {
    flex-direction: column !important;
  }
  .about-section .col-md-6 {
    width: 100%;
    max-width: 100%;
  }
  .about-image {
    margin-top: 30px;
  }
  .detail-box {
    text-align: left;
  }
  .about-section .row {
    display: flex;
    flex-direction: column;
  }
  .about-section .detail-box {
    order: 1;
  }
  .about-section .about-image {
    order: 2;
  }
}
@media (max-width: 576px) {
  .about-section {
    padding: 40px 0;
  }
  .about-section h2 {
    font-size: 1.25rem;
  }
  .detail-box p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .about-image img {
    border-radius: 6px;
  }
  .goto {
    margin-top: 20px;
  }
  .btn_back {
    justify-content: center;
  }
}
.goto {
  text-align: center;
  margin-top: 40px;
}

.about-section + .about-section {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.about-section--dark + .about-section--light {
  border-top: none;
}

/* Секция слайдера */
.slider_section {
  padding: 45px 0;
}
.slider_section .slider-row .video-col {
  order: 1;
  margin-bottom: 30px;
}
.slider_section .slider-row .carousel-col {
  order: 2;
}
@media (min-width: 768px) {
  .slider_section .slider-row .video-col {
    order: 2;
    margin-bottom: 0;
  }
  .slider_section .slider-row .carousel-col {
    order: 1;
  }
}

/* Видео блок (YouTube версия) */
.video-wrapper {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background: #000;
}
.video-wrapper .embed-responsive {
  padding-bottom: 56.25%;
  height: 0;
}

/* Карусель и фиксированная высота текста */
.carousel-col .detail-box {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 10px;
  padding-top: 70px;
}
.carousel-col .detail-box h1 {
  font-size: 2.5rem !important;
  font-weight: bold;
  margin-bottom: 15px;
}
.carousel-col .detail-box p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
  word-wrap: break-word;
  overflow: visible;
}
.carousel-col .carousel-indicators {
  position: relative;
  margin-top: 20px;
  margin-left: 0;
  justify-content: flex-start;
}
.carousel-col .carousel-indicators li {
  background-color: #FFB600;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.5;
}
.carousel-col .carousel-indicators li.active {
  opacity: 1;
}

@media (max-width: 1200px) {
  .carousel-col .detail-box {
    height: 280px;
    text-align: left;
    padding: 20px 0;
    padding-top: 90px;
  }
}
@media (max-width: 770px) {
  .carousel-col .detail-box {
    height: 290px;
    min-height: 290px;
    padding-top: 10px;
  }
  .slider-row {
    display: flex;
    flex-direction: column-reverse;
  }
  .slider-row .carousel-col, .slider-row .video-col {
    width: 100%;
    max-width: 540px;
  }
  .carousel-indicators {
    justify-content: center !important;
  }
}
@media (max-width: 767px) {
  .slider-row {
    flex-direction: column;
  }
}
@media (max-width: 430px) {
  .principles-section h2, .certified-section h2, .kpi-section h2, .clients-section h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 380px) {
  .slider-row {
    flex-direction: column;
  }
}

.location_desc_group_title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.location_desc_column {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.location_desc_item {
    margin-bottom: 6px;
}

.location_info .location_desc_group {
    padding: 10px 0;
}

.location_info {
    padding: 10px 0;
}

.location_info .col-md-12 {
    padding: 0;
}

/* ==============================================================
   АДАПТАЦИЯ СТРАНИЦЫ ДЕТАЛЕЙ ЛОКАЦИИ (LOCATION DETAIL)
   ============================================================== */

/* Исправление для изображений локации, чтобы они не вылезали за контейнер */
.location-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

/* Адаптация сетки характеристик (desc_list) */
@media (max-width: 768px) {
    /* Заставляем колонки (col-md-6) вставать друг под друга */
    .location_desc_group .row {
        display: flex;
        flex-direction: column;
        margin: 0; /* Убираем возможные отрицательные отступы bootstrap */
    }

    .location_desc_group .col-md-6 {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }

    /* Уменьшаем отступы секций на мобильных */
    .layout_padding2 {
        padding: 30px 0;
        max-width: 95%;
    }

    /* Адаптация заголовков */
    .project_detail_section h1 {
        font-size: 1.8rem;
        word-wrap: break-word; /* Чтобы длинные названия не ломали верстку */
    }

    /* Убираем фиксированную ширину меток strong в списках, если она была */
    .location_desc_item {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .location_desc_item strong {
        display: block; /* Лейбл будет над значением на узких экранах */
        margin-bottom: 2px;
    }
}

/* Исправление для карты (чтобы не ломала ширину страницы) */
#locationMap {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Центрирование кнопок навигации на мобильных */
@media (max-width: 576px) {
    .btn_box.goto {
        text-align: center;
    }
    
    .btn_back {
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 1100px) {
    .prj-list-section {
        padding: 40px 0;
        }
    .layout_padding2 {
        padding: 10px 0 !important;
        }
    .goto {
        margin: 30px 0;
    }
}
    
@media (max-width: 770px) {
    .prj-list-section {
        padding: 25px 0;
        }
    .layout_padding2 {
        padding: 0 0 !important;
        }
    }
/*# sourceMappingURL=style.css.map */