* {
  box-sizing: border-box;
}

body {
  font-family: "Libre Baskerville", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}

a {
  transition: 0.8s;
}
a:hover {
  opacity: 0.8;
  transition: 0.8s;
}

.button {
  width: auto;
  position: relative;
  padding: 15px 40px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #EDE0C4 0%, #C4A06A 100%);
  color: #2C1F15;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .button {
    padding: 10px 35px;
    font-size: 16px;
  }
}
.button:before {
  content: "";
  position: absolute;
  border: 1px solid #000;
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
}
@media screen and (max-width: 767px) {
  .button:before {
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
  }
}

.bg_block {
  background-image: url("../image/bg_block.webp");
  background-position: center center;
  background-size: cover;
}

.header {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  background-image: url("../image/footer_bg.webp");
  background-position: center center;
  background-size: cover;
}
.header__logo {
  font-size: 44px;
  color: #EDE0C8;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .header__logo {
    font-size: 34px;
  }
}

.main__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60vh;
  background-image: url("../image/main_banner.webp");
  background-position: left center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .main__wrapper {
    min-height: 70vh;
    background-image: url("../image/main_banner_mobile.webp");
    align-items: flex-end;
  }
}
.main__wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  opacity: 0.4;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main__wrapper:before {
    display: none;
  }
}
.main__wrapper_content {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .main__wrapper_content {
    width: 100%;
    padding-bottom: 20px;
  }
}
.main__wrapper_content .content_title {
  font-size: 66px;
  margin-bottom: 20px;
  color: #EDE0C8;
}
@media screen and (max-width: 767px) {
  .main__wrapper_content .content_title {
    font-size: 44px;
    margin-bottom: 15px;
  }
}
.main__wrapper_content .content_description {
  font-size: 26px;
  margin-bottom: 30px;
  color: #EDE0C8;
}
@media screen and (max-width: 767px) {
  .main__wrapper_content .content_description {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.process {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .process {
    padding: 60px 0;
  }
}
.process__head {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .process__head {
    font-size: 26px;
    margin-bottom: 25px;
  }
}
.process__list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 0 30px;
}
@media screen and (max-width: 992px) {
  .process__list {
    padding: 0;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .process__list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media screen and (max-width: 992px) {
  .process__card {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .process__card {
    margin-bottom: 10px;
  }
}
.process__card_image {
  margin-bottom: 15px;
}
.process__card_image img {
  max-width: 100%;
}
.process__card_title {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2C1F15;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .process__card_title {
    font-size: 18px;
  }
}
.process__card_description {
  font-size: 16px;
  color: #2C1F15;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .process__card_description {
    font-size: 15px;
  }
}

.info {
  padding: 50px 0;
  border-top: 1px solid #2C1F15;
}
@media screen and (max-width: 767px) {
  .info {
    padding: 40px 0;
  }
}
.info__wrapper {
  display: flex;
  justify-content: center;
}
.info__content {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.info__content_title {
  font-size: 32px;
  margin-bottom: 15px;
  color: #2C1F15;
}
@media screen and (max-width: 767px) {
  .info__content_title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 10px;
  }
}

.page {
  flex: 1;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .page {
    padding: 50px 0;
  }
}
.page__content h1 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #2C1F15;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page__content h1 {
    font-size: 28px;
  }
}
.page__content p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
  color: #2C1F15;
}
.page__content p a {
  color: #2C1F15;
}
.page__content p strong {
  font-weight: 700;
}

.footer {
  padding: 40px 0;
  background-image: url("../image/footer_bg.webp");
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 0;
  }
}
.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .footer__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 992px) {
  .footer__nav {
    order: 2;
  }
}
.footer__nav_list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer__nav_list {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav_item {
    margin-bottom: 10px;
  }
}
.footer__nav_item:after {
  content: "|";
  padding: 0 10px;
  color: #EDE0C8;
}
@media screen and (max-width: 767px) {
  .footer__nav_item:after {
    display: none;
  }
}
.footer__nav_item:last-child:after {
  display: none;
}
.footer__nav_item a {
  color: #EDE0C8;
  font-size: 18px;
  text-transform: none;
  text-decoration: none;
}
.footer__name {
  font-size: 44px;
  color: #EDE0C8;
  text-decoration: none;
}
@media screen and (max-width: 992px) {
  .footer__name {
    order: 1;
    font-size: 34px;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */