@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;800;900&display=swap');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

p {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.15px;
  font-weight: 400;
}

.top_bar {
  width: 100%;
  display: block;
}
.top_bar .telefono {
  width: 100%;
  display: block;
  background-color: #ce0e2d;
  padding: 18px 40px;
}
.top_bar .telefono p {
  font-size: 16px;
  color: #fafafa;
  font-weight: 500;
  text-align: right;
}
.top_bar .telefono p a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: #fafafa;
}
.top_bar .header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 10px solid #00205c;
  padding: 15px 40px 10px;
}
.top_bar .header .logo {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 50%;
}
.top_bar .header .logo a {
  text-decoration: none;
}
.top_bar .header .logo a img {
  width: 170px;
  margin-right: 50px;
}
.top_bar .header .leyenda {
  width: 50%;
  text-align: right;
}
.top_bar .header .leyenda p {
  font-size: 24px;
  font-weight: 500;
  color: #001a70;
}

.bottom_bar {
  width: 100;
  background-color: #001a70;
  padding: 36px 20px;
  text-align: center;
}
.bottom_bar_marquee {
  width: 100;
  border-top: 10px solid #fafafa;
  background-color: #ce0e2d;
  padding-top: 20px;
}
.bottom_bar .logo {
  display: block;
}
.bottom_bar .logo a {
  text-decoration: none;
}
.bottom_bar .logo a img {
  width: 260px;
}
.bottom_bar .bottom_info {
  width: 100%;
  display: block;
  margin-top: 30px;
}
.bottom_bar .bottom_info p {
  font-size: 19px;
  color: #fafafa;
  font-weight: 400;
  line-height: 23px;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 12px;
}
.bottom_bar .bottom_info p a {
  text-decoration: none;
  color: #fafafa;
  font-family: 'Roboto', sans-serif;
}

@media only screen and (max-width: 720px) {
  .top_bar .header .logo a img {
    width: 120px;
  }

  .top_bar .header .leyenda p {
    font-size: 20px;
  }

  .bottom_bar .logo a img {
    width: 180px;
  }
}
@media only screen and (max-width: 420px) {
  .top_bar .telefono {
    padding: 10px;
  }
  .top_bar .telefono p {
    text-align: center;
    font-size: 14px;
  }

  .top_bar .header {
    padding: 15px 10px 10px;
  }

  .bottom_bar .bottom_info p {
    font-size: 14px;
  }

  .bottom_bar .logo a img {
    width: 120px;
  }
}
@media only screen and (max-width: 380px) {
  .top_bar .header .leyenda p {
    font-size: 16px;
  }
}
