.modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: linear-gradient(rgba(222, 96, 20, 0.8), rgb(222, 98, 20, 0.6)), url('../img/bg/modal.jpg') no-repeat center center/120%;
    margin: 15% auto;
    border: 1px solid #888;
    width: 80%;
}

.modal-title h3 {
    margin-top: 32px;
    color: #000;
    text-align: center;
    font-size: 2rem;
    text-transform: uppercase;
    font-style: italic;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    color: #fff;
}

.modal-item {
    padding: 32px;
    text-align: justify;
}

.modal-img-item img {
    display: block;
    margin: 16px auto;
}

.modal-footer {
    margin-bottom: 0;
}

.modal-footer img {
    display: block;
    margin: 0 auto;
}

.close {
    color: #fff;
    float: right;
    margin-right: 8px;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 575.98px) {
    .modal-content {
        background: linear-gradient(rgba(222, 96, 20, 0.8), rgb(222, 98, 20, 0.6)), url('../img/bg/modal.jpg') no-repeat center center/430%;
        margin: 15% auto;
        border: 1px solid #888;
        width: 80%;
    }
    .modal-body {
        display: block;
    }

    .modal-footer img {
        width: 90%;
        display: block;
        margin: 0 auto;
    }
}

@media (min-width: 992px) {
    .modal-content {
        width: 44%;
    }
}