

/* Title */
.title p{
    text-align: center;

    color: #146048;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 98.95%;
}

/* Action */
.action{
    display: flex;
    justify-content: center;
    gap: 95px;

    margin-top: 60px;
    margin-bottom: 97px;
    
   .hero-graphic{
      min-width: 0;
   } 
}

.action-inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Respect */
.respect{
    background-color: #CEF17B;
    padding: 50px 268px 43px 268px;
    width: calc(100vw - 536px);

    text-align: center;

    h2{
        color: #093628;
        text-align: center;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: 92%;

        margin-bottom: 42px;
    }

    p{
        color: #146048;
        text-align: center;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 119%;
    }
}

/* Why */
.why{
    background: #F2F6EC;

    display: flex;
    justify-content: center;
    gap: 43px;

    padding-top: 104px;
    padding-bottom: 112px;

    ul{
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;

        margin: 0;
        padding: 0;
    }

    li{
        background: #FAFFF1;
        border-radius: 6px;

        width: 248px;
        height: 170px;

        text-align: center;
        padding: 16px 15px 22px 15px;
        box-shadow: 0 0 17px 0 rgba(206, 241, 123, 0.50), 0 4px 4px 0 rgba(0, 19, 17, 0.10);
    }

    p{
        color: #146048;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 111.7%;
    }

    h3{
        color: #093628;
        font-size: 25px;
        font-style: normal;
        font-weight: 700;
        line-height: 92%;

        margin-top: 13px;
    }
}

.why-title{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: max-content;

    img{
        align-self: end;
    }
}

/* Mockup */
.mockup{
    display: flex;
    justify-content: space-between;
}

.mockup-mockup{
    margin-left: -360px;
}

.mockup-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mockup-text h2{
    color: #093628;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 98.95%; /* 39.58px */

    margin-bottom: 35px;
}

.mockup-text h2 span{
    background-image: linear-gradient(#CEF17B, #CEF17B);
    background-size: 100% 65%;
    background-repeat: no-repeat;
    background-position: 0 85%;
}

#logo::before {
  background-image: url('../static/images/logo_dark.svg');
  opacity: 1;
}

#logo::after {
  background-image: url('../static/images/logo_normal.svg');
  opacity: 0;
}

@media (max-width: 960px) {
    .action{
        flex-direction: column;
    }

    .respect{
        width: calc(100vw - 100px);
    }

    .why{
        flex-direction: column;
    }

    .why ul{
        flex-direction: column;
        align-items: center;
    }

    .why-title {
      flex-direction: row;
      width: 278px;
      align-self: center;
    }

    .mockup{
        flex-direction: column;
    }

    .mockup-text h2{
        margin-top: 85px;
    }

    .mockup-mockup{
        max-width: 200vw;
        width: 200vw;
        align-self: center;
        overflow: hidden;
        margin: 0 0 0 -23px;
    }
}
