@import url('https://fonts.googleapis.com/css2?family=Hachi+Maru+Pop&family=Orbitron:wght@400..900&family=Outfit:wght@100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hachi+Maru+Pop&family=Michroma&family=Orbitron:wght@400..900&family=Outfit:wght@100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    font-family: 'Poppins', sans-serif;
}
body{
    background-color: #19171a;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
/* @keyframes appear{
    from{
        opacity: 0;
        transform: translateX(-100px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
} */
section.part1 ul{
    display: none;
}
div.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
div.logo{
display: flex;
justify-content: center;
align-items: center;
color: white;
gap: 10px;
}
div.logo span{
text-transform: uppercase;
}
div.logo img{
width: 300px;
height: 150px;
}
div.navbar{
display: flex;
align-items: center;
gap: 30px;
margin-right: 35px;
}
div.navbar a{
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
}
div.navbar a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 5px;
    transform: scaleX(0);
    transition: transform .5s;
}
div.navbar a:hover::after{
    transform: scaleX(1);
}
div.navbar a:nth-child(6){
    border: 1px solid black;
    padding: 10px;
    background-color: black;
    border-radius: 5px;
}
div.navbar a:nth-child(6):hover{
    background-color: white;
    color: black;
}
section.part2{
    width: 900px;
    height: auto;
    display: flex;
    margin: 0px auto;
    /* animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 40%; */
}
section.part2 h1{
    color: white;
    font-family: 'Michroma', sans-serif;
    font-weight: 300;
    font-size: 55px;
    text-transform: uppercase;
    margin-top: 100px;
    /* animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 40%; */
}
section.part3{
    width: 900px;
    height: auto;
    margin: 0px auto;
    display: flex;
    gap: 10px;
    margin-top: 100px;
}
section.part3 div.middle div.hello{
    background-image: url("./assets/photo2-services-offer-4.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}
/* section.part3 div.middle div.hello img{
    
} */
section.part3 div{
    width: 33.33%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
section.part4{
        background-image: url("./assets/photo2-footer-bg.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position-x: right;
        height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        /* animation: appear linear;
        animation-timeline: view();
        animation-range: entry 0 cover 40%; */
}
 section.part4 div.body{
    width: 900px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    margin: 0px auto;
}
section.part4 ul{
    display: flex;
    gap: 20px;
}
section.part4 ul li{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30%;
    gap: 10px;
}
section.part4 ul li img{
    width: 400px;
    height: 200px;
}
section.part4 div.span{
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 15px;
    color: #65666c;
}
section.part4 ul li h3{
    font-family: 'Michroma', sans-serif;
}
section.part4 ul li p{
    font-weight: 600;
    font-size: 15px;
    color: #65666c;
}
section.part4 .body ul li:nth-child(1){
    gap: 20px;
}
section.part4 .line{
    background-color: #65666c;
    width: 100%;
    padding: 0.5px;
}
div.bottom{
    width: 900px;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
    margin: 0px auto;
    gap: 120px;
}
div.bottom .p p{
    font-weight: 500;
    font-size: 15px;
    color: #65666c;
}
div.bottom .images{
    display: flex;
    gap: 20px;
}
div.bottom .images img{
    width: 20px;
    height: 20px;
}
/* Responsive */
html,body{
    overflow-x: hidden !important;
}
@media(max-width:1171px){
    body{
        width: 95%;
        margin: 0px auto;
    }
}
@media(max-width:1025px){
    section.part4 div.body ul li img{
        width: 300px;
        height: 150px;
    }
}
@media(max-width:981px){
    section.part1 ul{
        display: block;
    }
    section.part1 div.navbar{
        display: none;
    }
}
@media(max-width:769px){
    section.part2{
        width: auto;
    }
    section.part2 h1{
        text-align: center;
    }
    section.part3{
        width: auto;
        flex-wrap: wrap;
    }
    section.part3 div.left, section.part3 div.middle{
        width: 45%;
    }
    section.part3 div.right{
        width: auto;
        flex-direction: row;
    }
    section.part3 div.right img{
        width: 30%;
        height: auto;
    }
    section.part4{
        width: auto;
        height: auto;
    }
    section.part4 div.body{
        width: auto;
    }
    section.part4 div.body ul{
        flex-direction: column;
        align-items: center;
    }
    section.part4 div.body ul li{
        width: auto;
        text-align: center;
    }
    section.part4 div.bottom{
        flex-direction: column;
        width: auto;
        gap: 10px;
    }
}
@media(max-width:681px){
    section.part3{
        width: auto;
        flex-wrap: wrap;
    }
    section.part3 div.left, section.part3 div.middle{
        width: 40%;
    }
    section.part3 div.right{
        width: auto;
    }
    section.part3 div.right img{
        width: 28%;
        height: auto;
    }
}
@media(max-width:426px){
    section.part3 div.left, section.part3 div.middle, section.part3 div.right{
        width: auto;
    }
    section.part3 img{
        width: 50%;
        margin: 0px auto;
    }
    section.part3 div.right{
        flex-direction: column;
    }
    section.part3 div.right img{
        width: 50%;
    }
    section.part1 div.logo{
        width: auto;
        margin: 0px auto;
    }
    section.part1 div.logo img{
        width: 250px;
        height: 130px;
    }
    section.part2 h1{
        font-size: 40px;
    }
}