/**********************************
START: MEET TEAM
***********************************/
.meetTeam__layout {
    display: flex;
    align-items: center;
	justify-content: space-between;
}

ul.meetTeam__profiles {
    width: 48%;
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

ul.meetTeam__profiles li{
	height: 350px;
}

ul.meetTeam__profiles li img {
    display: block;
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
}

.teamCard {
    margin: 0;
    width: 48%;
}

.teamCard__caption {
    margin-top: 14px;
    font-size: 12px;
    color: #111111;
    text-align: center;
}

.meetTeam__content {
    width: 48%;
}

.meetTeam__title {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 700;
	color: var(--baseDark-color);
}

.meetTeam__p {
    font-size: 1.05em;
    color: var(--baseDark-color);
    margin-top: 18px;
}

/**********************************
END: MEET TEAM
***********************************/


/**********************************
START: VIDEO
***********************************/
/* video */
.video iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}

/**********************************
END: VIDEO
***********************************/


/**********************************
START: SERVICES
***********************************/

.services--title{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.services--title h2{
    width: 32%;
	color: #2f4950;
	line-height: 120%;
	font-size: 30px;
}

.services--title .services--intro{
    width: 65%;
	color: #6d6d6d;
	line-height: 26px;
}

.services--list ul{
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    margin-block-start: 3rem;
}

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

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

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

.services--list ul li > div{
    width: 48%;
}

.services--list ul li > div img{
    width: 100%;
	height: auto;
	aspect-ratio: 4 / 3.5;
    object-fit: cover;
}

.services--list ul li > div h3{
    margin-block-end: 1rem;
	font-size: 30px;
	line-height: 120%;
	font-weight: 700;
	color:#2f4950;
}

.services--list ul li .services--item__body{
	color: #6d6d6d;
	font-size: 1.05em;
	line-height: 150%;
}
/**********************************
END: SERVICES
***********************************/

/**********************************
START: ADDRESS
***********************************/
.address--content{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.address--map, 
.address--form{
	width: 48%;
}

.address--map iframe{
	width: 100%;
}
/**********************************
END: ADDRESS
***********************************/


/**********************************
START: MEDIA
***********************************/
@media screen and (max-width: 768px) {
    .meetTeam__layout {
        flex-direction: column;
        gap: 5rem;
    }

    ul.meetTeam__profiles,
    .meetTeam__content {
        width: 100%;
    }

    .teamCard {
        width: 100%;
    }
	
	.services--title{
		flex-direction: column;
		row-gap: 1rem;
	}
	
	.services--title h2, 
	.services--title .services--intro{
		width: 100%;
	}

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

    .services--list ul li > div:first-child{
        width: 70%;
    }

    .services--list ul li > div:last-child{
        width: 100%;
    }
	
	.address--content{
		row-gap: 1.5rem;
		flex-direction: column;
	}
	
	.address--map, 
	.address--form{
		width: 100%;
	}
}

@media screen and (max-width: 576px) {
	.services--list ul li > div:first-child {
        width: 85%;
    }
	
	.services--title h2{
		font-size: 26px;
	}
	
	.services--list ul li > div h3{
		font-size: var(--text-2xl);
	}
	
	.meetTeam__p,
	.services--list ul li .services--item__body{
		font-size: var(--text-base);
	}
}

@media screen and (max-width: 425px) {
	.services--list ul li > div:first-child {
        width: 100%;
    }
}
/**********************************
END: MEDIA
***********************************/