.page-hero-section .container {
    background-image: url('../img/about-hero-2.webp');
}

.second-section {
    margin-bottom: 100px;
}

.second-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.second-section .section-title {
    margin-bottom: 30px;
}

.second-section .text-col {
    padding-right: 48px;
}

.second-section iframe {
    width: 100%;
    min-height: 420px;
    border-radius: 18px;
}
.second-section .vid-col{
	display: flex;
    justify-content: center;
}
.second-section .vid-col img{
	width: 500px;
}


.numbers-section {
    padding: 48px 0;
    background-color: var(--secondary);
    margin-bottom: 100px;
}

.numbers-section .container {
    display: flex;
    justify-content: space-between;
}

.numbers-column {
    color: var(--white);
    text-align: center;
}

.numbers-column-num {
    font-size: 128px;
    font-weight: 400;
    line-height: 1.2;
}

.numbers-column-num span {
    font-size: 64px;
}

.numbers-column-text {
    font-size: 20px;
    line-height: 32px;
    font-weight: 300;
}

.team-section {
    margin: 0 0 100px;
}

.team-container {
    margin: 60px 0 0;
}
.team-container .swiper-button-next::after,
.team-container .swiper-button-prev::after{
	font-size: 24px;
	color: #000;
	border-radius: 18px;
	background: #fff;
	padding: 10px 18px;
	border: 2px solid #E3E3E3;
}
.team-container .swiper-button-prev{
	left: 32px;
}
.team-container .swiper-button-next{
	right: 32px;
} 
.team-item{
	width: 280px !important;
}
.team-item > img{
	width:100%;
	height: 200px;
    object-fit: cover;
    object-position: top;
    border-radius: 18px;
}
.team-item-title {
    margin: 10px 0 0;
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
}

.team-item-btn {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    border: 3px solid #15302B73;
    display: flex;
    justify-content: space-between;
    align-items: center;
	display:none;
}

.team-item-btn img {
    margin: auto;
}

@media (max-width: 1200px) {
    .numbers-column-num {
        font-size: 80px;
    }

    .team-item-title {
        font-size: 24px;
        line-height: 1.5;
    }
}

@media (max-width: 992px) {
    .numbers-section .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
    }

    .second-section .container {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .second-section .section-title {
        margin-bottom: 16px;
    }
	.second-section .text-col{
		padding-right: 0;
	}
}

@media (max-width: 768px) {
    .team-section .btn {
        margin: 24px 0 0 auto;
    }
}

@media (max-width: 576px) {
    .numbers-column {
        width: calc(50% - 32px / 2);
    }

    .numbers-column-num {
        font-size: 64px;
    }
	.second-section .text-col{
		text-align: center;
	}
	.team-container .swiper-button-prev{
		left: 18px;
	}
	.team-container .swiper-button-next{
		right: 18px;
	}
	.team-section .btn{
		margin: 24px auto 0;
	}
}