/*///////////////////////////////////////////////////////////////*/
/* General */
/*///////////////////////////////////////////////////////////////*/

:root {
    --background:#050f03;
    --text: #eefff3;
    --second: #fd2b36;
    --third: #00a537; 
    --fourth: #b7ffce;
    
    --full-height: calc(var(--vh, 1vh) * 100);
    --full-width: calc(var(--vw, 1vw) * 100);      
}

@supports (height: 100dvh) and (width: 100dvw) {
    :root {
        --full-height: 100dvh;
        --full-width: 100dvw;
    }
}

* {
    margin: 0rem;
    padding: 0rem;
    box-sizing: border-box;
    
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-optical-sizing: auto;
    font-style: normal;
}

html {
    scroll-padding-top: 3rem;
}


body  {
    color: var(--text);
    background-color: var(--background); 
    min-width: var(--full-width);
}


h1 {
    font-size: 5rem;
    color: var(--text);
    font-weight: 700;
}

h2 {
    color: var(--text);
    font-size: 2.5rem;
}

p, a, ul, li, form, input, label, button, textarea {
    font-size: 1rem;
    color: var(--text); 
    text-decoration: none;
    line-height: 1.5;
    letter-spacing: 0.02rem;
    word-spacing: 0.02rem;
    text-align: center;
}

ul, li {
    text-align:justify;
}



strong {
    font-weight: 700; 
    color: var(--text);
}

#links{
    color: var(--second);
    text-decoration: underline;
}

#links:hover{
    color: var(--third);
}

/* 
//ultra ultra-wide
@media screen and (min-width: 2500px)
{
    //needs to look good at height:1000
}

//ultrawide
@media screen and (min-width: 1440px) and (max-width: 2499.99999px)
{
    //needs to look good at height:700
}

//regular screen is default
@media screen and (min-width: 1280px) and (max-width: 1439.99999px)
{
    //needs to look good at height:600    
}
//regular screen is default


//small screen
@media screen and (min-width: 1024px) and (max-width: 1279.99999px)
{
    //needs to look good at height:600
}

//tablet
@media screen and (min-width: 768px) and (max-width: 1023.99999px)
{   
    //needs to look good at height: 600
}

//mobile
@media screen and (max-width: 767.99999px)
{
    //needs to look good at height: 500
}

//LANDSCAPE DEVICE
@media screen and (orientation: landscape) and (max-width: 1023.99999px) and (max-height:600px)
{

}
*/

 
/* ultra ultra-wide */
@media screen and (min-width: 2500px)
{
    h1 {
        font-size: 7rem;

    }
    h2 {
        font-size: 3rem;
    }
    p, a, ul, li, form, input, label, button, textarea {
        font-size: 1.5rem;    
    }
}


/* ultrawide */
@media screen and (min-width: 1440px) and (max-width: 2499.99999px){
       h1 {
        font-size: 5.5rem;

    }
    h2 {
        font-size: 2.5rem;

    }
    p, a, ul, li, form, input, label, button, textarea {
        font-size: 1rem;
    }
}

/*small screen*/
@media screen and (min-width: 1024px) and (max-width: 1279.99999px)
{
    h1 {
        font-size: 4.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    p, a, ul, li, form, input, label, button, textarea {
        font-size: 1rem;
    }
}

/*tablet*/
@media screen and (min-width: 768px) and (max-width: 1023.99999px)
{   
    h1 {
        font-size: 4.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    p, a, ul, li, form, input, label, button, textarea {
        font-size: 1rem;
    }
}

/*mobile*/
@media screen and (max-width: 767.99999px)
{
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }
    
    p, a, ul, li, form, input, label, button, textarea {
        font-size: 0.9rem;
    }
}

/*LANDSCAPE DEVICE*/
@media screen and (orientation: landscape) and (max-width: 1023.99999px) and (max-height:600px)
{
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 30px;
    }
    
    p, a, ul, li, form, input, label, button, textarea {
        font-size: 21px;
    }
}


/*///////////////////////////////////////////////////////////////*/
/* Navbar */
/*///////////////////////////////////////////////////////////////*/

nav {
    background-color: var(--background); 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-height: 70px;
}

nav img{
    width: 9rem;
    height:auto;
    margin-left: 2rem;
    margin-right: 2rem;
}

nav a {
    margin-right: 1.2rem;
}

nav a.active {
    font-weight: 700; 
}

nav a:hover {
    color: var(--third);
    transform: scale(1.03);
    text-shadow: 1px 1px 10px var(--third)
}

#navButtonContainer {
    margin-left: auto;
    margin-right: 2rem;
}

.button {
    background-color: var(--third); 
    padding: 0.3rem;
    border-radius: 0.3rem; 
    color: var(--text);
    font-size: 1.1rem;
    text-align: center;
    color: var(--text); 
}

.button:hover {
    background-color: var(--text);
    box-shadow: 0 0rem 1rem var(--text);
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: var(--background); 
    font-weight: 500;
}

.button--demonav{
    background-color: var(--background);
    text-shadow: none;
    box-shadow: 0 0rem 1rem var(--text);
    color: var(--text);
    font-weight: 500;
    display: inline-block;
    animation: pulse 8s infinite 2s;
}


.button--demonav:hover{
    text-shadow: none;
}

.button--hamburger{
    animation: pulse 6s infinite 1s; 
    font-weight: 600;
}


#hamburgerMenu {
    all: unset;
    display: none;
    cursor: pointer;
}

#menuContent {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: var(--full-height);
    width: var(--full-width);
    padding-bottom: 10rem;
}

#imageMobile{
    display: none;
    margin-left: auto;
}

#imageMobile img{
    width: 8rem;
    height:auto;
    margin-right: 0;
}


/*regular screen is default*/
/*tablet/mobile needs hamburger menu*/
@media screen and (max-width: 1023.99999px)
{
    nav{
        padding: 0.5rem;
        max-height: none;
    }

    nav a {
        display: none;  
    }

    #navButtonContainer {
        display: none;
    }
    
    #hamburgerMenu {
        display: block;
    }

    #imageMobile{
        display: block;
    }
}
 



/*///////////////////////////////////////////////////////////////*/
/* Home section styles*/
/*///////////////////////////////////////////////////////////////*/
main {
    padding-top: 70px;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    min-width: 300px;
}

.container--topFold {
    overflow: hidden;
    padding: 2rem;
    height: calc(0.9 * var(--full-height));
    width: calc(0.7 * var(--full-width));
    min-height: 600px;
    max-height: 1400px;
    flex-direction: column;
    text-align: center;
}

.container--topFold h2 {
    width: 100%;
}

.button--home{
    padding: 0.5rem;
    font-size: 1.25rem;
    margin: 1rem;
}

.button--homehome{
    animation: pulse 8s infinite 2s;
}

.company-section {
    text-align: center;
}

.stars {
    color: var(--text); 
    text-shadow: 0 0rem 0.25rem var(--text);
    font-size: 1.25rem;
}

.company-logo {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    transition: transform 0s ease-in-out;
    animation: spin 2s linear infinite;
}

#animated-companies {
    font-weight: 700;
}


/*regular screen is default*/
/*ultrawide*/
@media screen and (min-width: 1440px)
{    
    .button--home{
        margin: 1rem;
        font-size: 1.5rem;
    }
    .stars {
        font-size: 2rem;
    }
    .container--topFold {
        min-height: 600px;
    }
}

/*small screen*/
@media screen and (min-width: 1024px) and (max-width: 1279.99999px)
{
    .button--home{
        margin: 0rem;
        font-size: 1.25rem;
    }

    .button--homehome{
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
    }
    
    .container--topFold h2 {
        font-size: 1.8rem;
    }
    
    .stars {
        font-size: 1.25rem;
    }
}

/*tablet*/
@media screen and (min-width: 768px) and (max-width: 1023.99999px)
{           
    main {
        padding-top: 50px;
    }
    
    .container {
        flex-direction: column;  
    }
    
    .container--topFold {
        min-height: 400px;
        width: calc(1 * var(--full-width));
        max-height: 1000px;
        padding: 2.5rem;
        padding-top: 1rem;
    }

    .button--home {
        font-size: 1rem;
    }

    .stars {
        font-size: 1.25rem;
    }
}


/*mobile*/
@media screen and (max-width: 767.99999px)
{
    main {
        padding-top: 50px;
    }
    .container {
        flex-direction: column;  
    }
    
    .container--topFold {
        min-height: 400px;
        width: calc(1 * var(--full-width));
        max-height: 700px;
        padding: 2.5rem;
        padding-top: 1rem;
    }

    .button--home {
        font-size: 0.75rem;
    }

    .button--homehome {
        padding-top: 0.3rem;
        padding-bottom:0.3rem;
        animation: none;
    }
    
    .stars {
        font-size: 0.9rem;
    }

    .container--topFold h2 {
        font-size: 0.9rem;
    }
}



/*LANDSCAPE DEVICE*/
@media screen and (orientation: landscape) and (max-width: 1023.99999px) and (max-height:400px)
{
    main {
        padding-top: 50px;
    }
    .container {
        flex-direction: column;  
    }
    

    .container--topFold {
        min-height: 250px;
        width: calc(1 * var(--full-width));
        max-height: 700px;
        padding: 1rem;
        padding-top: 0rem;
    }


    .button--home {
        font-size: 1rem;
    }
    
    .stars {
        font-size: 0.5rem;
    }

    .button--homehome{
        margin: 0rem;
        animation: none;
        padding-top: 0.3rem;
        padding-bottom:0.3rem;
    }
    .container--topFold h2 {
        font-size: 21px;
    }
    .container--topFold p {
        font-size: 16px;
    }
}



/*//////////////////////////////////////////////////////////////*/
/* How it works section styles*/
/*//////////////////////////////////////////////////////////////*/

.sectionTitle{
    padding: var(--mainPadding);
    text-align: center; 
}

#quote{
    background-color: var(--text);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 0rem 0.5rem var(--text);
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 1rem;
    margin-bottom: 3rem;
    
}

#belowQuote {
    width: 40%;
}

video {
    width: calc(0.3 * var(--full-width));
    height: 20px;
    object-fit: cover;
    margin-top: 3rem;
}

.container--list2{
    flex-direction: column;
    align-items: center;
}

.container--list2 strong{
       color: var(--background);
}

.centered-list2 {
    list-style: none;
    padding-left: 0;
    width: 100%;
    margin: 0 auto; 
    text-align: left; 
    background-color: var(--text);
    color: var(--background);
}

.centered-list2 li {
    position: relative;
    width: 40%;
    padding-left: 2rem;
    margin-bottom: 1.5rem; 
    color: var(--background);
}


.checkmark {
    color: var(--background); 
    font-size: 1.1rem;
}

#forceShadow:hover{
    background-color: var(--background);
    box-shadow: 0 0rem 1rem var(--background);
    color: var(--text);
}




/*ultrawide*/
@media screen and (min-width: 1440px)
{
    video {
        width: calc(0.2 * var(--full-width));
    }
}
/*regular screen is default*/
/*small screen*/
@media screen and (min-width: 1024px) and (max-width: 1279.99999px)
{
    .sectionTitle{
        padding-bottom: calc(0.5*var(--mainPadding));
    }
    video {
        width: calc(0.4 * var(--full-width));
    }
}

/*tablet*/
@media screen and (min-width: 768px) and (max-width: 1023.99999px)
{   
    .sectionTitle{
        padding-left: calc(0.5*var(--mainPadding));
        padding-right: calc(0.5*var(--mainPadding));
        padding-bottom: calc(0.5*var(--mainPadding));
    }

    .centered-list2 li{ 
        width: 70%;
    }

    #belowQuote {
        width: 70%;
    }
    
    video {
        width: calc(0.5 * var(--full-width));
    }
}

/*mobile*/
@media screen and (max-width: 767.99999px)
{
    .sectionTitle{
        padding-left: calc(0.5*var(--mainPadding));
        padding-right: calc(0.5*var(--mainPadding));
        padding-bottom: calc(0.5*var(--mainPadding));
    }

    .checkmark {
        font-size: 1rem;
    }  
    
    video {
        width: calc(0.5 * var(--full-width));
        margin-top: 0rem;
    }

    .centered-list2 li{ 
        width: 70%;
    }

    #belowQuote {
        width: 70%;
    }
    
}



/*///////////////////////////////////////////////////////////////*/
/*FAQ Section*/
/*///////////////////////////////////////////////////////////////*/

.faq-question {
    background-color: var(--third);
    color: var(--text);
    width: 70%;
    text-align: left;
    padding: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 0.5rem;
    margin-top: 1.25rem;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--text);
    box-shadow: 0 0rem 0.25rem var(--text); 
    color: var(--background);
    font-weight: 600;
}

.faq-answer {
    display: none;
    background-color: var(--text);
    border: none;
    border-left: 10px solid var(--third);
    
    width: 70%;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 3px;
    margin-bottom: 1rem;
}

.faq-answer p {
    color: var(--background);
    text-align: justify;
    padding-left: 2rem;    
    padding-right: 2rem;
}



.centered-list {
    width: 80%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.centered-list li {
    list-style: none;
    position: relative;
    padding-left: 4rem; 
    color: var(--background);
    text-align: left;
}

/*mobile*/
@media screen and (max-width: 767.99999px)
{
    .faq-answer p {
        padding-left: 0rem;    
        padding-right: 0rem;
        text-align: left;
    }
    .centered-list li {
        padding-left: 1rem; 
    }
}


/*///////////////////////////////////////////////////////////////*/
/* About Section Styles*/
/*///////////////////////////////////////////////////////////////*/
.container--about .sectionTitle {     
    padding-bottom: 0.5rem;
}

.container--about{
    flex-direction: column;
    max-width: none;
    padding-bottom: 5rem;
}

.container--about a:hover {     
    color: var(--third);
}

#forceButtonColor a:hover{
    color: var(--background);
    text-shadow: none;
}


.container--about p {     
    margin-bottom: 2rem;
    text-align: center;
    width: 65%;
}




/*ultrawide*/
@media screen and (min-width: 1440px)
{ 
    .container--about p {     
        width: 50%;
    } 
}

@media screen and (min-width: 1024px) and (max-width: 1279.99999px)
{
    .container--about p {     
        width: 85%;
    } 
}

/*tablet*/
@media screen and (min-width: 768px) and (max-width: 1023.99999px)
{   
    .container--about h2 {     
        margin-bottom: 1rem;
    }
    .container--about p {     
        margin-bottom: 1rem;
        width: 85%;
    }

    .button--homeabout{
        margin: 1rem ;
    }
    
}

/*mobile*/
@media screen and (max-width: 767.99999px)
{
    .container--about h2 {     
        margin-bottom: 0.25rem;
    }
    .container--about p {     
        margin-bottom: 0.25rem;
        width: 85%;

    }
    .button--homeabout{
        margin: 0.75rem ;
    }
}


/*///////////////////////////////////////////////////////////////*/
/* Book Demo section styles*/
/*///////////////////////////////////////////////////////////////*/


.container--demo{
    flex-direction: column;
    text-align: center;
    background: linear-gradient(170deg,
        var(--background),
        var(--background),
        var(--text),
        var(--background),
        var(--background)
    );}

.container--demo .sectionTitle {     
    padding-bottom: 2rem;
}


.container--demo img {     
    width: 6rem;
    height: 6rem; 
    border-radius: 50%;
    object-fit: cover;
}

.container--demo img:hover {    
    box-shadow: 0 0rem 1rem var(--text); 
}

.container--demo p {    
    margin-bottom: 2rem;
}


form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    background-color: var(--background);
    box-shadow: 0 0rem 2rem var(--text);
    border-radius: 10px;
    border: none;
    padding: 1rem; 
    margin-bottom: 13rem;
    color: var(--text);
}




form button{
    border: none;
    box-shadow: 0 0rem 0.5rem var(--third);
}

label{
    display: flex;
    flex-direction: column;
    margin: 1rem;
} 

input, textarea {
    min-width: 15rem !important;
    min-height: 2rem !important;
    padding: 1rem !important;
    margin: 0.5rem !important;

    background-color: var(--text);
    box-shadow: 0 0rem 0.25rem var(--text); 
    border-radius: 5px !important;
    border: none;
    color: var(--background);
}   


/*regular screen is default*/
/*small screen*/
/*tablet*/
@media screen and (min-width: 768px) and (max-width: 1023.99999px)
{   
    .container--demo img {     
        width: 4rem;
        height: 4rem; 
    }
}

/*mobile*/
@media screen and (max-width: 767.99999px)
{
    .container--demo img {     
        width: 3rem;
        height: 3rem; 
    }
    form {
        padding-left: 0rem;
        padding-right: 0rem; 
    }
    label{
        margin: 0rem;
        margin-left: 1rem;
        margin-right: 1rem;
    } 

    input, textarea {
        min-width: 10rem !important;
        min-height: 1.5rem !important;
        padding: 1rem !important;
        margin: 0.5rem !important;
    }   

}



/*///////////////////////////////////////////////////////////////*/
/* Real Footer Styles*/
/*///////////////////////////////////////////////////////////////*/

footer {
    background: var(--background)
}

footer img{
    width: 11rem;
    height:auto;
}


.container--footer{
    background: var(--background);
    padding: 3rem;
    padding-bottom: 10rem;
    max-width: 50%;
}

.footer-column{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.container--footer a {
    font-size: 0.9rem;
}

.container--footer a:hover {
    color: var(--third);
    text-shadow: 1px 1px 10px var(--third)
}

.container--footer p {     
    color: gray;
    font-size: 0.8rem;
}



/*tablet*/
@media screen and (min-width: 768px) and (max-width: 1023.99999px)
{   
    .container--footer{
        padding: 2rem;
        padding-bottom: 7rem;
        max-width: 100%;
    }
     .footer-column{
        margin-top: 0.5rem;
        align-items: center;
    }
}

/*mobile*/
@media screen and (max-width: 767.99999px)
{
    .container--footer{
        padding: 1rem;
        padding-bottom: 5rem;
        max-width: 100%;
    }
     .footer-column{
        margin-top: 0.5rem;
        align-items: center;
    }
    .container--footer a {
        font-size: 0.8rem;
    }
    .container--footer p {     
        font-size: 0.7rem;
    }
}


/*///////////////////////////////////////////////////////////////*/
/* Article styles*/
/*///////////////////////////////////////////////////////////////*/
.article {
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    padding-left: 25%;
    padding-right: 25%;
}

.article h2, .article p, .article a{
    text-align: justify;
}

.article2 {
    background-color: var(--text);
    color: var(--background);
}

.article2 h2, .article2 p, .article2 a{
    color: var(--background);
}

.article2 h2{
    text-align: center;
}

#chartPic{
    min-width: 340px;
    height: auto;
    max-height: 300px;
    border-radius: 3rem;
    margin: 2rem;
}

#manufPic{
    min-width: 340px;
    height: auto;
    max-height: 300px;
    border-radius: 3rem;
    margin: 2rem;
}

#quote2{
    background-color: var(--text);
    padding: 2rem;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 1rem;
}

/*mobile*/
@media screen and (max-width: 767.99999px)
{
    .article {
        padding-left: 10%;
        padding-right: 10%;
    }
}

/*///////////////////////////////////////////////////////////////*/
/* Animations*/
/*///////////////////////////////////////////////////////////////*/

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    5% {
        transform: scale(1.3);
    }
    10% {
        transform: scale(1);
    }
    15% {
        transform: scale(1.3);
    }
    20% {
        transform: scale(1);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
