*, ::before, ::after {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    margin: 0;
}



/*----------------- Vitrine ------------------*/

#nav *, ::before, ::after {

    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

#nav body {
    background-color: #222327;
    color: #fff;
    width: 100%;
    overflow-x: hidden;
}

#nav .sec{
    padding-top: 100px;
}

#nav .gotop {
  position: fixed;
  right: 30px;
  bottom: 30px;
}

#nav .iconetop{
  width: 60px;
  height: auto;
}

/* Navigation */

#nav .title{
    color: #fff;
}

#nav nav {
    position: fixed;
    top: 0;

    width: 100%;
    height: 75px;

    background: #222327;

    display: flex;
    justify-content: space-around;
    align-items: center;

    z-index: 10;
}

#nav nav img{
    width: 30px;
    height: auto;
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

#nav nav h2 {

    font-size: 26px;
    cursor: pointer;

}

#nav nav ul {
    list-style-type: none;
}

#nav nav ul li {

    display: inline-block;
    margin: 0 15px;
    font-size: 20px;
    
}

#nav nav ul li a {
    color: #cccccc;
    text-decoration: none;
}

#nav nav ul li a::after {
    content: "";
    display: block; /* car de base les pseudos-éléments sont de type inline*/

    width: 0px;
    height: 2px;

    margin: 0 auto 0 auto;
    
    border-radius: 2px;
    
    background: #299efd;
    transition: width 0.2s ease-out;
}

#nav nav ul li a:hover::after {
    width: 80%;
}
#nav nav ul li a:hover {
    color: #299efd;
}


#nav nav .connection {

    /* position: relative;
    top: -2px; */
    
    width: 180px;
    height: auto;
    padding: 10px 0;

    border: none;
    border-radius: 4px;

    outline: none;
    background: linear-gradient(84.12deg, #293efd -24.93%, #299efd 139.25%);

    color: white;

    font-size: 18px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    transition: 0.5s;
}

#nav nav .connection:hover {
    background: linear-gradient(84.12deg, #293efd -24.93%, #299efd 139.25%);
    text-decoration: none;
}

#pres .down{
    padding-top: 300px;
    text-align: center;
}

#pres {
    color: #fff;
}

#pres h2{
    font-weight: bold;
    font-size: 70px;
}

#pres p{
    font-size: 30px;
}

#pres .contact{

    font-size: 20px;
    height: 100vh
}

#pres svg{
    color: darkgoldenrod;
}

#pres .bg{
    background-image: url("../img/bg.png");
    width: 100%;
    height: 1100px;
    background-repeat:no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    backdrop-filter: blur(40px);
}

#pres span{
    padding-bottom: 30px;
}

#pres .h1{
    font-weight: bold;
}


@media screen and (max-width: 600px) {
    #pres span{
        font-size: 15px;
    }
    
    #pres .h1{
        font-size: 30px;
    }
}

@media screen and (max-width: 400px) {
    
    #pres .h1{
        font-size: 25px;
    }
}



#pres .contact-form-wrapper {
    padding: 100px 0;
}


#pres .contact-form {
    padding: 30px 40px;
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 700px;
}


#pres .contact-form textarea {
    resize: none;
}


#pres .contact-form .form-input,
#pres .form-text-area {
    background-color: #f0f4f5;
    height: 70px;
    padding-left: 16px;
}

#pres .contact-form .form-text-area {
    background-color: #f0f4f5;
    height: auto;
    padding-left: 16px;
}

#pres .contact-form .form-control::placeholder {
    color: #aeb4b9;
    font-weight: 500;
    opacity: 1;
}

#pres .contact-form .form-control:-ms-input-placeholder {
    color: #aeb4b9;
    font-weight: 500;
}

#pres .contact-form .form-control::-ms-input-placeholder {
    color: #aeb4b9;
    font-weight: 500;
}

#pres .contact-form .form-control:focus {
    border-color: #299efd;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07), 0 0 8px #299efd;
}

#pres .contact-form .title {
    text-align: center;
    font-size: 35px;
    font-weight: 800;
    padding-bottom: 20px;
    color:#1b1b1b
}

@media screen and (max-width: 400px) {

    #pres .contact-form .title{
        font-size: 30px;
    }

}

#pres .contact-form .description {
    color: #707375;
    font-size: 14px;
    text-align: center;
}

#pres .contact-form .submit-button-wrapper {
    text-align: center;
}

#pres .contact-form .submit-button-wrapper input {
    border: none;
    border-radius: 4px;
    background-color: #299efd;
    color: white;
    text-transform: uppercase;
    padding: 10px 60px;
    font-weight: 700;

}

#pres .contact-form .submit-button-wrapper input:hover {
    background-color: #299efd;
}

#filled:hover {
    background-color: white !important; 
    color: black !important;
}

#outlined:hover {
    background-color: #299efd; 
    color: white;
}