.section {
position: relative;
}
.section1 {
min-height: 100vh;
background-color: #001d3d;
display: flex;
align-items: center;
justify-content: center;
position: relative;
width: 100%;
flex-direction: column;
margin-bottom: 120px;
}
.section1::before {
content: '';
width: 100%;
height: 100%;
background-color: #001d3d7d;
position: absolute;
left: 0;
top: 0;
z-index: 1;
}
.section1 .img1 {
width: 100%;
height: 100%;
object-fit: cover;
}
.section1 .first {
z-index: 5;
text-align: center;
}
.section1 .first .title-container span {
font-size: 64px;
color: white;
margin-bottom: 0;
}
.section2 {
margin-bottom: 80px;
}
.section1 .second {
position: absolute;
bottom: 0;
width: 100%;
bottom: 0;
height: 100%;
}
.section2 .text1 {
max-width: 900px;
margin: 0 auto;
}
.section2 .anchor-image {
filter: grayscale(1);
opacity: 0.8;
margin-bottom: 24px;
}
.section3 .boat-table {
width: 80%;
margin: 0 auto;
margin-bottom: 80px;
}
.section3 .boat-table .heading {
color: #001d3d;
text-transform: uppercase;
font-weight: 700;
}
.section3 .boat-table td {
border-color: #001d3d;
}
.section4 .gallery {
display: grid;
grid-template-columns: repeat(12, minmax(0, 1fr));
gap: 24px;
margin-bottom: 80px;
}
.section4 .gallery-img {
grid-column: span 3 / span 3;
}
@media (max-width: 768px) {
.section4 .gallery {
padding: 10px;
}
.section4 .gallery-img {
grid-column: span 6 / span 6;
}
}
.section4 .gallery-img img {
aspect-ratio: 1.4;
object-fit: cover;
}