@font-face {
  font-family: 'Avenir';
  src: url('../fonts/Avenir.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Avenir_Next';
  src: url('../fonts/Avenir_Next.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #7b6d62;
}
.btn-color {
  background-color: #a47a57;
  color: #fff;
  border: none;
  padding: 10px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  text-transform: uppercase;
  font-family: 'Avenir', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.btn-color:hover {
  color: #fff;
  background-color: #a47a57;
  opacity: 0.7;
}

.btn-color img {
  height: 23px;
}

.img-slide {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.wrap-slide01 {
  height: 100vh;
  background-color: #a47a57;
}
.wrap-slide01 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.over-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.over-slide .wrap-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0000008c;
  padding: 0px 0 85px;
  /* border-radius: 10px; */
  width: 100%;
  height: 100%;
}
.logo {
  max-width: 1080px;
  width: 100%;
}

.social-contacts {
  display: flex;
  gap: 20px;
}
.social-contacts a {
  text-decoration: none;
  transition: 0.3s ease;
}
.social-contacts a:hover {
  opacity: 0.7;
}
.social-contacts img {
  height: 40px;
  width: 40px;
}
@media (max-width: 768px) {
  .over-slide .wrap-info {
    padding: 0px 0 20px;
  }
  .logo {
    width: 100%;
  }
  .social-contacts {
    gap: 25px;
  }
  .social-contacts img {
    height: 30px;
    width: 30px;
  }

  /* .img-slide {
    width: 100%;
    height: auto;
    object-fit: cover;
  } */

  .btn-color {
    font-size: 12px;
  }
}
