.special {
    background: url(../images/special-bg.jpg) no-repeat;
    background-size: cover;
}

.sp-image {
    position: relative;
    width: 100%;
}

.sp-image img {
    margin-bottom: -5px;
}

.sp-title {
    position: absolute;
    top: 45%; left: 180px;
    transform: translate(0, -50%);
    color: #fff;
    font-size: 28px;
    line-height: 1.5;
    text-shadow: 0 0 25px rgba(0, 0, 0, .3);
    z-index: 10;
}

.sp-title span {
    font-weight: 300;
}

.sp-title b {
    font-weight: 600;
}

.sp-wrapper {
    width: 70%;
    padding: 70px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background-color: #fff;
    margin-top: -5rem;
    z-index: 20;
}

.sp-box-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sp-box {
    position: relative;
    padding: 30px;
    padding-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid #eee;
    background-color: #f8f8f8;
}

.sp-box img {
    position: absolute;
    top: 30px; right: 30px;
    height: 70px;
}

.sp-box h5 {
    color: #222;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Montserrat';
}

.sp-box p {
    color: #777;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
}


/*==================================================*/
@media (max-width: 1250px) {
    .sp-title {
        left: 10%;
        font-size: 24px;
    }
}


@media (max-width: 1050px) {
    .sp-wrapper {
        width: 90%;
        padding: 50px;
    }
}


@media (max-width: 768px) {
    .sp-title {
        font-size: 22px;
    }
    
    .sp-wrapper {
        padding: 40px;
        margin-top: -2rem;
    }

    .sp-box img {
        height: 60px;
    }
    
    .sp-box h5 {
        font-size: 20px;
    }
    
    .sp-box p {
        width: 70%;
        font-size: 15px;
    }

    .sp-box p br {
        display: none;
    }
}


@media (max-width: 550px) {
    .sp-title {
        top: 50%;
        font-size: 16px;
        text-shadow: 0 0 25px rgba(0, 0, 0, .5);
    }
    
    .sp-wrapper {
        padding: 25px 15px;
        margin-top: -1rem;
    }

    .sp-box {
        padding: 20px;
        padding-top: 50px;
    }

    .sp-box img {
        top: 20px; right: 20px;
        height: 50px;
    }
    
    .sp-box h5 {
        font-size: 18px;
    }
    
    .sp-box p {
        width: 85%;
        font-size: 13px;
    }
}