@import url('https://fonts.googleapis.com/css2? family= Nunito:wght@200;300;400;500;600 & family= Poppins:ital,wght@0,100;0,200;0,300; 0,400;0,500;0,600;0,700;0,900;1,800 & display=swap');


:root{
    --box-background: #eee;
    --background-color: #fff;
    --color: #111;
    --orange: #111;
    --input-background: rgb(231, 231, 231);
    --menu-background: #eee;
    --menu-color: #eee;
}


:root.onclick{
    --background-color:#111;
    --box-background: #2223;
    --color: #fff;
    --orange: orange;
    --input-background: #2223;
    --menu-background: rgb(18, 18, 18);
}

body{
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}



body::-webkit-scrollbar{
    background-color: #111;
    width: 12px;
}
body::-webkit-scrollbar-thumb{
    background-color: orange;
    border-radius: 30px;
}




.click{
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    font-size: 23px;
    z-index: 1000;
    background-color: #222;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.2s;
}

.click i{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.click:hover{
    color: orange;
}

/* menu bearbeitung  */
.menu-bar .fa-xmark{
    display: none;
}

.menu-bar{
    position: fixed;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 25px;
    z-index: 10000;
    color: var(--color);
}


.menu-bar.active .fa-align-right{
    display: none;
}

.menu-bar.active .fa-xmark{
    display: block;
}
.menu-bar.active ~ .menu{
    position: fixed;
    left: 0;
}

/* menu bearbeitung ende */

body .menu{
    position: fixed;
    height: 100%;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--menu-background);
    z-index: 100000000;
    left: -100%;
    transition: left 1s ease-in-out;
}

.menu .menu-item{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu .menu-item .profile-img{
    background-color: aliceblue;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-image: url('images/profile.jpg');
    background-size: cover;
    background-position: center;
    border: 3px solid #eee;
    filter: drop-shadow(3px 6px 9px #222);
}

.menu .menu-item .menu-text{
    text-align: center;
    color: #111;
    font-size: 1rem;
}

.menu .menu-item .menu-text h3{
    font-weight: 500;
    color: var(--color);
}

.menu .menu-item .menu-text h3 span{
    color: orange;
}

.menu .menu-item .menu-text p{
    font-size: .8rem;
    padding: 0;
    position: relative;
    top: -15px;
    color: var(--color);
}


.menu .menu-item .menu-link{
    width: 90%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: var(--box-background);

    flex-direction: column;
}

.menu .menu-item .menu-link a{
    text-align: center;
    width: 90%;
    padding-top: 5%;
    padding-bottom: 5%;
    opacity: 0.9;
    background-color: #eee;
    filter: drop-shadow(3px 6px 9px #222);
    text-decoration: none;
    color: var(--color);
    font-weight: normal;
    font-size: 15px;
    border-radius: 10px;
    background-color: var(--input-background);
    z-index: 1000000;
}

.menu .menu-item .menu-link a:hover{
    color: orange;    
}

.menu .menu-item .menu-social{
    height: 10%;
    width: 90%;
    background-color: var(--box-background);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.menu .menu-item .menu-social a{
    margin: 5px;
    padding: 5px;
    padding-left: 25px;
    padding-right: 25px;
    background-color: var(--background-color);
    filter: drop-shadow(3px 6px 9px #222);
    text-align: center;
    font-size: 21px;
    color: var(--orange);
    opacity: 0.9;
    border-radius: 5px;
    transition: opacity 0.2s;
}

.menu .menu-item .menu-social a:hover{
    opacity: 1;
}



/* section-home */




.section-home{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-home .home-text{
    width: 70%;
    height: 35%;
    text-align: center;
}

.section-home .home-text h4{
    font-size: 17px;
    color: var(--color);
}

.section-home .home-text h3{
    font-weight: 660;
    color: var(--color);
}
.section-home .home-text h3 span{
    color: orange;
}

.section-home .home-text p{
    font-size: 14px;
    color: var(--color);
}

.section-home .home-text button{
    display: block;
    background-color: var(--box-background);
    padding: 10px;
    font-size: 17px;
    width: 150px;
    color: var(--color);
    position: relative;
    border: 2px solid var(--color);
    left: 50%;
    border-radius: 30px;
    cursor: pointer;
    transform: translateX(-50%);
}


/* section-home end */


/* section-about start */

section .section-about{
    width: 100%;
    height: 100vh;
}



.section-about #h3{
    text-align: center;
    position: relative;
    width: 90%;
    left: 5%;
    border-bottom: 3px solid var(--orange);
    color: var(--color);
}

.section-about h3 span{
    color: orange;
}

.section-about .about{
    width: 90%;
    height: 90vh;
    display: flex;
    justify-content: space-between;
    border-bottom: none;
    flex-wrap: wrap;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    gap: 60px;
}

.section-about .about .about-info{
    height: 45%;
    width: 45%;
    background-color: var(--box-background);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-about .about .about-info .info{
    width: 90%;
    position: relative;
    left: 50%;
    transform: translate(-50%,0%);
}



.section-about .about .about-info .info h3{
    border-bottom: none;
    text-align: left;
    font-size: 1rem;
    color: var(--color);
}

.about .about-info .info h3 span{
    color: orange;
}


.section-about .about .box{
    width: 45%;
    height: 45%;
    background-color: var(--box-background);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    border-radius: 10px;
}


.section-about .about .box .box-info{
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--box-background);
}

.section-about .about .box .box-info div{
    display: inline-block;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: #111;
    width: 120px;
    height: 120px;

}

.section-about .about .box .box-info div h3{
    color: orange;
    font-size: 23px;
}

.section-about .about .box .box-info div p{
    color: #fff;
}

.section-about .about .text{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 100%;
    border-radius: 10px;
    background-color: var(--box-background);
    color: var(--color);
    font-size: 20px;
    font-weight: 500;
    position: relative;
    top: -30px;
}
.section-about .about .text p span{
    color: orange;
}
/* section-about end */


/* section-contact start */

section .section-contact{
    height: 100vh;
    width: 100%;
}

section .section-contact #h3{
    text-align: center;
    position: relative;
    color: orange;
    width: 90%;
    left: 5%;
    font-size: 20px;
    border-bottom: 3px solid var(--orange);
}

section .section-contact h3 span{
    color: var(--color);
}


section .section-contact .contact{
    width: 90%;
    height: 90%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-59%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

section .section-contact .contact h3{
    color: #111;
}

section .section-contact .contact  .contact-info {
    background-color: var(--box-background);
    height: 170px;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section .section-contact .contact .contact-info .info{
    width: 90%;
    position: relative;
    left: 5%;
    color: var(--color);
}

section .section-contact .contact .contact-info{
    width: 45%;
    height: 45%;
    border-radius: 10px;
}

section .section-contact .contact .contact-info .info h3{
    font-size: 1rem;
    color: var(--color);
}

section .section-contact .contact .info h3 i{
    color: orange;
}

section .section-contact .contact .info .contact-social{
    width: 100px;
    height: 35px;
    background-color: #000;
    display: flex;
    align-items: center;    
    justify-content: center;
    font-size: 23px;
    border-radius: 30px;
}

section .section-contact .contact .info .contact-social a{
    color: orange;
    margin: 0 5px;
} 

section .section-contact .contact h3 span{
    color: orange;
} 

section .section-contact .contact .contact-form{
    background-color: var(--box-background);
    width: 50%;
    height: 90%;
    border-radius: 10px;
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


section .section-contact .contact .contact-form form{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section .section-contact .contact .contact-form form input{
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: none;
    outline: none;
    margin: 10px;
    background-color: var(--input-background);
    font-size: 17px;
    color: var(--color);
}

section .section-contact .contact .contact-form form textarea{
    resize: none;
    height: 70%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 5px;
    background-color: var(--input-background);
    color: var(--color);
    font-size: 17px;
}
section .section-contact .contact .contact-form form input:active::placeholder,
section .section-contact .contact .contact-form form textarea:active::placeholder{
    color: #111;
    font-size: 14px;
    text-indent: 10px;
}
section .section-contact .contact .contact-form form input::placeholder,
section .section-contact .contact .contact-form form textarea::placeholder{
    color: var(--color);
    font-size: 14px;
    text-indent: 5px;
}

section .section-contact .contact .contact-form form button{
    width: 110px;
    height: 35px;
    border-radius: 30px;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #111;
    font-weight: 550;
    color: var(--color);
    margin-top: 10px;
    opacity: 0.99;
    background-color: var(--background-color);
    align-self: flex-start;
    display: flex;
    align-items: center;
    justify-content: center;
}

section .section-contact .contact .contact-form form button:hover{
    opacity: 2;
}


section .section-contact .contact .contact-form form .contact-social a:nth-child(2){
    color: var(--color);
}

section .section-contact .contact .contact-form form button i{
    color: orange;

}


/* section-contact end */




@media (max-width: 786px){
    .section-about .about{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .section-about .about .about-info{
        width: 100%;
    }
    .section-about .about .box{
        width: 100%;
        margin-top: -5%;
        
    }
    .section-about .about .box .box-info{
        min-width: 100%;
        min-height: 100%;
    }
    .section-about .about .box .box-info div{
        min-width: 40%;
        min-height: 45%;
    }

     .section-contact{
        min-width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .section-contact .contact{
        min-height: 90%;
        display: flex;
        flex-direction: column;
        width: 100%;
        box-sizing: content-box;
    }
    
    .section-contact .contact .contact-form{
        max-height: 50%;
        min-width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .section-contact .contact .contact-form form {
        min-height:80%;
        min-width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        flex-direction: column;
        justify-content: center;
        flex-wrap: nowrap;
    }
    .section-contact .contact .contact-form form input{
        min-height: 40px;
        max-width: 90%;
    }
    .section-contact .contact .contact-form form textarea{
        max-width: 90%;
        min-width: 20%;
    }
    .section-contact .contact .contact-form form button{
        position: relative;
        left: 5%;
        top: 0;
        min-height: 25px;    
        max-width: 70px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        font-size: 12px;
    }

    .section-contact .contact .contact-info {
        min-width: 100%;
        min-height: 45%;
        margin-top: 5%;
    }
    .section-contact .contact .contact-info .info{
        width: 100%;
        height: 100%;
        display: flex;
        text-align: left;
        flex-direction: column;
        justify-content: center;
    }

    .menu{
        min-width: 70%;
    }
   
}

@media (min-width: 991px){
    .menu{
        max-width: 25%;
    }
}

@media (min-width: 565px){
    .menu{
        max-width: 90%;
    }
    .menu .menu-item{
        max-width: 90%;
    }
}



