/* прижать футер к низу */
html,
body {
  height: 100%;
  font-style: normal;
}
.main {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.content {
  flex: 1 0 auto;
}
.footer {
  flex: 0 0 auto;
}

.header, .footer, .content {
  padding: 1.5rem 2.2rem;
  @include respond-max(mobile-ml) {
    padding: 1rem 1.5rem;
  }
}


.content {
  grid-area: header;
  background: #5D6671;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "icon info";
  @include respond-max(tablet) {
    grid-template-columns: 1fr 2fr;
  }

  @include respond-max(mobile-ml) {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr;
    grid-template-areas:
            "icon"
            "info"
  ;
  }
  &__icon {
    grid-area: icon;
    height: 55%;
    @include respond-max(mobile-ml) {
      height: 70%;
      align-self: end;
      margin: 10% 0;
    }
  }
  &__info {
    grid-area: info;
    margin: 4rem;


    @include respond-max(mobile-ml) {
      margin: 10% 0;
      align-self: start;
    }
  }
  &__info-title {
    font-size: 2rem;
    color: #BB9B6D;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    @include respond-max(tablet-sm) {
      font-size: 1.5rem;
    }
    @include respond-max(mobile-ml) {
      font-size: 1.1rem;
    }
  }
  &__info-text {
    font-size: 1.1rem;
    color: #fff;
    line-height: 120%;
    @include respond-max(tablet-sm) {
      font-size: 1rem;
    }
    @include respond-max(mobile-ml) {
      font-size: .8rem;
    }
  }
}

.footer {
  grid-area: footer;
  background: #D8D7D5;
  color: #2F2F2F;
  & a {
    color: #BB9B6D;
    text-decoration: none;
  }
  & a:hover {
    text-decoration: underline;
  }
}

