/* About page only CSS */

/* ==================================================
   FOUNDER SECTION
================================================== */

.founder-section {
    background: var(--white);
}

.founder-image-wrap {
    position: relative;
    max-width: 500px;
}

.founder-image-bg {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 110px;
    height: 380px;
    background: #EEF4F9;
    border-radius: 10px;
}

.founder-image {
    position: relative;
    z-index: 2;
}

.founder-image img {
    display: block;
    width: 100%;
}

.founder-card {
    position: relative;
    z-index: 3;
    margin-top: -35px;
    background: #fff;
    border: 4px solid var(--primary);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 10px 10px 0 rgba(245, 102, 0, .08);
}

.founder-card h3 {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: 54px;
    line-height: 110%;
}

.founder-card span {
    display: block;
    color: var(--primary);
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Content */

.founder-content p {
    margin-top: 24px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 180%;
}

/* Quote */

.founder-quote-box {
    margin-top: 36px;
    padding: 34px 40px;
    background: #FEF4ED;
    border-radius: 10px;
}

.founder-quote-icon {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 72px;
    line-height: 1;
    font-weight: 700;
}

.founder-quote-box p {
    margin: 0;
    color: var(--blue);
	font-family: 'Agbalumo';
    font-size: 30px;
    font-weight: 400;
    line-height: 170%;
    font-style: italic;
}

/* Bottom */

.founder-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-top: 40px;
}

.founder-signature img {
    max-width: 220px;
}

.founder-line {
    display: block;
    width: 100px;
    height: 3px;
    margin: 12px 0 22px;
    background: var(--primary);
}

.founder-details h4 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.founder-details p {
    margin: 0;
    font-size: 18px;
    line-height: 160%;
}

.founder-note {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 240px;
}

.founder-note-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FDF4EE;
    border-radius: 50%;
}

.founder-note-icon img {
    width: 26px;
}

.founder-note p {
    margin: 0;
    font-size: 15px;
    line-height: 150%;
}

/* ==================================================
   COMMITMENT SECTION
================================================== */

.commitment-content .heading-2 {
    max-width: 660px;
}

.commitment-content p {
    max-width: 660px;
}

.commitment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 12px;
    margin-top: 22px;
}

.commitment-tag {
    min-height: 50px;
    padding: 0 18px 0 0;
    border-radius: 50px;
    background: rgba(245, 102, 0, 0.08);
    color: var(--primary);
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.commitment-tag span {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-tag img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.commitment-tag.nj img {
    width: 33px;
    height: 33px;
}

.commitment-image-box {
    position: relative;
    padding: 0 12px 12px 0;
}

.commitment-image-box::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border: 1px solid var(--primary);
    border-radius: 0 12px 12px 12px;
    z-index: 1;
}

.commitment-image-box img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991px) {	
	.founder-image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }

    .founder-content {
        padding-left: 0;
    }

    .founder-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .founder-card h3 {
        font-size: 42px;
    }

    .founder-quote-box p {
        font-size: 24px;
    }
	
	.commitment-image-box {
        padding-left: 0;
    }

    .commitment-image-box img {
        height: 420px;
    }
}

@media (max-width: 767px) {

    .founder-image-bg {
        bottom: 90px;
        height: 300px;
    }

    .founder-card h3 {
        font-size: 34px;
    }

    .founder-card span {
        font-size: 18px;
    }

    .founder-quote-box {
        padding: 24px;
    }

    .founder-quote-box p {
        font-size: 20px;
    }
}


@media (max-width: 575px) {
    .commitment-tags {
        gap: 14px;
		padding-bottom: 40px;
    }

    .commitment-tag {
        width: 100%;
    }

    .commitment-image-box img {
        height: 330px;
    }
	
	.founder-note {
    	display: none;
	}
}
