@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@100&family=Montserrat:wght@100;200;800&display=swap');

* {
margin: 0px;
padding: 0px;
max-width: 100%;
}

body {
    scroll-behavior: smooth;
    max-width: 100%;
    margin: 0px;
    padding: 0px;;
}

.navbar {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: black;
}

.navbar-brand img {
    width: 64px;
    height: auto;
}

nav .navbar-nav li a:hover {
    color: white;
    background-color: #b5804e;
}

.navbar-link {
    color: black;
}

.navbar-item :hover {
    color: #ffffff;
    background-color: black;
}

.fa_bars {
    color: black;
}

#slider img {
    max-width: 100%;
}

#product {
    background-color: black;
    padding-top: 4em;
    padding-bottom: 4em;
}

#product img {
    padding: 2em;
    transition: transform .2s;
    border-radius: 20px;
} 

#product img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #8accf8;
}

#videosection {
    background-image: url(Images/backgroundhome.jpeg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 3em;
    padding-bottom: 3em;
}

#myVideo {
    right: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
}

#team {
    background-color: #b5804e;
    font-size: 24px;
    color: #ffffff;
    padding-bottom: 1em;
}

#team h1 {
    font-size: 96px;
    font-weight: bolder;
    color: #133244;
    margin: 1em;
}

 #team img {
    width: 160px;
    height: auto;
    border-radius: 50%;
    padding-bottom: 1em;  
}

.big_btn {
    font-size: 48px;
    font-weight: bolder;
    color: black;
    background-color: #ffffff;
    border: solid 5px black;
    padding: 0.5em;
    max-width: 500px;
    margin: 3em;
}

.big_btn a {
    color: black;
    text-decoration: none;
}

.big_btn:hover {
    color: white;
    background-color: black;
    text-decoration: none;
}

.big_btn a:hover {
    color: white;
    text-decoration: none;
}

footer {
    background-image: url(Images/footer.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 0.5em;
    font-size: 94px;
    color: #ffffff;    
}

@media (max-width: 767.98px) { 

    #product img:hover {
        transform: scale(0.8);
    }

    #team h1 {
        font-size: 48px;
    }

    .team-cards {
        padding-bottom: 1em;
    }

    .big_btn {
        font-size: 24px;
        margin: 1em;
    }
 }







