*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
img{
    display: block;
    user-select: none;
}
ul, ol {
    list-style: none;
}
button, input, select, textarea {
    outline: none;
    border: none;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    background-color: transparent;
    cursor: pointer;
}
html{
    overflow-x: hidden;
    font-family: 'Bungee', sans-serif;
    scroll-behavior: smooth;
}
input {
    border: none;
    background-color: transparent;
}
body {
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
main{
    position: relative;
    z-index: 0;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(52, 110, 4, 0.2);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 12px rgba(52, 110, 4, 0.4);
}
.header__content{
    max-width: 1500px;
    width: 100%;
    padding: 15px 30px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    @media(max-width: 992px){
        padding: 15px;
    }
}
.header__burger{
    display: none;
    @media(max-width: 640px){
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        background: rgba(130, 182, 26, 0.5);
        color: #000000;
    }
}
.burger__menu{
    display: none;
}
.burger__menu.open{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100svh;
    background-color: #C2EEAF;
    padding: 40px 20px;
    max-width: 360px;
    width: 100%;
}
.burger__list{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.burger__list-item{
    font-size: 25px;
    line-height: 25px;
    font-weight: 600;
    color: #000000;
}
.header__menu{
    display: flex;
    align-items: center;
    gap: 20px;
    @media(max-width: 640px){
        display: none;
    }
}
.header__menu-item{
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    color: #cbe39f;
    transition: .3s ease-in-out;
    @media(max-width: 992px){
        font-size: 16px;
        line-height: 20px;
    }
}
.header__menu-item:hover{
    color: #5a901b;

}
.header__btn{
    background: #000;
    padding: 10px 20px;
    width: fit-content;
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
    color: #b5d877;
    border-radius: 5px;
    transition: .3s ease-in-out;
    @media(max-width: 992px){
        font-size: 16px;
        line-height: 20px;
    }
}
.header__btn:hover{
    background: #346E04;
}
.wrapper{
    position: relative;
    max-width: 1500px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
    @media(max-width: 992px){
        padding: 0 15px;
    }
}
.main{
    position: relative;
    width: 100%;
    height: 100svh;
    background-image: url("../images/goat-bg.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.main__img{
    width: auto;
    height: 80svh;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 49;
    @media(max-width: 992px){
        left: unset;
        right: 10%;
        transform: translateX(10%);
    }
}
.main__img img{
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.main__content{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100svh;
    padding: 150px 0;
    @media(max-width: 992px){
        padding: 100px 0;
    }
    @media(max-width: 640px){
        padding: 50px 0;
    }
}
.main__socials{
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 99;
}
.main__socials-item{
    width: 60px;
    height: 60px;
    background: rgba(130, 182, 26, 0.5);
    border: 2px solid #82B61A;
    box-shadow: 0 0 12px #346E04;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
    color: #346E04;
    backdrop-filter: blur(8px);
    @media(max-width: 768px){
        width: 50px;
        height: 50px;
    }
    @media(max-width: 575px){
        width: 40px;
        height: 40px;
        background: rgba(130, 182, 26, 0.8);
    }
}
.main__socials-item svg{
    width: 40px;
    height: 40px;
    object-fit: contain;
    object-position: center;
    @media(max-width: 575px){
        width: 30px;
        height: 30px;
    }
}
.main__socials-item:nth-child(1),.main__socials-item:nth-child(3), .main__socials-item:nth-child(5){
    transform: rotate(-5deg);
}
.main__socials-item:nth-child(2),.main__socials-item:nth-child(4){
    transform: rotate(6deg);
}
.main__socials-item:hover{
    box-shadow: none;
    border-color: #346E04;
    background: #346E04;
    color: #FFFFFF;
    transform: rotate(0deg);
    backdrop-filter: none;
}
.main__text{
    position: absolute;
    top: 15svh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 29;
    font-size: 400px;
    line-height: 400px;
    font-weight: 700;
    color: #FFFFFF;
    user-select: none;
    @media(max-width: 1366px){
        font-size: 350px;
        line-height: 350px;
    }
    @media(max-width: 992px){
        font-size: 250px;
        line-height: 250px;
    }
    @media(max-width: 768px){
        font-size: 200px;
        line-height: 200px;
    }
    @media(max-width: 575px){
        font-size: 150px;
        line-height: 150px;
    }
}
.marquee {
    overflow: hidden;
    background: #000;
    color: #fff;
    padding: 20px 0;
    @media(max-width: 640px){
        padding: 10px 0;
    }
}
.marquee__inner {
    display: flex;
    width: fit-content;
    animation: scroll-left 60s linear infinite;
}
.marquee__content{
    display: flex;
}
.marquee__content span {
    display: inline-block;
    font-size: 60px;
    padding-right: 40px;
    white-space: nowrap;
    background: linear-gradient(90deg, #82B61A 0%, #68C1A3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    @media(max-width: 992px){
        font-size: 50px;
    }
    @media(max-width: 640px){
        font-size: 30px;
        padding-right: 30px;
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
.about{
    padding: 100px 0;
    min-height: 100svh;
    background-image: url("../images/goat-about.PNG");
    background-size: 100%;
    background-repeat: no-repeat;
    @media(max-width: 1366px){
        min-height: unset;
    }
    @media(max-width: 992px){
        background-size: cover;
        background-position: center;
    }
}
.about__content{
    display: flex;
    align-items: center;
    gap: 90px;
    width: 100%;
    justify-content: space-between;
}
.about__text, .story__text, .how__text, .community__text{
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 700px;
    padding: 30px;
    border: 2px solid #FFFFFF;
    border-radius: 10px;
    background-color: rgba(62, 52, 46, 0.3);
    background-image: linear-gradient(-180deg, rgba(181, 203, 8, 0.5) 0%, rgba(147, 186, 8, 0.5) 100%);
    box-shadow: 0 2px 30px -10px #FFFFFF;
    backdrop-filter: blur(8px);
    color: #EDEDED;
    @media(max-width: 992px){
        max-width: 500px;
        gap: 20px;
        padding: 20px;
    }
}
.about__title, .story__title, .how__title, .community__title{
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    @media(max-width: 992px){
        font-size: 30px;
        line-height: 30px;
    }
}
.about__description, .story__description, .community__description{
    font-family: 'Baloo 2', sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    @media(max-width: 992px){
        font-size: 15px;
        line-height: 22px;
    }
}
.about__btn{
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    font-size: 20px;
    line-height: 24px;
    background: #000000;
    color: #FFFFFF;
    border-radius: 5px;
    transition: .3s ease-in-out;
    @media(max-width: 992px){
        font-size: 15px;
        line-height: 20px;
    }
}
.about__btn:hover{
    background: #346E04;
}
.story{
    padding: 100px 0;
    background: linear-gradient(180deg, #A4E58F 0%, #C2EEAF 100%);
}
.story__content{
    display: flex;
    gap: 30px;
    @media(max-width: 992px){
        flex-direction: column;
    }
}
.story__column{
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 520px;
    justify-content: space-between;
    width: 100%;
    @media(max-width: 992px){
        max-width: unset;
    }
}
.story__text{
    @media(max-width: 992px){
        max-width: unset;
    }
}
.story__description{
    font-size: 20px;
    line-height: 28px;
}
.story__column-img{
    width: 100%;
    height: fit-content;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #346E04;
}
.story__column-img img{
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}
.story__text{
    width: 100%;
    height: fit-content;
    flex-shrink: 0;
}
.story__why{
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    @media(max-width: 992px){
        gap: 20px;
        margin-top: 30px;
    }
    @media(max-width: 992px){
        display: flex;
        flex-direction: column;
    }
}
.why__text{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    border-radius: 10px;
    background: #5a901b;
    border: 4px solid #346E04;
    color: #EDEDED;
    height: fit-content;
    @media(max-width: 992px){
        padding: 20px;
        gap: 20px;
    }
}
.why__title{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    @media(max-width: 768px){
        font-size: 25px;
        line-height: 30px;
    }
}
.why__description{
    font-family: 'Baloo 2', sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    @media(max-width: 768px){
        font-size: 15px;
        line-height: 22px;
    }
}
.how{
    padding: 100px 0;
    background: linear-gradient(180deg, #C2EEAF 0%, #A4E58F 100%);
    @media(max-width: 992px){
        padding: 0 0 100px;
    }
}
.how__content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 90px;
    @media(max-width: 1366px){
        gap: 30px;
    }
    @media(max-width: 992px){
        flex-direction: column;
    }
}
.how__column{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    max-width: 650px;
    width: fit-content;
    @media(max-width: 992px){
        align-items: center;
    }
}
.how__disclaimer{
    display: flex;
    flex-direction: column;
    gap: 10px;
    @media(max-width: 992px){
        align-items: center;
        text-align: center;
    }
}
.disclaimer__title{
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    color: #DA221A;
}
.how__disclaimer p {
    font-family: 'Baloo 2', sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #DA221A;
}
.how__list{
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Baloo 2', sans-serif;
    list-style: decimal;
    padding-left: 20px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}
.how__btn{
    width: fit-content;
    padding: 15px 20px;
    font-size: 20px;
    line-height: 24px;
    background: #DE722A;
    color: #FFFFFF;
    border-radius: 5px;
    transition: .3s ease-in-out;
}
.how__btn:hover{
    background: #346E04;
}
.how__img{
    width: 600px;
    height: fit-content;
    overflow: hidden;
    border-radius: 10px;
    @media(max-width: 992px){
        max-width: 500px;
        width: 100%;
    }
}
.how__img img{
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}
.community{
    position: relative;
    min-height: 100svh;
}
.community .wrapper{
    padding-top: 100px;
}
.community__img{
    width: 100%;
    height: 100svh;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    @media(max-width: 768px){
        height: 100%;
    }
}
.community__img img{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.community__text{
    position: relative;
    z-index: 9;
    justify-self: flex-end;
}
.community__links{
    display: flex;
    align-items: center;
    gap: 20px;
}
.community__link{
    width: 60px;
    height: 60px;
    background: rgba(130, 182, 26, 0.5);
    border: 2px solid #82B61A;
    box-shadow: 0 0 12px #346E04;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
    color: #346E04;
    backdrop-filter: blur(8px);
    @media(max-width: 768px){
        width: 50px;
        height: 50px;
    }
    @media(max-width: 575px){
        width: 40px;
        height: 40px;
    }
}
.community__link svg{
    width: 40px;
    height: 40px;
    object-fit: contain;
    object-position: center;
    @media(max-width: 575px){
        width: 30px;
        height: 30px;
    }
}
.community__link:nth-child(1),.community__link:nth-child(3){
    transform: rotate(-5deg);
}
.community__link:nth-child(2),.community__link:nth-child(4){
    transform: rotate(6deg);
}
.community__link:hover{
    box-shadow: none;
    border-color: #346E04;
    background: #346E04;
    color: #FFFFFF;
    transform: rotate(0deg);
    backdrop-filter: none;
}
.mobile__final-img{
    display: none;
    @media(max-width: 768px){
        display: block;
        width: 100%;
        height: 100svh;
    }
}
.mobile__final-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.final__img{
    width: 100%;
    height: auto;
    @media(max-width: 768px){
        display: none;
    }
}
.final__img img{
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}
.footer{
    width: 100%;
    background: #a4d057;
}
.footer__content{
    max-width: 1500px;
    width: 100%;
    padding: 100px 30px;
    margin: 0 auto;
}
.footer__links-title{
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
}
.footer__links{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000000;
}
.footer__links-content{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.footer__links-item{
    width: 60px;
    height: 60px;
    background: rgba(130, 182, 26, 0.3);
    border: 2px solid #82B61A;
    box-shadow: 0 0 12px #346E04;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
    color: #346E04;
    backdrop-filter: blur(8px);
    @media(max-width: 768px){
        width: 50px;
        height: 50px;
    }
    @media(max-width: 575px){
        width: 40px;
        height: 40px;
    }
}
.footer__links-item svg{
    width: 40px;
    height: 40px;
    object-fit: contain;
    object-position: center;
    @media(max-width: 575px){
        width: 30px;
        height: 30px;
    }
}
.footer__links-item:nth-child(1),.footer__links-item:nth-child(3), .footer__links-item:nth-child(5){
    transform: rotate(-5deg);
}
.footer__links-item:nth-child(2),.footer__links-item:nth-child(4){
    transform: rotate(6deg);
}
.footer__links-item:hover{
    box-shadow: none;
    border-color: #a4d057;
    background: #a4d057;
    color: #346E04;
    transform: rotate(0deg);
    backdrop-filter: none;
}
.footer__docs{
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer__docs-link{
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: .3s ease-in-out;
}
.footer__docs-link:hover{
    color: #346E04;
}





.gallery-wrapper {
    display: flex;
    height: 95vh;
    overflow: hidden;
}

.column {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.column-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
    animation: scroll-down 20s linear infinite;
}
.column-content img{
    border-radius: 10px;
}
.column-content.reverse {
    animation: scroll-up 20s linear infinite;
}

/* Скролл вниз */
@keyframes scroll-down {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Скролл вверх */
@keyframes scroll-up {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}
