/* Section Wrapper Body */

section.body-wrapper.wrap {
    background: var(--white);
    z-index: 1;
    padding: clamp(20px, 6vw, 80px);
    width: calc(90vw - clamp(40px, 12vw, 160px));
    border-radius: 2px;
    border: solid 6px var(--border-green);
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Our mission */

.mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 8vw, 80px);
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-text {
    padding: clamp(50px, 10vw, 100px) 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission-text h2 {
    color: var(--green);
    font-family: 'adobe-caslon-pro';
    font-size: clamp(30px, 5vw, 50px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%; 
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .mission-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Our Values */

.values-repeater {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.value-item {
    background: var(--green);
    padding: clamp(50px, 5vw, 100px);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding-left: 90px;
}

p.value-text {
    color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: ease 0.6s;
}

p.value-text.active {
    max-height: 200px;
    padding-top: 30px;
}

.values-logo {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
}

h3.value-title {
    color: var(--white);
    font-family: 'adobe-caslon-pro';
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: capitalize;
}

h2.values-title {
    color: var(--green);
    font-family:'adobe-caslon-pro';
    font-size: clamp(30px, 5vw, 50px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: clamp(50px, 10vw, 100px);
}

/* Our vision */

.vision-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 8vw, 80px);
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-text {
    padding: clamp(50px, 10vw, 100px) 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vision-text h2 {
    color: var(--green);
    font-family: 'adobe-caslon-pro';
    font-size: clamp(30px, 5vw, 50px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%; 
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .vision-wrapper {
        grid-template-columns: 1fr;
    }
}

/* How we work */

h2.how-we-work-title {
    color: var(--green);
    text-align: center;
    font-family:'adobe-caslon-pro';
    font-size: clamp(30px, 5vw, 50px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

p.how-we-work-description {
    color: var(--black);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    max-width: 627px;
    margin: auto;
}

.how-we-work-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.how-we-work-repeater {
    display: grid;
    justify-content: space-around;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
}

.work-step {
    display: flex;
    flex-direction: column;
    gap: 36px;
    text-decoration: none;
    cursor: default;
}

.work-icon {
    background: var(--green);
    display: flex;
    width: 72px;
    height: 72px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

p.work-text {
    color: var(--black);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

svg#how-we-work-line {
    display: flex;
    margin-top: 36px;
}

svg#how-we-work-line:nth-of-type(6) {
    display: none;
}

@media (max-width: 1200px) {
    svg#how-we-work-line {
        display: none;
    }

    .how-we-work-repeater {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 980px) {
    .values-repeater {
        grid-template-columns: 1fr;
    }
    p.value-text,
    p.value-text.active {
        max-height: fit-content;
        padding-top: 20px;
    }

    .value-item {
        padding: 40px!important;
        padding-left: 40px;
    }

    .values-logo {
        display: none;
    }
}

@media (max-width: 550px) {
    .how-we-work-repeater {
        grid-template-columns: 1fr;
    }
}

/* CTA */

.cta-wrapper img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

section.cta {
    position: relative;
    padding: clamp(50px, 10vw, 100px) 0;
}

.cta-wrapper .cta-content {
    position: relative;
    z-index: 1;
}

section.cta:before {
    background: linear-gradient(0deg, rgba(9, 32, 8, 0.00) 0%, #092008 100%);
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    margin-bottom: clamp(50px, 10vw, 100px);
}

h2.cta-title {
    color: var(--white);
    text-align: center;
    font-family:'adobe-caslon-pro';
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

