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

    color:#D4AF37;

    letter-spacing:5px;

    font-size:14px;
}
small img{width:200px;}
body{

    background:black;
    color:white;

    font-family:Arial;

    overflow:hidden;
}

.hidden{
    display:none;
}

/* INTRO */

#intro{

    width:100%;
    height:100vh;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    position:relative;
}

#logo{

    width:120px;

    transition:.1s;
}

.scroll{

    position:absolute;

    bottom:50px;

    text-align:center;
}
#wa{

    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#111;

    border:1px solid #333;

    color:#25D366;

    text-decoration:none;

    font-size:28px;

    transition:.3s;
}

#wa:hover{

    transform:scale(1.1);

    border-color:#25D366;

    box-shadow:
    0 0 20px
    rgba(37,211,102,.4);

}
.mouse{

    width:30px;
    height:50px;

    border:2px solid white;

    border-radius:50px;

    margin:15px auto;
}

.wheel{

    width:5px;
    height:10px;

    background:white;

    border-radius:10px;

    margin:10px auto;

    animation:move 1.5s infinite;
}

@keyframes move{

    0%{

        transform:
        translateY(0);

    }

    100%{

        transform:
        translateY(15px);

        opacity:0;
    }
}

/* WELCOME */

#welcome{

    width:100%;
    height:100vh;

    display:flex;

    align-items:center;
    justify-content:space-between;

    padding:0 10%;
}

.left{

    width:60%;
}

.right{

    display:flex;
    justify-content:flex-end;
}

.right img{

    height:750px;
}

h1{

    font-size:50px;

    white-space:nowrap;

    line-height:1.1;
    margin-top: 20px;
}

h2{

    font-size:26px;
margin-top:20px;
    margin-bottom:40px;
}

.menu{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.menu button{

    width:350px;

    padding:20px;

    background:#111;

    color:white;

    border:1px solid #333;

    border-radius:15px;

    cursor:pointer;
}
.menu button{

    width:350px;
    padding:20px;

    background:#111;

    border:1px solid rgba(255,255,255,.1);

    border-radius:15px;

    color:white;

    font-size:20px;

    transition:.3s;
}

.menu button:hover{

    transform:translateX(10px);

    border-color:#D4AF37;

    background:
    rgba(212,175,55,.1);
}
.contact-btn{

    margin-top:20px;

    width:220px;

    padding:15px;

    border:none;

    border-radius:50px;

    background:#D4AF37;

    color:#000;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;
}

.contact-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 0 25px
    rgba(212,175,55,.4);

}
.right img{

    height:700px;

    animation:float 4s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0);
    }

}
.menu button{

    width:350px;

    padding:22px 25px;

    background:#111;

    color:#fff;

    border:1px solid rgba(255,255,255,.1);

    border-radius:15px;

    font-size:18px;

    text-align:left;

    cursor:pointer;

    transition:.3s;
}

.menu button:hover{

    transform:
    translateX(15px);

    border-color:#D4AF37;

    background:
    rgba(212,175,55,.08);

    box-shadow:
    0 0 20px
    rgba(212,175,55,.2);
}
.welcome-text{

    margin-top:30px;

    font-size:25px;

    line-height:1.5;

    color:#ccc;
}
#title{

    background:
    linear-gradient(
        90deg,
        #fff,
        #d4af37
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:
    transparent;
}
.floating-buttons{

    position:fixed;

    right:30px;
    bottom:30px;

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:999;
}

.floating-buttons button{

    width:60px;
    height:60px;

    border-radius:50%;

    border:1px solid #333;

    background:#111;

    color:white;

    cursor:pointer;

    transition:.3s;
}

.floating-buttons button:hover{

    border-color:#D4AF37;

    transform:scale(1.1);
}
.service-section{

    min-height:100vh;

    display:flex;

    align-items:center;
    justify-content:space-between;

    padding:0 10%;
}

.service-left{

    width:50%;
}

.service-right{

    width:50%;

    display:flex;
    justify-content:flex-end;
}

.service-right img{
max-width: 500px;
    max-height:700px;
}

.service-section h2{

    font-size:80px;

    margin:20px 0;
}

.service-section p{

    font-size:24px;

    color:#bbb;

    margin-bottom:30px;
}

.service-section ul{

    list-style:none;
}

.service-section li{

    padding:15px 0;

    font-size:22px;

    border-bottom:
    1px solid #222;
}
.contact-section{

    min-height:100vh;

    display:flex;

    align-items:center;
    justify-content:space-between;

    padding:0 10%;
}
.contact-right img{
max-width: 500px;
    max-height:700px;
}
.contact-section h2{

    font-size:72px;

    margin:20px 0;
}

.contact-info{

    display:flex;
    flex-direction:column;

    gap:20px;

    margin:40px 0;
}

.contact-info a{

    color:#fff;

    font-size:28px;

    text-decoration:none;
}.social-links{

    display:flex;
    gap:20px;

    margin-top:50px;
}

.social-links a{

    display:flex;
    align-items:center;
    gap:10px;

    padding:15px 25px;

    border:1px solid #222;

    border-radius:50px;

    background:#111;

    color:#fff;

    text-decoration:none;

    transition:.3s;
}

.social-links a:hover{

    border-color:#d4af37;

    color:#d4af37;

    transform:translateY(-3px);
}
/* ================================= */
/* TABLET */
/* ================================= */

@media(max-width:992px){

    body{
        overflow:auto;
    }

    #welcome,
    .service-section,
    .contact-section{

        flex-direction:column;

        justify-content:center;

        text-align:center;

        padding:80px 30px;
    }

    .left,
    .right,
    .service-left,
    .service-right,
    .contact-left,
    .contact-right{

        width:100%;
    }

    h1{

        font-size:55px;

        white-space:normal;
    }

    h2{

        font-size:28px;
    }

    .service-section h2,
    .contact-section h2{

        font-size:60px;
    }

    .menu{

        align-items:center;
    }

    .menu button{

        width:100%;
        max-width:450px;
    }

    .welcome-text{

        font-size:20px;
    }

    .right img,
    .service-right img,
    .contact-right img{

        max-width:350px;
        max-height:400px;

        margin-top:30px;
    }

    .social-links{

        justify-content:center;
        flex-wrap:wrap;
    }

}
@media(max-width:768px){

    #welcome,
    .service-section,
    .contact-section{

        display:flex;

        flex-direction:row;

        align-items:center;

        justify-content:space-between;

        padding:20px;
    }

    .left,
    .service-left,
    .contact-left{

        width:65%;
    }

    .right,
    .service-right,
    .contact-right{

        width:35%;

        display:flex;

        justify-content:flex-end;
    }

    h1{

        font-size:32px;

        white-space:normal;
    }

    h2{

        font-size:18px;

        margin-bottom:15px;
    }

    .service-section h2,
    .contact-section h2{

        font-size:32px;
    }

    .menu{

        gap:8px;
    }

    .menu button{

        width:100%;

        max-width:200px;

        padding:12px;

        font-size:14px;
    }

    .contact-btn{

        width:160px;

        padding:12px;

        margin-top:15px;
    }

    .right img,
    .service-right img,
    .contact-right img{

        max-width:130px;
        max-height:220px;
    }

    .welcome-text{

        display:none;
    }

    .service-section p,
    .contact-section p{

        font-size:14px;
    }

    .service-section li{

        font-size:14px;

        padding:8px 0;
    }

    .contact-info a{

        font-size:16px;
    }

    .social-links{

        flex-direction:column;

        gap:10px;
    }

    .social-links a{

        width:160px;

        justify-content:center;
    }

}