.common__container::before,
.common__container::after{
    display: none;
}

.flagship{
    background-color: #F5F7F9;
    padding: 90px 0;
}

.flagship__container{
    display: flex;
    align-items: flex-start;
    gap: 10vw;
}

.flagship__title h2{
    font-size: 40px;
    font-weight: 700;
    font-family: Montserrat;
    color: #253144;
    line-height: 1.4;
}

.flagship__subtitle{
    font-size: 28px;
    font-weight: 700;
    font-family: Montserrat;
    color: #253144;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flagship__desc p{
    font-family: Roboto;
    font-weight: 400;
    font-size: 14px;
    line-height: 2;
    color: #647288;
    text-align: justify;
}

.sp__container{
    display: flex;
    align-items: center;
    gap: 79px;
    padding: 100px 0;
    position: relative;
    background-color: transparent;
}

.sp:nth-of-type(even) .sp__right{
    order: 1;
    padding-left: 10%;
}

.sp:nth-of-type(even) .sp__left{
    order: 2;
}

.sp:nth-of-type(even) .sp__container::before{
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background-color: #F5F7F9;
    z-index: -1;
}

.sp__container > div{
    flex: 1;
}

.sp__pic{
    overflow: hidden;
}

.sp__pic img{
    width: 100%;
    height: auto;
    transition: transform .5s;
}

.sp__pic:hover img{
    transform: scale(1.1);
}

.sp__title{
    margin-bottom: 18px;
}

.sp__title h3{
    font-family: Montserrat;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #253144;
}


.sp__title h3:hover{
    color: rgb(53, 143, 198);
}

.sp__text p{
    font-family: Roboto;
    font-size: 18px;
    line-height: 2;
    text-align: justify;
    color: #647288;
}

.sp__text p span{
    color: #253144;
    font-weight: bold;
}

.sp__text p a{
    color: #055BE1;
    text-decoration: underline;
}

.spl{
    margin-top: 100px;
}

.spl__list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.spl__item-pic{
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.spl__item-pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.spl__item-pic{
    margin-bottom: 28px;
}

.spl__item-title p{
    font-family: Montserrat;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #253144;
}


.spl__item:hover .spl__item-pic img{
    transform: scale(1.1);
}

.spl__item:hover .spl__item-title p{
    color: rgb(53, 143, 198);
}


@media (max-width:1024px) {
    /* .flagship__desc p,
    .sp__text p{
        text-align: left;
    } */

    .spl__list{
        grid-template-columns: repeat(2, 1fr);
    }

    .sp__container{
        gap: 40px;
    }
}

@media (max-width:768px) {
    .flagship__title{
        display: none;
    }

    .flagship{
        padding: 40px 0;
    }

    .flagship__subtitle{
        font-size: 22px;
    }

    .sp__container{
        flex-direction: column;
        padding: 40px 15px;
        gap: 20px;
    }

    .sp:nth-of-type(even) .sp__container::before{
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
    }

    .sp:nth-of-type(even) .sp__right{
        padding-left: 0;
    }

    .sp__left{
        width: 100%;
    }

    .spl__list{
        grid-template-columns: repeat(1, 1fr);
    }


}