* {
  box-sizing: border-box;
  margin: 0;
}
body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
}
html {
  font-size: 10px;
  scroll-behavior: smooth;
}
body {
  background-attachment: fixed;
  background-color: #fff;
  background-image: url(../assets/background.svg),
    linear-gradient(180deg, #fff, #aaa);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  color: #222;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.15;
  min-height: 100vh;
  position: relative;
}
a {
  color: #4882a4;
}
img {
  vertical-align: middle;
}
footer,
header {
  align-items: center;
  display: flex;
}
header {
  height: 15rem;
  min-height: 150px;
}
header a {
  color: #222;
}
footer,
footer a {
  color: #fff;
}
footer {
  background-color: #526176;
  flex-direction: column;
  justify-content: center;
  margin-top: auto;
  padding: 2.5rem 0;
}
main {
  flex: 1 0 auto;
}
h1,
h2,
p {
  margin-bottom: 2.5rem;
}
h1 {
  font-size: 3.2rem;
}
h2 {
  font-size: 2.4rem;
}
h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
ol,
ul.list-style-disc {
  padding-left: 2.5rem;
}
.ul li {
  margin-bottom: 2.5rem;
}
section {
  text-align: center;
}
.logo {
  display: block;
  width: 20rem;
}
.container {
  margin: 0 auto;
  max-width: 768px;
  width: 95%;
}
.container-left,
.container-right {
  flex: 1 1 50%;
}
.footer__container {
  justify-content: space-between;
  margin-bottom: 1rem;
}
.footer__container,
.header__navigation,
.header__navigation__slot {
  display: flex;
  flex-direction: row;
}
.header__navigation__slot {
  flex: 1 1 auto;
  gap: 5rem;
  justify-content: center;
}
.header__navigation__slot:first-child,
.header__navigation__slot:last-child {
  flex: 0 0 20rem;
  width: 20rem;
}
.header__navigation__slot:last-child {
  justify-content: flex-end;
}
.header__menu-item {
  align-items: center;
  display: flex;
  height: 5.4rem;
  text-decoration: underline;
}
.button,
.header__menu-item-contact {
  background-color: #eee;
  border: 1px solid #222;
  border-radius: 0.5rem;
  box-shadow: 0 1px 1px 0 #969696;
  justify-content: center;
  padding: 0 1rem;
  text-decoration: none;
  width: 100%;
}
.button:hover,
.header__menu-item-contact:hover {
  background-color: #ddd;
  box-shadow: none;
}
.button {
  align-items: center;
  color: #222;
  display: flex;
  height: 5.4rem;
  width: 20rem;
}
.section-contact,
.section-features,
.section-we-offer,
.section-why-choose-us {
  margin-bottom: 5rem;
  padding-top: 2.5rem;
}
.section-contact__container {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.icon {
  display: inline-block;
  vertical-align: middle;
}
.icon-check-mark-green {
  color: #2b742e;
}
.icon-star {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  header {
    height: auto;
    min-height: auto;
    padding: 2.5rem 0;
  }
  .header__navigation,
  .header__navigation__slot {
    flex-direction: column;
  }
  .header__navigation__slot,
  .header__navigation__slot:first-child,
  .header__navigation__slot:last-child {
    flex: 1 1 auto;
  }
  .header__navigation__slot {
    gap: 0;
    justify-content: normal;
  }
  .header__menu-item {
    height: auto;
    margin-bottom: 1rem;
  }
  .header__menu-item-contact {
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    justify-content: normal;
    padding: 0;
    text-decoration: underline;
    width: auto;
  }
  .footer__container {
    flex-direction: column;
  }
}
