




/* quicklinks */
.quicklinks {
    background-color: #1f9251;
    height: 31.906vw;
    padding: 2vw 0vw;
    position: relative;
    margin-top: 20vw;
}

    .quicklinks .center3 h3 {
        font-size: 2.969vw;
        margin: 0px 15px 0px 15px;
        font-weight: 600;
        padding: 2.5vw;
        color: #fff;
    }

    .quicklinks .center3 ul li {
        width: 18%;
        height: 12.063vw;
        padding: 1.95vw 2.4vw;
        position: relative;
        background-color: #fff;
        list-style: none;
    }

    .quicklinks .center3 ul {
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
        gap: 1vw;
        padding: 0 2vw;
    }

        .quicklinks .center3 ul li a {
            text-decoration: none;
        }

            .quicklinks .center3 ul li a h4 {
                color: #3b3b3b;
                font-size: 1.2vw;
                font-weight: 500;
            }

                .quicklinks .center3 ul li a h4:hover {
                    color: gray;
                }

            .quicklinks .center3 ul li a .icon {
                display: flex;
                align-items: center;
                justify-content: space-between;
                position: absolute;
                bottom: 1.5vw;
            }

                .quicklinks .center3 ul li a .icon img {
                    height: 4vw;
                    width: 4vw;
                }

                .quicklinks .center3 ul li a .icon i {
                    font-size: 1.5vw;
                }

.about-us {
    height: 50.531vw;
    width: 100%;
    padding: 1.89vw;
    position: relative;
    margin-bottom: 15vw;
}

    .about-us .title {
        color: #4A4A4A;
        font-size: 2.969vw;
        margin: 0px 15px 0px 15px;
        font-weight: 600;
        text-align: center;
    }

    .about-us .invi-service {
        height: 12vw;
        margin-top: 2vw;
        /* border: 1px solid #ccc; */
        padding: 10px;
        position: relative;
        margin: 0px 15px 0px 15px;
    }

        .about-us .invi-service ul {
            display: flex;
            list-style: none;
            text-align: start;
            justify-content: flex-start;
            flex-wrap: wrap;
        }

            .about-us .invi-service ul li {
                width: 49%;
                margin-bottom: 0.781vw;
            }

                .about-us .invi-service ul li a {
                    font-size: 1.406vw;
                    text-decoration: none;
                    color: rgba(0, 0, 0, 0.6);
                }

        .about-us .invi-service p {
            margin-top: 4vw;
            font-size: 1.306vw;
        }

        .about-us .invi-service .box {
            position: relative;
            height: 23vw;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1vw;
            margin-top: 1.5vw;
        }

            .about-us .invi-service .box .left {
                width: 40%;
                background-color: #00455e;
                height: 100%;
                border-top-left-radius: 5px;
                border-bottom-left-radius: 5px;
                padding: 2.5vw;
            }

            .about-us .invi-service .box .right {
                width: 40%;
                background-color: #04396c;
                height: 100%;
                border-top-right-radius: 5px;
                border-bottom-right-radius: 5px;
                padding: 2.5vw;
            }

            .about-us .invi-service .box .left h3 {
                font-size: 1.5vw;
                font-weight: 500;
                color: #fff;
            }

            .about-us .invi-service .box .left p {
                font-size: 1.4vw;
                color: #fff;
            }

            .about-us .invi-service .box .right h3 {
                font-size: 1.5vw;
                font-weight: 500;
                color: #fff;
            }

            .about-us .invi-service .box .right p {
                font-size: 1.4vw;
                color: #fff;
            }

        .about-us .invi-service .box2 {
            margin-top: 2vw;
            background-color: #035b96;
            height: 32vw;
            width: 80%;
            margin-left: 9.2vw;
            border-radius: 5px;
            padding: 2.5vw;
        }

            .about-us .invi-service .box2 h3 {
                font-size: 1.5vw;
                font-weight: 500;
                color: #fff;
            }

.info-table {
    font-size: 1.4vw;
    color: #fff;
}

    .info-table .email a {
        color: #fff;
    }

    .info-table .investor a {
        color: #fff;
    }

    .info-table .email a:hover {
        color: gray;
    }

    .info-table .investor a:hover {
        color: gray;
    }

.info-table {
    width: 100%;
    max-width: 60vw;
    margin: .8vw auto;
    font-family: Arial, sans-serif;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3vw 0;
}

.label {
    font-size: 1.4vw;
    width: 80%;
}

.value {
    width: 100%;
    word-break: break-word;
    font-size: 1.4vw;
}

    .value .email {
        color: #fff;
    }

    .value .investor {
        color: #fff;
    }

    .value .email:hover {
        color: gray
    }

    .value .investor:hover {
        color: gray;
    }

/* Popup styles */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.popup-content {
    padding: 20px;
    text-align: center;
}

    .popup-content h3 {
        margin-bottom: 20px;
    }

    .popup-content a {
        display: block;
        margin: 10px 0;
        color: #012a57;
        text-decoration: none;
    }

        .popup-content a:hover {
            text-decoration: underline;
        }

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
}

/*---------------Media Page CSS-----------------------*/

.head1 {
    background-color: rgba(253, 252, 252, 0.1);
    color: #fff;
    width: 18vw;
    height: 29.5px;
    font-size: 1.094vw;
    border-radius: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1vw;
    opacity: 0.8;
    font-weight: 500;
}

    .head1 a {
        text-decoration: none;
        color: #060505;
        margin-left: 0.5vw;
        color: #fff;
    }

header h2 {
    font-size: 4.688vw;
    color: #fff;
}

.mediacenter {
    height: calc(100% - 365px);
}

.head2 {
    padding: 2vw 3vw;
    margin: 0px 15px 0px 15px;
}

    .head2 h1 {
        font-size: 2.969vw;
        font-weight: 600;
        color: #4A4A4A;
    }

    .head2 h2 {
        margin-top: 1vw;
        font-size: 2.969vw;
        font-weight: 600;
        color: #198754;
    }
.card-wrapper {
    margin: 0px 15px 0px 15px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-list {
    display: flex;
}

    .card-list .card-item {
        width: 10vw;
        list-style: none;
        padding: 2vw;
        position: relative;
    }

        .card-list .card-item .card-link {
            display: flex;
            text-decoration: none;
            border: 1px solid transparent;
            background-color: #fff;
            box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
            transition: 0.2s ease;
            border-radius: 10px;
            width: 40vw;
            height: 20vw;
        }

            .card-list .card-item .card-link .card-image {
                width: 60%;
                height: 100%;
                object-fit: cover;
                border-top-left-radius: 10px;
                border-bottom-left-radius: 10px;
            }

            .card-list .card-item .card-link .content {
                display: flex;
                flex-direction: column;
                width: 40%;
                padding: 1.4vw;
                position: relative;
            }

                .card-list .card-item .card-link .content .card-title {
                    color: #1f9251;
                    font-size: 1.1vw;
                    font-weight: bold;
                }

                .card-list .card-item .card-link .content .card-description {
                    color: #757873;
                    font-size: 0.9vw;
                    margin-top: 1vw;
                    transition: 0.2s ease;
                    position: absolute;
                    top: 8vw;
                }

                .card-list .card-item .card-link .content .extra {
                    color: #757873;
                    font-size: .8vw;
                    position: absolute;
                    bottom: 1vw;
                    transition: 0.2s ease;
                    display: flex;
                    gap: 2vw;
                }

/* container2 */
.glance {
    margin-top: 3vw;
}

.head h3 {
    font-size: 3vw;
    margin-bottom: 2vw;
    padding: 2vw 3vw;
    font-size: 2.969vw;
    font-weight: bold;
    color: #4A4A4A;
}

.container2 {
    height: 13vw;
    width: 85vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .container2 .card2-wrapper .card2-list .card2-link {
        text-align: center;
        cursor: grab;
    }

        .container2 .card2-wrapper .card2-list .card2-link img {
            width: 5vw;
            height: 5vw;
        }

        .container2 .card2-wrapper .card2-list .card2-link h2 {
            color: #1F9251;
            font-size: 1.7vw;
        }

        .container2 .card2-wrapper .card2-list .card2-link p {
            color: #757873;
            font-size: 1.2vw;
        }
/* container3 */

.container3 {
    background-color: #1f9251;
    padding: 3vw;
    color: #fff;
    height: 40vw;
    margin-top: 3vw;
    position: relative;
}

    .container3 .press-releases .press-re {
        width: 25%;
    }

.press-releases {
    display: flex;
}

    .press-releases .press-re h2 {
        font-size: 2vw;
        font-weight: bold;
        color: #fff !important;
    }

    .press-releases .press-re ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 5vw;
        margin-top: 4vw;
        position: absolute;
        left: 0.2vw;
        width: 25vw;
    }

        .press-releases .press-re ul li a {
            color: #fff;
            text-decoration: none;
        }

.press-re ul li a h3 {
    font-size: 1.2vw;
    color: #fff !important;
}

.date {
    font-size: 1vw;
    font-weight: 800;
}

.stories-block {
    width: 75%;
    position: relative;
}

    .stories-block h2 {
        font-size: 2.1vw;
        font-weight: bold;
        color: #fff !important;
    }

    .stories-block .new-updates {
        display: flex;
        width: 100%;
        height: 28.2vw;
        justify-content: space-around;
        list-style: none;
        margin-top: 3vw;
        position: relative;
    }

        .stories-block .new-updates .card {
            width: 21.7vw;
            height: 100%;
            color: #000;
            border-radius: 1vw;
        }

            .stories-block .new-updates .card .image img {
                width: 100%;
                height: 14vw;
                border-radius: 1vw;
            }

            .stories-block .new-updates .card .card-title {
                color: #1f9251;
                font-size: 1.3vw;
                font-weight: 600;
            }

.card .card-body .othersinfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #757873;
    font-size: 1.1vw;
    margin-top: 4vw;
    opacity: 0.8;
    font-weight: 700;
}

    .card .card-body .othersinfo a {
        text-decoration: none;
        color: #2f5cd1;
    }

        .card .card-body .othersinfo a i {
            font-size: 2.2vw;
            color: #1f9251;
        }
/* .view-btn {
  border: none;
  outline: none;
  width: 12vw;
  height: 3vw;
  color: #0f0544;
  border-radius: 20px;
  margin-top: 4vw;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  font-size: 1vw;
}
.view-btn:active {
  background-color: #abcce7;
} */

/* container4 */

.container4 {
    height: 45vw;
    margin: 3vw;
    position: relative;
}

    .container4 h1 {
        margin: 0vw 1.72vw 0vw 1.72vw;
        font-size: 2.969vw;
        color: #4A4A4A;
        font-weight: 600;
    }

    .container4 .new-updates {
        height: 28vw;
        gap: 10px;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        margin-top: 3vw;
        position: relative;
    }

        .container4 .new-updates li {
            width: 24%;
            height: 100%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
            list-style: none;
            border-radius: 10px;
        }

            .container4 .new-updates li a {
                text-decoration: none;
            }

            .container4 .new-updates li .thumb img {
                width: 100%;
                height: 15vw;
                border-radius: 10px;
            }

            .container4 .new-updates li .thumbinfo {
                padding: 1.5vw;
            }

                .container4 .new-updates li .thumbinfo h4 {
                    color: #1f9251;
                    font-size: 1.2vw;
                    font-weight: 600;
                    text-align: justify;
                }

                .container4 .new-updates li .thumbinfo .othersinfo {
                    color: #757873;
                    font-size: 1vw;
                    opacity: 0.8;
                    font-weight: 700;
                    bottom: 1vw;
                    position: absolute;
                    margin-left: 5vw;
                }


/* footer */

.footer-top .container5 ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 4vw;
}

    .footer-top .container5 ul li a {
        text-decoration: none;
    }

    .footer-top .container5 ul li a {
        color: #4A4A4A;
        font-weight: 400;
    }

    .footer-top .container5 ul li i {
        color: #1f9251;
        font-size: 2vw;
    }
