*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,body{
    scroll-behavior: smooth;
}

.header{   
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    padding: 0 5%;
    /* border: 2px solid red; */
    color: white;
    background-color: rgba(0,0,0,0.7);
    z-index: 1;
}

.menu ul{
    display: flex;
    list-style: none;
}

.menu li{
    margin-right: 35px;
}

.menu a{
    text-decoration: none;
    color: white;
}

.ul-lines .line{
    position: relative;
}

.ul-lines .line::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 3px;
    background-color: orangered;
    transform-origin: left;
    transform: scaleX(0);
    transition: 0.5s;
}

.ul-lines .line:hover::after{
    transform: scaleX(1);
}

.menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px;
}

.logo i{
    font-size: 35px;
}

.menu button{
    padding: 10px 25px;
    border-radius: 10px;
    border: 2px solid white;
    background-color: transparent;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.4s;
}

.header button:hover{
    background-color: orangered;
    border: 2px solid orangered;
}

/* home start */

#home{
    background-image: linear-gradient(rgba(0,0,0,0.7)), url(hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    object-fit: cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

      

.home-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: sans-serif;
}

.home-content h2{
    font-size: 45px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.home-content p{
    font-size: 25px;
    margin-bottom: 20px;
}

.home-content button{
    padding: 10px 25px;
    border-radius: 5px;
    border: none;
    background-color: orangered;
    color: white;
    text-transform: uppercase;
    margin-right: 30px;
    cursor: pointer;
}

.home-content button:hover{
    background-color: rgba(255, 68, 0, 0.63);
}

.home-content-btn{
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 30%;
    /* height: 60px; */
    cursor: pointer;
}

.home-btn p{
    font-size: 15px;
    margin-top: 20px;
    margin-left: 10px;
    width: 200px;
    /* border: 2px solid red; */
}

.home-btn:hover{
    color: orangered;
}



/* about start */

#about{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
    
}

.about-contents{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
}


.about-content img{
    width: 100%;
    margin-bottom: 15px;
    border-radius: 15px;
}

.about-content h2{
    font-size: 25px;
    margin-bottom: 25px;
}

.about-content{
    /* margin-right: 40px; */
    font-family: sans-serif;
    width: 48%;
}

.about-content p{
    font-size: 17px;
    margin-bottom: 15px;
    color: rgb(56, 56, 56);
    line-height: 25px;
}

.about-content p:nth-child(1){
    /* background-color: red; */
    font-style: italic;
    color: grey;
}

.check{
    display: flex;
}

.check i{
    color: red;
    margin-right: 5px;
}

.about-content .about-image img{
    position: relative;
}

.about-content .about-image i{
    color: red;
    position: absolute;
}



/* numbers */

#numbers{
    background-color: rgba(232, 245, 255, 0.774);
}

.number-cards{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
    padding: 100px 0;
}

.number-card{
    display: flex;
    align-items: center;
    /* border: 2px solid red; */
    width: 300px;
    height: 150px;
    background-color: white;
    box-shadow: 0 0 15px rgb(189, 189, 189);
}

.number-card-text{
    margin-left: 20px;
    font-family: sans-serif;

}

.number-card i{
    font-size: 40px;
    color: orangered;
    margin-left: 20px;
}

.number-card-text h2{
    font-size: 35px;
}

.number-card-text p{
    font-size: 20px;
}



/* service */

#service{
    padding: 100px 0;
}

.title{
    font-family: sans-serif;
    
    margin: 0 0 40px 15%;
}

.title p{
    position: relative;
}

.title p::after{
    content: "";
    position: absolute;
    width: 90px;
    left: 105px;
    height: 2px;
    background-color: orangered;
    transform: translateY(-50%);
    top: 50%;
}

.title p{
    font-size: 25px;
}

.title h2{
    font-size: 30px;
}

.service-card img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transform: scale(1);
    transition: 1s;
}

.service-cards{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
}

.service-card-header{
    border-radius: 20px;
    overflow: hidden;
}

.service-card{
    position: relative;
    width: 30%;
    height: 100%;
    /* margin-right: 40px; */
}

.service-card-text{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.87);
    width: 75%;
    /* border: 2px solid red; */
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgb(0, 0, 0);
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 20px;
}

.service-card-text i{
    font-size: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: orangered;
    border: 4px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 10px;
    position: absolute;
    top: -30px;
}

.service-card-text h3{
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 40px;
}

.service-card-text p{
    margin-bottom: 15px;
}

.service-card:hover img{
    transform: scale(1.5);
}

.service-card:hover i{
    background-color: white;
    color: orangered;
    border: 2px solid orangered;
}


/* clients */



#clients{
   padding: 60px 0;
   background-color: rgb(239, 249, 255);
}

.clients-images{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
}

.clients-image{
    width: 100px;
}
.clients-image img{
    width: 100%;
    height: 100%;
}

.clients-image img{
    filter: saturate(0);
    transition: 0.5s;
}

.clients-image img:hover{
    filter: saturate(100%);
}


/* works start */

#works{
    width: 70%;
    margin: 100px auto;
}

.work-block{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    margin-bottom: 80px;
    /* border: 2px solid red; */
    padding: 40px 30px;
    transition: 0.5s;
    border: 1px solid rgb(187, 187, 187);
}



.work-block i{
    margin-right: 10px;
    font-size: 30px;
    transition: 0.5s;

}

.work-blocks{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.work-block:nth-child(1){
    background-color: orangered;
    color: white;
}

.work-block:hover{
    border: 1px solid rgb(255, 110, 57);
}

.work-block:hover i{
    color: orangered;
}

.work-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.work-image{
    width: 50%;
}

.work-content img{
    width: 100%;
}

.work-text{
    width: 50%;
}

.work-text h2{
    font-size: 30px;
    margin-bottom: 10px;
}

.work-text p{
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 25px;
    color: rgb(87, 87, 87);
}

.work-text p:nth-child(2){
    margin-bottom: 15px;
}

.work-text p:nth-of-type(1){
    margin-bottom: 30px;
}

#works .work-text-check p{
    margin-bottom: 20px;
}

.work-text p:nth-child(4){
    margin-top: 30px;
}



/* check-service */

#check-service{
    padding: 90px 0;
    background-color: rgb(241, 251, 255);
    font-family: sans-serif;
}



.check-service-blocks{
    width: 70%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}

.check-service-block{
    border: 1px solid rgb(226, 226, 226);
    display: flex;
    justify-content: center;
    padding: 45px 35px;
    background-color: white;
    transition: 0.5s;
}

.check-service-block i{
    font-size: 35px;
    margin-right: 25px;
    color: orangered;
}

.check-service-block h3{
    font-size: 25px;
    margin-bottom: 15px;
    transition: 0.5s;
}

.check-service-block:hover h3{
    color: orangered;
}

.check-service-block:hover{
    border: 1px solid orangered;
}


/* info */

#info{
    padding: 100px 0;
    background-image: linear-gradient(rgba(0, 7, 22, 0.7)), url(about.jpg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

#info img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.info-text h3{
    font-size: 25px;
    color: white;
}

.info-text p{
    color: grey;
    font-size: 20px;
}

.info-icons{
    margin-left: 10px;
}

.info-icons i{
    color: gold;
    margin-bottom: 25px;
    margin-top: 15px;
    font-size: 20px;
}

#info p:nth-child(4){
    color: white;
    font-size: 20px;
    width: 50%;
    font-style: italic;
    line-height: 30px;
}


/* portfolio */

#portfolio{
    padding: 100px 0;
    flex-direction: column;
}

.portfolio-block img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    transform: scale(1);
    transition: 0.5s;
}

.portfolio-block{
    /* border: 2px solid red; */
    overflow: hidden;
    position: relative;
}

.portfolio-block:hover img{
    transform: scale(1.2);
}

.portfolio-info{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.portfolio-blocks{
    width: 70%;
    margin: 25px auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

#portfolio input{
    display: none;
}

label{
    font-size: 20px;
    margin: 25px 15px;
    font-family: sans-serif;
}

#app:checked ~ .portfolio-blocks .app{
    opacity: 1;
    position: relative;
    z-index: 1;
}

#app:checked ~ .portfolio-blocks .product,
#app:checked ~ .portfolio-blocks .brand,
#app:checked ~ .portfolio-blocks .books{
    opacity: 0;
    position: absolute;
}

#product:checked ~ .portfolio-blocks .product{
    opacity: 1;
    position: relative;
    z-index: 1;
}

#product:checked ~ .portfolio-blocks .app,
#product:checked ~ .portfolio-blocks .brand,
#product:checked ~ .portfolio-blocks .books{
    opacity: 0;
    position: absolute;
}

#brand:checked ~ .portfolio-blocks .brand{
    opacity: 1;
    position: relative;
    z-index: 1;
}

#brand:checked ~ .portfolio-blocks .app,
#brand:checked ~ .portfolio-blocks .product,
#brand:checked ~ .portfolio-blocks .books{
    opacity: 0;
    position: absolute;
}

#book:checked ~ .portfolio-blocks .books{
    opacity: 1;
    position: relative;
    z-index: 11;
}

#book:checked ~ .portfolio-blocks .app,
#book:checked ~ .portfolio-blocks .product,
#book:checked ~ .portfolio-blocks .brand{
    opacity: 0;
    position: absolute;
}

.portfolio-blocks img{
    position: relative;
}

.portfolio-block .portfolio-block-hover{
    position: absolute;
    padding: 15px;
    /* margin-top: -325px; */
    color: white;
    background-color: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    /* border: 2px solid red; */
    opacity: 0;
    transition: 0.5s;
    left: 0;
    top: 0;
    z-index: 1111;
}

.portfolio-block .portfolio-block-hover:hover{
    opacity: 1;
}


.portfolio-block-hover button{
    padding: 5px 10px;
    font-size: 15px;
    background-color: orangered;
    color: white;
    border: none;
    position: absolute;
    top: 10px;
    left: 10px; 
}

.portfolio-block-hover .hover-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.portfolio-block i:hover{
    color: orangered;
    cursor: pointer;
}

.portfolio-block-hover p{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
}







/* team */



#team .title{
    margin: 0 0 40px 13%;
}

.team-cards{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
    margin: 0 auto;
}

.team-card-image img{
    width: 100%;
    height: 100%;
    
}

.team-card{
    width: 30%;
    position: relative;
}

.team-card-content{
    position: absolute;
    background-color: white;
    box-shadow: 0 0 15px grey;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.team-card-text{
    padding: 20px;
    font-family: sans-serif;
}

.team-card-text h3{
    font-size: 20px;
    margin-bottom: 15px;
}

.team-card-text p{
    margin-top: 4px;
    color: grey;
}

.team-card-text .line{
    width: 50%;
    height: 1px;
    background-color: grey;
    margin-bottom: 15px;
}

.team-card-icons{
    margin-right: 15px;
    margin-top: 50px;
}

.team-card-icons i{
    color: grey;
    font-size: 20px;
    transition: 0.5s;
}

.team-card-icons i:hover{
    color: orangered;
    cursor: pointer;
}



/* contact */

#contact{
    padding: 150px 0;
    
}

#contact .title{
    margin: 0 0 40px 10%;
}

.contact-blocks{
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2,1fr);
    width: 80%;
    margin: 0 auto;
}

.contact-address{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* border: 2px solid red; */
    padding: 35px 20px;
    box-shadow: 0 0 15px rgb(212, 212, 212);
    color: grey;
}

.contact-address i{
    color: orangered;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: dotted;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-address h3{
    margin-bottom: 10px;
    color: rgb(85, 85, 85);
}

.contact-phone{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* border: 2px solid red; */
    padding: 35px 20px;
    box-shadow: 0 0 15px rgb(212, 212, 212);
    color: grey;
}

.contact-phone i{
    color: orangered;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: dotted;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-phone h3{
    margin-bottom: 10px;
    color: rgb(85, 85, 85);
}

.contact-email{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* border: 2px solid red; */
    padding: 35px 20px;
    box-shadow: 0 0 15px rgb(212, 212, 212);
    color: grey;
}

.contact-email i{
    color: orangered;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: dotted;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-email h3{
    margin-bottom: 10px;
    color: rgb(85, 85, 85);
}

.contact-info{
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2,1fr);
    margin-top: 15px;
}


.contact-inputs{
    box-shadow: 0 0 15px rgb(212, 212, 212);
    color: grey;
    padding: 30px;
}

.contact-inputs input:nth-child(3){
    width: 100%;
    padding: 15px 0 60px 5px;
    font-size: 17px;
    margin-bottom: 30px;
    outline: none;
}

#contact input{
    border: 1px solid rgb(209, 209, 209);
}

#contact input::placeholder{
    color: rgb(209, 209, 209);
}

.contact-inputs input:nth-child(2){
    width: 100%;
    padding: 15px 0 15px 5px;
    margin-bottom: 20px;
    font-size: 17px;
    outline: none;
}

.contact-input{
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2,1fr);
}

.contact-input input{
    font-size: 17px;
    width: 100%;
    padding-left: 5px;
    margin-bottom: 30px;
    outline: none;
}

.contact-inputs button{
    bottom: 10px;
    width: 30%;
    margin: 0 35%;
    padding: 15px 35px;
    border-radius: 35px;
    border: none;
    background-color: orangered;
    color: white;
    cursor: pointer;
}

.contact-inputs button:hover{
    background-color: rgba(255, 68, 0, 0.76);
}



/* footer */

#footer{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: black;
    color: white;
    padding: 50px 0;
}

.footer-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

.footer-logo i{
    margin-bottom: 25px;
    font-size: 40px;
}

.footer-logo p{
    margin-bottom: 7px;
}

.footer-logo p:nth-of-type(3){
    margin-top: 20px;
    letter-spacing: 2px;
}

.footer-logo-icons i{
    font-size: 20px;
    margin-top: 15px;
    margin-right: 10px; 
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icons{
    display: flex;
    align-items: center;
}

.footer-logo-icons i:hover{
    color: orangered;
    border: 1px solid orangered;
}
.link h2{
    margin-bottom: 30px;
}

.link i{
    color: orangered;
}

.link li{
    list-style: none;
    margin-bottom: 15px;
}    

.link li:hover{
    color: orangered;
    cursor: pointer;
}

.newsletter p{
    font-size: 20px;
    width: 70%;
    margin-top: 30px;
    margin-bottom: 20px;
}

.newsletter{
    margin-bottom: 55px;
}

.newsletter input{
    padding: 15px 45px;
    border: 2px solid grey;
    border-radius: 4px 0 0 4px;
    background-color: transparent;
    color: white;
    outline: none;
}

.newsletter input:focus{
    border: 2px solid orangered;
}

.newsletter button{
    padding: 15px 45px;
    border-radius: 0 4px 4px 0;
    border: 2px solid orangered;
    background-color: orangered;
    color: white;
    
}

.footer-line{
    width: 85%;
    height: 0.1px;
    background-color: rgb(180, 180, 180);
    margin-top: 20px;
}

.footer-text{
    margin-top: 45px;
    font-size: 17px;
    text-align: center;
}

.footer-text span{
    color: orangered;
}



@media screen and (min-width: 300px) and (max-width: 769px){
    .header{
        align-items: center;
    }
    .logo i{
        margin-top: 10px;
    }
    .menu ul{
        opacity: 0;
        position: absolute;
    }

    .home-content{
        width: 95%;
    }



    .about-contents{
        flex-direction: column;
        /* border: 2px solid red; */
        width: 100%;
    }



    .number-cards{
        flex-direction: column;
        width: 90%;
    }
    .number-card{
        width: 100%;
        margin-bottom: 20px;
    }
    

    #service{
        padding:50px 10px;
    }
    .title{
        margin: 0 0 40px 5%;
    }
    .service-cards{
        flex-direction: column;
        width: 100%;
        /* border: 2px solid red; */
    }
    .service-card{
        width: 100%;
        margin-bottom: 100px;
    }



    .clients-images{
        flex-direction: column;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }
    .clients-image{
        width: 80%;
        /* border: 2px solid red; */
        margin: 0 auto;
    }




    #works{
        width: 100%;
    }
    .work-blocks{
        width: 95%;
        margin: 0 auto;
    }
    .work-block h3{
        opacity: 0;
        position: absolute;
    }
    .work-block{
        width: 80px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .work-content{
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
        /* border: 2px solid red; */
    }
    .work-text{
        width: 100%;
    }
    .work-image{
        width: 100%;
    }



    
    .check-service-blocks{
        display: flex;
        flex-direction: column;
        width: 95%;
    }




    
    .portfolio-menu-labels label{
        font-size: 15px;
    }
    .portfolio-blocks{
        display: flex;
        flex-direction: column;
        width: 95%;
    }




    #team .title{
        margin: 0 0 40px 5%;
    }
    .team-cards{
        flex-direction: column;
        width: 95%;
        
    }
    .team-card{
        width: 100%;
        margin-bottom: 100px;
    }




    .contact-blocks{
        display: flex;
        flex-direction: column;
        width: 95%;
    }


    
    .footer-content{
        flex-direction: column;
        /* border: 2px solid orangered; */
        
    }
    .footer-logo{
        margin-right: 50%;
        margin-bottom: 50px;
    }
    .link{
        margin-right: 50%;
        margin-bottom: 50px;
    }
    .newsletter input{
        padding: 10px 10px;
    }
    .newsletter button{
        padding: 10px 20px;
    }
    

}






@media screen and (min-width: 769px) and (max-width: 992px){
    .header{
        align-items: center;
    }
    .logo i{
        margin-top: 10px;
    }
    .menu ul{
        opacity: 0;
        position: absolute;
    }


    .home-content{
        width: 80%;
    }



    .about-contents{
        flex-direction: column;
        width: 95%;
    }



    
    .number-cards{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 30px;
    }
    .number-card{
        width: 100%;
    }



    .title{
        margin: 0 0 40px 5%;
    }

    
    .service-cards{
        width: 95%;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }
    .service-card{
        width: 100%;
        /* margin-bottom: 50px; */
    }
    .service-cards .service-card:nth-child(3){
        margin-top: 200px;
    }
    .service-cards .service-card:nth-child(3) .service-card-text{
        margin-bottom: 200px;
    }



    .clients-images{
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 30px;
    }



    #works{
        width: 100%;
    }
    .work-blocks{
        width: 95%;
        margin: 0 auto;
    }
    .work-block h3{
        opacity: 0;
        position: absolute;
    }
    .work-block{
        width: 150px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .work-content{
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
        /* border: 2px solid red; */
    }
    .work-text{
        width: 100%;
    }
    .work-image{
        width: 100%;
    }




    .check-service-blocks{
        width: 90%;
    }


    .portfolio-blocks{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        width: 90%;
    }




    #team .title{
        margin: 0 0 40px 5%;
    }
    .team-cards{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        width: 90%;
    }
    .team-card{
        width: 90%;
        margin-bottom: 100px;
    }



    #contact .title{
        margin: 0 0 40px 5%;
    }
    .contact-blocks{
        display: flex;
        flex-direction: column;
        width: 90%;
    }           



    .footer-content{
        display: grid;
        grid-template-columns: repeat(3,1fr);
    }
    .newsletter{
        width: 100%;
        margin-top: 30px;
    }
    .newsletter p{
        width: 100%;
    }
    
}

@media screen and (min-width: 992px) and (max-width: 1400px){
    .header{
        align-items: center;
    }
    .logo i{
        margin-top: 10px;
    }
    .menu ul{
        opacity: 0;
        position: absolute;
    }


    .about-contents{
        width: 95%;
    }


    .number-cards{
        width: 95%;
    }
    .number-card{
        width: 21%;
    }




    .title{
        margin: 0 0 40px 5%;
    }

    
    .service-cards{
        width: 95%;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }
    .service-card{
        width: 100%;
        /* margin-bottom: 50px; */
    }
    .service-cards .service-card:nth-child(3){
        margin-top: 200px;
    }
    .service-cards .service-card:nth-child(3) .service-card-text{
        margin-bottom: 200px;
    }
    


    .clients-images{
        width: 90%;
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 100px;
    }
    



    #works{
        width: 90%;
    }
    .work-block{
        width: 200px;
        margin-bottom: 20px;
    }
    .work-content{
        width: 100%;
        font-size: 10px;
    }
    .work-text{
        width: 65%;
    }
    .work-image img{
        width: 100%;
        height: 300px;
        margin-bottom: 150px;
    }
    .work-text h2{
        margin-bottom: 5px;
    }
    .work-text p{
        margin-bottom: 10px;
    }
    .work-text p:nth-child(2){
        margin-bottom: 10px;
    }
    .work-text p:nth-of-type(1){
        margin-bottom: 10px;
    }
    #works .work-text-check p{
        margin-bottom: 5px;
    }
    .work-text p:nth-child(4){
        margin-top: 0;
    }
    



    .check-service-blocks{
        width: 90%;
    }


    .portfolio-blocks{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        width: 90%;
    }


    #team .title{
        margin: 0 0 40px 5%;
    }
    .team-cards{
        width: 90%;
    }
    


    #contact .title{
        margin: 0 0 40px 5%;
    }   
    .contact-blocks{
        width: 90%;
    }



    .footer-content{
        width: 90%;
        margin: 0 auto;
        font-size: 15px;
    }
    

}