@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

body{
    background-color: #f5f5f5;
}

section{
    padding: 20px 10%;
}

ul{
    list-style: none;
}
a{
    text-decoration: none;
}

button{
    cursor: pointer;
}

button a{
    color: #fff;
}

button a:hover{
    color: #000;
}


#home{
    min-height: 90vh;
    background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.9)), url("./img/api-manager-platco-3.png");
    background-position: center;
    background-size: cover;
    position: relative;
    margin-bottom: 230px;
    width: 100%;
}

.menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 40px;
    font-style: italic;
    font-family: 'Anton', sans-serif;

    display: flex;
    align-items: center;
}
.logo img{
    height: 50px;
}

.links{
    display: flex;
}

.links li{
    margin: 20px;
}

.links li a{
    color: #fff;
    position: relative;
}
.links li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    background-color: #f9ad4a;
    height: 4px;
    width: 0%;
    border-radius: 4px;
    transition: 0.4s;
}

.links li a:hover:after{
    width: 100%;
}

/* home_page_content */

.home_page_content{
    position: absolute;
    margin-top: 120px;
    transform: translate(-50 -50);
}
.home_page_content h1{
    margin: 20px 0;
    color: transparent;
    font-weight: bold;
    font-size: 60px;
    line-height: 60px;
    -webkit-text-stroke: #fff 2px;
}



/* img_box */

.img_box{
    position: absolute;
    bottom: -150px;
    right: 10%;
}

.img_box img{
    border-radius: 6px;
    width: 450px;
    height: 375px;
    object-fit: cover;
    box-shadow: 0 32px 80px -32px rgba(0,0,0,.24);
}

.img_box p{
    margin-top: 20px;
    text-align: right;
    font-weight: bold;
}

/* back */

.video_projet{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 10%;
    margin-bottom: 200PX;
}


.video_projet .back{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 80px;
}

.back video{
    height: 45%;
    width: 45%;
    border-radius: 10px;
}

.back .text_video{
    height: 45%;
    width: 45%
}

.text_video h3{
    color: #f9ad4a;
    font-size: 25px;
    margin-bottom: 15px;
}



.img_projet{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 10%;
    margin-bottom: 100PX;
}

.img_projet .part{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 ;
}

.img_projet .back{
    width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 70px;
    margin-left: 30px;
}

.img_projet .back img{
    width: 100%;
    height: auto;
    object-fit: cover;
}


/* contact */

#contact{
    text-align: center;
    border-top: 1px solid #c1c1c1;
}

#contact .big_title{
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#contact i{
    font-size: 20px;
    margin-bottom: 50px;
    margin-left: 25px;
}
#contact i span{
    color: #000;
}

#contact i a{
    color: #000;
    transition: 0.5s;
}
#contact i a:hover, #contact i{
    color: #f9ad4a;
}

footer{
    background-color: #1a1a1a;
    color: #f9ad4a;
    font-size: 14px;
    text-align: center;
    padding: 20px 0;
    font-weight: bold;
}


.openbtn, .closebtn{
    display: none;
}


/* responsive */

@media (max-width: 1125px) {

    body{
        transition: margin-left .5s;
    }
    section{
        padding: 20px;
    }
    /* home */
    #home{
        min-height: 50vh;
        margin: 0;
    }
    .logo{
        font-size: 30px;
    }
    .logo img{
        height: 40px;
    }
    .home_page_content{
        margin-top: 110px;
        position: unset;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .home_page_content .title{
        font-size: 50px;
        line-height: 50px;
    }
    .img_box{
        margin-top: 40px;
        position: unset;
        width: 100%;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .img_box img{
        width: 100%;
    }
    .openbtn, .closebtn{
        padding: 10px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        border-radius: 6px;
        background-color: #fff;
        border: 0;
        color: #000;
        outline: none;
        font-weight: bold;
        letter-spacing: 2px;
    }

    .closebtn{
        display: unset;
        position: absolute;
        top: 20px;
        right: 25px;
    }
    .links{
        background-color: #1a1a1a;
        height: 100vh;
        width: 0%;
        position: absolute;
        overflow: hidden;
        text-align: center;
        margin: 0;
        padding: 0;
        top: 0;
        left: 0;
        transition: 0.5s;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    /* .video_projet */

    .video_projet{
        justify-content: space-between;
        margin-top: 50px;
        margin-bottom: 0;
    }

    .video_projet .back{
        width: 100%;
        height: 100%;
        flex-direction: column;
    }

    .back video{
        width: 100%;
        height: 100%;
    }

    .back .text_video{
        width: 100%;
        height: 100%;
        margin-top: 20px;
    }

    /* .img_projet */

    .img_projet{
        flex-direction: column;
        padding: 0;
        margin-top: 20px;
    }

    .img_projet .part{
        flex-direction: column;
    }
    .img_projet .back{
        width: 100%;
        height: 100%;
        margin-bottom: 20px;
        margin-left: 0;
    }
    .back img{
        height: 100%;
        width: 100%;
    }

        /* ranked */

    #contact{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .logos{
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: space-between;
    }

    #contact{
        padding-top: 20px;
    }
    #contact h3{
        margin-bottom: 20px;
    }
}