/* landing */
.landing {
    background-image: url('../images/Group 78.png');
    background-size: cover;
    height: 300px;
    margin-bottom: 50px;
}

.landing .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
}

.landing .container .callus {
    font-weight: bold;
    color: #2784A1;
    font-size: 28px;
}

.landing .container p {
    color: black;
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
}

/* landing */

/* content */
.content {
    margin-bottom: 50px;
}

.content .first-row {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.content .first-row .text {
    text-align: right;
    flex: 50%;
}

[dir="ltr"] .content .first-row .text {
    text-align: left;
}

.content .first-row .text h3 {
    color: #2784A1;
    font-weight: 600;
    font-size: 24px;
}

.content .first-row .text p {
    font-weight: 500;
    font-size: 18px;
    color: #000000AB;
    line-height: 2;
}

.content .first-row .img-container {
    width: 350px;
}

.content .first-row .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 30%;
}

.content .second-row {
    margin-bottom: 50px;
    /* height: 500px; */
}

.content .second-row video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.content .third-row {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    z-index: 2;
    position: inherit;
}

.content .third-row .feat {
    text-align: right;
    min-width: 400px;
}

[dir="ltr"] .content .third-row .feat {
    text-align: left;
}

.content .third-row .feat h3 {
    font-weight: 600;
    font-size: 24px;
}

.content .third-row .feat p {
    font-weight: 500;
    font-size: 18px;
    color: #000000AB;
    line-height: 2;
    max-width: 340px;
}

.content .third-row .feat img {
    width: 40px;
    margin-bottom: 5px;
}

.content .third-row .img-container {
    width: 400px;
}

.content .third-row .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 30%;
    border-bottom-left-radius: 50%;
}

.content .final {
    position: relative;
}

.content .final .back-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

@media (max-width: 991px) {
    .content .first-row .text {
        text-align: center;
    }

    .content .first-row .img-container {
        margin: 0 auto;
    }

    .content .third-row.reverse {
        flex-direction: column-reverse;
    }

    .content .third-row .feat {
        text-align: center;
        min-width: unset;
        margin: 0 auto;
    }

    .content .third-row .img-container {
        margin: 0 auto;
    }
}

/* content */
