* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Arimo", sans-serif;
  color: rgba(0, 0, 0, 0.823);
}
.container {
  width: 960px;
  margin: 0 auto;
  padding: 10px 20px 300px 20px;
  background: #ffff;
  border-radius: 10px;
}
.img {
  display: block;
  width: 100%;
  margin: 10px auto;
  border-radius: 4px;
  border: 1px solid #000;
  max-width: 660px;
}
strong {
  color: #e1153a;
}
.content {
  padding: 0 67px;
}
.btn {
  background: #ffe300;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  height: 72px;
  border-radius: 40px;
  border: none;
  outline: none;
  margin-top: 5px;
  margin-bottom: 30px;
  cursor: pointer;
  transition: 0.5s;
  box-shadow: rgb(207, 185, 0) 0px -3px 3px 0px inset;
}
.btn:hover {
  transform: scale(1.1);
}
p {
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 13px;
  font-weight: bold;
}
.bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
}
header {
  display: flex;
  align-items: center;
  padding: 9px 86px;
  border: #000 1px dashed;
}
header p {
  color: #0f1a5c;
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  margin-left: 13px;
  margin-bottom: 0;
}
header img {
  width: 59px;
  height: 55px;
  border: 1px solid #386cce;
}
.infos {
  display: flex;
}
.infos span {
  display: flex;
  align-items: flex-end;
  color: #7c7777;
  font-size: 12px;
}
.infos svg {
  margin-right: 7px;
}
.infos span:first-child {
  margin-right: 21px;
}
h1 {
  margin-top: 42px;
  text-align: center;
  font-size: 46px;
  line-height: 51px;
}
h1 span {
  color: rgba(18, 113, 217, 0.88);
}
h1 strong {
  color: #e1153a;
}
h2 {
  color: rgba(18, 113, 217, 0.88);
  font-size: 46px;
  line-height: 46px;
  text-align: center;
  margin-top: 28px;
}
h3 {
  color: rgba(18, 113, 217, 0.88);
  font-size: 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold !important;
  line-height: 22px;
  margin-bottom: 16px;
}
p em {
  margin-bottom: 48px;
  font-size: 18px;
  display: block;
  line-height: 31px;
}
footer {
  margin-top: 320px;
  text-align: center;
}
footer * {
  color: #020202;
  font-size: 13px;
}
.links a {
  padding: 5px;
  text-decoration: underline;
  display: inline-block;
}
.copy {
  margin-top: 30px;
  display: block;
  margin-bottom: 100px;
}
footer p {
  margin-bottom: 11px;
  line-height: 15px;
}
.disclaimer {
  max-width: 500px;
  margin: 22px auto 0 auto;
}

@media (max-width: 960px) {
  .container {
    width: 90%;
    padding: 30px 15px;
  }
  .content {
    padding: 0;
  }
}
@media (max-width: 550px) {
  header {
    padding: 10px;
  }
  header p {
    font-size: 14px;
  }
  h1 {
    font-size: 24px;
    line-height: 24px;
  }
  h2 {
    font-size: 18px;
  }
  .img {
    margin: 10px auto;
  }
  p,
  p em {
    font-size: 16px;
    line-height: 24px;
  }
  h3 {
    font-size: 16px;
  }
  .btn {
    font-size: 18px;
  }
  footer {
    margin-top: 100px;
  }
}
