*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    color:#fff;
}

.header{
    width:100%;
    padding:35px 70px;
    display:flex;
    justify-content:space-between;
    align-items:center;

}

  /* LOGO */

.logo{
    font-family:Afacad,sans-serify;
    font-size:50px;
    font-weight:400;
}

.logo span{
font-size:65px;
font-weight:400;
}

/* =======================
      NAVIGATION
========================== */

.navbar ul{

    display:flex;
    gap:60px;

    list-style:none;

}

.navbar a{

    text-decoration:none;

    color:#fff;

    font-size:18px;

    transition:.4s;

}

.navbar a:hover{

    color:#57e8ff;

}

/* =======================
      CONTACT BUTTON
========================== */

.contact-btn{

    width:190px;

    height:60px;

    border:none;

    border-radius:50px;

    background:#5f5f5f;

    color:white;

    font-size:18px;

    cursor:pointer;

   box-shadow:

0 0 25px rgba(255,255,255,.35),

0 0 40px rgba(255,255,255,.15);

    transition:.4s;

}

.contact-btn:hover{

    background:#4fd9ea;

    transform:translateY(-3px);

}

/*=========================
        HERO SECTION
=========================*/

.hero{

    width:100%;

    height:calc(100vh - 130px);

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 70px;

    overflow:hidden;

}

/* Left */

.hero-content{

    width:50%;

}

.hero-content h1{

    font-size:82px;

    line-height:1.1;

    font-weight:500;

}

.hero-content span{

    color:#4dd9ff;

}

.hero-content h2{

    margin-top:18px;

    font-size:34px;
    font-weight:500;

    color:#d6d6d6;

}

.hero-content p{

    margin-top:30px;

   width:75%;

    font-size:18px;

    color:#a8a8a8;

    line-height:1.8;

}

.hero-btn{

    margin-top:40px;

    width:190px;

    height:60px;

    border:none;

    border-radius:50px;

    background:#4dd9ff;

    color:#000;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.4s;

}

.hero-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 0 25px #4dd9ff;

}


/* RIGHT */

.hero-right{

    width:50%;

    height:100%;

    position:relative;

}

/* POLYGON */

.polygon{

    position:absolute;

  

    top:40px;

   
    width:760px;

right:-170px;

bottom:-20px;

}

/* PROFILE */

.profile{

    position:absolute;

    right:120px;

    bottom:0;

    width:420px;

    filter:drop-shadow(0 20px 40px rgba(255,255,255,.15));

}