#hero {
    min-height: 530px;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 68% 98%, 32% 98%, 0 92%);
    clip-path: shape(from 0 0, line to 100% 0, line to 100% 92%, curve to 50% 98% with 82% 94% / 68% 98%, curve to 0 92% with 32% 98% / 18% 94%, close);
}

#hero .container {
    position: relative;
    z-index: 1;
}

#hero .content {
    max-width: 820px;
}

#hero .content h1 {
    color: #FFF;
font-family: "Neo Sans";
font-size: 55px;
font-style: normal;
font-weight: 400;
line-height: 54px; /* 98.182% */
    margin-bottom: 20px;
}

#hero .content h1 strong {
    color: #CDFF00;
    font-weight: 500;
}

#hero .content p {
    color: rgba(255, 255, 255, 0.90);
font-family: "Neo Sans";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 32px; /* 160% */
    margin-bottom: 0;
}

#hero .content .click {
    margin-top: 40px;
}

#hero .content .click i {
    margin-left: 18px;
}

@media (max-width: 1200px) {
    #hero {
        min-height: 500px;
        background-position: 58% center;
    }
    
        #hero::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.08) 100%);
    }
}

@media (max-width: 767px) {
    #hero {
        min-height: 460px;
        padding: 50px 0;
        background-position: 62% center;
        clip-path: polygon(0 0, 100% 0, 100% 94%, 50% 99%, 0 94%);
        clip-path: shape(from 0 0, line to 100% 0, line to 100% 94%, curve to 50% 99% with 82% 96% / 68% 99%, curve to 0 94% with 32% 99% / 18% 96%, close);
    }

    #hero::before {
        background: rgba(0, 0, 0, 0.52);
    }

    #hero .content h1 {
        font-size: 36px;
        line-height: 42px;
    }

    #hero .content p {
        font-size: 16px;
        line-height: 26px;
    }
}

#posts {
    padding: 100px 0;
    background: #fff;
}
#posts .filters {
    margin-bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}
#posts .filters a {
    min-height: 28px;
    padding: 7px 18px;
    border: 1px solid #CFCFCF;
    border-radius: 30px;
    color: #042224;
    text-align: center;
    font-family: "Neo Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    text-decoration: none;
}
#posts .filters a.active {
    border-color: #CDFF00;
    background: #CDFF00;
    font-weight: 500;
}
#posts .item {
    position: relative;
    height: 100%;
    min-height: 570px;
    border-radius: 16px;
    overflow: hidden;
    background: #031819;
    display: flex;
    flex-direction: column;
}
#posts .image img {
    width: 100%;
    height: auto;
    aspect-ratio: 512/280;
    object-fit: cover;
    display: block;
}
#posts .tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 10px;
    border-radius: 3px;
    background: #CDFF00;
    color: #000;
    font-family: "Neo Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}
#posts .content {
    padding: 34px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
#posts .date {
    margin-bottom: 8px;
    color: #CDFF00;
    font-family: "Neo Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    text-transform: uppercase;
}
#posts .content h2 {
    color: #FFF;
    font-family: "Neo Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 31.2px;
    margin-bottom: 42px;
}
#posts .content p {
    color: rgba(255, 255, 255, 0.7);
    font-family: "Neo Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.6px;
}
#posts .content p:last-child {
    margin-bottom: 0;
}
#posts .content .click {
    margin-top: auto;
}
#posts .content .click .btn {
    border-radius: 2px;
    border: 1px solid rgba(205, 255, 0, 0.2);
    width: 100%;
    color: #CDFF00;
    text-align: center;
    font-family: "Neo Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
#posts .content .click .btn:hover {
    color: #000;
}
#posts .pagination {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
#posts .pagination .page-numbers {
    width: 24px;
    height: 24px;
    background: #CDFF00;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Neo Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}
#posts .pagination .page-numbers.current {
    background: #002D2B;
    color: #fff;
}
@media (max-width: 1200px) {
    #posts .item {
        min-height: 540px;
    }
}
@media (max-width: 767px) {
    #posts {
        padding: 50px 0;
    }
    #posts .filters {
        margin-bottom: 35px;
    }
    #posts .item {
        min-height: 0;
    }
    #posts .content h2 {
        font-size: 21px;
        line-height: 27px;
        margin-bottom: 30px;
    }
}

#press-office {
    padding: 100px 0;
    background: #CDFF00;
    text-align: center;
}

#press-office .content {
    max-width: 1080px;
    margin: 0 auto;
}

#press-office .content h2 {
color: #000;
text-align: center;
font-family: "Neo Sans";
font-size: 48px;
font-style: normal;
font-weight: 400;
line-height: 45px; /* 93.75% */
    margin-bottom: 30px;
}

#press-office .content h2 strong {
    font-weight: 500;
}

#press-office .content p {
color: #000;
text-align: center;
font-family: "Neo Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 175% */
}

#press-office .content p:last-child {
    margin-bottom: 0;
}

#press-office .email {
    margin-top: 45px;
}

#press-office .email a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: #000;
    font-family: "Neo Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
}

#press-office .email i {
    font-size: 21px;
    line-height: 1;
}

@media (max-width: 767px) {
    #press-office {
        padding: 50px 0;
    }

    #press-office .content h2 {
        font-size: 38px;
        line-height: 46px;
    }

    #press-office .content p {
        font-size: 16px;
        line-height: 26px;
    }

    #press-office .email a {
        font-size: 22px;
        line-height: 30px;
    }
}

#download-library {
    padding: 100px 0;
    background: #F9F9F9;
}

#download-library .content {
    max-width: 980px;
    margin: 0 auto 70px;
    text-align: center;
}

#download-library .content h2 {
    color: #000;
    text-align: center;
    font-family: "Neo Sans";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px;
    /* 93.75% */
    margin-bottom: 25px;
}

#download-library .content h2 strong {
    font-weight: 500;
}

#download-library .content p {
    color: #000;
    text-align: center;
    font-family: "Neo Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 175% */
    letter-spacing: 0;
}
#download-library .content p:last-child {
    margin-bottom: 0;
}

#download-library .wrap {
    padding: 38px 42px 36px;
    border-radius: 24px;
    border: 1px solid rgba(4, 34, 36, 0.08);
    background: #FFF;
    box-shadow: 0 4px 24px 0 rgba(4, 34, 36, 0.06);
}

#download-library .top {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

#download-library .icon {
    width: 64px;
    min-width: 64px;
    height: 64px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#download-library .icon img {
    max-width: 100%;
    height: auto;
    display: block;
}

#download-library .tag {
    margin-bottom: 8px;
    color: #6B7280;
    font-family: "Neo Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 150% */
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

#download-library .wrap h3 {
    color: #042224;
    font-family: "Neo Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    /* 150% */
    margin-bottom: 0;
}

#download-library .text {
    max-width: 590px;
}

#download-library .text p {
    color: #4A5568;
    font-family: "Neo Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.375px;
    /* 162.5% */
}
#download-library .text p:last-child {
    margin-bottom: 0;
}

#download-library .details {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

#download-library .details .item {
    min-height: 30px;
    padding: 7px 16px;
    border-radius: 30px;
    background: rgba(4, 34, 36, 0.06);
    color: #042224;
    font-family: "Neo Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 150% */
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
#download-library .details .item:last-child {
    background: rgba(205, 255, 0, 0.15);
    color: #4A6600;
}

#download-library .click {
    margin-top: 35px;
}

#download-library .click a {
    width: 100%;
    justify-content: center;
}

@media (max-width: 767px) {
    #download-library {
        padding: 50px 0;
    }

    #download-library .content {
        margin-bottom: 40px;
    }

    #download-library .content h2 {
        font-size: 38px;
        line-height: 46px;
    }

    #download-library .content p,
    #download-library .text p {
        font-size: 16px;
        line-height: 26px;
    }

    #download-library .wrap {
        padding: 30px 24px;
    }

    #download-library .top {
        align-items: flex-start;
        gap: 18px;
    }
}
