* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: #777;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  background-color: #f1f1f1;
}

header {
  font-size: 1rem;
  width: 100%;
  padding: 2em 0;
}

header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header,
main,
footer {
  width: 1600px;
  max-width: 90vw;
}

a {
  text-decoration: none;
}

.text-muted {
  color: #dddddd !important;
}

.navbar-brand img {
  width: auto;
  height: 2em;
  max-width: 33vw;
  filter: brightness(0) invert(0%) sepia(23%) saturate(6160%) hue-rotate(1deg) brightness(108%) contrast(84%);
}

.social-medias .media-link {
 padding: .15em .3em; 
 display: block;
}

.social-medias .media-link + .media-link {
  margin-left: calc(.5rem + .5vw);
}

.social-medias svg {
  width: auto;
  height: 2.7em;
}

.jumbotron {
  font-size: 1rem;
  width: 100%;
  margin-top: 2em;
  border-radius: 2em;
  background-color: #232323;
  height: 70vh;
  min-height: 600px;
  animation: moveInBottom .9s ease both;
  animation-delay: .1s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.jumbotron .logo-box {
  width: 40em;
  max-width: 50%;
  min-width: 230px;
}

.jumbotron .text-box {
  width: 1000px;
  max-width: 90%;
  font-size: calc(1.3em + .15vw);
}

@keyframes moveInBottom {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
    }
}

.card,
.card-body {
  background-color: transparent;
  border: 0;
  box-shadow: unset;
  padding: 0;
  margin: 0;
}

.card-box {
  margin-bottom: 2em !important;
  backface-visibility: hidden;
}

.link-card {
  font-size: 1rem;
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-color: rgba(0,0,0,.2);
  border-radius: 2em;
  overflow: hidden;
  position: relative;
  padding: 3em;
} 

.link-card .card-title {
  font-size: 2em;
  color: #f1f1f1;
  font-weight: 900;
}

.link-card .card-description {
  color: #e7e7e7;
  font-size: 1.1em;
  font-weight: 600;
}

.link-card .banner {
  background-image: url('https://www.deftower.com/assets/img/ramos/iphone2.png');
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.link-card .line {
  background-color: #f1f1f1;
  height: 142%;
  width: .8em;
  position: absolute;
  top: 50%;
  left: 65%;
  transform: rotate(45deg) translateY(-55%);
  transition: transform .25s ease;
}


.link-card .circle {
  width: 10em;
  height: 10em;
  position: absolute;
  top: -60px;
  right: -60px;
  background-color: transparent;
  border: 1.5em solid #f1f1f1;
  border-radius: 50%;
}

.link-card span {
  font-size: 1.1em;
  color: #d8d8d8;
}

.link-card .arrow {
  width: auto;
  height: 3em;
  margin-right: 1.5em;
  opacity: 0;
  animation: moveArrowInRight .6s linear infinite alternate-reverse both;
  transition: opacity .2s;
}

.link-card:hover .arrow {
  opacity: 1;
}

@keyframes moveArrowInRight {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(20%);
  }
}

.clubgfy {
  background: linear-gradient(to right bottom, #9067FE, #6A3AB2);
}

.pmgo {
  background: linear-gradient(to right bottom, #4ac571, #529c71); 
}

.move-in-left {
  animation: moveInLeft .85s ease both;
  animation-delay: .15s;
}

.move-in-right {
  animation: moveInRight .85s ease both;
  animation-delay: .15s;
}

@keyframes moveInLeft {
  0% {
    transform: translateX(-40px);
    opacity: 0;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}


@keyframes moveInRight {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

footer {
  background: linear-gradient(to right bottom, #51667E, #3f5164);
  padding: 1em 3em;
  border-top-left-radius: 2em;
  border-top-right-radius: 2em;
}

.glowing-button {
  width: 450px;
  max-width: 90%;
  border: none;
  outline: none;
  font-size: 1.1em;
  font-weight: bolder;
  padding: .8em 2em;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 2em; 
}

.glowing-button:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1 !important;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 1;
  transition: opacity .3s ease-in-out;
  border-radius: 2em;
}

.glowing-button:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #232323;
  left: 0;
  top: 0;
  border-radius: 2em;
  transition: background .3s ease;
}

.glowing-button:hover:after {
  background-color: #111;
}

@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}

@media (max-width: 1200px) {
  html {
    font-size: .9rem;
  }

  .link-card .arrow {
    opacity: 1 !important;
  }

  .jumbotron .text-box {
    word-wrap: break-word;
  }
}

@media (max-width: 768px) {
  html {
    font-size: .8rem;
  }

  .jumbotron {
    height: 60vh;
    min-height: 400px;
    font-size: .85rem;
  }
}

@media (max-width: 576px) {
  .jumbotron .text-box {
    font-size: 1.3em;
  }
}