.casesSection {
    background-color: #002331;
    border-radius: 20px 20px 0 0;
}
.casesSection > h2 {
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 77px;
    color: #ececec;
    text-align: center;
}
.casesSection > figure {
    border-radius: 50px;
    overflow: hidden;
    height: 800px;
    margin: 0 20px 150px;
    position: relative;
}
.casesSection > figure:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.78) 100%);
}
.casesSection > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.casesSection > figure > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    gap: 40px;
}
.casesSection > figure > div > .divider {
    width: 2px;
    height: 100%;
    background-color: #b5b5b5;
}
.casesSection > figure > div > img {
    width: 236px;
    height: 121px;
}
.casesSection > figure > div > p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 18px;
    color: #e4d3d5cc;
    text-align: center;
    max-width: 380px;
}
.casesSection > .othersCases {
    padding: 0 20px 10px;
}
.casesSection > .othersCases > figure {
    border-radius: 50px;
    overflow: hidden;
    height: 800px;
    max-width: 1140px;
    width: 100%;
    height: 547px;
    margin: 0 auto 150px;
    position: relative;
}
.casesSection > .othersCases > figure:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.78) 100%);
}
.casesSection > .othersCases > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.casesSection > .othersCases > figure > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 50px 20px;
}
.casesSection > .othersCases > figure:nth-child(2) > div {
    gap: 20px;
}
.casesSection > .othersCases > figure:nth-child(1) > div > img {
    width: 166px;
    height: 80px;
}
.casesSection > .othersCases > figure:nth-child(2) > div > img {
    width: 189px;
    height: 35px;
}
.casesSection > .othersCases > figure > div > p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 15px;
    color: #e4d3d5cc;
    max-width: 380px;
}
@media (max-width: 767px) {
    .casesSection > h2 {
            padding: 40px 20px;
            font-size: 46px;
            line-height: 55px;
            border-bottom: 1px solid #2b4551;
            margin-bottom: 20px;
        }
    .casesSection > .othersCases > figure > div {
            align-items: center;
        }
    .casesSection > .othersCases > figure > div > p {
            max-width: unset;
        }
}
