/* @import url(); */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #1f242d;
}

a {
    color: white;
    text-decoration: none;
}

.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 25px 9%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.navbar .logo {
    font-size: 30px;
    font-weight: 600;
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    list-style: none;
    margin-left: 35px;
    transition: all 0.3s ease;

    :hover,
    .act {
        color: #7cf03d;
    }
}

.navbar ul li a {
    font-size: 20px;
    font-weight: 600;
}

/* CONTENT SECTION  */

.home {
    display: flex;
    align-items: center;
    height: 100vh;
    padding: 60px 9%;
    color: white;
}

.home-info h1 {
    font-size: 55px;
}

.home-info h2 {
    font-size: 32px;
    margin-top: -5px;
}

.home-info p {
    font-size: 16px;
    margin: 10px 0px 25px;
}

.home-info .btn-sci {
    display: flex;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid #7cf03d;
    border-radius: 40px;
    box-shadow: 0 0 10px #7cf03d;
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn:hover {
    color: #1f242d;
    background-color: #7cf03d;
    box-shadow: 1px 2px 20px #7cf03d;
}

.home-info .btn-sci .sci {
    margin-left: 20px;
}

.home-info .btn-sci .sci a {
    display: inline-flex;
    padding: 9px;
    border: 2px solid #7cf03d;
    border-radius: 50%;
    font-size: 20px;
    color: #7cf03d;
    margin: 0 8px;
    transition: 0.2s;
}

.home-info .btn-sci .sci a:hover {
    background: #7cf03d;
    color: #1f242d;
    box-shadow: 0 0 10px #7cf03d;
}


/* IMAGE SECTION  */

.home-img .img-box {

    width: 32vw;
    height: 32vw;
    background-color: #7cf03d;
    border-radius: 50%;
    padding: 2px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.home-img .img-box::before,
.home-img .img-box::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: conic-gradient(transparent, transparent, transparent #7cf03d);
}

.home-img .img-box .img-item {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1f242d;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #1f242d;

}

.home-img .img-box .img-item img {
    position: absolute;
    top: -10px;
    display: block;
    width: 115%;
    object-fit: cover;
    mix-blend-mode: lighten;
}