header {
  background-color: white;
  position: sticky;
  height: 3rem;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  margin: 0rem 1.5rem;
  padding-top: 1rem;
}
.nav__logo {
  font-size: 1.3rem;
  cursor: pointer;
  color: hsl(0, 0%, 6%);
}
.nav__logo a {
  text-decoration: none;
}
.nav__icon {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  width: 1.8rem;
}
.nav__icon div {
  height: 2px;
  background-color: black;
  border-radius: 5px;
  transition: 0.2s;
}
.nav__menu {
  display: none;
}
.nav__menu_list {
  position: sticky;
  top: 6rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 999;
  max-width: 100%;
  max-height: 100%;
  width: 20rem;
  height: 20rem;
  background-color: hsl(0, 12%, 89%);
}
.nav__menu ol {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem;
}
.nav__menu ol li {
  list-style: none;
}
.nav__menu a {
  list-style: none;
  text-decoration: none;
  color: hsl(0, 0%, 6%);
  cursor: pointer;
  font-size: 2rem;
}
.nav__menu a:hover {
  color: hsla(180, 74%, 33%, 0.87);
}
.nav__menu a:hover {
  font-size: 2.5rem;
  transition: 0.2s;
}

.transformed div {
  transition: 0.2s;
}
.transformed div:first-child {
  background-color: hsla(180, 74%, 33%, 0.87);
  transform: rotate(43deg) translate(4px, 4.2px);
}
.transformed div:nth-child(2) {
  opacity: 0;
}
.transformed div:last-child {
  background-color: hsla(180, 74%, 33%, 0.87);
  transform: rotate(-43deg) translate(4px, -4.2px);
}

@media screen and (min-width: 780px) {
  .nav__menu_list {
    width: 30rem;
    height: 28rem;
  }
  .nav__menu a {
    font-size: 3rem;
  }
  .nav__menu a:hover {
    font-size: 3.5rem;
    transition: 0.2s;
  }
}
.banner {
  position: relative;
  overflow: hidden;
  height: 20rem;
}
.banner__img {
  position: absolute;
  z-index: -1;
  opacity: 0.95;
  filter: drop-shadow(hsl(0, 5%, 66%) 10px 8px 10px);
  top: 1rem;
  width: 100%;
  height: auto;
  transform: scale(2);
}
.banner__title {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin-top: 3rem;
  margin-left: 1rem;
}
.banner__title_main-text {
  font-size: 1.3rem;
}
.banner__title_title-text {
  font-size: 2.8rem;
  color: hsla(180, 74%, 33%, 0.87);
  text-shadow: -0.5px 0 black, 0 0.5px black, 0.5px 0 black, 0 -0.5px black;
  margin-top: -0.1rem;
  margin-bottom: -0.1rem;
  line-height: 2.4rem;
}
.banner__triangle {
  position: absolute;
  width: 5rem;
  z-index: -1;
  cursor: pointer;
  margin-left: 11rem;
}
.banner__triangle_text {
  margin-top: 1rem;
  font-size: 0.8rem;
  width: 3rem;
  color: hsl(0, 12%, 89%);
  text-align: center;
  cursor: pointer;
  margin-left: 11.8rem;
}
.banner__triangle_text:hover {
  transition: 0.2s;
  transform: scale(1.3);
}
.banner a {
  text-decoration: none;
  color: hsl(0, 12%, 89%);
}

@media screen and (max-width: 360px) {
  .banner {
    height: 20rem;
  }
  .banner__title {
    display: flex;
    flex-direction: column;
    width: 70%;
    margin-top: 3rem;
    margin-left: 1rem;
  }
  .banner__title_main-text {
    font-size: 1rem;
  }
  .banner__title_title-text {
    font-size: 2rem;
  }
}
@media screen and (min-width: 495px) {
  .banner {
    height: 23rem;
  }
}
@media screen and (min-width: 500px) {
  .banner__triangle {
    margin-left: 16rem;
    margin-top: 1.5rem;
  }
  .banner__triangle_text {
    margin-left: 16.5rem;
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 540px) {
  .banner__triangle {
    margin-left: 18rem;
  }
  .banner__triangle_text {
    margin-left: 18.5rem;
  }
}
@media screen and (min-width: 610px) {
  .banner {
    height: 25rem;
  }
  .banner__triangle {
    margin-left: 20rem;
    margin-top: 3rem;
  }
  .banner__triangle_text {
    margin-left: 20.5rem;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 670px) {
  .banner {
    height: 27rem;
  }
  .banner__title {
    margin-top: 5rem;
  }
  .banner__triangle {
    margin-left: 22rem;
    margin-top: 3rem;
  }
  .banner__triangle_text {
    margin-left: 22.5rem;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 737px) {
  .banner {
    height: 28rem;
  }
  .banner__title {
    margin-top: 7rem;
  }
  .banner__triangle {
    margin-left: 24rem;
    margin-top: 5rem;
  }
  .banner__triangle_text {
    margin-left: 24.5rem;
    margin-top: 6rem;
  }
}
@media screen and (min-width: 780px) {
  .banner {
    height: 25rem;
  }
  .banner__img {
    filter: drop-shadow(hsl(0, 5%, 66%) 10px 4px 4px);
    top: 1rem;
    transform: scale(1.6);
  }
  .banner__title {
    margin-top: 2rem;
    width: 50%;
  }
  .banner__title_main-text {
    font-size: 2rem;
  }
  .banner__title_title-text {
    font-size: 3rem;
  }
  .banner__triangle {
    margin-left: 25rem;
    margin-top: -1rem;
    width: 8rem;
  }
  .banner__triangle_text {
    margin-left: 27rem;
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}
@media screen and (min-width: 900px) {
  .banner__triangle {
    margin-left: 28rem;
    margin-top: 1rem;
  }
  .banner__triangle_text {
    margin-left: 30rem;
    margin-top: 3rem;
  }
}
@media screen and (min-width: 972px) {
  .banner {
    height: 29rem;
  }
  .banner__title {
    margin-top: 5rem;
    margin-left: 3rem;
  }
  .banner__triangle {
    margin-left: 30rem;
  }
  .banner__triangle_text {
    margin-left: 32rem;
  }
}
@media screen and (min-width: 1050px) {
  .banner__triangle {
    margin-left: 33rem;
  }
  .banner__triangle_text {
    margin-left: 35rem;
  }
}
@media screen and (min-width: 1105px) {
  .banner {
    height: 27rem;
  }
  .banner__img {
    top: -2rem;
    transform: scale(1);
  }
  .banner__triangle {
    margin-left: 34rem;
    margin-top: -1rem;
  }
  .banner__triangle_text {
    margin-left: 36rem;
    margin-top: 1rem;
  }
}
@media screen and (min-width: 1210px) {
  .banner__triangle {
    margin-left: 36rem;
  }
  .banner__triangle_text {
    margin-left: 38rem;
  }
}
@media screen and (min-width: 1281px) {
  .banner__title {
    margin-left: 8rem;
  }
  .banner__triangle {
    margin-left: 39rem;
    margin-top: 1rem;
  }
  .banner__triangle_text {
    margin-left: 41rem;
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1370px) {
  .banner__triangle {
    margin-left: 42rem;
  }
  .banner__triangle_text {
    margin-left: 44rem;
  }
}
@media screen and (min-width: 1451px) {
  .banner__triangle {
    margin-left: 46rem;
    margin-top: 2rem;
  }
  .banner__triangle_text {
    margin-left: 48rem;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1500px) {
  .banner {
    height: 30rem;
  }
  .banner__triangle_text {
    margin-top: 4.5rem;
  }
}
@media screen and (min-width: 1540px) {
  .banner__triangle {
    margin-left: 48rem;
    margin-top: 4rem;
  }
  .banner__triangle_text {
    margin-left: 50rem;
    margin-top: 6rem;
  }
}
@media screen and (min-width: 1569px) {
  .banner__title {
    margin-top: 10rem;
  }
  .banner__triangle {
    margin-left: 48rem;
    margin-top: 1rem;
  }
  .banner__triangle_text {
    margin-left: 50rem;
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1650px) {
  .banner {
    height: 32rem;
  }
  .banner__triangle {
    margin-left: 52rem;
  }
  .banner__triangle_text {
    margin-left: 54rem;
  }
}
@media screen and (min-width: 1720px) {
  .banner__img {
    top: -4rem;
  }
  .banner__title_main-text {
    font-size: 2.5rem;
  }
  .banner__title_title-text {
    font-size: 4.5rem;
  }
  .banner__triangle {
    margin-left: 54rem;
  }
  .banner__triangle_text {
    margin-left: 56rem;
  }
}
@media screen and (min-width: 1827px) {
  .banner {
    height: 33rem;
  }
  .banner__triangle {
    margin-left: 58rem;
    margin-top: 2rem;
  }
  .banner__triangle_text {
    margin-left: 60rem;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1910px) {
  .banner {
    height: 34rem;
  }
  .banner__triangle {
    margin-left: 60.5rem;
  }
  .banner__triangle_text {
    margin-left: 62.5rem;
  }
}
.technologies {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0rem 1.5rem;
}
.technologies__title {
  font-size: 0.8rem;
  font-weight: 400;
}
.technologies__list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin-left: 2rem;
}
.technologies__list_row {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.technologies__list_points {
  color: hsla(180, 74%, 33%, 0.87);
}
.technologies__list_item {
  display: flex;
  flex-direction: column;
}
.technologies__list_item-details {
  font-size: 0.8rem;
  font-weight: 600;
}

@media screen and (min-width: 780px) {
  .technologies {
    margin: 0rem 1.5rem;
  }
  .technologies__title {
    font-size: 1.2rem;
  }
  .technologies__list_item-name {
    font-size: 1.5rem;
  }
  .technologies__list_item-details {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 970px) {
  .technologies {
    margin: 1.5rem;
  }
}
@media screen and (min-width: 1105px) {
  .technologies {
    margin: -4rem 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .technologies {
    margin: -2rem 1.5rem;
  }
}
@media screen and (min-width: 1281px) {
  .technologies {
    margin-left: 8rem;
  }
}
@media screen and (min-width: 1300px) {
  .technologies {
    margin: 0rem 1.5rem 0rem 8rem;
  }
}
@media screen and (min-width: 1550px) {
  .technologies {
    margin: 2rem 1.5rem 0rem 8rem;
  }
}
.projects {
  margin: 5rem 1rem;
}
.projects__title {
  font-weight: 500;
  color: hsla(180, 74%, 33%, 0.87);
}
.projects__list {
  display: grid;
  grid-template-columns: 50% 50%;
  margin-left: 0.5rem;
  row-gap: 3rem;
}
.projects__list_item-link {
  text-decoration: none;
  filter: grayscale(100%);
  color: hsl(0, 0%, 6%);
}
.projects__list_item-link:hover {
  transition: 0.2s;
  font-weight: 600;
  transform: scale(1.1);
  filter: grayscale(0%);
  color: hsla(180, 74%, 33%, 0.87);
}
.projects__list_item-link:active {
  transition: 0.2s;
  font-weight: 600;
  transform: scale(1.1);
  filter: grayscale(0%);
  color: hsla(180, 74%, 33%, 0.87);
}
.projects__list_item-name::first-letter {
  color: hsla(180, 74%, 33%, 0.87);
}
.projects__list_item-img {
  width: 10rem;
}
.projects__list_item-details {
  margin-left: 1rem;
  font-size: 0.8rem;
}

@media screen and (max-width: 360px) {
  .projects__list_item-name {
    font-size: 0.8rem;
  }
  .projects__list_item-img {
    width: 7rem;
  }
}
@media screen and (min-width: 450px) {
  .projects__list_item-img {
    width: 12rem;
  }
}
@media screen and (min-width: 510px) {
  .projects__list_item-img {
    width: 14rem;
  }
}
@media screen and (min-width: 630px) {
  .projects__list_item-img {
    width: 16rem;
  }
}
@media screen and (min-width: 650px) {
  .projects__list_item-img {
    width: 17rem;
  }
}
@media screen and (min-width: 700px) {
  .projects__list_item-img {
    width: 18rem;
  }
}
@media screen and (min-width: 820px) {
  .projects__title {
    font-size: 2rem;
  }
  .projects__list {
    align-items: end;
    grid-template-columns: 24% 24% 24% 24%;
    margin-left: 0.5rem;
  }
  .projects__list_item-name {
    font-size: 1.2rem;
  }
  .projects__list_item-img {
    width: 11rem;
  }
  .projects__list_item-details {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1000px) {
  .projects__list_item-img {
    width: 13rem;
  }
}
@media screen and (min-width: 1160px) {
  .projects__list_item-img {
    width: 14rem;
  }
}
@media screen and (min-width: 1281px) {
  .projects {
    margin-left: 8rem;
  }
  .projects__list_item-img {
    width: 15rem;
  }
}
@media screen and (min-width: 1450px) {
  .projects__list_item-img {
    width: 17rem;
  }
}
@media screen and (min-width: 1650px) {
  .projects__list_item-img {
    width: 20rem;
  }
}
.about__banner {
  position: relative;
  overflow: hidden;
  height: 16rem;
  margin-left: 1rem;
}
.about__banner_img {
  position: absolute;
  z-index: -1;
  opacity: 0.95;
  filter: drop-shadow(hsl(0, 5%, 66%) 10px 8px 10px);
  width: auto;
  height: 100%;
}
.about__banner_text {
  margin-top: 6rem;
  text-align: center;
  width: 27rem;
}
.about__banner_text-general {
  font-weight: 500;
}
.about__banner_text-main {
  font-size: 2.8rem;
  color: hsla(180, 74%, 33%, 0.87);
  text-shadow: -0.5px 0 black, 0 0.5px black, 0.5px 0 black, 0 -0.5px black;
  margin-top: -0.1rem;
  margin-bottom: -0.1rem;
  line-height: 2.4rem;
  font-weight: 600;
}
.about__info {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  width: 90%;
  margin: 2rem 1.5rem;
  row-gap: 2rem;
}
.about__info_intro {
  display: grid;
  grid-template-columns: 25% 75%;
  align-items: center;
  margin-top: 2rem;
}
.about__info_intro-title {
  font-size: 0.8rem;
}
.about__info_intro-text {
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.about__info_experience {
  display: grid;
  grid-template-columns: 25% 75%;
  align-items: center;
  margin-top: 2rem;
}
.about__info_experience-list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.about__info_experience-title {
  font-size: 0.8rem;
}
.about__info_experience-text {
  font-size: 0.8rem;
  display: grid;
  grid-template-columns: 80% 20%;
  align-items: center;
}
.about__info_experience-job-company {
  font-size: 0.6rem;
  font-weight: 600;
}
.about__info_experience-text-term {
  color: hsla(180, 74%, 33%, 0.87);
  font-size: 0.6rem;
  font-weight: 600;
}
.about__info_hobbys {
  display: grid;
  grid-template-columns: 25% 75%;
  align-items: center;
  margin-top: 2rem;
}
.about__info_hobbys-title {
  font-size: 0.8rem;
}
.about__info_hobbys-text {
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

@media screen and (max-width: 360px) {
  .about__banner_text {
    width: 50%;
    margin-left: 5rem;
  }
  .about__banner_text-general {
    font-size: 1rem;
  }
  .about__banner_text-main {
    font-size: 2rem;
  }
}
@media screen and (min-width: 500px) {
  .about {
    margin-left: 4rem;
  }
  .about__banner_text {
    margin-left: 2rem;
  }
}
@media screen and (min-width: 700px) {
  .about__info_intro {
    grid-template-columns: 18% 82%;
  }
  .about__info_experience {
    grid-template-columns: 18% 82%;
  }
  .about__info_hobbys {
    grid-template-columns: 18% 82%;
  }
}
@media screen and (min-width: 780px) {
  .about__banner {
    height: 20rem;
    margin-left: 4rem;
  }
  .about__banner_text {
    margin-left: 5rem;
  }
  .about__banner_text-general {
    font-size: 2rem;
  }
  .about__banner_text-main {
    font-size: 3rem;
  }
  .about__info_intro {
    grid-template-columns: 24% 76%;
  }
  .about__info_intro-title {
    font-size: 1.5rem;
  }
  .about__info_intro-text {
    font-size: 1.2rem;
  }
  .about__info_experience {
    grid-template-columns: 24% 76%;
  }
  .about__info_experience-title {
    font-size: 1.5rem;
  }
  .about__info_experience-text {
    grid-template-columns: 80% 20%;
    font-size: 1.2rem;
  }
  .about__info_experience-job-company {
    font-size: 1rem;
  }
  .about__info_experience-text-term {
    font-size: 1rem;
  }
  .about__info_hobbys {
    grid-template-columns: 24% 76%;
  }
  .about__info_hobbys-title {
    font-size: 1.5rem;
  }
  .about__info_hobbys-text {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 900px) {
  .about {
    margin-left: 4rem;
  }
  .about__banner_text {
    margin-left: 5rem;
  }
}
@media screen and (min-width: 1000px) {
  .about__info_experience-text {
    grid-template-columns: 65% 35%;
    align-items: start;
  }
}
@media screen and (min-width: 1100px) {
  .about {
    margin-left: 8rem;
  }
  .about__banner_text {
    margin-left: 5rem;
  }
}
@media screen and (min-width: 1281px) {
  .about {
    margin-left: 12rem;
  }
  .about__info_intro {
    grid-template-columns: 20% 80%;
  }
  .about__info_experience {
    grid-template-columns: 20% 80%;
  }
  .about__info_experience-text {
    grid-template-columns: 60% 40%;
  }
  .about__info_hobbys {
    grid-template-columns: 20% 80%;
  }
}
.footer__cover_general {
  display: flex;
  height: 10rem;
  justify-content: center;
  align-items: center;
}
.footer__cover_general-text {
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer__cover_general-text-sec {
  color: hsla(180, 74%, 33%, 0.87);
}
.footer__cover_general-triangle-img {
  position: absolute;
  width: 5rem;
  z-index: -1;
  cursor: pointer;
  position: static;
}
.footer__cover_general-triangle-text {
  margin-top: 1rem;
  font-size: 0.8rem;
  width: 3rem;
  color: hsl(0, 12%, 89%);
  text-align: center;
  cursor: pointer;
  margin-top: -6.5rem;
  margin-left: 0.7rem;
}
.footer__cover_general-triangle-text:hover {
  transition: 0.2s;
  transform: scale(1.3);
}
.footer__cover a {
  text-decoration: none;
  color: hsl(0, 12%, 89%);
}
.footer__cover_name {
  margin-left: 1rem;
  margin-top: 4rem;
}
.footer__cover_name-title {
  font-size: 2.8rem;
  color: hsla(180, 74%, 33%, 0.87);
  text-shadow: -0.5px 0 black, 0 0.5px black, 0.5px 0 black, 0 -0.5px black;
  margin-top: -0.1rem;
  margin-bottom: -0.1rem;
  line-height: 2.4rem;
  font-size: 1.6rem;
}
.footer__contacts {
  text-align: center;
  margin-left: 1rem;
  margin-top: 1rem;
}
.footer__contacts_links {
  display: flex;
  font-size: 1.2rem;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  justify-content: center;
}
.footer__contacts_links a {
  text-decoration: none;
  color: hsl(0, 0%, 6%);
}
.footer__contacts_links i {
  cursor: pointer;
}
.footer__contacts_links i:hover {
  color: hsla(180, 74%, 33%, 0.87);
}
.footer__contacts_items {
  font-size: 1rem;
}
.footer__menu {
  margin-top: 2rem;
  height: 8rem;
}
.footer__menu_list {
  text-align: center;
}
.footer__menu ol {
  display: flex;
  flex-direction: column;
}
.footer__menu ol li {
  list-style: none;
}
.footer__menu a {
  list-style: none;
  text-decoration: none;
  color: hsl(0, 0%, 6%);
  cursor: pointer;
  font-size: 0.7rem;
}
.footer__menu a:hover {
  color: hsla(180, 74%, 33%, 0.87);
}
.footer__menu a:hover {
  font-size: 0.9rem;
  transition: 0.2s;
}
.footer__nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 1.5rem 1.5rem 0rem;
  height: 3rem;
}
.footer__nav_logo {
  font-size: 1.3rem;
  cursor: pointer;
  color: hsl(0, 0%, 6%);
}
.footer__nav_contact {
  display: flex;
  font-size: 1rem;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.footer__nav_contact a {
  text-decoration: none;
  color: hsl(0, 0%, 6%);
}
.footer__nav_contact i {
  cursor: pointer;
}
.footer__nav_contact i:hover {
  color: hsla(180, 74%, 33%, 0.87);
}

@media screen and (min-width: 780px) {
  .footer__cover_general {
    height: 15rem;
  }
  .footer__cover_general-text {
    font-size: 3rem;
  }
  .footer__cover_general-triangle-img {
    width: 8rem;
  }
  .footer__cover_general-triangle-text {
    font-size: 1rem;
    margin-top: -9rem;
    margin-left: 1.8rem;
  }
  .footer__cover_name {
    margin-left: 1rem;
    margin-top: 6rem;
  }
  .footer__cover_name-title {
    font-size: 2.2rem;
  }
  .footer__cover_name-text {
    font-size: 1.5rem;
  }
  .footer__contacts_links {
    font-size: 1.5rem;
  }
  .footer__contacts_items {
    font-size: 1.5rem;
  }
  .footer__menu {
    margin-top: 2rem;
    height: 8rem;
  }
  .footer__menu a {
    font-size: 1.2rem;
  }
  .footer__menu a:hover {
    font-size: 1.5rem;
  }
  .footer__nav {
    height: 3rem;
  }
  .footer__nav_contact {
    font-size: 1rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
@media screen and (min-width: 1281px) {
  .footer__cover_name-title {
    margin-left: 8rem;
  }
  .footer__cover_name-text {
    margin-left: 8rem;
  }
}
.project__banner {
  position: relative;
  overflow: hidden;
  height: -moz-max-content;
  height: max-content;
  margin: 2rem 1rem;
}
.project__banner_img {
  position: absolute;
  z-index: -1;
  opacity: 0.95;
  filter: drop-shadow(hsl(0, 5%, 66%) 10px 8px 10px);
  width: auto;
  height: 20rem;
  margin-left: 2rem;
}
.project__banner_text {
  font-size: 2.8rem;
  color: hsla(180, 74%, 33%, 0.87);
  text-shadow: -0.5px 0 black, 0 0.5px black, 0.5px 0 black, 0 -0.5px black;
  margin-top: -0.1rem;
  margin-bottom: -0.1rem;
  line-height: 2.4rem;
  text-shadow: none;
  margin-top: 19.5rem;
  text-align: center;
}
.project__banner_links {
  text-align: center;
}
.project__banner_links a {
  padding: 0 0.5rem;
  text-decoration: none;
  color: hsl(0, 5%, 66%);
  cursor: pointer;
}
.project__banner_links a:hover {
  color: hsla(180, 74%, 33%, 0.87);
  font-weight: 600;
}
.project__info {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  width: 90%;
  margin-left: 1rem;
}
.project__info_about-text {
  font-size: 0.8rem;
  margin: 1rem 0 0 3rem;
}
.project__info_technologies-title {
  color: hsla(180, 74%, 33%, 0.87);
}
.project__info_technologies-list {
  font-size: 0.8rem;
  font-weight: 600;
  margin: 1rem 0 0 3rem;
}
.project__info_team-text {
  font-size: 0.8rem;
  margin: 1rem 0 0 3rem;
}
.project__info_responsibilities-title {
  color: hsla(180, 74%, 33%, 0.87);
}
.project__info_responsibilities-title-dark {
  color: hsl(0, 0%, 6%);
}
.project__info_responsibilities-text ul {
  padding-left: 1rem;
}
.project__info_responsibilities-text ul li {
  text-decoration: none;
  list-style: square;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  margin-left: 3rem;
}
.project__back {
  text-align: center;
  margin: 1rem;
}
.project__back_link {
  font-size: 0.6rem;
  text-decoration: none;
  color: hsl(0, 5%, 66%);
  cursor: pointer;
}
.project__back_link:hover {
  color: hsla(180, 74%, 33%, 0.87);
  font-weight: 600;
}

.banner-wider {
  height: 26rem;
}

@media screen and (min-width: 780px) {
  .project__banner_img {
    height: 25rem;
    margin-left: 8rem;
  }
  .project__banner_text {
    margin-top: 24.5rem;
    font-size: 3rem;
  }
  .project__banner_links a {
    font-size: 1.5rem;
  }
  .project__info_about-title {
    font-size: 1.5rem;
  }
  .project__info_about-text {
    font-size: 1.2rem;
  }
  .project__info_technologies-title {
    font-size: 1.5rem;
  }
  .project__info_technologies-list {
    font-size: 1.2rem;
  }
  .project__info_team-title {
    font-size: 1.5rem;
  }
  .project__info_team-text {
    font-size: 1.2rem;
  }
  .project__info_responsibilities-title {
    font-size: 1.5rem;
  }
  .project__info_responsibilities-title-dark {
    font-size: 1.5rem;
  }
  .project__info_responsibilities-text ul li {
    font-size: 1.2rem;
  }
  .project__back_link {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1281px) {
  .project {
    margin-left: 8rem;
  }
}
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Cinzel Decorative", serif;
}

a {
  text-decoration: none;
}

.darker {
  background-color: rgba(0, 0, 0, 0.5);
  filter: brightness(50%);
}

.light {
  filter: brightness(100%);
}/*# sourceMappingURL=index.css.map */