/* Site footer */
.gt-site-footer {
    position: relative;
    overflow: hidden;
    margin-top: auto;
    background: var(--gt-dark, #001715);
    color: #fff;
}

.gt-site-footer::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -220px;
    top: 160px;
    border: 1px solid rgba(51, 204, 51, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(51, 204, 51, 0.025),
        0 0 0 140px rgba(51, 204, 51, 0.018);
    pointer-events: none;
}

.gt-footer-cta,
.gt-footer-main,
.gt-footer-newsletter,
.gt-footer-social,
.gt-footer-bottom {
    position: relative;
    z-index: 1;
}

.gt-footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 42px;
    padding: 48px clamp(28px, 5vw, 72px);
    background: var(--gt-green, #33cc33);
    color: #000;
}

.gt-footer-cta__content {
    width: 70%;
    max-width: none;
}

.gt-footer-cta h2 {
    margin: 0 0 10px;
    color: #000;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.gt-footer-cta p {
    max-width: none;
    margin: 0;
    color: #000;
    font-size: clamp(19px, 1.4vw, 22px);
    line-height: 1.55;
}

.gt-footer-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-width: 190px;
    min-height: 58px;
    padding: 0 24px 0 28px;
    border: 2px solid #000;
    border-radius: 999px;
    color: #000;
    font-weight: 800;
    text-decoration: none;
}

.gt-footer-cta__button span:last-child {
    display: inline-block;
    font-size: 22px;
    transition: transform 0.22s var(--ease-snappy-polished);
}

.gt-footer-cta__button:hover,
.gt-footer-cta__button:focus-visible {
    background: #000;
    color: #fff;
}

.gt-footer-cta__button:hover span:last-child,
.gt-footer-cta__button:focus-visible span:last-child {
    transform: translateX(25%);
}

.gt-footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) minmax(360px, 1.45fr) minmax(220px, 0.8fr);
    gap: clamp(36px, 5vw, 80px);
    padding: 72px clamp(28px, 5vw, 72px) 58px;
}

.gt-footer-brand__logo {
    max-width: 230px;
    margin-bottom: 28px;
}

.gt-footer-brand__logo .custom-logo-link,
.gt-footer-brand__logo .gt-logo {
    display: block;
    padding: 0;
}

.gt-footer-brand__logo .custom-logo {
    display: block;
    width: 100%;
    height: auto;
}

.gt-footer-brand__logo .gt-logo__text {
    color: #fff;
}

.gt-footer-brand > p {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.7;
}

.gt-footer-registration {
    display: grid;
    gap: 8px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.gt-footer-registration div {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gt-footer-registration dt,
.gt-footer-registration dd {
    margin: 0;
}

.gt-footer-registration dt::after {
    content: ":";
}

.gt-footer-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
}

.gt-footer-menu__title,
.gt-footer-contact h2,
.gt-footer-newsletter__title {
    margin: 0 0 22px;
    color: var(--gt-green, #33cc33);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gt-footer-menu__list,
.gt-footer-contact ul,
.gt-footer-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gt-footer-menu__list,
.gt-footer-contact ul {
    display: grid;
    gap: 13px;
}

.gt-footer-menu__list a,
.gt-footer-contact a {
    display: inline-flex;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    text-decoration: none;
}

.gt-footer-menu__list a:hover,
.gt-footer-menu__list a:focus-visible,
.gt-footer-contact a:hover,
.gt-footer-contact a:focus-visible,
.gt-footer-bottom .gt-footer-menu__list a:hover,
.gt-footer-bottom .gt-footer-menu__list a:focus-visible {
    color: var(--gt-green, #33cc33);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.24em;
}

.gt-footer-newsletter {
    margin: 0 clamp(28px, 5vw, 72px);
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gt-footer-newsletter form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gt-footer-newsletter input:not([type="submit"]),
.gt-footer-newsletter select,
.gt-footer-newsletter textarea {
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 0 18px;
}

.gt-footer-newsletter input[type="submit"],
.gt-footer-newsletter button[type="submit"] {
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    background: var(--gt-green, #33cc33);
    color: #000;
    font-weight: 800;
    padding: 0 24px;
    cursor: pointer;
}

.gt-footer-social {
    padding: 0 clamp(28px, 5vw, 72px) 34px;
}

.gt-footer-social ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gt-footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.gt-footer-social a:hover,
.gt-footer-social a:focus-visible {
    border-color: var(--gt-green, #33cc33);
    background: rgba(51, 204, 51, 0.08);
    color: var(--gt-green, #33cc33);
}

.gt-footer-bottom {
    display: flex;
    /*align-items: center;
    justify-content: space-between;*/
    gap: 20px;
    padding: 28px clamp(28px, 5vw, 72px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    align-items: flex-start;
    flex-direction: column;
}

.gt-footer-copyright {
    margin: 0;
}

.gt-footer-bottom .gt-footer-menu {
    display: flex;
    align-items: center;
}

.gt-footer-bottom .gt-footer-menu__title {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.gt-footer-bottom .gt-footer-menu__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 22px;
}

.gt-footer-bottom .gt-footer-menu__list a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 1250px) {
    .gt-footer-cta__content {
        width: 100%;
    }
    
    .gt-footer-brand > p {
  max-width: 100%;
}

    .gt-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .gt-footer-brand {
        grid-column: 1 / -1;
    }
.gt-footer-cta p {
    font-size: 16px;
    line-height: 1.45;
}
}

@media (max-width: 720px) {
    .gt-footer-cta {
        grid-template-columns: 1fr;
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .gt-footer-cta__button {
        width: fit-content;
    }

    .gt-footer-main {
        grid-template-columns: 1fr;
        padding-top: 52px;
    }

    .gt-footer-brand,
    .gt-footer-navigation,
    .gt-footer-contact {
        grid-column: auto;
    }

    .gt-footer-navigation {
        grid-template-columns: 1fr 1fr;
    }

    .gt-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .gt-footer-bottom .gt-footer-menu__list {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .gt-footer-navigation {
        grid-template-columns: 1fr;
    }
}

