@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0;
}

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

img {
    max-width: 100%;
    vertical-align: middle;
}

video {
    max-width: 100%;
    vertical-align: middle;
}

a {
    text-decoration: none;
}

body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 28px;
    background: linear-gradient(180deg, #312EA9 0%, #030062 100%);
    background-attachment: fixed;
    color: #ffffff;
}

.container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.ncd41z-banner--btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.ncd41z-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    height: 74px;
    background-color: transparent;
    color: #ffffff;
    transition: .3s;
    border-radius: 0;
}

.ncd41z-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ncd41z-btn:hover {
    transform: rotate(4deg);
}


/* Header */
.ncd41z-header {
    padding: 12px 16px;
}

.ncd41z-header--box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ncd41z-header--brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
}

.ncd41z-header--link {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    gap: 6px;
    color: #f94bd1;
    padding: 4px;
}

/* banner */

.ncd41z-banner {
    padding: 40px 16px;
}

.ncd41z-banner--pic {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 40px;
    display: block;
    overflow: hidden;
}

.ncd41z-banner--pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid #6864F880;
    border-radius: 10px;
}

.ncd41z-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #6864F880;
}

.ncd41z-title span {
    color: #f94bd1;
    font-weight: 700;
    font-size: 40px;
    line-height: 46px;
}

.ncd41z-text {
    text-align: center;
}

/* matters */

.ncd41z-matters {
    padding: 40px 16px 60px;
}

.ncd41z-matters--list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.ncd41z-matters--item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    align-items: center;
    gap: 20px 40px;
}

.ncd41z-matters--item:nth-child(2n) {
    grid-template-columns: 0.6fr 1fr;
}

.ncd41z-matters--box {
    background: #6864F880;
    padding: 40px 24px;
    border-radius: 10px;
}

.ncd41z-matters--box h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ncd41z-matters--box h2 span {
    color: #f94bd1;
    font-weight: 700;
}

.ncd41z-matters--pic {
    overflow: hidden;
    cursor: pointer;
    height: 520px;
}

.ncd41z-matters--pic img {
    width: 100%;
    height: 100%;
    transition: .5s;
    object-fit: contain;
}

/* Info */

.ncd41z-info {
    padding: 40px 16px;
}

.ncd41z-info--box h1 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
    color: #f94bd1;
}

.ncd41z-info--box h2 {
    color: #f94bd1;
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ncd41z-info--box p {
    margin-bottom: 14px;
}

.ncd41z-info--box strong {
    font-weight: 700;
    color: #f94bd1;
}

/* Footer */

.ncd41z-footer {
    padding: 20px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ncd41z-footer--nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ncd41z-footer--nav a {
    padding: 4px;
    color: #ffffff;
    transition: .3s;
}

.ncd41z-footer--nav a:hover {
    color: #f94bd1;
}

@media (max-width: 720px) {
    body {
        font-size: 16px;
        line-height: 26px;
    }

    .ncd41z-header--box {
        flex-direction: column;
        gap: 14px;
    }

    .ncd41z-header--brand {
        font-size: 26px;
    }

    .ncd41z-banner {
        padding: 20px 16px 100px;
    }

    .ncd41z-banner--btns {
        flex-direction: column;
    }

    .ncd41z-matters--list {
        counter-reset: item;
        gap: 124px;
    }

    .ncd41z-matters--item {
        grid-template-columns: 1fr;
    }
    
    .ncd41z-matters--item::before {
        counter-increment: item;
        content: counter(item, decimal-leading-zero);
        position: absolute;
        left: 20px;
        top: -40px;
        font-size: 124px;
        line-height: 110px;
        font-weight: 600;
    }

    .ncd41z-matters--box {
        padding: 154px 20px 26px;
    }

    .ncd41z-matters--box h2 {
        font-size: 26px;
        line-height: 36px;
    }

    .ncd41z-matters--pic {
        position: absolute;
        top: -100px;
        right: 20px;
        height: 240px;
    }

    /* .ncd41z-matters--item:nth-child(2n) .ncd41z-matters--pic {
        grid-row: 2;
    } */

    .ncd41z-matters--item:nth-child(2n) {
        grid-template-columns: 1fr;
    }
}