.detail{
    padding: 105px 1rem;
}

.detail .content{
    display: flex;
    flex-direction: column;
    grid-gap: 120px;
    align-items: center;
}

.detail h2{
    font-weight: 500;
    font-size: 60px;
    line-height: 110%;
    text-align: center;
    color: #E83C40;
    margin-bottom: 74px;
}

.detail br{
    display: inline;
}

.detail h3{
    font-weight: 500;
    font-size: 40px;
    line-height: 50px;
    color: #111F3F;
    margin-bottom: 24px;
}

.detail p{
    font-weight: 300;
    font-size: 18px;
    line-height: 160%;
    color: #111F3F;
    opacity: 0.8;
}

.detail .services{
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
}

.detail .services p{
    font-weight: 400;
    font-size: 16px;
    opacity: 0.6;
    margin-top: 11px;
}

.detail h4{
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    color: #111F3F;
}

.detail .right{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 24px;
    background: rgba(17, 31, 63, 0.06);
    border-radius: 12px;
    height: fit-content;
    max-width: 459px;
}

.detail .right a{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 17px 24px;
    width: 90%;
    background: #E83C40;
    color: #fff;
    margin: 0 auto;
}

.detail .right p,
.detail .right li{
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    color: #111F3F;
    opacity: 0.8;
    padding-left: 10px;
}

.detail .right .engagement{
    padding-left: unset;
}

.detail .right li{
    font-weight: 600;
}

@media screen and (min-width: 576px) {
    .detail .services {
        margin-top: 32px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 992px){
    .detail .left,
    .detail .right{
        width: 50%;
    }

    .detail .content{
        flex-direction: row;
        align-items: end;
    }
}
