/*
Theme Name: Aveo
Author: OG
License: Copyright 2022 Aveo Source LLC All Rights Reserved

Notes: Mobile First Design
*/

/* HTML5 Reset
---------------------------------------------------------------------------- */
/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
--------------------------------------------- */

html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}

html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}

/* Load Fonts
--------------------------------------------- */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("lib/poppins-300.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("lib/poppins-500.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Box Sizing
--------------------------------------------- */

html,
body {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

/* Animation
--------------------------------------------- */
body {
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
  
@keyframes fadeInAnimation {
    0% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
     }
}

/* Global
---------------------------------------------------------------------------- */

html {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    width: 100%;
}

body {
	background-color: #282828;
	color: rgb(187, 187, 187);
    font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.4;
	margin: 0;
    width: 100%;
}

.site-container {
    position: relative;
    width: 100%;
    background: url("images/main-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

a {
    color: rgb(138, 200, 50);
    text-decoration: none;
}

a:hover {
    color: rgb(187, 187, 187);
}

p {
    margin: 0 0 20px 0;
}

img {
    width: 100%;
}

ul {
    margin: 0;
    padding: 0;
}

.content ul {
    margin: 0 0 25px;
}

.wrap {
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

figure {
    display: block;
    margin: 0;
}

.link-btn {
    display: inline-block;
    line-height: 1;
    padding: 10px 25px;
    color:rgb(138, 200, 50);
    border: 1px solid rgb(187, 187, 187);
    background: rgba(187, 187, 187, 0.2);
    margin: 0 10px 20px 0;
    border-radius: 5px;
}

.link-btn:hover {
    background: rgba(187, 187, 187, 0.1);
    color:rgb(187, 187, 187);
}

.title-area a img {
    width: 300px;
    height: 31px;
}


/* Headings
--------------------------------------------- */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color:rgb(138, 200, 50);
    text-transform: uppercase;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 26px;
}

/* Float Clearing
--------------------------------------------- */

.site-container::before,
.site-header::before,
.title-area::before,
.header-nav::before,
.site-content::before,
.content::before,
.site-footer::before,
.wrap::before,
.entry::before {
	content: " ";
	display: table;
}

.site-container::after,
.site-header::after,
.title-area::after,
.header-nav::after,
.site-content::after,
.content::after,
.site-footer::after,
.wrap::after,
.entry::after {
	clear: both;
	content: " ";
	display: table;
}

/* Section Styles
---------------------------------------------------------------------------- */
/* Header
------------------------------------------------------------ */
.title-area {
    display: block;
    padding: 20px 0;
    line-height: 0;
    max-width: 300px;
    margin: 0 auto;
}

/* Menu
------------------------------------------------------------ */
.header-nav {
    position: relative;
    text-align: center;
    border-bottom: 1px solid rgba(187, 187, 187, 0.2);
}

.mobile-toggle {
    background: none;
    border: none;
    color: rgb(187, 187, 187);
    font-weight: 500;
    padding: 10px 25px;
    margin-bottom: 15px;
}

.menu {
    height: 0px;
    visibility: hidden;
    position: absolute;
    overflow: hidden;
    width: 100%;
    transition: all ease-in-out 0.4s;
    z-index: 100;
    font-size: 16px;
}

.menu.open {
    height: 295px;
    visibility: visible;
}

.menu-item {
    list-style: none;
}

.menu-item a {
    list-style: none;
    display: block;
    padding: 10px;
    background: rgb(40, 40, 40);
    color:rgb(187, 187, 187);
    cursor: pointer;
    border-bottom: 4px solid transparent;
}

.menu-item a:hover,
.menu-item a:focus,
.active a {
    border-color: rgb(138, 200, 50);
}

.has-child > a,
.has-child > a:hover,
.has-child > a:focus {
    border-color: transparent;
}

.has-child {
    background: rgb(187, 187, 187);
}

.sub-menu a {
    background: rgb(60, 60, 60);
}

/* Content
------------------------------------------------------------ */
.content {
    position: relative;
    margin: 40px 0;
}

/* Site Footer
------------------------------------------------------------ */
.site-footer {
    border-top: 1px solid rgba(187, 187, 187, 0.2);
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
}

/* Full Height
------------------------------------------------------------ */
.full-height {
    height: 100%;
}

.bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Page Specific
------------------------------------------------------------ */
/* Homepage
-------------------------------------------- */
.background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    display: none;
}

.slogan{ 
    margin-bottom: 20px;
}

.slogan h1 {
    font-size: 40px
}

.slogan span {
    text-transform: uppercase;
}

/* Privacy Policy
-------------------------------------------- */
.privacy .entry {
    margin: 0 auto;
    padding: 0;
    float: none;
}

/* About
-------------------------------------------- */
.column-last h2 {
    color:rgb(187, 187, 187);
    font-size: 24px;
}

/* Manufacturing
-------------------------------------------- */
.entry ul {
    margin-left: 40px;
}

/* Contact
-------------------------------------------- */
.contact .column-first {
    border-right: none;
}

.contact .column-last {
    border-left: 1px solid rgba(187,187,187, 0.2);
}

/* Media Queries
------------------------------------------------------------ */
@media only screen and (min-width: 600px) {

    .site-header {
        border-bottom: 1px solid rgba(187, 187, 187, 0.2);
    }

    .title-area {
        float: left;
    }

    .header-nav {
        display: block;
        float: right;
        border: none;
        text-align: right;
        width: 160px;
    }

    .mobile-toggle {
        margin: 0;
        padding: 27px 25px;
    }

}

@media only screen and (min-width: 768px) {
    .background-video {
        display: block;
    }
    
    .home .site-container {
        background: none;
    }
    
    .home .overlay {
        background: rgba(0, 0, 0, 0.5);
    }
}

@media only screen and (min-width: 880px) {

    .mobile-toggle {
        display: none;
    }

    .menu {
        height: auto;
        visibility: visible;
        position: relative;
        overflow: visible;
        padding: 14px 0;
    }

    .header-nav {
        text-align: center;
        width: auto;
    }

    .menu-item {
        display: inline-block;
    }

    .menu.open {
        height: auto;
    }

    .menu-item a,
    .has-child {
        background: transparent;
    }

    .has-child > a:hover,
    .has-child > a:focus {
        border-color: rgb(138, 200, 50);
    }

    .sub-menu {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        padding-top: 15px;
    }
    
    .sub-menu li {
        display: block;
        background: rgba(0, 0, 0, 0.5);
        padding: 5px 0;
    }
    
    .sub-menu li:last-child {
        border-radius: 0 0 5px 5px;
    }
    
    .menu-item:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
    }

    .sub-menu > .menu-item a {
        padding: 10px 25px;
    }

    .slogan h1 {
        font-size: 72px;
    }

    .slogan span {
        font-size: 22px;
    }

    .link-btn {
        font-size: 18px;
    }

    .entry,
    .column-first {
        width: 50%;
        padding-right: 70px;
        float: left;
    }

    .entry-aside,
    .column-last {
        float: right;
        width: 50%;
        padding-left: 70px;
    }

    .entry.columns {
        width: 100%;
        float: none;
        padding-right: 0;
    }

    .column-first {
        border-right: 1px solid rgba(187,187,187, 0.2);
    }

    .entry-aside > figure {
        text-align: center;
    }

    .entry-aside > figure > img {
        max-width: 470px;
        display: block;
        overflow: hidden;
    }

    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 38px;
    }
    
    h3 {
        font-size: 28px;
    }

}

@media only screen and (min-width: 1000px) and (min-height: 700px) {
    .site-content {
        margin-top: 70px;
    }
}