.accident {
    background: url(../images/accident-bg.jpg);
    background-attachment: fixed;
}

.acd1 {
    padding: 200px 0;
    background-color: #000;
    /* background: url(../images/acd1-bg.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover; */
}

.acd1-title {
    color: #fff;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 5rem;
    text-align: center;
}

.acd1-title span {
    font-size: 65px;
}

.acd1-title span b {
    color: var(--main-color);
}

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

.acd1-box {
    width: 100%;
    height: 350px;
    display: flex;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    background-color: rgba(255, 255, 255, .05);
    overflow: hidden;
}

.acd1-box-image {
    width: 50%;
}

.acd1-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(80%);
    transition: all .3s;
}

.acd1-box:hover img {
    filter: grayscale(0) brightness(100%);
}

.acd1-box-text {
    color: #fff;
    padding: 50px;
    width: 50%;
}

.acd1-box-text h5 {
    font-size: 26px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.acd1-box-text h5 span {
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    background-color: var(--main-color);
}

.acd1-box-text ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.acd1-box-text ul li {
    font-size: 19px;
    line-height: 1.5;
    list-style: disc;
}



/*==================================================*/
@media (max-width: 950px) {
    .acd1 {
        padding: 120px 0;
    }
    
    .acd1-box {
        height: auto;
        flex-direction: column;
    }

    .acd1-box-image {
        width: 100%;
        height: 400px;
    }

    .acd1-box-text {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .acd1 {
        padding: 60px 0;
    }

    .acd1-title {
        font-size: 32px;
        line-height: 2;
        margin-bottom: 3rem;
    }
    
    .acd1-title span {
        font-size: 55px;
        line-height: 1.2;
    }
}


@media (max-width: 550px) {
    .acd1-title {
        font-size: 24px;
        margin-bottom: 2rem;
    }
    
    .acd1-title span {
        font-size: 45px;
    }

    .acd1-box-image {
        height: 220px;
    }
    
    .acd1-box-text {
        padding: 35px;
    }

    .acd1-box-text h5 {
        font-size: 22px;
        gap: 10px;
    }
    
    .acd1-box-text h5 span {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
    
    .acd1-box-text ul {
        gap: 5px;
        margin-top: 1.5rem;
    }
    
    .acd1-box-text ul li {
        font-size: 16px;
    }
}


@media (max-width: 450px) {
    .acd1-title {
        font-size: 20px;
    }
    
    .acd1-title span {
        font-size: 40px;
    }
    
    .acd1-box-text h5 {
        font-size: 20px;
    }
    
    .acd1-box-text h5 span {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .acd1-box-text ul {
        margin-top: 1rem;
    }
    
    .acd1-box-text ul li {
        font-size: 14px;
    }
}