*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  text-align: center;
}

header,
.inner-wrapper,
main,
footer {
  min-height: 360px;
}

main,
footer {
  padding: 88px 44px;
}

/**/
main {
  min-height: calc(100vh - 758px);
  padding: 0;
}
/**/

img {
  display: inline-block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

header {
  position: relative;
  background: url("../img/header-bg.jpg") center/cover no-repeat;
}
header .inner-wrapper {
  background: rgba(0, 0, 0, 0.59);
}
header .logo-wrapper {
  position: absolute;
  right: 50%;
  bottom: -40px;
  max-width: 380px;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 124px;
  color: #000;
  font-family: "Bebas Neue", sans-serif;
}
main .column {
  -ms-flex-preferred-size: 166px;
      flex-basis: 166px;
  text-align: center;
}
main .column .icon-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 94px;
  height: 94px;
  border: 4px solid #000;
  border-radius: 50%;
  margin: 0 auto 34px auto;
}
main .column h2 {
  font-size: 25px;
  text-transform: uppercase;
}
main .column img {
  max-width: 44px;
}
main .column:first-child img {
  max-width: 38px;
}
main .column:last-child img {
  max-width: 41px;
}

footer {
  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;
  background: #000;
  color: #fff;
  font-family: "Roboto", sans-serif;
}
footer .footer-wrapper {
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 18px;
}
footer .footer-wrapper p {
  margin-bottom: 18px;
}
footer .footer-wrapper p a {
  display: block;
  color: #fff;
  text-decoration: none;
}
footer .footer-wrapper p a:hover {
  text-shadow: 0 0 3px #9c9c9c, 0 0 7px #bcbcbc;
}

@media only screen and (max-width: 767px) {
  header,
.inner-wrapper,
main,
footer {
    min-height: 300px;
  }

  main,
footer {
    padding: 60px 30px;
  }

/**/
main {
  min-height: calc(100vh - 642px);
  padding: 0;
}
/**/

  main {
    gap: 50px;
  }

  header {
    background-position: 60%;
  }
}
@media only screen and (max-width: 576px) {
  header,
.inner-wrapper,
main,
footer {
    min-height: 250px;
  }

  main,
footer {
    padding: 60px 10px;
  }
	
/**/
main {
  min-height: calc(100vh - 592px);
  padding: 0;
}
/**/

  main .column {
    -ms-flex-preferred-size: 150px;
        flex-basis: 150px;
  }
  main .column .icon-wrapper {
    width: 70px;
    height: 70px;
    border: 3px solid #000;
    border-radius: 50%;
    margin: 0 auto 20px auto;
  }
  main .column h2 {
    font-size: 20px;
  }
  main .column img {
    max-width: 32px;
  }
  main .column:first-child img {
    max-width: 25px;
  }
  main .column:last-child img {
    max-width: 33px;
  }
}