@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

:root {
	--main-font: 'Poppins', sans-serif;
	--font-size: 16px;
	--main-color: #DD1D21;
	--second-color: #FBCE07;
	--text-color: #4d4d4d;
	--btn-color: #FF8C04;
	--main-modal-color: #ffffff;
	--second-modal-color: rgba(34,34,34,0.85);
	--container-width: 100%;
  }
  
  
  * {
	  padding: 0px;
	  margin: 0px;
	  box-sizing: border-box;
	  text-decoration: none;
	  list-style: none;
	  scroll-behavior: smooth;
  }
  
  input, textarea, select, button  { margin:0; padding:0; outline:0; border:0; box-sizing: border-box;}
  
  
  body {
	  background: #fff;
	  font-size: 16px;
	  font-weight: 400;
	  font-family: 'Poppins', sans-serif;
	  box-sizing: border-box;
	  color: #212121;
	  line-height: 25px;
	  overflow-x: hidden;
	  height:100%;
   }
  
   h1 {
	  font-size: 42px;
	  font-family: 'Poppins', sans-serif;
	  text-align: center;
	}
  
	h2 {
	  font-size: 28px;
	  font-family: 'Poppins', sans-serif;
	}
	
	a {
	  -webkit-transition: all 0.2s linear;
	  -moz-transition: all 0.2s linear;
	  -o-transition: all 0.2s linear;
	  transition: all 0.2s linear;
	}
	
	a:hover {
	  text-decoration: none;
	}
	
	a a:focus {
	  outline: none;
	}
	
	p {
	  font-weight: 400;
	  font-family: 'Poppins', sans-serif;
	  margin: 0px;
	  font-size: 16px;
	}
	
	ul, ol {
	  list-style: outside none none;
	  margin: 0;
	  padding: 0;
	}
	
	ul li, ol li {
	  list-style: none;
	}

body {
	width: 100%;
	height: 100%;
	font-family: 'Poppins', sans-serif;
}

.container {
	margin: 0 10%;
}

.top-bar  {
	width: 100%;
	height: 50px;
	color: #fff;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position:absolute;
	top:0;
	right:0;
	z-index: 9999;
	font-size: 14px;
}

.top-bar .social-header a, i {
	text-decoration: none;
	color: #fff;
}

.social-header i:hover {
	color: #005192;
}

.header-bar {
	width: 100%;
	background-color: var(--second-color);
	z-index: 9999 !important;
	position: fixed;
	left:0%;
	top:50px;
	height:70px;
}

.subir {
	/*position:fixed;*/
	top:0;
	transition: all 0.5s; 
	/*animation-name: top;*/
}

@keyframes top {
	0% { 
		transform: translateY(0); 
	}
	100% { 
		transform: translateY(-50); 
	}
}

.yellow-bar {
	display: flex;
	align-items: center;
	padding: 0 10%;
}

.yellow-bar h1 {
	font-size: 20px;
	padding-left: 20px;
}

.identidad { display:flex; justify-content: start; align-items: center; padding-right: 5%;}

#logo {
    height: 100%;
    background-color: #ffffff;
    width: 80px;
	display: flex;
    justify-content: center;
    align-items: center;
	height:70px;
}

#logo img { width: 90%;}

.panel-btn { display:none; }
#Equis { display:none;}

.menu {
	display: flex;
	justify-content: space-between;
}

.menu li {
	padding: 0 20px;
}

.menu li a {
	color: var(--text-color);
	font-size: 15px;
}

.accesso-clientes  {
    border: solid 1px var(--text-color);
    border-radius: 25px;
    padding: 3px 15px;
	position: absolute;
    right: 10%;
}

.accesso-clientes a  {
    color: var(--text-color);
	font-size: 15px;
}

.accesso-clientes a i:before  {
    color: var(--text-color);
}

/* ********  Whatapp ********* */

#whatsapp {
	position: fixed;
    z-index: 999;
    top: 80%;
    right: 2rem;
}

#whatsapp img {
    width: 4rem;
    height: 4rem;
}

/* ********  Scroll Top Btn ********* */

.scroll-top-btn {
    position: fixed;
    z-index: 999;
    bottom: 1vh;
    right: 3%;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: var(--main-color);
    color: var(--second-color);
    cursor: pointer;
    outline: 0;
    border: 0;
    transition: all 0.3s ease-out;
}

.scroll-top-btn:hover {
    background-color: var(--second-color);
    color:  var(--main-color);
}

.hidden {
    visibility: hidden;
    opacity: 0;
}

/*** SLIDER***/
.slideshow-container {width: 100%;position: relative;margin: auto;background-color: #000000; overflow:hidden; height: calc(100vh - 90px);}
.slideshow-container .mySlides {display: none; height: 100%;}
.prev, .next {cursor: pointer;position: absolute;top: 50%;width: auto; margin-top: -22px;padding: 7px 16px;color: white;/*background-color: var(--second-color); */width: 40px; height: 40px;font-weight: bold; font-size: 18px;transition: 0.6s ease;user-select: none;}
.prev {left: 0px;}
.next {right: 0px; }
.prev:hover, .next:hover {background-color: rgba(0,0,0,0.8); }
#dots {position: absolute; top: 85%; left: 48%; }
.dot {cursor: pointer;height: 8px;width: 8px; margin: 0 2px;background-color: var(--main-color); border-radius: 50%;display: inline-block; transition: all 0.6s ease; }
.slideshow-container .mySlides .dot:hover { background-color: var(--second-color); }
.active { background-color: var(--second-color); }
.slideshow-container h1 {font-size: 42px;font-family: 'Poppins', sans-serif; text-align: center;position: absolute;color: #ffffff;font-weight: 200;top: 50%; width: 100%;}
.slideshow-container .slider-btn {font-size: 18px;font-family: 'Poppins', sans-serif; text-align: center;position: absolute;color: #ffffff;font-weight: 300;top: 65%; background-color: var(--main-color); padding: 10px 20px; border-radius: 25px; left: 40%; width: 20%;display: block;}
.slider-btn:hover {transition: all 0.4s ease-in-out; background-color: var(--btn-color);}
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

.mod-naftas {
	background-color: #000000;
	width:100%;
}

.mod-naftas-info {
	color: #ffffff;
	display:flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	padding: 1% 0;
	font-weight: 300;
}

.mod-naftas-info span {
	display: block;
}

.mod-naftas-col {
    width: 100%;
    border-right: 1px solid var(--main-color);
}

span.item-valor {
    font-size: 2em;
    padding: 5px 0;
}

.presentacion {
	width: 100%;
	display: flex;
	align-items: center;
	padding:5% 0;
}

.presentacion-container {
	width: 45%;
	color: var(--text-color);
	text-align: left;
}

.presentacion-container h2 {
	font-weight: 300;
	line-height: 1.5;
	text-align: left;
	padding-bottom: 1em;
}

.presentacion-container img {
	display:block;
	position:relative;
	width:80%;
	border-bottom: 4px solid var(--main-color);
}

.presentacion-container a {
	display: block;
	width: 30%;
	color: #fff;
	background-color: #005192;
	padding: 5%;
	text-decoration: none;
	text-align: center;
}



/* service */

#service { background-color: #f7f7f7; padding: 5% 0;}

.titulo {
	width: 100%;
	color: var(--text-color);
	font-size: 36px;
	padding-bottom: 30px;
	font-weight: 300;
	display:block;
}

.titulo:after {
	content: "";
    display: block;
    background-color: var(--main-color);
    width: 7%;
    height: 4px;
    margin: 30px auto 0 auto;
}


.cards { display:flex; justify-content: space-between; align-items: center; flex-wrap:wrap;}


.card { 
	position: relative; 
	overflow: hidden; 
	width: 30%; 
	height: auto;
	background-color: #ffffff;
	display: block;
	margin: 1%;
	box-shadow: 0px 0px 15px -1px rgba(0,0,0,0.25);
}

.card figure {overflow: hidden; position:relative;height: 200px;}

.card figcaption { position:absolute; z-index:100; top:50%; left:50%; color:#FFF;  
								font-size: 1rem;
								display: flex;
							 	justify-content: center;
							   	align-items: center;
							   	margin: 0 auto;
								padding: 10px 10px;
								 width: 70%;
								border: solid 2px #FFF; 
								background-color: rgba(221, 29, 33,0.8);
								cursor: pointer; 
								transform: translate(-50%, -50%) scale(0.8);
								transition: transform 0.4s ease-in-out;}
.card img { max-width:100%; display:block; 
										transform: scale(1.3);	
  							  			filter: grayscale(1);
										transition: all 0.4s ease-in-out;}		
.card:hover figcaption { transform: translate(-50%, -50%) scale(1);}												
.card:hover img { transform: scale(1);	filter: grayscale(0);}
.card p { font-size: 0.9em; padding: 5% 8%;}
.card-btn { text-align: center; color: #ffffff;font-weight: 300; background-color: var(--main-color); padding: 8px 10px; border-radius: 25px; width: 50%;display: block; margin: 3% auto 10%;}
.card-btn:hover {transition: all 0.4s ease-in-out; background-color: var(--btn-color);}


/*********** UBICACION **************/

.ubicacion { padding: 5% 0 0 0}
.ubicacion h2 { font-weight: 300; text-align:center;}
.ubicacion p { text-align:center; margin-top: 10px;}
.mapa-btn { font-family: 'Poppins'; font-size: 18px; text-align: center; color: #ffffff;font-weight: 300; background-color: var(--main-color); padding: 10px 10px; border-radius: 25px; width: 15%; display: block; margin: 3% auto 10%; cursor:pointer;}
.mapa-btn:hover {transition: all 0.4s ease-in-out; background-color: var(--btn-color);}

.modal { display: flex; align-items:center;background-color: rgba(0,0,0,0.9); width:100%; height:100%; position:fixed; top:0; left:0; right:0; bottom:0;z-index:9999; opacity: 1; transition: all 0.5s ease;}
.cerrar {border: none; display: block; position: absolute; top: 5%; right: 5%; border:2px solid #f3f3f3;  border-radius: 50%;font-size: 24px; width: 50px; height: 50px;  text-align:center; cursor: pointer; }
.cerrar span {display: block;  font-size: 24px;  color:var(--text-color); text-align:center; }
.modal-iframe { display:block; width: 70%; display: flex; justify-content: center; align-items: center; margin: 0 auto; border: solid 2px #ffffff;}
.modal-iframe iframe { width: 100%;}

.hidde { display: none; opacity: 0;}
.show { display: block; }

#video-tutorial .ver-tutorial {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 16px;
    text-align: center;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFF;
    border-radius: 50px;
    background-color: var(--celeste);
    cursor: pointer;
}


/*********** CONTACTO ****************/

#imgForm {
    background-image: url('../img/form-image.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    color: #ffffff;
}

.imgForm-content { display: flex;
    justify-content: space-between;
    align-items: top; }

#imgForm article { width: 50%; padding: 5% 0;}

.titulo-blanco {
	width: 100%;
	color: #ffffff;
	font-size: 28px;
	line-height: 1.2;
	padding-bottom: 30px;
	font-weight: 300;
	display:block;
	text-align:left;
}

.titulo-blanco:after {
	content: "";
    display: block;
    background-color: var(--second-color);
    width: 7%;
    height: 4px;
    margin: 30px 0 0 0;
}

.container-formulario { width: 38%!important; }
#formulario {  display: flex;  justify-content: left; width: 100%!important; }
#formulario form { display: block; padding: 7%; width: 100%; background-color: #ffffff; color: #ffffff; text-align: left; }
#formulario a { display: flex; align-items: center; width: 90%; margin: 0 auto; }
#header_quick_form a p { font-weight: 700; font-size: 33px; color: #ffffff;  }
#header_quick_form a img { margin-right: 2%; }
#quick_form { display:block; width: 100%; background-color: rgba(0,0,0,0.7);  }
#formulario input { display: block; width: 100%; height: 45px; background-color: rgba(0,0,0,0.05); 
	color:#666666; margin: 0 0 10px 0;  text-align: left; padding: 5%; border:none; font-size: 14px; border-radius: 15px; }
#formulario label { margin: 0 0 2px 0;  text-align: left;  font-size: 14px; color:#000000; }
#formulario textarea { display: block; width: 100%; height: 45px; background-color: rgba(0,0,0,0.05);  height: 75px; border-radius: 15px; font-family: 'Raleway', sans-serif;  font-size: 14px; padding: 5%; resize:none; }
.contact-form-error {font-size: 80%; color: #666666; transition: all 800ms ease; margin-top: -10px;}
.contact-form-error.is-active {display: block; animation: show-message 1s 1 normal 0s ease-out both;}
#btn-formulario { display: block; width: 40%;  text-align: center; color: #ffffff; margin: 15px auto 0 auto;   }
#btn-formulario input { font-family:var(--main-font); display: block; width: 100%; background-color: var(--main-color); color: #ffffff; cursor: pointer; border:none; font-size:16px; font-weight: 700; border-radius: 25px; height: 45px; text-align: center; margin:0; }
#btn-formulario input:hover {transition: all 0.4s ease-in-out; background-color: var(--btn-color);}
.none { display:none;}
.contact-form-loader { text-align: center; margin-top: 10px; }
.contact-form-response { width: 100%; text-align: center; font-size: 12px; color: #666666; margin: 10px 0 0 0; }

@keyframes show-message {
    0% {
        visibility: hidden;
        opacity: 0;
    }
    100% {
        visibility: visible;
        opacity: 1;
    }
}



/********* FOOTER **************/

footer {
	background-color: #ffffff;
	width: 100%;
	padding: 5% 0 0 0;
}

footer h2 { color: rgba(0,0,0,0.7);font-size: 24px; font-weight: 500; text-align:center; line-height:1.5;}
footer h3 { color: rgba(0,0,0,0.7);font-size: 21px; font-weight: 300;  text-align:center; line-height:1.2;}

.footer-social {
	width: 100%;
	margin: 0 auto;
	list-style: none;
	text-align: center;
}

.footer-social li {
	text-align: center;
	width: 5%;
	display: inline-block;
	font-size: 2.5em;
	color: rgba(0,0,0,0.7);
}

.footer-social i:before { color: rgba(0,0,0,0.7);}

.footer-social li:last-child {
	display: block;
	margin: 0 auto;
	width: 100%;
	padding: 5% 0;
	font-size: 2em;
	font-weight: 500;
}

.footer-social li:last-child i {
	font-size: 0.8em;
}

.footer-social li a {
	text-decoration: none;
	color:rgba(0,0,0,0.7);
}

.footer-social li a:hover {
	opacity: 0.5;
}

.footer-menu {
	width: 50%;
	margin: 0 auto;
	list-style: none;
	display: flex;
	justify-content: space-between;
}

.footer-menu li {
	border-left: solid 1px rgba(0,0,0,0.7);
	padding: 0 20px;
    width: 100%;
    text-align: center;
}

.footer-menu li:first-child {
	border-left: none;
}

.footer-menu li a {
	color:rgba(0,0,0,0.4);
	text-decoration: none;
	font-size: 15px;
	text-align: center;
}

.footer-menu li a:hover {
	color:rgba(0,0,0,0.7);
}

.legal { background-color: var(--main-color); margin-top: 5%;}
.legal p {color:#ffffff; font-size: 12px; text-align: center;}




/* BREAKPOINTS */

@media screen and (min-width: 1920px) {
	.slideshow-container .slider-btn { width: 10%; left:45%; font-size: 21px;}
	.yellow-bar { padding: 0 15%; }
	.prev { left: 50px; }
	.next { right: 50px; }
	.accesso-clientes { right: 25%; }
	.container { margin: 0 15%; }
	.presentacion-container { width: 40%;  padding-right: 5%;}
	.card figure { height: 300px; }

}

@media screen and (max-width: 1024px) {
	.container { margin: 0 5%; }
	.presentacion-container img { width: 100%; }
	.container-formulario { width: 45%!important; }
	.accesso-clientes { right: 40%;}

	/**** MENU MOBILE ****/

	.panel {
        position: fixed;
        z-index: 998;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background-color: var(--second-modal-color);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.5s ease;
       	display: flex;
	   	flex-direction: column;
        align-items: center;
		justify-content: center;
    }

    .panel-btn.is-active #Barritas { display:none;}
	.panel-btn.is-active #Equis { display:block;}
    
    .panel.is-active {
        /*transform: translate(0,0);*/
        visibility: visible;
        opacity: 1;
    }

    .panel-btn {
        display: block;
		position: absolute;
		z-index: 9999!important;
		right: 10%;
		width: 3rem;
		height: 3rem;
		border-radius: 50%;
		font-size: 1.5rem;
		font-weight: bold;
		background-color: #ffffff;
		color: rgba(0,0,0,0.7);
		cursor: pointer;
		outline: 0;
		border: 0;
		transition: all 0.3s ease-out;
    }
    
    .menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .menu li {
        width: 100%;
        flex-direction: column;
    }

    .menu li a button {
        font-size: 1.5rem;
        text-decoration: none;
        color: var(--main-color);
        transition: all 0.3s ease;
    }

    .menu li a button:hover {
        color: #ffffff;
    }
    
    .menu li a {
        padding:2rem;
        width: 100%!important;
        display: block;
        font-size: 1.5rem;
        text-decoration: none;
        color: #ffffff;
        transition: all 0.3s ease;
    }
    
    .menu a:hover {
        width: 100%!important;
        font-weight: bold;
        color: #ffffff;
        background-color: var(--main-color);
    }
}

@media screen and (max-width: 768px) {
	.container { margin: 0 10%; }
	.accesso-clientes { right: 20%; }
	.slideshow-container h1 { font-size: 34px; top: 55%; }
	span.item-nombre {font-size: 0.8em; }
	span.item-valor { font-size: 1.2em; }
	.presentacion { align-items: flex-start;}
	.presentacion-container { padding-right: 5%; }
	.presentacion-container h2 { font-size: 21px;}
	.card { width: 45%; margin: 1% 1% 3% 1%;}
	.container-formulario { width: 50%!important; }
	.legal p { padding: 1% 5%; line-height: 1.3;}
}

@media screen and (max-width: 500px) {
	.container { margin: 0 5%; }
	/*.top-bar {display: none;}*/
	.header-bar { top: 0; position: sticky; height: 60px; }
	.yellow-bar { padding: 0; }
	.yellow-bar h1 { font-size: 15px; padding-left: 10px;}
	#logo { width: 60px; height: 60px;}
	#logo img {width: 80%;}
	.accesso-clientes { right: 3%; padding: 2px 8px; }
	.accesso-clientes a { font-size: 12px;}
	.panel-btn { position: fixed; right: 1vw; bottom: 1vh;}
	.scroll-top-btn { right: calc(3.25rem + 1vw); }
	.slideshow-container .slider-btn { left: 30%; top: 62%; width: 40%; padding: 8px 20px; }
	#dots { top: 85%; left: 46%;}
	.slideshow-container h1 {font-size: 28px; line-height: 1.3; padding: 0 5%; top: 20%; }
	.prev, .next { display: none; }
	.mod-naftas-col:first-child { width: 100%; padding-bottom: 2%; }
	.mod-naftas-col { width: 25%; border-right: none;}
	span.item-nombre { font-size: 0.6em; }
	span.item-valor { font-size: 1.5em;}
	.mod-naftas-info {flex-wrap: wrap; padding: 5% 0; }
	.panel-btn { background-color: var(--main-color); color: var(--second-color); }
	.presentacion { width: 90%;}
	.presentacion-container {padding-right: 0;}
	.presentacion-container { width: 100%;}
	.presentacion-container img { width: 100%; margin: 5% 0;}
	.presentacion { flex-direction: column;}
	.titulo { font-size: 30px;}
	.titulo:after { margin: 20px auto 0 auto;}
	.card { width: 100%; }
	.mapa-btn { width: 35%;}
	.ubicacion h2 { font-size: 21px;}
	.imgForm-content { flex-direction: column; padding: 5% 0;}
	#imgForm article { width: 100%;}
	.container-formulario { width: 100%!important; }
	.titulo-blanco { padding-bottom: 5px;}
	.titulo-blanco:after { width: 20%;}
	.titulo:after { width: 20%;}
	.footer-social li { padding: 0; width: 12%;}
	.footer-menu { flex-direction: column;}
	.footer-menu li { border: none;   padding: 10px 20px;}
	.legal p { text-align: left; font-size: 11px; padding: 2% 35% 2% 5%; }
}