@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
body{
    background-color: #081b29;
    color: #ededed;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10px;
    background: transparent; 
    display:flex;
    justify-content:space-around;
    align-items:center;
    z-index: 100;
}
.Logo{
    font-size:30px;
    color: #ededed;
    text-decoration: none;
    font-weight: 600;
    margin-right: 600px;
}

.navbar a{
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
}
.navbar a:hover,
.navbar a.artive{
    color: #00abf0;
}
.Home{
    display: flex;
    background: url();
    height: 100vh;
    align-items: center;
    padding: 0 10%;
}
.Home-content{
    background: transparent;
    max-width: 600px;
}
.Home-content h1{
    font-size: 47px;
    font-weight: 700;
    line-height: 1.2;
}
.Home-content h3{
    font-size: 33px;
    font-weight: 700;
    color: #00abf0;
}
.Home-content p{
    font-size: 18px;
    margin: 20px 0 30px;
}
.Home-content .btn-box{
    width: 345px;
    height: 50px;
    display: flex;
    justify-content: space-between;
}
.btn-box a{
    width: 150px;
    height: 50px;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #00abf0;
    border: 2px solid #00abf0;
    border-radius: 8px;
    font-size: 19px;
    color: #081b29;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}
.btn-box a:hover{
    color: #00abf0;
}
.btn-box a:nth-child(2){
    background-color: transparent;
    color: #00abf0;
}
.btn-box a:nth-child(2):hover{
    color: #081b29;
}
.btn-box a:nth-child(2)::before{
    background: #00abf0;
}
.btn-box a::before{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #081b29;
    z-index: -1;
    transition: .5s;
}
.btn-box a:hover::before{
    width: 100%;
}
.home-sci{
    position: absolute;
    width: 170px;
    bottom: 40px;
    background: transparent;
    display: flex;
    justify-content: space-between;
}
.home-sci a{
    position: relative;
    display: inline-flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 2px solid #00abf0;
    border-radius: 30%;
    font-size: 20px;
    color: #00abf0;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}
.home-sci a::before{
    content: '';
    position:absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #00abf0;
    z-index: -1;
    transition:.5s;
}
.home-sci a:hover::before{
    width: 100%;
}
.home-sci a:nth-child(1):hover{
    color: #081b29;
}
.home-sci a:nth-child(2):hover{
    color: #081b29;
}
.home-sci a:nth-child(3):hover{
    color: #081b29;
}