@font-face {
    font-family: 'SulphurPoint-Bold';
    src: url('../font-family/SulphurPoint-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'SulphurPoint-Regular';
    src: url('../font-family/SulphurPoint-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'SulphurPoint-Light';
    src: url('../font-family/SulphurPoint-Light.ttf') format('truetype');
}
/* *******************CORPS DU SITE********************* */
body{
    color: #333 ;
    font-size: medium;
    font-family: 'SulphurPoint-Bold';
    background-color: white;
    margin: auto;
}
/* *******************MENU PRINCIPAL******************** */
header{
    background-color: white;
    display: flex; 
    font-size: medium;
    font-weight: bold;
    margin: auto;
    justify-content: space-around;
}
.wrapper{
    text-align: center;
    margin: auto;
}
nav .option-accueil a{
    text-decoration: underline;
}
a{
    text-decoration: none;
    color: rgb(58, 58, 58);
    cursor: pointer;
}
nav li{
    display: inline-block;
    vertical-align: top;
   
}
nav li a{
    display: block;
    padding: 15px;
    font-size: large;
}
nav li a:hover{
    color: rgb(39, 28, 139);
}
nav li>ul>li:hover{
    border-top: none;
}
nav li>ul>li>a{
    display: block;
    padding: 20px;
}
.menu{
    width: 30px;
}
.checkbtn{
    display: none;
    margin: auto;
    width: fit-content;
    cursor: pointer;
}
.checkbtn-2 .menu{
    display: none;
    margin: auto;
    padding: 5px;
    width: 240px;
    border: none;
    border-radius: 20px;
    color: white;
    background: linear-gradient(90deg, rgb(6, 0, 26)25%, rgb(1, 106, 114)100%);
    cursor: pointer;
    margin-bottom: 10px;
    text-align: center;
}
.checkbtn-2 .menu:hover{
    background: linear-gradient(90deg, rgba(235,51,51,100%)0%, rgba(49,44,158,100%)100%);
    transition: 1s;
}
#check{
    display: none;
}
header .logo{
    margin: auto;
    width: fit-content;
}
header .logo img{
    width: 165px;
    object-fit: cover;
}
nav .page-en-vue a{
    color: rgb(0, 179, 192);
}
/**************************/
    section{
        margin-top: 40px;
        margin-bottom: 30px;
        padding: 10px;
    }
    section h1{
        margin: auto;
        width: fit-content;
    }
    section .border-titre{
        border-bottom: 10px solid;
        width: 50px;
        margin: auto;
        border-radius: 5px;
    }
    .section1 .en-tete{
        margin: auto;
        width: fit-content;
        text-align: center;
    }
    .section1 .en-tete p{
        font-family: 'SulphurPoint-Regular';
    }
    .section1 .domaines{
        display: flex;
        gap: 10px;
        margin: 10px;
        justify-content: space-around;
        margin-top: 40px;
    }
    .section1 .domaines div{
        display: flex;
        margin: auto;
        width: 500px;
        text-align: left;
        padding: 5px;
        border-top: 1px solid rgb(228, 228, 228);
        gap: 20px;
    }
    .section1 .domaines div .image{
        margin: auto;
        background-color: rgb(6, 0, 26);
        width: fit-content;
    }
    .section1 .domaines div .image img{
        width: 90px;
        transition: all 1s ease;
    }
    .section1 .domaines div .image img:hover{
        transform: scale(1.1);
    }
    .section1 .domaines p{
        font-family: 'SulphurPoint-Regular';
        margin-top: -20px;
        color: rgb(134, 134, 134);
    }
    .section1 .domaines input{
        width: 200px;
        padding: 5px;
        font-size: medium;
        border: none;
        border-radius: 15px;
        color: white;
        background: linear-gradient(90deg, rgb(6, 0, 26)25%, rgb(1, 106, 114)100%);
        cursor: pointer;
        margin-bottom: 10px;
    }
    .section1 .domaines input:hover{
        background: linear-gradient(90deg, rgba(235,51,51,100%)0%, rgba(49,44,158,100%)100%);
        transition: 1s;
    }
    /**************************************/
    .section2{
        background: linear-gradient(90deg, rgb(6, 0, 26)25%, rgb(1, 106, 114)100%);
        color: white;
        padding: 20px;
    }
    .section2:hover{
        background: linear-gradient(90deg, rgba(235,51,51,100%)0%, rgba(49,44,158,100%)100%);
        transition: 1s;
    }
    .section2 .en-tete{
        margin: auto;
        width: fit-content;
        text-align: center;
    }
    .section2 .en-tete h1{
        margin: 10px;
    }
    .section2 input{
        width: 250px;
        padding: 10px;
        border-radius: 15px;
        border: none;
        cursor: pointer;
        font-family: 'SulphurPoint-Bold';
        font-size: large;
    }
    .section2 input:hover{
        background-color: rgb(207, 207, 207);
    }
/***************************/
footer{
    margin-top: 30px;
    padding: 10px;
}
footer .footer-infos{
    display: flex;
    margin: auto;
    gap: 150px;
    justify-content: space-between;
    width: fit-content;
}
footer .footer-infos p{
    padding: 0px;
    margin: 0px;
    font-family: 'SulphurPoint-Light';
}
footer .footer-infos p a:hover{
    color: rgb(0, 179, 192);
}
footer .footer-conditions{
    display: flex;
    gap : 30px;
    margin: auto;
    width: fit-content;
    margin-top: 40px;
}
footer .footer-conditions p{
    padding-right: 30px;
    font-family: 'SulphurPoint-Light';
}
footer .footer-conditions p a:hover{
    color: rgb(0, 179, 192);
}
footer .footer-conditions .bar1, .bar2{
    border-right: 2px solid rgb(161, 161, 161);
}
footer  .ligne-separateur{
    border-bottom: 1px solid rgb(161, 161, 161);
    width: 400px;
    margin: auto;
    margin-top: 60px;
    margin-bottom: -30px;
}
footer .copyright{
    margin: auto;
    width: fit-content;
    margin-top: -20px;
    margin-bottom: 40px;
    font-family: 'SulphurPoint-Light';
}
footer .copyright a:hover{
    color: rgb(0, 179, 192);
}
/* ************************************************** */
/* *******************MEDIA QUERIES***************** */
/* ************************************************ */
@media only screen and (max-width:740px){
    .checkbtn{
        display: block;
    }
    .checkbtn-2 .menu{
        display: block;
    }
    header{
        padding: 5px;
    }
    header a{
        color: white;
    }
    nav{
        position: absolute;
        width: 100%;
        opacity: 90%;
        background: rgb(13, 14, 34);
        top: 75px;
        left: -100%;
        text-align: center;
        transition: all .5s;
        z-index: 10;
    }
    nav ul li{
        display: block;
    }
    nav li{
        display: inline-block;
        vertical-align: top;
        position: relative; 
        width: fit-content;
        margin: auto;
    }
    #check:checked ~ nav{
    left: 0;
    } 
    /****************/
    /***************/
    footer .footer-infos{
        gap: 100px;
    }
    footer .footer-conditions{
        gap : 20px;
    }
}
@media only screen and (max-width:635px){
    
    footer .footer-infos{
        gap: 50px;
    }
    footer .footer-conditions{
        gap : 10px;
    }
    footer .footer-conditions p{
        padding-right: 10px;
    }
}
@media only screen and (max-width:565px){
    footer .footer-infos{
        gap: 20px;
    }
    footer .footer-conditions{
        gap : 0px;
    }
    footer .footer-conditions p{
        padding-right: 5px;
        padding-left: 5px;
    }
    footer  .ligne-separateur{
        border-bottom: 1px solid rgb(161, 161, 161);
        width: 200px;
        margin: auto;
        margin-top: 60px;
        margin-bottom: -30px;
    }
}
@media only screen and (max-width:426px){
    header .logo img{
        width: 140px;
        object-fit: cover;
    }
    footer{
        font-size: small;
    }
    footer .footer-infos p{
        margin-bottom: 10px;
    }
}