/* General */
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  background: #fff;
  font-family: trade-gothic-next, sans-serif;
}

.container {
  width: 100%;
  height: 100%;
}

.container__content {
  box-sizing: content-box;
  margin: 0 auto;
  max-width: 550px;
  padding: 20px;
}



/* Header */
header {
  margin-bottom: 48px;
}

header h2 {
  margin-top: 8px;
  color: #909292;
  font-weight: 300;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: 1%;
  text-align: center;
  text-transform: uppercase;

}

header img {
  display: block;
  max-width: 100%;
  height: auto;
}



/* Content */
main h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #4F758B;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: 1%;
}

main h4 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #909292;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 1%;
}

main p {
  margin-top: 0;
  color: #909292;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 1%;
}

.actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  row-gap: 5px;
  margin-bottom: 48px;
}

.actions__button {
  position: relative;
  padding: 18px 25px;
  background: #D44040;
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
  text-decoration: none;
}

.actions__button:hover,
.actions__button:active {
  background: #b52222;
}

.actions__button--metalmart {
  padding-left: 45px;
}

.actions__button--metalmart::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 21px;
  height: 21px;
  background: url(/img/btn-logo-metalmart.png) no-repeat top left;
  background-size: cover;
}

.actions__button--olympic {
  padding-left: 45px;
}

.actions__button--olympic::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 19px;
  height: 21px;
  background: url(/img/btn-logo-olympic.png) no-repeat top left;
  background-size: cover;
}

.actions__button[target="_blank"] {
  padding-right: 45px;
}

.actions__button[target="_blank"]::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 21px;
  height: 21px;
  background: url(/img/icon-arrow-up-right.svg) no-repeat top left;
  background-size: cover;
}

.wallpaper {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42vw;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: 50% 50%;
  clip-path: polygon(28% 0%, 100% 0%, 100% 100%, 0% 100%);
}



/* Footer */
footer {
  margin-top: 80px;
}

.social-button {
  display: inline-block;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-button img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: cover;
  object-position: 50% 50%;
  border: none;
}

footer .social-button:first-child {
  margin-left: -10px;
}



@media (min-width: 1200px) {
  .container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .container__content {
    margin-right: 0;
    margin-left: 9%;
  }

  .actions {
    flex-direction: row;
    column-gap: 5px;
  }

  .wallpaper {
		display: block;
	}
}