:root {
    --color-primary: #515151;
    --color-red: #9d0702;
    --color-blue: #03427c;
    --color-white: #ffffff;
    --font-primary: 'Poppins', sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
nav,
a,
section,
article,
aside,
div,
header,
footer,
form,
input,
figure,
ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;

}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: 4.5rem
}

h2 {
    font-size: 4rem;
}

h3 {
    font-size: 3rem;
}

h4 {
    font-size: 2.5rem;
}

h5 {
    font-size: 2rem
}

h6 {
    font-size: 18px
}

p {
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 27px;
}

figure {
    margin-bottom: 20px;
}

iframe,
video {
    display: block;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--color-primary);
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: var(--color-blue);
    text-decoration: none;
    display: inline-block;
    transition: 0.4s;
}

a:hover {
    text-decoration: none;
    transition: 0.4s;
    color:var(--color-red);
}

a:focus {
    outline: unset;
}



button:hover,
input[type=submit]:hover {
    color: var(--color-white);
}

.read-more {
    color: var(--color-green);
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    text-decoration: underline;
}

.read-more:hover {
    color: #000;
}

button:focus {
    outline: none;
}

.group-btn {
    display: flex;
    flex-wrap: wrap;
    column-gap: unset !important;
}

.group-btn li {
    margin-right: 15px;
}

.group-btn li:last-child {
    margin-right: 0 !important;
}

.group-btn li:before {
    display: none;
}

.group-btn li {
    width: auto !important;
    display: block !important;
}

.page-btn,
button,
input[type=submit] {
    color: var(--color-white);
    padding: 8px 40px;
    text-transform: uppercase;
    transition: 0.4s;
    display: inline-block;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    background: var(--color-red);
    z-index: 222;
    border: 1px solid var(--color-red);
    border-radius: 3px;
    overflow: hidden;

}

.page-btn:hover {
    color: var(--color-white) !important;
    border-color: var(--color-blue) !important;
}

.page-btn:before {
    content: "";
    position: absolute;
    left: unset;
    right: 0;
    bottom: 0;
    top: 0;
    background: var(--color-blue);
    border-color: var(--color-blue);
    transition: 0.4s;
    width: 0;
    z-index: -1;

}

.page-btn:hover:before {
    right: unset;
    left: 0;
    width: 100%;
    transition: 0.4s;
}

.page-btn.no-bg {
    background: transparent;
    color: var(--color-primary);
}




.bg-blue {
    background: var(--color-blue);
    color: var(--color-white)
}



.bg-red {
    background: var(--color-red);
    color: var(--color-white)
}

.bg-black {
    background: var(--color-primary);
    color: var(--color-white);
}



.text-blue {
    color: var(--color-blue) !important;
}

.text-red {
    color: var(--color-red) !important;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
}

.btn-group a {
    margin-left: 25px;
}

label .imp {
    color: red;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
    padding: 10px;
    height: 50px;
}

.form-group {
    margin-bottom: 15px;
}

textarea {
    min-height: 150px;
}

input[type=checkbox],
input[type=radio] {
    width: auto;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary) !important;
}

select:required:invalid {
    color: #929292;
}

.select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    position: relative;
}

.form-group.select {
    position: relative;
}

::placeholder {
    color: #585858;
}

table {
    width: 100%;
}

section {
    padding: 80px 0;
    position: relative;
}


.small-pb {
    padding-bottom: 60px;
}

.small-pt {
    padding-top: 60px;
}

.small-p {
    padding: 60px 0;
}

.large-pb {
    padding-bottom: 100px;
}

.large-pt {
    padding-top: 100px;
}

.large-p {
    padding: 100px 0;
}

.section-intro {
    margin: 0 auto 40px;
}

.section-title {
    position: relative;
    margin: 0 auto 10px;
}

.section-title .small-title {
    color: var(--color-red);
    font-size: 18px;
    margin: 0;
}

.section-title h2 {
    position: relative;
    font-size: 36px;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--color-blue);

}


.container {
    max-width: 1280px;
    padding: 0 15px;
}


/* nav design */


.secondary-menu {
    padding: 5px 0;
    border-bottom: 1px solid #dddddd;
}

.secondary-menu .row {
    align-items: center;
}

.nav-list li,
.social-media li {
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
}



.main-menu.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    box-shadow: 0 0 5px #dddddd;
}



.secondary-menu .nav-list li {
    margin-left: 35px;
    color: #636363;
}

.secondary-menu .nav-list li a {
    color: #636363;
}

.navbar-nav .nav-link {
    color: #261C1C;
    padding: 15px!important;
    position: relative;
}


.social-media li a {
    width: 25px;
    height: 25px;
    line-height: 28px;
    text-align: center;
    font-size: 14px;
    color: #636363;
}

.top-media ul li+li:before {
    content: '|';
    color: #888;
    padding: 0 5px;
    position: relative;
    left: -2px;
}

.social-media li a:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

.primary-menu .navbar-nav li {
    position: relative;
}

.primary-menu .navbar-nav li i{
    position: absolute;
    right: 0;
    top: 22px;
    font-size: 12px;
}

.primary-menu .navbar-nav li a:hover {
    color: var(--color-red);
}

.primary-menu .sub-menu {
    position: absolute;
    z-index: 333;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    top: 80px;
    transition: 0.4s;
    background: #fff;
    width: 220px;
    padding: 10px 15px;
    box-shadow: 0 20px 60px -30px rgba(31, 36, 48, .2);
    pointer-events: none;
}

.primary-menu .sub-menu li a {
    display: block;
    width: 100%;
    padding: 7px;
}

.primary-menu .nav-item:hover>.sub-menu {
    top: 55px;
    transition: 0.4s;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.sub-menu ul {
    position: absolute;
    margin-left: 100%;
    white-space: nowrap;
    padding: 0 15px;
    left: 0;
    top: 0;
    background: #fff;
    opacity: 0;
    width: 240px;
    transition: 0.4s;
}

.sub-menu li:hover ul {
    opacity: 1;
    transition: 0.4s;
}

.primary-menu .navbar-nav li:before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: all .3s;
    bottom: 0;
    left: 0;
    right: 0;
}

.primary-menu .navbar-nav li:hover:before {
    transition: all .3s;
    width: 100%;
}

.primary-menu .navbar-nav .sub-menu li:before {
    display: none;
    ;
}

#navbar-primary {
    padding-left: 0;
    padding-right: 0;
}

.main-menu {
    width: 100%;
}

.main-menu .row {
    align-items: center;
}

.main-menu h1 {
    text-align: center;
}

.primary-menu.sticky h1 img {
    max-width: 75px;
    transition: all .3s;
}



.primary-menu.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: smoothScroll 1.5s forwards;
    background: var(--color-white);
    z-index: 666;
    box-shadow: 0 0 10px #777;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(0px);
    }
}

header .header-content {
    position: relative;
 z-index: 1054;
}

.hero-image img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}


.hero-image {
    position: relative;
}

.hero-image:after,
.quick-contact:before {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 750px;

}

.hero-form h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 0;
}
.hero-form{
    border-radius: 10px;
    box-shadow:0px 30px 50px 0px rgba(0, 15, 56, 0.1);
}

.hero-slider .slide-item figure {
    margin: 0;
}


.hero-text h3 {
    font-size: 28px;
    font-weight: 500;
}

.hero-text h2 {
    font-size: 80px;
    color: var(--color-blue);
}

.hero-text p {
    font-size: 20px;
}

.slick-dots li button:before {
    font-size: 50px;
}

.hero-slider .slick-dots {
    bottom: 10%;
}

.slick-dots li.slick-active button:before {
    color: var(--color-red);
    opacity: 1;
}

 .slick-dots li button::before {
    color: #dddddd;
    opacity: 0.5;
    
}

.notice-slider .slick-next {
    right: 10px
}

.notice-slider .slick-prev {
    left: unset;
    right: 30px
}

.slick-next::before {
    content: "\f105";
    font-family: "Font Awesome 5 free";
    font-weight: 700;
}

.slick-prev::before {
    content: "\f104";
    font-family: "Font Awesome 5 free";
    font-weight: 700;
}

.notice-content {
    border-radius: 5px;
    overflow: hidden;
}

.notice-content h5 {
    background: var(--color-red);
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 222;
    top: 0;
    bottom: 0;
    height: 100%;
    margin: 0;
    color: var(--color-white);
    padding: 20px;
}
.notice-content h5 img{
    margin-right: 5px;
}

.notice-slider {
    background: var(--color-blue);
    padding: 20px 200px 20px;
    color: #fff;
}

.notice-slider .slide-item a {
    color: var(--color-white);
    font-weight: 600;
}

.notice-slider .slide-item.slick-current {
    animation: slideright 0.6s ease-in-out;
}

@keyframes slideright {
    from {
        opacity: 0;
        -webkit-transform: translateX(-25px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

.large-img-card li {
    list-style-type: none;
}


.large-img-card li img {
    width: 100%;
    object-fit: cover;
    height: 450px;
}

.large-img-card li:last-child {
    position: absolute;
    max-width: 275px;
    right: 0;
    bottom: 0;
    border: 10px solid #fff;
}

.large-img-card li:last-child img {
    height: 200px;
}

.large-img-card {
    padding-right: 100px;
}

.chairman-img {
    position: absolute;
    left: 0;
    right: 0;
    overflow: hidden;
    bottom: 0;
    top: 0;
    height: 100%;
}

.chairman-sec .row {
    height: 100%;
}

.chairman-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.news-slider .slick-list,
.testimonial-slider .slick-list {
    margin: 0 -12px
}

.news-slider .slide-item,
.testimonial-slider .slide-item {
    margin: 0 12px;
}

.news-card {
    background: #fff;
    box-shadow: 0 20px 60px -30px rgba(255, 255, 255, 0.2);
    transition: 0.4s;
    overflow: hidden;
}

.news-card:hover {
    border-radius: 0 125px 0 0;
    transition: 0.4s;

}

.news-card figure {
    margin: 0;
}

.news-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.news-info,
.event-info {
    padding: 30px;
}

.news-info .date {
    margin-bottom: 5px;
    font-size: 14px;
    color: #a6a6a6;
}

.news-info h3,
.event-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.chairman-content h3.chairman-name {
    font-family: "Sacramento", cursive;
}

.chairman-content {
    padding: 60px;
}

.chairman {
    background:#F5FCFF;
}

.featured-events-sec .entry-content .row .col-lg-3:nth-child(odd) .event-card {
    background: var(--color-blue);
}

.featured-events-sec .entry-content .row .col-lg-3:nth-child(even) .event-card {
    background: var(--color-red);
}

.event-card,
.event-card h3 {
    color: var(--color-white);
    transition: 0.4s;
}

.event-card:hover{
    box-shadow: 0 20px 60px -30px var(--color-primary);
    transition: 0.4s;
}

.event-card .date {
    padding: 15px;
    background: var(--color-white);
    display: inline-block;
    margin-bottom: 25px;
    color: var(--color-red);
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
}

.event-card ul li {
    margin-bottom: 5px;
    font-size: 14px;
}

.event-info .page-btn {
    color: var(--color-white);
    border-color: var(--color-white);
    margin-top: 20px;
}

.event-info p {
    color: #dddddd;
    font-size: 14px;
}

.gmcs-calendar a {
    border: 1px solid;
    border-left: 0;
    border-right: 0;
    padding: 20px;
    font-size: 20px;
    font-weight: 500;
}

.gmcs-calendar img {
    max-width: 75px;
}


.video-title a {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-thumbnail img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.video-thumbnail:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 7px;
}

.play-icon {
    position: relative;
}

.play-icon:after,
.play-icon:before {
    content: '';
    display: block;
    position: absolute;
    top: -5px;
    right: 0;
    bottom: 0;
    left: -5px;
    -webkit-transition: 0.4s;
    transition: var(--transition);
    border-radius: 50%;
    border: 1.2px solid var(--color-white);
    width: 70px;
    height: 70px;
}

.play-icon:before {
    -webkit-animation: ripple 2s linear infinite;
    animation: ripple 2s linear infinite;
}

.play-icon:after {
    -webkit-animation: ripple 2s linear 1s infinite;
    animation: ripple 2s linear 1s infinite;
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    75% {
        -webkit-transform: scale(2.1);
        transform: scale(2.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(2.3);
        transform: scale(2.3);
        opacity: 0;
    }
}

.faq-content .accordion-item {
    margin-bottom: 10px;
}

.all-faq{
    padding: 30px;
    box-shadow: 0 0 25px #dddddd;
    border-radius: 10px;
}

.accordion-button {
    font-size: 18px;
    color: var(--color-primary) !important;
    padding: 15px;
}

.accordion-button:focus {
    outline: none !important;
    box-shadow: unset !important;
}

.accordion-item {
    border: 1px solid #dddddd !important;
    border-radius: 3px;
    overflow: hidden;
}

.accordion-button:not(.collapsed) {
    background: var(--color-red);
    color: var(--color-white) !important;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1);
}




.counter-single {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 50px 30px;
    color: var(--color-white);
    background: var(--color-blue);
    border-radius: 5px;
}

.counter-single img {
    transition: 0.4s;
    max-width: 50px;
    filter: invert(1);
}

.counter-single:hover img {
    transform: scale(1.2);
    transition: 0.4s;
}

.counter-icon {
    margin-right: 20px;
}

.coundown div span {
    font-weight: 700;
}

.coundown h3 {
    margin: 0;
    color: var(--color-white);
}

.coundown P {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
}

.counter-content .entry-content .row .col-md-6:first-child .counter-single,
.counter-content .entry-content .row .col-md-6:last-child .counter-single {
    background: var(--color-red);
}

.qc-form {
    max-width: 450px;
    margin: 0 auto;

}

.qc-form h3 {
    color: var(--color-blue);
}

.quick-contact {
    background-attachment: fixed !important;
}

.user-name img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-slider .slide-item {
    text-align: center;
    padding: 35px;
    border-radius: 5px;
    box-shadow: 0 0 15px #dddddd;
    font-weight: 500;
    margin-bottom: 30px;
    border-top: 5px solid var(--color-red);
}

.testimonial-slider .slide-item p {
    font-weight: 500;
}

.user-name h3 {
    font-size: 18px;
    color: var(--color-blue);
    margin: 0;
}

.testimonial-sec .entry-content {
    max-width: 90%;
    margin: 0 auto;
}

.footer-content h3 {
    font-size: 20px;
    color: var(--color-white);
}

.footer-content img {
    max-width: 100px;
    margin: 0 auto;
}

.footer-content ul li {
    margin-bottom: 10px;
}

.footer-content ul li,
.footer-content,
.footer-content ul li a {
    color: #dddddd;
}

.cta:before,
.banner-sec:before,
.gmcs-insta:before,
.videos-content:before, 
.event-banner:before {
    content: "";
    background: linear-gradient(transparent, #000000);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.cta {
    background-attachment: fixed !important;
}

.banner-sec {
    padding: 0;
}

.banner-sec:before {
    background: linear-gradient(transparent, #000000);
}

.banner img {
    object-fit: cover;
    width: 100%;
    height: 25vh;
}

.banner-sec .container {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    color: var(--color-white);
}

.banner-sec h2,
.page-menu ul li a {
    color: var(--color-white);
}

.page-menu ul li+li:before {
    content: "/";
    padding: 0 10px;
    font-size: 16px;
}


/* contact page */
.contact-sec .entry-content .col-lg-4 {
    margin-bottom: 25px;
}

.contact-card {
    text-align: center;
    background: #f5f5f5;
    border-radius: 5px;
    height: 100%;
    padding: 35px;

}

.contact-card p,
.contact-card p a {
    font-weight: 500;
    color: var(--color-primary);
}

.c-icon {
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    background: var(--color-red);
    color: var(--color-white);
    font-size: 30px;
    border-radius: 50%;
    margin: 0 auto 20px;

}

.contact-form .form-content {
    max-width: 750px;
    margin: 0 auto;
    box-shadow: 0 0 25px #dddddd;
    padding: 35px;
}

/* About page */

.abt-img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.abt-img .row {
    height: 100%;
    margin: 0;
}

.abt-img img {
    height: 100%;
    object-fit: cover;
    padding: 100px 0;
}

.about .section-intro {
    position: relative;
    z-index: 222;
}

.abt-list li {
    position: relative;
    font-weight: 600;
    margin-bottom: 7px;
}

.abt-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 free";
    font-weight: 600;
    color: var(--color-red);
    margin-right: 10px;
}

.abt-list {
    column-count: 2;
    max-width: 75%;
}

.story-images ul {
    display: flex;
}

.story-images li:last-child {
    margin: 100px 25px 0;
}

.choose {
    background-color: rgb(3 66 124 / 11%);
}

.choose-card {
    padding: 35px;
    background: var(--color-white);
}

.choose-card img {
    width: 100%;
    object-fit: cover;
    margin-top: 40px;
}

.choose-card h3 {
    font-weight: 500;
    color: var(--color-red);
}

.choose .entry-content .row .col-lg-6:last-child {
    margin-top: 100px;
}

.goal-card h3,
.goal-card p {
    color: var(--color-white);
}

.goal-card ul li {
    list-style-type: disc;
    font-weight: 500;
    margin-bottom: 10px;
    color: #f5f5f5;
    margin-left: 25px;
}



.goal-card {
    background: var(--color-blue);
    padding: 50px;
    height: 100%;
}

.entry-content .row .col-lg-6:last-child .goal-card {
    background: var(--color-red);
}


/* Chairman page */

.quote {
    background: var(--color-white);
    padding: 10px 30px;
    margin-bottom: 15px;
}

.quote h4 {
    margin-bottom: 10px;
    font-style: italic;
    line-height: 30px;
    color: var(--color-red);
}

.quote:before {
    content: "\f10e";
    font-family: "Font Awesome 5 free";
    font-size: 25px;
    display: block;
    color: var(--color-blue);
    font-weight: 700;
    text-align: right;
}

.quote:after {
    content: "\f10d";
    font-family: "Font Awesome 5 free";
    font-size: 25px;
    display: block;
    text-align: left;
    color: var(--color-blue);
    font-weight: 700;
}

.md-image h4 {
    font-size: 20px;
    margin-bottom: 0;
    color: var(--color-blue);
}

/* Team page */

.member-card {
    background: #f5f5f5;
    margin-bottom: 25px;
    position: relative;
    border: 1px solid #ddd;
    overflow: hidden;
}

.member-card  img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.member-brief {
    text-align: center;
    padding: 15px;
}

.member-brief h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.member-brief p {
    opacity: 0.6;
    margin-bottom: 0;
}

.member-brief .member-contact {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 60%;
    background-image: linear-gradient(transparent, #ffffff 50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    justify-content: center;
}

.member-card:hover .member-brief .member-contact {
    transition: 0.4s;
    opacity: 1;
    visibility: visible;
}

.member-brief .member-contact ul li {
    margin-bottom: 10px;
}

.member-contact ul li a i {
    max-width: 25px;
    min-width: 25px;
    width: 100%;
    height: 25px;
    background: var(--color-blue);
    line-height: 25px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    margin-right: 10px;
    font-size: 12px;
}

.team-tab.nav-tabs .nav-link {
    background: #fff;
    padding: 10px 25px;
    border-radius: 3px;
    color: var(--color-primary);
    text-transform: capitalize;
}

.team-tab.nav-tabs .nav-link.active,
.team-tab.nav-tabs .nav-link:hover {
    background: var(--color-blue);
    color: var(--color-white) !important;
}

.team-tab.nav-tabs {
    margin-bottom: 30px;
    border: unset;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    display: block;
}

.team-tab.nav-tabs .nav-item {
    margin-right: 10px;
    display: inline-block;
}

/* Facility page */

.fs-card {
    margin-bottom: 25px;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 5px;
}

.fs-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.fs-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}



.facility-gallery a,
.facility-gallery img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: 0.4s;

}

.facility-gallery figure {
    overflow: hidden;
}

.facility-gallery a:hover,
.gallery-content li a:hover {
    transition: 0.4s;
    transform: scale(1.1);
}

.facility-gallery .row .col-md-3:nth-child(even) figure {
    margin-top: 50px;
}

/* Gallery page */

.album-group-info {
    background: #f5f5f5;
    padding: 20px;
    transition: 0.4s;
    position: relative;
    top: 0;
}

.album-group-info h3 {
    font-size: 22px;
    color: var(--color-blue);
    margin: 0;
}

.album-total {
    background: var(--color-white);
    position: absolute;
    bottom: 0;
    left: 0px;
    padding: 10px;
    text-align: center;
}

.album-total h4 {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-red);
    margin: 0;
}

.album-group {
    margin-bottom: 25px;
    transition: 0.4s;
}

.album-group:hover {
    box-shadow: 0 20px 60px -30px var(--color-primary);
    transition: 0.4s;
}

.album-group figure {
    margin: 0;
    position: relative;
    height: 300px;
}

.album-group figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.insta-sec .group-btn a.instagram,
.insta-sec .group-btn a.page-btn.instagram:hover {
    background: linear-gradient(90deg, #405DE6 0%, #C13584 100%) !important;
}

.insta-sec .group-btn a.youtube.page-btn,
.insta-sec .group-btn a.youtube.page-btn:hover {
    background: #cc181e !important;
}

.insta-sec .group-btn a.page-btn:before {
    display: none;
}

.insta-sec .group-btn a {
    padding: 15px 25px;
    border-radius: 50px;
}

/* Video Page */

.videos-content {
    position: relative;
    margin-bottom: 30px;
}

.videos-content figure img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.gallery-video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
}

.gallery-video-title h4 {
    color: var(--color-white);
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 600;
}

.gallery-video-title p {
    margin-bottom: 0;
    color:#dddddd;
}

.gallery-video-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.gallery-video-icon a.video-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Notice page */

.notice-content .accordion-item{
    margin-bottom: 25px;
    border: 0 !important;
    background:var(--color-white);
    box-shadow: 0 0 0.5rem 0.2rem #c9e2f8;
    border-radius: 10px;
    border-left: 5px solid var(--color-blue) !important;
}

.notice-content .accordion{
    padding: 50px;
}


.notice-content .accordion-button{
    color: var(--color-red) !important;
    background: none;
    text-transform: none;
    font-weight: 600;
    flex-wrap: wrap;
    position: relative;
}

.notice-content .accordion-button,
.notice-content .accordion-body{
    padding: 20px;
}

.notice-content  .accordion-button::after{
    filter: unset !important;
    position: absolute;
    right: 8px;
    top: 20px;
 }

.notice-date{
    width: 100%;
    font-size: 14px;
    color:var(--color-primary);
    margin: 0;
}

.notice, .single-news, .related,
.form-info{
    background: #F5FCFF;
}

.notice-content .accordion-button:not(.collapsed){
    box-shadow: unset;
    border-bottom: 1px solid #dddddd;
}

/* Event page */

.event-list-card-wrap {
    border-radius: 10px;
    box-shadow: 0px 30px 50px 0px rgba(0, 15, 56, 0.1);
    background-color: #ffffff;
  }
 .event-list-card-wrap {
    margin-bottom: 10px;
    padding: 20px 30px;
  }
  .event-list-card {
    display: flex;
    align-items: center;
  }
  .event-list-card .event-list-card-date {
    border-right: 1px solid rgba(15, 22, 41, 0.078);
    margin-right: 40px;
    padding-right: 40px;
  }
  .event-list-card .event-list-card-icon {
    flex: 0 0 55%;
    max-width: 55%;
    padding-right: 30px;
  }
  .event-list-card-date-1 {
    display: block;
    font-size: 30px;
    font-weight: 700;
    line-height: 20px;
    color: var(--color-red);
    margin-bottom: 8px;
  }
  .event-list-card-date-2 {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--color-blue);
  }
  .event-list-card-icon-1 {
    font-size: 14px;
    color: var(--color-primary);
    vertical-align: middle;
  }
  .event-list-card-icon-1 .icon {
    height: 17px;
  }
  .event-list-card-icon-3{
    font-weight: 500;
    margin: 0;
    font-size: 18px;
  }
.event-sec .entry-content{
    max-width: 950px;
    margin: 0 auto;
}

/* Single event page */
.event-banner  h2{
        position: absolute;
        bottom: 0;
        color:var(--color-white);
        font-size: 28px;
        margin: 0;
        padding: 20px;
}
.event-banner img, .recent-blog-list li .post-image img{
    width: 100%;
    object-fit: cover;
    height: auto;
}

.event-orgniser h3{
    color:var(--color-blue);
    font-size: 24px;
    margin-bottom: 10px;
}

.event-orgniser ul li label,
.event-location .form-group label{
    font-weight: 600;
    display: block;
}
.event-orgniser ul li{
    margin-bottom: 15px;
}
.social-share ul li {
    font-size: 24px;
    margin-right: 20px;
}
.social-share  h3{
    font-size: 20px;
}

/* News Page */

.post-brief h2, .pdf-desc h3{
    font-size: 20px;
    color:var(--color-blue);
}
.post-meta ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.post-meta ul li {
    font-size: 14px;
    color: #888;
    margin-right: 15px;
}

.post-image img{
    height: 175px;
    width: 100%;
    object-fit: cover;
}

.news-list{
    margin-top: 0 ;
}

.news-list .row {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
.recent-blog-list li .post-image {
    max-width: 100px;
    height: 70px;
    margin-right: 15px;
}
.news-list .row:last-child,
.recent-blog-list ul li:last-child {
    border-bottom: unset;
}

.recent-blog-list h3{
    font-size: 28px;
    color:var(--color-blue);
}

.recent-blog-list {
    background: #f5f5f5;
    padding: 20px;
    margin-bottom: 30px;
}


.recent-blog-list li {
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.recent-blog-list ul li:first-child {
    padding-top: 0;
}

.post-title h2{
    font-size: 18px;
    margin-bottom: 5px;
}

.page-link {
    background: transparent;
    border: 0;
    color: var(--color-blue);
    margin: 0 5px;
    border-radius: 0 !important;
    font-size: 16px;
}
.page-link.active {
    background: var(--color-blue);
    color: var(--color-white);
}
.page-link:focus{
    box-shadow: unset;
}

/* Single news page */

.post-header h2{
    color:var(--color-blue);
    font-size: 32px;
    margin-bottom: 10px;
}

.single-post figure img{
    width: 100%;
    object-fit: cover;
}

.blog-quote {
    padding: 75px 0;
    border-top: 2px solid #dddddd;
    border-bottom: 2px solid #dddddd;
    margin: 35px 0;
}

.blog-quote p:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 75px;
    color: #f5f5f5;
    margin-right: 25px;
}

.blog-quote p {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    line-height: 45px;
    position: relative;
    display: flex;
}

/* Gallery page */

.gallery-content {
    column-count: 4;
    column-gap: 25px;
}

.gallery-content li a{
    display: block;
    margin-bottom: 25px;
   
}
.gallery-content li {
    overflow: hidden;
}

.gallery-content li a img{
    width: 100%;
    object-fit: contain;
    transition: 0.4s;
}

/* Register form */

.form-info{
    padding: 30px;
    margin-bottom: 25px;
}

.form-info input[type="checkbox"]{
    width: auto;
    height: auto;
    margin-right: 5px;
}
.form-info label{
    font-weight: 500;
    font-size: 14px;
}
.form-info h4{
    font-size: 20px;
    color: var(--color-red);
}

/* Document page */

.pdf-icon {
    font-size: 50px;
    text-align: center;
    color:var(--color-red);
}

.pdf-desc h3{
    margin-bottom: 5px;
}
.pdf-desc .page-btn{
    font-size: 14px;
    padding: 10px;
}

.pdf-card{
    background: #eeeeee;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
}
 
/* Password page */

.hidden-content-sec form{
    padding: 30px;
    box-shadow: 0 0 25px #dddddd;
    border-radius: 10px;
}