* {
  box-sizing: border-box;
}

body {
  color: #21243D;
  font-family: "Heebo", sans-serif;
  font-weight: 400;
}

.container {
  max-width: 856px;
  margin: 0 auto;
  width: 100%;
}

.header .container {
  max-width: 1050px;
  min-height: 50px;
  margin-bottom: 33px;
}
.header__menu-buttons .icon {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 12px;
  right: 12px;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}
.header__menu-buttons .icon:hover {
  fill: #FF6464;
}
.header__navigation {
  position: relative;
}
.header__navigation ul {
  display: none;
}
.header__navigation ul a {
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  color: #000;
  transition-property: color;
  transition-duration: 0.3s;
}
.header__navigation ul a:hover {
  color: #FF6464;
}
.header__navigation .icon-close {
  display: none;
}
.header__navigation--active {
  position: relative;
  padding: 50px 0;
}
.header__navigation--active ul {
  display: unset;
}
.header__navigation--active ul li:not(:last-child) {
  margin-bottom: 20px;
}
.header__navigation--active ul a {
  display: block;
  text-align: center;
}
.header__navigation--active .icon-close {
  display: unset;
}
.header__navigation--active .icon-menu {
  display: none;
}

.short-description .container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.short-description__photo {
  margin-bottom: 43px;
  position: relative;
}
.short-description__photo::after {
  display: inline-block;
  position: absolute;
  content: " ";
  background-color: #EDF7FA;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  top: 9px;
  right: 3px;
  z-index: -1;
}
.short-description__photo img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
}
.short-description__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.short-description__text h1 {
  width: 312px;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 21px;
}
.short-description__text p {
  width: 328px;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  margin-bottom: 27px;
}
.short-description__text button {
  max-width: 208px;
  padding: 15px 19px 17px;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  background-color: #FF6464;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
  margin-bottom: 59px;
}
.short-description__text button:hover {
  opacity: 0.8;
}

.blog {
  background-color: #EDF7FA;
}
.blog .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}
.blog__header {
  margin: 19px 0 24px;
}
.blog__header span {
  font-size: 18px;
}
.blog__header span:last-child {
  display: none;
}
.blog__posts {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 38px;
}
.blog .card-post {
  padding: 12px 21px 22px 19px;
  background-color: #fff;
  max-width: 354px;
  min-height: 266px;
  box-shadow: 0px 4px 10px rgba(187, 225, 250, 0.25);
  border-radius: 4px;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
}
.blog .card-post:hover {
  box-shadow: 0px 8px 14px #bbe1fa;
}
.blog .card-post:hover .card-post__title {
  color: #00A8CC;
}
.blog .card-post:not(:last-child) {
  margin-bottom: 17px;
}
.blog .card-post__title {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  transition-property: color;
  transition-duration: 0.3s;
}
.blog .card-post__info {
  margin-bottom: 19px;
}
.blog .card-post__info time, .blog .card-post__info span {
  font-size: 16px;
}
.blog .card-post__info time {
  padding-right: 24px;
  margin-right: 24px;
  border-right: solid 1px #000;
}
.blog .card-post__content {
  font-size: 16px;
  line-height: 23px;
}

.works .container {
  padding-top: 25px;
}
.works__header {
  font-size: 18px;
  margin-bottom: 25px;
  text-align: center;
}
.works__catalog {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 150px;
}
.works .work-card {
  max-width: 344px;
  border-bottom: 1px solid #E0E0E0;
  cursor: pointer;
}
.works .work-card:not(:last-child) {
  margin-bottom: 17px;
}
.works .work-card:hover .work-card__title {
  color: #00A8CC;
}
.works .work-card:hover img {
  transform: scale(1.02);
}
.works .work-card img {
  width: 339px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 17px;
  transition-property: transform;
  transition-duration: 0.3s;
}
.works .work-card__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 16px;
  transition-property: color;
  transition-duration: 0.3s;
}
.works .work-card__info {
  margin-bottom: 24px;
}
.works .work-card__info time {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 16px;
  background-color: #142850;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  margin-right: 22px;
}
.works .work-card__info span {
  font-size: 16px;
  color: #8695A4;
}
.works .work-card__txt {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 17px;
}

.footer .container {
  padding-top: 51px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__smm {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.footer__smm li:not(:last-child) {
  margin-right: 35px;
}
.footer__smm .icon {
  width: 30px;
  height: 30px;
  fill: #21243D;
  transition-property: fill;
  transition-duration: 0.3s;
}
.footer__smm .icon:hover {
  fill: #00A8CC;
}
.footer span {
  margin-bottom: 54px;
  font-size: 14px;
}

@media screen and (min-width: 1200px) {
  .header .container {
    min-height: 70px;
    margin-bottom: 140px;
  }
  .header__menu-buttons .icon {
    display: none;
  }
  .header__navigation {
    display: flex;
    justify-content: flex-end;
    padding-top: 33px;
  }
  .header__navigation ul {
    display: flex;
  }
  .header__navigation ul li:not(:last-child) {
    margin-right: 33px;
  }

  .short-description .container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 71px;
  }
  .short-description__photo {
    margin-bottom: 0;
  }
  .short-description__photo::after {
    width: 243px;
    height: 243px;
    top: 13px;
    right: 5px;
  }
  .short-description__photo img {
    width: 243px;
    height: 243px;
    border-radius: 50%;
  }
  .short-description__text {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .short-description__text h1 {
    padding-top: 18px;
    width: 438px;
    font-size: 44px;
    line-height: 60px;
    text-align: start;
    margin-bottom: 40px;
  }
  .short-description__text p {
    width: 497px;
    text-align: start;
    margin-bottom: 38px;
  }
  .short-description__text button {
    margin-bottom: 0;
  }

  .blog .container {
    display: block;
    padding: 0;
    padding-bottom: 32px;
  }
  .blog__header {
    padding-top: 27px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .blog__header span {
    font-size: 22px;
  }
  .blog__header span:last-child {
    display: unset;
    font-size: 16px;
    cursor: pointer;
    transition-property: color;
    transition-duration: 0.3s;
  }
  .blog__header span:last-child:hover {
    color: #00A8CC;
  }
  .blog__posts {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 0;
    justify-content: space-between;
  }
  .blog .card-post {
    padding: 24px 21px 20px 23px;
    background-color: #fff;
    max-width: 418px;
    min-height: 295px;
  }
  .blog .card-post:not(:last-child) {
    margin-bottom: 0;
  }
  .blog .card-post__title {
    margin-bottom: 22px;
    font-size: 26px;
    line-height: 38px;
  }
  .blog .card-post__info {
    margin-bottom: 22px;
  }
  .blog .card-post__info time, .blog .card-post__info span {
    font-size: 18px;
  }
  .blog .card-post__info time {
    padding-right: 32px;
    margin-right: 25px;
    border-right: solid 1px #000;
  }
  .blog .card-post__content {
    font-size: 16px;
    line-height: 23px;
  }

  .works__header {
    font-size: 22px;
    margin-bottom: 45px;
    text-align: start;
  }
  .works__catalog {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 83px;
  }
  .works .work-card {
    display: flex;
    align-items: center;
    min-height: 247px;
    max-width: 100%;
    border-bottom: 1px solid #E0E0E0;
  }
  .works .work-card:not(:last-child) {
    margin-bottom: 0;
  }
  .works .work-card img {
    width: 246px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0;
    margin-right: 18px;
  }
  .works .work-card__title {
    font-size: 30px;
    line-height: 44px;
    margin-bottom: 16px;
  }
  .works .work-card__info {
    margin-bottom: 22px;
  }
  .works .work-card__info time {
    display: inline-block;
    padding: 6px 10px;
    font-size: 18px;
    margin-right: 26px;
  }
  .works .work-card__info span {
    font-size: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
