.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 .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: 50%;
}
.section2 .intro-title {
text-align: center;
margin-bottom: 34px;
}
.section2 .team-members {
display: flex;
flex-direction: row;
justify-content: center;
gap: 64px;
margin-bottom: 60px;
}
.section2 .team-members .card {
width: 300px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
background: var(--beige);
padding: 20px;
background-color: #001d3d;
}
.section2 .team-members .card .img-container img {
border-radius: 200px;
}
.section2 .team-members .card p {
padding: 5px;
}
.section2 .team-members .card .crew-name,
.section2 .team-members .card p {
color: var(--beige);
}
.section3 video {
margin-bottom: 60px;
}
@media (max-width: 768px) {
.section2 .team-members {
flex-direction: column;
align-items: center;
}
}