body {
  margin: 0 auto;
  background-color: #48A6AB;
  color: #FFF;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.content {
  min-height: 402px;
  cursor: default;
  position: relative;
  left: 50%;
  top: 49%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.content>h2 {
  color: #005257;
}

.logo-effect {
  width: max-content;
  padding: 0;
  margin: 0;
  margin-left: 50%;
  transform: translateX(-100%);
  opacity: 0;
  animation: slideRight 1.5s ease-out forwards;
}

.title-effect {
  width: max-content;
  padding: 0;
  margin: 0;
  margin-left: 50%;
  transform: translateX(-10%);
  opacity: 0;
  animation: slideLeft 1.5s ease-out forwards;
}

.slide-effect {
  color: #005257;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text,
.slideDown,
.slideUp {
  position: relative;
  opacity: 0;
}

.text {
  top: 40px;
  animation: slideUp ease .4s forwards;
}

.slideDown {
  top: -40px;
  animation: slideDown ease .4s forwards .6s;
}

.slideUp {
  top: 40px;
  animation: slideUp ease .4s forwards 1.2s;
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

.contact>a {
  color: #005257;
  text-decoration: none;
  font-weight: bold;
  margin-left: 1px;
}

.fadeIn {
  animation: fadeIn 1s;
}

.footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  background-color: #0000000f;
}

.footer .container {
  width: 100%;
  color: #005257;
}

@keyframes slideRight {
  20% {
    opacity: 0;
  }

  60% {
    transform: translateX(-45%);
  }

  75% {
    transform: translateX(-52%);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%);
  }
}

@keyframes slideLeft {
  20% {
    opacity: 0;
  }

  60% {
    transform: translateX(-52%);
  }

  75% {
    transform: translateX(-45%);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%);
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-40px);
    opacity: 1;
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(40px);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Media Queries */

@media only screen and (max-width: 462px) {

  .text>h2,
  .slideDown>h2,
  .slideUp>h2 {
    font-size: 22px !important;
  }
}

@media only screen and (max-width: 404px) {

  .text>h2,
  .slideDown>h2,
  .slideUp>h2 {
    font-size: 20px !important;
  }
}

@media (max-width: 399px) {
  .logo-effect>img {
    /* width: 100% !important; */
    /* height: auto !important; */
  }

  .title-effect {
    font-size: 11px;
  }

  .text>h2,
  .slideDown>h2,
  .slideUp>h2 {
    font-size: 18px !important;
  }

  .contact {
    margin-top: 5%;
  }
}

@media (max-width: 335px) {

  .text>h2,
  .slideDown>h2,
  .slideUp>h2 {
    font-size: 16px !important;
  }
}