@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:ital@0;1&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

body {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.material-icons-outlined {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.menu-container {
    display: flex;
    width: 100%;
    height: 70px;
    justify-content: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid #d1d5db;
    position: fixed;
    top: 0;
    background-color: #fff;
    z-index: 3;
}

.menu {
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
}

.menu-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 185px;
}

.menu-logo {
    width: 50px;
    height: 50px;
    background-image: url('../img/misc/blue-logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.menu-title {
    font-weight: 500;
    font-size: 16px;
    color: oklch(42.4% 0.199 265.638);
}

.menu-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 370px;
}

.menu-item {
    font-size: 16px;
    color: oklch(21% 0.034 264.665); /* gray900 */
    padding: 12px;
}

.main-text {
    color: oklch(42.4% 0.199 265.638);
}

.page-container {
    width: 100%;
    margin-top: 70px;
}

.section-container {
    display: flex;
    width: 100%;
    justify-content: center;
}

.section {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin-top: 115px;
    margin-bottom: 100px;
}

.section-left {
    width: 550px;
}

.title {
    font-weight: 600;
    font-size: 25px;
    color: oklch(21% 0.034 264.665); /* gray900 */
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.section-right {
    width: 550px;
}

.description {
    color: oklch(21% 0.034 264.665); /* gray900 */
}

.action-button {
    background-color: oklch(42.4% 0.199 265.638);
    color: white;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 40px;
    display: inline-block;
    border-radius: 5px;
    transition: 0.15s;
    border: 1px solid oklch(42.4% 0.199 265.638);
}

.action-button:hover {
    box-shadow: 0 2px 2px rgba(11, 33, 74, 0.06);
    color: oklch(42.4% 0.199 265.638);
    background-color: #fff;
}

.secondary-button {
    background-color: #fff;
    color: oklch(42.4% 0.199 265.638);
    font-size: 18px;
    font-weight: 500;
    padding: 10px 40px;
    display: inline-block;
    border-radius: 5px;
    transition: 0.15s;
    border: 1px solid #fff;
}

.secondary-button:hover {
    box-shadow: 0 2px 2px rgba(11, 33, 74, 0.06);
    background-color: #fff;
}

.image-compiler {
    width: 500px;
    height: 500px;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-blue-container {
    display: flex;
    width: 100%;
    justify-content: center;
    background: linear-gradient(90deg, oklch(28.2% 0.091 267.935) 0%, oklch(48.8% 0.243 264.376) 100%);
    padding: 100px 0;
}

.section-blue {
    width: 1000px;
    padding: 30px 15px;
    border-radius: 7px;
}

.center-title {
    font-weight: 600;
    font-size: 30px;
    color: white;
    text-align: center;
}

.center-description {
    color: white;
    text-align: center;
}

.section2 {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin-top: 115px;
}

.list-elem {
    margin-top: 20px;
    color: oklch(21% 0.034 264.665); /* gray900 */
    display: flex;
}

.list-puce-1 {
    background-color: #4f4f4f;
    width: 0;
    height: 0;
    padding: 5px;
    margin-top: 5px;
    margin-right: 20px;
    border-radius: 5px;
}

.section-bg-grey {
    background: linear-gradient(90deg, #CAE1FF 0%, rgba(173, 183, 247, 0.1) 100%);
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-center-title {
    font-weight: 600;
    font-size: 25px;
    color: oklch(21% 0.034 264.665); /* gray900 */
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.list-puce-2 {
    background-color: oklch(42.4% 0.199 265.638);
    width: 0;
    height: 0;
    padding: 5px;
    margin-top: 5px;
    margin-right: 20px;
    border-radius: 2px;
}


@media screen and (max-width: 1200px) {
    .section {
        flex-wrap: wrap-reverse;
        width: 100%;
        max-width: 550px;
        padding: 10px;
        height: 100%;
        margin-bottom: 100px;
        text-align: center;
    }

    .section-left {
        width: 100%;
        margin-top: 75px;
        text-align: center;
    }

    .section-right {
        width: 100%;
    }

    .image-compiler {
        width: 100%;
        height: 150px;
        margin: 0;
    }

    .section-blue-container {
        padding: 0;
    }

    .section-blue {
        width: 100%;
    }

    .section2 {
        flex-wrap: wrap-reverse;
        width: 100%;
        max-width: 550px;
        padding: 10px;
        height: 100%;
        text-align: center;
    }
}


/* ---------- rajouts AB2 ----------*/
.footer-container {
    display: flex;
    justify-content: center;
}

footer {
    color: oklch(44.6% 0.03 256.802); /* gray600 */
    text-align: center;
    font-size: 14px;
}

b {
    font-weight: 500;
}

.menu-left:hover {
    cursor: pointer;
}

iframe {
    box-shadow: 0 2px 2px rgba(11, 33, 74, 0.06);
}

@media screen and (max-width: 1200px) {
    .menu-right {
        display: none;
    }
}


/* ---------- maj 30.01.2021 ---------- */
.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

:focus {
    outline: none;
}

.main-text .menu-item {
    padding: 12px;
    border: 1px solid oklch(42.4% 0.199 265.638);
    border-radius: 7px;
    color: oklch(42.4% 0.199 265.638);
}

#first-section {
    background: url("../img/background/dot.png");
}

#first-section .section-left {
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 2px rgba(11, 33, 74, 0.06);
}

#first-section .title {
    text-shadow: 0 0 4px #cfe2fb;
    font-size: 38px;
    color: oklch(42.4% 0.199 265.638);
}

.zoomable {
    transition: 0.5s;
}

.zoomable:hover {
    cursor: pointer;
    transform: scale(1.07);
}

@media screen and (max-width: 1200px) {
    .zoomable {
        max-width: 100%;
        height: unset;
    }
}
