/**
 * Theme Name: ultimate-hotel-booking-child
 * Template:   ultimate-hotel-booking
 * Version:    1.0.0
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@media (min-width: 1380px) {
    .ultimate-hotel-booking-container {
        max-width: 1380px;
        width: 100% !important;
    }
}

.ultimate-hotel-booking-site-footer,
.tft-design-2 .tft-footer-sections {
    color: #171717;
}

.ultimate-hotel-booking-site-footer h2,
.tft-design-2 .tft-footer-sections h2 {
    color: #fff;
}

.ultimate-hotel-booking-site-footer p,
.tft-design-2 .tft-footer-sections p {
    color: #fff;
}
/* ==========================================
   WSPÓLNE FUNDAMENTY
   ========================================== */
.zatoka-main-header {
    position: absolute; /* Nagłówek leży na głównym zdjęciu */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
.tft-flex {
    display: flex !important;
    /* justify-content: space-between !important; */
    /* align-items: center !important; */
    width: 100%;
}

/* ==========================================
   DESKTOP (Powyżej 991px)
   ========================================== */
@media (min-width: 992px) {
    .tft-header-mobile {
        display: none !important;
    }

    .tft-logo {
        flex: 0 0 auto;
        margin-right: 20px;
    }
    .tft-menu {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    /* --- Nagłówek 1 (Przezroczysty na górze) --- */
    .header-row-normal {
        position: relative;
        padding: 20px 0;
        transition: opacity 0.3s ease;
    }
    .header-row-normal .tft-site-navigation ul li a {
        color: #ffffff !important;
    }
    .header-row-normal .tft-logo img {
        max-height: 100px;
        width: auto;
    }

    /* --- Nagłówek 2 (Biały Sticky) --- */
    .header-row-sticky {
        position: fixed;
        top: -100px; /* Ukryty nad ekranem */
        left: 0;
        width: 100%;
        background: #ffffff !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        z-index: 9999;
        transition: top 0.4s ease-in-out;
        visibility: hidden;
    }
    .header-row-sticky .tft-site-navigation ul li a {
        color: #171717 !important;
        font-weight: 600;
    }
    .header-row-sticky .tft-logo img {
        max-height: 65px;
        width: auto;
    }

    /* Logika Scrolla Desktop */
    .is-sticky .header-row-normal {
        opacity: 0;
        pointer-events: none;
    }
    .is-sticky.tf-sticky-active .header-row-sticky {
        top: 0 !important;
        visibility: visible;
    }
}
@media (max-width: 1124px) {
    .zatoka-header-wrapper .ultimate-hotel-booking-container .tft-logo.site--brand-logo {
        max-height: 100px !important;
    }
}
@media (max-width: 1280px) {
    .ultimate-hotel-booking-container,
    .ultimate-hotel-booking-kit-container {
        padding-left: 8px;
        padding-right: 8px;
    }
}
/* ==========================================
   MOBILE (Do 991px)
   ========================================== */
@media (max-width: 991px) {
    .tft-header-desktop {
        display: none !important;
    }

    .header-mobile-wrapper {
        /* position: fixed; Zawsze przyczepiony, by robić płynne przejścia */
        width: 100%;
        top: 0;
        left: 0;
        padding: 15px 0;
        z-index: 9999;
        transition: all 0.3s ease;
    }

    /* --- Stan 1: Góra strony (Przezroczysty) --- */
    body:not(.is-sticky) .header-mobile-wrapper {
        background: transparent;
        box-shadow: none;
    }
    body:not(.is-sticky) .logo-default {
        display: none !important;
    }
    body:not(.is-sticky) .logo-transparent {
        display: block !important;
        max-height: 40px;
    }
    body:not(.is-sticky) .tft-mobile_menubar i {
        color: #ffffff !important;
    } /* Biały hamburger */

    /* --- Stan 2: Zjazd w dół (Schowany) --- */
    body.is-sticky .header-mobile-wrapper {
        top: -100px;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }

    /* --- Stan 3: Powrót w górę (Biały Sticky) --- */
    body.is-sticky.tf-sticky-active .header-mobile-wrapper {
        top: 0 !important;
    }
    /* Po zjechaniu w dół wymuszamy ciemne logo i czarny hamburger */
    body.is-sticky .logo-default {
        display: block !important;
        max-height: 40px;
    }
    body.is-sticky .logo-transparent {
        display: none !important;
    }
    body.is-sticky .tft-mobile_menubar i {
        color: #171717 !important;
    }

    /* Rozwijane menu z wtyczki na mobilkach */
    .tft-mobile-main-menu {
        background: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    .tft-mobile-main-menu .tft-site-navigation ul li a {
        color: #171717 !important;
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
        display: block;
    }
}

/* Footer */

/* ==========================================
   Footer - Naprawa klikalności i warstw
   ========================================== */

.ultimate-hotel-booking-site-footer {
    padding: 0;
    position: relative; /* Kluczowe dla z-index dzieci */
    z-index: 1;
    overflow: hidden;
    background-color: #171717; /* Zakładam ciemne tło zgodnie z Twoim h2/p color white */
}

/* Kontener z dekoracją SVG */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1; /* Najniższa warstwa wewnątrz footera */
    pointer-events: none; /* Przeglądarka ignoruje tę warstwę przy klikaniu */
    opacity: 0.05; /* Twoje 5% */
    border: 0;
    line-height: 0;
}
.footer-decoration svg {
    height: 100%;
}

/* Kontener z treścią (Logo, Grid, Linki) */
.footer-content-wrapper {
    position: relative;
    z-index: 5; /* Wyżej niż dekoracja */
}

/* Upewnienie się, że linki są klikalne */
.footer-content-wrapper a,
.footer-content-wrapper .tft-grid,
.footer-logo-container a {
    position: relative;
    z-index: 10;
}

/* ==========================================
   Reszta stylów Stopki
   ========================================== */

.tft-footer-bottom__two {
    background-color: white;
    color: #171717;
    position: relative;
    z-index: 10; /* Nad dekoracją */
}

footer .tft-footer-bottom__two p,
footer .tft-footer-bottom__two a {
    color: inherit !important;
}

footer .wp-block-heading {
    font-size: 1.5rem !important;
}

footer .footer-text {
    padding: 1em 0;
}

footer .footer-logo-container {
    margin-bottom: 2em;
    padding-top: 40px; /* Dodane dla oddechu od góry */
}

.justify-c-center {
    justify-content: center !important;
}

/* Grid responsywny */
footer.tft-footer-design__two .tft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2em;
    align-items: start;
    padding-bottom: 40px;
}
footer .footer-contact-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
footer button {
    background-color: transparent;
    font-size: 1rem;
}
footer a {
    box-shadow: 0 1px 0 0 currentColor;
}
footer li a:hover {
    box-shadow: 0 1px 0 0 #8ea453;
    color:#8ea453 !important;
}
footer .footer-logo-container a {
    box-shadow: none;
}
footer .tft-footer-bottom__two p {
    padding-top: 0 !important;
}
footer .footer-contact-list > li:first-child {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
    align-items: flex-start;
}
@media (max-width: 768px) {
    footer .tft-footer-bottom__two .tft-flex {
        flex-direction: column;
        gap: 1em;
        padding-left: 8px;
        padding-right: 8px;
        justify-content: center;
    }
    footer .footer-contact-list {
        flex-direction: column;
        align-items: center;
    }
}
@media (min-width: 600px) and (max-width: 1024px) {
    footer.tft-footer-design__two .tft-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    footer.tft-footer-design__two .tft-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 599px) {
    footer.tft-footer-design__two .tft-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
        text-align: center;
    }
}

/* header - start */
/* ==========================================================================
   ZATOKA CUSTOM HEADER - KOMPLETNE STYLOWANIE
   ========================================================================== */
header {
    /* overflow: hidden; */
}
.zatoka-header-wrapper .tft-menus-section.tft-header-desktop {
    background: transparent;
    padding: 0.5em 0;
}

.zatoka-header-wrapper .ultimate-hotel-booking-container.header-row-normal {
    padding: 0;
}

.zatoka-header-wrapper .tft-logo.site--brand-logo {
    width: auto !important;
    max-width: 100%;
}
.zatoka-header-wrapper .tft-header-desktop {
    background-color: transparent;
}
/* --- 1. Fundamenty i Układ --- */
.zatoka-header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Kontener pomocniczy dla flexboxa */
.tft-container.tft-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --- 2. Top Bar (Pasek nad menu) --- */
.tft-top-header {
    background-color: var(--tf-primary) !important; /* Kolor z Twojego ACF */
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tft-top-header ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    align-items: center;
}

.tft-top-header li,
.tft-top-header a {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s;
}

.tft-top-header a:hover {
    opacity: 0.8;
}

/* Ikony w Top Barze */
.tft-top-header i {
    font-size: 15px;
    color: #ffffff !important;
}
@media (max-width: 768px) {
    .zatoka-header-wrapper .tft-top-header .tft-social-share {
        display: none;
    }
    .zatoka-header-wrapper .tft-top-header .ultimate-hotel-booking-container {
        padding-left: 6px;
        padding-right: 6px;
        justify-content: center;
    }
}
/* Przycisk Rezerwacji w Top Barze */
.header-book-btn a.btn-book {
    background: #ffffff !important;
    color: var(--tf-primary) !important;
    padding: 6px 18px !important;
    border-radius: 4px;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 11px !important;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-book-btn a.btn-book:hover {
    background: var(--tf-brand-dark) !important;
    color: #ffffff !important;
}

/* --- 3. Main Bar - Stan Normalny (Przezroczysty) --- */
.header-row-normal {
    padding: 8px 0;
    transition: all 0.3s ease;
}

.header-row-normal .main--header-menu {
    display: flex;
    list-style: none;
    /* gap: 35px; */
}

.header-row-normal .main--header-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
}

/* Efekt linii pod menu */
.main--header-menu li a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tf-primary);
    transition: width 0.3s ease;
}

.main--header-menu li a:hover::before {
    width: 100%;
}

/* Logo w widoku normalnym */
.header-row-normal .logo-transparent {
    max-height: 80px;
    width: auto;
}

/* --- 4. Main Bar - Stan STICKY (Biały po skrolowaniu) --- */
.header-row-sticky {
    position: fixed;
    top: -120px; /* Schowany na starcie */
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--tf-primary);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Aktywacja Sticky przez klasę z JS */
body.is-sticky .header-row-sticky {
    top: 0;
    visibility: visible;
    opacity: 1;
}

/* Ukrycie normalnego rzędu po przewinięciu */
body.is-sticky .header-row-normal {
    opacity: 0;
    pointer-events: none;
}

/* Kolory menu w Sticky */
.header-row-sticky .main--header-menu li a {
    color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
}

.header-row-sticky .main--header-menu li a:hover {
    color: var(--tf-primary);
}

/* Logo w Sticky (Ciemne) */
.header-row-sticky .logo-default {
    max-height: 55px;
    width: auto;
}

/* --- 5. Responsywność (Mobile) --- */
@media (max-width: 991px) {
    .tft-header-desktop {
        display: none !important;
    }

    .header-mobile-wrapper {
        padding: 15px 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10000;
        transition: background 0.3s ease;
    }

    /* Transparentny mobile na starcie */
    .header-mobile-wrapper .logo-default {
        display: none !important;
    }
    .header-mobile-wrapper .logo-transparent {
        display: block !important;
        max-height: 50px;
    }
    .tft-mobile_menubar i {
        color: #ffffff;
        font-size: 24px;
    }

    /* Biały mobile po skrolowaniu */
    body.is-sticky .header-mobile-wrapper {
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    body.is-sticky .header-mobile-wrapper .logo-transparent {
        display: none !important;
    }
    body.is-sticky .header-mobile-wrapper .logo-default {
        display: block !important;
        max-height: 45px;
    }
    body.is-sticky .tft-mobile_menubar i {
        color: #1a1a1a;
    }

    /* Menu rozwijane mobilne */
    .tft-mobile-main-menu {
        position: fixed;
        /* top: 70px; Wysokość mobile headera */
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #eee;
    }

    .tft-mobile-main-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .tft-mobile-main-menu ul li a {
        display: block;
        padding: 12px 0;
        color: #1a1a1a;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid #f5f5f5;
    }
}
/* header - end */

/* ==========================================================================
   ANIMACJA PRZEJŚCIA MIĘDZY NAGŁÓWKAMI (NORMAL -> STICKY)
   ========================================================================== */

/* --- 1. NAGŁÓWEK NORMALNY (Ten na górze strony) --- */
.header-row-normal {
    /* Płynność dla przezroczystości i ruchu */
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s;
    will-change: transform, opacity;
    transform: translateY(0);
}

/* Stan, gdy skrolujemy w dół (Ukrywanie normalnego) */
body.is-sticky .header-row-normal {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* Dodajemy lekki ruch w górę przy znikaniu */
    transform: translateY(-20px);
}

/* --- 2. NAGŁÓWEK STICKY (Ten wysuwany po skrollu) --- */
.header-row-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: #ffffff;

    /* Startowa pozycja: Schowany całkowicie nad ekranem */
    transform: translateY(-100%);
    visibility: hidden;
    opacity: 0;

    /* Wyraźna animacja wysuwania */
    transition:
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease,
        visibility 0.5s;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid var(--tf-primary);
}

/* Stan aktywny (Gdy skrypt JS doda klasę) */
body.is-sticky .header-row-sticky {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

/* --- 3. TOP BAR (Pasek z telefonem) --- */
/* Jeśli chcesz, aby Top Bar też znikał płynnie wraz z menu normalnym */
.tft-top-header {
    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
}

body.is-sticky .tft-top-header {
    transform: translateY(-100%);
    opacity: 0;
}

/* --- 4. ANIMACJA WEJŚCIA ELEMENTÓW W STICKY (Opcjonalnie) --- */
/* Sprawia, że po wysunięciu paska, menu wewnątrz niego "wypływa" */
body.is-sticky .header-row-sticky .main--header-menu {
    animation: stickyMenuFadeIn 0.6s forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

@keyframes stickyMenuFadeIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.zatoka-header-wrapper .ultimate-hotel-booking-container .tft-menu {
    width: 100%;
    max-width: 100% !important;
    justify-content: flex-end;
}
.tft-header-design__two.zatoka-header-wrapper .tft-menus-section .tft-flex .tft-menu ul.sub-menu {
    background-color: white;
}
.tft-header-design__two.zatoka-header-wrapper .tft-menus-section .tft-flex .tft-menu ul.sub-menu a {
    color: #171717 !important;
}
/* .tft-header-design__two.zatoka-header-wrapper  .tft-site-navigation ul li a{
    color:white  !important;
} */

.tft-header-design__two.zatoka-header-wrapper .tft-site-navigation ul li a:hover {
    color: hsl(76 33% 64% / 1) !important;
}
.tft-header-design__two.zatoka-header-wrapper
    li.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children:after {
    left: 0;
}
.header-row-sticky a {
    position: relative;
}

/* --- FIX PRZEWIJANIA MENU MOBILNEGO --- */
@media (max-width: 991px) {
    .tft-header-mobile {
        display: block !important;
    }

    .header-mobile-wrapper {
        /* position: fixed; */
        width: 100%;
        top: 0;
        z-index: 10001;
        transition: background 0.3s ease;
    }

    /* Rozwijany panel menu */
    .tft-mobile-main-menu {
        display: none; /* Sterowane przez JS */
        position: fixed;
        /* top: 60px; Wysokość belki */
        left: 0;
        width: 100%;
        height: calc(100vh - 60px); /* Pełna wysokość ekranu minus belka */
        background: #ffffff;
        z-index: 9999;
        overflow-y: auto; /* KLUCZOWE: Włącza przewijanie menu */
        -webkit-overflow-scrolling: touch;
        padding-bottom: 50px;
    }

    /* Pokazywanie menu (wymaga skryptu toggle) */
    .tft-mobile-main-menu.is-active {
        display: block !important;
    }

    /* Top Bar wewnątrz menu mobilnego */
    .mobile-top-bar {
        background: var(--tf-primary);
        padding: 15px;
    }
    .mobile-top-bar ul {
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .mobile-top-bar li,
    .mobile-top-bar a {
        color: #fff !important;
        font-size: 14px;
        text-decoration: none;
    }

    .mobile-menu-inner .tft-site-navigation ul li a {
        color: #171717 !important;
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
        display: block;
        font-size: 16px;
        font-weight: 600;
    }

    .mobile-socials {
        padding: 20px;
        text-align: center;
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .mobile-socials i {
        font-size: 20px;
        color: var(--tf-primary);
    }
}

/* --- FIX DLA STICKY ANIMACJI --- */
body.is-sticky .header-row-sticky {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

body.is-sticky .header-row-normal {
    opacity: 0;
    transform: translateY(-20px);
}
.ultimate-hotel-booking-container.header-mobile-wrapper {
    width: 100% !important;
    background: white;
    position: relative;
}
.tft-menus-section.tft-header-desktop {
    padding-top: 0 !important; box-shadow: 0;
}
.tft-menus-section.tft-header-desktop .header-row-normal{ 
backdrop-filter: blur(10px);
}
@media only screen and (max-width: 767.98px) {
    .tft-header-design__two .tft-top-header {
        display: block !important;
    }
}

@media (max-width: 991px) {
    .tft-header-mobile nav.tft-site-navigation {

        background: transparent !important;
  
    }
    .ultimate-hotel-booking-container.header-mobile-wrapper .tft-container{
        padding-left: 8px;
        padding-right: 8px;
    }
    .form-field.full-width p, .form-field.full-width label{
        height:auto
    }
}


.wpcf7{margin-top:20px}.wpcf7 form{display:-ms-grid;display:grid;gap:20px}.wpcf7 form label{font-weight:600;font-size:18px!important;color:#494d59;display:block;margin-bottom:6px}.wpcf7 input[type="text"],.wpcf7 input[type="email"],.wpcf7 input[type="tel"],.wpcf7 textarea{width:100%;padding:14px 16px;border:1px solid #e5e5e5;border-radius:6px;font-size:15px;background:#f9f9f9;-webkit-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}.wpcf7 input:focus,.wpcf7 textarea:focus{border-color:var(--tf-primary);background:#fff;-webkit-box-shadow:0 0 0 3px rgb(142 164 83 / .15);box-shadow:0 0 0 3px rgb(142 164 83 / .15);outline:none}.wpcf7 textarea{min-height:140px;resize:vertical}.f-req{color:var(--tf-primary);margin-left:4px}.wpcf7 input[type="submit"]{background:var(--tf-primary)!important;color:#fff;border:none;font-size:14px;font-weight:700;text-transform:uppercase;letter-spacing:1px;cursor:pointer;-webkit-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease;width:auto;display:inline-block;padding:1em 2em 1em 2em;border-radius:30px 30px 30px 30px}.wpcf7 input[type="submit"]:hover{background:#171717;-webkit-transform:translateY(-2px);-ms-transform:translateY(-2px);transform:translateY(-2px)}.wpcf7-response-output{border-radius:6px;padding:12px 16px;font-size:14px}.wpcf7 form.invalid .wpcf7-response-output{background:#ffeaea;border:1px solid #ffb3b3;color:#a10000}.wpcf7 form.sent .wpcf7-response-output{background:#e8f5e9;border:1px solid #8bc34a;color:#2e7d32}label{font-size:var(--e-global-typography-accent-font-size)!important;font-weight:var(--e-global-typography-accent-font-weight)!important;line-height:var(--e-global-typography-accent-line-height)!important}textarea.wpcf7-form-control.wpcf7-textarea{height:100%;width:100%;max-width:100%;background:#f6f8f1}.form-grid{display:-ms-grid;display:grid;gap:20px}@media (min-width:992px){.form-grid{-ms-grid-columns:1fr 1fr;grid-template-columns:1fr 1fr;-ms-grid-rows:auto auto auto auto;grid-template-rows:auto auto auto auto}.form-grid>*:nth-child(1){-ms-grid-row:1;-ms-grid-column:1}.form-grid>*:nth-child(2){-ms-grid-row:1;-ms-grid-column:2}.form-grid>*:nth-child(3){-ms-grid-row:2;-ms-grid-column:1}.form-grid>*:nth-child(4){-ms-grid-row:2;-ms-grid-column:2}.form-grid>*:nth-child(5){-ms-grid-row:3;-ms-grid-column:1}.form-grid>*:nth-child(6){-ms-grid-row:3;-ms-grid-column:2}.form-grid>*:nth-child(7){-ms-grid-row:4;-ms-grid-column:1}.form-grid>*:nth-child(8){-ms-grid-row:4;-ms-grid-column:2}.form-field.full-width{-ms-grid-column:2;grid-column:2;-ms-grid-row:1;-ms-grid-row-span:4;grid-row:1 / span 4}}@media (max-width:991px){.form-grid{-ms-grid-columns:1fr;grid-template-columns:1fr}.form-field.full-width{grid-column:auto;grid-row:auto}}@media (min-width:992px){.contact-form-custom textarea{height:100%;min-height:100%}.form-field.full-width textarea{height:100%}}.form-field.full-width p,.form-field.full-width label{height:100%}
