/* =========================
   HOME / BANNER SECTION
========================= */

.home{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: auto;

    padding: 60px 9% 60px;

    gap: 50px;

    color: #fff;
}

/* =========================
   LEFT CONTENT
========================= */

.home_info h1{
    font-size: 55px;
    font-family: Arial, Helvetica, sans-serif;
}

.home_info h2{
    font-size: 32px;
    margin-top: 10px;

    display: inline-block;

    font-family: Arial, Helvetica, sans-serif;
}

/* TEXT ANIMATION */

.home_info h2 span{
    display: inline-block;

    position: relative;

    color: transparent;

    -webkit-text-stroke: .5px #00ffee;

    animation: text 16s linear infinite;

    animation-delay: calc(-4s * var(--kalu));
}

@keyframes text{

    25%,
    100%{
        display: none;
    }

}

.home_info h2 span::before{

    content: attr(data-text);

    position: absolute;

    width: 0;

    overflow: hidden;

    white-space: nowrap;

    color: #00ffee;

    border-right: 2px solid #00ffee;

    animation: fill 4s linear infinite;
}

@keyframes fill{

    0%{
        width: 0;
    }

    70%,
    90%{
        width: 100%;
    }

}

/* PARAGRAPH */

.home_info p{
    font-size: 16px;

    margin: 10px 0 25px;

    line-height: 28px;

    letter-spacing: 1px;

    color: #ffffffa6;

    font-family: 'Roboto', sans-serif;
}

/* =========================
   BUTTON + SOCIAL
========================= */

.btn_sec{
    display: flex;
    align-items: center;
}

/* BUTTON */

.btn{
    display: inline-block;

    padding: 10px 30px;

    border-radius: 40px;

    border: 2px solid #00ffee;

    background: #00ffee;

    color: #1f242d;

    font-size: 16px;

    box-shadow: 0 0 10px #0ef;

    transition: .5s;

    text-decoration: none;
}

.btn:hover{
    background: transparent;

    color: #0ef;

    box-shadow: none;
}

/* SOCIAL */

.btn_sec .sec{
    margin-left: 20px;
}

.btn_sec .sec a{

    display: inline-flex;

    margin: 0 8px;

    padding: 7px 5px;

    border-radius: 50%;

    border: 2px solid #00ffee;

    color: #00ffee;

    font-size: 18px;

    text-decoration: none;

    transition: .5s;
}

.btn_sec .sec a:hover{

    background: #00ffee;

    color: #1f242d;

    box-shadow: 0 0 10px #0ef;
}

/* =========================
   RIGHT IMAGE
========================= */

.home_img .img_box{

    position: relative;

    width: 28vw;
    height: 28vw;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    padding: 5px;

    overflow: hidden;
}

/* ROTATING BORDER */

.home_img .img_box::before,
.home_img .img_box::after{

    content: '';

    position: absolute;

    width: 100%;
    height: 100%;

    background:
    conic-gradient(
        transparent,
        transparent,
        transparent,
        #00ffee
    );

    animation: round 10s linear infinite;
}

.home_img .img_box::after{
    animation-delay: -5s;
}

@keyframes round{

    100%{
        transform: rotate(360deg);
    }

}

/* INNER IMAGE BOX */

.img_box .img_item{

    width: 100%;
    height: 100%;

    border-radius: 50%;

    overflow: hidden;

    position: relative;

    z-index: 1;

    background: #1f242d;

    border: 1px solid #1f242d;

    display: flex;
    justify-content: center;
}

.img_box .img_item img{

    position: absolute;

    top: -80px;

    width: 110%;

    object-fit: cover;

    mix-blend-mode: lighten;
}