.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: left;
    top: 45%;
    bottom: auto;
    left: 10%;
    right: 50%;
    text-shadow: 4px 4px 10px rgba(0,0,0,.6);
}
.section-1 .text p {
    font-size: 20px;
}

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

.section-3 {
    background: #fff;
}
.section-3 .text {
    text-align: left;
    color: #111;
    top: 30%;
    left: 15%;
    right: 55%;
}
.section-3 .info {
    text-align: center;
    display: flex;
    font-size: 33px;
}
.section-3 .info .info-col {
    margin-right: 20px;
}
.section-3 .info span {
    display: block;
    font-size: 0.5em;
}

.section-4 .text {
    top: 10%;
    left: 30%;
    right: 30%;
}
.section-4 .info {
    padding-top: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 18px;
}
.section-4 .info .info-col {
    margin-right: 20px;
}
.section-4 .info span {
    display: block;
    font-size: 1.5em;
}

@media screen and (max-width: 1366px) {
    .section-1 .text {
        top: 38%;
        left: 5%;
    }
}

@media screen and (max-width: 1024px) {
    .section-1 .text {
        top: 20%;
    }
    .section-4 .text {
        top: 3%;
        left: 10%;
        right: 10%;
    }
}

@media screen and (max-width: 768px) {
    .section-1 .text {
        top: 10%;
    }
    .section-1 .text p {
        font-size: 14px;
    }
    .section-2 .text {
        top: 5%;
    }
    .section-3 .text {
        top: 3%;
        left: 5%;
    }
}

@media screen and (max-width: 640px) {
    .section .text .h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .section .text p {
        font-size: 14px;
    }
    .section-4 {
        padding-top: 5%;
    }
}

@media screen and (max-width: 480px) {
    .section-1 {
        padding-top: 10%;
    }
    .section-1 .text {
        top: 1%;
        left: 3%;
        right: 5%;
    }
    .section-4 .info {
        font-size: 14px;
    }
    .section-4 {
        padding-top: 20%;
    }
}