.modal {
    display: none;
}
.modal.show {
    display: block;
}

.modal .modal-dialog {
    background-color: rgba(0,0,0,.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 101;
    padding: 0 10px;
	z-index: 1000;
}
.modal .modal-dialog .modal-content {
    width: 1200px;
    min-height: 90%;
    height: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    box-shadow: 5px 5px 10px rgba(0,0,0,.7);
    border-radius: 4px;
    padding: 30px;
    background-color: white;
}
.modal .modal-dialog .modal-content .modal-body {
    height: 100%;
}
.modal .modal-dialog .modal-content .modal-body iframe {
    border: 0;
    width: 100%;
    height: 100%;
}
.modal .modal-dialog .modal-content .modal-body.form-body {
    background-color: #f2f2f2;
    padding: 20px;
}
.form-body .wpcf7-form p{
    font-size: 16px;
    color: #4b4949;
    font-family: Lato, Arial, Helvetica, sans-serif;
}
@media screen and (max-width:768px) {
    .modal .modal-dialog .modal-content {
        width: 100%;
        padding: 18px;
    }
    /* .modal .modal-dialog .modal-content .modal-body iframe {
    } */
}
.row {
    display: flex;
}
@media (min-width: 992px) {
    .col-md-4  { width: 33.33333333%; }
    .col-md-5  { width: 41.66666667%; }
    .col-md-6  { width: 50%; }
    .col-md-7  { width: 58.33333333%; }
    .col-md-8  { width: 66.66666667%; }
    .col-md-12 { width: 100%; }
}
.d-none {
    display: none;
}
