Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,10 @@ h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
.hero .intro-wrap {
position: relative;
z-index: 1; }
@media (max-width: 991.98px) {
.hero .intro-wrap{
margin-bottom: 1rem; }
}
.hero .slides {
background: #ffffff;
max-width: 800px;
Expand All @@ -583,11 +587,12 @@ h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
border-radius: 200px;
-webkit-box-shadow: 0 25px 50px -10px rgba(26, 55, 77, 0.4);
box-shadow: 0 25px 50px -10px rgba(26, 55, 77, 0.4);
height: 608px;
aspect-ratio: 68/93;
margin-bottom: -200px; }
@media (max-width: 991.98px) {
.hero .slides {
left: 0; } }
left: 0; }
}
.hero .slides img {
position: absolute;
border-radius: 200px;
Expand Down
6 changes: 5 additions & 1 deletion scss/_site-blocks.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@
.intro-wrap {
position: relative;
z-index: 1;
@include media-breakpoint-down(md) {
margin-bottom: 1rem;

}
}

.slides {
Expand All @@ -45,7 +49,7 @@
// top: -300px;
// overflow: hidden;

height: 608px;
aspect-ratio: 68/93;
margin-bottom: -200px;
@include media-breakpoint-down(md) {
left: 0;
Expand Down