@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

.uw-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(18, 50, 74, .09);
    font-family: 'DM Sans', Arial, sans-serif
}

.uw-site-header *,
.uw-site-footer * {
    box-sizing: border-box
}

.uw-site-header a,
.uw-site-footer a {
    text-decoration: none
}

.uw-site-header-inner {
    max-width: 1280px;
    margin: auto;
    padding: 14px 20px;
    min-height: 72px;
    display: flex;
    align-items: center;
	justify-content:space-between;
    gap: 20px
}

.uw-site-brand,
.uw-site-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #12324a
}

.uw-site-brand img,
.uw-site-footer-brand img {
    width: 200px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px
}

.uw-site-brand>span,
.uw-site-footer-brand>span {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.uw-site-brand strong,
.uw-site-footer-brand strong {
    font-size: 19px;
    letter-spacing: -.02em
}

.uw-site-brand small,
.uw-site-footer-brand small {
    font-size: 8.5px;
    letter-spacing: .19em;
    margin-top: 4px;
    color: #6c7a85
}

.uw-site-desktop-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 4px
}

.uw-site-desktop-nav a {
    font-size: 14px;
    font-weight: 500;
    color: #3d4a54;
    padding: 9px 9px;
    border-radius: 8px
}

.uw-site-desktop-nav a:hover {
    background: #f2f6f8;
    color: #12324a
}

.uw-site-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.uw-site-outline,
.uw-site-primary {
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 999px;
    padding: 10px 16px
}

.uw-site-outline {
    color: #12324a;
    border: 1px solid rgba(18, 50, 74, .18)
}

.uw-site-primary {
    color: #fff;
    background: #12324a;
    padding: 11px 18px;
    box-shadow: 0 6px 18px rgba(18, 50, 74, .18)
}

.uw-site-menu-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(18, 50, 74, .14);
    border-radius: 10px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px
}

.uw-site-menu-toggle span {
    width: 17px;
    height: 1.6px;
    background: #12324a
}

.uw-site-mobile-nav {
    display: none;
    padding: 8px 20px 22px;
    border-top: 1px solid rgba(18, 50, 74, .08)
}

.uw-site-mobile-nav.open {
    display: grid
}

.uw-site-mobile-nav a {
    font: 500 16px 'DM Sans', sans-serif;
    color: #12324a;
    padding: 12px 0;
    border-bottom: 1px solid rgba(18, 50, 74, .06)
}

.uw-site-footer {
    background: #0c2338;
    color: rgba(255, 255, 255, .72);
    font-family: 'DM Sans', Arial, sans-serif;
    padding: 68px 20px 0
}

.uw-site-footer-grid {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 55px
}

.uw-site-footer-grid>div {
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-size: 13.5px;
    line-height: 1.5
}

.uw-site-footer-brand {
    color: #fff;
    margin-bottom: 10px
}

.uw-site-footer-brand small {
    color: #8fc1d8
}

.uw-site-footer-grid h3 {
    font-size: 10.5px;
    letter-spacing: .16em;
    color: #8fc1d8;
    margin: 0 0 7px
}

.uw-site-footer-grid a {
    color: rgba(255, 255, 255, .76)
}

.uw-site-footer-grid a:hover {
    color: #fff
}

.uw-site-footer-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    line-height: 1.65
}

.uw-site-footer-bottom {
    max-width: 1280px;
    margin: 45px auto 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 20px 0 28px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .55)
}

.uw-site-footer-bottom div {
    display: flex;
    gap: 20px
}

.uw-site-footer-bottom a {
    color: rgba(255, 255, 255, .62)
}

@media(max-width:1100px) {

    .uw-site-desktop-nav,
    .uw-site-actions .uw-site-primary {
        display: none
    }

    .uw-site-menu-toggle {
        display: flex
    }

    .uw-site-actions {
        margin-left: auto
    }

    .uw-site-header-inner {
        gap: 10px
    }
}

@media(max-width:760px) {
    .uw-site-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 42px 26px
    }

    .uw-site-footer-bottom {
        flex-direction: column
    }

    .uw-site-footer-bottom div {
        flex-wrap: wrap
    }

    .uw-site-footer {
        padding-top: 52px
    }
}

@media(max-width:520px) {
    .uw-site-actions {
        display: none
    }

    .uw-site-footer-grid {
        grid-template-columns: 1fr
    }

    .uw-site-header-inner {
        padding: 10px 16px
    }

    .uw-site-footer {
        padding-left: 18px;
        padding-right: 18px
    }
}