@import "resets.css";
@font-face {
  font-display: swap;
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../font/Inter-Medium.ttf");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
img {
  max-width: 100%;
}

strong {
  font-family: "Roboto";
}

body {
  background-color: rgba(70, 130, 180, 0.8);
}

.link {
  font-size: clamp(22px, 3vw, 26px);
  transition-duration: 1.5s;
}

.link:hover {
  cursor: pointer;
  color: rgb(255, 69, 0);
}

.top {
  width: 100%;
  height: 130px;
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}
.top__text {
  font-size: clamp(28px, 5vw, 40px);
  color: rgb(255, 69, 0);
  text-align: center;
  padding: 0 5px;
}

.btn {
  display: flex;
  margin: 0 auto;
  background-color: #B0C4DE;
  margin-bottom: 20px;
  margin-top: 30px;
  font-size: 30px;
  border: none;
  border-radius: 20px;
  padding: 15px;
  outline: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition-duration: 2s;
  outline: 2px solid #B0C4DE;
  outline-offset: 6px;
}

.btn:hover {
  outline: 3px solid rgb(255, 69, 0);
}

.btn-link {
  text-decoration: none;
  color: #000;
}

.nav-section {
  margin-top: 50px;
  margin-bottom: 50px;
}
.nav-section__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: 5px;
}
.nav-section__menu-text {
  font-size: 22px;
  text-align: center;
  font-family: "Inter";
  margin-top: 20px;
  margin-right: 30px;
}

.menu__link {
  color: #000;
  transition-duration: 1.5s;
}

.menu__link:hover {
  text-decoration: none;
  color: rgb(255, 69, 0);
}

.tel {
  text-decoration: none;
}

.line {
  border: none;
  border-top: 1px solid #000;
  margin: 10px 0;
}

.contact {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.contact__name {
  font-size: clamp(26px, 5vw, 30px);
  text-align: center;
}
.contact__phone {
  font-size: clamp(26px, 5vw, 30px);
  text-align: center;
}
.contact__link {
  text-decoration: none;
  text-align: center;
}
.contact__link_icon {
  vertical-align: middle;
}
.contact__link_text {
  vertical-align: middle;
  color: #000;
  transition-duration: 2s;
  font-size: clamp(18px, 4vw, 22px);
}
.contact__link_text:hover {
  color: white;
  text-decoration: underline;
}

.kind {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  background-color: #000;
  text-align: center;
}
.kind__text {
  font-size: clamp(26px, 4vw, 36px);
  color: rgb(255, 69, 0);
  margin: 0 auto;
}

.kind-block {
  margin: 40px 0;
  display: grid;
  grid-template-columns: 50% auto;
  gap: 40px;
  align-items: center;
}
.kind-block__text {
  font-size: clamp(22px, 3vw, 26px);
  padding-right: 10px;
}

.footer {
  width: 100%;
  height: 70px;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__text {
  font-size: clamp(18px, 3vw, 24px);
  text-align: center;
  margin-bottom: 20px;
  color: rgb(255, 69, 0);
  padding: 0 5px;
}

@media (max-width: 990px) {
  .top {
    margin-top: 0;
    display: flex;
    flex-direction: column;
  }
  .contact {
    margin-top: 0;
    display: flex;
    flex-direction: column;
  }
  .contact__name {
    margin-bottom: 15px;
  }
  .contact__phone {
    margin-bottom: 15px;
  }
  .kind-block {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
  }
  .kind-block__text {
    padding-left: 10px;
  }
}/*# sourceMappingURL=style.css.map */