@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.a-css-anim-1 {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.a-css-anim-1:nth-child(1) {
  animation-delay: 0s;
}
.a-css-anim-1:nth-child(2) {
  animation-delay: 0.7s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.a-css-anim-2 {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.a-css-anim-2:nth-child(1) {
  animation-delay: 0s;
}
.a-css-anim-2:nth-child(2) {
  animation-delay: 0.1s;
}
.a-css-anim-2:nth-child(3) {
  animation-delay: 0.2s;
}
.a-css-anim-2:nth-child(4) {
  animation-delay: 0.3s;
}
.a-css-anim-2:nth-child(5) {
  animation-delay: 0.4s;
}

.a-js-anim-4 {
  opacity: 0;
  transition: 1s;
  transform: translateY(50px);
}

.a-js-anim-3 {
  opacity: 0;
  transition: opacity 1s;
}

.a-js-anim-1, .a-js-anim-2 {
  opacity: 0;
  transition: 0.5s;
  transform: scale(0.9);
}

@media only screen and (min-width: 1025px) {
  .a-landing__title {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (min-width: 1280px) {
  .a-landing__title {
    flex: 0 0 45%;
    max-width: 45%;
  }
}
.a-landing__subtitle {
  margin: 12px 0 0 0;
  line-height: 1.5rem;
}
@media only screen and (min-width: 1025px) {
  .a-landing__subtitle {
    line-height: 2rem;
    margin: 0 0 10px 64px;
    align-self: flex-end;
  }
}
.a-landing__subtitle--comfort {
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 1025px) {
  .a-landing__subtitle--comfort {
    grid-template-columns: 1fr 200px;
  }
}
.a-landing__subtitle--comfort svg {
  max-width: 180px;
  justify-self: center;
  margin-top: 24px;
}
@media only screen and (min-width: 1025px) {
  .a-landing__subtitle--comfort svg {
    justify-self: end;
    margin-top: 0;
  }
}

.a-image-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0 0 0;
}
@media only screen and (min-width: 1025px) {
  .a-image-grid {
    grid-template-columns: 1fr 1fr 1fr;
    margin: 42px 0 0 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-image-grid {
    gap: 20px;
  }
}
.a-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.a-image-grid__subgrid {
  gap: 10px;
  display: grid;
  grid-template-columns: 1fr;
  grid-column: 2/3;
  grid-row: 1/2;
}
@media only screen and (min-width: 1025px) {
  .a-image-grid__subgrid {
    grid-column: 2/3;
    grid-row: 1/4;
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 1280px) {
  .a-image-grid__subgrid {
    gap: 20px;
  }
}
.a-image-grid__subgrid .a-image-grid__cell:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media only screen and (min-width: 1025px) {
  .a-image-grid__subgrid .a-image-grid__cell:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.a-image-grid__subgrid .a-image-grid__cell:nth-child(2) {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media only screen and (min-width: 1025px) {
  .a-image-grid__subgrid .a-image-grid__cell:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.a-image-grid > .a-image-grid__cell:first-child {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media only screen and (min-width: 1025px) {
  .a-image-grid > .a-image-grid__cell:first-child {
    grid-column: 1/2;
    grid-row: 1/4;
  }
}
.a-image-grid > .a-image-grid__cell:nth-child(3) {
  grid-column: 1/3;
  grid-row: 2/3;
}
@media only screen and (min-width: 1025px) {
  .a-image-grid > .a-image-grid__cell:nth-child(3) {
    grid-column: 3/4;
    grid-row: 1/2;
  }
}
.a-image-grid > .a-image-grid__cell:nth-child(4) {
  grid-column: 1/3;
  grid-row: 3/4;
}
@media only screen and (min-width: 1025px) {
  .a-image-grid > .a-image-grid__cell:nth-child(4) {
    grid-column: 3/4;
    grid-row: 2/3;
  }
}
.a-image-grid > .a-image-grid__cell:nth-child(5) {
  grid-column: 1/3;
  grid-row: 4/5;
}
@media only screen and (min-width: 1025px) {
  .a-image-grid > .a-image-grid__cell:nth-child(5) {
    grid-column: 3/4;
    grid-row: 3/4;
  }
}

.a-about-block {
  margin: 60px 0 0 0;
}
.a-about-block .a-quote {
  margin: 40px 0 0 0;
}
.a-about-block__cards {
  margin: 40px 0 0 0;
}
@media only screen and (min-width: 1025px) {
  .a-about-block__cards {
    margin: 0 0 0 32px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-about-block__cards {
    margin: 0 0 0 86px;
  }
}
.a-about-block__decorated-text {
  padding: 28px;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 2.0625rem;
  letter-spacing: 0.01em;
  text-align: center;
  border: solid 3px #40b93c;
}
.a-about-block .a-cards {
  margin: 40px 0 0 0;
}

.a-cards {
  margin: 24px 0 0 0;
}

.a-tags {
  margin: 40px 0 0 0;
  border: solid 1px rgba(0, 0, 0, 0.1);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 1025px) {
  .a-tags {
    padding: 40px;
  }
}
.a-tags:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 86px 0 0 22px;
  width: 2349px;
  height: 2349px;
  z-index: 1;
  content: "";
  background: url(../images/assets/black-circle-decor.svg) 0 0 no-repeat;
  opacity: 0.1;
}
.a-tags__list {
  position: relative;
  z-index: 2;
  margin: -20px 0 0 0;
}
@media only screen and (min-width: 1025px) {
  .a-tags__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: -20px 0 0 -20px;
  }
}
.a-tags__tag {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25rem;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  background: white;
  border: solid 3px #40b93c;
  padding: 18px 20px;
  margin: 20px 0 0 0;
  width: 100%;
}
@media only screen and (min-width: 1025px) {
  .a-tags__tag {
    margin: 20px 0 0 20px;
    white-space: nowrap;
    flex: 1;
  }
}

.a-services {
  margin: 80px 0 0 0;
}
.a-services .a-iconed-list {
  margin: 80px 0 0 0;
}
.a-services .a-image-decoration {
  margin: 80px 0 0 0;
}
.a-services .a-iconed-cards {
  margin: 80px 0 0 0;
}

.a-efficiency {
  margin: 80px 0 0 0;
}
.a-efficiency .a-iconed-list {
  margin: 80px 0 0 0;
}

.a-team {
  margin: 80px 0 0 0;
}
.a-team__row {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1025px) {
  .a-team__row {
    flex-direction: row;
  }
}
.a-team__row + .a-team__row {
  margin: 40px 0 0 0;
}
@media only screen and (min-width: 1025px) {
  .a-team__block {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}
.a-team__block_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 2;
}
@media only screen and (min-width: 1025px) {
  .a-team__block_text {
    order: initial;
  }
}
.a-team__block_image {
  position: relative;
  padding: 0 0 12px 0;
  order: 1;
}
@media only screen and (min-width: 1025px) {
  .a-team__block_image {
    order: initial;
  }
}
.a-team__block_image:after {
  position: absolute;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  border: solid 3px #40b93c;
  content: "";
  top: 12px;
  z-index: 1;
}
.a-team__block_image:nth-child(even) {
  margin: 0 0 40px 0;
}
@media only screen and (min-width: 1025px) {
  .a-team__block_image:nth-child(even) {
    margin: 0 0 0 52px;
  }
}
.a-team__block_image:nth-child(even):after {
  left: 12px;
}
.a-team__block_image:nth-child(odd) {
  margin: 0 0 40px 0;
}
@media only screen and (min-width: 1025px) {
  .a-team__block_image:nth-child(odd) {
    margin: 0 52px 0 0;
  }
}
.a-team__block_image:nth-child(odd):after {
  left: 0;
}
.a-team__block_image:nth-child(odd) .a-team__image {
  margin-left: 12px;
}
.a-team__image {
  display: block;
  max-width: calc(100% - 12px);
  position: relative;
  z-index: 2;
}
.a-team__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.375rem;
  color: #000000;
}
.a-team__text {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2.125rem;
  color: #5c5c5c;
  margin: 16px 0 0 0;
}

.a-contacts {
  margin: 80px 0;
  padding: 0;
}
.a-contacts__block {
  margin: 24px 0 0 0;
}
.a-contacts__phone {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.375rem;
}
.a-contacts__address {
  padding: 0;
  position: relative;
}
@media only screen and (min-width: 1025px) {
  .a-contacts__address {
    flex: 0 0 356px;
    max-width: 356px;
  }
}
.a-contacts__decor {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 52px;
  background-color: #40b93c;
  overflow: hidden;
  display: none;
}
.a-contacts__decor:after {
  content: "";
  width: 1329px;
  height: 1329px;
  background: url(../images/assets/white-circle-decor.svg) 0 0 no-repeat;
  position: absolute;
  display: block;
  right: -664px;
  top: -614px;
}
@media only screen and (min-width: 1025px) {
  .a-contacts__decor {
    display: block;
  }
}
.a-contacts__text {
  margin: 24px 0 0 0;
  padding: 0 0 0 36px;
  position: relative;
  background: url(../images/assets/position-icon.svg) left center no-repeat;
}
.a-contacts__email {
  margin: 12px 0 0 0;
  display: inline-block;
  padding: 0 0 0 36px;
  position: relative;
  background: url(../images/assets/email-icon.svg) left center no-repeat;
}
@media only screen and (min-width: 1025px) {
  .a-contacts__map {
    margin: 0 0 0 44px;
    min-height: 338px;
  }
}

.a-image-decoration {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .a-image-decoration {
    display: block;
  }
}