* {
    box-sizing: content-box;
}

body {
    position: relative;
    margin: auto;

    font-family: "Roboto Condensed", helvetica, sans-serif;
    font-size: 16px;

    --color-primary: black;
    --color-primary-inv: white;
    --color-secondary: #4a75b5;
    --color-secondary-inv: white;
    --color-tertiary: #EBC24E;
    --color-tertiary-inv: black;

    overflow-x: hidden;

    --padding: 3em;
}

.logo {
    height: 5em;
}

.title1 {
    font-size: 4em;
}

.title2 {
    font-size: 3em;
}

.title3 {
    font-size: 2em;
}

.content {
    font-size: 1em;
    line-height: 1.5em;
    text-align: justify;
}

.contentbold {
    font-weight: bold;
}


a {
    text-decoration: none;
    color: inherit;
}

section {
    display: block;
    padding: calc(1 * var(--padding)) calc(2 * var(--padding));
    overflow-x: hidden;
}

.menu {
    /* position:sticky; */
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black !important;
    padding: 1em calc(2 * var(--padding)) 1em calc(2 * var(--padding));
}

.menu * {
    align-items: center;
}

.menu .left a {
    margin: 0 0.5em;
}

.menu-toggle {
    display: none;
}


.vertical {
    display: flex;
    flex-direction: column;
    gap: var(--padding);
    align-items: flex-start;
}

.vertical>* {
    width: 100%;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 0.8em 2em;
    border-radius: 10px;
    margin-right: 0.5em;
    margin-bottom: 0.5em;
}

.round-img {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
}

.vignette-img {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 100%;
    max-width: 35em;
    height: 25em;
    object-fit: cover;
}


/* COLORS */
.primary {
    background: var(--color-primary);
    color: var(--color-primary-inv);
}

.primary-inv {
    background: var(--color-primary-inv);
    color: var(--color-primary);
}

.secondary {
    background: var(--color-secondary);
    color: var(--color-secondary-inv);
}

.tertiary {
    background: var(--color-tertiary);
    color: var(--color-tertiary-inv);
}

svg.arrow {
    width: 3em;
    height: 3em;
}

svg.arrow:hover {
    --svg-fill: var(--color-tertiary);
    --svg-path: var(--color-tertiary-inv);
}


/* COLUMNS */
.col2 {
    display: flex;
    align-items: flex-start;
    gap: calc(1 * var(--padding));
    justify-content: space-around;
}

.col2>* {
    width: calc(50% - var(--padding));
}


/* FLEX PLACEMENT */
.grow {
    flex-grow: 1;
}

.wrap {
    flex-wrap: wrap;
}

.left {
    justify-content: left;
    display: flex;
}

.right {
    justify-content: flex-end;
    display: flex;
}

.centered {
    text-align: center;
    justify-content: center;
}


.vignette {
    padding: var(--padding);
    background-color: white;
    float: right;
    min-width: 325px;
}

.price {
    color: #C39000
}

.presentation {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.presentation img {
    max-width: 40%;
    min-width: 300px;
}

.presentation .vignette {
    max-width: 60%;
    padding: unset;
    border-radius: unset;
    outline: var(--padding) solid white;
}

.image-pos {
    background: url("../assets/imagepos.png");
    height: 40em;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.image-pos .vignette {
    max-width: 325px;
    width: 100%;
    min-width: unset;
}

[hidden] {
    display: none;
}

footer {
    padding: var(--padding);
}

footer .col2 .vertical {
    gap: 1em;
    width: fit-content;
}



@media only screen and (max-width: 1000px) {
    body {
        font-size: 14px;
        --padding: 2em;
    }
}

@media only screen and (max-width: 700px) {
    body {
        font-size: 12px;
        --padding: 1em;
    }

    .presentation {
        flex-wrap: wrap;

    }

    .presentation .vignette {
        max-width: unset;
        width: 100%;
    }

    .menu-toggle {
        display: inline-block;
        position: sticky;
        top: 0;
        padding: 1em;
        border-radius: 50%;
        z-index: 10;
        border: 1 px solid;
    }

    .menu {
        top: 0;
        box-sizing: border-box;
        position: fixed;
        left: -200%;
        height: 100vh;
        /* width:100vw; */
        align-content: space-around;
        gap: unset;
        padding: 5em;
        flex-wrap: wrap;
    }

    .menu .left {
        flex-direction: column;
        gap: 3em;
        width: 100%;
    }


}

@media only screen and (max-width: 500px) {
    body {
        font-size: 12px;
        --padding: 0.6em;
    }

    .col2 {
        flex-wrap: wrap;
    }

    .col2>* {
        width: 100%;
    }

    .photo>img {
        max-height: 350px;
    }
}




/* Styling the container */
.scrolling-container {
    width: 100%;
    display: flex;
    align-items: center;
}

.scroll-left {
    justify-content: flex-start;
    animation: scroll-left 10s linear infinite; 
}
.scroll-right {
    justify-content: flex-end;
    animation: scroll-right 10s linear infinite; 
}
/* Styling the content to hold the images */
.scrolling-content {
    white-space: nowrap;
    display: inline-block;
    /* */
    /* Adjust the animation duration as needed */
}
/* Styling for the images */
.scrolling-content img {
    display: inline-block;
    width: auto;
    /* Adjust the width of the images as needed */
    height: 5em;
    margin-right: 5em;
    /* Adjust the spacing between images as needed */
}

/* To remove extra whitespace at the end */
.scrolling-content img:last-child {
    margin-right: 0;
}

/* Keyframes animation for horizontal scrolling */
@keyframes scroll-left {
    0% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(-100%);
        /* Adjust this value to control the scrolling speed */
    }
}
/* Keyframes animation for horizontal scrolling */
@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(100%);
        /* Adjust this value to control the scrolling speed */
    }
}