*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
.header{
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 35px 12%;
background-color: rgb(0, 0, 0.8);
backdrop-filter: blur(10px);
display: flex;
justify-content: space-between;
align-items: center;
z-index: 100;

}
.logo{
    color: white;
    font-size: 25px;
    font-weight: 600;
    transition: 0.3s;

}
.logo:hover{
    color: orangered;
    text-shadow: 0 0 25px orangered,
                 0 0 50px;
        transform: scale(1.1);
}
span{
    color: orangered;
}
.navbar a{
    font-size: 18px;
    color: white;
    font-weight: 500;
    margin: 0 20px;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
    
}
.navbar a:hover,
.navbar a.active{
    color: orangered;
    border-bottom: 3px solid orangered;
}
.contact{
    padding: 10px 28px;
    background-color: white;
    color: black;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;

}
.contact:hover{
    background-color: orangered;
    box-shadow: 0 0 25px;
    color: white;
}
.home{
    width: 100%;
    min-height: 100vh;
    background-color: rgb(241, 241, 241);
    display: flex;
    align-items: center;
    gap: 7em;
    padding: 40px 12%;
}
.home-content{
    max-width: 800px;


}
.home-content h3{
    font-size: 42px;
    display: block;
    padding-top: 25%;
}
.home-content h1{
    font-size: 62px;
    line-height: 1.2;
    display: block;

}
.home-content p{
    font-size: 18px;
    margin: 25px 0  30px;
    display: block;
}
.btn-box{
    width: 345px;
    display: flex;
    gap: 2em;
}
.btn1{
    padding: 15px 28px;
    background-color: black;
    color: white;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
}
.btn1:hover{
    background-color: white;
    color: black;
    border: 2px solid black;
}
.btn2{
    padding: 15px 28px;
    background-color: orangered;
    color: white;
    border: 2px solid black;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
}
.btn2:hover{
    background-color: white;
    color: black;
    border: 2px solid orangered;
}
.img-box img{ 
    border-radius: 50%;
    width: 450px;
    margin-top: 12%;
}
::-webkit-scrollbar-thumb{
    background-color: orangered;
}
::-webkit-scrollbar-track{
    background-color: rgb(0, 0, 0.6);
}
.about{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12% 8%;
    gap: 10em;
    background: black;

}
.about-img img{
    position: relative;
    width: 550px;
    box-shadow: 0 0 25px orangered,
                0 0 50px orangered;
    border-radius: 50%;
}
.about-content h2{
    text-align: left;
    color: white;
    font-size: 42px;
    margin-bottom: 3%;
}
.about-content h3{
    font-size: 62px;
    color: white;
}
.about-content p{
    color: white;
    font-size: 20px;
    margin: 2em  0 3em;
}
.content-form h2{
    text-align: center;
    margin-top: 3em;
    margin-bottom: 1em;
    font-size: 36px;

}
.content-form form{
    max-width: 50em;
    margin: 1em auto;
    text-align: center;
    margin-bottom: 3em;

}
.content-form form .input-box{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.content-form form .input-box input,
.content-form form textarea{
    width: 100%;
    padding: 1.5em;
    font-size: 18px;
    color: black;
    background-color: rgb(241, 241, 241);
    border-radius: .8rem;
    margin: 1rem 0;
    resize: none;
}
.footer{
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 40px 0;
    background-color: orangered;
}
.footer .social{
    text-align: center;
    padding-bottom: 25px;
    color: white;
}
.footer .social a{
    font-size: 24px;
    color: white;
    border: 2px solid orangered;
    width: 40px;
    height: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    box-shadow: inset 0 0 10px orangered, 0 0 10px;
    transition: 0.3s ease;
}
.footer .social a:hover{
    transform: scale(1.2) translateY(-10px);
    color: orangered;
    border: 2px solid orangered;
}
.footer ul{
    margin-top: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}
.footer ul li a{
    color: white;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
}
.footer ul li a:hover{
    border-bottom: 3px solid orangered;
}
.footer ul li{
    display: inline-block;
    padding: 0 15px;
}
footer .copyright{
    margin-top: 15pxt;
    text-align: center;
    font-size: 12px;
    color: white;
}
#bar{
    color: orangered;
    font-size: 2em;
}
.navbar{
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

#bar{ 
    display: none;
    padding: 0;
    margin: 0;
}

@media(max-width: 768px){
    .navbar{
        display: none;
    }
    .contact{
        display: none;
    }
    .logo{
        padding-left: 0%;
        font-size: 2em;
        font-weight: 900;
        
    }
    #bar{
        display: block;
        padding-right: 2px;
    }
    .home h3{
        font-size: 2em;
        padding-top: 35%;
        padding-left: 10%;
    }
    .home h1{
        font-size: 3em;
        padding-top: 4%;
        padding-left: 5%;
        
    }
    .home p{
        font-size: 25px;
        padding-right: 10%;
        padding-left: 5%;
    }
    .btn-box{
        display: none;
    }
    .img-box{
        width: 100%;
        padding-bottom: 20%;
    }
    .home{
        display: none;
        padding: 2px;
        font-size: 14px;
    }
    .home img{
        width: 100%;
        margin-top: 1px;
    }
    .home{
        display: flex;
        flex-direction: column;
        align-items: center;
        
        
    }
    .about-content h3{
        padding-left: 6%;
    }
    .about-content h2{
        padding-left: 6%;
    }
    .about-content p{
        padding-left: 6%;
    }
    .btn2{
        display: none;
    }
    .about{
        display: none;
        padding: 10px;
        font-size: 14px;
    }
    .about img{
        width: 100%;
        margin-top: 80px;
    }
    .about{
        display: flex;
        flex-direction: column;
        align-items: center;
    
    }
    .content-form{
        display: none;
        padding: 10px 30px;
        font-size: 14px;
        
    }
    .content-forms{
        display: flex;
        flex-direction: column;
        align-items: center;
        
        
    }
    .about-content h2{
        padding-bottom: 4%;
    }
}

