.section {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    background: #000;
}
.section .wrap {
    position: relative;
}
.section .text {
    position: absolute;
    text-align: center;
    z-index: 10;
    color: #fff;
}
.section .text .h2,
.section .text p {
    transition: all 1s ease;
}
.section .text p {
    padding: 0;
    margin: 8px 0;
}
.section .text .h2 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.4em;
    padding: 0;
    margin: 0 0 30px 0;
}

.section-1 .text {
    text-align: center;
    top: 10%;
    bottom: auto;
    left: 20%;
    right: 20%;
    text-shadow: 4px 4px 10px rgba(0,0,0,.6);
}
.section-1 .text .h2 {
    font-size: 77px;
}
.section-1 .text .note {
    margin-top: 40px;
    font-size: 12px;
}

.section-2 {
    background: #fff;
}
.section-2 .text {
    color: #111;
    top: 10%;
    left: 20%;
    right: 20%;
}

@media screen and (max-width: 1024px) {
    .section-1 .text {
        top: 5%;
    }
    .section-1 .text .h2 {
        font-size: 47px;
    }
    .section-2 .text {
        top: 5%;
        left: 10%;
        right: 10%;
    }
}

@media screen and (max-width: 768px) {
    .section .text .h2 {
        margin-bottom: 10px;
    }
    .section-1 .text {
        top: 5%;
        left: 2%;
        right: 2%;
    }
    .section-1 .text .h2 {
        font-size: 37px;
    }
    .section-1 .text .note {
        margin-top: 20px;
    }
    .section-2 .text {
        top: 5%;
        left: 1%;
        right: 1%;
    }
}

@media screen and (max-width: 640px) {
    .section {
        padding-top: 20%;
    }
}

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