.content_cont {
    padding: 0;
    margin-left: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service_container {
    flex-direction: column;
    align-items: center;
    margin-top: 75px;
}

.services_content {
    margin-left: 30px;
    margin-right: 30px;
}

.img_cont {
    position: relative;
    width: 100%;
    max-height: 500px;
    height: 100%;
    overflow: hidden;
    animation: slideDownFadeIn 1s ease-out forwards;
    opacity: 0;
    transform: translateY(-50px);
}

.top_img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Затемнение */
.img_cont::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* прозрачное затемнение */
    z-index: 1;
}

/* Контейнер для текста */
.text_overlay {
    position: absolute;
    max-width: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #dfdfdf;
    text-align: center;
    padding: 1rem;
}

@keyframes slideDownFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.text_overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.text_overlay p {
    font-size: 1.2rem;
}

.hr_line, .hr_line_buttom {
    border: none;
    height: 2px;
    width: 60%;
    background-color: #a38b00;
}

.hr_line_buttom {
    margin-top: 50px;
}

.about_container, .advantages_container {
  display: flex;
  flex-direction: column;
}

.about_container {
  align-items: center;
  margin-top: 50px;
  margin-bottom:50px;
}

.advantages_container {
  margin-bottom:50px;
}

.about_text {
  margin-top: 25px;
  margin-left: 15%;
  margin-right: 15%;
  text-align: center;
}

.advantages_content_container {
  display: flex;
  justify-content: start;
  margin-top: 25px;

}

.ul-custom {
    background-color: rgba(255, 255, 255, 0.2);
}

.advantages_title {
  text-align: center;
}

.icon_cont {
  max-width: 50px;
}

.hr_line_advantages {
    border: none;
    height: 1px;
    width: 100%;
    background-color: #2a2a2a;
}

.contact_title_cont {
  display: flex;
  margin-left: 15%;
  margin-bottom: 10px;
}

.contact_icon {
  max-height: 50px;
  margin-right:25px;
}

@media (max-width: 767.98px) {
  .content_cont {
    margin-left: 0;
  }

  .text_overlay {
    width: 100%;
  }

  .about_title {
    margin-left: 3%;
    margin-right: 3%;
    text-align: center;
  }

  .advantages_title{
    margin-bottom: 0 !important;
  }

  .advantages_content_container {
    align-items: center;
    margin-left: 15%;
    margin-right: 5%;
  }

  .contact_title_cont {
    margin-left: 28%;
  }

  .contact_icon {
    margin-right: 5px;
    max-height: 40px;
  }
}
