* {
  box-sizing: border-box;
  font-family: "Lato", serif;
  font-style: normal;
}
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
main {
  padding-top: 92px;
}
section {
  display: flex;
  flex-direction: column;
}
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}
.bg-primary {
  background-color: #021f40;
}
.bg-pink {
  background-color: #e93ddd;
}
.bg-white {
  background-color: #fff;
}
.bg-grey {
  background-color: #e5e5e5;
}
.text-primary {
  color: #021f40;
}
.text-blue {
  color: #110344;
}
.text-white {
  color: #fff;
}
.text-pink {
  color: #e93ddd;
}
.btn {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  min-width: 220px;
  padding: 10px;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
.btn-dcv-evoting {
  background-color: #e93ddd;
  border: 1px solid #e93ddd;
  color: #fff;
}
.btn-dcv-evoting:hover {
  color: #e93ddd;
  background-color: transparent;
}
.btn-dcv-evoting-outline {
  background-color: transparent;
  border: 1px solid #e93ddd;
  color: #e93ddd;
}
.btn-dcv-evoting-outline:hover {
  background-color: #e93ddd;
  border: 1px solid #e93ddd;
  color: #fff;
}
.max-width {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.px-section {
  padding-left: 20px;
  padding-right: 20px;
}
.py-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.paragraph {
  font-size: 16px;
  font-weight: 400;
}
.title-section {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 430px) {
  .px-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 576px) {
  .max-width {
    max-width: 750px;
  }
  .title-section {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .max-width {
    max-width: 950px;
  }
  .paragraph {
    font-size: 18px;
  }
  .px-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .py-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .title-section {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .max-width {
    max-width: 1200px;
  }
  .title-section {
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  main {
    padding-top: 100px;
  }
  .max-width {
    max-width: 1310px;
  }
  .paragraph {
    font-size: 20px;
  }
  .title-section {
    font-size: 38px;
  }
}
@media (min-width: 1400px) {
  .title-section {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .py-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
