html {
  font-family: "Roboto!";
  box-sizing: border-box;
}
*,
*::after,
*::before {
  box-sizing: inherit;
}
@font-face {
  font-family: "Philosopher";
  src: local("Philosopher");
  src: url(../fonts/Philosopher-Regular.ttf);
}
@font-face {
  font-family: "Roboto!";
  src: local("Roboto");
  src: url("../fonts/Roboto-Regular.eot");
  src: url("../fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Roboto-Regular.woff") format("woff"),
    url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Bold";
  src: url("../fonts/Roboto-Bold.eot");
  src: url("../fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Roboto-Bold.woff") format("woff"),
    url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
body {
  background-color: #ffe2b0;
}
h1 {
  font-family: "Roboto!";
}
.header {
  text-align: center;
  margin-bottom: 20px;
}
.menu__items {
  list-style-type: none;
  text-align: center;
  padding: 5px 20px;
}
.menu__item--list {
  display: inline;
  margin-right: 80px;
}
.menu-container {
  background-color: black;
}
.menu__item--link {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}
.menu__item--link:hover {
  color: greenyellow;
  transition: 0.5s;
}
.menu__item--list:last-child {
  margin-right: 0px;
}
.menu-nav {
  margin-bottom: 20px;
}
.section-about {
  height: 600px;
  background: url(../img/01-Картинка-фона.jpg) center/cover no-repeat;
  position: relative;
  margin-bottom: 100px;
}
.section-about__block {
  width: 420px;
  height: 190px;
  background: linear-gradient(
    180deg,
    rgba(244, 213, 178, 0.8) 0%,
    rgba(234, 156, 65, 0.8) 100%
  );
  position: absolute;
  top: 54%;
  left: 50%;
  padding-top: 15px;
}
.section-about__border {
  width: 390px;
  height: 160px;
  border: 1px solid black;
  margin: 0 auto;
  padding: 17px 0 0 17px;
  text-align: left;
}
.section-about__tittle {
  font-size: 32px;
  margin: 0;
  margin-bottom: 9px;
  font-family: "Philosopher";
}
.section-about__text {
  font-size: 12px;
  margin: 0;
}
.section-description {
  margin-bottom: 80px;
  padding: 0 20px;
}
.section-description__icon-box {
  display: flex;
  margin-bottom: 80px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.section-description__icon-box img:last-child {
  margin-right: 0px;
}
.section-description__title {
  font-size: 96px;
  margin-bottom: 10px;
  text-align: center;
  font-family: "Philosopher";
}
.red {
  color: #f15b40;
}
.section-description__text {
  font-size: 18px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-map {
  margin-bottom: 20px;
  padding: 0 20px;
}
.section-map__btn {
  display: block;
  font-family: "Philosopher";
  font-size: 36px;
  padding: 10px 40px;
  margin: 0 auto 30px;
  background-color: transparent;
  border: 2px solid rgba(234, 156, 65, 0.8);
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s ease;
}
.section-map__btn:hover {
  background-color: rgba(255, 184, 102, 0.8);
}
#map {
  display: block;
  margin: 0 auto;
  width: 70%;
}
hr {
  border: none;
  border-top: 1px solid #999999;
  max-width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.footer {
  height: 80px;
}

@media (max-width: 1024px) {
  .section-description__title {
    font-size: 80px;
  }
}

@media (max-width: 900px) {
  .section-about__block {
    width: 390px;
    height: 170px;
    top: 64%;
    left: 25%;
  }
  .section-about__border {
    width: 360px;
    height: 140px;
  }
  .section-about__tittle {
    font-size: 30px;
  }
  .section-description__title {
    font-size: 60px;
  }
}

@media (max-width: 650px) {
  .menu__item--list {
    margin-right: 50px;
  }
  .menu__item--link {
    font-size: 16px;
  }
  .menu-container {
    display: flex;
    justify-content: center;
  }
  .section-about {
    margin-bottom: 70px;
  }
  .section-about__block {
    width: 325px;
    height: 190px;
    left: 20%;
    top: 60%;
  }
  .section-about__border {
    width: 300px;
    height: 160px;
    padding: 10px;
  }
  .section-about__tittle {
    font-size: 24px;
  }
  .section-description__icon-box {
    gap: 30px;
    margin-bottom: 50px;
  }
  .section-description__title {
    font-size: 45px;
  }
  .section-map__btn {
    padding: 10px 20px;
  }
  #map {
    width: 85%;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .menu__items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    width: 250px;
    justify-content: space-between;
  }
  .menu__item--list {
    margin-right: 0px;
  }
  .section-about {
    margin-bottom: 50px;
  }
  .section-about__block {
    width: 270px;
  }
  .section-about__border {
    width: 245px;
  }
  .section-description__icon-box img {
    width: 70%;
  }
  .section-description__title {
    font-size: 34px;
  }
  .section-description__text {
    font-size: 16px;
  }
  .section-description {
    margin-bottom: 60px;
  }
  .section-map__btn {
    font-size: 26px;
  }
  #map {
    height: 300px;
  }
}

@media (max-width: 360px) {
  .section-about__block {
    width: 240px;
    height: 205px;
    top: 58%;
  }
  .section-about__border {
    width: 215px;
    height: 175px;
  }
  .section-about__tittle {
    font-size: 20px;
  }
  .section-about__block {
    left: 15%;
  }
  .section-description__title {
    font-size: 28px;
  }
  .section-description__text {
    font-size: 14px;
  }
  .section-description {
    margin-bottom: 40px;
  }
  .section-map__btn {
    font-size: 22px;
  }
  #map {
    height: 250px;
  }
}
