@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@1,600&family=Inter:wght@600&display=swap");

body {
  background-size: cover;
  background-color: grey;
  padding: 0;
  color: #fff;
  font-family: "Inter", sans-serif;
}
#section-simple ul {
  list-style: disc;
  padding-left: 40px;
}
#section-simple ul li {
  list-style: disc;
  color: white;
  font-size: 30px;
  font-family: Inter;
  font-weight: 500;
}
#section-simple ul li + li {
    margin-top: 30px;
}
.about-us-box .about-text {
  font-size: 0.9em;
  text-align: justify;
}
header {
  text-align: center;
  height: 400px;
}
header img {
  width: 200px;
}
.services-box {
  text-align: center;
}
.services-box a {
  display: inline-block;
  height: 45px;
  width: 135px;
  max-width: 100%;
  text-align: center;
  margin: 8px 10px 30px 10px;
  background: #fff;
  box-shadow: 1px 1px 2px rgba(4, 36, 63, 0.8);
  padding: 3px;
}
.services-box a + a {
  margin-bottom: 0;
}
.services-box a img {
  display: inline-block;
  max-height: 100%;
}
.services-box a img::before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
#footer p {
  font-size: 0.9em;
}
.link_policy {
  margin: 0 auto;
  padding-left: 5px;
  text-align: center;
}

.container {
  margin: 0 auto;
  padding: 0 5px;
  padding-bottom: 40px;
}
#footer {
  font-weight: 400;
  background: #000;
  color: #9b99a3;
  padding: 15px 0;
  border-top: solid 1px #534f66;
}
#footer a {
  text-decoration: none;
  outline: none;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  color: #9b99a3 !important;
}

#footer a:hover {
  color: #fff !important;
}
.logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

h1 {
  font-size: 64px;
  font-family: Inter;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 35px;
}
.subtitle {
  color: white;
  font-size: 28px;
  line-height: 34px;
  font-family: Inter;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
  margin-top: 0;
}
.question {
  color: white;
  font-size: 26px;
  font-family: Inter;
  font-weight: 600;
  padding: 38px 20px;
  background-color: green;
  border-radius: 15px;
}
.answer-title {
  color: white;
  font-size: 32px;
  font-family: Inter;
  font-weight: 700;
  text-transform: uppercase;
  margin: 30px 0;
}
h1 br {
  display: none;
}

span {
  font-weight: 900;
  color: #ffe600;
}

p {
  color: white;
  font-size: 30px;
  font-family: Inter;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 30px;
}
p + p {
  margin-top: 30px;
}
.items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.item {
  display: flex;
  width: 100%;
}
.item .left-item {
  width: 60%;
  position: relative;
}
.left-item img {
  width: 100%;
}
.left-item img:last-child {
  display: none;
}
.item .right-item {
  width: 40%;
}
.right-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.right-item img {
  width: 70%;
}
.right-item a {
  background-color: orange;
  color: #fff;
  padding: 20px 60px;
  border-radius: 5px;
}

img.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 280px;
}
