.page-body.page-about-us {
    width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-tittle {
    margin-top: 30px;
    margin-bottom: 50px;
}

.about-tittle h1 {
    text-align: center;
    font-size: 3em;
    font-weight: 700;
    color: #FD3801;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 70px;
}

.about-content:nth-child(even) {
    flex-direction: row-reverse;
}

.about-content h1 {
    color: #FD3801;
    text-transform: uppercase;
    font-size: 1.2em;
}

.about-content p {
    color: #003C46;
    line-height: 1.5em;
}

.about-content .img-box {
    width: 50%;
    text-align: center;
}

.about-content .content-box {
    width: 50%;
}

.button-box a {
    display: inline-block;
    background: #F194CB;
    color: #fff;
    border-radius: 30px;
    padding: 18px 40px;
    text-transform: uppercase;
}

@media only screen and (min-width:1360px) and (max-width:1460px) {
    .page-body.page-about-us {
        width: 1330px;
    }
}

@media only screen and (min-width:1260px) and (max-width:1360px) {
    .page-body.page-about-us {
        width: 1200px;
    }
}

@media only screen and (min-width:992px) and (max-width:1260px) {
    .page-body.page-about-us {
        width: 960px;
    }
}

@media only screen and (max-width:1260px) {
    .about-content {
        align-items: normal;
    }
}

@media only screen and (max-width:991px) {
    .about-content {
        display: block;
    }

    .about-content .img-box,
    .about-content .content-box {
        width: 100%;
        text-align: center;
    }

    .about-content:last-child {
        padding-bottom: 50px;
    }
}

@media only screen and (max-width:480px) {
    .about-tittle h1 {
        font-size: 2em;
    }
}