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

body {
    background: #000;
    color: #fff;
    background-image: url(images/bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

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

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

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

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

.image-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

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

h1 {
    font-size: 48px;
    line-height: 1.4;
    margin-bottom: 5px;
    font-family: 'Merriweather', serif;
    font-weight: normal;

}

.left {
    padding-right: 30px;
}


iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.section-label {
    position: relative;
}

.content-two {
    margin-top: 10px;
}

.label {
    display: inline-flex;
    align-items: center;
    background: #000;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0px 8px 10px 0px;
}

.label::after {
    content: "";
    display: inline-block;
    width: 400px;
    height: 2.5px;
    background: #c6a464;
    margin-left: 20px;
}

.head-two {
    font-size: 33px;
    font-weight: 500;
    margin-bottom: 22px;
}

.para-two {
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
    margin-bottom: 40px;
}

.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: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    line-height: 3;

}

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

/* 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;
    }

    .label::after {
        width: 150px;
    }
    .label {
        font-size: 20px;
    }
    .head-two {
        font-size: 28px;
    }
    .para-two {
        font-size: 16px;
        line-height: 28px;
    }   
    .download-btn {
        font-size: 20px;
    }

    iframe {
        width: 100%;
    }

    .mobile-hide {
        display: none;
    }

    .img-single {
        width: 90% !important;
    }
    .iframe-container {
        padding: 60px 0px;
    }
}

@media (max-width: 321px) {
    .label::after {

        width: 100px;

    }
}



/* Single Image Section */
.img-single {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    padding: 50px 0px;
}

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

.footer-logo img {
    width: 200px;
    height: auto;
    margin-bottom: 40px;
}

.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: 70px;
    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: 250px;
    }
}