.container {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.chy {
    margin: 0.4rem 0 .4rem 0;
    font-size: 2.25rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #002F00;
}
.chy+.desc {
    margin-top: -10px;
}
.desc {
    font-size: 0.8rem;
    margin-left: 4rem;
    margin-right: 4rem;
    font-family: 'Outfit', sans-serif;
}
.text-center {
    text-align: center;
}
/* |> Header */
header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 96vw;
    height: 100%;
    overflow: hidden;
}
.header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}
.header div {
    display: flex;
    flex: 1;
    padding-top: 5rem
}
.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    color: var(--text);
}
.header-text h1 {
    font-weight: 900;
    text-transform: uppercase;
}
.header-text h1::after {
    content: '!';
}

.header-image {
    position: relative;
    width: 100%;
    height: 30rem;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    flex: 1;
    z-index: -1;
}
.header-image img {
    object-fit: cover;
    border-radius: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.header-image img:first-of-type {
    position: absolute;
    top: 4rem;
    right: 18rem;
    width: 15rem;
    height: 15rem;
    z-index: 2;
}
.header-image img:nth-of-type(2) {
    position: absolute;
    width: 20rem;
    height: 20rem;
    top: 6rem;
    right: 5rem;
    z-index: 5;
}
/* .header-image img:nth-of-type(3) {
    position: absolute;
    width: 10rem;
    height: 10rem;
    right: 2rem;
    top: 18rem;
    z-index: 1;
} */
.header-image img:nth-of-type(3) {
    position: absolute;
    z-index: 3;
    width: 12rem;
    height: 12rem;
    right: 0rem;
    top: 10rem;
    z-index: 6;
}
.header-text button {
    font-family: 'Montserrat', sans-serif;
    align-self: center;
    width: 100%;
    min-width: 8rem;
    max-width: 20rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: var(--primary);
    border-color: rgba(152,210,116,0.4);
    color: var(--background);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
}


/* |> Custom */

.tree {
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 180%;
    overflow: hidden;
    
}
.tree-img {
    position: absolute;
    width: 100vh;
    height: 150vh;
    left: -20rem;
    background-color: #d3cb9f;
    mask: url('/cdn/icons/tree_filled.svg') no-repeat center / contain;
    -webkit-mask: url('/cdn/icons/tree_filled.svg') no-repeat center / contain;
}

/* |> Offer Section */

#offer-section {
    width: 100%;
    padding: 1rem;
}
#offer-section h2{
    text-align: center;
}
#offer-section p.desc {
    text-align: center;
}

.off-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 3px;
}
.off-item img{
    width: 15rem;
    height: 10rem;
    object-fit: cover;
    border-radius: .2rem;
    position: absolute;
    top: 0px;
    box-shadow: #43475545 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;}
.off-content {
    background-color: var(--background);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;    margin-top: 8rem;
    padding-top: 1rem;
    text-align: center;
    z-index: 1;
    border-radius: 10px;
}
.off-content span {
    font-weight: 800;
    text-transform: uppercase;
    color:#002F00;
    font-size: 1.2rem;
}
.off-content p {
    font-weight: 300;
    font-size: 0.8rem;
    height: 4rem;
}
.off-content button {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    border-radius: 50px;
    background-color: transparent;
    padding: .4rem 2rem .4rem 2rem;
    margin-bottom: 1.4rem;
    cursor: pointer;}
.offer_item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20rem;
    height: 25rem;
    overflow: hidden;
    border-radius: 1rem;
    background-color: rgba(0, 47, 0, 0.8);
}
.offer_item img {
    position: absolute;
    object-fit: cover;
    aspect-ratio: 9 / 16;
    width: 100%;
    z-index: -1;
}
.offer_content {
    display: flex;
    flex-direction: column;
    align-items:center;
    /* justify-content: space-evenly; */
    color: var(--background);
}
.offer_content h4 {
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    margin: 0.2rem;
}
.offer_content p {
    font-size: 0.7125rem;
    text-align: center;
    margin: 0.4rem;
    text-wrap: pretty;
    text-overflow: ellipsis;
    max-height: 0rem;
    overflow: hidden;
    transition: max-height 1.2s ease;
}
.offer_item:hover p {
    max-height: 200px;
}
.offer_content a {
    position: absolute;
    bottom: 2rem;
    font-size: 0.8rem;
    text-decoration: none;
    color: var(--background);
    padding: 0.4rem 0.8rem .4rem .8rem;
    background-color: var(--primary);
    border-radius: 4rem;
    transition: all 0.4s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.offer_content a:hover {
    background-color: #298000;
    padding: 0.4rem 1.3rem 0.4rem 1.3rem;
}
.offer_content a:focus {
    background-color: #002F00;
    padding: 0.4rem 1.3rem 0.4rem 1.3rem;
}

.offer_navi, .offer_navi_next {
    top: 2.6rem !important;
    background-color: transparent !important;
    color: #fff;
    font-size: 1.4rem;
    outline: var(--background) solid 2px;
}

/* |> Coop Section */

/* .coop {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    gap: 2em;
    margin: 2rem 1rem 2em 1rem;
}
.coop-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1 1 auto;
    width: 20rem;
    height: 20rem;
    background: rgba(255,255,255,0.55);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 5px;
    justify-content: space-around;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.coop-item .number {
    display: flex;
    position: absolute;
    top: -20px;
    justify-content: center;
    align-items: center;
    background-color: var(--background-two);
    width: 30px;
    height: 30px;
    border-radius: 50px;
}
.coop-item h5 {
    margin: 0px;
    font-size: 1em;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    text-align: center;
}
.coop-item label {
    text-align: center;
    font-size: 0.8rem;
}
.coop-item img {
    width: 10rem;
    height: 10rem;
}
.coop-item div{
    margin-top: 0.3rem;
    padding: 0;
    display: flex;
    flex-direction: column;
} */
#coop-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 2rem;
    justify-content: center;
    align-items: center;
}
.timeline {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    gap: 0rem;
    width: 100%;
}
.timeline .box {
    display: flex;
    width: 90%;
    align-items: center;
    position: relative;
}
.timeline .item {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: .4rem 2rem .4rem 2rem;
}
.timeline .item .content {
    background-color: rgba(152, 210, 116, 0.8);
    padding: 1rem;
}
.timeline .box.left .content {
    border-radius: 0 2rem 2rem 2rem;
}
.timeline .box.right .content {
    border-radius: 2rem 0 2rem 2rem;
}
.timeline .box::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: #002F00;
    top: 0;
    left: 50%;
    right: 50%;
}
.timeline .box:last-of-type::after {
    border-bottom-left-radius: 20rem;
    border-bottom-right-radius: 20rem;
}
.timeline .box:first-of-type::after {
    border-top-left-radius: 20rem;
    border-top-right-radius: 20rem;
}
.timeline .box.right {
    justify-content: flex-start;
}
.timeline .box.left {
    justify-content: flex-end;
}
.timeline .box.right .item {
    justify-content: flex-end;
    align-items: flex-end;
    text-align: end;
}

.timeline .box.left .item .content{
    justify-content: flex-start;
    align-items: flex-start;
}

.timeline .item h4 {
    color: var(--text);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.225rem;
    margin: 0;
    z-index: 3;
}
.timeline .item p {
    margin: 0;
    font-size: 0.8125rem;
    z-index: 3;
    font-family: 'Outfit';
    font-weight: 300;
    color: #002F00;
}
.timeline .item .icon {
    position: absolute;
    top: 1.2rem;
    right: 50%;
    left: calc(50% - .65rem);
    width: 1.6rem;
    height: 1.6rem;
    text-align: center;
    color: var(--background);
    font-weight: 900;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    border-radius: 50%;
    outline: #002F00 solid 5px;
}
.timeline .box.right .item img {
    position: absolute;
    max-width: 10rem;
    top: -10rem;
    left: -4rem;
    z-index: -1;
}
.timeline .box.left .item img {
    position: absolute;
    max-width: 10rem;
    top: -10rem;
    right: -4rem;
    z-index: -1;
}
.timeline .item .image {
    position: relative;
}

/* |> CONTACT SECTION */

#contact-section {
    display: flex;
    justify-content: center;
    width: 100%;
}
#contact-section .contact-container {
    background: rgba(152,210,116,0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(152,210,116,0.2);
    width: 80vw;
    padding: .8rem 2rem 3rem 2rem;
    border-radius: 1rem;
}
.contact-container .chy, .contact-container .desc{
    text-align: center;
}
.contact-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 1rem;
}
.contact-right  {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-evenly;
    gap: 0.4rem;
}
.contact-right .item {
    display: flex;
    flex-direction: column;
    justify-content:space-around;
    align-items: center;
    background-color: var(--primary);
    padding: 1.2rem;
    border-radius: .2rem;
    color: var(--background);
    width: 18rem;
    position: relative;
}

.contact-right .item i {
    position: absolute;
    top: -1rem;
    left: -.4rem;
    font-size: 2rem;
    transform: rotate(-15deg);
}
.contact-right .item:first-of-type i {
    top: -1rem;
    left: -.4rem;
    font-size: 2rem;
    transform: rotate(15deg);
}

.contact-right .item a {
    margin: 0;
    text-decoration: none;
    font-weight: 900;
    color: var(--background);
    font-family: 'Outfit', sans-serif;
}
.contact-right .item label {
    font-size: 0.825rem;
}
.contact-right .item label {
    font-size: 0.825rem;
}

/* |> MAP */

.contact-content .map {
    width: 55%;
}
.contact-content .map iframe {
    outline: var(--background-two) solid 0.2rem;
    border-radius: .6rem;
    margin-top: .4rem;
}

/* |> FORM */
.form {
    display: flex;
    width: 40%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.form h4 {
    margin: 0;
    color: #002F00;
    font-weight: 800;
}
.form p.label {
    text-align: center;
    margin: 0;
    color: var(--text)
}
.form-title {
    width: 100%;
    text-align: center;
    justify-content: center;
}
.form h4~label{
    text-align: center;
    font-size: 0.625rem;
}

.form-item {
    display: flex;
    flex-direction: column;
}
.form-item label {
    font-size: 0.825rem;
    margin: 0.2rem;
}
.form-item input {
    width: 20rem;
    border: none;
    outline: var(--background-two) solid 0.1rem;
    border-radius: 0.4rem;
    padding: 0.2rem;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-size: 0.825rem;
}
.form-item textarea {
    width: 20rem;
    resize:vertical;
    border: none;
    outline: var(--background-two) solid 0.1rem;
    border-radius: 0.4rem;
    padding: 0.2rem;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}


.form-item input:focus, .form-item textarea:focus {
    outline: var(--primary) solid 0.2rem;
}
.form-item input:not(input:placeholder-shown) {
    border: none;
    outline: var(--primary) solid 0.1rem;
    border-radius: 0.4rem;
    padding: 0.2rem;
}
.form .submit {
    display: flex;
    align-items: center;
    width: 100%;
}
.form p {
    font-size: 0.625rem;
    margin-inline: 0.2rem;
}
.form a {
    text-decoration:underline;
    color: var(--text);
    font-weight: 600;
}

.form button {
    margin-left: auto;
    border-radius: 20px;
    border: none;
    background-color: var(--primary);
    color: white;
    padding-inline: .8rem;
    padding-block: .3rem;
    outline: var(--background-two) solid 0.15rem;
    margin-block: 1rem;
    width: 10rem;
}
.form button:hover {
    outline: none;
}

/* SECTION: COOPS */


/* #partner-section .slider {
    width: 80vw;
    overflow: hidden;
}
#partner-section .slider .slides{
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    display: flex;
    gap: .4rem;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
}
#partner-section .slider .slide{
    scroll-snap-align: center;
    display: grid;
    place-content: center;
}
#partner-section .slider .slide a {
    display: flex;
    justify-content: center;
    align-items: center;
}
#partner-section .slider .slide img, #partner-section .slider .slide svg {
    width: 10rem;
}
#partner-section .slides::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
#partner-section .slides::-webkit-scrollbar-track {
    background: transparent;
}
#partner-section .slider .slides::-webkit-scrollbar-thumb {
    background-color: #002F00;
    border-radius: 10px;
} */
#partner-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
#slider2 {
    width: 100%;
    position: relative;
}
#slider2::before {
    position: absolute;
    content: '';
    background: rgb(255,255,255);
background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(243,241,229,1) 100%);
    width: 20%;
    height: 100%;
    z-index: 20;
    pointer-events: none;
}
#slider2::after {
    position: absolute;
    content: '';
    background: rgb(255,255,255);
background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(243,241,229,1) 100%);
    width: 20%;
    height: 100%;
    z-index: 20;
    top: 0;
    right: 0;
    pointer-events: none;
}
#slider2 a {
    display: grid;
    place-content: center;
}
#slider2 img {
    width: 10rem;
    aspect-ratio: 1/1;
}
/* #slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  #partner-section .slider {
    display: flex;
    flex-wrap: nowrap;
    animation: slide 20s linear infinite;
    gap: 1rem;
  }
  
  #partner-section .slide {
    flex: 0 0 25%; 
    display: flex;
    justify-content: center; 
    align-items: center; 
  }
  #slider-container::before {
    position: absolute;
    background-color: #298000;
    width: 10rem;
    height: 10rem;
  }
  
  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100% + 2rem));
    }
  }
  .slide img {
    width: 10rem;
    aspect-ratio: 1/1;
  }
  .slide a {
    display: grid;
    place-content: center;
  } */
  


/* MEDIA: PHONE */


@media all and (max-width: 540px) {
    .chy {
        font-size: 2.4rem;
    }
    .desc {
        font-size: 0.78rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .tree  {
        width: 100%;
        height: 180%;
    }
    .tree-img {
        width: 150%;
    }
    header {
        width: 95vw;
    }
    /* |> PHONE - CONTACT */
    .form {
        justify-content: center;
    }
    .form input, .form textarea{
        width: 13rem;
    }
    .form p {
        margin-left: 0px;
    }
    .header {
        flex-direction: column;
        margin-left: auto;
        width: 110%;
    }
    .header-image svg {
        position: absolute;
        top: -2.325rem !important;
        z-index: 2;
    }
    .off-content p {
        height: 4rem;
    }
    #slider li {
        margin-right: 5rem;
    }
    
}
@media screen and (max-width: 700px) {
    .timeline .box::after {
        content: '';
        position: absolute;
        width: 5px;
        height: 100%;
        background-color: #002F00;
        top: 0;
        left: 1.4rem;
    }
    .timeline .item .icon {
        right: auto;
        left: .75rem;
        top: 1.2rem;
    }
    .timeline .box.right .item {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: start;
    }
    .timeline .item {
        width: 100%;
        text-align:left;
        margin-left: 2rem;
    }
    .timeline .item .content {
        border-radius: 0 2rem 2rem 2rem !important;
    }
    .timeline img {
        display: none;
        top: 0;
        left: 0;
    }
}


/* MEDIA: TABLET */

@media screen and (max-width: 800px) {
    .coop {
        margin: 2rem 1rem 0 1rem;
    }
    .coop-item {
        flex-grow: 1;
        gap: 1rem;
    }
    /* .foother-logo {
        justify-content: center;
        align-items: center;
        text-align: center;
    } */
        /* |> PHONE - CONTACT */
    .form {
        width: 100%;
        justify-content: center;
    }
    .form input{
        width: 13rem;
    }
    .contact-content {
        flex-direction: column;
    }
    .map {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100% !important;
    }
    .map label {
        width: 100%;
        text-align: center;
    }
    .map iframe {
        margin-block: 1rem;
        height: 20rem;
    }
    .off-content p {
        height: 2rem;
    }

}


/* MEDIA: LORGE */
@media screen and (max-width: 1920px) {
    .tree {
        height: 150%;
    }
    .slider .slides {
        justify-content: center;
    }
}

@media screen and (min-width: 1940px){
    .tree-img {
        top: 20rem;
    }
    body {
        display: grid;
        justify-content: center;
    }
    header {
        display: flex;
        position: static;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }
    .header {
        width: 60svw;
    }
    main {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: static;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }
    .container {
        width: 60svw !important;
    }
    .contact-container {
        width: 60svw !important;
    }
    
    /* .foother-logo label {
        font-size: 1rem;
    }
    .foother-links h5 {
        font-size: 1.2rem;
    }
    .foother-links a {
        font-size: 1.2rem;
    } */

    .chy {
        font-size: 2.625rem;
    }
    .desc {
        font-size: 1.125rem;
    }

    .coop-item h5 {
        font-size: 1.425rem;
    }
    .coop-item label {
        font-size: 1rem;
    }
    
        
    .off-content span {
        font-size: 1.325rem;
    }
    .off-content p {
        font-size: 1rem;
    }
    .off-content button {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1200px){
    .form-item input, .form-item textarea{
        width: 15rem;
    }
    .header-image img:first-of-type {
        position: absolute;
        top: 20rem;
        right: 15rem;
        width: 10rem;
        height: 10rem;
        z-index: 10;
    }

}
@media screen and (max-width: 900px){
    .header-image {
        position: absolute;
        width: 100%;
        left: 0;
    }
    .img-container {
        position: relative;
        width: 100%;
        height: 100%;
    }
    .header-image img {
        display: none;
    }
    .header-image img:first-of-type {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        border-radius: 0;
        -webkit-filter: brightness(0.7);
        filter: brightness(0.7);
    }
    .header-image svg {
        position: absolute;
        top: -7rem;
        z-index: 2;
    }
    .header-text {
        color: var(--background);
        justify-content: center;
        align-items: center;
    }
    .header-text h1 {
        font-size: 1.925rem;
        margin-bottom: 0;
    }
    .header-text p {
        text-align: center;
    }
    .header-text button {
        font-weight: 700;
        text-transform: uppercase;
        color: var(--background);
        border-color: rgba(152,210,116,0.4);
        background-color: var(--primary);
    }

}
