.about-page {

}

/*----------------------------------------------------------------------
about-section-title
----------------------------------------------------------------------*/
.about-page .about-section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
    margin-bottom: 76px;
    z-index: 1;
}

.about-page .about-section-title .title {
    font-weight: 800;
    font-size: 24px;
    text-align: center;
    color: rgba(37, 83, 132, 1);
    z-index: 1;
}

.about-page .about-section-title .description {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    color: rgba(114, 118, 119, 1);
    z-index: 1;
}

@media screen and (max-width:768px) {
    .about-page .about-section-title {
        margin-bottom: 28px;
    }

    .about-page .about-section-title .title {
        font-size: 22px;
    }

    .about-page .about-section-title .description {
        font-size: 16px;
    }
}

/*----------------------------------------------------------------------
about-header
----------------------------------------------------------------------*/
.about-page .about-header {
    position: relative;
    margin-bottom: 0 !important;
}

.about-page .about-header img.image-shape {
    width: 100%;
}

.about-page .about-header .about-section-title {
    position: absolute;
    top: 30px; 
    width: 100%; 
    margin: 0;
}

/*----------------------------------------------------------------------
purpose-wrapp
----------------------------------------------------------------------*/
.purpose-wrapp {
    background-color: rgba(249, 245, 238, 1);
    padding-top: 30px;
    padding-bottom: 60px;
}

.purpose-wrapp .purpose-content {
	display: flex;
	gap: 120px
}

.purpose-wrapp .purpose-content .content-inner {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 45px;
}

.purpose-wrapp .purpose-content .purpose-image {
	width: 100%;
	margin-bottom: 45px;
}

.purpose-wrapp .purpose-content .content-inner .inner-item {
	position: relative;
	padding: 50px 25px 25px 25px;
	border-radius: 10px;
	border: 1px solid var(--color-primary);
    background-color: #fff;
	width: 100%;
}

.purpose-wrapp .purpose-content .content-inner .inner-item .title {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 10px;
	height: 50px;
	left: 30px;
	right: 30px;
	top: -25px;
	border-radius: 10px;
	background-color: var(--color-secondary);
	color: #fff;
	font-size: 16px;
}

.purpose-wrapp .purpose-content .content-inner .inner-item .description {
	text-align: center;
	font-size: 16px;
	color: rgba(27, 31, 38, 0.72);
}

.purpose-wrapp .purpose-content.device,
.purpose-wrapp .purpose-content .device {
    display: none;
}

@media screen and (max-width: 1024px) {
    .purpose-wrapp {
        padding-top: 120px;
    }
}

@media screen and (max-width:768px) {

	.purpose-wrapp {
		padding-bottom: 45px;
	}

	.purpose-wrapp .purpose-content {
		display: block;
		text-align: center;
	}

	.purpose-wrapp .purpose-content .purpose-image {
		width: 80%;
	}

	.purpose-wrapp .purpose-content .owl-stage-outer {
		overflow: visible;
	}

	.purpose-wrapp .purpose-content .content-inner {
		margin-bottom: 45px;
		align-items: center
	}

	.purpose-wrapp .purpose-content .content-inner .inner-item {
		height: 170px;
	}

    .purpose-wrapp .purpose-content.desktop,
    .purpose-wrapp .purpose-content .desktop {
        display: none !important;
    }

    .purpose-wrapp .purpose-content.device,
    .purpose-wrapp .purpose-content .device {
        display: flex;
    }

}    

@media screen and (max-width: 767px) {
    .purpose-wrapp {
        padding-top: 200px;
    }
}

/*----------------------------------------------------------------------
content-wrapp
----------------------------------------------------------------------*/
.content-wrapp {

}

.content-wrapp .content-inner {
    display: flex;
    gap: 25px;
}

.content-wrapp .content-inner .inner-body {
    flex: 1;
}

.content-wrapp .content-inner .inner-body.body-scroll {
    position: relative;
    height: 523px;
}

.content-wrapp .content-inner .inner-body.body-scroll::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}

.content-wrapp .content-inner .inner-body .body-items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.content-wrapp .content-inner .inner-body.body-scroll .body-items-list {
    height: 523px;
    overflow-y: auto;
    padding-bottom: 100px;
}

.content-wrapp .content-inner .inner-body .body-item {
    font-weight: 600;
    font-size: 18px;
}

.content-wrapp .content-inner .inner-body .body-item strong {
    display: inline-block;
    font-weight: 900;
    color: var(--color-secondary);
    margin-left: 5px;
}

.content-wrapp .content-inner .inner-body .body-item b {
    display: inline-block;
    font-weight: 900;
    margin-left: 5px;  
    color: #000;  
}

.content-wrapp .content-inner .inner-body .body-item p {
    font-weight: 500;
    font-size: 18px;
    color: rgba(27, 31, 38, 0.72);
    line-height: 30px;  
    margin-bottom: 15px;  
}

.content-wrapp .content-inner .inner-body .body-item p.center {
    text-align: center;
}

.content-wrapp .content-inner .inner-body .body-items-list.ul-counter {
    counter-reset: item-counter;
    list-style: none;
    padding-left: 0;
}

.content-wrapp .content-inner .inner-body .body-items-list.ul-counter li.body-item {
    counter-increment: item-counter;
    position: relative;
    padding-right: 50px;
}

.content-wrapp .content-inner .inner-body .body-items-list.ul-counter li.body-item::before {
    content: counter(item-counter);
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
    height: 35px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    background-color: white;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}


.content-wrapp .content-inner .inner-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.content-wrapp .content-inner .inner-image img {
    width: 95%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 16px;
    z-index: 1;
}

.content-wrapp .content-inner .inner-image.size-auto img {
    width: auto;
    object-fit: contain;
}

.content-wrapp .content-inner .inner-image.size-small img {
    width: 55%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}

.content-wrapp .content-inner .inner-image img.absolue {
    position: absolute;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    z-index: 0;
}

@media screen and (max-width: 768px) {
    .content-wrapp .content-inner {
        flex-direction: column;
    }

    .content-wrapp .content-inner.device-reverse {
        flex-direction: column-reverse;
    }

    .content-wrapp .content-inner .inner-image.size-small img {
        width: 90%;
    }

    .content-wrapp .content-inner .inner-body.body-scroll {
        height: unset;
    }

    .content-wrapp .content-inner .inner-body.body-scroll::after {
        display: none;
    }

    .content-wrapp .content-inner .inner-body.body-scroll .body-items-list {
        height: unset;
        padding-bottom: 0;
    }  
}

/*----------------------------------------------------------------------
attention
----------------------------------------------------------------------*/
.attention {
    padding: 35px;
    background-color: var(--color-secondary);
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

.attention b, 
.attention strong {
    font-weight: 900;
}

.attention p {
    margin-bottom: 0;
}

@media screen and (max-width:768px) {
    .attention {
        font-size: 20px;
    }
}

	



