:root {
  --primaryColor: #303c92;
}

/* ::-webkit-scrollbar {
  display: none;
} */

body {
  overflow-y: hidden;
}

nav {
  display: none;
}

#jSplash {
  background-color: var(--primaryColor);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg--primary {
  background-color: var(--primaryColor);
}
.text--primary {
  color: var(--primaryColor);
}

.bg--secondary {
  background-color: #181e27;
}

.bg--instagram {
  background-color: #e1306c;
  border-color: #e1306c;
}

h4 {
  margin: 0;
  font-size: 1.2rem;
}

nav {
  top: 0;
  left: 0;
  width: 100%;

  box-sizing: border-box;
  z-index: 99;
  background-color: transparent;
  position: fixed;
  overflow: hidden;
}

.navbar-nav li a {
  color: #fff;
  font-size: 1.2rem;
}

.cover {
  height: 100vh;
  background-size: cover;
  background-image: url('/img/1.webp');
  background-repeat: no-repeat;
}

.nav-logo {
  width: 15%;
  height: auto;
}

.hamburger-toggle i {
  color: #fff;
}

blockquote {
  font-size: 2.3rem;
}

.testimonial h3 {
  margin: 0;
  text-shadow: 1px 1px 10px rgba(70, 70, 70, 0.281);
  font-weight: 700;
}
.flickity-page-dots {
  top: 125%;
}

.accordion__title span p {
  font-weight: 400 !important;
  color: #fff;
}

#equipo {
  color: rgb(235, 235, 235) !important;
}

.socicon-linkedin {
  color: #fff;
  transition: all 300ms ease-in-out;
}

.socicon-linkedin:hover {
  opacity: 0.6;
}

.btn--primary {
  background-color: #303c92;
  border: 0;
  color: #fff;
}

.changeFoto {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.bg--testimonial {
  background-color: #303c92b9 !important;
}

.testimonial h3 {
  margin: 0;
}

.social-buttons a {
  width: 100%;
  height: auto;
}

@media all and (max-width: 991px) {
  .bar--absolute {
    background-color: #303c92;
  }

  .flickity-page-dots {
    top: 100%;
  }

  nav .nav-logo {
    width: 70% !important;

    object-fit: contain;
  }
  .navbar-nav li a {
    font-size: 1rem;
  }
}

/* from animation.html */
/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  background-color: transparent;
  width: auto;
  height: 25vh;

  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  color: black;
}

.services-line {
  width: 50%;
  border-top: var(--primaryColor) solid 6px;
}

/* Style the back side */
.flip-card-back {
  background-color: var(--primaryColor);
  color: #fff;
  transform: rotateY(180deg);
}

.flip-card-back p {
  font-size: 1.3rem;
}
/* #testimonios-citas li {
    height: 100%;
  } */
.testiomonial-card {
  background-color: rgba(255, 255, 255, 0.7);
  min-height: 100%;
  backdrop-filter: blur(10px);
  width: 100%;
  border-left: var(--primaryColor) solid 10px;
}

.testiomonial-card p {
  font-size: 1.4rem;
}
