@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&family=Roboto+Mono:wght@300&family=Varela+Round&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Roboto Mono', monospace; */
    font-family: 'Josefin Sans', sans-serif;

}
html,body{
    overflow: hidden;
}
.container{
    background-color:#1d2026;
    min-height: 100vh;
    width: 100%;
    color: #fff;
    position: relative;
}
nav{
    display: flex;
    align-items: center;
    padding:20px 8%;
    transition: .5s;
}
nav .menu-img{
    width: 25px;
    margin-right: 20px;
    cursor: pointer;
    display: none;
}
nav .logo{
    width: 120px;
    cursor: pointer;
}

nav ul{
    flex: 1;
    text-align: right;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin: 0 25px;
}
nav ul li a{
    text-decoration: none;
    color: #fff;
}

button{
    background-color:#efefef ;
    height: 30px;
    width: 60px;
    border-radius: 20px;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: 0.5s;

}
button span{
    background: #999;
    height: 26px;
    width: 26px;
    display: block;
    border-radius: 50%;
    margin: 0 3%;
    transition: 0.5s;
    
}
.lamp-con{
    position: absolute;
    top: -30px;
    left: 20%;
    width: 200px;
    /* background-color: blue; */
}
.lamp2-con{
    position: absolute;
    left: 52%;
    width: 150px;
    /* background-color: blue; */
    display: inline-flex;
    align-items: center;
}
.lamp{
    width: 100%;
}
.lamp2{
    width: 100%;
}
.light{
    position: absolute;
    left: 45%;
    transform: translatex(-50%);
    top: 98%;
    width: 700px;
    opacity: 0;
    transition: 0.5s;
}
.light2{
    position: absolute;
    width: 200px;
    top: 89%;
    left: 48%;
    transform: translatex(-50%);
    opacity: 0;
    transition: .5s;
}
.text-con{
    max-width:600px;
    margin-left: 50%;
    margin-top: 12%;
}
.text-con h1{
    font-size: 80px;
    font-weight: 400;
    line-height: 100px;
}
.text-con a{
    text-decoration: none;
    background-color: #00986f;
    padding: 14px 40px;
    display: inline-block;
    color: #fff;
    border-radius: 30px;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Varela Round', sans-serif;
}
.control{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 110px;
}
.line{
    width:250px;
    height: 4px;
    background-color: #fff;
    margin: 0 20px;
    border-radius: 2px;
}
.line span{
    background-color: #00986f;
    display: block;
    height: 8px;
    width: 50%;
    margin-top: -1%;
    border-radius: 4px;
    display: block;
}
.active{
    background-color: green;
}
.active span{
    background-color: white;
    transform: translatex(30px);
}
.glow{
    opacity: 1;
}
button .text{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: 900;

}
/* button 2 style------------ */
.btn2{
    cursor: pointer;
    width: 60px;
    height: 30px;
    background-color: rgb(158, 158, 142);
    border-radius: 30px;
    border: 0;
    outline: 0;
    margin-left:10px;
}
.btn2 span{
    background-color: rgb(79, 91, 67);
    margin: 2px 2px;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2df40f;

}
.active2{
    background-color:green;
    transition: .5s;
}
.active2 span{
    transform: translatex(30px);
    color: rgb(9, 9, 13);
    background-color: #eae9e9;
}
.change{
    width: 130px;
    height: 200px;
    background-color: #188807;
    position: absolute;
    top: 10%;
    left: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    line-height: 50px;
    font-size: 20px;
    border-radius: 0px 30px 30px 0px;
}





