html {
    width: 100vw;
    overflow-x: hidden;
}
body {
  background: #ffffff;
  color: #555;
  overflow-x: hidden;
  width: 100vw;
}

#mensaje {
  background: #fff;
}

header {
  background: #1a2757;
}

footer {
  background: #1a2757;
}

.social a {
  background: white;
  color: #1a2757;
  width: 45px;
  height: 45px;
  display: flex;
  text-align: center;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-size: 25px;
}

.social2 a {
  background: white;
  color: #1a2757 !important;
  width: 35px;
  height: 35px;
  display: flex;
  text-align: center;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-size: 18px;
}

.social {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 20px;
}

#mainvid {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.headersection {
  background: url("../../assets/img/top-banner.webp?h=fa9aa9f376740974589dd706a489e476");
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}

iframe {
    max-width: 100% !important;
    aspect-ratio: 560 / 315;
    width: 800px;
}

@media (min-width: 1024px) {
  .social2 {
    position: absolute;
    right: 0;
    display: flex;
    top: 50%;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 1023px) {
  .social2 {
    display: none;
  }
}

.social a:hover, .social2 a:hover {
  text-decoration: none;
}

.col.nav {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 24px 0;
}
.col.nav a, .col.nav a:hover {
    color: #1a2757;
    font-weight: 700;
    background: #fff;
    padding: 8px 24px;
    border-radius: 12px;
    text-decoration: none;
}
.col.nav a:hover {
    box-shadow: 0 0 10px #fff;
}
form input[type=email] {
    border-radius: 50px;
    border: solid 3px #1a2757;
}
form .btn-primary {
    border-radius: 50px;
    border: solid 3px #1a2757;
    background-color: #1a2757;
    font-weight: 700;
    padding: 12px 24px;
}