@font-face {
  font-family: "Geologica";
  src: url("../fonts/ofont.ru_Geologica.ttf");
  font-weight: normal;
  font-style: normal;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  z-index: 2;
  background-image: url(../resources/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Geologica", sans-serif;
}

.header, .footer {
  min-height: 100px;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 20px 0;
}

.section-outer {
  display: flex;
  justify-content: space-between;
}

.section-inner {
  width: 80%;
  margin: 0 auto;
}

.header {
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2);
}
.header .section-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.header_title {
  pointer-events: none;
  font-size: 36px;
}
.header .header-nav ol {
  display: flex;
  list-style: none;
  gap: 20px;
}
.header .header-nav_link {
  font-size: 18px;
}

.main {
  min-height: 80%;
  flex-grow: 1;
  padding: 40px 0;
}
.main:has(.sliders-container) .section-inner {
  width: 1000px;
}
.main a {
  color: #fff;
  word-wrap: break-word;
}
.main-content {
  margin: 0 auto;
  width: 100%;
}
.main-panel {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 15px 25px;
  border-radius: 10px;
  color: #fff;
}
.main-panel_p {
  font-size: 24px;
}
.main-panel_title {
  text-align: center;
  font-size: 28px;
  margin: 10px 0;
}
.main_p {
  text-align: left;
  font-size: 24px;
  color: #fff;
}
.main_link::before {
  background-color: #fff !important;
  height: 3px !important;
}
.main_title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
}
.main_title__light {
  color: #fff;
}
.main_subtitle {
  font-size: 32px;
  margin-bottom: 25px;
}
.slider__2 .main_subtitle, .main .slider__2 .slider_btn {
  color: #fff;
}
.main .sliders-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.main .slider {
  text-align: center;
  width: 100%;
}
.main .slider-container {
  height: 800px;
  width: 100%;
  background-image: url(../resources/slider1/1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 20px;
}
.main .slider__2 .slider-container {
  background-image: url(../resources/slider2/1.jpg);
}
.main .slider_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100px;
  width: 100px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 50px;
  transition: 0.3s;
}
.main .slider_btn__right {
  right: -200px;
}
.main .slider_btn__left {
  left: -200px;
}

.footer {
  box-shadow: 0px -3px 4px rgba(0, 0, 0, 0.2);
}
.footer .section-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-contacts {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.footer .footer-contact a {
  text-decoration: none;
}
.footer .footer-contact_img, .footer .footer-contact_tel {
  cursor: pointer;
  height: 70px;
  transition: 0.2s ease-in-out;
}
.footer .footer-contact_tel {
  width: 70px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-contact_tel .fa-phone {
  color: rgba(12, 12, 12, 0.6);
  font-size: 42px;
}

@media (max-width: 700px) {
  .header .section-inner, .header-nav ol {
    flex-direction: column;
  }
  .header-nav {
    width: 100%;
  }
  .header-nav_link {
    font-size: 32px !important;
  }
  .header-nav ol {
    gap: 10px !important;
  }
  .main .section-inner {
    width: 100%;
  }
  .header-nav-item {
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border: 2px solid rgba(0, 0, 0, 0.2);
  }
  .slider-container {
    height: 500px !important;
  }
}
@media (max-width: 1400px) {
  .main:has(.sliders-container) .section-inner {
    width: 90%;
  }
  .main:has(.sliders-container) .section-inner .slider_btn__right {
    right: 0;
  }
  .main:has(.sliders-container) .section-inner .slider_btn__left {
    left: 0;
  }
}
@media (hover: hover) {
  .__line-hover {
    position: relative;
  }
  .__line-hover::before {
    position: absolute;
    left: 50%;
    height: 2px;
    width: 0;
    transition: 0.5s;
    background-color: black;
    top: 100%;
    content: "";
  }
  .__line-hover:hover:before {
    left: 0;
    width: 100%;
  }
  .footer-contact_img:hover, .footer-contact_tel:hover {
    transform: scale(1.2);
  }
  .slider_btn:hover {
    box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4);
  }
}/*# sourceMappingURL=style.css.map */