@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
body
{
	margin: 0;
	padding: 0;
	font-family: "Poppins" , sans-serif;
	background: white;
	background-attachment: fixed;
}
header 
{
	position: relative;
	max-width: 1300px;
	margin: auto;
	padding: 2px;
	background: white;
	box-sizing: border-box;
}
.text-center
{
  text-align: center;
}
.titulo
{
  font-size: 35px;
}
.logo
{
	float: left;
	padding: 0;
	position: relative;
	display: table;
	height: 70px;
}
.logo img {
	max-width: 85%;
	height: auto;
	max-height: 70px;
	margin: 1px auto;
  animation: slide_left 0.5s linear forwards;
  animation-delay: 1.75s;
}
h3
{
  position: top;
}
.containermks
{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.containermks .card
{
  height: 370px;
  position: relative;
  width: 100%;
  margin: 10px;
  display: flex;
  transition: 0.5;
  justify-content: flex-start;
  align-items: center;
  box-shadow:  6px 5px 3px 3px rgba(0, 0, 0, 0.1);
  background: linear-gradient(180deg,#fff);
  border-radius: 20px;
}
.containermks .card:hover 
{
  color: white;
}
.containermks .card img
{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 375px;
  transition: 0.5s;
}
.containermks .card:hover img
{
  left: 73%;
  height: 380px;
}
.containermks .card .conten
{
  position: relative;
  width: 50%;
  left: 20;
  padding: 20px 20px 20px 40px;
  transition: 0,5s;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.containermks .card:hover .conten
{
  left: 0;
  opacity: 1;
  visibility: visible;
}
.containermks .card .conten h2
{
  color: black;
  text-transform: uppercase;
  font-size: 2.2em;
  line-height: 1em;
}
.containermks .card .conten p
{
  color: black;
}
.containermks .card .conten a
{
  position: relative;
  color: #111;
  background: white;
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 700;
  box-shadow:  5px 5px rgba(0, 0, 0, 0.3);
  border-radius: 10px; 
}
@media (max-width: 991px)
{
  .containermks .card
  {
    width: auto;
    max-width: 600px;
    align-items: flex-start;
  }
  .containermks .card:hover
  {
    height: 600px;
  }
  .containermks .card:hover img
  {
    left: 50%;
    height: 350px;
  }
  .containermks .card .conten
  {
    width: 100%;
    left: 0;
    padding: 40px;
  }
}
@media (max-width: 767px)
{
  .containermks
  {
    flex-direction: column;
  }
  .containermks .card
  {
    margin: 40px 20px;
  }
}
@media (max-width: 420px)
{
 .containermks .card .conten
 {
  padding: 30px;
 }
 .containermks .card
 {
  height: 300px;
 }
}
nav
{
	float: right;
}
.clearfix
{
	clear: both;
}
nav ul
{
	margin: 0;
	padding: 0;
	display: flex;
}
nav ul li
{
	list-style: none;
}
nav ul li a
{
	display: block;
	margin: 10px 0;
	padding: 10px 20px;
	text-decoration: none;
	color: black;
}
nav ul li a.active,
nav ul li a:hover
{
  box-shadow:  6px 5px 3px 3px rgba(0, 0, 0, 0.1);
	background: #fff;
	color: #4290ee;
	transition: 0.5s;
  border-radius: 10px;
}
.main-container {
  clear: both;
}
.contact-section{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  box-shadow: 0 1px 30px rgba(0,0,0,0.2);
}

.contact-info{
  color: black;
  max-width: 550px;
  line-height: 55px;
  padding-left: 50px;
  font-size: 18px;
}

.contact-info i{
  margin-right: 20px;
  font-size: 25px;
}

.contact-formx{
  max-width: 700px;
  margin-right: 50px;
}

.contact-info, .contact-formx{
  flex: 1;
}

.contact-formx h2{
  color: black;
  text-align: center;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contact-formx .text-box{
  background: #000;
  color: #fff;
  border: none;
  width: calc( 47% - 15px);
  height: 20px;
  padding: 12px;
  font-size: 15px;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-formx .text-box:first-child{
  margin-right: 1px;
}

.contact-formx textarea{
  background: #000;
  color: #fff;
  border: none;
  width: 94%;
  padding: 12px;
  font-size: 15px;
  min-height: 200px;
  max-height: 400px;
  resize: vertical;
  border-radius: 5px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-formx .send-btn{
  float: right;
  background: white;
  color: black;
  border: none;
  width: 120px;
  height: 40px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  transition-property: background;
  box-shadow: 5px 5px 5px rgba(0,0,0, 0.2);
}

.contact-formx .send-btn:hover{
  background: #0582E3;
  color: white;
}

@media screen and (max-width: 950px)
{
  .contact-section{
    flex-direction: column;
  }

  .contact-info, .contact-formx{
    margin: 30px 50px;
  }

  .contact-formx h2{
    font-size: 30px;
  }

  .contact-formx .text-box{
    width: 100%;
  }
}

@media (max-width: 1200px)
{
	header
	{
		margin: 20px;
	}
}
@media (max-width: 768px)
{
	.menu-toggle
	{
	display: block;
	width: 40px;
	height: 40px;
	margin: 10px;
	float: right;
	cursor: pointer;
	text-align: center;
	font-size: 30px;
	color: #4290ee;
	}
	.menu-toggle:before
	{
  content: '\f0c9';
  font-family: fontAwesome;
  line-height: 40px;
	}
	.menu-toggle.active:before
	{
  content: '\f00d';
	}
	nav
	{
		display: none;
	}
	nav.active
	{
		display: block;
		width: 100%;
	}
  nav.active ul
  {
    display: block;
  }
   nav.active ul li
  {
    margin: 0;
  }
owl-item
{
  transform: translate3d(-2106px, 0px, 0px);
  transition: all 0.25s ease 0s;
  width: 3510px;
}
}
footer
{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 25vh;
  flex-direction: column;
  background: white;
  position: relative;
  height: auto;
  padding: 25px 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 20px;
}
footer .containerfooter
{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}
footer .containerfooter .sec
{
  margin-right: 10px;
}
footer .containerfooter .sec.aboutus
{
  width: 40%;
}
footer .containerfooter .sec.aboutus
{
  position: relative;
  color: black;
  font-weight: 500;
  margin-bottom: 15px;
}
footer .containerfooter .sec.aboutus h2:before
{
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
}
footer p
{
  color: black;
}
.sci
{
  margin-top: 20px;
  display: flex;
}
.sci li
{
  list-style: none;
}
.sci li a
{
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #4290ee;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 20px; 
}
.sci li a:hover
{
  background: grey;
}
.sci li a .fa
{
  color: #fff;
  font-size: 20px;
}
.quickLinks
{
  position: relative;
  width: 25%;
}
.quickLinks ul li
{
  list-style: none;
}
.quickLinks ul li a
{
  color: black;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.quickLinks ul li a:hover
{
  color: #4290ee;
}
.contact
{
  width: calc(35% - 60px);
  margin-right: 0 !important;
}
.contact .info
{
  position: relative;
}
.contact .info li:nth-child(0)
{
  color: #4290ee;
  margin-right: 10px;
}
.contact .info li span
{
  color: black;
}
.contact .info li a
{
  color: black;
  text-decoration: none;
}
.contact .info li a:hover
{
  color: #4290ee;
}
.copy
{
  background: #181818;
  padding: 8px 100px;
  color: #999;
}
@media (max-width: 991px)
{
  footer
  {
    padding: 40px;
  }
  footer .containerfooter
  {
    flex-direction: column;
  }
  footer .containerfooter .sec
  {
    margin-right: 0;
    margin-bottom: 40px;
  }
  footer .containerfooter .sec.aboutus,
  .quickLinks,
  .contact
  {
    width: 100%;
  }
  .copy
  {
    padding: 8px 40px;
  }
}

.banner
{
  position: relative;
  width: 100%;
  height: calc(100vh - 50px);
  background-color: #F5F5F5;
  background-size: cover;
  background-position: center;
  transition: all .1s ease-out;
  background-image: url('img/Banner/shutterstock_594717740.jpg');
  animation: banner 28s infinite linear;
}
.banner-content{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  color: #FFF;
  background-color: rgba(0, 22, 40, .6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-content img{
  max-width: 85%;
  height: auto;
  max-height: 70px;
  margin: 1px auto;
  animation: slide_left 0.5s linear forwards;
}
.banner-content a{
  text-decoration: none;
  color: #FFF;
  padding: 9px 20px;
  border: 1px solid #FFF;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}
.banner-content a:hover{
  background-color: #fff;
  color: #333;
}
@keyframes banner{
  0%{
    background-image: url('img/Banner/shutterstock_594717740.jpg');
  }
  25%{
    background-image: url('img/Banner/shutterstock_594717740.jpg');
  }


  26%{
    background-image: url('img/Banner/ordenar.jpg');
  }
  50%{
    background-image: url('img/Banner/ordenar.jpg');
  }


  51%{
    background-image: url('img/Banner/Farmacias-catalanas-denuncian-Glovo-medicamentos_2122907711_7009703_1300x731.png');
  }
  75%{
    background-image: url('img/Banner/Farmacias-catalanas-denuncian-Glovo-medicamentos_2122907711_7009703_1300x731.png');
  }
  

  76%{
    background-image: url('img/Banner/shutterstock_594717740.jpg');
  }
  100%{
    background-image: url('img/Banner/shutterstock_594717740.jpg');
  }

}
}
img
{
  position: relative;
  max-width: 350px;
}
.wave
{
  position: absolute;
  bottom: -150px;
  left: 0;
  max-width: 100%;
}
@media (max-width: 991px)
{
 .wave
 {
   position: absolute;
 }
 .banner
 {
  background: url(img/Banner/shutterstock_594717740.jpg)top left repeat-x;
 }
}
@media (max-width: 768px)
{
 .wave
 {
   position: absolute;
 }
 .banner
 {
  background: url(img/Banner/shutterstock_594717740.jpg)top left repeat-x;
 }
}
@media (max-width: 768px)
{
  .banner img
  {
    flex-direction: column;
  }
}
.float{
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:40px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
  text-decoration: none;
  color: #25d366;
  background-color:#fff;
}

.my-float{
  margin-top:16px;
}

.contenedor{
    width: 100%;
    overflow: hidden;
}

.slider-contenedor{
    width: 100%;
    display: flex;
}

.contenido-slider{
  float: left;
  width: 30%;
  padding: 10px;
}

.contenido-slider:nth-child(2){
    color: #fff;
}

.contenido-slider:nth-child(3){
}

.contenido-slider > img{
    width: 150px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 20px;
    object-fit: cover;
}

.contenido-slider > div{
    width: 40%;
}

.contenido-slider h2{
    font-weight: 300;
    text-align: justify;
    line-height: 30px;
}

.contenido-slider a{
    color: #fff;
    background: #332863;
    width: 100px;
    display: block;
    padding: 15px 0;
    text-align: center;
    border-radius: 3px;
    margin-top: 20px;
    text-decoration: none;
}

.contenido-slider:nth-child(5) a{
    background: #fff;
    color: #332863;
    
}

@media screen and (max-width:900px){
    .contenido-slider > img{
    width: 100px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 20px;
    object-fit: cover;
    }

    .contenido-slider > div{
        width: 40%;
    }

    .contenido-slider h2{
        font-size: 23px;
    }
}


@media screen and (max-width:600px)
{
    .contenido-slider{
       flex-direction: column-reverse;
    }

    .contenido-slider > div{
        width: 80%;
    }
}

.conainerCatalogo
{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0;
}
.imgBx
{ 
  position: absolute;
  width: 100%;
  height: 100%;
}
.conainerCatalogo .Catalogo
{
  position: relative;
  width: 300px;
  height: 300px;
  margin: 10px;
  overflow: hidden;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.conainerCatalogo .Catalogo .contentCa 
{
  position: absolute;
  bottom: -600px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  flex-direction: column;
  background-color: white;
  transition: bottom 0.5s;
  transition-delay: 0.4s;
}
.conainerCatalogo .Catalogo:hover .contentCa
{
  bottom: 0px;
  transition-delay: 0.4s;
}
.conainerCatalogo .Catalogo .contentCa .contentBx h3
{
  color: black;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  line-height: 0.5s;
  opacity: 0;
  transform: translateY(-20px);
  transition-delay: 0.2s;
}
.conainerCatalogo .Catalogo:hover .contentCa .contentBx h3
{
  opacity: 1;
  transform: translateY(0px);
}
.conainerCatalogo .Catalogo .contentCa .contentBx h3 span
{
  font-size: 18px;
  font-weight: 300;
  text-transform: initial;
}
.conainerCatalogo .Catalogo .contentCa .Compra
{
  position: relative;
  bottom: 10px;
  display: flex;
}
.conainerCatalogo .Catalogo .contentCa .Compra li
{
  list-style: none;
  margin: 0 10px;
  transform: translateY(40px);
  transition: 0.5s;
  opacity: 0;
}
.conainerCatalogo .Catalogo:hover .contentCa .Compra li
{
  transform: translateY(0px);
  opacity: 1;
}
.conainerCatalogo .Catalogo .contentCa .Compra li a
{
  color: black;
  font-size: 34px;
  margin: 0px;
}

.Titulos{
  margin: 20px;
  padding: 0;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}

.Titulos a{
  text-decoration: none;
  color: black;
  padding: 9px 20px;
  border: 1px solid black;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  font-size: 20px;
}
.Titulos a:hover{
  background-color: #4290ee;
  color: #fff;
}

.conainerCatalogo2
{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0;
}
.imgBx2
{ 
  position: relative;
  left: 0px;
  width: 450px;
  height: 350px;
}
.conainerCatalogo2 .Catalogo2
{
  position: relative;
  width: 1000px;
  height: 300px;
  margin: 10px;
  overflow: hidden;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.conainerCatalogo2 .Catalogo2 .contentCa2 
{
  position: absolute;
  bottom: -600px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  flex-direction: column;
  background-color: white;
  transition: 0.5s;
  transition-delay: 0.4s;
}
.conainerCatalogo2 .Catalogo2:hover .contentCa2
{
  bottom: 0px;
  transition-delay: 0.8s;
}
.conainerCatalogo2 .Catalogo2 .contentCa2 .contentBx2 h3
{
  color: black;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  line-height: 0.5s;
  opacity: 0;
  transform: translateY(-20px);
  transition-delay: 0.5s;
}
.conainerCatalogo2 .Catalogo2:hover .contentCa2 .contentBx2 h3
{
  opacity: 1;
  transform: translateY(0px);
}
.conainerCatalogo2 .Catalogo2 .contentCa2 .contentBx2 h3 span
{
  font-size: 18px;
  font-weight: 300;
  text-transform: initial;
}
.conainerCatalogo2 .Catalogo2 .contentCa2 .Compra2
{
  position: relative;
  bottom: 10px;
  display: flex;
}
.conainerCatalogo2 .Catalogo2 .contentCa2 .Compra2 li
{
  list-style: none;
  margin: 0 10px;
  transform: translateY(40px);
  transition: 0.5s;
  opacity: 0;
}
.conainerCatalogo2 .Catalogo2:hover .contentCa2 .Compra2 li
{
  transform: translateY(0px);
  opacity: 1;
}
.conainerCatalogo2 .Catalogo2 .contentCa2 .Compra2 li a
{
  color: black;
  font-size: 34px;
  margin: 0px;
}

.text{
  color: #4e4a67;
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.0em;
  text-align: center;
  color: #0d0925;
}

@media screen and (max-width:900px){
    .imgBx2 > img{
    display: none;
    }

@media screen and (max-width:900px)
{
  .text
  {

  margin: 10px;
  color: black;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  }

}

@media screen and (max-width:900px)
{
 .conainerCatalogo2 .Catalogo2
  {
    margin: 10px;
    height: 300px;
    width: 300px;
  }

}