body, nav, div, section, aside {
    display: block;
}

body {
    color: white;
    background-color: black;
    margin: 0;
}

header {
    background-color: black;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#navLogo {
    width: 20%;
    height: 15%;
    min-width: 100px;
    max-width: 170px;
}

#navLogo img {
    width: 100%;
    height: 100%;
}

.burgerIcon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 25px;
}

.burgerIcon div {
    background-color: #5f90c9;
    height: 3px;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin: 3px;
}

nav {
    display: flex;
    flex-direction: row;
    margin: auto 0;
}

nav ul{
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    list-style: none;
    margin: 0;
    padding: 2% 8px 2%;
    display: flex;
    flex-direction: row;
    float: right;
}

.dropdown {
    position: relative;
}

/* Hide the dropdown menu by default */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* place below the parent item */
    left: 0;
    background-color: black;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* Show menu on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li:first-child{
    margin-top: 15%;
}

.dropdown-menu li:last-child {
    margin-bottom: 5%;
}

/* Style the dropdown links */
.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
}



nav a {
    text-decoration: none;
    color: white;
    margin: 0 10px 0;
}

nav a:hover {
    color: #5f90c9;
}

.contactMobile {
    display: none;
}

.videoSec {
    background-color: transparent;
    text-align: center;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.videoSec video {
    position: absolute;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.topLayout {
    text-align: left;
    width: 80%;
    padding: 0 auto 200px;
    margin: 150px auto 40px;
}

.videoSec h1 {
    font-family: "Roboto", sans-serif;
    font-size: 50px;
    text-shadow: 2.5px 2.5px 2.5px gray;
}

.videoSec p {
    font-family: "Roboto", sans-serif;
    font-size: 23px;
    margin: 0 auto 5%;
}

.videoSecBot {
    background-color: transparent;
    text-align: center;
    position: relative;
    height: 550px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}


.videoSecBot video {
    position:absolute;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    object-fit: cover;
    z-index: -2;
}

.videoSecBot h2 {
    font-family: "Roboto", sans-serif;
    font-size: 42px;
    text-shadow: 2.5px 2.5px 2.5px gray;
    margin: 5% 5% 3%;
}

.videoSecBot p {
    font-family: "Roboto", sans-serif;
    font-size: 23px;
    margin: 0 10% 5%;
}

.blocks {
    width: 50%;
    padding: 5%;
    margin-top: 20px;
    font-family: "Roboto", sans-serif;
    margin-right: 10px; 
    margin-left: 10px;
    font-size: 1rem;
}



.blocks img{
    margin: 5%;
    width: 20%;
    display: inline-block;
    object-fit: cover;
}

footer{
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: white;
    color: black;
    font-family: "Roboto", sans-serif;
    padding: 40px 0;
    position: relative;
}

footer section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

footer div {
    text-align: center;
    flex: 1; 
    margin: 0 20px;
}

footer h4{
    text-align: center;
}

footer ul{
    list-style: none;
    padding: 0;
}

footer a{
    text-decoration: none;
    color: black;
}

.end-logo{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.end-logo div {
    width: 50%;
}



.end-logo img {
    width: 30%;
    min-width: 120px;

    padding: 5%;
    margin: 10px 20px;
    
}

.end-logo section:first-child { 
    text-align: left; 
    flex: 1; 
}

/*accessories*/
.clearButtons {
    background: rgba(0, 0, 0, 0.5);
    border: solid 2px #5f90c9;
    color: white;
    font-family: "Roboto", sans-serif;
    height: 12%;
    width: 20%;
    font-size: 16px;
    padding: 10px 0;
    margin: 0 0 20px;
}

.clearButtons:hover {
    transform: translateY(-10px);
    
}


#contact {
    position: fixed;
    background-color: black;
    top: 50;
    left: -100px;
    display: flex;
    font-family: "Roboto", sans-serif;
    z-index: 10;
    transform: translateX(-50px);
    border-radius: 0 3px 3px 0;
}

.lip {
    color: #5f90c9;
    background-color: black;
    border-radius: 0 3px 3px 0;
    text-align: center;
    padding: 5% 10px;
}

.lip p {
    margin: 0;
    font-size: clamp(8px, 1.5vw, 15px);
    padding: 1% 0 1%;
}

#contact:hover {
    transform: translateX(100px);
    transition: transform 0.5s ease-in-out;
}


.contact-links {
    display: flex;
    flex-direction: column;
    padding: 0 3%;
}

.contact-links a {
    color: white;
    text-decoration: none;
    margin: 5px 0;
    font-size: 12px;
}

/*Smartphone*/
@media (max-width: 480px)
{
    .navLinks li{
        font-size: 2vh;
    }

    .videoSec {
        min-height: 55vh;
    }

    .topLayout {
        margin-top: 80px;
    }

    .videoSec h1 {
        font-size: 3vh;
    }

    .videoSec h2 {
        font-size: 2vh;
    }
    
    .videoSec p {
        font-size: 1.5vh;
    }

    .videoSecBot {
        height: 40vh;
    }

    .videoSecBot h2 {
        font-size: 3vh;
    }
    
    .videoSecBot p {
        font-size: 1.5vh;
    }

    .clearButtons {
        font-size: 1vh;
    }

    footer h4 {
        font-size: 1.5vh;
    }
    footer li {
        font-size: 1vh;
    }

}