@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
.footer__container {
  font-family: Roboto;
  background: #274187;
  color: white;
}
.footer__content {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__icon img {
  width: 200px;
}
.footer__right {
  margin: 0 50px 0 0;
}
.footer__title {
  text-transform: uppercase;
  font-size: 2.5rem;
  text-align: center;
}
.footer__columns {
  margin: 20px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__column {
  min-width: 180px;
}
.footer__column-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 5px;
}
.footer__item {
  cursor: pointer;
  padding: 6px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__item:hover {
  opacity: 0.7;
}
.footer__item-icon svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.footer #footer__column-services .footer__item-icon svg path,
.footer #footer__column-services .footer__item-icon svg g,
.footer #footer__column-services .footer__item-icon svg rect,
.footer #footer__column-services .footer__item-icon svg circle {
  fill: #72c9d2;
  stroke: #72c9d2;
}
.footer__item-title {
  font-size: 1.2rem;
  color: white;
}
.footer__bottom {
  text-align: center;
  padding: 8px;
  background: black;
  color: white;
}

@media (max-width: 800px) {
  html {
    font-size: 10px;
  }
  .footer__right {
    margin: 0;
  }
  .footer__columns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 600px) {
  .footer__content {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__columns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__right {
    margin: 0;
  }
}
@media (max-width: 500px) {
  .footer__content {
    padding: 10px;
  }
  .footer__column {
    min-width: 120px;
  }
}