74 lines
1.4 KiB
CSS
74 lines
1.4 KiB
CSS
.frame-type-cloonar_hero {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-bottom: 3rem; /* Space for overlap */
|
|
background: #f9f9f9;
|
|
}
|
|
|
|
.frame-type-cloonar_hero .hero-header {
|
|
text-align: center;
|
|
margin-bottom: 2rem;
|
|
font-size: 2.5rem;
|
|
color: #3c3c3c;
|
|
}
|
|
|
|
.frame-type-cloonar_hero .hero-content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.frame-type-cloonar_hero .hero-text {
|
|
flex: 1;
|
|
font-size: 1.2rem;
|
|
color: #3c3c3c;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.frame-type-cloonar_hero .hero-image-wrapper {
|
|
position: relative;
|
|
flex: 1;
|
|
}
|
|
|
|
.frame-type-cloonar_hero .hero-image {
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.frame-type-cloonar_hero .hero-social-icons {
|
|
position: absolute;
|
|
right: -10%;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.frame-type-cloonar_hero .social-icon {
|
|
display: inline-block;
|
|
width: 40px;
|
|
height: 40px;
|
|
background-color: #3c3c3c;
|
|
color: #fff;
|
|
text-align: center;
|
|
line-height: 40px;
|
|
border-radius: 50%;
|
|
text-decoration: none;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.frame-type-cloonar_hero .next-section-overlap {
|
|
position: absolute;
|
|
bottom: 2rem;
|
|
width: 100%;
|
|
height: 2rem;
|
|
background: #ffffff;
|
|
z-index: 10;
|
|
}
|
|
|