This commit is contained in:
2026-03-17 13:32:15 -05:00
parent b8d60dbc24
commit ee98b76896

View File

@@ -905,8 +905,8 @@ header.main-header .header-sticky.active{
background-size: cover; background-size: cover;
min-height: 100vh; min-height: 100vh;
overflow: hidden; overflow: hidden;
padding: 250px 0; padding: clamp(100px, 20vh, 200px) 0;
margin-top: -118px; margin-top: -50px;
} }
.hero::before{ .hero::before{
@@ -961,7 +961,7 @@ header.main-header .header-sticky.active{
.hero-slider-layout .hero-slide{ .hero-slider-layout .hero-slide{
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
padding: 250px 0; padding: clamp(100px, 20vh, 200px) 0;
} }
.hero.hero-slider:before{ .hero.hero-slider:before{
@@ -1029,10 +1029,11 @@ header.main-header .header-sticky.active{
background-color: var(--accent-color); background-color: var(--accent-color);
} }
/* Responsive hero content */
.hero-content{ .hero-content{
position: relative; position: relative;
width: 100%; width: 100%;
max-width: 1100px; max-width: min(90%, 1100px);
margin: 0 auto; margin: 0 auto;
text-align: center; text-align: center;
z-index: 2; z-index: 2;
@@ -1044,7 +1045,7 @@ header.main-header .header-sticky.active{
.hero-content .section-title p{ .hero-content .section-title p{
width: 100%; width: 100%;
max-width: 640px; max-width: min(90%, 640px);
margin: 0 auto; margin: 0 auto;
margin-top: 20px; margin-top: 20px;
color: var(--white-color); color: var(--white-color);