.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 .images-box {
position: relative;
margin: 0 auto;
width: 80%;
margin-bottom: 80px;
}
.section2 .image-container {
width: 50%;
}
.section2 .image-container img {
height: 600px;
object-fit: cover;
width: 100%;
}
.section2 .info-container {
width: 50%;
padding: 24px;
}
.section3 video {
margin-bottom: 60px;
}
@media (max-width: 768px) {
.section2 .images-box {
width: 100%;
}
.section2 .info-container {
margin-top: 15px;
padding: 0;
width: 100%;
}
.section2 .image-container {
width: 100%;
}
.section2 .info-box {
flex-direction: column-reverse;
}
.section2 .image-container img {
height: 320px;
object-fit: cover;
width: 100%;
}
}