.logo {
  width: 170px;
}

.title {
  color: #353535;
  font-family: 'Cormorant Garamond', serif, Arial, Helvetica;
  font-size: 60px;
  line-height: 72.66px;
}

.subtitle {
  font-family: 'Barlow', sans-serif, Arial, Helvetica;
  font-size: 22px;
  line-height: 32px;
}

.card-platform {
  width: 100%;
  min-height: 260px;
  height: 100%;
  border: 1px solid #D8D8D8;
}

.card-image {
  width: 100%;
  min-height: 120px;
  object-fit: cover;
}

.card-title {
  font-family: 'Cormorant', serif, Arial, Helvetica;
  font-size: 26px;
  line-height: 24px;
  text-align: center;
}

.card-button {
  font-family: 'Open Sans', sans-serif, Arial, Helvetica;
  width: 100%;
  height: 36px;
  border: 1px solid #60869F;
  border-radius: 4px;
  background-color: #F3FBFD;
  color: #60869F;
}

.card-platform.card-joy {
  border-top: 10px solid #CBE2E2;
}

.card-platform.card-vol {
  border-top: 10px solid #F8C89A;
}

.card-platform.card-events {
  border-top: 10px solid #C5D9E8;
}

.card-platform.card-app {
  border-top: 10px solid #CBC7E1;
}

.loading {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  top: 0;
}

.loading p {
  color: #353535;
  font-family: 'Open Sans', sans-serif, Arial, Helvetica;
  font-size: 32px;
  line-height: 1.5rem;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #E39F24;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 50px;
    line-height: 45px;
  }

  .subtitle {
    font-size: 20px;
  }

  .loading p {
    font-size: 20px;
    line-height: 1.5rem;
  }
}

@media (max-width: 576px) {
  .title {
    font-size: 40px;
  }

  .subtitle {
    font-size: 16px;
  }
}