@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #fff;
    --primary-color: #007bff;
    --hover-primary-color: #003D9A;
    --secondary-color: #6c757d;
    --secondary-color-2: #333a3f;
}

body {
    font-family: "Poppins", sans-serif;
    width: 100%;
    height: auto;
}


/* animation for whole page */
.hidden {
    /* filter: blur(2px); */
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.show {
    opacity: 1;
    /* filter: blur(0); */
    transform: translateY(0);
}

.hidden-content {
    /* filter: blur(2px); */
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.show-content {
    opacity: 1;
    /* filter: blur(0); */
    transform: translateX(0);
}

.hidden-content-left {
    /* filter: blur(2px); */
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.show-content-left {
    opacity: 1;
    /* filter: blur(0); */
    transform: translateX(0);
}

@media(prefers-reduced-motion) {
    .hidden {
        transition: none;
    }
}



/* Content Starts */

.container-fluid {
    width: 100%;
    padding: 20px;
    margin-top: 30px;
    background-color: #fff;
}

.content1 h1 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.content1 h1 span:nth-child(1) {
    color: var(--primary-color);
}

.content1 h1 span:nth-child(2) {
    color: var(--secondary-color);
}

.content1 h3 {
    margin-top: 15px;
    text-align: center;
    color: rgb(82, 81, 81);
    font-size: 1.4rem;
    font-weight: 550;
}

.content1 p {
    margin-top: 15px;
    font-size: 0.9rem;
    text-align: justify;
}

@media (max-width: 767.98px) {
    .container-fluid {
        padding: 15px;
        margin-top: 25px;
    }

    .content1 {
        padding: 20px;
    }

    .content1 h1 {
        font-size: 1.3rem;
    }

    .content1 h3 {
        font-size: 1.3rem;
    }

    .content1 p {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .container-fluid {
        padding: 10px;
        margin-top: 20px;
    }

    .content1 {
        padding: 30px;
    }

    .content1 h1 {
        font-size: 1.2rem;
    }

    .content1 h3 {
        font-size: 1.2rem;
    }

    .content1 p {
        font-size: 0.9rem;
    }
}

/* Content1 Ends */

/* Content Starts */

.content2 {
    margin-top: 2px;
    padding-top: 50px;
    padding-bottom: 35px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 1) 100%), var(--light-color);
    position: relative;
    width: 100%;
}

.image1 {
    height: 7rem;
    position: absolute;
    left: 9rem;
    top: 16rem;
    transform: rotate(15deg);
}

.image2 {
    height: 6rem;
    position: absolute;
    left: 6rem;
    top: 7rem;
}

.image3 {
    height: 6rem;
    position: absolute;
    left: 58rem;
    bottom: 12rem;
    transform: rotate(-25deg);
}

.image4 {
    height: 6rem;
    position: absolute;
    top: 14rem;
    right: 7rem;
    transform: rotate(5deg);
}


.content2 h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 650;
    color: #333;
    margin-bottom: 30px;
}

.content2 .list {
    margin-left: 17rem;
}

.content2 .list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.content2 .list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
}

.content2 .list li::before {
    content: "\2022";
    color: #FF6347;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.content2 h2 span:nth-child(1) {
    color: var(--primary-color);
}

.content2 h2 span:nth-child(2) {
    color: var(--secondary-color);
}

@media (max-width:1115px) {
    .image1 {
        display: none;
    }

    .image2 {
        display: none;
    }

    .image3 {
        display: none;
    }

    .image4 {
        display: none;
    }

    .content2 .list {
        margin-left: 13rem;
    }
}

@media (max-width:950px) {
    .content2 .list {
        margin-left: 7rem;
    }
}

@media (max-width: 767.98px) {
    .image1 {
        display: none;
    }

    .image2 {
        display: none;
    }

    .image3 {
        display: none;
    }

    .image4 {
        display: none;
    }

    .content2 {
        padding: 20px;
    }

    .content2 .list {
        margin-left: 7rem;
    }

    .content2 h2 {
        font-size: 24px;
    }

    .content2 .list li {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .image1 {
        display: none;
    }

    .image2 {
        display: none;
    }

    .image3 {
        display: none;
    }

    .image4 {
        display: none;
    }

    .content2 {
        padding: 30px;
    }

    .content2 h2 {
        font-size: 22px;
    }

    .content2 .list {
        margin-left: 2rem;
    }

    .content2 .list li {
        font-size: 16px;
    }
}

/* Content2 Ends */

/* content3 starts */
.content3 {
    margin-top: 1px;
    padding: 20px;
    padding-top: 50px;
    padding-bottom: 35px;
    position: relative;
    width: 100%;
    background-image: url('/image/about-content/handshake.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
}

.content3 h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 650;
    margin-bottom: 30px;
}

.content3 h2 span:nth-child(1) {
    color: var(--primary-color);
}

.content3 h2 span:nth-child(2) {
    color: var(--secondary-color);
}

.li-p {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.li-p .li {
    margin-left: 1rem;
    width: 20%;
}

.li-p .p {
    margin-right: 1rem;
    width: 70%;
    font-size: 16px;
    text-align: justify;
}

.li ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.li li {
    font-size: 18px;
    color: #e7dddd;
    margin-bottom: 6px;
    line-height: 1.5;
}

.li li::before {
    content: "\2022";
    color: #FF6347;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

@media screen and (max-width: 768px) {
    .content3 h2 {
        text-align: justify;
    }

    .li-p .li,
    .li-p .p {
        width: calc(100% - 40px);
        margin: 0 20px 20px;
    }
}

/* content3 ends */