.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;
}
.section1 .second {
position: absolute;
bottom: 0;
width: 100%;
bottom: 0;
height: 100%;
}
.section2 .titles-container {
margin-bottom: 80px;
}
.section2 .cruises-list {
display: flex;
flex-direction: column;
gap: 24px;
margin-bottom: 60px;
}
.section2 .cruise {
display: flex;
gap: 24px;
flex-direction: row;
position: relative;
padding: 20px;
}
.section2 a.cruise:hover {
color: unset;
}
.section2 .cruise .cruise-image img {
height: 100%;
transition: 0.3s all ease-in;
object-fit: cover;
}
@media (max-width: 768px) {
.section2 .cruise .cruise-image img {
height: 360px;
object-fit: cover;
}
}
.section2 .cruise:hover .cruise-image img {
scale: 1.1;
}
.section2 .cruise .cruise-title {
width: max-content;
position: relative;
}
.section2 .cruise .cruise-title::before {
content: '';
position: absolute;
bottom: 0;
width: 0%;
height: 1px;
background-color: #001d3d;
transition: 0.2s all ease-in;
}
.section2 .cruise:hover .cruise-title::before {
width: 100%;
}
.section2 .cruise .cruise-infobox {
width: 90%;
}
.section2 .cruise .cruise-image {
overflow: hidden;
width: 50%;
}
.section2 .cruise .cruise-description {
padding-right: 30px;
}
.section2 .cruise .total-guests,
.section2 .cruise .time,
.section2 .cruise .info {
gap: 8px;
align-items: center;
}
@media (max-width: 768px) {
.section2 .cruise .cruise-image,
.section2 .cruise .cruise-infobox {
width: 100%;
}
.section2 .cruise {
display: flex;
gap: 24px;
flex-direction: column;
position: relative;
padding: 20px;
}
}