@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');

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --sec-Color: #1E3705;
    --pri-fontColor: #000;
    --Color: #E9E9E9;
    --sec-fontColor: #FFFFFF;
    --icon-color: rgba(18, 101, 255, 1);
}

/* utility class */
.flex {
    display: flex;
}

/* ------ */
body {
    background-color: var(--sec-fontColor);
    overflow-x: hidden;
}

/* --- info section - 1 ----*/

.info-section {
    margin-bottom: 40px;
    background-image: url("../Images/bg-img-1.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}


.info-img {
    padding: 12px;
    border-radius: 25px;
}

.info {
    flex-direction: column;
    gap: 25px;
}

.info .info-head p {
    margin: 0;
    color: #ebebeb;
    font-size: 36px;
    font-weight: 400;
}

.info .info-head h1 {
    margin: 0;
    font-family: "Outfit", sans-serif;
    color: var(--sec-fontColor);
    font-size: 85px;
    font-weight: 700;
    line-height: 80px;
}

.info-about {
    color: var(--Color);
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}

.info-contact {
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.info-contact .info-contact-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.info-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--sec-fontColor);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.info-contact p i {
    color: var(--sec-color);
    font-size: 24px;
}

.info-contact p a {
    text-decoration: none;
    color: var(--sec-fontColor);
    font-size: 18px;
    font-weight: 500;
}

.info-btn a {
    color: var(--sec-fontColor);
    background-color: var(--sec-Color);
    display: inline-block;
    padding: 12px 36px;
    text-decoration: none;
    border-radius: 28px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
}

.info-btn a::before {
    content: "";
    width: 0%;
    height: 100%;
    border-radius: 28px;
    background-color: var(--sec-fontColor);
    position: absolute;
    border: none;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.5s;
}

.info-btn a:hover::before {
    width: 100%;
}

.info-btn a:hover {
    color: var(--sec-Color);
}

/* --- highglight --- */
.highlight {
    padding: 40px 0;
    margin: 40px 0 20px 0;
    position: relative;
}

.section-head {
    text-align: center;
    font-family: "Outfit", sans-serif;
    color: var(--sec-Color);
    font-size: 48px;
    font-weight: 600;
    margin: 0;
}

.card {
    border-radius: 22px;
    height: 100%;
}

.card .card-header {
    padding: unset;
    margin-bottom: 0;
    border-bottom: unset;
    border-top-left-radius: 22px;
    border-top-right-radius: 20px;
    overflow: hidden;
    height: 320px;
}

.card .card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    transition: all 0.3s;
}

.card .card-body {
    padding-block: 14px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.card-body::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background-color: var(--sec-Color);
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    z-index: -1;
    transition: all 0.2s;
}

.card .card-body p {
    text-align: center;
    color: var(--pri-fontColor);
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    margin: 0;
    transition: all 0.2S;
}

.card:hover .card-header img {
    transform: scale(1.1);
}

.card:hover .card-body::before {
    height: 100%;
}

.card:hover .card-body P {
    color: var(--sec-fontColor);
}

/* --- footer --- */
.footer {
    padding: 40px 0 20px 0;
    background-image: url("../Images/bg-img-1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-container a,
p {
    color: var(--sec-fontColor);
    text-decoration: none;
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-container .footer-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-container .footer-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* --- modal ---- */
.modal {
    width: 100%;
    height: 100%;
    padding-left: 12px;
    overflow: hidden;
}

/* .modal-dialog {
    min-width: 80%;
    min-height: 100%;
} */

.modal-content {
    max-height: 80vh;
    border-radius: 24px;
    overflow: hidden;
    padding-bottom: 20px;
}

.modal-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: unset;
    position: relative;
    padding: 20px;
}

.modal-header .btn-close {
    position: absolute;
    top: 10px;
    right: 20px;
}

.modal-header .modal-title {
    text-align: center;
    color: var(--sec-Color);
    font-family: Outfit;
    font-size: 32px;
    font-weight: 600;
    line-height: 153.9%;
}

.modal-body {
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

.modal-body .pdf-detail {
    margin-bottom: 12px;
}

.modal-header .pdf-detail p {
    color: #737373;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 153.9%;
}

.pdf-container {
    flex-direction: column;
    gap: 16px;
}

.pdf-container a {
    display: block;
    text-decoration: none;
}

.pdf-1 {
    height: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 8px;
    border: 1px solid #eee;
    position: relative;
    z-index: 1;
}

.pdf-1::before {
    content: "";
    background-color: #5E6656;
    width: 0%;
    height: 100%;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 300ms;
}

.pdf-container a:hover .pdf-1::before {
    width: 100%;
}

.pdf-container a:hover .pdf-1 p {
    color: var(--sec-fontColor);
}

.pdf-container a:hover .pdf-btn {
    color: var(--sec-fontColor);
    font-weight: 600;
}

.pdf-1 .pdf-info img {
    width: auto;
    height: 44px;
    object-fit: cover;
}

.pdf-1 .pdf-info p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    transition: all 300ms;
}

.pdf-1 .pdf-info {
    flex-basis: 80%;
    align-items: center;
    gap: 20px;
}

.pdf-1 .pdf-btn {
    background-color: transparent;
    color: #236CF3;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-left: 1px solid #C8C8C8;
    outline: none;
    padding: 4px 16px;
    transition: all 300ms;
}


/* -------------------- */
.main-container {
    height: 100%;
    margin-top: 30px;
}

.img-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    scroll-behavior: smooth;
}

.container-img {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(5, 150px);
    gap: 12px;
    /* animation: scrol 15s linear infinite; */
}

@keyframes scrol {
    from {
        transform: translateY(0%);
    }

    to {
        transform: translateY(-300%);
    }
}

.box {
    width: 100%;
    height: 100%;
}

.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.box video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.box-2 {
    height: 74%;
}

.row-1-3 {
    grid-row: 1 / span 2;
}

.col-2-1 {
    grid-column: 2 / span 1;
}

.col-3-4 {
    grid-column: 3/ span 1;
}

.row-4-2 {
    grid-row-start: 4;
    grid-row-end: 2;
}

.col-2-3 {
    grid-column-start: 2;
    grid-column-end: 3;
}

.row-2-6 {
    grid-row-start: 2;
    grid-row-end: 6;
}

.row-3-5 {
    grid-row: 3 / span 2;
}

.row-2-3 {
    grid-row-start: 2;
    grid-row-end: 3;
}

.col-1-3 {
    grid-column-start: 1;
    grid-column-end: 3;
}

.row-4-6 {
    grid-row: 4/span 2;
}

.box-3 {
    height: 60%;
}

.box-6 {
    height: 74%;
    align-self: self-end;
}

.box-7 {
    height: 93%;
    align-self: self-end;
}

.box-11 {
    height: 60%;
}

.box-13 {
    height: 88%;
    align-self: flex-end;
}

.body-top-container {
    flex-direction: column;
    gap: 24px;
}

.body-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 4px;
}

.award>img {
    width: 44px;
    height: 44px;
    object-fit: cover;
}

.award {
    flex-basis: 85%;
    display: flex;
    gap: 10px;
}

.award-head {
    color: #000;
    font-size: 18px;
    margin-bottom: 4px;
}

.award-subhead {
    color: #5E6656;
    font-size: 16px;
    font-weight: 400;
}

.year p {
    font-size: 18px;
    color: #000;
}