* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.mb-header {
    position: relative;
    width: 100%;
    height: 100vh;
    text-align: center;
}

.mb-header-img {
    display: block;
    width: 100%;
    height: 100vh;
    background-size: cover;
}

.mb-header-logo {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: auto;
    z-index: 2;
}

/* *************** DOWNLOAD SECTION CODE **************** */

.container {
    max-width: 1100px;
    margin: auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 60px;
    position: relative;
}

.download-list li a {
    text-decoration: none;
    color: #000;
}

h1 {
    font-size: 40px;
    line-height: 1.4;
    font-weight: normal;
    margin-bottom: 30px;
}

.left {
    padding-right: 30px;
}

iframe {
    width: 70%;
    height: 280px;
    border: none;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
}

.right h2 {
    font-size: 40px;
    font-weight: normal;
    margin-bottom: 20px;
    line-height: 1.4;
}

.download-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.download-list li {
    font-size: 17px;
    padding: 15px 0;
    border-bottom: 1px solid #000;
    cursor: pointer;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    line-height: 1.5;

}

.download-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 26px;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    text-decoration: none;
    transition: 0.3s;
}

.download-btn:hover {
    background: #333;
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .left {
        padding-right: 0px;
    }
}

@media (max-width: 600px) {

    h1,
    .right h2 {
        font-size: 28px;
    }

    iframe {
        width: 80%;
        height: 220px;
    }
}

@media (max-width: 600px) {
    iframe {
        width: 100%;
    }

    .mobile-hide {
        display: none;
    }

}

/* Carousel Section */
.carousel-section {
    width: 100%;
    overflow: hidden;
}

.swiper {
    width: 100%;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.footer-logo img {
    width: 400px;
    height: auto;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 16px;
    margin: 15px 0;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 16px;
}

.social-icons {
    margin-top: 30px;
    margin-bottom: 30px;
}


.social-icons a {
    color: #fff;
    font-size: 20px;
    margin: 0 8px;
    display: inline-block;
}

.social-icons a:hover {
    color: #ccc;
}

@media (max-width: 600px) {
    .footer-logo img {
        width: 300px;
    }
}