
body,
body * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.bg-blue {
  background-color: #03a9f5;
}

.logo {
  height: 40px;
}

.main-title {
  font-size: 50px;
  text-transform: uppercase;
  color: #000;
}

.main-description {
  font-size: 22px;
  color: #ccc;
}

.section-title {
  font-size: 25px;
  color: #000;
}

.section-description {
  font-size: 17px;
  line-height: 25px;
  color: #555;
}
.section-description > a {
  color: #eb1e61;
  text-decoration: none;
}

footer {
  /* color: rgba(255, 255, 255, 0.8); */
  color: #ffffffcd;
}

.logo-white {
  height: 60px;
  margin-bottom: 30px;
}

footer a {
  color: #fff;
}

.text-trio {
  display: flex;
  gap: 0 30px;
}

@media (max-width: 700px) {
  .text-trio {
    flex-direction: column;
  }
}
