.hero-section{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 2000px;
    width: 100%;
    margin: 0 auto;
    font-family: "Monstserrat","sans-serif";
    background: url('../images/NEP_page/bg.png') no-repeat center center/cover;
    height: 500px;
    text-align: center;
    transition: all 0.5s ease;
  }
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: all 0.5s ease;
}

.hero-section h1{
    margin: 0 auto;
    max-width: 900px;
    font-size: 4rem;
    color: #fff;
    z-index: 2;
    transition: all 0.5s ease;
}
.hero-section h2{
    margin: 20px auto;
    max-width: 1200px;
    font-size: 3rem;
    color: #fff;
    z-index: 2;
    transition: all 0.5s ease;
}

/* 320px */
@media screen and (min-width: 320px) {
    .hero-section h1{
        font-size: 2rem;
    }
    .hero-section h2{
        font-size: 1.5rem;
    }
    
}
/* 375px */
@media screen and (min-width: 375px) {
    .hero-section h1{
        font-size: 2.5rem;
    }
    .hero-section h2{
        font-size: 1.7rem;
    }   
}
/* 425px */
@media screen and (min-width: 425px) {
    .hero-section h1{
        font-size: 2.8rem;
    }
    .hero-section h2{
        font-size: 1.9rem;
    }   
}
/* 768px */
@media screen and (min-width: 768px) {
    .hero-section h1{
        font-size: 3.2rem;
    }
    .hero-section h2{
        font-size: 2.3rem;
    }   
}
/* 1024px */
@media screen and (min-width: 1024px) {
    .hero-section h1{
        font-size: 3.5rem;
    }
    .hero-section h2{
        font-size: 2.5rem;
    }   
}


/*============ Content Section ==================*/
.content-section{
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    font-family: "Roboto","sans-serif";
    transition: all 0.5s ease;
}

.content-section .container{
    position: relative;
    margin-bottom: 50px;
    transition: all 0.5s ease;
}

.content-section .container h1{
    font-size: 2.5rem;
    font-family: "Monstserrat","sans-serif";
    color: #000;
    transition: all 0.5s ease;
}

.content-section .container h2{
    position: relative;
    font-size: 1.6rem;
    color: #181818;
    margin-top: -10px;
    left: 2rem;
    transition: all 0.5s ease;
}

.content-section .container p{
    font-size: 1.3rem;
    color: #000;
    margin-left: 2rem;
    transition: all 0.5s ease;
}

/* 320px */
@media screen and (min-width: 320px){
    .content-section .container{
        padding: 10px;
        margin-bottom: 0;
    }

    .content-section .container h1{
        font-size: 1.8rem;
    }

    .content-section .container h2{
        font-size: 1.4rem;
        left: 0rem;
    }

    .content-section .container p{
        font-size: 1rem;
        margin-left: 0rem;
    }
}
/* 425px */
@media screen and (min-width: 425px){
    .content-section .container{
        padding: 10px;
        margin-bottom: 0;
    }

    .content-section .container h1{
        font-size: 2rem;
    }

    .content-section .container h2{
        font-size: 1.5rem;
        left: 0rem;
    }

    .content-section .container p{
        font-size: 1.1rem;
        margin-left: 0rem;
    }
}
/* 768px */
@media screen and (min-width: 768px){
    .content-section .container{
        padding: 10px;
        margin-bottom: 0;
    }

    .content-section .container h1{
        font-size: 2.5rem;
    }

    .content-section .container h2{
        font-size: 1.6rem;
        left: 0rem;
    }

    .content-section .container p{
        font-size: 1.2rem;
        margin-left: 0rem;
    }
}