.main-col {
  padding-top:100px;
  text-align: center;
}

.logo {
  animation-delay: .5s;
  -webkit-animation-delay: .5s;
}

.logo svg {
  width:400px;
  height: auto;
  display:inline-block;
}
@media only screen and (max-width: 400px) {
  .logo svg {
    width:92%;
    margin: 0 4%;
  }
}

.socials {
  text-align: center;
  margin-top:50px;
}
.socials svg {
  transition: fill .35s ease;
  -webkit-transition: fill .35s ease;
}
.socials a svg { fill:#000; }
.socials a:hover svg { fill:#999; }

.socials a { display:  inline-block; margin: 0 6px; }
.socials a svg { width: auto; }
.facebook-link svg { height: 30px; }
.twitter-link svg { height: 25px; }

.socials a {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
}
.socials a:nth-child(1) {
  animation-delay: .5s;
  -webkit-animation-delay: .5s;
}
.socials a:nth-child(2) {
  animation-delay: .75s;
  -webkit-animation-delay: .75s;
}
.socials a:nth-child(3) {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}
.socials a:nth-child(4) {
  animation-delay: 1.25s;
  -webkit-animation-delay: 1.25s;
}
.socials a:nth-child(5) {
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
}

.content a,
.content a:hover {
  position: relative;
  color:#5d4b73;
  text-decoration: none;
}

.content a:after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(92,74,114,0.3);
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    -moz-transition: opacity 0.3s, -moz-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    transform: translateY(15px);
}

.content a:hover:after {
  opacity: 1;
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  transform: translateY(5px);
}

/* Animations */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animated.infinite {
  animation-iteration-count: infinite;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
