:root {
  --white: #ffffff;
  --primary: #013949;
  --secondary: #c5dee2;
}

html,
body {
  margin: 0;
  font-size: 6px;
  font-weight: 400;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
}

html * {
  box-sizing: border-box;
}

body::-webkit-scrollbar {
  display: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  font-weight: 400;
}

h1 {
  font-size: 9rem;
  letter-spacing: -4px;
}

h2 {
  font-size: 9rem;
  letter-spacing: -4px;
  text-transform: uppercase;
}

h3 {
  font-size: 5.5rem;
}

h4 {
  font-size: 3rem;
}

i {
  font-style: italic;
}

p,
span {
  font-size: 2rem;
}

ul,
li {
  padding: 0;
  list-style: none;
}

li {
  font-size: 0;
  text-transform: uppercase;
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
}

.column.full {
  width: 100%;
}

.logo-content {
  max-height: 5.5rem;
}

.logo-content.lg {
  max-height: 6.5rem;
}

.logotipo-content {
  max-height: 3.5rem;
}

.logotipo-content.lg {
  max-height: 4.5rem;
}

.uppercase {
  text-transform: uppercase;
}

.text-right {
  text-align: right;
}

.accordeon .item {
  position: relative;
  padding: 2rem 1rem 2rem 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.accordeon .item .accordeon-expand {
  cursor: pointer;
}

.accordeon .item .accordeon-expand h4 {
  display: inline-block;
}

.accordeon .item .accordeon-expand::after {
  right: 1rem;
  opacity: 0.5;
  content: "+";
  font-size: 6rem;
  font-weight: 200;
  line-height: 3rem;
  position: absolute;
  vertical-align: text-bottom;
}

.accordeon-body {
  overflow: hidden;
}

.accordeon .item .accordeon-content {
  margin-top: -500%;
  padding-top: 3rem;
  text-transform: none;
  transition: margin ease-in 0.15s;
}

.accordeon .item.active .accordeon-content {
  margin-top: 0;
}

.accordeon .item .accordeon-content ul li {
  padding-bottom: 1rem;
  text-transform: none;
}

.accordeon .item .accordeon-content ul li b {
  font-weight: bold;
  font-size: 2rem;
}

.accordeon .item .accordeon-content ul li span {
  font-size: 1.35rem;
}


.full-content {
  height: 100vh;
  position: relative;
  overflow-y: scroll;
  flex-flow: column nowrap;
  scroll-snap-type: y mandatory;
}

.full-content::-webkit-scrollbar {
  display: none;
}

.full-content .page {
  gap: 10rem;
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  padding: 5rem 10rem 3rem 2rem;
}

.full-content .sidebar {
  top: 0;
  z-index: 999;
  height: 100vh;
  margin-top: 0;
  right: -1.5rem;
  position: fixed;
  text-align: center;
  padding-top: 20rem;
}

.full-content .sidebar.alternative span {
  color: var(--primary);
}

.full-content .sidebar li img {
  max-height: 35px;
}

.full-content .sidebar li {
  display: block;
  padding-top: 5rem;
  margin-right: -2rem;
  padding-bottom: 10rem;
}

.full-content .sidebar li.border.alt span {
  border: 1px solid var(--primary);
  border-radius: 2rem;
}
.full-content .sidebar li.border.white span {
  border: 1px solid var(--white);
  border-radius: 2rem;
}

.full-content .sidebar li.rotate span {
  display: block;
  padding: 0.5rem 1.5rem;
  transform: rotateZ(90deg) translateY(30%);
}

.banner {
  position: relative;
  background-size: cover;
  background-position: bottom right;
  background-image: url("/assets/img/banner.png");
}

.banner .content {
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.banner .content .logos {
  display: flex;
  margin-right: -6rem;
  justify-content: space-between;
}

.banner .overlay {
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  position: absolute;
  background-color: #000;
}

.banner .banner-title {
  width: 100%;
}

.banner h1 {
  padding-top: 3rem;
}

.banner h3 {
  margin-top: auto;
}

.us.page {
  padding-top: 1rem;
  background-color: var(--secondary);
}

.us h2 {
  padding-bottom: 1rem;
  color: var(--primary);
}

.us-content {
  height: 100vh;
  border-radius: 10px;
  background-size: cover;
  align-content: baseline;
  padding: 3rem 3rem 6rem;
  max-height: calc(100% - 80px);
  background-image: url("/assets/img/us.png");
}

.us-content .column.full {
  text-align: right;
  padding-bottom: 4rem;
}

.us-content .column.column-logo {
  padding-top: 4rem;
}

.contact {
  position: relative;
  background-color: var(--primary);
}

.contact .content {
  display: flex;
  flex-wrap: wrap;
}

.contact .content .column {
  width: 100%;
  padding-bottom: 8rem;
}

.contact .content .column.full {
  text-align: right;
  padding-right: 5rem;
  padding-bottom: 5rem;
}

.contact .card {
  height: 100%;
  min-height: 110px;
  position: relative;
  padding: 2rem 4rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  border: 1px solid var(--white);
}

.contact .contact-info {
  font-size: 2rem;
  line-height: 3rem;
}

.contact .contact-info li {
  width: 50%;
}

.contact .contact-info .contact-type {
  width: 3rem;
  display: inline-block;
}

.contact .card.alternative {
  color: var(--primary);
  background-color: var(--secondary);
}

.contact .card.alternative label {
  width: 90px;
  font-size: 2rem;
  font-weight: 500;
  vertical-align: sub;
  padding-bottom: 2rem;
  color: var(--primary);
  display: inline-block;
  text-transform: uppercase;
}

.contact .card.alternative label[for="message"] {
  vertical-align: top;
}

.contact .card.alternative input,
.contact .card.alternative textarea {
  border: none;
  outline: none;
  font-size: 2rem;
  background: none;
  width: calc(100% - 100px);
  font-family: "Montserrat", sans-serif;
  border-bottom: 1px solid var(--primary);
}

.contact .card.alternative #message {
  resize: none;
  height: 9rem;
  line-height: 3rem;
  border-bottom: none;
  background-size: 1px 3rem;
  background-repeat: repeat;
  background-position: 0 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1 1em'%3E%3Crect id='background' fill='none'/%3E %3Cline id='underline' y2='0' x2='0' y1='1' x1='1' stroke='%23013949' fill='none'/%3E %3C/svg%3E");
}

.contact .card.alternative #message::-webkit-scrollbar {
  display: none;
}

.contact .card.alternative .button {
  border: none;
  margin-top: 3rem;
  border-radius: 2rem;
  color: var(--white);
  padding: 0.5rem 2.5rem;
  background-color: var(--primary);
}

.contact .footer {
  left: 0;
  bottom: 0;
  width: 100%;
  margin-top: auto;
  text-align: center;
  position: absolute;
  padding: 4rem 0 3rem;
  border-top: 1px solid var(--white);
}

.contact .footer p {
  padding-top: 4px;
  letter-spacing: 3px;
}

@media screen and (min-height: 901px) {
  .full-content .page.us {
    padding-top: 10rem;
  }

  .us-content {
    padding: 6rem 6rem 8rem;
    max-height: calc(100% - 130px);
  }

  .us h2 {
    padding-bottom: 5rem;
  }
}

@media screen and (min-width: 542px) {
  .contact .contact-info {
    bottom: 0;
    left: 4rem;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    width: calc(100% -8rem);
  }
}

@media screen and (min-width: 768px) {
  .contact .card {
    min-height: 180px;
  }
}

@media screen and (min-width: 991px) {
  html,
  body {
    font-size: 8px;
  }

  .full-content .page:not(.us) {
    padding: 10rem 10rem 5rem 5rem;
  }

  .banner .banner-title img {
    margin-top: -5rem;
  }

  .banner h3 {
    max-width: 50%;
  }

  .column {
    width: 50%;
  }

  .contact .card {
    max-width: calc(100% - 3rem);
  }

  .contact .content .column:not(.full) {
    width: 50%;
  }
}
