@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600&family=Oxygen:wght@300&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Signika+Negative:wght@300&display=swap');

*
{
    font-family: 'Oxygen', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}
header ul{
    position: relative;
    display: flex;
    gap: 40px;
}
header ul li{
    list-style: none;
}
header ul li a{
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1.25em;
}
header ul li.active a, header ul li:hover a{
    color: rgb(0, 255, 89);
}
header .logo{
    position: relative;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 2em;
}
#home{
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px;
}
#home::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35vw;
    height: 28vw;
    background: rgb(0, 255, 89);
    border-top-right-radius: 25vw;
    border-top-left-radius: 25vw;
}
#home .content{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 650px;
    z-index: 10;
}
#home .content h3{
    position: relative;
    font-size: 2em;
    color: rgb(0, 255, 89);
}
#home .content p{
    position: relative;
    color: #fff;
    font-size: 1.2em;
    line-height: 1.6em;
}
.btn{
    position: relative;
    display: inline-block;
    font-size: 1.25em;
    max-width: 200px;
    background: rgb(0, 255, 89);
    color: #222;
    text-align: center;
    padding: 18px 30px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 3px;
    align-items: center;
}
#home .men{
    position: absolute;
    bottom: 0;
    right: 0px;
    max-height: 80vh;
}
#services, #portfolio, #contacts{
    position: relative;
    background: #34353a;
    min-height: 100vh;
    padding: 120px 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.secText{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.secText h2{
    font-size: 2em;
    color: #fff;
}
.secText p{
    max-width: 700px;
    text-align: center;
    color: #aaa;
    font-size: 1.1em;
    line-height: 1.5em;
}
#services .content{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 20px;
    margin: 40px 0;
}
#services .content .servicesBx{
    background: #2e2f2e;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px solid #34353a;
    border-radius: 15px;
    gap: 20px;
}
#services .content .servicesBx:hover{
    border: 2px solid rgb(0, 255, 89);
    cursor: pointer;
}
#services .content .servicesBx img{
    max-width: 100px;
    filter: invert(-40);
    opacity: 0.5;
    transition: 0.5s;
}
#services .content .servicesBx:hover img {
    opacity: 1;
}
#services .content .servicesBx h3{
    color: #fff;
    font-weight: 500;
    text-decoration: solid;
    color: rgb(0, 255, 89);
}
.center {
    width: 100%;
    text-align: center;   
    align-items: center;
}
#portfolio {
    background-color:#2e2f2e;
    text-align: center;
}
#portfolio .content{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 20px;
    margin: 40px 0;
    
}
#portfolio .content .imgBx{
    position: relative;
}
#portfolio .content .imgBx img{
    max-width: 100%;
}

 #portfolio .content .imgBx {
    background: #34353a;
     padding: 30px 30px;
     display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;   
    border: 2px solid #34353a;
    border-radius: 15px;
    gap: 20px;
} 
#portfolio .content .imgBx:hover{
    border: 2px solid rgb(0, 255, 89);
    cursor: pointer;
}
#portfolio .content .imgBx p{
    font-weight: 500;
    text-decoration: solid;
    color: rgb(0, 255, 89);
}

#contact {
    background-color:#34353a;
    text-align: center;
}
#contact .content{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 20px;
    margin: 40px 0;   
    padding: 100px;
    /* margin-bottom: 10px; */
}
#contact .content a {
    background: #222;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2em;
    color: #fff;
    transition: 0.5s;
    margin: 40px 0;
    border-radius: 15px;
    color: rgb(0, 255, 89);
}
#contact .content a:hover{
    background: rgb(0, 255, 89);
    color: #222;
}

.copyrights{
    margin-top: 150px;
    position: relative;
    color: #aaa;
    font-size: 1.2em;
}
.copyrights a{
    color: rgb(0, 255, 89);
}

/* media responsive */


@media (min-width: 1024px){
    #home .content h3{
        font-size: 3em;
    }
    #home::before{
        width: 28vw;
        height: 20vw;
        border-top-right-radius: 50vw;
        border-top-left-radius: 50vw;
    }
    #home .men{
        height: 65vh;
        right: 0px;
        
    }
    #services .content, #portfolio .content, #contact .content{
        grid-template-columns: repeat(2,1fr);
    }
    #contact .content a{
        height: 90px;
        margin-bottom: -50px;
    }
} 
@media (max-width: 978px){
    header{
        padding: 20px 50px;
    }
    #home::before{
        width: 10vw;
        height: 10vw;
        border-top-right-radius: 80vw;
        border-top-left-radius: 80vw;
    }
    #home{
        padding: 150px 50px;
        flex-direction: column;
        padding-bottom: 0;
    }
    #home .content h3{
        font-size: 4em;
    }
    .btn{
        max-width: 160px;
        padding: 10px 20px;
    }
    #home .men{
        /* position: absolute; */
        height: 50vh;
        right: 0;
    }
    .secText h2{
        font-size: 2em;
        text-align: center;
    }
    #services, #portfolio, #contact{
        padding: 100px 50px 50px;
    }
    #services .content, #portfolio .content, #contact .content{
        grid-template-columns: repeat(2,1fr);
    }
    .menuToggle{
        position: relative;
        width: 30px;
        height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        /* background: #fff; */
    }
    .menuToggle::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: #fff;
        transform: translateY(-10px);
        transition: 0.5s;
        box-shadow: 0 10px #fff;
    }
    .menuToggle::after{
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: #fff;
        transform: translateY(10px);
        transition: 0.5s;
    }
    header.active .menuToggle::before{
        transform: translateY(0px) rotate(45deg);
        box-shadow: 0 0px #fff;
    }
    header.active .menuToggle::after{
        transform: translateY(0px) rotate(315deg);
        box-shadow: 0 0px #fff;
    }
    header ul{
        display: none;
    }
    header.active ul{
        position: fixed;
        left: 0;
        top: 84px;
        width: 100%;
        height: calc(100vh - 84px);
        display: flex;
        background-color:rgba(50, 50, 50, 0.95);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 10000;
        gap: 20px;
    }
    header.active ul li a{
        font-size: 2em;
    }
    #contact .content a{
        height: 100px;
        margin-bottom: -50px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 700px){
    #home .content h3{
        font-size: 3em;
    }
    #home::before{
        width: 23vw;
        height: 20vw;
        border-top-right-radius: 80vw;
        border-top-left-radius: 80vw;
    }
    #home .men{
        height: 50vh;
        opacity: 0.8px;
        
    }
    #services .content, #portfolio .content, #contact .content{
        grid-template-columns: repeat(1,1fr);
    }
    #contact .content #home{
        height: 100px;
        margin-bottom: -50px;
        padding-left: 10px;
    }
    #contact .content {
        margin-bottom: 100px;
        padding-left: 10px;
    }
}

@media (max-width: 500px){
    #home .content h3{
        font-size: 3em;
    }
    #home::before{
        width: 63vw;
        height: 45vw;
        border-top-right-radius: 80vw;
        border-top-left-radius: 80vw;
    }
    #home .men{
        height: 45vh;
        opacity: 0.8px;
        
    }
    #services .content, #portfolio .content, #contact .content{
        grid-template-columns: repeat(1,1fr);
    }
    #contact .content #home{
        height: 100px;
        margin-bottom: -50px;
        padding-left: 10px;
    }
    #contact .content {
        margin-bottom: 100px;
        padding-left: 10px;
    }
}

