.ambassades {
    padding: 40px 0 0;
}

.boxtitle-ambassades {
    width: 70%;
    margin: 0 auto;
    text-align: center;
}

.title-ambassades {
    color: #626262;
    font-size: 36px;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
}

.box-ambassades {
    position: relative;
    overflow: hidden;
    padding: 0 70px;
}

.bgwhite-ambassades {
    background: #fff;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
    border-radius: 35px;
    overflow: hidden;
    padding: 15px 30px;
    display: flex;
    flex-direction: column;
    margin: 30px 0;
    text-align: center;
}

.flex-logo-title {
    display: flex;
    align-items: center;
}

.flex-logo-title span {
    font-size: 24px;
    font-weight: 600;
    color: #cb043d;
    display: block;
    line-height: 28px;
    text-transform: uppercase;
    text-align: right; /* left -> right */
}

.logo-ambassades {
    width: 20%;
    margin-left: 15px; /* right -> left */
}

.logo-ambassades img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
}

.box-details-ambassade {
    position: relative;
    overflow: hidden;
    margin: 10px 0 0;
}

.box-ambassade {
    text-align: right; /* left -> right */
    margin: 10px 0 0;
    display: flex;
    flex-wrap: wrap;
}

.box-ambassade i {
    background: #ba0338;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.box-ambassade .parag-ambassade {
    font-size: 15px;
    color: #000;
    display: inline-block;
    padding-right: 5px; /* left -> right */
    width: calc(100% - 25px);
}

.box-ambassades.left-ambassade:before {
    content: "";
    background: #cb033d;
    width: 200px;
    height: 200px;
    position: absolute;
    right: 50px; /* left -> right */
    top: 10px;
    z-index: -1;
    border-radius: 35px;
}

.box-ambassades.right-ambassade:before {
    content: "";
    background: #cb033d;
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50px; /* right -> left */
    top: 10px;
    z-index: -1;
    border-radius: 35px;
}

.flexbox-ambassades .view-content {
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 992px) {
    .details-ambassades {
        width: 100%;
    }
    .box-ambassades {
        padding: 0 30px;
        width: 100%;
    }
    .box-ambassades.left-ambassade:before {
        right: 10px; /* left -> right */
    }
    .box-ambassades.right-ambassade:before {
        left: 10px; /* right -> left */
    }
    .flex-logo-title {
        justify-content: flex-end; /* start -> end */
    }
    .title-ambassades {
        font-size: 26px;
    }
}

@media screen and (max-width: 550px) {
    .title-ambassades {
        font-size: 22px;
    }
    .flex-logo-title span {
        font-size: 18px;
        line-height: 24px;
    }
    .box-ambassade .parag-ambassade {
        font-size: 14px;
    }
    .logo-ambassades {
        width: auto;
    }
}