@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700");

body {
  background-color: white;
  font-family: Raleway;
  font-weight: 400;
  color:#000000;
  font-size: 18px;
  line-height: 1.6;
}
.text-justify {
  text-align: justify;
}
h1, h2, h3 {
  font-family: Raleway;
  font-weight: 600;
  color:#14213D;
  font-size: 24px;
  line-height: 1.2;
}
.container {
  width: 700px;
  margin: 30px auto;
}
@media (max-width: 960px) {
  /* For a screen < 960px, this CSS will be read */
  .container {
    width: 700px;
  }
}
@media (max-width: 720px) {
  /* For a screen < 720px, this CSS will be read */
  .container {
    width: 500px;
  }
}
@media (max-width: 540px) {
  /* For a screen < 540px, this CSS will be read */
  .container {
    width: 400px;
  }
}

.card-white {
  background-color: white;
  padding: 30px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  margin: 20px 0px;
  text-align: center;
}
.img-circle {
  border-radius: 50%;
}
.btn-blue {
  background-color: #14213D;
  font-size: 18px;
  color: white;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 2px 4px 10px 4px rgba(20, 33, 61, 0.5);
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.btn-blue:hover {
  background-color: #14213D;
  color: #FCA311;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}
.list-inline {
  list-style: none;
  padding-left: 0px;
}
.list-inline li {
  display: inline;
  padding: 10px;
}
.list-inline i {
  font-size: 50px;
  color: #14213D;
}
.list-inline i:hover {
  color: #FCA311;
}