@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&family=Teko:wght@300..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
}

.row {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
}

.row>* {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

:root {
    --body-font-family: "Poppins", sans-serif;
    --heading-font-family: "Teko", sans-serif;
    --button-font-family: "Ubuntu", sans-serif;
    --e-global-color-white: #fff;
    --e-global-color-black: #000;
    --e-global-yellow: #f8d212;
    --e-global-heading: #1f283a;
    --e-global-body-text: #4c5457;
    --e-global-mneu: #313139;
    --e-global-menu-hover: #cc5600;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 154.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin: 0 auto;
}

body {
    font-size: 1.8rem;
    line-height: 120%;
    font-weight: 400;
    position: relative;
    font-family: var(--body-font-family);
    margin: 0;
    padding: 0;
    background: #e6e6e6;
}

.section {
    position: relative;
    padding: 10rem 0;
    clear: both;
    width: 100%;
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1,
h2,
h3 {
    font-family: var(--heading-font-family);
}


/* ================================================= */

.page-body-area,
.banner-area,
.header-area {
    overflow: hidden;
}

.header-area {
    position: relative;
    width: 100%;
    padding: 3.2rem 0;
    background: #2180ae;
}

.header-inner-content {
    position: relative;
    width: 100%;
    display: flex;
}

.logo-area {
    position: relative;
    width: 100%;
    max-width: 39.5rem;
}

.logo-area a {
    display: block;
}

.barr {
    display: none;
}

.menu-area {
    position: relative;
    width: 100%;
    max-width: calc(100% - 39.5rem);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu-area ul {
    display: flex;
    justify-content: flex-end;
    /* gap: 2.4rem; */
}

.menu-area ul li {
    list-style-type: none;
}

.menu-area ul li a {
    display: block;
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 2.6rem;
    color: #fff;
    line-height: 120%;
    padding: 0 1.2rem;
    position: relative;
}

.menu-area ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0.15rem;
    background: #fff;
    transition: 0.3s all;
}

.menu-area ul li a:hover::after {
    width: 100%;
    transition: 0.3s all;
}

.banner-area {
    position: relative;
    width: 100%;
    background: #2180ae;
    /*    min-height: 74.5rem;*/
    min-height: max-content;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
}

.banner-content {
    position: relative;
    width: 100%;
    display: flex;
}

.banner-content:after {
    content: '';
    position: absolute;
    width: 74.2rem;
    height: 26.9rem;
    background: url('../images/banner-pic.png');
    left: calc(50% - 32rem);
    bottom: 0;
    z-index: 1;
}

.banner-area::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 13.6rem;
    background: #2180ae;
    left: 0;
    bottom: -13.5rem;
}

.text-content {
    position: relative;
    width: 100%;
    max-width: 80rem;
    padding-left: 11.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-content h2 {
    position: relative;
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 3.6rem;
    color: #fff;
    line-height: 120%;
    margin-bottom: 4.2rem;
}

.text-content h2:after {
    content: '';
    position: absolute;
    width: 6.2rem;
    height: 5.8rem;
    top: -2.4rem;
    left: -7.2rem;
    background: url('../images/icon.png') no-repeat;
}

.text-content h3 {
    position: relative;
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 2.4rem;
    color: #fff;
    line-height: 120%;
}

.text-content h3 span {
    font-weight: 600;
    font-size: 3.6rem;
}

.img-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: calc(100% - 80rem);
}

.img-content img {
    max-width: 100%;
}

.page-body-area {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 154.5rem;
    margin: -50px auto 0;
    background: #fff;
    min-height: 100px;
    -webkit-box-shadow: 1px 1px 6px 5px rgba(29, 36, 38, 0.5);
    box-shadow: 1px 1px 6px 5px rgba(29, 36, 38, 0.5);
}

.about-content-area {
    position: relative;
    width: 100%;
    padding: 9rem 8.4rem;
}

.about-content-area h2 {
    position: relative;
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 7.2rem;
    color: #0288d1;
    line-height: 120%;
}

.about-details {
    position: relative;
    width: 100%;
    display: flex;
    gap: 3.2rem;
    margin-top: 7.2rem;
}

.experience-list {
    position: relative;
    width: 100%;
    max-width: 45rem;
    border-right: 1px solid #999a9b;
    display: flex;
    flex-direction: column;
    gap: 7rem;
}

.listBx {
    position: relative;
    display: flex;
    gap: 5.2rem;
    align-items: center;
}

.list-txt-area {
    position: relative;
}

.list-txt-area h4 {
    font-family: var(--body-font-family);
    font-weight: 600;
    font-size: 4.8rem;
    color: #333232;
    line-height: 120%;
}

.list-txt-area p {
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 2.4rem;
    color: #333232;
    line-height: 120%;
}

.overall-content {
    position: relative;
    width: 100%;
    max-width: calc(100% - 48.2rem);
}

.overall-content p {
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 1.8rem;
    color: #333232;
    line-height: 120%;
    margin-bottom: 4.2rem;
}

.overall-content a.knowBtn {
    display: inline-block;
    padding: 1.6rem 2rem;
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 2.2rem;
    color: #fff;
    line-height: 100%;
    background: #0288d1;
    border: 1px solid transparent;
    transition: 0.3s all;
}

.overall-content a.knowBtn:hover {
    background: transparent;
    border: 1px solid #0288d1;
    color: #0288d1;
    transition: 0.3s all;
}

.video-content-area {
    position: relative;
    width: 100%;
    padding: 0 8.4rem;
}

.videoBox {
    position: relative;
    width: 100%;
    min-height: 76.4rem;
    border-radius: 1.6rem;
    overflow: hidden;
    -webkit-box-shadow: 1px 1px 6px 5px rgba(29, 36, 38, 0.5);
    box-shadow: 1px 1px 6px 5px rgba(29, 36, 38, 0.5);
}

.videoframe {
    position: relative;
    width: 100%;
}

.videoframe img {
    width: 100%;
}

.vid-play-txt {
    position: absolute;
    bottom: 3.6rem;
    left: 0;
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.7);
    width: auto;
    z-index: 75;
    display: flex;
    gap: 3.2rem;
    align-items: center;
    padding-right: 3.2rem;
    border-top-right-radius: 1.6rem;
    border-bottom-right-radius: 1.6rem;
}

.vid-play-txt h3 {
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 3.6rem;
    color: #333232;
    line-height: 120%;
}

.plyBtn {
    position: relative;
    width: 12rem;
    height: 12rem;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 4px solid #d81159;
}

.plyBtn::after {
    content: '';
    width: 12rem;
    height: 12rem;
    border: 1px solid #d81159;
    border-radius: 100%;
    position: absolute;
    top: -4px;
    left: -4px;
}

.plyBdr {
    position: relative;
    width: 7rem;
    height: 7rem;
    border-radius: 100%;
    background: #d81159;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plyBdr::after {
    content: '';
    width: 7rem;
    height: 7rem;
    border: 1px solid #d81159;
    border-radius: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.plyBtn:hover:after {
    animation: ripple 2s infinite;
}

.plyBtn:hover .plyBdr:after {
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.institutional-area {
    position: relative;
    width: 100%;
    padding: 9rem 0rem 9rem 8.4rem
}

.institutional-area h2 {
    position: relative;
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 7.2rem;
    color: #0288d1;
    line-height: 120%;
    margin-bottom: 1.6rem;
}

.institutional-area p {
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 1.8rem;
    color: #333232;
    line-height: 120%;
    margin-bottom: 4.2rem;
    padding-right: 8.4rem;
}

.img-slider-area {
    position: relative;
    width: 100%;
}

.slider-half {
    position: relative;
    width: 100%;
}

.img-slidesBx {
    position: relative;
    width: 100%;
    max-width: 37.6rem;
}

.img-areas {
    position: relative;
    width: 100%;
    border-radius: 2.2rem;
    border: 4px solid #0288d1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40.4rem;
}

.img-areas img {
    width: 100%;
    object-fit: cover;
    height: 40.4rem;
    transition: 0.3s all;
}

.img-areas:hover img {
    transform: scale(1.1);
    transition: 0.3s all;
}

.slide-content {
    position: relative;
    width: 100%;
    margin-top: 1.8rem;
    padding: 0 1.2rem;
}

.slide-content p {
    font-family: var(--body-font-family);
    font-weight: 300;
    font-size: 2.2rem;
    color: #333232;
    line-height: 120%;
    margin: 0;
    padding: 0;
}

.slick-dots {
    position: relative;
}

.slick-dots li button {
    padding: 0;
}

.slick-dots li button:before {
    font-size: 16px;
    color: #0288d1;
    opacity: 1;
}

.hallmarks-area {
    position: relative;
    width: 100%;
    padding: 6rem 8.4rem;
    background: #e6e6e6;
}

.hallmarks-area h2 {
    position: relative;
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 7.2rem;
    color: #0288d1;
    line-height: 120%;
    margin-bottom: 1.6rem;
}

.hallmark-img {
    position: relative;
    width: 100%;
    display: flex;
    margin-top: 2.4rem;
    gap: 1rem;
}

.social-impact-area {
    position: relative;
    width: 100%;
    padding: 6rem 8.4rem;
}

.social-impact-area h2 {
    position: relative;
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 7.2rem;
    color: #0288d1;
    line-height: 120%;
    margin-bottom: 1.6rem;
}

.social-impact-area p {
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 1.8rem;
    color: #333232;
    line-height: 120%;
    margin-bottom: 4.2rem;
    padding-right: 8.4rem;
}

.social-slide-area {
    position: relative;
    width: 100%;
}

.full-slider {
    position: relative;
    width: 100%;
}

.full-slider-content {
    position: relative;
    width: 100%;
    display: flex;
    gap: 3.2rem;
}

.full-slider-content .img-area {
    position: relative;
    width: 100%;
    max-width: 69rem;
    height: 40.5rem;
    border-radius: 1.6rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-slider-content .img-area img {
    transition: 0.3s all;
}

.full-slider-content .img-area:hover img {
    transform: scale(1.1);
    transition: 0.3s all;
}

.full-slider-content .text-area {
    position: relative;
    width: 100%;
    max-width: calc(100% - 72rem);
    display: flex;
    flex-direction: column;
    gap: 4.2rem;
    justify-content: center;
}

.full-slider-content .text-area h3 {
    font-family: var(--body-font-family);
    font-weight: 600;
    font-size: 3.6rem;
    color: #333232;
    line-height: 120%;
}

.full-slider-content .text-area p {
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 1.8rem;
    color: #333232;
    line-height: 120%;
}

.slick-arrow::before {
    display: none;
}

.slick-prev,
.slick-next {
    width: 26px;
    height: 43px;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 1;
}

.slick-prev,
.slick-next {
    top: 40%;
}

.slick-prev {
    background: url('../images/slide-arrow.png') no-repeat;
    background-position: center center;
    transform: rotate(180deg);
    left: -40px;
}

.slick-next {
    background: url('../images/slide-arrow.png') no-repeat;
    background-position: center center;
    right: -40px;
}

.slick-prev:hover,
.slick-prev:focus {
    background: url('../images/slide-arrow.png') no-repeat;
    background-position: center center;
}

.slick-next:hover,
.slick-next:focus {
    background: url('../images/slide-arrow.png') no-repeat;
    background-position: center center;
}

.discourse-area {
    position: relative;
    width: 100%;
    padding: 4rem 8.4rem;
    background: #eaf6fb;
}

.inner-discourse-area {
    padding: 5.2rem 0;
    border-top: 1px solid #0288d1;
    border-bottom: 1px solid #0288d1;
}

.discourse-area h2 {
    position: relative;
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 7.2rem;
    color: #0288d1;
    line-height: 120%;
    margin-bottom: 1.6rem;
}

.discourse-area p {
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 1.8rem;
    color: #333232;
    line-height: 120%;
    margin-bottom: 4.2rem;
    padding-right: 8.4rem;
}

.media-logo {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.mediaBx {
    position: relative;
    width: 100%;
    max-width: 25%;
    min-height: 11.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 3rem;
    border: 1px solid #333232;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mediaBx a {
    width: 100%;
    text-align: center;
}

.mediaBx a img {
    width: 100%;
}

.footer-area {
    position: relative;
    width: 100%;
    padding: 8.2rem 0;
}

.footer-area p {
    display: block;
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 2.4rem;
    color: #333232;
    line-height: 120%;
    text-align: center;
    margin: 0;
}

.inner-banner {}

.inner-banner .text-content h2:after,
.inner-banner .banner-content:after {
    display: none;
}

.inner-banner .banner-content {
    padding-top: 7rem;
}

.inner-banner .text-content {
    max-width: 100%;
    padding: 0;
    text-align: center;
}

.inner-banner .text-content h2 {
    font-size: 6.6rem;
    font-weight: 400;
}

.inner-page-content {
    position: relative;
    width: 100%;
    padding: 7.2rem 5rem;
}

.headings h1 {
    display: block;
    font-family: var(--body-font-family);
    font-size: 5.2rem;
    line-height: 140%;
    font-weight: 200;
    color: #0288d1;
    margin-bottom: 1.6rem;
}

.headings h2 {
    display: block;
    font-size: 4.2rem;
    font-family: var(--body-font-family);
    line-height: 140%;
    font-weight: 200;
    color: #0288d1;
    margin-bottom: 1.6rem;
}

.headings h3 {
    display: block;
    font-family: var(--body-font-family);
    font-size: 4.8rem;
    line-height: 140%;
    color: #0288d1;
    font-weight: 200;
    margin-bottom: 1.6rem;
}

.headings h4 {
    display: block;
    font-family: var(--body-font-family);
    font-size: 3.6rem;
    line-height: 140%;
    font-weight: 200;
    color: #0288d1;
    margin-bottom: 1.6rem;
}

.contentTxt {
    position: relative;
    width: 100%;
    margin-bottom: 3.2rem;
}

.contentTxt p {
    display: block;
    color: #333232;
    font-size: 1.8rem;
    line-height: 120%;
    font-family: var(--body-font-family);
    font-weight: 200;
    margin-bottom: 1.6rem;
}

.contentTxt ul {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.contentTxt ul li {
    list-style-type: none;
    display: block;
    position: relative;
    padding-left: 2.8rem;
    margin: 0;
    display: block;
    color: #333232;
    font-size: 1.8rem;
    line-height: 120%;
    font-family: var(--body-font-family);
    font-weight: 200;
}

.contentTxt ul li a {
    list-style-type: none;
    position: relative;
    display: block;
    color: #333232;
    font-size: 1.8rem;
    line-height: 120%;
    font-family: var(--body-font-family);
    font-weight: 200;
}

.contentTxt ul li::after {
    content: '';
    position: absolute;
    width: 1.3rem;
    height: 1.3rem;
    border: 0.2rem solid #0288d1;
    /* border-radius: 100%; */
    left: 0;
    top: 0.5rem;
    transform: rotate(45deg);
}

.img-ares img {
    width: 100%;
    border-radius: 1.6rem;
}

.video-area iframe {
    width: 100%;
    height: 41.5rem;
}

.img-ares {
    position: relative;
    width: 100%;
    max-width: 70rem;
    margin-bottom: 2.4rem;
}

.video-area {
    position: relative;
    width: 100%;
    max-width: 70rem;
    margin-bottom: 2.4rem;
}

.flx {
    display: flex;
    gap: 2.4rem;
}

.flx p {
    max-width: calc(100% - 70rem);
}


/* ====================== Simple jQuery Accordion ==================== */

.custom-accrodian {
    position: relative;
    width: 100%;
}

ul.accordion {
    list-style: none;
    padding: 0;
}

ul.accordion .inner {
    padding: 1em;
    overflow: hidden;
    display: none;
    background: #f9f9f9;
    font-size: 1.8rem;
    line-height: 140%;
    font-family: var(--body-font-family);
    font-weight: 300;
}

ul.accordion li {
    margin: 0.5em 0;
}

ul.accordion li a.toggle {
    position: relative;
    width: 100%;
    display: block;
    background: #f2ebe6;
    padding: 0.75em;
    font-size: 1.8rem;
    line-height: 120%;
    font-family: var(--body-font-family);
    font-weight: 500;
    color: #0288d1;
    border-radius: 0.15em;
    transition: background 0.3s ease;
}

span.plusminus {
    position: absolute;
    top: 14px;
    right: 10px;
}


/* ====================== ==================== */

.notification-listbx {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.note_listBx {
    position: relative;
    width: 100%;
    display: flex;
    min-height: 10rem;
}

.date {
    position: relative;
    width: 100%;
    max-width: 10rem;
    background: #0288d1;
    min-height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    line-height: 100%;
    font-family: var(--body-font-family);
    font-weight: 600;
    color: #fff;
}

.date span {
    font-size: 1.4rem;
    line-height: 100%;
    font-family: var(--body-font-family);
    font-weight: 200;
    color: #fff;
    text-transform: uppercase;
}

.notice-content {
    position: relative;
    width: 100%;
    max-width: calc(100% - 10rem);
    background: #fff;
    border: 1px solid #0288d1;
    min-height: 10rem;
    padding: 1.6rem;
    border-left: none;
}

.notice-content p {
    font-family: var(--body-font-family);
    font-weight: 200;
    color: #313139;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    /* Standard property for future compatibility (not yet widely supported) */
    /* line-clamp: 2; */
}

.notice-content a {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 100%;
    font-family: var(--body-font-family);
    font-weight: 400;
    color: #0288d1;
    margin-top: 1rem;
    text-transform: uppercase;
}

.imag-gallery-area {
    position: relative;
    width: 100%;
}

.imag-gallery-area h2 {
    position: relative;
    font-family: var(--body-font-family);
    font-weight: 200;
    font-size: 7.2rem;
    color: #0288d1;
    line-height: 120%;
}

.gallery-content-area {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2.6rem;
    margin-top: 3.2rem;
}

.gallery_box_image {
    width: calc(33.33% - 1.75rem);
    height: 36rem;
    overflow: hidden;
    border-radius: 2rem;
}

.gallery_box_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in 0.2s;
}

.gallery_box_image:hover img {
    transform: scale(1.1);
}


/* ========================= Contact page  ============================= */

.contact-page-area {
    position: relative;
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
}

.contact_form {
    border: 1px solid #0288d142;
    border-radius: 10px;
    padding: 3.2rem;
    width: 100%;
}

.contact_form .form-group:not(:last-child) {
    margin-bottom: 20px;
}

.contact_form .form-group label {
    color: #0288d1;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    margin-bottom: 10px;
    display: block;
}

.contact_form .form-group .field {
    width: 100%;
}

.contact_form .form-group .field .form-control {
    width: 100%;
    height: 46px;
    padding: 10px 10px;
    border-radius: 0;
    background: transparent;
    border: 1px solid #0288d185;
    font-size: 14px;
    color: #4c5457;
}

.contact_form .form-group .field .form-control::placeholder {
    overflow: hidden;
    color: #4c5457;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 172%;
}

.contact_form .form-group .field .form-control:focus {
    box-shadow: none;
}

.contact_form .form-group .field textarea.form-control {
    height: 130px;
    resize: none;
}

.contact_form .form-group .button {
    position: relative;
    background: #0288d1;
    border: none;
    width: 100%;
    padding: 1.6rem 0;
    font-size: 1.6rem;
    font-family: var(--body-font-family);
    color: #fff;
    font-weight: 500;
    border-radius: 0.4rem;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
}

.contact-page-area .headings h1 {
    text-align: center;
}