@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/Untitled.jpg");
    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%;
}

.links li .s{
    color: #f9ad4a;
}

/* 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: #f5f5f5 2px;
}

.white_btn{
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 20px;
    font-size: 15px;
    color: #fff;
    padding: 10px 30px;
    transition: 0.5s;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.white_btn:hover{
    background-color: #fff;
    color: #000;
}
.white_btn i{
    margin-left: 20px;
}


/* 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;
}

.openbtn, .closebtn{
    display: none;
}

/* text_section */

.text_section{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    position: relative;
}

.text_section p{
    position: absolute;
    font-size: 250px;
    font-family: 'Anton', sans-serif;
    color: #f1f1f1;
    z-index: -10;
    line-height: 200px;
    text-transform: uppercase;
}

.text_section h2{
    font-size: 25px;
}

/* intermediaire */

.intermediaire{
    width: 100%;
    height: 70vh;
    margin-top: 250px;
    overflow: hidden;
}

.intermediaire img{
    width: 100%;
    height: 100%;
    animation: infinite animation1 alternate;
    animation-duration: 25s;
}

@keyframes animation1{
    from{
        transform: scale(1);
    }
    to{
        transform: scale(2);
    }
}

/* big */


.big{
    margin: 340px 0;
    margin-bottom: 50px;
}
.big p{
    font-size: 260px;
    line-height: 210px;
}

.big h2{
    font-size: 80px;
}

/* services */

#reasons{
    display: flex;
    flex-direction: column;
    margin-top: 35px;
    margin-bottom: 70px;
}

.box{
    margin-top: 35px;
    margin-bottom: 50px; 
    margin-left: 25px;
}

.box h2{
    margin-bottom: 30px;
    position: relative;
}
.box h2::after{
    content: "";
    position: absolute;
    left: -25px;
    width: 5px;
    height: 100%;
    background-color: #f9ad4a;
}

.box p{
    padding: 20px;
}

/* background */

.background{
    height: 70vh;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}
.background .image{
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.background img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -100;
    animation: infinite animation1;
    animation-duration: 50s;
}

@keyframes animation1{
    from{
        transform: scale(1);
    }
    to{
        transform: scale(2);
    }
}
.text-box{
    position: absolute;
    right: 10%;
    bottom: -70px;
    z-index: 10;
    width: 425px;
    background-color: #fff;
    box-shadow: 0 32px 80px -32px rgba(0,0,0,.24);
    padding: 45px;
    border-radius: 6px;
}

.text-box h3{
    margin: 15px 0;
    font-weight: bold;
    font-size: 30px;
}

.text-box p{
    margin-bottom: 25px;
}

.text-box h6{
    font-size: 14px;
    margin: 15px 0;
}
.text-box i{
    margin-right: 10px;
    color: #f9ad4a;
}

.text-box button{
    margin-top: 45px;
}

.text-box button i{
    color: #000;
}
.text-box button i:hover{
    color: #fff;
}


.white_btn{
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 20px;
    font-size: 15px;
    color: #fff;
    padding: 10px 30px;
    transition: 0.5s;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.white_btn:hover{
    background-color: #fff;
}
.white_btn a{
    color: #fff;
}
.white_btn a i{
    margin-left: 20px;
}
.white_btn a:hover{
    color: #000;
}

.dark_btn{
    color: #000;
    border: #000 1px solid;
}
.dark_btn a{
    color: #000;
}
.a i{
    margin-left: 0;
}

.dark_btn:hover{
    background-color: #000;
    color: #fff;
}
.dark_btn:hover i{
    color: #fff;
}
.dark_btn:hover a{
    color: #fff;
}

/* tarifs */

#tarifs{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 120px 0;
    width: 100%;
}

.left, .right{
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.left div, .right div{
    background-color: #fff;
    border-radius: 10px;
    margin-top: 45px;
    padding: 50px;
    transition: 0.5s;
}

.left div p, .right div p{
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: justify;
}

.left div span, .right div span{
    font-weight: bold;
    font-size: 30px;
}

.left div h3, .right div h3{
    font-size: 25px;
    text-align: center;
}

.left div:hover, .right div:hover{
    box-shadow: 0 32px 80px -32px rgba(0,0,0,.24);
}

/* contact */

#contact{
    text-align: center;
    border-top: 1px solid #c1c1c1;
}

#contact .big_title{
    font-size: 20px;
    margin-bottom: 50px;
    margin-top: 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;
}


/* 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;
    }

    /* tect_section */
    .text_section{
        margin: 0;
        background-color: #f9ad4a;
    }
    .text_section p{
        font-size: 90px;
    }
    .text_section h2{
        font-size: 20px;
    }

    /* background */

    .background{
        margin: 40px 0;
        height: fit-content;
        background: url("./img/softwarecomp1.jpg");
        padding: 20px;
        background-position: center;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .background .image{
        display: none;
    }
    .background .text-box{
        position: unset;
    }
    .text-box{
        padding: 20px;
        height: 100%;
        width: 100%;
    }
    .big p{
        display: none;
    }

        /* tarifs */
    #tarifs{
        flex-direction: column;
    }

    .left, .right{
        width: 100%;
    }
    .left div, .right div{
        margin: 0;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 20px;
    }

    /* .intermediaire */

    .intermediaire{
        margin: 0;
        height: unset;
    }
    .intermediaire img{
        height: fit-content;
    }

    /* reasons */

    .box h2::after{
        display: none;
    }
    .box h2{
        margin-left: 0;
        color: #f9ad4a;
    }
    .box p{
        padding: 0;
        text-align: justify;
    }
    .box{
        margin-left: 0;
        padding: 20px;
    }
    .services{
        width: 100%;
    }

    #reasons{
        margin-bottom: 0;
    }

    /* contact */

    #contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
    }

    #contact{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .logos{
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: space-between;
    }
}