.footer {
  position: relative;
  box-sizing: border-box;
  height: 336px;
  width: 100%;
  padding: 80px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-bg-color {
  background:#003F64;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-bg-img {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../assets/images/footer_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer__info,
.footer__additionals {
  width: 1170px;
  max-width: calc(100% - 385px);
  padding: 0 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__info {
  padding-bottom: 40px;
}

.footer__main {
  display: flex;
  align-items: center;
  gap: 80px;
}

.footer__logo {
  width: 120px;
  height: 109px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__phone, .footer__email {
  color: #F2EBE5;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.footer__labels {
  display: flex;
  gap: 30px;
}

.footer__label--girls-stem {
  background: url(../assets/images/footer-label-stem.png);
  background-size: cover;
  width: 70px;
  height: 70px;
}

.footer__label--csrua {
  background: url(../assets/images/footer-label-csrua.png);
  background-size: cover;
  width: 122.5px;
  height: 70px;
}

.footer__additionals {
  color: #F2EBE5;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.footer__privacy {
  cursor: pointer;
}

@media (max-width: 1169px) {
  .footer {
    padding: 40px 0 30px;
    height: max-content;
    text-align: center;
  }

  .footer__info,
  .footer__additionals {
    max-width: calc(100% - 15px * 2);
    flex-direction: column;
  }

  .footer__info {
    padding-bottom: 30px;
    gap: 30px;
  }

  .footer__main {
    flex-direction: column;
    gap: 40px;
  }

  .footer__contacts {
    gap: 10px;
  }

  .footer__phone, .footer__email {
    font-size: 18px;
    line-height: 26px;
  }

  .footer__additionals  {
    gap: 10px;
    font-size: 14px;
    line-height: 20px;
  }
}