.details_img img {
    width: 100%;
}

.details_content p {
    font-size: 16px;
    margin-top: 1rem;
    line-height: 26px;
}

.details_content h4 {
    font-size: 22px;
    margin-top: 1rem;
}

.details_content h5 {
    margin-top: 1rem;
    font-size: 20px;
}

.deatils_form {
    border: 1px solid #ccc;
    padding: 2rem;
    margin-top: 2rem;
    color: var(--white-color);
    background-color: var(--black-color);
}

.deatils_form h4 {
    text-align: center;
    font-size: 20px;
}

.deatils_form__input {
    margin-top: 2rem;
}

.deatils_form__input input,
.deatils_form__input textarea {
    width: 100%;
    padding: 6px 10px;
    outline: none;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

@media(max-width:992px) {
    .details_wrapper__right {
        margin-top: 2rem;
    }
}

@media(max-width:768px) {

    .details_content h4 {
        font-size: 18px;
    }
    .details_content p{
        font-size: 14px;
        margin-top: 10px;
        line-height: 24px;
    }
    .details_content h5{
        font-size: 16px;
        margin-top: 10px;
    }
    .deatils_form{
        padding: 1.5rem 1rem;
    }
    .deatils_form__input{
        margin-top: 1rem;
    }
}