@charset "utf-8";
/* CSS Document */
/*-----------------------------------------------------------------------------

Prototype Version:  2.4

*/

/* Table of Contents
-----------------------------------------------------------------------------

1. Clean Base
2. Base Typography
3. Images
4. Links
5. Forms
6. Tables
7. Framework

*/
:root{
    --body-color:#383839;
    --primary-color:#be3b34;
    --white-color:#ffffff;
    --black-color:#000000;
    --gray-color:#918f8f;
    --light-gray-color: #7a797f;

    --body-font: "aaux-next",sans-serif;
}
::selection{
    color: var(--white-color);
    background-color: var(--primary-color);
}
/* 1. Create a Clean Base
------------------------------------------------------------------------------*/

html, body, br, hr, div, span, a, object, iframe, ul, ol, dl, li, dt, dd, h1, h2, h3, h4, h5, h6, p, blockquote, q, address,
small, big, cite, dfn, ins, del, i, em, b, strong, sup, sub, strike, pre, code, samp, kbd, var, tt, form, fieldset, legend, label,input, textarea, option, .nobox 
{background: transparent; border: 0; font-size: 100%; margin: 0; outline: 0; padding: 0; vertical-align: baseline;}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {display: block;}

blockquote, q {quotes: none;}
br {height: 0;}
ul, ol, dl, li {margin:0; padding:0;}
html, body{ -webkit-appearance:none; border:none; -webkit-text-size-adjust:none;}

body,*{margin: 0;padding: 0; font-family: var(--body-font); font-size: 18px; color: var(--body-color); -webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;font-weight: 400; }
body.overflow-hidden{overflow: hidden;}
.wood-overlay{ position: fixed;top: 0; left: 0; right: 0; bottom: 0;z-index: 3; background: #313136a3; opacity: 0; pointer-events: none; transition:all .5s ease ; -webkit-transition:all .5s ease ; -moz-transition:all .5s ease ; -ms-transition:all .5s ease ; -o-transition:all .5s ease ; }
.wood-overlay.open{opacity: 1;pointer-events: all;}

/* 2. Define Base Typography
------------------------------------------------------------------------------*/
/* Create the Default Headers  */
h1, h2, h3, h4, h5, h6 {margin: 0;font-weight: 400;}

/* Specific Header Settings */
h1,.h1 {font-size:3.39vw;line-height: 1.2;}
h2,.h2 {font-size:2.5vw;color: var(--body-color);}
h3,.h3 {font-size:1.5vw;}
h4,.h4 {font-size:30px;}
h5,.h5 {font-size: 24px;}
h6,.h6 {font-size: 20px;}

/* Create the Default Paragraphs */
p {margin-bottom: 25px; line-height: 1.5;}


/* Other Typo */
strong {font-weight: bold;}
hr {border:0 #000 solid; border-top-width: 1px; clear: both; height: 0;}
ol {list-style: decimal;}
ul {list-style: disc;}

.f-color-blue{color: var(--primary-color);}
.f-color-white,.f-color-white *{color: var(--white-color);}
.f-color-black{color: var(--body-color) !important;}
.f-16{font-size: 16px;}
.t-uppercase{text-transform: uppercase;}
.l-spacing{letter-spacing: 2px;}
.t-shadow{text-shadow:2px 2px 3px #000000}
.f-light{font-weight: 300;}
.f-bold{font-weight: 700;}
.p-0{padding: 0 !important;}


/* 3. Images
------------------------------------------------------------------------------*/

/* Remove border around linked images */
img {max-width: 100%; border: 0; border-style: none;}

/* 4. Links
------------------------------------------------------------------------------*/

/* Default Link Types */
a {text-decoration:none;transition: 0.5s; display: inline-block;color:var(--primary-color);}
a:hover{opacity: 0.6;}


/* 5. Forms
------------------------------------------------------------------------------*/
input{font-family: var(--body-font);}
input[type='submit']{ font-family: var(--body-font); -webkit-appearance:none; border:none; -webkit-text-size-adjust:none; }
select{font-family: var(--body-font);-webkit-appearance:none; -moz-appearance:none; -o-appearance:none; appearance:none;}
textarea{overflow:auto;font-family: var(--body-font);}
::-webkit-input-placeholder{ color: var(--black-color);}
:-moz-placeholder{ color: var(--black-color);}
::-moz-placeholder{ color: var(--black-color)}
:-ms-input-placeholder{ color: var(--black-color)}
::-ms-input-placeholder{ color: var(--black-color)}


/* container */
.container{max-width: 1650px; width: 100%; padding-left: 15px; padding-right: 15px; margin: 0 auto;}
.left-container{width: 100%;padding-right: calc((100% - 1690px) / 2);}
.small-container{max-width: 1200px; padding-left: 15px; padding-right: 15px; margin: 0 auto}
.row{display: flex; flex-wrap: wrap; margin-left: -15px; margin-right: -15px;}
.col-12,.col-11,.col-10,.col-9,.col-8,.col-7,.col-6,.col-5,.col-4,.col-3,.col-2,.col-1{position: relative; width: 100%; padding-right: 15px; padding-left: 15px; }
.col-12 {max-width: 100%;}
.col-11 {max-width: 91.66666667%;}
.col-10 {max-width: 83.33333333%;}
.col-9 {max-width: 75%;}
.col-8 {max-width: 66.66666667%;}
.col-7 {max-width: 58.33333333%;}
.col-6 {max-width: 50%;}
.col-5 {max-width: 41.66666667%;}
.col-4 {max-width: 33.33333333%;}
.col-3 {max-width: 25%;}
.col-2 {max-width: 16.66666667%;}
.col-1 {max-width: 8.33333333%;}

.d-flex{ display:flex;}
.flex-wrap{flex-wrap:wrap;}
.justify-content-start{justify-content:flex-start;}
.justify-content-center{justify-content:center;}
.justify-content-end{justify-content:flex-end;}
.justify-content-between{justify-content:space-between;}
.align-items-start{align-items: flex-start;}
.align-items-center{align-items: center;}
.align-items-end{align-items: flex-end;}

.row-reverse{flex-direction: row-reverse;}

.text-center{text-align: center;}
.text-left{text-align: left;}
.text-right{text-align: right;}
.d-none{display: none;}


/*transition effect*/

.unlisted{list-style:none;margin: 0;padding: 0;}

/* Common CSS */
section{position: relative;padding-top: 6.25vw;padding-bottom: 6.25vw;}
.bg-set{background-repeat: no-repeat;background-position: center;background-size: cover;}
.btn,aside,header,header .header-bootom,header .header-bootom .d-flex,header .header-bootom .menu-area ul,header .header-top,header .header-top .tagline,header .header-top .h-tel{ transition:all .4s ease ; -webkit-transition:all .4s ease ; -moz-transition:all .4s ease ; -ms-transition:all .4s ease ; -o-transition:all .4s ease ; }

.btn,.btn-white{ font-size: 24px; text-decoration: none; font-weight: 300 !important; text-transform: uppercase; color: var(--primary-color); background-color: var(--white-color); border-radius: 0;border: 1px solid var(--primary-color); font-weight: normal; font-style: normal;padding: 20px 58px;cursor: pointer;}
.btn:hover{background-color: var(--primary-color);opacity: 1;color: var(--white-color);}
.btn-white{color: var(--white-color);border-color: var(--white-color);box-shadow:  0 0 10px #0000004d;background-color: transparent;}
.btn-white:hover{background-color: var(--white-color);color: var(--black-color);opacity: 1;text-shadow: none;}
a.link,.link{display: inline;text-transform: uppercase;text-decoration: underline;}
.link:hover{opacity: 0.6;}

/* header */
/* header{position: fixed;top: 0;left: 0;width: 100%;z-index: 999;box-shadow: 0 0 10px #0000004d;background: var(--white-color);} */
header{position: relative;top: 0;left: 0;width: 100%;z-index: 999;box-shadow: 0 0 10px #0000004d;background: var(--white-color);}
header.fixed{background-color: var(--white-color);box-shadow: 0 0 10px #0000004d;}

#mobile_menu_popup{ position: fixed; display: block; width: 37.25vw; height: 100%; top: 0; background: #FFF; z-index: 99; display: flex; flex-direction: column; justify-content: center; padding: 7.81vw 4.17vw 5.21vw; transition:all .4s ease ; -webkit-transition:all .4s ease ; -moz-transition:all .4s ease ; -ms-transition:all .4s ease ; -o-transition:all .4s ease ; opacity: 0;left: -100%;z-index: 999;}
#mobile_menu_popup.open{opacity: 1;left: 0;}
#mobile_menu_popup ul li .sub-menu{display: none;}
#mobile_menu_popup .inner-box{height: 90%;overflow-x: hidden;overflow-y: auto;}
#mobile_menu_popup .inner-box .close-icon{position: absolute;right: 3vw;top: 4.17vw;max-width: 2.08vw;}
#mobile_menu_popup .inner-box ul{list-style: none;border-top: 1px solid var(--gray-color);}
#mobile_menu_popup ul li a{ font-size: 1.56vw; text-transform: uppercase; color: var(--body-color); font-weight: 700;letter-spacing: 0.1vw;}
body.logged-in #mobile_menu_popup {top: 32PX;}
#mobile_menu_popup .inner-box ul li { margin: 0; padding: 1.3vw 0; border-bottom: 1px solid var(--gray-color); }

header .header-top{background: var(--body-color);padding: 0.78vw 0;}
header .header-bottom{background: var(--white-color);padding: 2.08vw 0;}
header .header-bottom .inner-header{position: relative; display: flex;align-items: center;justify-content: center;}
.header-bottom .inner-header .logo{max-width: 15.63vw;}
.header-bottom .inner-header #hamburger-icon{ position: absolute; left: 0; top: 50%; transform: translateY(-50%);}
.header-bottom .inner-header #hamburger-icon img{width: 3.13vw;}

/* hero-slider-section */
.hero-slider-section{padding: 0;}
.hero-slider-section .slide-box{position: relative;}
.hero-slider-section .slide-box img{ width: 100%; height: 680px; object-fit: cover; object-position: top;}
.hero-slider-section .slide-box .title-box{position: absolute; top: 50%; transform: translateY(-50%); right: 0; left: 0; margin: 0 auto; text-align: right;z-index: 1;}
.hero-slider-section .slide-box .title-box h1,.hero-slider-section .slide-box .title-box h1 b{color: var(--body-color);text-transform: uppercase;}
.hero-slider-section .slide-box.darkshadow .title-box h1,.hero-slider-section .slide-box.darkshadow .title-box h1 b{color: var(--white-color);}
.hero-slider-section .slide-box .title-box h1 b{font-weight: 700;}
.hero-slider-section .slide-box { position: relative; }
.hero-slider-section .slide-box.whiteshadow::after,.hero-slider-section .slide-box.darkshadow::after { content: ''; position: absolute; width: 100%; height: 100%; object-fit: cover; top: 0; left: 0;}
 .hero-slider-section .slide-box.whiteshadow::after{background: linear-gradient(90deg,rgba(255, 255, 255, 0) 40%, rgba(250, 248, 243, 0.67) 60%, rgba(250, 248, 243, 1) 100%); }
.hero-slider-section .slide-box.darkshadow::after { background: linear-gradient(90deg, rgba(255, 255, 255, 0) 40%, rgba(56, 56, 57, 0.67) 60%, rgba(56, 56, 57, 1) 100%);}
.hero-slider-section .luca-logo { padding: 5.73vw 0 2.6vw; }

/* service list */
.service-list-section{padding: 7.29vw 0;}
.service-list-section .services-list { margin: 0; }
.service-list-section h3{line-height: 1.2;}
.service-list-section .text-center h3{margin-bottom: 3.13vw;}
.service-list-section .services-list .col-3:first-child{padding-left: 0;}
.service-list-section .services-list .col-3:last-child{padding-right: 0;}
.service-list-section .services-list .service-box { background: var(--primary-color); display: block; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2.08vw;}

/* inner-banner-section */
.inner-banner-section{padding: 0;display: flex; flex-direction: column;}
.inner-banner-section img{width: 100%;object-fit: cover;}
.inner-banner-section .banner-heading{background: var(--primary-color);padding: 1.55vw 0;}

/* contact form section */
.contact-form-section .contact-form-box { max-width: 650px; margin: 0 auto; }
.contact-form-section .contact-form-box .form-box>P { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }
.contact-form-box .form-box label { width: 100%; text-transform: uppercase;font-weight: 700;font-size: 20px;}
.contact-form-box .form-box span.wpcf7-form-control-wrap { width: calc(50% - 8px); }
.contact-form-box .form-box span.wpcf7-form-control-wrap input { width: 100%; padding: 10px 15px;border: 1px solid #a6a8b5;color: var(--light-gray-color);}
.contact-form-box .form-box.full-box span.wpcf7-form-control-wrap{width: 100%;}
.contact-form-box .form-box.full-box textarea{width: 100% !important;height: 210px !important;border: 1px solid #a6a8b5;color: var(--light-gray-color);resize: none;}
.contact-form-box form .btn{background: var(--primary-color);color: var(--white-color) !important;text-transform: uppercase;    font-weight: 700 !important; cursor: pointer; padding: 12px 40px;}
.contact-form-box form .btn:hover{opacity: 0.6;}

/* trade show section */
.trade-show-section .trade-list{display: flex ; flex-direction: column; gap: 3.39vw; }
.trade-show-section .trade-list .box-list img { width: 2.86vw; height: 2.86vw; object-fit: contain; }
.trade-show-section .trade-list .box-list { margin-top: 10px; gap: 20px; align-items: center;}


/* footer */
.byron-footer{background: var(--body-color);padding: 3.13vw 15px 3.13vw 0;}
.byron-footer .container{max-width: 1250px;}
.byron-footer .menu-footer-menu-container ul { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.byron-footer .menu-footer-menu-container li a { font-size: 20px; text-transform: uppercase; font-weight: 700; }
.byron-footer h6 { margin-bottom: 20px; }
.byron-footer a.logo { max-width: 250px; }

.email-signup-box form .email-box{position: relative; border: 1px solid var(--white-color);width: 100%;padding: 12px 55px 12px 15px;}
.email-signup-box form .email-box input{color: var(--white-color);width: 100%;}
.email-signup-box form .email-box input::placeholder{color: var(--light-gray-color);}
.email-signup-box form .email-box .btn-submit{width: 30px;height: 30px;border-radius: 100%;background-image: url('../images/signup-arrow.png');background-repeat: no-repeat;background-position: center;background-size: contain;position: absolute;right: 15px;top: 9px;cursor: pointer;}
