.firstPhaseSec {
    position: relative;
}

.firstPhaseSec h3 {
    margin: 0 0 40px;
}

.firstPhaseSec p {
    margin: 0 0 20px
}

.aboutContentWrap {
    display: flex;
}

.aboutContentWrap .content {
    padding: 70px 0 50px 4%;
    max-width: 800px;
}

.about-img {
    margin: -170px 0 0;
    z-index: 1;
}

.aboutUpprContent {
    padding: 50px 60px 50px 450px;
    margin: 50px 0 0;
    position: relative;
}

.aboutUpprContent:before {
    content: "";
    position: absolute;
    background: var(--lightYellow);
    height: 100%;
    width: 80%;
    right: 0;
    top: 0;
}

.aboutUpprContent p {
    position: relative;
    z-index: 1;
}

.counterWrap {
    text-align: center;
    max-width: 860px;
    margin: 100px auto 0;
}

.counterWrap h3 {
    margin: 0 0 60px;
}

.counterWrap h3:after {
    display: none
}

.animatedCounterSec {
    justify-content: center;
}

.visionMissionRow {
    margin: -60px 0 0;
    padding: 160px 0 200px;
}

.whyChooseSec {
    border: solid 1px var(--primaryGolden);
    margin: -100px 0 100px;
    background: #fff;
    display: flex;
}

.whyChooseSec .leftSec {
    width: 30%;
    min-width: 350px;
    background: var(--primaryGolden);
    padding: 70px 40px 20px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.choose-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.07;
}

.whyChooseSec .leftSec h3 {
    color: inherit;
    margin: 0 0 60px;
}

.whyChooseSec .leftSec h3:after {
    background: #fff;
}

.whyChooseSec .leftSec p {
    font-size: 18px;
    line-height: 30px;
    position: relative;
    font-weight: normal;
}

.whyChooseSec .rightSec {
    display: flex;
    width: 70%;
    flex-wrap: wrap;
    padding: 50px 40px 0 0;
}


.whyChooseSec .thumb {
    width: 50%;
    display: flex;
    align-items: flex-start;
    margin: 0 0 50px;
}

.whyChooseSec figure {
    padding: 0;
    display: flex;
    align-items: flex-start;
    min-width: 130px;
}

.whyChooseSec figure img {
    width: 70px;
}

.whyChooseSec .heading {
    font-size: 26px;
    font-family: "Philosopher", sans-serif;
    font-weight: 700;
    color: var(--primaryGolden);
    margin: 0 0 20px;
}

.chairmanSec {
    display: flex;
    align-items: center;
}

.chairmanSec .rightSec {
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 6%);
    padding: 50px 50px 30px;
    width: 70%;
    position: relative;
}

.chairmanSec .icon {
    position: absolute;
    right: 50px;
    height: 80px;
}

.chairmanSec h3 {
    margin: 0 0 50px;
}

.chairmanSec h4 {
    font-family: inherit;
    font-weight: 400;
}

.chairmanSec p {
    margin: 0 0 20px;
}

.chairmanImg {
    margin: 0 -160px 0 0;
}

@media only screen and (max-width: 980px) {
    .aboutUpprContent {
        padding: 20px 20px 10px;
        background: var(--lightYellow);
        margin: 0 0 30px;
    }

    .about-img {
        margin: 0px 0 0;
        border: 0;
    }

    .aboutUpprContent:before {
        display: none
    }

    .whyChooseSec .rightSec {
        flex-direction: column;
        width: 100%;
    }

    .whyChooseSec {
        flex-direction: column;
        margin: -10px -14px 0;
    }

    .whyChooseSec .leftSec h3 {
        margin: 0 0 40px;
    }

    .whyChooseSec .leftSec {
        width: 100%;
        padding: 30px 40px 30px 40px;
    }

    .whyChooseSec .thumb {
        width: 100%;
    }

    .chairmanSec {
        flex-direction: column;
        align-items: self-start;
    }

    .chairmanSec .rightSec {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .firstPhaseSec {
        padding: 10px 0 !important;
    }

    .aboutContentWrap {
        flex-direction: column;
    }

    .aboutContentWrap .content {
        padding: 30px 0 0 0;
    }

    .counterWrap {
        margin: 0px auto 0;
    }

    .visionMissionRow {
        margin: 0;
        padding: 30px 0;
    }

    .chairmanSec .rightSec {
        padding: 30px;
    }
}

/* fade in animation */

.typo-animation {
    display: inline-block;
}

.typo-animation span {
    opacity: 0;
    display: inline-block;
    animation: fadeIn 3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* typo animation */

/* .typo-animation {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    font-size: 2rem;
}

.typo-animation span {
    display: inline-block;
    opacity: 0;
    visibility: visible;
} */


.whyChooseSec .rightSec .thumb{
    cursor: pointer;
    transition: all ease-in 0.5s;
}
.whyChooseSec .rightSec .thumb figure img{
    transition: all ease-in 0.3s;
}
.whyChooseSec .rightSec .thumb:hover figure img{
    transform: translateY(-8px);
}
