.section {
    padding-top: 110px;
    padding-bottom: 180px;
}
.section .joke {
    width: 1330px;
    margin: auto;
}
.section .title {
    position: relative;
    padding: 108px 0 90px;
    justify-content: space-between;
    margin-bottom: 70px;
}
.section .title:after {
    content: "";
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #00A5A9;
    z-index: -1;
}
.section .title h1 {
    font-size: 36px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1;
}
.section .title p{
    font-size: 16px;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 1;
    margin-top: 22px;
}
.section .title .back {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    font-size: 18px;
    transition: 0.4s;
    color: rgba(255,255,255,0.5);
}
.section .title .back:hover {
    border: 1px solid rgba(255,255,255,1);
    background: #FFFFFF;
    color: #00A5A9;
}
.section .content p {
    font-size: 16px;
    font-weight: 300;
    color: #333333;
    line-height: 32px;
}
@media screen and (max-width: 1600px) {
    .section {
        padding-top: 80px;
    }
    .section .title h1 {
        font-size: 28px;
    }
    .section .content p img {
        max-width: 100%;
        height: auto!important;
    }
}
@media screen and (max-width: 1500px) {
    .section .joke {
        width: 90%;
    }
}
@media screen and (max-width: 1400px) {
    .section .title h1 {
        font-size: 24px;
    }
    .section .title .back {
        width: 45px;
        height: 45px;
    }
    .section .content p,.section .title p {
        font-size: 14px;
    }
}
@media screen and (max-width: 1024px) {
    .section {
        padding-bottom: 60px;
    }
    .section .title h1 {
        font-size: 20px;
        line-height: 1.4;
    }
}
@media screen and (max-width: 768px) {
    .section {
        padding-top: 60px;
    }
    .section .title {
        padding: 30px 0;
        flex-direction: column-reverse;
    }
    .section .title .back {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-bottom: 20px;
    }
    .section .content p, .section .title p {
        font-size: 12px;
    }
    .section .title {
        margin-bottom: 40px;
    }
}
