@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;
}
/**************************/
.section-accueil{
    width: auto;
    display: flex;
    margin: auto;
    padding: 20px;
    margin-bottom: 40px;
}
.section-accueil .texte-accueil{
    width: 500px;
    margin: auto;
    text-align: justify;
}
.section-accueil .texte-accueil input{
    width: 500px;
    padding: 10px;
    font-size: medium;
    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;
}
.section-accueil .texte-accueil input:hover{
    background: linear-gradient(90deg, rgba(235,51,51,100%)0%, rgba(49,44,158,100%)100%);
    transition: 1s;
}
.section-accueil .texte-accueil h1{
    font-size: 60px;
    background: linear-gradient(100deg, rgb(8, 0, 37)10%, rgb(18, 173, 184)100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-accueil .texte-accueil p{
    font-size: x-large;
    font-family: 'SulphurPoint-Light';
}
.section-accueil .texte-accueil-image{
    width: fit-content;
    margin: auto; 
}
.section-accueil .texte-accueil-image img{
    width: 500px;
    object-fit: cover;
}
/***************************/
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:1040px){
    .section-accueil .texte-accueil{
        width: 300px;
    }
    .section-accueil .texte-accueil h1{
        font-size: 40px;
    }
    .section-accueil .texte-accueil p{
        font-size: large;
    }
    .section-accueil .texte-accueil-image img{
        width: 400px;
    }
    .section-accueil .texte-accueil input{
        width: 300px;
    }
}
@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;
    } 
    /****************/
    /***************/
    .section-accueil .texte-accueil{
        width: 250px;
    }
    .section-accueil .texte-accueil h1{
        font-size: 40px;
    }
    .section-accueil .texte-accueil p{
        font-size: large;
    }
    .section-accueil .texte-accueil-image img{
        width: 295px;
    }
    .section-accueil .texte-accueil input{
        width: 250px;
    }
    footer .footer-infos{
        gap: 100px;
    }
    footer .footer-conditions{
        gap : 20px;
    }
}
@media only screen and (max-width:635px){
    .section-accueil{
        width: auto;
        display: block;
        margin: auto;
        padding: 20px;
    }
    .section-accueil .texte-accueil{
        margin: auto;
        text-align: justify;
        margin-bottom: 40px;
    }
    .section-accueil .texte-accueil-image{
        width: fit-content;
        margin: auto; 
        margin-top: 50px;
        margin-bottom: 20px;
    }
    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;
    }
    .section-accueil .texte-accueil h1{
        font-size: 35px;
    }
    .section-accueil .texte-accueil p{
        font-size: medium;
    }
    .section-accueil .texte-accueil-image img{
        width: 250px;
    }
    footer{
        font-size: small;
    }
    footer .footer-infos p{
        margin-bottom: 10px;
    }
}