/* ===================================
    Crafto - Pizza parlor
====================================== */
/* font */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700;800;900&display=swap');
/* variable */
:root {     
    --base-color: #f7982b;
    --very-light-gray:#F0EEEA;
    --medium-gray: #7e7e7e;
    --medium-gray-a: #bcbcbc;
    --yellow: #ECBA23;
    --corn:#d1da4b;
    --cafe:#4a290b;
    --alt-font: "Plus Jakarta Sans", sans-serif;
    --primary-font: 'Poppins', sans-serif;
    --tertiary-font: 'Schibsted Grotesk', sans-serif;
    --antonio-font: 'Antonio', sans-serif;
} 
body{
    font-size: 17px;
    line-height: 30px;
}
.color-veloz{
    color:#f7982b!important;
}

.bg-veloz{
    background-color:#f7982b!important;
    color:#fff!important;
}


.color-cafe{
    color:#4a290b!important;
}

.color-yellow{
    color:#ECBA23!important;
}

.bg-cafe{
    background-color:#4a290b!important;
}

.text-corn{
     color: var(--corn);
}

.bg-corn{
     background-color: var(--corn);
}

.gradient-cv{
background: rgb(209,218,74);
background: linear-gradient(90deg, rgba(209,218,74,1) 0%, rgba(247,152,43,1) 100%);
    color:#fff!important;
}

.gradient-cv-text {
  background: linear-gradient(90deg, rgba(247,152,43,1) 0%, rgba(209,218,74,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* para compatibilidad */
  color: transparent; /* fallback */
}

.btn-gradiente {
  background: linear-gradient(140deg, rgba(255,123,0,1) 0%, rgba(255,198,0,1) 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.btn-gradiente:hover {
  background: transparent;
  color: transparent;
  border: 2px solid orange;
  background-image: linear-gradient(140deg, rgba(255,123,0,1) 0%, rgba(255,198,0,1) 100%);
  background-clip: text, padding-box;
  -webkit-background-clip: text, padding-box;
  -webkit-text-fill-color: transparent;
}

.btn-gradiente:hover i {
  background: linear-gradient(140deg, rgba(255,123,0,1) 0%, rgba(255,198,0,1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn-gradiente:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}



.btn.btn-cafe {
  background-color: var(--cafe);
  color: var(--white);
}
.btn.btn-cafe:hover, .btn.btn-cafe:active {
  background-color: transparent;
  border-color: var(--cafe);
  color: var(--cafe);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Align list items to the right on desktop */
}

/* List items default layout: icon right */
.feature-list li {
  display: flex;
  justify-content: flex-end;
  text-align: right;
  flex-direction: row-reverse;
  gap: 10px;
  padding: 10px 0;
}

/* On mobile, flip layout and align left */
@media (max-width: 991px) {
  .feature-list {
    align-items: flex-start;
  }

  .feature-list li {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
}




.bg-gradient-cvf{
background: rgb(255,123,0);
background: linear-gradient(140deg, rgba(255,123,0,1) 0%, rgba(255,198,0,1) 100%);
}

.list-style-01 li {
    display: flex;
    align-items: center; /* Alinea verticalmente ícono y texto */
    gap: 8px; /* Espaciado entre ícono y texto */
    font-size: 18px; /* Tamaño base del texto */
}

.list-style-01 i {
    font-size: 1.4em; /* Tamaño relativo al texto */
    line-height: 1; /* Evita que el ícono desajuste la línea */
    transform: translateY(1px); /* Ajuste fino para alineación perfecta */
}

.list-style-venta li {
    display: flex;
    align-items: center; /* Alinea verticalmente ícono y texto */
    gap: 6px; /* Espaciado entre ícono y texto */
    font-size: 18px; /* Tamaño base del texto */
}

.list-style-venta i {
    font-size: 1.4em; /* Tamaño relativo al texto */
    line-height: 1; /* Evita que el ícono desajuste la línea */
    transform: translateY(1px); /* Ajuste fino para alineación perfecta */
}


.list-style-cv {
  list-style: none;
}
.list-style-cv li {
 border-bottom: 3px dotted #ccc !important;
}


.list-style-cv li {
    display: flex;
    align-items: center; /* Alinea verticalmente ícono y texto */
    gap: 8px; /* Espaciado entre ícono y texto */
    font-size: 16px; /* Tamaño base del texto */
}

.list-style-cv i {
    font-size: 1.4em; /* Tamaño relativo al texto */
    line-height: 1; /* Evita que el ícono desajuste la línea */
    transform: translateY(1px); /* Ajuste fino para alineación perfecta */
}

.fader-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.fader-img {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.fader-img.show {
  opacity: 1;
}


.pb-3px {
    padding-bottom: 3px;
}
/* header */
.center-logo .navbar-nav .nav-link {
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-separator img {
filter: brightness(0) saturate(100%) invert(64%) sepia(79%) saturate(711%) hue-rotate(337deg) brightness(98%) contrast(98%);
}

.testimonial-text {
    position: relative;
    display: inline-block;
    font-style: italic;
    color: #333;
    text-align: center;
    padding: 0px;
}

.testimonial-text::before,
.testimonial-text::after {
    font-size: 60px; /* Adjust the size of the quotes */
    font-weight: bold;
    font-family: var(--alt-font);
    color: var(--cafe); /* Change color if needed */
    position: absolute;
}

.testimonial-text::before {
    content: "“"; /* Left quote */
    left: -40px; /* Adjust positioning */
    top: 0px;
}

.testimonial-text::after {
    content: "”"; /* Right quote */
    right: -40px; /* Adjust positioning */
    bottom: 0px;
}

header .navbar-brand img {
    max-height: 90px;
}
header .btn.btn-rounded.btn-medium {
    font-size: 15px; 
}
/* btn */
.btn {
    font-weight: 600;
    letter-spacing: 0px;
}
.btn.btn-extra-large {
    padding: 20px 35px 22px;
    font-size: 17px;
}
.btn.btn-large {
    padding:15px 30px 17px;
    font-size: 16px;
}
.btn.btn-medium {
    padding:12px 22px 12px;
    font-size: 15px;
}
.btn.btn-small {
    padding: 8px 20px 10px;
    font-size: 14px;
}
.btn.btn-very-small { 
    padding: 9px 20px 10px;
    font-size: 12px;
}
.btn.btn-link {
    padding: 0 0 2px;
}
.btn.btn-rounded.btn-medium {
    padding: 10px 26px 12px;
}
.btn.btn-black-transparent-light {
    background-color: rgba(0, 0, 0, 0.2);
    border-color: transparent;
    color: var(--white);
}
.btn.btn-black-transparent-light:hover, .btn.btn-black-transparent-light:active  {
    background-color: rgba(0, 0, 0, 0.2);
    border-color: transparent; 
    color: var(--white);
}
/* bg color */
.bg-gradient-dark-transparent {
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.10) 50%, rgba(0,0,0,0) 100%);
}
.bg-gradient-very-light-gray {
    background-image: linear-gradient(to bottom, #F0EEEA, #ffffff, #ffffff, #ffffff, #ffffff);
}
.bg-base-color-transparent {
    background-color: rgba(189, 55 , 35, 0.1);
}
/* border color */
.border-color-transparent-dark-very-light {
    border-color: rgba(35, 35, 35, 0.2) !important;
}
/* page title */
.page-title-extra-large h2 {
    font-size: 24px;
    line-height: 28px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    margin-top: 5px;
    margin-left: 30px;
}
/* review */
.review-star-icon-white i {
    color: var(--white);
}
/* tab style 02 */
.tab-style-02 .nav-tabs > li.nav-item {
    margin-left: 45px;
    margin-right: 45px;
}
/* contact form style 03 */
.contact-form-style-03 .btn i {
    top: 0;
}
.contact-form-style-03 input:focus, .contact-form-style-03 textarea:focus {
    background: transparent;
}
/* process step style 02 */
.process-step-style-02:hover .process-step-icon {
    color: var(--white);
}
.slider-navigation-style-04 {
    height: 60px;
    width: 60px;
}
.counter-style-06 .feature-box-content:after {
    background: rgba(23,23,23,.2);
}
.accordion-style-06 .accordion-item.active-accordion {
    background-image: linear-gradient(to bottom, #f8f6f2, #ffffff);
}
/* place holder */
.placeholder-light-transparent::-webkit-input-placeholder { color: var(--white) !important; text-overflow: ellipsis; opacity:0.5; }
.placeholder-light-transparent::-moz-placeholder { color: var(--white) !important; text-overflow: ellipsis; opacity:0.5; }
.placeholder-light-transparent:-ms-input-placeholder { color: var(--white) !important; text-overflow: ellipsis; opacity:0.5; }
/* footer */
footer {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: -100px;
    position: relative;
    z-index: 1;
}
.footer-bg {
    -webkit-clip-path: ellipse(100% 100% at 50% 100%);
    clip-path: ellipse(100% 100% at 50% 100%);
}
footer .footer-logo img {
    max-height: 65px;
}
footer .elements-social .medium-icon li {
    margin: 0 3px;
}
footer .social-icon-style-09 ul.light li a {
    background: rgba(255, 255, 255, 0.1);
    border: none;
}
.footer-navbar li a:hover {
    color:  var(--white);
}
/* slider revolution  */
.slider-bg {
    -webkit-clip-path: ellipse(110% 90% at 50% 0%);
    clip-path: ellipse(110% 90% at 50% 0%);
}
.arrow-button {
    color: #ffffff !important;
}
.arrow-button:hover {
    color: #ffffff !important;
}
/* pricing table style 11 */
.pricing-table-style-11 {
    padding-left: 1rem;
    padding-right: 1rem;
}
/* google map */
.infowindow .mb-3 {
    margin-bottom: 8px !important;
    font-size: 17px;
}
.google-maps-link a {
    font-size: 13px;
}

/* Base overlay class */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Different opacity levels */
.overlay-10 { background: rgba(0, 0, 0, 0.1); }
.overlay-20 { background: rgba(0, 0, 0, 0.2); }
.overlay-30 { background: rgba(0, 0, 0, 0.3); }
.overlay-40 { background: rgba(0, 0, 0, 0.4); }
.overlay-50 { background: rgba(0, 0, 0, 0.5); }
.overlay-60 { background: rgba(0, 0, 0, 0.6); }
.overlay-70 { background: rgba(0, 0, 0, 0.7); }
.overlay-80 { background: rgba(0, 0, 0, 0.8); }
.overlay-90 { background: rgba(0, 0, 0, 0.9); }
.overlay-100 { background: rgba(0, 0, 0, 1); } /* Full black */

/* tooltip */ 
.tooltip-inner {
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.16);
    color: var(--medium-gray);
    padding: 22px 35px;
    max-width: 260px;
    font-size: 16px;
    line-height: 26px;
    text-transform: none;
    font-weight: 400;
}
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before, .bs-tooltip-bottom .tooltip-arrow:before {
    border-bottom-color: var(--white) !important;
    border-width: 0 1.7em 1.7em !important; 
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before, .bs-tooltip-top .tooltip-arrow:before {
    border-top-color: var(--white) !important;
    border-width: 1.7em 1.7em 0 !important; 
}
.bs-tooltip-auto[data-popper-placement^=bottom] {
    margin-top: 15px !important;
}
.bs-tooltip-auto[data-popper-placement^=top] {
    margin-bottom: 15px !important;
}
.tooltip {
    opacity: 1 !important;
}
.tooltip .tooltip-arrow {
    width: 3.5em;
    height: 1.2em;
}
.bs-tooltip-start.tooltip .tooltip-arrow {
    width: 1.2em;
    height: 3.2em;
    margin-top: -18px;
}
.bs-tooltip-auto[data-popper-placement^=left] {
    margin-right: 15px;
}
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before, .bs-tooltip-start .tooltip-arrow:before {
    border-width: 1em 0 1em 1em !important;
    border-left-color: var(--white) !important;
}
.bs-tooltip-end.tooltip .tooltip-arrow {
    width: 1.2em;
    height: 3.2em;
    margin-top: -18px;
}
.bs-tooltip-auto[data-popper-placement^=right] {
    margin-left: 15px !important;
}
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before, .bs-tooltip-end .tooltip-arrow:before {
    border-width: 1.7rem 1.7rem 1.7rem 0 !important;
    border-right-color: var(--white) !important;
}
.tooltip-title {
    font-weight: 600;
    display: block;
    font-size: 18px;
    margin-bottom: 7px;
    color: var(--dark-gray);
    letter-spacing: -0.5px;
}
/* google map */
#map .gmnoprint[data-control-width="40"] {  
    bottom: 60px !important;
    top: auto !important;
}
/* Newsletter popup */
.newsletter-style-01 input {
    padding-right: 75px !important ;
}
.newsletter-popup .newsletter-style-01 .btn {
    transform: none;
}
.subscribe-popup .mfp-close, 
.subscribe-popup .mfp-close:active {
    top: 10px;
    right: 10px;
}
.subscribe-popup .mfp-close:before {
    color: var(--white);
}
/* media query responsive */
@media (min-width: 1921px){
    .bottom-image-layer {width:3000px!important; min-width:3000px!important; max-width:3000px!important;}
}
@media (max-width: 1200px) and (min-width: 1024px){
    .left-side-image-layer img{ width: 23%!important;}
    .right-side-image-layer img{width: 24%!important;}
    .pizza-image-later, .pizza-image-later img {width: 1200px!important; height: 1211px!important;min-width: 1200px!important; min-height: 1211px!important;}
    .pizza-image-later {margin: 250px!important;}
}
@media (max-width: 1199px){
    header .btn.btn-rounded.btn-medium { padding: 8px 14px 10px; font-size: 14px; }
    .navbar.center-logo .navbar-nav .nav-link, header.sticky .center-logo .navbar-nav .nav-link { padding: 38px 11px; }
    .navbar.center-logo .navbar-left, .navbar.center-logo .navbar-right { width: 36%; }
}
@media (max-width: 1080px){
    .pizza-image-later, .pizza-image-later img {width: 1000px!important; height: 1009px!important;min-width: 1000px!important; min-height: 1009px!important;}
    .pizza-image-later {margin: 200px!important;}
    .offer-banner {position: absolute; left: -130px;}
}
@media (max-width: 1023px){
    .offer-banner {position: inherit; left:0;}
}
@media (max-width: 991px){
    .pizza-image-later, .pizza-image-later img {width: 900px!important; height: 908px!important;min-width: 900px!important; min-height: 908px!important;}
    .pizza-image-later {margin: 0px!important;}
    .footer-bg { -webkit-clip-path: ellipse(100% 95% at 50% 100%); clip-path: ellipse(100% 95% at 50% 100%); }
    .tab-style-02 .nav-tabs > li.nav-item { margin-left: 20px; margin-right: 20px; }
    .accordion-style-06 .accordion-item { padding-right: 90px;}
}
@media (max-width: 767px){
    footer { padding-top: 50px; margin-top: 0; }
    .footer-bg { -webkit-clip-path: initial; clip-path: initial; }
    footer ul { line-height: normal;}
    .page-title-extra-large h2 { padding-left: 20px; margin-left: 20px; padding-top: 5px; padding-bottom: 5px; }
    .accordion-style-06 .accordion-item { padding-left: 25px; padding-right: 70px; }
    .accordion-style-06 .accordion-item.active-accordion { padding-top: 25px; padding-bottom: 25px;}
    .video-icon-medium .video-icon { width: 44px; height: 44px; }
    .video-icon .video-icon-sonar .video-icon-sonar-bfr { top: -28px; left: -28px; }
    .video-icon-medium .video-icon { width: 44px; height: 44px; }
    .sm-bottom-25 { bottom: 25%;}
    .sm-top-10 { top: 10%; }
    .sm-left-5 { left: 5%; }
    .icon-extra-double-large { font-size: 60px; }
    .accordion-style-06 .accordion-item i { right: -25px; }
    #map .gmnoprint[data-control-width="40"] {  
        bottom: 20px !important;
        top: auto !important;
    }
    /* Newsletter popup */
    .newsletter-style-01 input {
        padding-right: 28px !important;
    }
}
@media (max-width: 650px){
    .pizza-image-later, .pizza-image-later img {width: 650px!important; height: 656px!important;min-width: 650px!important; min-height: 656px!important;}
    .pizza-image-later {margin: 0px!important;}
    .bottom-image-layer {height:150px!important; min-height:150px!important; max-height:150px!important;}
    .slider-bg {clip-path: ellipse(130% 90% at 50% 0%);}
}
@media (max-width: 400px){
    .pizza-image-later, .pizza-image-later img {width: 550px!important; height: 555px!important;min-width: 550px!important; min-height: 555px!important;}
    .pizza-image-later {margin: 0px!important;}
    .slider-bg {clip-path: ellipse(130% 88% at 50% 0%);}
}
@media (max-width: 575px){
    .page-title-extra-large h2 { padding-left: 0; margin-left: 0; padding-top: 0; padding-bottom: 0;
    }
    
.list-style-venta li {
    display: flex;
    align-items: center; /* Alinea verticalmente ícono y texto */
    gap: 6px; /* Espaciado entre ícono y texto */
    font-size: 16px; /* Tamaño base del texto */
}


}


#social_side_links {
  position: fixed;
  right: 0;
  bottom:20px;
  padding: 5px 20px 5px 5px;
  list-style: none;
  z-index: 10000;
}

#social_side_links li a {display: inline-block;}

#social_side_links li a img {
	display: inline-block;
	max-width:40px;
  -webkit-transition:  background .2s ease-in-out;
  -moz-transition:  background .2s ease-in-out;
  -o-transition:  background .2s ease-in-out;
  transition:  background .2s ease-in-out;
}
.socialfloat ul span {
  max-width: 0;
  -webkit-transition: max-width 1s;
  transition: max-width 1s;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
	color:#fff;
	text-align: center;
    font-weight: normal!important;
}
.socialfloat span {
	display: inline-block;
  max-width: 18rem;
	margin-top: 5px;
	font-size: 12px; 
	text-transform: uppercase;
}
.socialfloat ul:hover span {
	display: inline-block;
  max-width: 18rem;
	margin-top: 5px;
	margin-left: 10px; 
	font-size: 13px; 
	text-transform: uppercase;
}
.socialfloat ul:hover{
background-color: rgba(37,211,102,0.8);
border-radius: 5px 0px 0px 5px;
-moz-border-radius: 5px 0px 0px 5px;
-webkit-border-radius: 5px 0px 0px 5px;
border: 0px solid #000000;
}

@media (max-width: 768px) {
    .position-absolute .labels {
        width: 70% !important;
    }
}

@media (max-width: 368px) {
    .position-absolute .labels {
        width: 50% !important;
    }
}