/*********************
START: HERO
*********************/
.hero {
    position: relative;
    background-image: url("../img/bg-hero.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.hero--content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-block: 11rem;
    max-width: 1050px;
    margin-inline: auto;
}

.hero--content h1 {
    line-height: auto;
    color: var(--text-color);
    font-weight: 700;
    text-align: center;
}

.hero--content p {
    line-height: var(--line-height150);
    color: var(--text-color-2);
    font-weight: 400;
    text-align: center;
    margin-block: 2rem 2.8rem;
}

.hero--btn {
    display: flex;
    align-items: center;
    justify-content: center;
    row-gap: 1rem;
    column-gap: 2rem;
    flex-wrap: wrap;
}

/*********************
END: HERO
*********************/


/*********************
START: ADVANTAGES
*********************/
.advantages ul {
    display: grid;
    row-gap: 1.5rem;
    column-gap: 1.5rem;
    margin-block-start: 2rem;
    grid-template-columns: repeat(3, 1fr);
}

.advantages ul li {
    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);
    border: 1px solid rgba(0, 68, 149, 0.5);
}

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

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

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

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

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

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

/*********************
START: ABOUT US
*********************/
.aboutUs--content {
    display: flex;
    row-gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.aboutUs--title {
    width: 30%;
}

.aboutUs--text {
    width: 65%;
}

/*********************
END: ABOUT US
*********************/


/*********************
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 a {
    margin-block-start: 2.5rem;
    color: var(--primary-color);
    justify-content: flex-start;
}

.services ul li .item--text a img {
    margin-inline-start: 0.75rem;
}

.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: MEDIA
*********************/
@media screen and (min-width: 1440px) {


    .hero--content p {
        font-size: 28px;
    }
}

@media screen and (min-width: 1320px) and (max-width:1439px) {

    .hero--content p {
        font-size: var(--text-2xl);
    }
}

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


@media screen and (max-width: 1200px) {
    .advantages ul li img {
        width: 35px;
        height: 35px;
    }

}

@media screen and (max-width: 992px) {
    .advantages ul li img {
        width: 30px;
        height: 30px;
    }

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

    .aboutUs--content {
        flex-direction: column;
    }

    .aboutUs--title,
    .aboutUs--text {
        width: 100%;
    }
	
	.services ul{
		margin-block-start: 4rem;
	}

    .service--single__V1 ul li {
        margin: 8px;
        flex-basis: calc(100% - 16px);
    }

    .service--single__V2 {
        flex-direction: column;
        width: auto;
    }

    .service--single__V2 h3 {
        text-align: center;
        margin-inline: auto;
        margin-block-end: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
	.services ul{
		margin-block-start: 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%;
    }
}

@media screen and (max-width: 576px) {
	.services ul{
		margin-block-start: 2rem;
	}
	
    .services ul li .item--img {
        width: 85%;
    }
}

@media screen and (max-width: 425px) {
    .services ul li .item--img {
        width: 100%;
    }
}

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

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