body {
    overflow-x: hidden;
}

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

.main-container .hero-section-newsletter {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 80px;
}

.hero-section-newsletter {
    width: 100%;
    padding: 60px 80px;
}

.hero-section-newsletter .text-section {
    width: 50%;
}

.hero-section-newsletter .image-section {
    width: 50%;
    text-align: center;

}

.hero-section-newsletter .text-section h1 {
    font-family: 'Poppins';
    font-size: 46px;
    font-weight: 600;
    margin: 0px;
    line-height: 1.8;
    text-align: left;
    color: #212121;
}

.hero-section-newsletter .image-section img {
    max-width: 600px;
    width: 100%;
    border-radius: 6px;
}

.hero-section-newsletter .text-section p {
    font-family: 'Open Sans';
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
}


/* newsletter section  */
.newsletter-section {
    padding: 20px 80px;
}

.newsletter-section .newsletter-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 48px auto;
}

.newsletter-section .newsletter-container h2,
.newsletter-section .newsletter-container h3 {
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 600;
    margin: 0px;
    line-height: 1.2;
    text-align: left;
    color: #212121;
}

.newsletter-section .newsletter-container h3 {
    font-weight: 400;
    font-size: 16px;
}

.clickable-newsletter i.fa.fa-newspaper-o {
    font-size: 32px;
    color: #14B1E7;
}

.newsletter-container-group a.clickable-newsletter {
    display: flex;
    gap: 20px;
    background-color: #F6F9FC;
    padding: 28px;
    border-radius: 10px;
    text-decoration: none;
    max-width: 500px;
    width: 100%;
    align-items: center;
}

.newsletter-container-group i {
    color: #15B0E7;
}

.newsletter-container-group {
    display: flex;
    gap: 25px;
}

.divider {
    width: 50%;
    height: 1px;
    background-color: #E0E0E0;
    margin: 0;
}

.newsletter-container-group a.clickable-newsletter:hover {
    background-color: #d4d4d4;
}

/* newsletter section end */

@media screen and (max-width: 1065px) {
    .hero-section-newsletter .text-section h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    /* newsletter code */
    .newsletter-container-group {
        flex-direction: column;
    }

    .newsletter-container-group a.clickable-newsletter {
        max-width: inherit;
    }

    .divider {
        width: 100%;
    }
}

@media screen and (max-width: 992px) {

    .hero-section-newsletter {
        padding: 60px 40px;
    }

    .newsletter-section {
        padding: 0px 40px;
    }

    .hero-section-newsletter .text-section h1 {
        font-size: 38px;
    }

    .hero-section-newsletter .text-section p {
        font-size: 16px;
    }

    .main-container .hero-section-newsletter {
        margin-top: 60px;
    }
}

@media screen and (max-width: 768px) {
    .hero-section-newsletter {
        padding: 40px 20px;
        padding-bottom: 0px;
    }


    .newsletter-section {
        padding: 0px 20px;
    }

    .hero-section-newsletter .text-section h1 {
        font-size: 32px;
    }

    .main-container .hero-section-newsletter {
        flex-direction: column;
    }

    .hero-section-newsletter .text-section,
    .hero-section-newsletter .image-section {
        width: 100%;
    }

    .hero-section-newsletter .image-section img {
        max-width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .hero-section-newsletter .text-section h1 {
        font-size: 28px;
    }

    .hero-section-newsletter .text-section p {
        font-size: 14px;
    }

    .newsletter-container-group a.clickable-newsletter {
        padding: 22px;
    }

    .main-container .hero-section-newsletter {
        margin-top: 60px;
    }
}