@import "./reset.css";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  font-weight: 400;
  line-height: normal;
  color: #000;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
}

/*Header*/

.header {
  padding: 40px;
  background-color: #f7f7f7;
}

.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo__img {
  margin-bottom: 5px;
}

.logo__slogan {
  display: block;
  color: rgb(103 97 97);
}

.nav__link {
  display: flex;
  justify-content: space-between;
}

.nav__link-top {
  margin-left: 25px;
}

.nav__link-top:last-child {
  margin-right: 0;
}

.nav__link-menu {
  font-weight: 500;
  font-size: 20px;
  color: #7b9ff6;
}

.nav__link-menu:hover {
  transition: all 0.3s ease;
  border-bottom: 3px solid #05508e;
  color: #05508e;
}

.btn__menu {
  padding: 20px;
  border: 3px solid #0f59941f;
  border-radius: 15px;
  background-color: #7c9ef8;
  font-weight: 500;
  color: #fff;
}

/*Main*/

.section {
  background-image: url("/img/bg-header.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.section__content {
  padding-left: 50px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  min-height: calc(-80px + 90vh);
}

.title {
  margin-bottom: 15px;
  /* padding: 20px; */
  line-height: 1;
  font-weight: 700;
  font-size: 50px;
}

.section__text {
  margin-bottom: 40px;
  /* max-width: 450px; */
  /* text-align: center; */
  font-weight: 500;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.7);
}

/* .btn {
  padding: 20px 60px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 25px;
  color: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background-color: #ff3868;
} */

.list__link {
  padding: 10px;
  list-style-type: circle;
}

.link__list {
  border-bottom: 2px solid #1f8ae0;
  color: #0f5994;
}

/*Footer*/

.footer {
  /* margin: 20px 0; */
  padding: 40px;
  /* width: 900px; */
  text-align: center;
  background-color: #f7f7f7;
  color: #00000080;
  font-size: 16px;
}

/*Adaptiv*/

@media (max-width: 870px) {
  .nav__link-menu {
    display: none;
  }
}

@media (max-width: 661px) {
  .btn__menu {
    display: none;
  }
  .section {
    background-image: linear-gradient(
        rgba(255 255 255 / 77%),
        rgba(255 255 255 / 53%)
      ),
      url("/img/bg__header.jpg");
  }
}
