@import url('https://fonts.googleapis.com/css2?family-Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    /* background: #081629; */
    background: #070707;
    color:#ededed;
}

.header {
    /* position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 0 10px; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* padding: 20px 10%; */
    padding: 8px 10%;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    z-index: 100;
    background: black;
    border-bottom: 1px solid #00648c;
}

.logo {
    font-size: 25px;
    color:#ededed;
    text-decoration: none;
    font-weight: 600;
}

.navbar a {
    font-size: 18px;
    /* color: #ededed; */
    /* color: cyan; */
    color: #00abf0;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    /* margin-right: 35px; */
    transition: .3s;
}

.navbar a.active {
    /* color:#00abf0; */
    /* color: #ededed; */
    /* color: rgb(255, 0, 183) */
    /* color: #00abf0; */
    color: cyan;
}

.navbar a:hover {
    /* color:#00abf0; */
    /* color: #9966ff; */
    /* color: rgb(255, 0, 183); */
    color: cyan;
}

.home {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
}    
 
.home-content {
    max-width: 800px;
    /* border: 1px solid #00abf0; */
}

.home-content p {
    /* font-size: 16px; */
    font-size: 19px;
    /* margin: 20px 0 40px; */
    margin: 20px 0;
}

.home-content h1 {
    /* font-size: 56px; */
    font-size: 64px;
    /* font-weight: 600; */
    line-height: 1.2;
}

.home-content h3 {
    font-size: 30px;
    font-weight: 700;
    color:#00abf0;
    width: 700px;
    text-align: right;
}

.home-content h4 {
    font-size: 22px;
    font-weight: 700;
    /* color:#9966ff; */
    color: cyan ;
}

.home-content .btn-box {
    display: flex;
    justify-content: space-between;
    width: 345px;
    /* height: 50px; */
    height: 40px;
}

.btn-box a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    /* background:#00abf0; */
    /* background:#081b29; */
    border: 2px solid #00abf0;
    border-radius: 8px;
    /* font-size: 19px; */
    font-size: 17px;
    /* color: #081b29; */
    color: cyan;
    text-decoration: none;
    /* font-weight: 600; */
    font-weight: 500;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.btn-box a:hover {
    /* color: #00abf0; */
    /* color: cyan; */
    color: #081b29;
}

.btn-box a:nth-child(2) {
    background: transparent;
    /* color:#00abf0; */
    color: cyan;
}

.btn-box a:nth-child(2):hover {
    color: #081b29;
}

.btn-box a:nth-child(2)::before {
    /* background: #00abf0; */
    background: #00abf0;
}

.btn-box a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    /* width: 0; */
    width: 100%;
    /* height: 100%; */
    height: 0;
    /* background: #081b29; */
    background: #00abf0;
    z-index: -1;
    transition: .5s;
}

.btn-box a:hover::before {
    /* width: 100%; */
    width: 100%;
    height: 100%;
}
