@import url("animations.css");
@import url("fonts.css");
@import url("responsive.css");
/* RESET */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* VARIABLES */

:root {

    --space: clamp(5px, 1vw, 10px);
    --radius: 10px;
    --bg: #ffffff;
    --bg2: #f5f5f5;
    --bg3: #3a86ff;
    --bg4: #000000;
    --text: #595858;
    --accent: #3a86ff;


}

.ct1 {
    color: var(--text)
}

.txth0 {
    font-size: clamp(72px, 1vw, 82px);
    color: var(--bg3);
}

.txth1 {
    font-size: clamp(52px, 1vw, 82px);
    color: var(--text);
}

.txth2 {
    font-size: clamp(35px, 1vw, 40px);
    color: var(--text);
}

.txth3 {
    font-size: clamp(25px, 1vw, 35px)
}

.txth4 {
    font-size: clamp(18px, 1vw, 25px)
}

.font-ob {
    font-family: 'oswald-bold';
}

.font-rl {
    font-family: 'roboto-light';
}

.font-rb {
    font-family: 'roboto-black';
}

.font-rr {
    font-family: 'roboto-regular';
}

.block-row {
    display: flex;
    flex-direction: row;
}

.block-column {
    display: flex;
    flex-direction: column;
}

.block-center {
    justify-content: center;
    align-items: center;
}

.block-top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}


/* BASE */

html {
    font-size: clamp(14px, 0.9vw, 18px);
}

body {
    font-family: system-ui;
    background: var(--bg);
    /*color: var(--text);*/
    min-height: 100vh;
    overflow-x: hidden;
}

/* APP LAYOUT */

.app {
    min-height: 100vh;
    display: grid;
    grid-template-rows:
        auto 1fr auto;
}

/* HEADER */

.header {
    position: absolute;
    padding: var(--space);
    background: var(--bg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* LAYOUT */

.layout {

    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;

}

/* SIDEBAR */

.sidebar {

    padding: var(--space);

    background: var(--bg2);

}

/* MAIN */

.main {
    padding: var(--space);
    overflow: auto;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    background: var(--bg2);
    display: grid;
    gap: var(--space);
    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));
}


.container1 {
    max-width: 1200px;
    margin: auto;
    display: grid;
    gap: var(--space);
    grid-template-columns: minmax(250px, 6fr) minmax(250px, 2fr);
    padding-bottom: 100px;
    background: var(--bg);

}

.container2 {
    padding-top: 50px;
    padding-bottom: 100px;
    max-width: 1200px;
    margin: auto;
    display: grid;
    gap: var(--space);
    grid-template-columns: 1fr;
    background: var(--bg);
}

.container3 {
    max-width: 1200px;
    margin: auto;
    background: var(--bg);
    display: grid;
    gap: var(--space);
    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));
    padding-top: 100px;
    padding-bottom: 100px;
}

.container4 {
    max-width: 1200px;
    margin: auto;
    background: var(--bg);
    display: grid;
    gap: var(--space);
    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));
}

.container5 {
    max-width: 1200px;
    margin: auto;
    background: var(--bg);
    display: grid;
    gap: var(--space);
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

}

.container-contact {
    padding-top: 150px;
    max-width: 1200px;
    margin: auto;
    background: var(--bg);
    display: grid;
    gap: var(--space);
    grid-template-columns: minmax(250px, 6fr) minmax(250px, 3fr);
}

.explain {
    padding-bottom: 20px;
    ;
}

.contcont {
    padding-right: 100px;
}

/* CARDS */

.card {

    background: var(--bg);
    padding: var(--space);
    border-radius: var(--radius);
    overflow-x: hidden;

}

.forty {
    padding-top: 100px;
}

.ss-titre {
    margin: 0px 0px 0 0px;
    padding: var(--space);

}

.square {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*  border: 1px #595858 solid;*/
    border-radius: 5px;
    box-shadow: 2px 2px 2px 2px rgba(89, 88, 88, 0.5);
}

.intosquare {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 240px;
    height: 400px;
    background: var(--bg);
    /* border:1px blue solid;*/
    padding: var(--space);
}

.intosquare-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*  border:1px green solid;*/
    width: 100%;
    height: 100px;
}

.intosquare-img img {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
}




.select-choice-cookies {
    background: var(--bg);
    width: 800px;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    min-height: 0;
    padding: var(--space);
    border-radius: 0 0 10px 10px;
}

.button {
    background: var(--bg3);
    color: white;
    padding: var(--space);
    border-radius: 3px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    font-size: clamp(18px, 0.9vw, 28px);
    border: 1px rgb(195, 193, 193) solid;
}

.button:hover {
    color: rgba(7, 42, 99, 1);
}

.powered-cookies {
    width: 800px;
    font-style: italic;
    background: var(--bg);
    border-top: 1px rgb(210, 209, 209) solid;

    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 7px 10px 0px;
    z-index: 1000000000;
}

/******************************************* MENU ******************************************************************/
.menu-item {
    position: relative;
    margin-left: 30px;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 10px;
    min-width: 200px;
    width: 420px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s;
    box-shadow: 2px 2px 2px 2px rgba(89, 88, 88, 0.5);
}

.sub-block-row,
.goext {
    display: flex;
    flex-direction: row;
    padding: 8px;
    cursor: pointer;
}

.sub-block-row:hover,
.goext:hover {
    background: var(--bg2);
}

.menu-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu {
    position: sticky;
    top: 0;
    background: var(--bg);
    color: var(--text);
    padding: var(--space);
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: var(--space);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.menu.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.menu a {
    text-decoration: none;
    font-weight: 500;
}


.logo {
    position: relative;
    top: 0;
    left: 0;
    padding-left: 20px;
    cursor: pointer;
}

.logo img {
    width: 150px;
}

.numerotelo {
    position: relative;
    top: -6px;
    margin-right: 100px;
}

.liens {
    padding: var(--space);
    display: flex;
    flex-direction: row;
}


.liens-libres {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.liens-link {

    color: var(--text)
}

.liens-link:hover {
    opacity: 0.5;
    cursor: pointer;
}

.liens-contact {
    margin-left: 50px;

}

.new-menu-p {
    display: none;
}

#portable-section {
    display: none;

}

.sub-nolink {
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.sub-boardnolink {
    display: flex;
    flex-direction: row;
    margin-left: 50px;
    width: 260px;
    background: var(--bg2);
    border-radius: 4px;
}

.sub-boardnolink-p {
    display: flex;
    flex-direction: row;
    background: var(--bg2);
    padding-left: 40px;
}

.design-txt-p {
    font-weight: bold;
    color: var(--text);
}

/******************************************* COOKIES ******************************************************************/
.block-cookies {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: enterCookies 1s;
}

.get-cookies {
    position: fixed;
    bottom: 10px;
    left: 10px;
    cursor: pointer;
    z-index: 10000;
}

.get-cookies img {

    width: 50px;
}

.show-cookies {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.45);
}

.info-cookies {
    position: relative;
    background: var(--bg);
    max-width: 800px;
    max-height: 600px;
    overflow-y: scroll;
    margin: 0px;
    padding: 20px;
    color: var(--text);
}

.saveCookies:nth-child(2) {
    margin: 0 10px 0 10px;
}

.place-getcookies-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.cook1 {
    position: relative;
    width: 800px;
    padding: 10px 20px 10px 20px;
    background: var(--bg);
    border-radius: 10px 10px 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px rgb(213, 211, 211) solid;
}

.cookies-back {
    position: relative;
    width: 120px;
}

.cbmgouv {
    position: relative;
    left: 300px;
    top: 10px;
}

.mitreow {
    display: flex;
    flex-direction: row;
}

.cook1 img {
    width: 100%;
    height: auto;
}

.place-getcookies {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.toggle {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle input {
    display: none;
}

.toggle span {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 20px;
    transition: .3s;
}

.toggle span::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    left: 2px;
    top: 2px;
    background: white;
    border-radius: 50%;
    transition: .3s;
}

.toggle input:checked+span {
    background: #22c55e;
}

.toggle input:checked+span::before {
    transform: translateX(24px);
}

.toggle:hover {
    cursor: pointer;
}

.describe-cookie {
    padding-bottom: 15px;
}

.green {
    color: #22c55e;
    font-weight: bold;
    text-align: right;
}

/********************************* FOOTER *****************************************/
/* FOOTER */
.footer {
    overflow: hidden;
}

/*
.footere {
    width: 100%;
    text-align: center;
    background: var(--bg4);
    margin: auto;
    display: grid;
    gap: var(--space);
    grid-template-rows:
        repeat(auto-fit, minmax(250px, 1fr));
    overflow: hidden;
}
*/
.entete {
    position: relative;
    width: 100%;
    margin: auto;
    background: var(--bg2);
    display: grid;
    gap: var(--space);
    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));
    background-color: white;
    height: 300px;

}

.raccord {
    position: relative;
    width: 100%;
    margin: auto;
    background: var(--bg2);
    display: grid;
    gap: var(--space);
    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));
    background-color: white;
    height: auto;

}

.raccordtop {
    position: relative;

}

.raccord img,
.raccordtop img {
    width: 100%;
}

.logo-foot {
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
    margin: auto;
    background: var(--bg4);
    display: grid;
    gap: var(--space);
    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));
}

#raccourcis {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 50px;
    background: var(--bg4);
}

.block-raccourcis {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 80px 0 80px;
}

.title-rac {
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'roboto-black';
    font-size: 26px;
    padding: 0px 0 30px 0;
}

.content-rac {
    position: relative;
    font-family: 'roboto-thin';
    font-size: 18px;
    z-index: 10;
}

.link-rac {
    position: relative;
    padding: 8px;
}

.link-footer,
.link-footer2 {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.link-footer3 {
    color: red;
    text-decoration: none;
    font-weight: bold;
}

.link-footer:hover,
.link-footer2:hover,
.link-footer3:hover {
    color: rgb(24, 177, 21);
    text-decoration: none;
    cursor: pointer;
}

#copyright {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    border-top: 1px rgb(123, 123, 124, 0.7) solid;
    background: var(--bg4);
}

.copyright {
    padding: 10px;
    color: white;
}

/******************************VIEWS*******************************/
.introduce {
    position: relative;
    top: 0;
    height: 500px;

}

.introduce-title {
    position: absolute;
    top: 200px;
    color: white;
    font-family: 'roboto-black';
    font-size: clamp(52px, 1vw, 82px);
}

.img-partenaire {
    padding: 50px;

}

.img-partenaire img {
    width: 100%;
}

/**************************CONTACT****************************/
select {
    width: 340px;
    font-size: 18px;
    padding: 5px;
    background-color: white;
    color: black;
    margin-bottom: 15px;
}

#autre-container {
    display: none;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel] {
    background-color: white !important;
    color: black !important;
    width: 270px;
    font-size: 18px;
    margin: 10px 20px 10px 10px;
    padding: 5px;
}

input[type="checkbox"] {
    background-color: white !important;
    accent-color: #ff0000;
    margin: 10px;
    padding: 10px;
    width: 14px;
    height: 14px;
    border: 1px solid #000;
}

input[type="radio"] {
    accent-color: #ff0000;
}

textarea {
    font-size: 18px;
    margin: 20px 0px 20px 0px;
    padding: 5px;
    background-color: white;
    color: black;
}

label {
    color: black;
}

fieldset {
    padding: 5px;
}

.link-pentest,
.link-sensibilisation {
    text-decoration: none;
    color: red;
}

.link-pentest:hover {
    color: rgb(76, 15, 229);
}

.errors {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: red;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 20px;
}

.trmobi {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}