/* globals */
:root {
    --site-max-width: 1440px;
    --brand-color-blue: #0C2F59;
    --brand-color-light-blue: #2F6EB4;
}

/* resets */
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Red Hat Display", sans-serif;
    font-optical-sizing: auto;

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

/* utilities */
.bold {
    font-weight: 900;
}
.medium-800 {
    font-weight: 800;
}
.italic {
    font-style: italic;
}
.color-white {
    color: #fff;
}
.color-blue {
    color: var(--brand-color-blue);
}
.color-light-blue {
    color: var(--brand-color-light-blue);
}
.has-title-heading {
    font-size: 28px;
    font-weight: 900;
}
.has-small-heading {
    font-size: 20px;
    font-weight: 700;
}
.has-center-text {
    text-align: center;
}
.medium {
    font-weight: 600;
}
.remove-margin-top {
    margin-top: 0;
}
.remove-margin-bottom {
    margin-bottom: 0;
}
.text-underline {
    text-decoration: none;
}
.text-underline:hover {
    text-decoration: underline;
}
.paragraph {
    font-size: 20px;
    line-height: 27px;
}
.narrow-paragraph {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}
.last-paragraph-margin {
    margin-bottom: 4rem;
}
.uses-inner-bold {
    font-weight: 400;
}

@media screen and (min-width: 768px) {
    .has-title-heading {
        font-size: 36px;
    }
    .has-small-heading {
        font-size: 24px;
    }
    .paragraph {
        font-size: 24px;
        line-height: 32px;
    }
}

/* buttons */
.custom-button {
	display: inline-flex;
	align-items: center;
	max-width: max-content;
	
	padding: 10px 30px;
	border-radius: 10px;
	
	font-family: "Red Hat Display", sans-serif;
	font-size: 20px;
	font-weight: 700;
	
	box-sizing: border-box;
	text-decoration: none;
}
.custom-button--primary {
	background: var(--brand-color-blue);
	color: #fff;
}
.custom-button--alt {
    background-color: var(--brand-color-light-blue);
    color: #fff;
}

/* sections */
.section__content {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 6rem 2rem;
}
.section--white {
    background-color: #fff;
}
.section--blue {
    background-color: var(--brand-color-blue);
}
.section--light-blue {
    background-color: var(--brand-color-light-blue);
}

/* hero */
.hero {
    max-width: 2000;
}
.hero__content {
    padding: 2rem;
    box-sizing: border-box;
}
.hero__logo {
    display: block;

    max-width: 445px;
}
.hero__logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;

    max-width: 445px;
}
.hero__title {
    font-size: 36px;
    font-weight: 400;
}
.hero__image {
    display: block;

    max-height: 620px;
}
.hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    max-height: 620px;
}

@media screen and (min-width: 768px) {
    .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .hero__image {
        max-height: unset;
    }
    .hero__image img {
        max-height: unset;

        max-width: 1000px;
        margin-right: auto;
    }
    .hero__max-width {
        max-width: 710px;
        margin-left: auto;
    }
}

/* columns */
.columns {
    max-width: 1040px;
    margin: 0 auto;
}
.column {
    padding: 1rem 0;
}
@media screen and (min-width: 820px) {
    .columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}
/* media text */
.media-text {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.media-text__picture {
    display: block;
}
.media-text__picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.media-text__body {
    /* padding: 2rem 0; */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}
@media screen and (min-width: 768px) {
    .media-text {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;

        max-width: 1040px;
        margin: 0 auto;
    }
}

/* workshop */
.workshops {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.workshop {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    padding: 2rem;
    background-color: var(--brand-color-light-blue);
}
.workshop address {
    font-style: normal;
}
.workshop p {
    margin: 0;
}

@media screen and (min-width: 768px) {
    .workshops {
        grid-template-columns: 1fr 1fr;
    }
}

/* resources */
.resources {
    max-width: 265px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 20px;
}
.resource {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    gap: 2rem;
}
.resource picture {
    display: block;
    width: 70px;
    box-sizing: border-box;

    padding: 0.75rem;
    border-radius: 8px;
    background-color: #fff;
}
.resource img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.resource__link {
    color: #fff;
    text-decoration: none;
}
.resource__link:hover {
    text-decoration: underline;
}

@media screen and (min-width: 930px) {
    .resources {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;

        max-width: unset;
        margin: 0 auto;
        max-width: 1090px;
    }
}


/* partners */
.partners {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.partner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.partner p {
    max-width: 135px;
    margin: 0 auto;

}
.partner picture {
    display: block;

    width: 120px;
    height: 120px;
    margin: 0 auto;
}
.partner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (min-width: 480px) {
    .partners {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;

    }
}
@media screen and (min-width: 1040px) {
    .partners {
        gap: 4rem;
    }
}

/* footer */
.footer {
    background-color: var(--brand-color-blue);
    color: #fff;
}
.footer__section-title {
    font-size: 23px;
    font-weight: 800 !important;
    margin: 0;
}
.footer p {
    font-size: 23px;
    font-weight: 500;
    margin: 0;
}
.footer a {
    font-size: 23px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.footer__content {
    max-width: var(--site-max-width);
    padding: 4rem 2rem;
    margin: 0 auto;
    box-sizing: border-box;
}
.footer__top {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.footer__tablet-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer__column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__picture {
    display: block;
}
.footer__picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 370px;
}
.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__list li {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer__list li i {
    font-size: 1.75rem;
}
.footer__socials {
    display: flex;
    gap: 12px;
}
.footer__socials i {
    font-size: 1.75rem;
}
.footer__bottom {
    background-color: #fff;
    padding: 1rem 2rem;
}

@media screen and (min-width: 860px) {
    .footer__top {
        gap: 1px;
        background-color: #fff;
    }
    .footer__tablet-container {
        background-color: var(--brand-color-blue);
        display: grid;
        gap: 4rem;
    }
    .footer__tablet-container.a {
        grid-template-columns: 1fr 2fr;
        padding-bottom: 2rem;
    }
    .footer__tablet-container.b {
        grid-template-columns: 2fr 1fr;
        padding-top: 2rem;
    }
    .footer__list {
        flex-direction: row;
        gap: 2rem;
    }
    .footer__tablet-container.a p {
        max-width: 480px;
    }
}
@media screen and (min-width: 1440px) {
    .footer__top {
        /* flex-direction: row; */

        display: grid;
        grid-template-columns: 65% 35%;
        gap: 2rem;
        background-color: unset;
    }
    .footer__tablet-container.a {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding-bottom: 0;

    }
    .footer__tablet-container.b {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding-top: 0;
    }
    .footer__list {
        flex-direction: column;
        gap: 12px;
    }
}

.mc-imprint {
    --imprint-scale: 1;
    --imprint-speed: 1;
    --imprint-dot-size: 0.75;
    --imprint-text-size: 0.75;
    --imprint-container-color: var(--global--color-zeus);
    --imprint-text-color: #000;
    --imprint-dot1-color: #2F6EB4;
    --imprint-dot2-color: #2F6EB4;
    --imprint-dot3-color: #2F6EB4;
    --imprint-dot4-color: #2F6EB4;
    position: relative;
    text-decoration: none;
    height: calc(2rem * var(--imprint-scale));
    width: calc(9.03125rem * var(--imprint-scale));
    display: block;
    margin: 0 auto !important;
}
.mc-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.mc-imprint #logo .letter {
    fill: var(--imprint-text-color);
}
.mc-imprint #logo {
    --imprint-text-width: calc(12.03125rem * var(--imprint-text-size));
    --imprint-text-height: calc(1.25rem * var(--imprint-text-size));
    height: calc(var(--imprint-text-height) * var(--imprint-scale));
    width: calc(var(--imprint-text-width) * var(--imprint-scale));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-color: var(--imprint-container-color);
    opacity: 0;
    transition: opacity calc(250ms * var(--imprint-speed)) ease-in-out 187.5ms;
}

@media (hover: none) and (pointer: coarse), (hover: none) and (pointer: fine) {
    .mc-imprint .mc-dots {
        display: none;
    }

    .mc-imprint #logo {
        opacity: 1;
    }
}
@media (hover: hover) and (pointer: coarse), (hover: hover) and (pointer: fine) {
    .mc-imprint .mc-dots {
        --imprint-dots-width: calc(8rem * var(--imprint-dot-size));
        --imprint-dots-height: calc(1rem * var(--imprint-dot-size));
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%, 0%);
        width: calc(var(--imprint-dots-width) * var(--imprint-scale));
        height: calc(var(--imprint-dots-height) * var(--imprint-scale));
    }

    .mc-imprint .mc-dots .mc-dot {
        --imprint-size: calc(1rem * var(--imprint-dot-size));
        --imprint-margin: calc(var(--imprint-size) * 0.25);
        width: calc(var(--imprint-size) * var(--imprint-scale));
        height: calc(var(--imprint-size) * var(--imprint-scale));
        border-radius: 100%;
        display: inline-block;
        margin: 0 calc(var(--imprint-margin) * var(--imprint-scale));
        transform: translateY(0rem);
        opacity: 1;
    }

    .mc-imprint .mc-dots .mc-dot:nth-of-type(1) {
        background-color: var(--imprint-dot1-color);
        transition: transform 250ms ease-in-out 0ms, opacity 250ms ease-in-out 250ms;
    }

    .mc-imprint .mc-dots .mc-dot:nth-of-type(2) {
        background-color: var(--imprint-dot2-color);
        transition: transform 250ms ease-in-out 62.5ms, opacity 250ms ease-in-out 250ms;
    }

    .mc-imprint .mc-dots .mc-dot:nth-of-type(3) {
        background-color: var(--imprint-dot3-color);
        transition: transform 250ms ease-in-out 125ms, opacity 250ms ease-in-out 250ms;
    }

    .mc-imprint .mc-dots .mc-dot:nth-of-type(4) {
        background-color: var(--imprint-dot4-color);
        transition: transform 250ms ease-in-out 187.5ms, opacity 250ms ease-in-out 250ms;
    }

    .mc-imprint:hover .mc-dot {
        --imprint-offset: calc(-1.5rem * var(--imprint-dot-size));
        transform: translateY(calc(var(--imprint-offset) * var(--imprint-scale)));
        opacity: 0;
    }

    .mc-imprint:hover #logo {
        opacity: 1;
    }
}