section#design .wrapper a{
    border: 1px solid #041f46;
    border-radius: 120px;
    color: #041f46;
    display: table;
    font-family: Flama, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    padding: 16px 24px;
    position:relative;
    overflow:hidden;
}

section#design .wrapper a::after{
    background-image: url(dist/images/arrow-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 16px;
    margin-left: 8px;
    width: 16px;
    transition: all .3s ease;
}


section#design .wrapper a:hover{
    color: #fff;
}

section#design .wrapper a::before{
    background: #041f46;
    border-radius: 120px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: width .35s ease;
    width: 0;
    z-index: -1;
}

section#design .wrapper a:hover::before{
    width:100%;
}

section#design .wrapper a:hover::after{
    transform: rotate(45deg);
}

section#sustainability .wrapper ul {
    margin-bottom: 40px;
}

section#sustainability .wrapper ul li {
    padding: 24px 57px;
    background: #09203C;
    margin-bottom: 36px;
    color: #fff;
    font-family: var(--font-flama);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
}

section#sustainability .wrapper ul li:last-child {
    margin-bottom: 0;
}

section#sustainability .wrapper ul li span {
    margin-left: 32px;
}

section#sustainability .wrapper ul li a {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

section#sustainability .wrapper ul li a .ml-auto {
    margin-right: auto;
}

section#sustainability .wrapper ul li a span {
    width: 100%;
    text-align: center;
    margin-left: 0;
}

section#sustainability .wrapper ul li .copy-wrapper {
    position: relative;
}

section#sustainability .wrapper ul li .copy-wrapper .copy-message {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

section#sustainability .wrapper ul li .copy-wrapper .copy-message.show {
    opacity: 1;
}
    