/*@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap');*/
/**{*/
/*    margin: 0%;*/
/*    padding: 0%;*/
/*    position: relative;*/
    /* overflow-x: hidden;; */
/*}*/

/*body{*/
/*    font-family: 'Lato', sans-serif;*/
/*    Overflow-y: auto;*/
/*}*/
/* html{
    display: flex;
    justify-content: center;
} */
/*body{*/
/*    max-width: 1400px;*/
/*}*/
div{
    overflow:hidden;
}
.service-section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1rem;
}
.service-section-heading , .service-section-para{
    text-align: center;
}
.service-section-para{
    max-width: 80%;
}
.service-section-flex-parent{
    display: grid;
    place-items: center;
    gap: 1rem;
    position: relative;
    width: 90%;
    transition: 1s;
}
.service-section-flex{
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 1rem 1rem;
    position: relative;
    transition: 1s;
}
.service-box{
    position: relative;
    display: flex;
    padding: 1.5rem 2rem;
    background-color: rgb(243, 242, 242);
    border-radius: 8px;
    transition: 1s;
    flex: 1;
    overflow: hidden;
}
.service-box .service-box-left h1{
    max-width: 200px;
}
#box-1 , #box-2 ,#box-3{
    height: 530px;
} 
#box-4 , #box-5 ,#box-6{
    height: 550px;
} 
.service-box::before{
    content: "";
    font-family: 'Roboto', sans-serif;
    font-size: 10rem;
    font-weight: bolder;
    position: absolute;
    bottom: 20%;
    left: -20%;
    transform: rotate(-90deg);
    color: rgba(169, 169, 169, 0.08);
}
.service-box-left{
    background-color: transparent;
}
#box-1::before{
    content: "SEO";
}
#box-2::before{
    content: "SMP";
}
#box-3::before{
    content: "PPC";
}
#box-5::before{
    content: "WEB";
}
#box-6::before{
    content: "ASO";
}


.service-box:hover{
    flex: 1.5;
}
.service-box-left{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.service-box-left h1{
    color: #ff4500;
}
.service-box-left p{
    min-width: 220px;
    max-width: 220px;
    font-size: 16px;
}
.service-box-right img{
    width: 100px;
    transition: 1s;
    margin-top: 30px;
    transform: scale(0);
}
.service-box:hover{
    width: 350px;
}
.service-box:hover > .service-box-right img{
    /* width: 100px; */
    transform: scale(1);
}

.arrow-box img{
    width: 30px;
    transition: 0.7s;
}
.service-box:hover > .service-box-left .arrow-box img{
    transform: translateX(10px);
}





/* RESPONSIVENESS */
@media screen and (max-width : 1200px) {
    .service-box{
        padding: 2rem 1rem;
    }
}
@media screen and (max-width : 1100px) {
    .service-section-flex{
        flex-direction: column;
    }
    .service-box{
        width: 500px;
        justify-content: space-between;
        padding-left: 3rem;
        padding-right: 4rem;
    }
    .service-box:hover{
        width: 600px;
    }
    .service-box-right img{
        width: 200px;
    }
}
@media screen and (max-width : 850px) {
    .service-box{
        width: 350px;
        justify-content: space-between;
        padding-left: 3rem;
        padding-right: 4rem;
    }
    .service-box:hover{
        width: 420px;
    }
}
@media screen and (max-width : 600px) {
    .service-box{
        width: 270px;
        justify-content: space-between;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .service-box-left p{
        font-size: 12px;
    }
    .service-box:hover{
        width: 320px;
    }
    .service-box-right img{
        width: 120px;
    }
}
@media screen and (max-width : 600px) {
    .service-box{
        width: 270px;
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem 2rem;
    }
    .service-box-right{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .service-box-right img{
        width: 120px;
        transform: scale(1);
    }
    .service-box:hover{
        width: 270px;
    }
}