@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700&display=swap");

*,
::after,
::before {
  box-sizing: border-box;
}

body {
  background-color: #fff;

  margin: 0;

  font-family: "Nunito", sans-serif;
}

p,
h1,
h2,
h3,
h4,
ul,
li {
  padding: 0;

  margin: 0;
}

a {
  text-decoration: none;

  color: black;
}

.container {
  max-width: 1200px;

  margin: 0 auto;

  padding: 15px;
}

/* ПОВТОР КЛАССЫ */

.flex-column {
  display: flex;

  flex-direction: column;
}

.flex {
  display: flex;

  align-items: center;
}

.section__title {
  margin-bottom: 30px;
}

/* Базовые классы, аля tailwind */

.text-medium {
  font-size: 18px;
}

.disabled {
  pointer-events: none;
  color: #9ca3af;

  a {
    color: #9ca3af;
  }
}

/*  */

.mb-x1 {
  margin-bottom: 5px;
}
.mb-x2 {
  margin-bottom: 10px;
}

.mb-x3 {
  margin-bottom: 15px;
}

.mb-x4 {
  margin-bottom: 20px;
}

.mb-x5 {
  margin-bottom: 25px;
}

.mb-x6 {
  margin-bottom: 30px;
}

/*  */

.list-number {
  display: flex;
  flex-direction: column;
  gap: 4px;

  padding-left: 15px;

  list-style-type: decimal;
}

.list-disc {
  display: flex;
  flex-direction: column;
  gap: 4px;

  padding-left: 15px;

  list-style-type: disc;
}

.list-circle {
  display: flex;
  flex-direction: column;
  gap: 4px;

  padding-left: 15px;

  list-style-type: circle;
}

.list-default {
  display: flex;
  flex-direction: column;
  gap: 4px;

  list-style-type: none;
}

/* HEADER */

.wrap {
  height: 101vh;

  overflow-x: hidden;
}

@media (max-width: 426px) {
  .wrap {
    /* height: auto; */

    padding-bottom: 260px;

    /* height: 90vh; */
  }
}

.header {
  background-color: #fdfdfd;

  border-bottom: 2px solid #e1e1e1;
}

.header__top {
  border-bottom: 2px solid #e1e1e1;
}

.header__top-link {
  max-width: 1000px;

  margin: 0 auto;

  display: flex;

  justify-content: space-around;

  padding: 8px 0;
}

@media (max-width: 769px) {
  .header__top-link .flex-column {
    display: none;
  }
}

.header__logo {
  width: 60px;

  height: 60px;

  margin-right: 8px;

  border-radius: 10%;
}

/* .header__logo-text {

  margin-top: 8px;

} */

.header__logo-text span {
  font-weight: bold;
}

.header__top-wrap {
  display: flex;

  flex-direction: column;
}

.header__top-item {
  display: flex;

  align-items: center;
}

.header__top-item span {
  font-size: 18px;
}

.header__icon {
  width: 20px;

  height: 20px;

  margin-right: 5px;
}

.header__social {
  width: 40px;

  height: 40px;
}

.header__social-whatsapp {
  width: 28px;

  height: 28px;

  margin-left: 8px;
}

.header__top-item:not(:last-child) {
  margin-bottom: 12px;
}

/* NAV */

.nav {
  padding: 15px 0;
}

.nav__list {
  list-style: none;

  display: flex;

  margin: 0 auto;

  width: fit-content;
}

.nav__item {
  font-size: 20px;
}

.nav__item:not(:last-child) {
  padding-right: 10px;

  border-right: 2px solid #e1e1e1;
}

.nav__item:not(:first-child) {
  padding-left: 10px;
}

/* PREVIEW */

.preview {
  position: relative;

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 15px;
}

.preview h1 {
  /* margin-top: 8%; */

  margin-top: 14vh;

  margin-left: 5%;

  font-size: 60px;

  text-transform: uppercase;
}

@media (max-width: 1300px) {
  .preview h1 {
    font-size: 50px;

    margin-top: 10vh;
  }
}

@media (max-width: 426px) {
  .preview h1 {
    font-size: 32px;

    margin-top: 8vh;
  }
}

.preview h2 {
  margin-left: 5%;
}

@media (max-width: 426px) {
  .preview h2 {
    font-size: 20px;
  }
}

.preview img {
  position: absolute;

  /* top: -20px; */

  top: 50%;

  left: 40%;

  width: 700px;

  float: right;

  z-index: -100;

  pointer-events: none;
}

@media (max-width: 1300px) {
  .preview img {
    top: 5%;
  }
}

@media (max-width: 769px) {
  .preview img {
    position: absolute;

    top: 90%;

    left: 10%;

    width: 85%;
  }
}

@media (max-width: 426px) {
  .preview img {
    position: absolute;

    top: 100%;

    left: 1%;

    width: 400px;
  }
}

/* HOME */

.text {
  font-size: 20px;
}

.link {
  text-decoration: underline;
}

.underline {
  text-decoration: underline;
}

.home__teach-img {
  display: block;

  width: 320px;

  height: 430px;

  margin: 0 auto;

  padding-top: 15px;

  pointer-events: none;
}

.info {
}

.info__text {
}

/* Строительный BLOCK */

.block {
  margin-left: 20px;

  margin-bottom: 30px;
}

.block__title {
  margin-bottom: 5px;
}

.block__subtitle {
  margin-left: 8px;

  margin-bottom: 2px;
}

.block__text {
  padding-left: 30px;
}

@media (max-width: 426px) {
  .block__text {
    padding-left: 15px;
  }
}

.block__text a {
  text-decoration: underline;
}

.license {
  /* display: flex;

  flex-wrap: wrap; */

  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(200px, 205px));

  grid-auto-flow: row dense;
}

@media (min-width: 440px) {
  .license img {
    display: block;

    width: 100%;
  }

  .license a:nth-child(1) {
    grid-row-start: 1;

    grid-row-end: 3;
  }

  .license a:nth-child(2) {
    grid-row-start: 1;

    grid-row-end: 3;
  }
}

@media (max-width: 1200px) {
  .license {
    justify-content: center;
  }
}

.block__img {
  max-width: 200px;

  border: 1px solid #dadada;
}

@media (min-width: 440px) {
  .block__img-low {
    height: 140px;
  }
}

/* ABOUT */

.about__position-img {
  width: 300px;

  margin-bottom: 20px;
}

.about__prev {
  width: 100%;

  object-fit: cover;

  border-radius: 5px;

  margin-bottom: 15px;
}

.team {
  margin-bottom: 20px;
}

.contracts {
  margin-bottom: 20px;
}

/* ABOUT SVEDENIYA */
/* 
.svedeniya {

} */
