* {
    margin: 0;
    padding 0;
    box-sizing: border-box;
    font-family: Poppins;
    font-weight: 300;
    font-size: 16px;
}

html {
    overflow-x: hidden;
}

html, body {
    /*overscroll-behavior-y: none;*/
}

.header_grad {
    width: 100vw;
    height: 250px;
    position: fixed;
    z-index: 100;
    top: 0;
    background: linear-gradient(
        0deg,
        rgba(246, 248, 232, 0) 0%,
        rgba(246, 248, 232, 0.9) 70%
    );
}

header {
    width: 2000px;
    height: 500px;
    position: fixed;
    top: -30px;
    left: calc(50vw - 1000px);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.header_bg {
    height: 300px;
    position: absolute;
    opacity: 0;
}

#main_logo {
    height: 300px;
    width: 300px;
    position: absolute;
    animation: logo_anim forwards ease-out 0.5s;
}

@keyframes logo_anim {
    0% {
        opacity: 0;
        transform: scaleX(0.9) scaleY(0.9);
    }

    100% {
        opacity: 1;
        transform: scaleX(1) scaleY(1);
    }
}

#logo_text {
    position: absolute;
    bottom: -20px;
    font-family: Cinzel-Black;
    font-size: 40px;
    color: #4e5e37;
}

#logo_text2 {
    position: absolute;
    bottom: -46px;
    font-size: 20px;
    color: #4e5e37;
}

/* HEADER ANIMATIONS */

#hbg1[loaded='false'] {
    animation: hbga1 forwards ease-out 1s;
    animation-delay: 0ms;
}

#hbg1[loaded='true'] {
    opacity: 1;
    transform: translateX(0px);
    animation: hbga1b infinite alternate-reverse linear 30s;
}

@keyframes hbga1 {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes hbga1b {
    0% {
        opacity: 1;
        transform: translateX(-300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

#hbg2[loaded='false'] {
    animation: hbga1 forwards ease-out 1s;
    animation-delay: 300ms;
}

#hbg2[loaded='true'] {
    opacity: 1;
    transform: translateX(0px);
    animation: hbga2b infinite alternate-reverse linear 30s;
}

@keyframes hbga2 {
    0% {
        opacity: 0;
        transform: translateX(300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes hbga2b {
    0% {
        opacity: 1;
        transform: translateX(300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

#hbg3[loaded='false'] {
    animation: hbga3 forwards ease-out 1s;
    animation-delay: 200ms;
}

#hbg3[loaded='true'] {
    opacity: 1;
    transform: translateX(0px);
    animation: hbga3b infinite alternate-reverse linear 30s;
}

@keyframes hbga3 {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes hbga3b {
    0% {
        opacity: 1;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

#hbg4[loaded='false'] {
    animation-delay: 300ms;
    animation: hbga4 forwards ease-out 1s;
}

#hbg4[loaded='true'] {
    opacity: 1;
    transform: translateX(0px);
    animation: hbga4b infinite alternate-reverse linear 30s;
}

@keyframes hbga4 {
    0% {
        opacity: 0;
        transform: translateX(160px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes hbga4b {
    0% {
        opacity: 1;
        transform: translateX(-160px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.webshop_button {
    position: fixed;
    top: 14px;
    right: 14px;
    background-color: #4e5e37;
    color: white;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    border-radius: 10px;
}

.webshop_button img {
    height: 16px;
    margin-right: 5px;
}

.webshop_button_text {
    font-size: 16px;
}

@media all and (max-width: 500px) {
    .webshop_button_text {
        font-size: 12px;
    }

    .webshop_button img {
        height: 12px;
    }
}

@media all and (max-width: 350px) {

    .webshop_button {

    }

    .webshop_button_text {
        display: none;
    }

    .webshop_button img {
        height: 16px;
        margin-right: 0px;
    }
}


body {
    /*
    background: linear-gradient(
        90deg,
        rgba(162, 188, 33, 0),
        rgba(162, 188, 33, 0.2)
    );*/
    background-color: rgba(246, 248, 232, 1);
}

#bg_svg {
    position: fixed;
    height: 70vh;
    bottom: 0;
    right: -30vh;
    z-index: -1;
}

.header_spacer {
    height: 600px;
}

.content_wrap {
    height: 100vh;
    overflow-y: scroll;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 1000px;
    flex-direction: column;
    overflow: hidden;
}

.ph {
    margin-top: 40px;
}

@media all and (max-width: 900px) {
    header[big='true'] {
        height: 300px;
    }

    header[big='true'] #main_logo {
        width: 200px;
        height: 200px;
    }

    header[big='true'] .header_bg {
        height: 120px;
    }
}

.c1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.c1 p {
    max-width: 600px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}
.c1_b {
    align-self: flex-end;
    font-size: 12px;
    margin-top: 5px;
    margin-right: 32px;
}

.c2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200;
    width: 90%;
    margin-top: 70px;
}

.c2 h2 {
    width: 100%;
    border-bottom: 2px solid #a2bc21;
    font-size: 24px;
    font-weight: 500;
    color: #393939;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.c2 .b1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.c2 .b1 .a1 {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
}

.c2 .b2 {
    margin-top: 30px;
}

b {
    font-weight: 600;
}

.c2 .img_cont {
    height: 200px;
    width: 420px;
    min-width: 420px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #a2bc21;
    border-radius: 20px;
    transition-duration: 0.3s;
}

.c2 .photo {
    height: 200px;
}

@media all and (max-width: 1100px) {
    .c2 .img_cont {
        width: 320px;
        min-width: 320px;
    }
}

@media all and (max-width: 955px) {
    .c2 .img_cont {
        width: 260px;
        min-width: 260px;
    }
}

@media all and (max-width: 895px) {
    .c2 .img_cont {
        width: 220px;
        min-width: 220px;
    }
}

@media all and (max-width: 840px) {
    .c2 .img_cont {
        width: 200px;
        min-width: 200px;
    }
}

@media all and (max-width: 810px) {
    .c2 .img_cont {
        width: 160px;
        min-width: 160px;
    }
}

@media all and (max-width: 700px) {

    .c2 .img_cont {
        transition-duration: 0s;
    }
}

@media all and (max-width: 580px) {

    .c2 .b1 {
        flex-direction: column;
    }

    .c2 .img_cont {
        width: 100%;
        min-width: 0px;
        transition-duration: 0s;
        max-width: 100%;
    }

    .c2 .b1 .a1 {
        margin-left: 0px;
        margin-top: 30px;
    }
}

.c2 .b3 {
    margin-top: 30px;
}

.c2 .b3 h3 {
    width: 100%;
    border-bottom: 2px solid #a2bc21;
    font-size: 18px;
    font-weight: 500;
    color: #393939;
    margin-bottom: 30px;
    padding-bottom: 10px;
    text-align: center;
}

.c2 .b3 ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.c2 li {
    margin-bottom: 5px;
}

.bullet {
    height: 14px;
    width: 14px;
    margin-right: 5px;
}

p {
    text-align: justify;
}


.b4 h3 {
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    color: #393939;
    margin-bottom: 10px;
    margin-top: 30px;
}

footer {
    margin-top: 30px;
    background-color: #4e5e37;
    color: white;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-direction: row;
    padding: 30px;
}

.c3 {
    max-width: 500px;
    width: 90%;
    margin-top: 20px;
}

.c3 p {
    font-weight: 500;
}

.c4 {
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 500px;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.c4 h3 {
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid white;
    padding-bottom: 5px;
    margin-bottom: 10px;
    width: 100%;
}

a {
    color: white;
    text-decoration: none;
    margin-bottom: 2px;
}

.footer_img {
    height: 240px;
    margin-right: 30px;
    border: 2px solid #a2bc21;
    border-radius: 20px;
}

@media all and (max-width: 500px) {
    footer {
        flex-direction: column;
    }

    .footer_img {
        margin-right: 0;
    }

    .c3,
    .c4 {
        width: 100%;
    }
}