* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;

}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Lato&family=Montserrat&family=Oswald:wght@300;500&family=Roboto&family=Roboto+Condensed&family=Rubik:ital,wght@0,400;0,500;0,600;1,400;1,600&display=swap');

html {
    scroll-padding-top: 8rem;
}

body {
    font-family: monteserrat, sans-serif;
    background: white
}

/* ******** NAVIGATION ******** */

header {
    background: #838282;
    height: 7rem;
    min-width: 100%;
    top: 0;
    position: sticky;

}

header ul {
    float: right;
    margin-right: 20px;
}

header ul li {
    display: inline-block;
    line-height: 110px;
    margin: 0px 5px;
}

header ul li a {
    color: white;
    font-size: 19px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}

a.active,
a:hover {
    background: #9a0a1a;
    transition: .5s;
}

.checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}


ul li a {
    font-size: 16px;
}



@media (max-width: 858px) {
    .checkbtn {
        display: block;
    }


    .menu-list {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #333333;
        top: 7rem;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }

    header ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }

    header ul li a {
        font-size: 20px;
    }

    a:hover,
    a.active {
        background: none;
        color: #9a0a1ae6;
    }

    #check:checked~ul {
        left: 0;
    }
}

/* 
*********  MAIN ********* */
#company-name {
    color: brown;
    font-weight: 200;
    font-size: 45px;
    text-align: center;
    text-shadow: 2px 2px 6px gray;
}

#company-type {
    text-align: center;
    font-weight: 100;
    font-size: 36px;
}

#form {
    text-align: center;
    margin-bottom: 40px;
}


input {
    font-size: 1.2rem;
}

#video-control {
    text-align: center;
    margin: 5px 0 30px 0;
}

.flexbox-container {
    display: flex;
    /* justify-content: center; */
    justify-content: space-around;
}

.flexbox-item {
    width: 300px;
    border: 3px solid chocolate;
    border-radius: 5px;
    background-color: rgb(216, 216, 216);
    flex-basis: auto;
    font-size: 1.3em;
    text-align: center;
    padding: 2%;
}

.home-theater,
.home-audio,
.home-video {
    min-height: auto;
}


p {
    margin: 0 3%;
    font-size: 1.2rem;
    text-align: left;

}

h2 {

    font-size: 1.8rem;
    text-align: center;
    color: #333;
    text-transform: uppercase;
    display: block;
    margin-inline: auto;
    width: max-content;
    margin-top: 60px;
    margin-bottom: 7px;
}

h4 {
    text-decoration: underline;
}

p1 {
    text-align: left;
}

@media screen and (max-width: 960px) {
    .flexbox-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;


    }
}

@media screen and (max-width: 960px) {
    .flexbox-item {
        width: 550px;
    }
}

@media screen and (max-width: 470px) {
    .flexbox-item {
        width: 350px;
    }
}

@media screen and (max-width: 560px) {
    #video {
        width: 360px;
        height: auto;
    }
}