:root {
  --blanco: #ffffff;
  --azulbase: #34373f;
  --azulclaro: #f2da7d;
  --azulmedio: #0060BB;
}

body::-webkit-scrollbar-track,
textarea::-webkit-scrollbar-track {
  background-color: var(--azulbase);
}

body::-webkit-scrollbar,
textarea::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
  background-color: var(--azulclaro);
}

.social-bar {
  position: fixed;
  right: 2%;
  top: 40%;
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 9999;
}
.icono {
  color: var(--blanco) !important;
  text-decoration: none;
  height: 50px;
  width: 50px;
  display: flex;
  transition: all 0.5s;
  margin-top: 10%;
  position: relative;
  border-radius: 100px;
  padding: 4%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: var(--azulbase);
  background: radial-gradient(circle, #703e28 1%, #0060BB 100%);
  transition: all 0.5s ease;
}
.icono:hover {
  border: 2px solid var(--azulmedio);
  transition: all 0.5s ease;
  border: 3px solid rgba(255, 255, 255, 0.5);
}
.icono:before {
  background-color: var(--azulmedio);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 30px;
  left: 0;
  top: 0;
  z-index: -1;
  transform: scale(0, 0);
  transition: all 0.5s ease;
}
.icono:hover:before {
  z-index: 1;
  transform: scale(1.1);
  transition: all 0.5s ease;
}
.icono span {
  background: var(--azulmedio);
  padding: 5%;
  padding-left: 20%;
  padding-right: 20%;
  font-size: 0.5em;
  color: var(--dorado);
  position: absolute;
  right: 55px !important;
  top: 10px !important;
  transform: scale(0);
  width: max-content;
  box-shadow: rgba(227, 176, 75, 0.1) 0 20px 25px -5px,
    rgba(227, 176, 75, 0.04) 0 10px 10px -5px;
  border-radius: 5px;
}
.icono:hover span {
  transition: all 0.5s ease;
  transform: scale(1);
}
.icono i,
.icono img {
  z-index: 2;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icono img {
  width: 30px;
}

.text-justify {
  text-align: justify;
}

/**/
.cta-two {
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  position: relative;
  text-align: center;
}



.cta-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--azulbase);
  opacity: 0.5;
}

.cta-two .container {
  padding-top: 96px;
  position: relative;
  padding-bottom: 98px;
}
.cta-two .container .contact-btn {
  margin-top: 100px;
}

.cta-two h1 {
  margin: 0;
  color: #ffffff;
  font-size: 50px;
  font-weight: bold;
  line-height: 60px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.cta-two h3 {
  color: #ffffff;
  font-size: 30px;
}
/*Doctor Web*/

.doctorweb .doc1 {
  display: inline-block;
  animation: 10s doc infinite ease;
  width: 4%;
}
.doctorweb .doc2 {
  display: inline-block;
  width: 15%;
}

.copy p {
  color: aliceblue;
  font-size: 16px;
}

@keyframes doc {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(360deg);
  }
  90% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}

.logotipo {
  width: 68%;
}

@media only screen and (min-width: 1400px) and (max-width: 2000px) {
  .logotipo {
    width: 45%;
  }
}

@media only screen and (min-width: 376px) and (max-width: 767px) {
  .logotipo {
    width: 50%;
  }
  .social-bar {
    top: 45%;
  }
  .cta-two .container .contact-btn {
    margin-top: -20px;
  }
}
/** clients-section **/
.text-client {
  text-align: center;
  font-size: 60px;
  margin-top: 5%;
  margin-bottom: 30px;
  text-shadow: 0px 5px 5px #00000094;
}
.client {
	align-items: center;
	background: #fff;
	display: flex;
	height: 10fr;
	justify-content: center;
  padding-bottom: 5%;
  margin: 5%;
}

@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-250px * 7))}
}

.slider {
	background: white;
	box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
	height: 100px;
	overflow:hidden;
	position: relative;
	width: 100%;
  border-radius: 10px;
}
.slider::before,
.slider::after {
		content: "";
		height: 100px;
		position: absolute;
		width: 200px;
		z-index: 2;
	}
	
  .slider::after {
		right: 0;
		top: 0;
		transform: rotateZ(180deg);
	}

  .slider::before {
		left: 0;
		top: 0;
	}
	
	.slide-track {
		display: flex;
		width: calc(250px * 14);
    animation: scroll 30s linear infinite;
	}
	
	.slide {
		height: 100px;
		width: 250px;
	}

  /*cards*/
  .car {
    margin-top: -5%;
  }
  .car-1 {
    margin-top: -10%;
  }
  .car-1 h2 {
    font-size: 50px;
    text-shadow: 0px 5px 5px #0000009a;
    color: #000;
  }
  .card {
    --bg: #f7f7f8;
    --hover-bg: #002A62;
    --hover-text: #fff;
    width: 100%;
    height: 400px;
    text-align: center;
    background: var(--bg);
    padding: 2em;
    padding-block: 1.8em;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: .3s cubic-bezier(.6,.4,0,1),transform .15s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 25px;
  }
  
  .card__body {
    color: #fff;
    line-height: 1.5em;
    font-size: 1em;
    
  }
  
  .card > :not(span) {
    transition: .3s cubic-bezier(.6,.4,0,1);
  }
  
  .card > strong {
    display: block;
    font-size: 1.4rem;
    letter-spacing: -.035em;
  }
  
  .card span {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--hover-text);
    border-radius: 5px;
    font-weight: bold;
    top: 100%;
    transition: all .3s cubic-bezier(.6,.4,0,1);
    padding: 5%;
    
  }
  
  .card:hover span {
    top: 0;
    font-size: 1.2em;
  }
  
  .card:hover {
    background: var(--hover-bg);
  }
  
  .card:hover>div,.card:hover>strong {
    opacity: 0;
  }
  /*cards*/
  .cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .cards .red {
    background-color: #FFFF88;
  }
  
  .cards .blue {
    background-color: #51FB30;
  }
  
  .cards .green {
    background-color: #66FCF2;
  }
  .cards .red-1 {
    background-color: #E5FF48;
  }
  
  .cards .blue-1 {
    background-color: #41F186;
  }
  
  .cards .green-1 {
    background-color: #BEFAFF;
  }
  
  .cards .card-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 140px;
    width: 95%;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: 400ms;
  }
  
  .cards .card-1 p.tip {
    font-size: 1em;
    font-weight: 700;
    padding: 2%;
  }
  
  .cards .card-1 p.second-text {
    font-size: 1.7em;
    margin-bottom: -2%;
    color: #0060BB;
  }
  
  .cards .card-1:hover {
    transform: scale(1.1, 1.1);
  }
  
  .cards:hover > .card-1:not(:hover) {
    filter: blur(10px);
    transform: scale(0.9, 0.9);
  }
/*serv*/
.serv {
  text-align: center;
  padding: 15%;
  color: #0060BB;
  font-size: 23px;
  line-height: 45px;
}
.serv li:hover{
  color: #0b3a66;
}

.serv-1 {
  background-image: url('assets/hero-no-people.jpg');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 9%;
  padding-left: 7%;
}
/*form*/
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  text-align: center;
}

.title {
  font-size: 28px;
  color: royalblue;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  text-align: center;
}

.title::before,.title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 100%;
  border-radius: 50%;
  left: 0px;
  background-color: royalblue;
}

.title::before {
  width: 18px;
  height: 18px;
  background-color: royalblue;
}

.title::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}

.message, .signin {
  color: rgba(88, 87, 87, 0.822);
  font-size:28px;
  padding: 1%;
}

.signin {
  text-align: center;
}

.signin a {
  color: royalblue;
}

.signin a:hover {
  text-decoration: underline royalblue;
}

.flex {
  display: flex;
  width: 100%;
  gap: 6px;
}

.form label {
  position: relative;
  width: 100%;
  margin: 1%;
  font-size: 0.9em;
}

.form label .input {
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid rgba(0, 0, 0, 0.397);
  border-radius: 10px;
  font-size: 1.3em;
}

.form label .input + span {
  position: absolute;
  left: 10px;
  top: 15px;
  color: grey;
  font-size: 1.3em;
  cursor: text;
  transition: 0.3s ease;
}

.form label .input:placeholder-shown + span {
  top: 15px;
  font-size: 0.9em;
}

.form label .input:focus + span,.form label .input:valid + span {
  top: 30px;
  font-size: 1em;
  font-weight: 600;
}

.form label .input:valid + span {
  color: #000000d8;
}

.submit {
  border: none;
  outline: none;
  background-color: royalblue;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 1.5em;
  transform: .3s ease;
  width: 100%;
}

.submit:hover {
  background-color: rgb(56, 90, 194);
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media only screen and (min-width: 376px) and (max-width: 767px) {
  .form label {
    width: 100%;
  }
  .form label .input + span {
    font-size: 0.8em;
  }
}

/*flip*/
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 350px;
  perspective: 1000px;
  font-family: sans-serif;
}

.title-1 {
  font-size: 1.5em;
  font-weight: 900;
  text-align: center;
  margin: 0;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  box-shadow: 0 8px 14px 0 rgba(0,0,0,0.2);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid #38024B;
  border-radius: 1rem;
}

.flip-card-front {
  background: linear-gradient(120deg, #B088FF 60%, #a07be9 88%,
  #7d5cbe 40%, #38024B 48%);
  color: coral;
}
.flip-card-front i {
  color: #fff;
  font-size: 50px;
  margin-top: 5%;
}

.flip-card-back {
  background: linear-gradient(120deg, rgb(255, 174, 145) 30%, coral 88%,
     bisque 40%, rgb(255, 185, 160) 78%);
  color: white;
  transform: rotateY(180deg);
}