.first-screen {
  background-color: #EEEFF1;
  min-height: 100vh;
}
.first-screen__title {
  font-weight: 500;
  font-size: 3rem;
  margin-bottom: 3.75rem;
  color: #000;
  width: 33.75rem;
}
.first-screen__text {
  margin-bottom: 4.0625rem;
  width: 33.75rem;
}
.first-screen__btn {
  background-color: #34547A;
  color: #fff;
  padding: 1.5625rem 2.5625rem 1rem;
  margin-bottom: 8.8125rem;
}

@media (max-width: 576px) {
  .first-screen__title {
    font-size: 2.5rem;
    width: 28rem;
  }
  .first-screen__text {
    width: 28rem;
  }
}
@media (max-width: 376px) {
  .first-screen__title {
    width: 80%;
  }
}
.header {
  padding: 4.9375rem 0;
  margin-bottom: 5.1875rem;
}
.header__menu-toggle {
  display: none;
}
.header__menu {
  display: flex;
  gap: 3.125rem;
  left: 0;
}
.header__menu-item {
  list-style: none;
}
.header__menu-link {
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all ease-in-out 0.8s;
  border-radius: 5px;
}
.header__menu-link:hover {
  color: #34547A;
  background-color: #34547A;
  border-radius: 60%;
}

@media (max-width: 768px) {
  .header__menu-toggle:checked ~ .menu {
    right: 0;
    display: none;
  }
  .header__burger-icon {
    margin: 3rem;
  }
  .header__burger-icon span {
    display: none;
    width: 2rem;
    height: 0.3rem;
    background-color: #000;
    border-radius: 0.145rem;
    margin: 0.2rem;
  }
  .header__menu {
    left: -20rem;
    flex-direction: column;
    gap: 1.5rem;
  }
  .header__menu-toggle:checked ~ .menu {
    left: 0;
  }
  .header__burger-icon span {
    display: block;
  }
}
.about-me__title {
  margin-top: 7rem;
  text-align: center;
  color: #000;
}
.about-me__text {
  margin: 3.125rem auto 6.25rem;
  max-width: 33.75rem;
  text-align: center;
}

@media (max-width: 576px) {
  .about-me__title {
    font-size: 2.5rem;
    width: 28rem;
  }
  .about-me__text {
    width: 28rem;
  }
}
@media (max-width: chine-phone) {
  .about-me__title {
    width: 80%;
  }
  .about-me__text {
    width: 80%;
  }
}
.projects {
  background-color: #34547A;
  color: #fff;
}
.projects__wrap {
  display: flex;
  justify-content: space-between;
  margin: 6.25rem auto;
}
.projects__block {
  display: flex;
  gap: 1.25rem;
}
.projects__text-1 {
  display: block;
  margin-bottom: 0.625rem;
}
.projects__text-2 {
  display: block;
}

@media (max-width: 768px) {
  .projects__wrap {
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2.5rem;
  }
  .projects__block {
    margin-top: 2rem;
  }
}
.how-i-work__title {
  margin-top: 7rem;
  text-align: center;
  color: #000;
}
.how-i-work__text {
  margin: 3.125rem auto 3.5625rem;
  max-width: 33.75rem;
  text-align: center;
}
.how-i-work__video {
  background-image: url(../../images/video.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 37.5rem;
  margin-bottom: 6.25rem;
  position: relative;
}
.how-i-work__video::before {
  position: absolute;
  content: "";
  width: 6.25rem;
  height: 6.25rem;
  background-image: url(../../images/video-btn.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

@media (max-width: 576px) {
  .how-i-work__title {
    font-size: 2.5rem;
    width: 28rem;
  }
  .how-i-work__text {
    width: 28rem;
  }
}
@media (max-width: chine-phone) {
  .how-i-work__title {
    width: 80%;
  }
  .how-i-work__text {
    width: 80%;
  }
}
.footer {
  background-color: #34547A;
  color: #fff;
}
.footer__title {
  font-size: 1.3125rem;
  font-weight: 500;
  margin: 3.125rem auto 1.25rem;
}
.footer__text {
  font-size: 0.8125rem;
  margin-bottom: 3.125rem;
}

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

html {
  font-size: 16px;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #f9f9f9;
  color: #727272;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 76.875rem;
  margin: 0 auto;
  padding: 0.9375rem;
}/*# sourceMappingURL=style.css.map */