.hero-section{
min-height:90vh;
display:flex;
align-items:center;
}

/* LEFT SIDE */

.hero-left{
background:#f3f3f3;
padding:80px 80px;
display:flex;
flex-direction:column;
justify-content:center;
}

.hero-tag{
color:#7c1b23;
font-weight:600;
letter-spacing:1px;
font-size:14px;
margin-bottom:20px;
}

.hero-title{
font-size:60px;
font-weight:700;
line-height:1.2;
color:#111;
}

.hero-title span{
color:#7c1b23;
text-decoration:underline;
}

/* BUTTON */

.hero-btn{
background:#7c1b23;
color:white;
border:none;
padding:14px 28px;
margin-top:30px;
font-weight:600;
}

/* RIGHT IMAGE */

.hero-image{
height:100%;
}

.hero-image img{
width:100%;
height:100%;
object-fit:cover;
}

/* FOLLOW TEXT */

.follow{
position:absolute;
right:20px;
top:50%;
transform:rotate(90deg);
font-size:12px;
letter-spacing:2px;
}

/* MOBILE */

@media(max-width:992px){

.hero-left{
padding:40px;
}

.hero-title{
font-size:36px;
}

.hero-section{
flex-direction:column;
}

.follow{
display:none;
}

}