#pr-devices-catalog {
    padding-top: 150px;
    padding-bottom: 150px;
}

.devices-catalog {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 40px;
    column-gap: 20px;
    align-items: stretch;
}

.device-item > .device-item__img {
    display: flex;
    padding: 20px;
    background: rgba(120, 161, 147, 0.15);
    height: 400px;
    align-items: center;
    justify-content: center;
}
.device-item > .device-item__img > img {
    height: 300px;
}

.device-item > .device-item__title {
    font-size: 24px;
    font-weight: 600;
    padding-top: 20px;
}

.device-item > .device-item__description {
    font-size: 16px;
    line-height: 24px;
    padding-top: 20px;
    height: 120px;
}

.device-item > .device-item__btn {
    padding-top: 20px;
}

.overflow-hidden {
    overflow: hidden;
}

.imgn-overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 1001;
    background: #000000;
    top: 0;
    opacity: .7;
    display: none;
}

.imgn-contact-form {
    position: fixed;
    z-index: 1002;
    top: 10vh;
    width: 50%;
    left:25%;
    text-align: center;
    padding: 0 20px;
    margin: 0 auto;
    display: none;
}

.imgn-contact-form__wrapper {
    width: 100%;
    margin: 0 auto;
    background: #FFF;
    padding: 50px 20px;
    overflow-y: auto;
    max-height: 80vh;
}

.form-group {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 20px;
}

.form-group > label, .imgn-contact-form__title {
    display: flex;
    padding-bottom: 15px;
    font-size: 20px;
    line-height: 1;
    color: #030303;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.form-group > input, .form-group > textarea {
    outline: none;
    width: 100%;
    height: 50px;
    padding: 0 15px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid rgba(112, 112, 112, 0.3);
    background-color: #fff;
    font-size: 18px;
    line-height: 1;
    color: #030303;
    -webkit-transition: border-color 0.3s ease-in-out;
    -o-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    appearance: none;
}

.form-group > textarea {
    height: 200px;
    padding: 15px;
    resize: none;
}

.imgn-contact-form__title {
    font-size: 24px;
    line-height: 1.1;
    justify-content: center;
}

.form-group > input:disabled, .form-group > textarea:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.message-box {
    display: none;
}

.message__close {
    display: none;
}

.message-box .message__text {
    font-size: 24px;
    line-height: 1.1;
}

.message-box.success-message .message__text {
    color: #78A196;
}

.message-box .message__close {
    width: fit-content;
    margin: 20px auto 0 auto;
    padding: 10px 50px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 8px;
    background-color: #d9d9d9;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}

.message-box .message__close:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out
}

/* Responsive Tablet */
@media all and (max-width: 1024px) {
    .devices-catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .pr-features__title-wrapper > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .imgn-contact-form {
        top: 5vh;
        width: 90%;
        left: 5%;
    }
    .imgn-contact-form__wrapper {
        padding: 20px;
        max-height: 90vh;
    }
    .form-group > textarea {
        height: 120px;
    }
}

/* Responsive Mobile */
@media all and (max-width: 767px) {
    .devices-catalog {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .device-item > .device-item__description {
        height: auto;
    }
    .imgn-contact-form__wrapper {
        padding: 20px 10px;
        overflow-y: auto;
        max-height: 90vh;
    }
    .imgn-contact-form__title {
        font-size: 24px;
        line-height: 1;
    }
}