.Logistics-wrapper {
    background: #f6f6f6;
    padding-block: 50px;

    h2 {
        font-size: 19px;
        font-weight: 800;
        letter-spacing: 2.1px;
        color: #c18a54;
    }

    ul {
        margin-top: 20px;

        li {
            margin-bottom: 15px;
            font-weight: 400;
            color: #7a7a7a;
            line-height: 25px;

            a {
                display: flex;
                align-items: center;
                justify-content: start;
                gap: 10px;
                font-size: 20px;
                font-weight: 400;
                color: #7a7a7a;
                line-height: 25px;
                width: fit-content;

                span {
                    place-content: center;
                }

                img {
                    width: 49px;
                }
            }
        }
    }

    .logo-side {
        height: 100%;
        place-content: center;
        text-align: center;

        h2 {
            font-size: clamp(0.6875rem, 0.4148rem + 1.3636vw, 1.4375rem);
            font-weight: 600;
            letter-spacing: 2.1px;
            color: #1b1b1b;
            margin-top: 10px;
        }
    }
}

.person-contact-wrapper {
    h2 {
        font-weight: 600;
        color: #525252;
        font-size: clamp(1.5625rem, 1.4034rem + 0.7955vw, 2rem);
    }

    padding-block: 50px;

    ul {
        margin-top: 20px;

        li {
            margin-bottom: 15px;
            font-weight: 400;
            color: #7a7a7a;
            line-height: 25px;

            a {
                display: flex;
                align-items: center;
                justify-content: start;
                gap: 10px;
                font-size: 20px;
                font-weight: 400;
                color: #7a7a7a;
                line-height: 25px;
                width: fit-content;

                h3 {
                    font-size: clamp(1.25rem, 1.1136rem + 0.6818vw, 1.625rem);
                    font-weight: 600;
                }

                span {
                    place-content: center;
                }

                img {
                    width: 49px;
                    height: 49px;
                    flex-shrink: 0;
                }
            }
        }
    }
}

@media (max-width:767px) {

    .person-contact-wrapper,
    .Logistics-wrapper {
        ul {
            margin-top: 20px;

            li {
                margin-bottom: 15px;
                font-weight: 400;
                color: #7a7a7a;
                line-height: 25px;
                display: flex;
                justify-content: center;

                a {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    text-align: center;


                }
            }
        }
    }
}