* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  min-width: 320px;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-family: "Ubuntu", sans-serif;
  color: #000000;
  line-height: 1.6em;
}

body {
  overflow-x: hidden;
}

a {
  -webkit-transition: background 0.3s ease-out, color 0.3s ease-out, border-color 0.3s ease-out, opacity 0.3s ease-out;
  transition: background 0.3s ease-out, color 0.3s ease-out, border-color 0.3s ease-out, opacity 0.3s ease-out;
  text-decoration: none;
  color: #0077c0;
}
a:hover {
  color: #337ab7;
}

.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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
@media only screen and (min-width: 800px) {
  .container {
    width: 700px;
    padding: 0;
  }
}

.animated-link {
  overflow: hidden;
  position: relative;
  border: 2px solid #0077c0;
  border-radius: 8px;
}
.animated-link::after {
  display: block;
  content: "";
  height: 100%;
  width: 75px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5));
  position: absolute;
  top: 0;
  left: -95px;
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
}
.animated-link:hover {
  background-color: #0077c0;
  border: 2px solid #0077c0;
  color: #fff;
}
.animated-link:hover::after {
  left: 110%;
  -webkit-transition: 0.9s ease-in-out;
  transition: 0.9s ease-in-out;
}

.header {
  width: 100%;
  padding: 20px 0;
}
.header__logo {
  max-width: 120px;
  margin: 0 auto;
  text-align: center;
}
.header__logo img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.footer {
  padding: 10px 0;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media only screen and (min-width: 600px) {
  .footer__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
.footer__link {
  font-weight: 500;
  font-size: 14px;
  color: #337ab7;
  line-height: 20px;
}
.footer__link:hover {
  color: #111111;
}

.main {
  text-align: center;
}
.main__title {
  margin: 5px 0;
  font-weight: 700;
  font-size: 48px;
  line-height: 53px;
}
.main__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}
@media only screen and (min-width: 600px) {
  .main__text {
    font-size: 20px;
    line-height: 29px;
  }
}
.main img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.main__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  min-height: 60px;
  margin: 20px auto 0 auto;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 20px;
}
.main__img {
  margin-top: 20px;
}

.info-section {
  margin: 20px 20px 10px 20px;
  font-size: 11px;
  color: #aaaaaa;
  text-align: center;
  line-height: 16px;
}