.faded {
  visibility: hidden;
}

@-webkit-keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

.fade-in {
  -webkit-animation: fade-in 300ms ease-in-out forwards;
          animation: fade-in 300ms ease-in-out forwards;
}

@-webkit-keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

.fade-out {
  -webkit-animation: fade-out 300ms ease-in-out forwards;
          animation: fade-out 300ms ease-in-out forwards;
}

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #6853A3;
  line-height: 1.5;
  background: black;
  overflow-x: hidden;
}

@media (min-width: 64em) {
  body {
    font-size: 1.5rem;
  }
}

body.noscroll {
  overflow: hidden;
}

a, a:visited, a:hover {
  text-decoration: none;
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.back-to-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  border-radius: 100%;
  background: #c2e6f8;
  padding: 0.5rem;
  border: none;
  cursor: pointer;
  opacity: 100%;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.back-to-top:hover {
  opacity: 40%;
}

.hidden {
  display: none;
  opacity: 0%;
}

.back-to-top-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #375764;
}

.header__logo {
  width: 10%;
  height: 10%;
  margin-top: 1%;
}

.header__logo img {
  width: 80px;
  height: 80px;
}

.header.open .header__toggle > span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}

.header.open .header__toggle > span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header .overlay {
  opacity: 0;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#062486), to(#5a8dc7));
  background-image: linear-gradient(#062486, #5a8dc7);
}

.header nav {
  position: relative;
  background-color: white;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.header nav button, .header nav .button {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  color: white;
  background-color: black;
  font-weight: 500;
  font-size: 25px;
  text-align: center;
  text-decoration: none;
  padding: 0.7rem 1.8rem 0;
  border: 0;
  border-radius: 1em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  /* Safari */
}

.header nav button:hover, .header nav .button:hover {
  background: #0e49a0;
  -webkit-box-shadow: 0px 2px 12px 8px #0128a7;
          box-shadow: 0px 2px 12px 8px #0128a7;
}

.header nav button:after, .header nav .button:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 4em;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: #0b22ee;
  padding-top: 300%;
  padding-left: 350%;
  margin-left: -20px !important;
  margin-top: -120%;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.header nav button:active:after, .header nav .button:active:after {
  -webkit-box-shadow: 0 0 0 0 #11396d;
          box-shadow: 0 0 0 0 #11396d;
  position: absolute;
  border-radius: 4em;
  left: 0;
  top: 0;
  opacity: 1;
  -webkit-transition: 0s;
  transition: 0s;
}

.header nav button:active, .header nav .button:active {
  top: 1px;
}

.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #006DB4;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  -webkit-transform-origin: 3px 1px;
          transform-origin: 3px 1px;
}

.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}

.header__toggle.open > span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header__toggle.open > span:nth-child(2) {
  opacity: 0;
}

.header__toggle.open > span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header__menu {
  z-index: 6;
  position: absolute;
  width: calc(100% - 3rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 1.5rem;
  background: white;
}

.header__menu a {
  position: relative;
  display: block;
  color: #504c4c;
  padding: 0.5rem;
  margin: 0 25% 0 25%;
  text-align: center;
}

.header__menu a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 2px solid #262626;
  border-bottom: 2px solid #262626;
  -webkit-transform: scaleY(2);
          transform: scaleY(2);
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.header__menu a:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #262626;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
  z-index: -1;
}

.header__menu a:hover {
  color: #fff;
}

.header__menu a:hover:before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  opacity: 1;
}

.header__menu a:hover:after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  opacity: 1;
}

.header__links a {
  position: relative;
  font-size: 1.5rem;
  color: #504c4c;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}

.header__links a:not(:last-child) {
  margin-right: 32px;
}

.header__links a::before {
  content: "";
  display: block;
  position: absolute;
  height: 5px;
  left: 0;
  right: 0;
  bottom: -20px;
  background: -webkit-gradient(linear, left top, right top, from(#006DB4), to(#6853A3));
  background: linear-gradient(to right, #006DB4, #6853A3);
  opacity: 0;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

.header__links a:hover {
  color: #504c4c;
}

.header__links a:hover::before {
  opacity: 1;
}

.header__cta {
  font-size: 1.5rem;
  color: white;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
  text-align: center;
}

.header__cta img {
  margin-top: 2px;
  height: 2rem;
}

.header__cta:hover {
  opacity: 0.75;
}

@media (max-width: 820px) {
  .header nav {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
  .header__logo img {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 620px) {
  .header nav {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
  .header__logo img {
    margin-top: 1%;
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 820px) {
  .header nav {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
  .header__logo img {
    margin-top: 10%;
    width: 28px;
    height: 28px;
  }
}

.slider {
  position: relative;
  top: 0;
  width: 100%;
  height: 85vh;
}

.slider .slide {
  z-index: 1;
  position: absolute;
  top: 10px;
  width: 100%;
  -webkit-clip-path: circle(0% at 0 50%);
          clip-path: circle(0% at 0 50%);
}

.slider .slide.active {
  -webkit-clip-path: circle(150% at 0 50%);
          clip-path: circle(150% at 0 50%);
  -webkit-transition: 500ms;
  transition: 500ms;
  -webkit-transition-property: -webkit-clip-path;
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}

.slider .slide img {
  z-index: 1;
  position: absolute;
  width: 100%;
  padding: 0 20px 0 20px;
}

.slider .slide .discover_btn {
  position: relative;
}

.slider .slide .discover_btn .button {
  position: absolute;
  top: 450px;
  right: 120px;
  z-index: 1;
  padding: 0.5rem 1.8rem;
  border-radius: 0;
  outline: none;
  border: 0.16em solid #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Roboto',sans-serif;
  font-weight: 450;
  color: #FFFFFF;
  background-color: black;
  text-align: center;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

.slider .slide .discover_btn .button:hover {
  color: black;
  background-color: white;
  border: 0.16em solid #000000;
  font-weight: 600;
}

.slider .dots {
  z-index: 2;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 3%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.slider .dots .btn {
  background: white;
  width: 12px;
  height: 12px;
  margin: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.slider .dots .btn.active {
  background: black;
  border: 2px solid white;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 820px) {
  .slider {
    width: 800px;
    height: 365px;
  }
  .slider .slide .discover_btn {
    bottom: 270px;
    left: 70px;
  }
  .slider .slide .button {
    width: 125px;
    height: 36px;
    font-size: 11px;
  }
  .slider .dots {
    bottom: 20px;
  }
  .slider .dots .btn {
    width: 10px;
    height: 10px;
    margin: 8px;
  }
}

@media (max-width: 620px) {
  .slider {
    width: 600px;
    height: 280px;
  }
  .slider .slide .discover_btn {
    bottom: 270px;
    left: 70px;
  }
  .slider .slide .button {
    width: 90px;
    height: 27px;
    font-size: 6px;
    padding: 0.1 0.8rem;
  }
  .slider .dots {
    bottom: 15px;
  }
  .slider .dots .btn {
    width: 8px;
    height: 8px;
    margin: 6px;
  }
}

@media (max-width: 420px) {
  .slider {
    width: 405px;
    height: 190px;
  }
  .slider .slide .discover_btn {
    bottom: 365px;
    left: 87px;
  }
  .slider .slide .button {
    width: 76px;
    height: 20px;
    font-size: 3px;
    padding: 0.1 0.5rem;
  }
  .slider .dots {
    bottom: 10px;
  }
  .slider .dots .btn {
    width: 7px;
    height: 7px;
    margin: 5px;
  }
}

.world__image {
  position: relative;
  z-index: 1;
}

.world__image img {
  width: 100%;
  height: 100%;
}

.world__image .logos > :first-child {
  width: 20%;
  height: 30%;
  right: 7%;
  top: 20%;
}

.world__image .logos > img:nth-child(2) {
  width: 30%;
  height: 20%;
  left: 3%;
  top: 20%;
}

.world__image .logos > img:last-child {
  width: 70%;
  height: 10%;
  right: 3%;
  top: 62%;
}

.world__image .logos img {
  position: absolute;
  top: 0;
  z-index: 2;
}

.presentation {
  background-color: #f5f0f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: wrap;
      -ms-flex: wrap;
          flex: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.presentation img {
  position: relative;
  top: 20px;
  margin-bottom: 50px;
}

.presentation h1 {
  text-align: center;
  color: #2140ff;
  max-width: 40ch;
  -webkit-transform: scale(0.94);
          transform: scale(0.94);
  -webkit-animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
          animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
  padding: 0 1rem;
}

@-webkit-keyframes scale {
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scale {
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.presentation span {
  display: inline-block;
  opacity: 0;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.presentation span:nth-child(1) {
  -webkit-animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
          animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.presentation span:nth-child(2) {
  -webkit-animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
          animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.presentation span:nth-child(3) {
  -webkit-animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
          animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.presentation span:nth-child(4) {
  -webkit-animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
          animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.presentation span:nth-child(5) {
  -webkit-animation: fade-in 0.8s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
          animation: fade-in 0.8s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.presentation span:nth-child(6) {
  -webkit-animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
          animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.presentation span:nth-child(7) {
  -webkit-animation: fade-in 0.8s 0.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
          animation: fade-in 0.8s 0.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.presentation span:nth-child(8) {
  -webkit-animation: fade-in 0.8s 0.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
          animation: fade-in 0.8s 0.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.presentation span:nth-child(9) {
  -webkit-animation: fade-in 0.8s 0.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
          animation: fade-in 0.8s 0.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

.presentation .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 280px 0 280px;
}

.presentation .container a {
  display: block;
  color: #6853A3;
  padding: 0.5rem;
  text-align: center;
  margin-right: 100px;
}

.presentation .container:hover {
  color: black;
}

@media (min-width: 64em) {
  .presentation .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.presentation .presentation__left {
  margin: 0 9%;
}

.presentation p {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 78px;
  padding: 0;
}

@media (min-width: 64em) {
  .presentation {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: left;
  }
}

.presentation button {
  position: relative;
  bottom: 41px;
  left: 113px;
  outline: none;
  text-decoration: none;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  height: 60px;
  width: 210px;
  opacity: 1;
  background-color: #ffffff;
  border: 2px solid rgba(22, 76, 167, 0.6);
}

.presentation button > span {
  color: #164ca7;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.7px;
}

.presentation button:hover {
  -webkit-animation: rotate 0.7s ease-in-out both;
          animation: rotate 0.7s ease-in-out both;
  color: #020a18;
}

.presentation button:hover > span {
  -webkit-animation: storm 0.7s ease-in-out both;
          animation: storm 0.7s ease-in-out both;
  -webkit-animation-delay: 0.06s;
          animation-delay: 0.06s;
  color: #020a18;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
            transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    -webkit-transform: rotate(3deg) translate3d(0, 0, 0);
            transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: rotate(-3deg) translate3d(0, 0, 0);
            transform: rotate(-3deg) translate3d(0, 0, 0);
  }
  75% {
    -webkit-transform: rotate(1deg) translate3d(0, 0, 0);
            transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
            transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
            transform: rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    -webkit-transform: rotate(3deg) translate3d(0, 0, 0);
            transform: rotate(3deg) translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: rotate(-3deg) translate3d(0, 0, 0);
            transform: rotate(-3deg) translate3d(0, 0, 0);
  }
  75% {
    -webkit-transform: rotate(1deg) translate3d(0, 0, 0);
            transform: rotate(1deg) translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: rotate(0deg) translate3d(0, 0, 0);
            transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

@-webkit-keyframes storm {
  0% {
    -webkit-transform: translate3d(0, 0, 0) translateZ(0);
            transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    -webkit-transform: translate3d(4px, 0, 0) translateZ(0);
            transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(-3px, 0, 0) translateZ(0);
            transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    -webkit-transform: translate3d(2px, 0, 0) translateZ(0);
            transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) translateZ(0);
            transform: translate3d(0, 0, 0) translateZ(0);
  }
}

@keyframes storm {
  0% {
    -webkit-transform: translate3d(0, 0, 0) translateZ(0);
            transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    -webkit-transform: translate3d(4px, 0, 0) translateZ(0);
            transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(-3px, 0, 0) translateZ(0);
            transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    -webkit-transform: translate3d(2px, 0, 0) translateZ(0);
            transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) translateZ(0);
            transform: translate3d(0, 0, 0) translateZ(0);
  }
}

.footer {
  position: absolute;
  border-top: 1px solid white;
  padding-top: 10px;
  width: 100%;
  height: 300px;
  background-image: url("/assets/images/Footer/palmtree.jpg");
  background-repeat: no-repeat;
  background-position: center;
}

.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.footer ul li {
  list-style: none;
}

.footer ul li a {
  width: 80px;
  height: 80px;
  background-color: #fff;
  text-align: center;
  line-height: 80px;
  font-size: 35px;
  margin: 0 10px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid #fff;
  z-index: 1;
}

.footer ul li a .icon {
  position: relative;
  color: #262626;
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 3;
}

.footer ul li a:hover .icon {
  color: #fff;
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

.footer ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 2;
}

.footer ul li a:hover:before {
  top: 0;
}

.footer ul li:nth-child(1) a:before {
  background: #3b5999;
}

.footer ul li:nth-child(2) a:before {
  background: -webkit-gradient(linear, left top, left bottom, from(#6a0ad8), to(#fcc090));
  background: linear-gradient(#6a0ad8, #fcc090);
}

.footer ul li:nth-child(3) a:before {
  background: #bb3810;
}

.footer .data {
  position: absolute;
  bottom: 10px;
  font-size: 20px;
  color: #390b6e;
}
/*# sourceMappingURL=style.css.map */