@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;
}
/* @keyframes appear{
    from{
        opacity: 0;
        transform: translateX(-100px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
} */
section.part1{
    background-image: url("./assets/photo2-contact-sub-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    height: 500px; 
    display: flex;
    flex-direction: column;
}
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.part1 div.header{
    width: 900px;
    height: auto;
    margin: 0px auto;
    position: relative;
    top: 35%;
}
section.part1 div.header h1{
     color: white;
    font-size: 55px;
    text-transform: uppercase;
    font-family: 'Michroma', sans-serif;
}
section.part2{
    width: 900px;
    height: auto;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 120px;
}
section.part2 h2{
    font-size: 55px;
    color: white;
    font-family: 'Michroma', sans-serif;
    font-weight: 300;
    width: 75%;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 40%;
}
div.bot{
    display: flex;
    align-items: center;
    gap: 10px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 40%;
}
div.bot a{
    text-decoration: none;
}
div.bot p{
    color: white;
}
section.part3{
    background-color: black;
    margin-top: 150px;
}
section.part3 div.wrapper{
    width: 900px;
    height: auto;
    margin: 0px auto;
    display: flex;
    gap: 20px;
}
section.part3 .message{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 80px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 40%;
}
section.part3 .image{
    width: 50%;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 40%;
}
section.part3 .image .container{
    position: relative;
    top: -10%;
}
section.part3 .message .header h2{
    font-size: 55px;
    font-weight: 300;
    font-family: 'Michroma', sans-serif;
    color: white;
}
div.cont{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
section.part3 input{
    padding: 10px;
    background-color: #19171a;
    border: none;
}
section.part3 textarea{
    background-color: #19171a;
    border: none;
    padding: 10px;
}
section.part3 .input input{
    width: 50%;
}
input::placeholder{
    color: white;
}
textarea::placeholder{
    color: white;
}
section.part3 .input{
    width: 100%;
    display: flex;
    gap: 10px;
}
section.part3 .input2{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
section.part3 button{
    padding: 5px;
    text-transform: capitalize;
}
section.part3 .image{
    display: flex;
    gap: 35px;
}
section.part3 .image .container{
    display: flex;
    flex-direction: column;
    color: white;
    gap: 25px;
}
section.part3 .container .content{
    display: flex;
    justify-content: space-between;
}
section.part3 .container img{
    width: 620px;
    height: 650px;
}
section.part3 .container .content .images img{
    width: 20px;
    height: 20px;
}
div.words{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
div.words span{
    font-style: italic;
    font-weight: 300;
}
div.words p{
    font-weight: 600;
}
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:1100px){
    body{
        width: 95%;
        margin: 0px auto;
    }

    section.part3 .wrapper{
        width: auto;
        flex-direction: column;
        margin: 0px auto;
    }
    section.part3 .wrapper .message, section.part3 .wrapper .image{
        width: auto;
    }
    section.part3 .wrapper .image{
        margin: 0px auto;
    }
    section.part3{
        width: auto;
        height: 1400px;
    }
}
@media(max-width: 1025px){
   section.part1 .navbar{
    display: none;
   }
   section.part1 ul{
    display: block;
   }
   section.part4 .body ul li{
    text-align: center;
    }
    section.part4 .body ul li img{
        width: 300px;
        height: 150px;
    }
}
@media(max-width: 769px){
    section.part1 div.header h1{
        font-size: 45px;
    }
    section.part2 h2{
        font-size: 45px;
    }
    section.part3{
        width: auto;
        padding: 10px;
    }
    section.part3 div.wrapper{
        width: auto;
    }
    section.part4{
        width: auto;
        height: auto;
    }
    section.part4 div.body{
        width: auto;
    }
    section.part4 div.body ul{
        width: auto;
        flex-direction: column;
        align-items: center;
    }
    section.part4 div.body ul li{
        width: auto;
    }
    section.part4 div.bottom{
        width: auto;
        flex-direction: column;
        gap: 10px;
    }
}
@media(max-width: 681px){
    section.part1 div.header h1{
        font-size: 40px;
    }
    section.part2 h2{
        font-size: 40px;
    }
    section.part3 div.header h2{
        font-size: 30px;
        text-align: center;
    }
}
@media(max-width: 426px){
    section.part1 div.header{
        width: auto;
    }
    section.part1 div.header h1{
        font-size: 30px;
        text-align: center;
    }
    section.part2{
        width: auto;
    }
    section.part2 h2{
        width: auto;
        font-size: 30px;
        text-align: center;
    }
    section.part2 div.bot{
        width: auto;
    }
    section.part2 div.bot{
        flex-direction: column;
    }
    section.part4 div.body ul li{
        width: auto;
    }
    section.part3{
        height: 1100px;
        margin-top: 50px;
    }
    section.part3 div.wrapper div.message div.header h2{
        font-size: 30px;
    }
    section.part1 div.logo{
        width: auto;
        margin: 0px auto;
    }
    section.part1 div.logo img{
        width: 250px;
        height: 120px;
    }
    section.part3 div.wrapper div.image{
        width: auto;
    }
    section.part3 div.wrapper div.image img{
        width: 100%;
        height: auto;
    }
    
}
@media(max-width: 321px){
    section.part2 div.bot{
        flex-direction: column;
    }
    section.part4 div.body ul li{
        width: auto;
    }
    section.part3{
        height: 1000px;
        margin-top: 50px;
    }
}