@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;
  background: linear-gradient(180deg,#fff,#b4b7ba);
  border-radius: 20px;
}
.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 .content
{
  position: relative;
  width: 50%;
  left: 20;
  padding: 20px 20px 20px 40px;
  transition: 0,5s;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.containermks .card:hover .content
{
  left: 0;
  opacity: 1;
  visibility: visible;
}
.containermks .card .content h2
{
  color: black;
  text-transform: uppercase;
  font-size: 2.2em;
  line-height: 1em;
}
.containermks .card .content p
{
  color: black;
}
.containermks .card .content a
{
  position: relative;
  color: #111;
  background: #fff;
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 700;
}
@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 .content
  {
    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 .content
 {
  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;
}

.contact-info
{
  color: black;
  max-width: 500px;
  line-height: 65px;
  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: 35px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contact-formx .text-box
{
  background: #000;
  color: #fff;
  border: none;
  width: calc( 47% - 15px);
  height: 50px;
  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: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-formx .send-btn
{
  float: right;
  background: #2E94E3;
  color: #fff;
  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;
}

.contact-formx .send-btn:hover{
  background: #0582E3;
}

@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;
  }
}
@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(70vh - 50px);
  background-color: #F5F5F5;
  background-size: cover;
  background-position: center;
  transition: all .1s ease-out;
  background-image: url('img/Banner/bannermks-0.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/bannermks-0.jpg');
  }
  25%{
    background-image: url('img/Banner/bannermks-0.jpg');
  }


  26%{
    background-image: url('img/Banner/bannermks-1.png');
  }
  50%{
    background-image: url('img/Banner/bannermks-1.png');
  }


  51%{
    background-image: url('img/Banner/bannermks-2.png');
  }
  75%{
    background-image: url('img/Banner/bannermks-2.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/bannermks-2.png)top left repeat-x;
 }
}
@media (max-width: 768px)
{
 .wave
 {
   position: absolute;
 }
 .banner
 {
  background: url(img/Banner/bannermks-0.jpg)top left repeat-x;
 }
}
@media (max-width: 768px)
{
  .banner img
  {
    flex-direction: column;
  }
}
.conainerCatalogo
{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0;
}
.conainerCatalogo .Catalogo
{
  position: relative;
  width: 300px;
  height: 400px;
  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: rgba(0, 22, 40, .6);
  transition: bottom 0.4s;
  transition-delay: 0.2s;
}
.conainerCatalogo .Catalogo:hover .contentCa
{
  bottom: 0px;
  transition-delay: 0.4s;
}
.conainerCatalogo .Catalogo .contentCa .contentBx h3
{
  color: white;
  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.4s;
  opacity: 0;
  transition-delay: calc(0.2s * var(--i));
}
.conainerCatalogo .Catalogo:hover .contentCa .Compra li
{
  transform: translateY(0px);
  opacity: 1;
}
.conainerCatalogo .Catalogo .contentCa .Compra li a
{
  color: black;
  font-size: 34px;
  margin: 0px;
}
.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;
    }

    .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%;
    }
}
.Catalogo
{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  margin: 30px;
  height: 300px;
  justify-content: center;
  align-items: center;
  height: auto;
}
.Catalogo .box
{
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 20px;
  display: flex;
}
.Catalogo .box:hover
{
  z-index: 1;
  transform: scale(1.25);
  box-shadow: 0 25px 40px rgba(0,0,0,.5);
}
.Catalogo .box .imgbox
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.Catalogo .box .imgbox:before
{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg,#fff,#b4b7ba);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: 0.5s;
}
.Catalogo .box:hover .imgbox:before
{
  opacity: 1;
}
.Catalogo .box .imgbox img
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Catalogo .box .contentCa
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  padding: 20px;
  align-items: flex-end;
}
.Catalogo .box .contentCa h2
{
  color: #fff;
  transition: 0.4s;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 20px;
  transform: translateY(200px);
}
.Catalogo .box:hover .contentCa h2
{
  transform: translateY(0);
  transition-delay: 0.5s;
}
.Catalogo .box .contentCa p
{
  color: #fff;
  transform: translateY(250px);
  transition: 0.4s;
  font-size: 19px;
  position: flex;
}
.Catalogo .box:hover .contentCa p
{
  transform: translateY(0);
  transition-delay: 0.5s;
}

.Titulos
{
  margin: 20px;
  padding: 0;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.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;
}
