/*********************
START: DESCRIPTION
*********************/
.description p {
    margin-block-start: 1.5rem;
}

.description p.text--middle.center {
    max-width: 1000px;
    margin-inline: auto;
    width: 100%;
}

.description--content {
    padding: 3rem 5rem;
    margin-block-start: 5rem;
    border-radius: var(--border-radius10);
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/bg-single-service.png");
}

.description--content ul {
    display: flex;
    flex-wrap: wrap;
}

.description--content ul li {
    border-radius: 100px;
    padding: 1rem 2rem 1rem 3.5rem;
    position: relative;
    color: var(--primary-color);
    border: 1px solid rgba(0, 68, 149, 0.5);
    background-color: rgb(255, 255, 255, 0.6);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.description--content ul li::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
}

/* v1 */
.service--single__V1 h3 {
    margin-block-start: 2.5rem;
}

.service--single__V1 ul {
    margin-block-start: 1.5rem;
}

.service--single__V1 ul li {
    margin: 9px;
    flex-basis: calc(50% - 18px);
}

/* v2 */
body.postid-7 .service--single__V1 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-block-start: 2rem;
    width: max-content;
    margin-inline: auto;
    column-gap: 3.125rem;
}

body.postid-7 .service--single__V1 ul {
    flex-direction: column;
    row-gap: 1rem;
}

/*********************
END: DESCRIPTION
*********************/


/*********************
START: SERVICES
*********************/
.services--title {
    max-width: 950px;
    margin-inline: auto;
    width: 100%;
}

.services--title p {
    margin-block-start: 1.5rem;
}

.services ul {
    display: flex;
    flex-direction: column;
    row-gap: 3.75rem;
    margin-block-start: 5rem;
}

.services ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.services ul li:nth-child(odd) {
    flex-direction: row;
}

.services ul li:nth-child(even) {
    flex-direction: row-reverse;
}

.services ul li .item--text {
    width: 57%;
}

.services ul li .item--text h4 {
    margin-block: 0.75rem 1rem;
}

.services ul li .item--text img {
    width: 40px;
    height: 40px;
}

.services ul li .item--img {
    width: 37%;
}

.services ul li .item--img img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius10);
}

/*********************
END: SERVICES
*********************/


/*********************
START: ADVANTAGES
*********************/
.advantages ul {
    display: grid;
    row-gap: 1.5rem;
    column-gap: 1.5rem;
    margin-block-start: 2rem
}

.advantages ul li {
    /* min-height: 435px; */
    padding: 2.5rem 2rem;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-position: center;
    border-radius: var(--border-radius10);
}

.advantages ul li img {
    width: 40px;
    height: 40px;
}

.advantages ul li h5 {
    margin-block: 0.75rem 1.5rem;
}



/* advantagesV1 */
.advantagesV1 ul {
    grid-template-columns: repeat(3, 1fr);
}

.advantagesV1 ul li {
    border: 1px solid rgba(0, 68, 149, 0.5);
}

.advantagesV1 ul li:nth-child(n) {
    background-image: url("../img/bg-advantage-1.png");
}

.advantagesV1 ul li:nth-child(2n) {
    background-image: url("../img/bg-advantage-2.png");
}

.advantagesV1 ul li:nth-child(3n) {
    background-image: url("../img/bg-advantage-3.png");
}

/* advantagesV2 */
body.postid-7 .advantagesV1 ul {
    grid-template-columns: repeat(2, 1fr);
}

body.postid-7 .advantagesV1 ul li:nth-child(odd) {
    background-image: url("../img/bg-advantage-1.png");
}

body.postid-7 .advantagesV1 ul li:nth-child(even) {
    background-image: url("../img/bg-advantage-3.png");
}


/*********************
END: ADVANTAGES
*********************/


/*********************
START: WORK
*********************/
.work {
    padding-block: 7.5rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../img/bg-heroInner.png");
}

.work ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-block-start: 3.75rem;
}

.work ul li {
    row-gap: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.work ul li img {
    width: 140px;
    height: 140px;
}

/* workV1 */
.workV1 ul li {
    margin: 10px;
    flex-basis: calc(25% - 20px);
}

/* workV2 */
body.postid-7 .workV1 ul li {
    margin: 35px;
    flex-basis: calc(33.33% - 70px);
}

/*********************
END: WORK
*********************/

/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {
    .work ul li img {
        width: 140px;
        height: 140px;
    }
}

@media screen and (min-width: 1320px) and (max-width:1439px) {
    .work ul li img {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 1319px) {
    .work ul li img {
        width: 80px;
        height: 80px;
    }
}


@media screen and (max-width: 1200px) {

    .services ul li .item--text img,
    .advantages ul li img {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 992px) {
	 .description--content {
        padding-inline: 4rem;
    }
	
    .service--single__V1 ul li {
        margin: 8px;
        flex-basis: calc(100% - 16px);
    }

    body.postid-7 .service--single__V1 {
        flex-direction: column;
        width: auto;
    }

    body.postid-7 .service--single__V1 h3 {
        text-align: center;
        margin-inline: auto;
        margin-block-end: 1.5rem;
    }

    .services ul li .item--text img,
    .advantages ul li img {
        width: 30px;
        height: 30px;
    }

    .advantagesV1 ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .workV1 ul li {
        flex-basis: calc(50% - 20px);
    }

    body.postid-7 .workV1 ul li {
        margin: 10px;
        flex-basis: calc(50% - 20px);
    }
}

@media screen and (max-width: 768px) {
    .description--content {
        padding-inline: 3rem;
    }

    .services ul li {
        row-gap: 2rem;
        flex-direction: column-reverse !important;
    }

    .services ul li .item--img {
        width: 70%;
    }

    .services ul li .item--text {
        width: 100%;
    }

    body.postid-7 .advantagesV1 ul {
        grid-template-columns: repeat(1, 1fr);
    }
}


@media screen and (max-width: 576px) {
    .description--content {
        padding-inline: 2rem;
    }

    .services ul li .item--img {
        width: 85%;
    }

    .workV1 ul li {
        flex-basis: calc(100% - 20px);
    }

    body.postid-7 .workV1 ul li {
        flex-basis: calc(100% - 20px);
    }
}

@media screen and (max-width: 425px) {
    .description--content {
        padding-inline: 1rem;
    }

    .services ul li .item--img {
        width: 100%;
    }
}

@media screen and (max-width: 375px) {}

/*********************
END: MEDIA
*********************/