.ab1 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.ab1>img{
    width: 100%;
    min-height: 30vh;
}

.ab1>.info {
    position: absolute;
    left: 5%;
    top: 50%;
}

.ab1>.info>h3 {
    font-family: Plus Jakarta Sans ExtraBold;
    font-size: var(--48px--);
    color: #FFFFFF;
    line-height: 61px;
}

.ab2 {
    position: relative;
    padding: 5%;
    overflow: hidden;
}

.ab2>div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5%;
}

.ab2>div:nth-child(even) {
    flex-direction: row-reverse;
}
.ab2Item>div {
    width: 48%;
}

.ab2Item>.left>img{
    width: 100%;
    object-fit: contain;
}
.ab2Item>.right {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.ab2Item>.right>h3 {
    font-size: max(36px, 4.8vw);
    color: #3A3A3A;

}

.ab2Item>.right>b {
    font-size: var(--18px--);
    color: #3A3A3A;
    margin-bottom: 5%;
}

.ab2Item>.right>p {
    font-family: Plus Jakarta Sans Regular;
    font-size: var(--16px--);
    color: #3A3A3A;
    line-height: 32px;
    letter-spacing: 1px;
    text-indent: 2rem;
}

.ab2Item>.right>div {
    display: flex;
    justify-content: space-around;
    margin-top: 5%;
}

.ab2Item>.right>div>img {
    width: auto;
    object-fit: contain;
}

.ab3 {
    width: 100%;
    position: relative;
    padding: 5%;
    background: linear-gradient(90deg, #FFFFFF 0%, #F1F1F1 100%);
}

.ab3>h3 {
    display: block;
    text-align: center;
    font-size: var(--48px--);
    color: #3A3A3A;
    margin-bottom: 30px;
}

.ab3Slide>img {
    width: 100%;
    object-fit: contain;
}

@media (max-width: 1200px){
    .ab2>div,
    .ab2>div:nth-child(even){
        flex-direction: column;
    }
    .ab2Item>div{
        width: 100%;
    }

    .ab2Item>.left{
        margin-bottom: 10px;
    }
}

@media (max-width: 768px){
    .ab2Item>.right>div{
        flex-wrap: wrap;
    }
    .ab2Item>.right>div>img{
        width: 130px;
    }
}

@media (max-width: 480px){
    .ab2Item>.right>div>img{
        width: 100px;
    }
}