@font-face {
  font-family: "AvenirNextLTPro-Regular";
  src: url("../fonts/AvenirNextLTPro-Regular.eot");
  src: url("../fonts/AvenirNextLTPro-Regular?#iefix")
      format("embedded-opentype"),
    url("../fonts/AvenirNextLTPro-Regular.woff") format("woff"),
    url("../fonts/AvenirNextLTPro-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@keyframes fadeIn {
  0% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

body {
  font: 18px/1.4em "AvenirNextLTPro-Regular", Avenir, Helvetica, Arial,
    Helvetica, sans-serif;
  color: rgb(253, 253, 253);
  background: rgb(5, 5, 5);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.1px;
  padding: 0;
  margin: 0;
}

h2 {
  font-size: 18px;
  font-weight: normal;
}

a {
  position: relative;
  color: rgb(163, 163, 163);
  text-decoration: none !important;
  transition: color 0.3s ease-in-out;
}

a:after {
  content: "";
  position: absolute;
  width: calc(100% - 6px);
  height: 1px;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid rgb(163, 163, 163);
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: rgb(253, 253, 253) !important;
}

a:hover:after {
  width: 0;
}

p {
  margin: 0;
  padding-block: 8px;
}

.container {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  transition-property: opacity, transform;
  transition-delay: 250ms;

  display: flex;
  flex-flow: row wrap;
  animation: fadeIn 1.5s both 0.5s;
}

.container-info {
  display: flex;
  padding: 96px;
  flex: 1 0 50%;
  justify-content: center;
}

.logo {
  float: left;
  background-size: cover;
  background-position: 50%;
  width: 210px;
  height: 210px;
  margin: auto;
  background-image: url("../images/logo.png");
}

.header {
  font-size: 36px;
  margin-bottom: 12px;
}

.info {
  max-width: 540px;
}

.contact-link {
  display: flex;
  flex-direction: column;
  opacity: 0.8;
  font-size: 12px;
  line-height: 16px;
  color: rgb(212, 212, 212);
  transition: all 0.3s ease-in-out;
}

.contact-link:after {
  content: none;
}

.contact-link:hover {
  opacity: 1;
}

.logo {
  -webkit-animation: fadeIn 1.1s both 0.5s;
  -moz-animation: fadeIn 1.1s both 0.5s;
  -o-animation: fadeIn 1.1s both 0.5s;
  animation: fadeIn 1.1s both 0.5s;
}

section {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  margin: 16px 0 0 0;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
article > p {
  animation: fadeIn 1.5s both 0.5s;
  transition-delay: 350ms;
}

@media (max-width: 768px) {
  .container-info {
    padding: 32px;
  }

  .info {
    padding-top: 0;
  }
}

@media (max-width: 700px) and (orientation: landscape) {
  .info {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
  }

  .logo {
    float: none;
    width: 120px;
    height: 120px;
    min-width: 120px;
  }
}

@media (max-width: 667px) {
  body {
    font-size: 16px;
  }
  .logo {
    float: none;
    width: 160px;
    height: 160px;
    min-width: 160px;
    margin-bottom: 10px;
  }
}

@media (max-width: 320px) {
  .logo {
    width: 120px;
    height: 120px;
    min-width: 120px;
  }
}
