<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.at-your-service-container {
    position: relative;
    width: 100%;
    /*height: 100%;*/
    background-color: transparent;
    padding: 2rem 0;
    color: #000;

    /*            min-width: 1000px; */
    margin: 0 auto;

}

.at-your-service__header {
    width: 100%;
    text-align: center;
    margin-bottom: 3em;
}

.at-your-service__header h2 {
    font-family: "linotype-didot", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 2.1875rem;
    font-weight: normal;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;

}

.at-your-service__header p {
    font-family: "minion-pro", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.28;

}

.at-your-service__header p a {
    color: inherit;
    font-family: "proxima-nova", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    /*text-decoration: underline;*/
    font-size: 0.8125rem;
    letter-spacing: 1.5px;
    border-bottom: 0.5px solid #000;
    margin: 1em 0 0;
    line-height: 1.1;
}

.at-your-service__header p a:hover {
    text-decoration: none;
}

/*.at-your-service-items-container {
                    width: 100%;
                    height: 100%;
                    display: flex;
                    flex-wrap: wrap;
                    gap: 2em;
                    justify-content: center;
                    align-items: flex-start;
                }*/

.at-your-service-items-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
    padding: 0 0 5%;
    max-width: 1450px;
    width: 100%;
    margin: 0 auto;
    /*border: 1px solid red;*/
    overflow: hidden;

}

.at-your-service-item {
    width: 100%;
    padding: 0 2%;
    /*margin: 0 10px;*/
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

}

.at-your-service-item h3 {
    font-family: "proxima-nova", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 0.96875rem;
    font-weight: 600;
    line-height: 1.32;
    margin: .5em 0 .25em;

}

.at-your-service-item .icon-image {
    height: 50px;
    width: auto;
}

.at-your-service-item .icon-image img {
    max-height: 100%;
    width: auto;
}

.at-your-service-item p {
    font-size: 0.96875rem;
    font-family: "proxima-nova", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: normal;
    line-height: 1.35;
    margin: 0;
}

.at-your-service-item a {
    font-family: "proxima-nova", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-transform: uppercase;
    justify-self: flex-end;
    font-size: 0.8125rem;
    color: inherit;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-bottom: 0.5px solid #000;
    margin: 1em 0 0;
    line-height: 1.1;

}

.at-your-service-item a:hover {
    text-decoration: none;
}


@media only screen and (max-width: 1000px) {

    .at-your-service-container {
        min-width: auto;
        max-width: 100%;

    }


    .at-your-service__header p {
        width: 100%;
        padding: 0 5%;
    }

    .at-your-service-items-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 5em 2em;
        padding: 0 5%;

    }

    .at-your-service__header h2 {
        font-size: 1.5rem;
    }

    .at-your-service-container p br {
        display: none;
    }

    .at-your-service-item p {
        max-width: 200px;
    }
}</pre></body></html>