.hero-wrapper{
    padding-top: 350px;
    padding-bottom: 100px;
    display:flex;
    justify-content:center;
}

.hero-card{
    width:1300px;
    background:#0c0c05;
    padding:60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
    overflow:visible;
}

.hero-text{
    max-width:600px;
}

.hero-text h1{
    color:#fff;
    font-size:42px;
    line-height:1.3;
}

.hero-text span{
    color:#7690C9;
}

.hero-text p{
    color:#ffffff;
    font-size:18px;
    margin:20px 0 30px;
    line-height:1.6;
}

/* Square Button */
.cta-button{
    padding:14px 28px;
    border:1px solid #7690C9;
    border-radius:0;
    text-decoration:none;
    color:#fff;
    display:inline-block;
    transition:0.3s;
}

.cta-button:hover{
    background:#7690C9;
    color:#ffffff;
}

.hero-visual{
    position:absolute;
    right:0px;
    bottom:0px;
}

.hero-visual img{
    width:550px;
    display:block;
}


/* ===== Mobile View ===== */

@media (max-width:768px){

.hero-wrapper{
    padding:0;
}

.hero-card{
    width:100%;
    padding:30px 20px;
    flex-direction:column;
    align-items:flex-start;
}

.hero-text{
    max-width:100%;
    text-align:left;
}

.hero-text h1{
    font-size:30px;
}

.hero-text p{
    font-size:16px;
}

.hero-visual{
    display:none;
}

}