body {
  background-color: #fff;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.container {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.logo {
  width: 100%;
  max-width: 500px;
  height: auto;
}
.resp {
  flex: 1;
  flex-wrap: wrap;
  align-self: center;
  margin: 0px auto;
  padding: 0px 20px;
}
.img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  margin: 40px auto 0px;
}
.img-box div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  position: relative;
}
.img-box div img {
  flex: 1;
  justify-content: center;
  border: 1px solid #b5b5b5;
  padding: 10px;
  max-width: 150px;
  height: auto;
}
.img-box div img.selected {
  border: 1px solid #0a4b8d;
}
.img-box div img.second {
  padding: 10px 17.5px;
}
a[type='button'] {
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  padding: 12px 0px 0px 0px;
  height: 30px;
  width: 400px;
  margin: 0 auto;
  background: #0a4b8d;
  color: white;
  font-weight: 600;
}
div.circle {
  background-color: #257806;
  padding: 5px;
  background-clip: content-box;
  border: 1px solid #707070;
  border-radius: 100px;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 14px;
  left: 15px;
}
div.circle:hover {
  padding: 3px;
  border: 3px solid #257806;
}
.active {
  display: inline-block;
}
.img-box div div.inactive {
  display: none;
  color: #707070;
}
p {
  display: block;
  text-align: center;
  max-width: 900px;
  color: #0a4b8d;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  margin: 20px auto;
}
p.strong {
  font-weight: 900;
}
.colorDeselected {
  color: #707070 !important;
}
span {
  font-weight: 600;
}
.mail {
  color: #707070;
  font-weight: 600;
  text-decoration: none;
}
.grey {
  color: #707070;
}
.grey2 {
  color: #b0b0b0;
}

hr {
  flex: 1;
  width: 90%;
  margin: 40px auto;
  max-width: 1530px;
  color: #707070;
}
hr.center-hr {
  width: 10%;
}
i {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: #707070;
}

@media only screen and (max-width: 480px) {
  .img-box {
    width: 90%;
  }
  .img-box div img {
    flex: 1;
    justify-content: center;
    border: 1px solid #b5b5b5;
    padding: 10px;
    max-width: 150px;
    height: auto;
  }
  a[type='button'] {
    width: 90%;
  }
} /* Narrow */
@media only screen and (min-width: 481px) and (max-width: 600px) {
  .img-box {
    width: 70%;
  }
} /* Medium */
@media only screen and (min-width: 601px) and (max-width: 768px) {
  .img-box {
    width: 80%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 960px) {
  .img-box {
    width: 80%;
  }
}
