section.imgs-col-container.tablet {
    display: grid;
}
section.imgs-col-container.desktop {
    display: none;
}
section.imgs-col-container,
section.img-col-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--tablet-gap);
}
section.imgs-col-container img,
section.img-col-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    max-width: 100%; 
}
section.imgs-col-container.desktop .gallery {
    display: grid;
    gap: 12px;
    align-items: stretch;
}


@media all and (min-width: 1025px) {
    section.imgs-col-container.desktop {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    section.imgs-col-container.tablet {
        display: none;
    }
    section.imgs-col-container.desktop,
    section.img-col-container {
        gap: var(--desktop-gap);
    }
}
@media (width > 64em) {
    section.img-col-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* form */
.form-wrapper form label {
    font-size: var(--font-secondary-regular-size-desktop);
    font-family: var(--font-secondary-regular-family);
    font-weight: var(--font-primary-semibold-weight);
    color: var(--text);
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.form-wrapper form label input, 
.form-wrapper form label textarea {
    border: 1px solid #ccc;
    padding: 8px;
    max-width: 100%;
    width: 100%;
    font-size: 1rem;
    margin-top: 6px;
}
.form-wrapper form label input::placeholder, 
.form-wrapper form label textarea::placeholder {
    font-size: 0.85rem;
    color: var(--accent-gray);
    text-transform: lowercase;
}
.form-wrapper form {
    display: flex;
    flex-direction: column;
}
.form-wrapper form input:focus, 
.form-wrapper form textarea:focus,
.form-wrapper form input:active, 
.form-wrapper form textarea:active {
    border: 1px solid var(--main-accent);
    outline: none; 
}
.form-wrapper form input.wpcf7-submit {
    color: var(--tlo-background);
    border-radius: var(--default-radius);
    text-transform: uppercase;
    padding: 1rem 2rem;
    width: fit-content;
    margin: auto;
    min-width: 200px;
    text-align: center;
    text-align: center;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
    background-color: var(--main-accent);
    cursor: pointer;
    border: none!important;
}
.form-wrapper form input.wpcf7-submit:hover {
    transform: scale(1.1);
}
.form-wrapper form .wpcf7-not-valid-tip {
    font-size: 0.85rem;
    font-weight: 700;
}
.form-wrapper form.invalid .wpcf7-response-output, 
.form-wrapper form.unaccepted .wpcf7-response-output, 
.form-wrapper form.payment-required .wpcf7-response-output {
    border-color: var(--accent-red);
    color: var(--accent-red);
}
.form-wrapper form .wpcf7-response-output {
    margin: 1rem auto;
    text-align: center;
    font-size: 1rem;
    border: 2px solid var(--main-accent);
    color: var(--main-accent);
    padding: 1rem;
}
.form-wrapper form span.wpcf7-form-control-wrap {
    width: 100%;
}
.form-wrapper form label span.required {
    color: var(--accent-red);
    font-weight: 700;
    margin-left: 3px;
}

@media all and (max-width: 767px) {
    .form-wrapper form input.wpcf7-submit {
        width: 100%;
    }
}
/* form  */