/* stylelint-disable */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
*,
*:before,
*:after {
    box-sizing: inherit;
}

/* BODY */
body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #10141C;
    background-color: #F2F2F2;
    margin: 0;
}

input {
    font-family: "Poppins", sans-serif;
}

.grid {
    display: grid;
}

.grid .cols-7 {
    overflow: hidden;
}

@media screen and (max-width: 640px) {
    body:has(.forum-wrapper) {
        padding: 96px 0 0;
    }
    .grid.cols-7 {
        grid-template-columns: 16px 1fr 16px;
    }
    .grid.cols-7 > *:not(.is--full-page-width, .is--full-site-width) {
        grid-column: 2;
    }
}
@media screen and (min-width: 640px) {
    body:has(.forum-wrapper) {
        padding: 136px 0 0;
    }
    .grid.cols-7 {
        grid-template-columns: 32px 1fr calc((100% - (32px * 2)) * (752/1140)) 1fr 32px;
    }
}
@media screen and (min-width: 1024px) {
    body:has(.forum-wrapper) {
        padding: 152px 0 0;
    }

    .grid.cols-7 {
        grid-template-columns: 88px 1fr calc((100% - (88px * 2)) * (752/1140)) 1fr 88px;
    }
}

/* END BODY */

/* BACKGROUND BRANDING */

.background-branding {
    position: absolute;
    z-index: -1;
    background-image: url('img/circles.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    top: 0;
    left: 0;
}
@media screen and (max-width: 640px) {
    .background-branding {
        height: 547px;
        width: 547px;
        translate: -42.7% -41%;
        background-size: 547px 547px;
    }
}
@media screen and (min-width: 640px) and (max-width: 1024px) {
    .background-branding {
        height: 730px;
        width: 730px;
        translate: -41.3% -40%;
        background-size: 100% 100%;
    }
}
@media screen and (min-width: 1024px) {
    .background-branding {
        height: 730px;
        width: 730px;
        translate: -37.5% -39%;
    }
}

/* END BACKGROUND BRANDING */

/* HEADER */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 100;
}

.top-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px
}

.top-bar-menu-button,
.top-bar-logo-button, .close-menu {
    background: linear-gradient(155.93deg,#04ddcf,#0f84a4 97.26%);
    padding: 8px;
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 16px -4px #20bec799, inset 0 -1px #6fb9c5;
    outline: none;
    border: 0;
    transition: box-shadow 250ms ease;
}
.top-bar-logo-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border: 5px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.search-header {
    width: 100%;
    position: relative;
    height: 32px;
}
.search-header-form {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
}
.search-header-input-wrapper {
    height: 100%;
    width: 100%;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
}

.search-header-text-input {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    border: 0;
    border-radius: 32px !important;
    box-shadow: 0px 4px 16px 0px rgba(16, 24, 40, 0.04),
    0px -1px 0px 0px rgba(16, 24, 40, 0.12) inset;
    transition: box-shadow 250ms ease, padding 250ms ease;
    text-overflow: ellipsis;
}
.search-header-text-input::placeholder {
    color: #A9B5CD;
}
.search-header-text-input:hover {
    box-shadow: 0px 4px 24px 0px rgba(16, 24, 40, 0.16),
    0px -1px 0px 0px rgba(16, 24, 40, 0.2) inset ;
}
.search-header-text-input:focus-visible,
.search-header-text-input:focus {
    outline: 1px solid #8C89FF;
    border-radius: 32px;
    box-shadow:  0px 4px 24px 0px rgba(16, 24, 40, 0.16),
    0px -1px 0px 0px rgba(16, 24, 40, 0.2) inset, 0px 0px 0px 4px rgba(209, 208, 255, 0.5);
}

.search-header-search-icon {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    cursor: pointer;
    transform: scaleX(-1);
    color: #A9B5CD;
    z-index: 1;
}

.search-header-submit {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    cursor: pointer;
    translate: 0 -50%;
    padding: 0;
    margin: 0;
    height: 100%;
    width: auto;
    background: none;
    outline: none;
    border: 0;
}

.search-header-submit:after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    outline: 2px solid #A9B5CD;
    border-radius: 50%;
}

.search-header-submit:focus-visible::after {
    content: '';
}

.search-header-submit-icon {
    color: #4340B3;
    display: block;
}

.top-bar-menu-button, .close-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    border: 0;
}

.top-bar-menu-button-icon{
    display: block;
}

@media screen and (max-width: 640px) {
    .top-bar {
        padding: 24px 16px;
    }
    .top-bar-menu-button,
    .top-bar-logo-button, .close-menu {
        height: 48px;
        width: 48px;
    }
    .search-header-input-wrapper {
        height: 32px;
    }
    .search-header-text-input {
        height: 32px;
        padding:  8px 40px 8px 40px!important;
    }
    .search-header-search-icon {
        left: 12px;
        height: 20px;
        width: 20px;
    }
    .search-header-submit {
        right: 12px;
        height: 24px;
        width: 24px;
    }
    .search-header-submit-icon {
        height: 20px;
        width: 20px;
    }
    .top-bar-menu-button-icon {
        height: 24px;
        width: 24px;
    }
}
@media screen and (min-width: 640px) {
    .top-bar {
        padding:40px 32px 32px 32px;
    }
    .top-bar-menu-button,
    .top-bar-logo-button, .close-menu {
        height: 64px;
        width: 64px;
    }
    .search-header {
        max-width: calc((100vw - 176px) * 0.6596491228);
        height: 48px;
    }
    .search-header-input-wrapper {
        height: 48px;
    }
    .search-header-text-input {
        height: 48px;
        padding: 0 60px 0 60px;
    }
    .search-header-search-icon {
        left: 24px;
        height: 24px;
        width: 24px;
    }
    .search-header-submit {
        right: 20px;
        height: 28px;
        width: 28px;
    }
    .search-header-submit-icon {
        height: 24px;
        width: 24px;
    }

    .top-bar-menu-button-icon {
        height: 32px;
        width: 32px;
    }
}
@media screen and (min-width: 1024px) {
    .top-bar {
        padding: 48px 60px 40px 60px
    }
    .search-header {
        max-width: calc((100vw - (88px* 2)) * ( 752 / 1140 ));
    }
    .search-header-submit {
        right: 24px;
    }
}
@media screen and (min-width: 1316px) {
    .top-bar {
        padding: 48px 60px;
    }
    .search-header {
        max-width: 752px;
        margin-top: 12px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .top-bar-logo-button:hover, .top-bar-logo-button:focus-visible {
        box-shadow: 0 10px 20px -2px #20bec799, inset 0 -1px #6fb9c5;
    }
    .top-bar-logo-button:hover::after, .top-bar-logo-button:focus-visible::after {
        opacity: 1;
        animation: sonar 1.5s infinite;
    }

    .top-bar-menu-button:hover, .close-menu:hover {
        box-shadow: 0 10px 20px -2px #20bec799, inset 0 -1px #6fb9c5;
    }

    .top-bar-logo-button:focus-visible, .top-bar-menu-button:focus-visible, .close-menu:focus-visible {
        box-shadow: 0 0 0 4px rgba(82, 203, 217, 0.7), 0 6px 12px -6px rgba(32, 190, 199, 0.6), 0 -1px 0 0 #6FB9C5 inset !important;
    }
}

@keyframes sonar {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
/* END HEADER */

/* NAVIGATION */

.overlay-menu {
    position: fixed;
    display: flex;
    justify-content: center;
    top: 0;
    bottom:0;
    overflow: auto;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.2s linear;
    padding: 0 40px;
}
.overlay-menu ul {
    margin: 0;
}

.overlay-menu.is--visible {
    opacity: 1;
    pointer-events: all;
}
.overlay-menu.is--visible .overlay-menu-backdrop {
    touch-action: auto;
    pointer-events: all;
    opacity: 1;
}

.overlay-menu-backdrop {
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    opacity: 0;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(22, 21, 31, 0.8);
    backdrop-filter: blur(16px);
    overflow: auto;
    overflow-x: hidden;
    touch-action: none;
    pointer-events: none;
    transition: opacity 0.2s linear;
}

.close-menu {
    position: absolute;
    cursor: pointer;
    right: 40px;
    top: 40px;
    color: #fff;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu {
    position: relative;
    height: 100%;
    display: flex;
    gap: 30px;
    max-width: 752px;
    margin: 0 auto;
    width: 100%;
    scroll-behavior: smooth;
    flex-direction: column;
}

.menu-navigation {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.menu-navigation-items {
    padding: 8px;
    width: 100%;
}

.menu-themes {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.menu-themes-items {
    padding: 8px;
    width: 100%;
}

.menu-navigation-item,
.menu-themes-item {
    display: inline;
}

.menu-item-button {
    display: flex;
    font-weight: 600;
    align-items: center;
    color: #10141c!important;
    text-decoration: none;
    transition:
            color 200ms ease-in-out,
            background-color 150ms ease-in-out,
            box-shadow 150ms ease-in-out;
    background-color: transparent;
    border-radius: 12px;
    gap: 8px;
    justify-content: space-between;
}

@media screen and (min-width: 1024px) {
    .menu-item-button {
        border-radius: 38px;
    }
}

.menu-item-button-label {
    display: inline-block;
    flex-grow: 1;
}

.menu-item-button .menu-button-theme-icon {
    height: 24px;
    width: 24px;
}

.menu-item-button .menu-button-arrow-icon {
    height: 24px;
    width: 24px;
    opacity: 0;
    translate: -50% 0;
    transition:
            opacity 200ms ease,
            translate 200ms ease;
}

.menu-item-button.is--active {
    color: #4340b3!important;
    pointer-events: none;
}

.menu-themes-title {
    text-transform: uppercase;
    margin: 0;
}

.menu-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    height: 48px;
    width: 48px;
    position: relative;
    border-radius: 50%;
    display: initial;
    transition: box-shadow 250ms ease;
}

.social-icon::after {
    content: "";
    border: 4px solid transparent;
    border-radius: 50%;
    display: block;
    position: absolute;
    top:-4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    transition: border 250ms ease;
}

.social-icon-icon {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 640px) {
    .menu {
        margin: 96px 0 40px;
    }

    .close-menu {
        width: 48px;
        height: 48px;
        top: 24px;
        right: 16px;
    }

    .close-menu .close-menu-icon {
        height: 24px;
        width: 24px;
    }

    .menu-themes-items,
    .menu-navigation-items {
        background-color: #fff;
        border-radius: 16px;
        box-shadow: 0 16px 36px 0 rgba(0, 0, 0, 0.16);
        padding: 8px;
    }
    .menu-item-button {
        font-size: 14px;
        padding: 12px 8px;
    }
    .menu-themes-title {
        font-size: 12px;
        font-weight: 500;
        color: #f2f4f8;
        padding: 0 16px 8px 16px;
    }

    .menu-socials {
        justify-content: center;
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 640px) {
    .menu {
        margin: 160px 0;
    }

    .close-menu {
        width: 64px;
        height: 64px;
        top: 40px;
        right: 32px;
    }

    .close-menu-icon {
        height: 32px;
        width: 32px;
    }

    .menu-themes-items,
    .menu-navigation-items {
        background-color: #fff;
        border-radius: 16px;
        box-shadow: 0 16px 36px 0 rgba(0, 0, 0, 0.16);
        padding: 8px;
    }
    .menu-item-button {
        font-size: 16px;
        padding: 12px 8px;
    }
    .menu-themes-title {
        font-size: 17px;
        font-weight: 500;
        color: #f2f4f8;
        padding: 0 16px 8px 16px;
    }

    .menu-socials {
        justify-content: center;
    }
}

@media screen and (min-width: 1024px) {
    .menu {
        margin: 160px 0;
        align-self: flex-start;
        height: auto;
    }

    .close-menu {
        width: 64px;
        height: 64px;
        top: 48px;
        right: 60px;
    }

    .close-menu .close-menu-icon {
        height: 32px;
        width: 32px;
    }

    .menu {
        background-color: #fff;
        border-radius: 16px;
        box-shadow: 0 16px 36px 0 rgba(0, 0, 0, 0.16);
        padding: 32px 24px;
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(2, auto);
        grid-column-gap: 48px;
        grid-row-gap: 0;
    }

    .menu-themes-items,
    .menu-navigation-items {
        padding: 0;
        box-shadow: none;
    }

    .menu-item-button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .menu-item-button:hover {
        color: #4340b3!important;
        background-color: #e7e7f8;
        box-shadow:
                0 6px 12px -6px rgba(183, 174, 240, 0.8),
                0 -1px 0 0 #cecef8 inset;
    }

    .menu-item-button:hover .menu-button-arrow-icon {
        opacity: 1;
        translate: 0 0;
    }

    .menu-item-button.is--large {
        padding: 12px 28px;
    }

    .menu-navigation {
        grid-area: 1 / 1 / 2 / 2;
    }

    .menu-themes {
        grid-area: 1 / 2 / 3 / 3;
    }

    .menu-themes::before {
        content: "";
        position: absolute;
        top: -32px;
        left: calc(0px - (42px / 2));
        bottom: -32px;
        width: 2px;
        background-color: #e9ecf3;
    }

    .menu-themes-title {
        font-size: 18px;
        font-weight: 600;
        color: #7986a0;
        padding: 13px 24px 6px 24px;
    }

    .menu-socials {
        align-self: flex-end;
        padding: 0 24px;
        grid-area: 2 / 1 / 3 / 2;
    }
}

@media (hover: hover) and (pointer: fine) {
    .social-icon:hover {
        box-shadow: 0 10px 20px -2px rgba(16, 24, 40, 0.14), 0 -1px 0 0 rgba(16, 24, 40, 0.16) inset;

    }
    .social-icon:hover::after {
        border: 2px solid #A9B5CD;
        transition: border 250ms ease;
    }

    .social-icon:focus, .social-icon:focus-visible {
        outline: none;
    }

    .social-icon:focus::after, .social-icon:focus-visible::after {
        content: '';
        border: 2px solid #A9B5CD;
    }
}

/* END NAVIGATION */

/* FORUM SUB NAVIGATION */

.forum-sub-menu {
    max-width: 1140px;
    width: 100%;
    margin: 30px auto;
    display: flex;

    flex-wrap: wrap;
    gap: 12px;
    padding: 0 24px;
}

.forum-sub-menu-link {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 250ms ease;
    color: #10141C!important;
}
.forum-sub-menu-link:hover {
    color: #2E2B8E!important;
}

@media screen and (max-width: 640px) {
    .forum-sub-menu-link {
        width: calc(50% - 12px);
    }
}

@media screen and (min-width: 640px) {
    .forum-sub-menu {
        justify-content: center;
        gap: 16px;
    }
    .forum-sub-menu-link {
        font-size: 16px;
    }
}

/* END FORUM SUB NAVIGATION */


/* FORUM WRAPPER */

.forum-wrapper {
    grid-column: 2/5;
    background-color: #fff;
    border-radius: 16px;
    padding: 8px;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 8px 16px -4px #10182814, inset 0 -1px #1018281f;
    min-height: 40vh;
}

@media screen and (max-width: 640px) {
    .forum-wrapper {
        margin-bottom: 30px;
    }
}
@media screen and (min-width: 640px) {
    .forum-wrapper {
        margin-bottom: 40px;
    }
}

/* END FORUM WRAPPER */

/* FOOTER */

.footer-menu {
    padding: 0 16px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.footer-link {
    font-weight: 600;
    text-decoration: none;
    transition: color 250ms ease;
}

.footer-link.is--dark {
    color: #10141C!important;
}
.footer-link.is--dark:hover {
    color: #2E2B8E!important;
}

.footer-link.is--light {
    color: #7986A0!important;
}
.footer-link.is--light:hover {
    color: #444D5E!important;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #181568;
}

.footer-logo {
    height: 100%;
    width: 100%;
    min-width: 1px;
}
.footer-logo svg {
    height: 100%;
    width: 100%;
}

.footer-logo-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

@media screen and (max-width: 640px) {
    .footer-links {
        gap: 12px;
        padding: 12px  0;
    }
    .footer-link {
        font-size: 13px;
        min-width: calc(50% - 12px);
        flex: 1 0 0
    }
    .footer-socials {
        gap: 12px;
        margin: 12px 0 24px 0;
    }

    .footer-socials .social-icon,
    .footer-socials svg {
        max-width: 40px;
    }
    .footer-logo-wrapper {
        padding: 24px 16px;
        height: 90px;
        gap: 16px;
    }
    .footer-logo.at-logo {
        max-height: 42px;
        max-width: 56px;
    }
    .footer-logo.npo-logo {
        max-height: 36px;
        max-width: 52px;
    }
}

@media screen and (min-width: 640px) {
    .footer-link {
        font-size: 14px;
    }
    .footer-links {
        gap: 16px;
        padding: 12px  0;
    }
    .footer-socials {
        gap: 16px;
        margin: 16px 0 24px 0;
    }
    .footer-logo-wrapper {
        padding: 32px 24px;
        height: 125px;
        gap: 24px;
    }
    .footer-logo.at-logo {
        max-height: 62px;
        max-width: 82px;
    }
    .footer-logo.npo-logo {
        max-height: 56px;
        max-width: 82px;
    }
}
@media screen and (min-width: 640px) and (max-width: 1024px) {
    .footer-menu {
        padding: 0 116px;
    }
    .footer-link {
        font-size: 16px;
    }
}

@media screen and (min-width: 1024px) {
    .footer-links {
        padding: 16px  0;
    }
    .footer-link {
        font-size: 16px;
    }
    .footer-socials {
        margin: 24px 0 48px 0;
    }
}

/* END FOOTER */

/* MISCELLANEOUS */

.button-social.x-twitter {
    color: #fff;
    background-color: #3b3b3b;
    width: 47px;
    height: 47px;
    text-align: center;
    vertical-align: bottom;
    font-size: 20px;
    border-radius: 50%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMDAgMjcxIj4KICA8cGF0aCBmaWxsPSJ3aGl0ZSIgZD0iTTIzNiAwaDQ2TDE4MSAxMTVsMTE4IDE1NmgtOTIuNmwtNzIuNS05NC44LTgzIDk0LjhoLTQ2bDEwNy0xMjNMLTEuMSAwaDk0LjlsNjUuNSA4Ni42em0tMTYuMSAyNDRoMjUuNUw4MC40IDI2SDUzeiIvPgo8L3N2Zz4K");
    background-size: 50% 50%;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
    text-indent: 9999px;
    text-decoration: none;
    transition: background-color 250ms linear;
}

.button-social.x-twitter:hover {
    background-color: black;
}


.skip-link {
    position: absolute;
    top: 0;
    left: 0.5rem;

    z-index: 1000;
    transform-origin: top left;
    transition: transform 0.2s ease;

    -webkit-font-smoothing: antialiased;
    font-family: "Poppins", sans-serif, sans-serif;
    margin: 0;
    border: 0;
    text-decoration: none;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 38px;
    background: #E7E7F8;
    box-shadow: 0 6px 12px -6px rgba(183, 174, 240, 0.8), 0 -1px 0 0 #CECEF8 inset;
    font-weight: 600;
    font-size: clamp(0.875rem, 0.727484472rem + 0.6211180124vw, 1.125rem);
    line-height: 1;
    padding: 0.75rem 1.75rem;
    gap: 0.5rem;
    min-height: 2.75rem;
    transform: translateY(-200%) scale(0.75);
}

.skip-link>span {
    vertical-align: baseline;
    border: 0;
    color: #4340B3;
}

.skip-link:focus {
    outline: none;
    transform: translateY(0.5rem) scale(0.75) !important;
    box-shadow: 0 0 0 4px rgba(67, 64, 179, 0.8), 0 6px 12px -6px rgba(183, 174, 240, 0.8), 0 -1px 0 0 #CECEF8 inset;
    transition: box-shadow 250ms ease;
}

/* END MISCELLANEOUS */

/* stylelint-enable */