:root {
    /* Theme Colors */
    --primary-color: #00427b;
    --secondary-color: #bc2c32;
    --tertiary-color: #90c4f0;
    /* Surface Colors */
    --surface-color-1: #fbf7ed;
    --surface-color-2: #e6f3eb;
    --surface-color-3: #ffffff;
    /* Text Colors */
    --heading-color: #222222;
    --subHeading-color: #3b3339;
    --othersHeading-color: #51494f;
    --paragraph-color: #505050;
    --placeholder-color: #9f9f9f;
    --white-color: #ffffff;
    /* State Colors */
    --success-color: #198754;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --info-color: #0dcaf0;

    /* Neutral Colors */
    --black-color: #0c0c20;

    /* Font Family */
    --font-family-Roboto: "Roboto", sans-serif;
}

/* ================ Global CSS Start ================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body {
    font-family: var(--font-family-Roboto);
    font-weight: normal;
    font-style: normal;
    color: var(--paragraph-color);
    font-size: 14px;
    line-height: 160%;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    /* Choose a background color */
    z-index: 9999;
    /* Set a high z-index to display above other content */
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--primary-color);
    /* Choose a color for the spinner */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

a,
.button {
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    color: var(--black-color);
    font-size: 16px;
    font-family: 600;
}

a:focus,
a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

a,
button {
    outline: medium none;
}

.relative {
    position: relative;
}

table {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-Roboto);
    margin-top: 0px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

h1 {
    font-size: 60px;
    color: var(--heading-color);
}

h2 {
    font-size: 48px;
    color: var(--subHeading-color);
}

h3 {
    font-size: 32px;
    color: var(--othersHeading-color);
}

h4 {
    font-size: 24px;
    color: var(--othersHeading-color);
}

h5 {
    font-size: 20px;
    color: var(--othersHeading-color);
}

h6 {
    font-size: 18px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

p {
    color: var(--paragraph-color);
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 15px;
    line-height: 160%;
    font-family: var(--font-family-Roboto);
}

label {
    color: var(--placeholder-color);
    cursor: poRoboto;
    font-size: 14px;
    font-weight: 500;
}

.form-select {
    font-size: 14px;
}

.form-control {
    font-size: 14px;
}

/* CSS */
.button-92 {
    --c: #fff;
    /* text color */
    background: linear-gradient(90deg, #0000 33%, #fff5, #0000 67%)
            var(--_p, 100%) / 300% no-repeat,
        var(--primary-color);
    /* background color */
    color: #0000;
    border: none;
    transform: perspective(500px) rotateY(calc(20deg * var(--_i, -1)));
    text-shadow: calc(var(--_i, -1) * 0.08em) -0.01em 0 var(--c),
        calc(var(--_i, -1) * -0.08em) 0.01em 2px #0004;
    outline-offset: 0.1em;
    transition: 0.3s;
}

.button-92:hover,
.button-92:focus-visible {
    --_p: 0%;
    --_i: 1;
    color: #fff;
}

.button-92:active {
    text-shadow: none;
    color: var(--c);
    box-shadow: inset 0 0 9e9Q #0005;
    transition: 0s;
}

.button-92 {
    font-weight: bold;
    font-size: 2rem;
    margin: 0;
    cursor: pointer;
    line-height: 2rem;
    padding: 0.1em 0.3em;
}

*::-moz-selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--placeholder-color);
}

*::placeholder {
    color: var(--placeholder-color);
}

/* ================ Global CSS Start ================== */
/* ================ preloader CSS Start ================== */
/* #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ba55d3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ff00ff;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
} */
/* ================ preloader CSS end ================== */

/*================== Common Class Start ================ */
.primary-color {
    background: var(--primary-color);
}

.primary-color-text {
    color: var(--primary-color);
}

.surface-color-1 {
    background: var(--surface-color-1);
}

.section-gap-top {
    padding-top: 80px;
}

.section-gap-bottom {
    padding-bottom: 90px;
}

.section-gap-y {
    padding: 160px 0;
}

.btn-group {
    gap: 30px;
    flex-wrap: wrap;
}

.btn-group .btn.primary,
.btn-group .btn.secondary {
    border-radius: 0;
}

.btn-grad {
    background-image: linear-gradient(
        to top,
        #b70b12 0%,
        #b51f25 51%,
        #b70b12 100%
    );
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 0 20px #eee;
    border-radius: 5px;
    display: inline-block;
}

.btn-grad-sm {
    background-image: linear-gradient(
        to top,
        #b70b12 0%,
        #b51f25 51%,
        #b70b12 100%
    );
    margin: 10px;
    padding: 5px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 5px;
    display: inline-block;
}

.btn-grad:hover {
    background-position: bottom center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

@media (max-width: 575px) {
    .section-gap-y {
        padding: 50px 0;
    }
}

/* Section Heading */
.heading-wrap {
    margin-bottom: 30px;
}

.section-heading {
    margin-bottom: 30px;
    text-align: center;
}

@media (max-width: 575px) {
}

/* Section Heading */

/* =============== Buttons CSS Start ================*/
a.btn {
    font-family: var(--font-family-Roboto);
    font-size: 15px;
    font-weight: 400;
    line-height: 160%;
    padding: 8px 24px;
    border-radius: 4px;
    transition: all 0.6s ease-in-out;
}

a.btn.primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

a.btn.primary:hover {
    background: var(--secondary-color);
    border: 1px solid var(--white-color);
}

button.btn.primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

button.btn.primary:hover {
    background: var(--secondary-color);
    border: 1px solid var(--white-color);
}

a.btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

a.btn.secondary:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

a.text-btn {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 15px;
}

a.text-btn:hover {
    color: var(--secondary-color);
}

@media (max-width: 575px) {
    a.btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

/* ---- Play Button ----- */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--white-color);
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    animation: shadows 1.4s linear infinite;
    transition: all ease 400ms;
}

.play-btn:hover {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.play-btn i {
    font-size: 40px;
    color: var(--primary-color);
}

.play-btn:hover i {
    color: var(--white-color);
}

@keyframes shadows {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
            0 0 0 30px rgba(255, 255, 255, 0.2),
            0 0 0 50px rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2),
            0 0 0 50px rgba(255, 255, 255, 0.2), 0 0 0 70px transparent;
    }
}

@-webkit-keyframes shadows {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
            0 0 0 30px rgba(255, 255, 255, 0.2),
            0 0 0 50px rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2),
            0 0 0 50px rgba(255, 255, 255, 0.2), 0 0 0 70px transparent;
    }
}

/* ---- Play Button ----- */
/* =============== Buttons CSS End ================*/
/* Social */
.social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    background: var(--surface-color-1);
    border-radius: 2px;
    text-align: center;
    line-height: 30px;
    color: var(--othersHeading-color);
    transition: 0.6s ease-in-out;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

@media (max-width: 575px) {
    .social {
        margin-bottom: 20px;
    }
}

/* Social */

/* slider Arrow */

.carousel-item {
    max-height: 80vh;
    transition: transform 1s ease-in-out;
}

.owl-dots {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: 2%;
}

.testimonials-section .owl-dots {
    bottom: -40px;
}

/* .owl-dots .owl-dot {
    height: 6px;
    width: 25px;
    background: #959da0;
    display: inline-block;
    margin: 5px;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
}

.owl-theme .owl-dots .owl-dot span {
    background: transparent !important;
}

.owl-dots .owl-dot.active {
    background-color: var(--primary-color);
} */

/* slider Arrow */
/*================== Common Class End ================ */

/*================ Header Section Start =============== */
/* Top Navbar */

/* Bottom Navbar */
/* .navbar .navbar-brand {
    max-width: 270px;
} */

.navbar-nav .nav-link {
    color: #90c4f0;
    font-size: 14px;
    margin: 0 16px;
    padding: 0;
    text-decoration: none;
    font-weight: 400;
    border-right: none;
    text-transform: capitalize;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    /* border-bottom: 2px solid var(--white-color); */
    color: var(--surface-color-3);
    display: inline-block;
}

.dropdown:hover .dropdown-menu {
    display: block;
    background: var(--surface-white);
    border-radius: 0;
    box-shadow: var(--bs-box-shadow-sm);
}

.nav-item .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    background-color: #06243f;
    box-shadow: none;
    border: none;
}

.dropdown-menu li {
    position: relative;
    top: 10px;
}

.dropdown-menu .dropdown-item {
    transition: 0.6s ease-in-out !important;
    background: #06243f;
    border-color: var(--surface-color-2);
    font-size: 14px;
    font-weight: 400;
    color: #90c4f0;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.dropdown-submenu {
    display: none !important;
    position: absolute;
    left: 100%;
    top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu {
    display: block !important;
}

@media (max-width: 767.98px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start !important;
        padding: 10px 0;
    }

    .navbar-nav img {
        display: none;
    }

    .nav-item {
        margin-bottom: 10px;
    }

    .dropdown-menu {
        overflow: hidden;
        margin-bottom: 10px;
    }

    .dropdown-menu .dropdown-item {
        display: block;
        margin-bottom: 0px;
        padding: 10px;
    }
}

/* Pages Banner */
.inner_slider {
    width: 100%;
    position: relative;
    background-color: rgba(0, 66, 123, 0.5);
}

.inner_slider_text {
    width: 100%;
    padding: 97px 0;
    background-position: center;
    background-size: cover;
}

.inner_slider_text h1 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.inner_slider_text h4 {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/*------------ Hero Section Start -------- */

/*------------ Welcome Section Start -------- */
.welcome-item h2 {
    font-size: 26px;
    color: var(--primary-color);
    font-weight: 700;
}

.welcome-item h2 span {
    font-size: 30px;
    color: var(--black-color);
}

.welcome-item p {
    text-align: justify;
    font-weight: 500;
}

/* --------------- notices ----------------- */
.notices {
    border: 1px solid #7fa0bd;
}

.notices-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: var(--primary-color);
}

.notices-heading h4 {
    color: var(--surface-color-3);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.notices-heading h4 img {
    margin-right: 6px;
}

.single-notice {
    margin: 0 25px;
    padding: 25px 0;
    border-bottom: 1px solid #ebebeb;
    border-top: 0;
}

.single-notice-title {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.notices-scroll {
    width: 100%;
    /* Full width */
    height: 377px;
    /* Height of the ticker view */
    overflow: hidden;
    position: relative;
}

.notices-row {
    display: flex;
    flex-direction: column;
    animation: scroll-vertical 10s linear infinite;
}

.notices-scroll:hover .notices-row {
    animation-play-state: paused;
}

/* Animation for vertical scrolling */
@keyframes scroll-vertical {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

.single-notice-title h6 {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0;
}

.single-notice p {
    font-weight: 500;
    margin-bottom: 0;
}

.single-notice p a {
    font-size: 14px;
    text-align: justify;
    color: var(--secondary-color);
}

.single-notice p a:hover {
    color: var(--primary-color);
}

#box {
    position: relative;
    height: 377px;
    overflow: hidden;
}

#box1 {
    position: absolute;
    width: 100%;
}

/* --------------- notices ----------------- */

/* --------------- member ----------------- */
.member-header {
    margin-bottom: 30px;
}

.member-header h1 {
    font-size: 30px;
    font-weight: 800;
}

.member-header p {
    font-size: 18px;
    font-weight: 600;
}

.member-item {
    background-color: #eef8ff;
    text-align: center;
    padding: 30px;
    border-radius: 3px;
    transition: 0.5s;
    display: block;
    height: calc(100%);
}

.member-item .member-icon {
    margin-bottom: 15px;
}

.member-item p {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0;
}

.member-item:hover {
    background-color: var(--primary-color);
}

.member-item:hover p {
    color: var(--surface-color-3);
}

.member-form {
    margin-bottom: 20px;
}

.member-form .primary {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
    border-radius: 0.5rem;
}

.members-blog-photo {
    text-align: center;
    border: 1px solid #ebebeb;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
    display: block;
    height: calc(100%);
}

.members-blog-photo img {
    width: 100%;
    border-radius: 18px 18px 0 0;
}

.members-blog-photo h3 {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: #222;
    text-align: center;
    background-color: #ebebeb;
    padding: 10px 0;
}

.members-blog-photo .table {
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

.members-blog-photo .table > :not(caption) > * > * {
    padding: 0.2rem 0.5rem;
}

.member-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Profile */
.avatar-4xl {
    height: 8.125rem;
    width: 8.125rem;
}

.avatar {
    position: relative;
    display: inline-block;
}

/* Achivements */
.achive {
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
}

.achive img {
    width: 100%;
}

/*  */
.under-construction {
    width: 100%;
}

.under-construction h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    border: 3px solid #222;
    background: #4bacff;
    display: block;
    margin: auto;
}

/*==========================================
			Photo Gallery
==========================================*/

.gal_box {
    margin: 0;
    position: relative;
    width: 100%;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.08);
}

.image {
    display: block;
    height: auto;
    width: 100%;
    border-radius: 4px;
}

.overlay {
    background-color: rgba(0, 66, 123, 0.8);
    /*background-color: #004e88;*/
    bottom: 0;
    height: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    transition: all 0.5s ease 0s;
    width: 100%;
    border-radius: 5px;
}

.gal-text {
    background-color: #f89d05;
    color: white;
    font-size: 20px;
    left: 50%;
    overflow: hidden;
    position: absolute;
    text-align: center;
    top: 90%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    width: 100%;
}

.gal-text a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 100%;
}

.gal-text a:hover {
    color: #004e88;
    transition: width 2s ease 0s;
}

.gal_box:hover .overlay {
    height: 100%;
}

/*----------- poll start---------- */
.poll {
    border: 1px solid #7fa0bd;
    position: relative;
    display: block;
    height: auto;
}

.poll-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    background: var(--primary-color);
}

.poll-heading h4 {
    color: var(--surface-color-3);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.poll-heading h4 img {
    margin-right: 6px;
}

.poll-text {
    padding: 10px 15px;
    position: relative;
    overflow: hidden;
}

.poll-text p {
    font-weight: 500;
    color: #1b1b1b;
    text-align: justify;
    margin-bottom: 0;
}

.poll-text p i {
    color: var(--primary-color);
    font-size: 16px;
    margin-right: 5px;
}

.poll-item {
    padding: 10px 15px;
}

.poll-item .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.poll-item label {
    font-size: 14px;
    color: #1b1b1b;
}

.poll-item .progress {
    height: 5px;
}

.poll-item .progress-bar {
    height: 5px;
    background-color: var(--primary-color);
}

.poll-footer {
    /*position: absolute;*/
    width: 100%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 15px;
    margin-top: 18px;
    border-top: 1px solid #7fa0bd;
}

.poll-footer a {
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .poll-footer {
        position: relative;
    }
}

/*----------- message start---------- */
.message {
    margin-top: 50px;
}

.message-item {
    background-color: #eef8ff;
    border-radius: 5px;
    padding: 30px;
}

.message-item img {
    margin-top: -90px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    height: 141px;
}

.message-item p {
    margin-top: 20px;
    font-weight: 500;
    color: #222222;
}

.message-item span {
    color: #6e6e6e;
}

.message-item p a {
    color: var(--secondary-color);
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .message-item {
        margin-bottom: 30px;
    }
}

/* Story */

.story-item {
    border: 1px solid #7fa0bd;
}

.story-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.story-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid var(--primary-color);
    transition: 0.5s;
}

.story-carousel .owl-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.story-half > div {
    width: 50%;
    background-color: #eef8ff;
}

@media (max-width: 991.98px) {
    .story-half > div {
        width: 100%;
    }
}

.story-half .img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: multiply;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #7fa0bd;
}

@media (max-width: 991.98px) {
    .story-half .img {
        height: 250px;
    }
}

.story-half .text {
    padding: 90px;
}

@media (max-width: 991.98px) {
    .story-half .text {
        padding: 30px;
    }
}

.story-half .text blockquote p {
    color: #000;
    font-size: 18px;
    font-family: "Georgia", serif;
    font-style: italic;
}

.story-half .text .author {
    margin-top: 50px;
}

.story-half .text .author strong {
    color: #000;
}

/* membership-form */

.membership-form {
    border: 1px solid #7fa0bd;
}

/*image upload*/

#image-preview {
    width: 100%;
    /*height: 400px;*/
    height: 232px;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    color: #ecf0f1;
}

#image-preview input {
    line-height: 200px;
    font-size: 200px;
    position: absolute;
    opacity: 0;
    z-index: 10;
}

#image-preview label {
    background-color: #bdc3c7;
    bottom: 0;
    color: #000;
    cursor: pointer;
    font-size: 14px !important;
    height: 40px;
    left: 0;
    line-height: 40px;
    margin: auto;
    opacity: 0.8;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: capitalize;
    top: 88px;
    width: 200px;
    z-index: 5;
}

/*-------------------
   Gallery Page
 -------------------*/

.gallery__page {
    padding: 80px 15px 65px;
}

@media (max-width: 576px) {
    .gallery__page {
        padding: 30px 15px 65px;
    }
}

.gallery__warp {
    max-width: 1570px;
    margin: 0 auto;
}

.gallery__item {
    display: block;
    margin-bottom: 30px;
}

.gallery__item img {
    min-width: 100%;
}

.fr-position-outside {
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
}

.fr-position-text {
    color: #fff;
}

.fr-window-skin-fresco.fr-window-ui-outside .fr-close-background,
.fr-window-skin-fresco.fr-window-ui-outside
    .fr-close:hover
    .fr-close-background {
    background-color: transparent;
}

.fr-thumbnail-active {
    border: 2px solid #8db952;
}

/*==========================================
			Contact Us
==========================================*/

.contact_info {
    width: 100%;
    overflow: hidden;
}

.con_info_box {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.symbol {
    width: 100%;
    overflow: hidden;
}

.symbol img {
    float: right;
    margin-right: 23px;
}

.con_text {
    background-color: #c3e3ff;
    border-radius: 5px;
    margin-top: -45px;
    width: 100%;
}

.con_text h3 {
    font-size: 18px;
    color: #222;
    font-weight: bold;
    padding: 25px 0 0 25px;
}

.con_text p {
    font-size: 14px;
    color: #222;
    padding: 10px 0 30px 25px;
}

.con_text p span {
    padding-left: 25px;
}

.contact_form {
    width: 100%;
    overflow: hidden;
    padding-top: 40px;
}

.form_custom_2 {
    background-color: #f7fbff;
    background-image: none;
    font-weight: 400;
    border: 1px solid #c6e4ff;
    border-radius: 4px;
    -moz-outline-color: #222;
    -webkit-text-fill-color: #222;
    color: #222222;
    display: block;
    font-size: 16px;
    height: 65px;
    line-height: 65px;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s,
        box-shadow 0.15s ease-in-out 0s;
    width: 100%;
    margin-bottom: 40px;
}

.btn_custom_2 {
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    line-height: 50px;
    padding: 0 50px;
    color: #fff;
    background-image: none;
    background: #00427b;
    border: 1px solid #005eb0;
    margin-top: 15px;
    font-size: 16px;
}

.btn_custom_2:hover {
    color: #fff;
    background-image: none;
    background: #00325d;
}

.map {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.form-box {
    width: 100%;
    display: block;
    padding: 15px 0;
    margin: auto;
}

.form-box h2 {
    font-size: 18px;
    font-weight: 400;
    color: #222;
    text-align: center;
}

.form-box img {
    margin: 0 auto;
    display: block;
}

.btn_custom_form {
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    line-height: 30px;
    width: 200px;
    color: #fff;
    background-image: none;
    background: #00427b;
    border: 1px solid #005eb0;
    margin-top: 15px;
    font-size: 16px;
    display: block;
    margin: 15px auto;
}

.btn_custom_form:hover {
    background: #002e56;
    border: 1px solid #005eb0;
}

.textarea-h {
    min-height: 300px !important;
}

.signature {
    width: 100%;
    overflow: hidden;
    margin: 50px 0 0 10px;
    text-align: center;
}

.signature h4 {
    font-size: 15px;
    color: #000;
    text-align: center;
    border-top: 1px dashed #838383;
    padding-top: 20px;
}

/*----------- footer start---------- */

.counter-number {
    text-align: center;
    width: 18%;
    margin: 35px auto;
    background: #003a70;
    padding: 10px 0;
    border-radius: 5px;
    margin-bottom: 10px;
}

.counter-number span {
    display: inline-block;
    padding: 8px 8px 8px;
    border-radius: 3px;
    background: #4bacff;
    margin-right: -2px;
    border: 1px solid #222;
    font-size: 20px;
    font-weight: bold;
    color: #003a70;
}

@media (max-width: 991.98px) {
    .counter-number {
        width: 90%;
        margin-bottom: 10px;
    }
}

.mission-vision ul li {
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
    display: flex;
    text-align: justify;
}

.mission-vision ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background-color: var(--primary-color);
    color: var(--surface-color-1);
    border-radius: 3px;

    padding: 5px 10px;
}

.bg-appointment {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(9, 9, 9, 0.9)),
        url(../images/slider/slider-5.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary-color);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #ffffff;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.footer_wrapper {
    width: 100%;
    background-color: #222222 !important;
    overflow: hidden;
}

.footer_main {
    width: 100%;
    overflow: hidden;
}

.footer_logo {
    width: 100%;
    margin: 25px 0 0;
}

.social {
    width: 100%;
    overflow: hidden;
}

.social ul {
    display: block;
    margin: 0 auto;
    width: 150px;
    display: flex;
}

.social ul li {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #00427b;
    margin: 0 5px;
}

.social ul li a {
    font-size: 14px;
    color: #4bacff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.social ul li:hover {
    background-color: #fff;
}

/*==========================================
			Alumni Members
==========================================*/
.alumni_member {
    width: 100%;

    padding-top: 75px;
}

.alumni_member h5 {
    color: #222222;
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
}

.alumni_member h5 span {
    font-size: 18px;
    font-weight: 400;
}

.alumni_gallery {
    width: 100%;
    overflow: hidden;
    padding: 25px 0;
}

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

.alumni_pic img {
    display: block;
    width: 160px;
    border: 1px solid #236093;
    border-radius: 50%;
    height: 160px;
    margin: 0 auto;
    -webkit-box-shadow: 3px 3px 15px 0px rgba(171, 171, 171, 0.6);
    -moz-box-shadow: 3px 3px 15px 0px rgba(171, 171, 171, 0.6);
    box-shadow: 3px 3px 15px 0px rgba(171, 171, 171, 0.6);
}

.alumni_name {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: 0.5s ease;
    background: rgba(188, 44, 50, 0.8);
}

.alumni_pic:hover .alumni_name {
    opacity: 1;
    border-radius: 50%;
    width: 159px;
    height: 159px;
}

.alumni_name h2 {
    color: #fff;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.know_more {
    width: 160px;
    height: 45px;
    background-color: #003a70;
    border-radius: 5px;
    margin-top: 25px;
    float: left;
    -webkit-box-shadow: 3px 3px 15px 0px rgba(171, 171, 171, 0.6);
    -moz-box-shadow: 3px 3px 15px 0px rgba(171, 171, 171, 0.6);
    box-shadow: 3px 3px 15px 0px rgba(171, 171, 171, 0.6);
}

.know_more a {
    color: #fffefe;
    font-size: 14px;
    line-height: 42px;
    padding: 11px 42px;
    text-decoration: none;
    transition: 0.5s ease;
}

.know_more a:hover {
    color: #57caf4;
}

.team-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0px 90px;
    background-size: cover;
    background-color: var(--main-color-two);
}

.team-section .owl-nav {
    display: none;
}

.team-section .owl-dots {
    position: relative;
    text-align: center;
    margin-top: var(--margin-top-20);
}

.team-section .owl-dots .owl-dot {
    position: relative;
    width: 10px;
    height: 10px;
    opacity: 0.5;
    margin: 0px 6px;
    border-radius: 50px;
    display: inline-block;
    background-color: var(--main-color);
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.team-section .owl-dots .owl-dot.active,
.team-section .owl-dots .owl-dot:hover {
    opacity: 1;
}

.team-block {
    position: relative;
    margin-bottom: var(--margin-bottom-30);
}

.team-block .inner-box {
    position: relative;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
}

.team-block .inner-box .image {
    position: relative;
}

.team-block .inner-box .image img {
    position: relative;
    width: 100%;
    display: block;
}

.team-block .inner-box .image .overlay-box {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 5px;
    padding: 10px 20px;
    border-radius: 4px;
    background-color: var(--white-color);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.team-block .inner-box:hover .overlay-box {
    bottom: -150px;
}

.team-block .inner-box .image .overlay-box h6 {
    margin-bottom: 0;
}

.team-block .inner-box .overlay-box-two {
    position: absolute;
    left: 30px;
    right: 30px;
    opacity: 0;
    bottom: -325px;
    padding: 10px 20px;
    border-radius: 4px;
    background-color: var(--primary-color);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.team-block .inner-box:hover .overlay-box-two {
    bottom: 5px;
    opacity: 1;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.team-block .inner-box .overlay-box-two h6 {
    color: var(--white-color);
    margin-bottom: 0;
}

.team-block .inner-box .overlay-box-two .social-box li a:hover {
    color: var(--primary-color);
}

.footer_menu {
    overflow: hidden;
    padding: 15px 0 35px;
    width: 45%;
    display: block;
    margin: auto;
}

.footer_menu ul {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-flow: wrap;
}

.footer_menu ul a {
    display: block;
    color: #727272;
    font-size: 12px;
    padding: 7px 9px;
    text-decoration: none;
    text-transform: capitalize;
    border: 1px solid #434343;
    border-radius: 5px;
}

.footer_menu ul a:hover {
    color: #fff;
    background-color: #4bacff;
    border-radius: 5px;
    border: 1px solid #4bacff;
}

@media (max-width: 991.98px) {
    .footer_menu {
        width: 100%;
        margin-bottom: 20px;
    }
}

.footer-text {
    color: #9b9b9b;
    font-size: 18px;
    margin-bottom: 20px;
}

#footer {
    width: 100%;
    overflow: hidden;
    background-color: #083b6e;
    padding: 15px 0;
}

.footer_bottom p {
    font-size: 14px;
    font-weight: 400;
    color: #eaf6ff;
}

.footer_bottom p a {
    font-size: 14px;
    color: #eaf6ff;
}

/*-------------- footer end--------- */
