/* Your custom CSS here */



/*  Example: how to connect your font / Образец: как подключить свой шрифт (укажите свои названия)  */
/*
@font-face {
	font-family: 'Crimson Text';
	font-style: normal;
	font-weight: normal;
	src: local('Crimson Text'),
	url('../fonts/crimson text/crimson_text_regular.woff2') format('woff2'),
	url('../fonts/crimson text/crimson_text_regular.woff') format('woff'),
	url('../fonts/crimson text/crimson_text_regular.ttf') format('ttf'),
	url('../fonts/crimson text/crimson_text_regular.eot') format('eot');
	}

	*/

.column-5 .col-md-1  {
  width: 0%;
}
.column-5 .col-md-2 {
width: 20%;
}

.col-xs-five,
.col-sm-five,
.col-md-five,
.col-lg-five {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-five {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-five {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-five {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-five {
        width: 20%;
        float: left;
    }
}

.text-justify{
  text-align: justify;
}
hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  
}
#service_order ul li{
  padding: 0;
}
section.page {
    padding-top: 30px;
}

.feature-box.feature-box-7 .box {
    color: #ededed;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}

.zoomable {
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.3s ease;
  border: 2px solid #ddd;
}

.zoomable:hover {
  transform: scale(1.05);
}

/* Полноэкранный оверлей */
.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Изображение в полноэкранном режиме */
.fullscreen-img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* Крестик (кнопка закрытия) */
.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10000;
  transition: background-color 0.3s ease;
}

.close-button:hover {
  background-color: rgba(255, 255, 255, 1);
}

/* Символ крестика внутри кнопки */
.close-button::before,
.close-button::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: #333;
  transform-origin: center;
}

.close-button::before {
  transform: rotate(45deg);
}

.close-button::after {
  transform: rotate(-45deg);
}

#concept .card-columns .card {
  margin-bottom: 0;
  display: flex;
  border: 0px none;
}
@media (min-width: 576px) {

#concept .card-columns { column-count: 1;}

}

@media (min-width: 768px) {

 #concept .card-columns { column-count: 2;}

}

@media (min-width: 992px) {
  #concept .card-columns {column-count: 4;}
}


