@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*, 
*::after, 
*::before {
    padding: 0;
    margin: 0;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: -0.025rem;
    color: #212427;
}

.container {
    width: 1120px;
    max-width: 90%;
    margin: 0 auto;
}

.header {
    padding: 2rem 0;
    background: #FFFFFF;
    /* background: linear-gradient(90deg, rgba(246, 54, 161, 1) 0%, rgba(33, 33, 224, 1) 100% ); */

    position: sticky;
    top: 0;
    overflow: hidden;
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 1120px;
    max-width: 90%;
    margin: 0 auto;
}

.logo {
    width: 80px;
    height: 54px;
    background-image: url(../images/logo.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    text-indent: -9999px;
}

.nav__toggle {
    width: 1.5rem;
    height: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.nav__toggle div {
    display: block;
    width: 1.6rem;
    height: 0.2rem;
    background-color: #FFF;
    transition: all .3s ease-in-out;
}

.nav {
    position: fixed;
    top: 109px;
    left:100%;
    width: 100%;
    height: calc(100vh - 161px);
    background: #F636A1;
    background: linear-gradient(90deg, rgba(246, 54, 161, 1) 0%, rgba(33, 33, 224, 1) 100% );
    text-align: center;
    padding: 2rem 0;
    transition: all 0.3s;
    z-index: 1;
}

.nav__list {
    list-style: none;
}

.menu-item {
    margin-bottom: 1.5rem;
}

.menu-item a {
    color: #FFF;
    text-decoration: none;
    font-size: 1.4rem;
}

.show {
    left: 0;
}

.social {
    padding-top: 2rem;
}

.social img {
    width: 24px;
    height: 24px;
    display: block;
    opacity: 70%;
}

.social a {
    padding: 0 0.5rem;
    display: inline-block;
}

@media screen and (min-width: 768px) {
    .header {
        padding: 2rem 0;
    }
    .logo {
        width: 96px;
        height: 65px;
    }

    .nav__toggle {
        display: none;
    }

    .nav {
        position: initial;
        width: initial;
        height: initial;
        padding: initial;
        background: initial;

        display: flex;
        align-items: center;
    }

    .nav__list {
        display: flex;
        flex-wrap: wrap;
    }
    .menu-item {
        margin-bottom: 0;
        padding: 0.8rem 1.2rem;
    }
    .menu-item a {
        font-size: 1rem;
    }

    .social {
        padding-top: 0;
    }
    .social img {
        width: 20px;
        height: 20px;
    }
}

.hero {
    background: #ffb4e4;
    /* background: linear-gradient(135deg, rgba(251, 201, 0, 1) 0%, rgba(249, 220, 106, 1) 100%); */

    padding: 6rem 0;
}

.hero__subline {
    font-size: 0.8rem;
}

.hero__heading {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 500;
}

.hero__competition {
    padding: 2rem 0;
    text-align: center;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.hero__drawing img {
    width: 60%;
    margin: 0 auto;
}

.competition__title {
    padding-top: 1.5rem;
}

.hero__btn a {
    padding: 18px 32px;
    border-radius: 4px;
    text-decoration: none;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.btn__primary {
    background-color: #7A0145;
    color: #FFF;
}

.btn__secondary {
    border: 1px solid #7A0145;
    color: #7A0145;
    font-weight: 600;
}

.registration__alert {
    font-weight: 400;
    font-size: 0.9rem;
    padding-bottom: 1.2rem;
}

.hero__resources a {
    margin-right: 1rem;
    color: #624F03;
}

.hero__association {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;

    margin-top: 3rem;
}

.hero__association img {
    width: inherit;

}

.hero__association a {
    border: 1px solid #b3a83e;
    height: 60px;


    display: grid;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .hero {
        padding: 9rem 0;
        text-align: center;
    }

    .hero__competition {
        width: 60%;
        margin: 0 auto;
    }

    .hero__association {
        grid-template-columns: repeat(3, 1fr);
    }
}