/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    --primary_color: #29abe2;
    --secondary_color: #f25359;
}

body {
    font-family: "Poppins", "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: var(--primary_color);
    text-decoration: none;
}

* {
    margin: 0;
    box-sizing: border-box;
}


:before,
:after {
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

a:hover {
    color: var(--secondary_color);
    text-decoration: none;
}

.v-center {
    align-items: center;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1em;
}

.title {
    font-size: 16px;
    margin: 0 0 8px;
    font-weight: 700;
}

.title:hover {
    background-color: var(--primary_color);
    color: #fff;
}

@media (min-width: 768px) {
    .title {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .title {
        font-size: 24px;
    }
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary_color);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--secondary_color);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--primary_color);
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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


/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0s !important;
    }
}

/* Emergency Information */
.emergency-banner {
    margin-top: 50px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
}

.emergency-banner .alert {
    padding-top: 0;
    padding-bottom: 0;
    max-width: 1176px;
    margin-left: auto;
    margin-right: auto;
    border-width: 1px;
}

.alert-warning {
    border-color: #f57f17;
}

.alert {
    border-width: 4px;
    border-style: solid;
    line-height: 24px;
    background-color: #fff;
    padding: 0;
}

.alert marquee {
    margin: 14px 0;
    display: inline-block;
    animation: linear infinite;
}

.alert marquee .alert-img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    margin-bottom: 4px;
}

.alert marquee > p {
    font-size: 16px;
    line-height: 1.4rem;
    margin: 0;
}


/* header */
.header {
    display: block;
    width: 100%;
    position: relative;
    z-index: 99;
    padding: 20px 0 20px 0;
    border-top: 8px solid var(--primary_color);
    border-bottom: 1px solid #e5e5e5;
}

.header .menu-container {
    margin-right: -15px;
    margin-left: -15px;
}

.header .item-left {
    flex: 0 0 17%;
}

.header .logo a {
    font-size: 30px;
    color: #000000;
    font-weight: 700;
    text-decoration: none;
}

.header .item-right {
    flex: 0 0 17%;
    display: flex;
    justify-content: flex-end;
}

.header .item-right a {
    text-decoration: none;
    font-size: 16px;
    color: #555555;
    display: inline-block;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.header .menu > ul > li {
    display: inline-block;
}

.header .menu > ul > li > a {
    font-size: 16px;
    font-weight: 600;
    color: #00598c;
    position: relative;
    text-transform: capitalize;
    padding: 8px 16px;
}

.header .menu > ul > li:hover > a {
    background-color: var(--primary_color);
    color: #fff;
}

/* .menu-top .menu-main-top {
  display: flex;
  justify-content: flex-end;
} */
.menu-top .menu-main-top > li {
    display: inline-block;
    color: black;
}

.menu-top .menu-main-top > li > a {
    color: #00598c;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
}

.menu-top .menu-main-top > li:hover > a {
    background-color: var(--primary_color);
    color: #fff;
}

.header .menu > ul > li .sub-menu,
.header .menu-top > ul > li .sub-menu {
    position: absolute;
    z-index: 500;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px -2px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px -2px;
    padding: 20px 30px;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
}

.header .menu > ul > li .sub-menu-search {
    position: absolute;
    z-index: 500;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px -2px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px -2px;
    padding: 20px 30px;
    margin-top: 25px;
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 992px) {
    .header-item .menu {
        display: flex;
        justify-content: flex-end;
    }

    .header .menu .menu-main-mobile {
        display: none;
    }

    .header .menu > ul > li.menu-item-has-children:hover .sub-menu,
    .header .menu-top > ul > li.menu-item-has-children:hover .sub-menu {
        margin-top: 7px;
        visibility: visible;
        opacity: 1;
        border-top: 5px solid var(--primary_color);
    }

    .header .menu > ul > li.menu-item-search .sub-menu-search {
        margin-top: 10px;
        opacity: 1;
        border-top: 5px solid var(--primary_color);
    }

    .header .menu > ul > li.search-submenu-active .sub-menu-search {
        visibility: visible;
        display: block;
    }

    .header .menu > ul > li.search-submenu-active a {
        background-color: var(--primary_color);
        color: #fff;
    }

    .header
    .menu
    > ul
    > li
    .sub-menu.mega-menu
    > .list-item
    > ul
    > li
    > .menu-main-dropdown
    > ul {
        margin-top: 0.5rem;
    }

    .header
    .menu
    > ul
    > li
    .sub-menu.mega-menu
    > .list-item
    > ul
    > li
    > .menu-main-dropdown {
        margin-bottom: -2px !important;
        cursor: pointer;
    }
}

.header .menu > ul > li .sub-menu > ul > li {
    line-height: 1;
}

.header .menu > ul > li .sub-menu > ul > li > a,
.header .menu-top > ul > li .sub-menu > ul > li > a {
    display: inline-block;
    margin: 7px 0;
    font-size: 15px;
    color: #00598c;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 600;
}

.header .menu > ul > li .single-column-menu,
.header .menu-top > ul > li .single-column-menu {
    min-width: 280px;
    max-width: 350px;
}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
    display: block;
}

.header
.menu
> ul
> li
.sub-menu.mega-menu
> .list-item
> ul
> li
> .menu-main-dropdown
> ul
> li {
    line-height: 1;
    display: none;
    margin-left: 15px;
}

.header
.menu
> ul
> li
.sub-menu.mega-menu
> .list-item
> ul
> li
> .menu-main-dropdown.active
> ul
> li {
    display: block;
}

.header
.menu
> ul
> li
.sub-menu.mega-menu
> .list-item
> ul
> li
> .menu-main-dropdown
> ul
> li
a {
    margin: 6px 0;
    display: inline-block;
    font-size: 16px;
    color: #5c8fad;
    font-weight: 400;
}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a,
.header
.menu
> ul
> li
.sub-menu.mega-menu
> .list-item
> ul
> li
> .menu-main-dropdown {
    margin: 7px 0;
    display: inline-block;
    font-size: 16px;
    color: #00598c;
    font-weight: 500;
}

.header .menu > ul > li .sub-menu.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}

.header .menu > ul > li .sub-menu-search.mega-menu {
    left: 50%;
    transform: translateX(-50%);
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 4rem;
}

.header .menu > ul > li .sub-menu-search.search-mega-menu {
    width: 100%;
    padding: 20px 4rem;
}

.header
.menu
> ul
> li
.sub-menu-search.search-mega-menu
.search
.search-field
i {
    position: absolute;
    top: 12px;
    left: 10px;
}

.header
.menu
> ul
> li
.sub-menu-search.search-mega-menu
.search
.search-field
input {
    padding-left: 2.3rem;
    background-color: #ebebeb;
}

.header
.menu
> ul
> li
.sub-menu-search.search-mega-menu
.search
.search-field
input:focus {
    outline-width: thin;
    outline-style: dotted;
    outline-offset: 3px;
    outline-color: var(--primary_color);
}

.header .menu > ul > li .sub-menu-search.search-mega-menu .search button {
    background-color: var(--primary_color);
    color: #fff;
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
    flex: 0 0 25%;
    padding: 0 15px;
}

.header
.menu
> ul
> li
.sub-menu.mega-menu-column-4
> .list-item
.submenu-title {
    font-size: 18px;
    color: #666666;
    font-weight: 700;
    line-height: 1;
    padding: 5px 0;
    border-bottom: 1px solid #6666;
}

.header
.menu
> ul
> li
.sub-menu.mega-menu-column-4
> .list-item.text-center
.submenu-title {
    text-align: center;
}

.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    margin-top: 10px;
}

.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header
.menu
> ul
> li
.sub-menu.mega-menu
> .list-item
> ul
> li
> .menu-main-dropdown
> ul
> li
> a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .menu-top > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover {
    color: #fff;
    background-color: var(--primary_color);
}

/* banner section */
.banner-section {
    background-image: url("../img/banner.jpg");
    background-size: cover;
    background-position: center;
    height: 700px;
    width: 100%;
    display: block;
}

.mobile-menu-head,
.mobile-menu-trigger,
.mobile-menu-search {
    display: none;
}

/*responsive*/
@media (max-width: 991px) {
    .alert marquee {
        margin: 10px 0;
    }

    .header .item-left,
    .header .item-right {
        flex: 0 0 auto;
    }

    .v-center {
        justify-content: space-between;
    }

    .header .menu-container {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
    }

    .header .mobile-menu-trigger {
        display: flex;
        height: 30px;
        width: 30px;
        margin-right: 15px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    .header .mobile-menu-trigger span {
        display: block;
        height: 2px;
        background-color: #333333;
        width: 24px;
        position: relative;
    }

    .header .mobile-menu-trigger span:before,
    .header .mobile-menu-trigger span:after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #333333;
    }

    .header .mobile-menu-trigger span:before {
        top: -6px;
    }

    .header .mobile-menu-trigger span:after {
        top: 6px;
    }

    .header .item-right {
        align-items: flex-end;
    }

    .header .menu,
    .menu-top {
        position: fixed;
        width: 320px;
        background-color: #ffffff;
        left: 0;
        top: 0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }

    .header .menu.active {
        transform: translate(0%);
    }

    /* .menu-top .menu-main-top {
      flex-direction: column;
      margin: 0;
    } */
    .header .menu > ul > li {
        line-height: 1;
        padding: 0;
        display: block;
    }

    .header .menu > ul > li > a {
        line-height: 50px;
        height: 50px;
        padding: 0 50px 0 15px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .header .menu > ul > li > a i {
        position: absolute;
        height: 50px;
        width: 50px;
        top: 0;
        right: 0;
        text-align: center;
        line-height: 50px;
        transform: rotate(-90deg);
    }

    .header .menu > ul > li.menu-item-search {
        visibility: hidden;
    }

    .mobile-menu-search {
        display: block;
    }

    #search-box-mobile {
        height: 48px;
        z-index: 1;
        display: block;
        position: relative;
        background: #ebebeb;
        padding: 10px 20px 48px 20px;
        width: 100%;
    }

    .mobile-search-box {
        position: relative;
    }

    form.mobile-search-box {
        font-size: 13px;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 4px;
        margin-left: 0;
        width: 100%;
    }

    table.mobile-search-box {
        border-style: none;
        border-width: 0;
        border-spacing: 0 0;
        width: 100%;
        margin-bottom: 2px;
    }

    table.mobile-search-box {
        margin-top: -5px;
    }

    .search-field .search-icon {
        display: inline-block;
        position: absolute;
        top: 15px;
        left: 12px;
        content: "";
        height: 18px;
        width: 18px;
    }

    #mobile-search-input-id {
        border-bottom: 0;
        height: 40px !important;
        padding: 0px !important;
        background: none !important;
        text-indent: 35px;
    }

    .mobile-search-input-box .mobile-search-input {
        height: 40px !important;
        margin: 0 !important;
        text-indent: 36px;
        font-size: 16px;
        width: 100% !important;
        border: 1px solid #808080 !important;
        background: #ebebeb !important;
        border-radius: 2px 0 0 2px;
    }

    .mobile-search-input-box .mobile-search-input:focus {
        outline: 1px dotted var(--primary_color) !important;
        outline-offset: 1px;
    }

    .mobile-search-button {
        display: block !important;
        margin-left: 0;
        color: #fff;
    }

    .mobile-search-button .mobile-search-button.mobile-search-button-v2 {
        background-color: #00598c;
        border: 0px;
        border-radius: 0 2px 2px 0;
        display: block;
        padding: 6px 0px;
        margin: 4px 0 0;
        min-width: 86px;
        min-height: 40px;
        text-align: center;
        width: 100%;
    }

    .mobile-search-button-v2 {
        padding: 6px 27px;
        width: auto;
        vertical-align: middle;
        border: 1px solid #666;
        border-radius: 2px;
        border-color: #3079ed;
        background-color: #4d90fe;
        background-image: linear-gradient(top, #4d90fe, #4787ed);
    }

    .header .menu .mobile-menu-head {
        display: flex;
        height: 50px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        position: sticky;
        background-color: #ffffff;
        top: 0;
    }

    .header .menu .mobile-menu-head .go-back {
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 16px;
        display: none;
    }

    .header .menu .mobile-menu-head.active .go-back {
        display: block;
    }

    .header .menu .mobile-menu-head .current-menu-submenu-title {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
    }

    .header .menu .mobile-menu-head .mobile-menu-close {
        height: 50px;
        width: 50px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 25px;
    }

    .header .menu .menu-main,
    .menu-top .menu-main-top {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .header .menu > ul > li .sub-menu.mega-menu,
    .header .menu > ul > li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 65px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }

    .header .menu > ul > li .sub-menu.active {
        display: block;
    }

    @keyframes slideLeft {
        0% {
            opacity: 0;
            transform: translateX(100%);
        }
        100% {
            opacity: 1;
            transform: translateX(0%);
        }
    }
    @keyframes slideRight {
        0% {
            opacity: 1;
            transform: translateX(0%);
        }
        100% {
            opacity: 0;
            transform: translateX(100%);
        }
    }
    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
        margin-top: 0;
    }

    .header
    .menu
    > ul
    > li
    .sub-menu.mega-menu-column-4
    > .list-item.text-center
    .submenu-title {
        margin-bottom: 20px;
    }

    .header
    .menu
    > ul
    > li
    .sub-menu.mega-menu-column-4
    > .list-item.text-center:last-child
    .submenu-title {
        margin-bottom: 0px;
    }

    .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
        flex: 0 0 100%;
        padding: 0px;
    }

    .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
        margin-bottom: 15px;
    }

    .menu-overlay {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease;
    }

    .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#top-slider {
    margin-top: 64px;
    padding-bottom: 0px;
    background: var(--primary_color);
    background: linear-gradient(180deg, #005587 0%, #2774ae 100%);
}

.top-slider-container {
    display: block;
    position: relative;
}

.top-slider-container::before {
    content: "";
    display: table;
}

.top-slider-wraper {
    padding-bottom: 64px;
    margin-top: -32px;
}

.top-slider-wraper .slider-img {
    width: 100%;
    height: 100%;
}

.slider-left {
    display: flex;
    position: relative;
}

.slider-right {
    position: relative;
}

#top-slider a:hover .slider-title {
    background: #0079bf;
    color: #ffffff;
}

.slider-title {
    padding: 16px 32px 12px;
    bottom: 0;
    z-index: 1;
    background: #fff;
    color: #00598c;
    max-width: 552px;
    position: absolute;
}

.slider-title.st-right {
    padding: 12px 16px 12px;
    max-width: 332px;
}

.st-left h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 27px;
    margin-bottom: 0;
}

.st-right h3 {
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f6f7f6;
}

.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    margin: 0;
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: #37423b;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .section-title h2 {
        font-size: 18px;
    }

    .section-title a {
        font-size: 14px;
    }
}

.section-title-sidebar {
    border-left: 5px solid var(--secondary_color);
    padding-left: 1rem;
}

/*--------------------------------------------------------------
  # Featured
  --------------------------------------------------------------*/
.story_feature-card {
    min-height: 540px;
}

.story-featured-img {
    height: auto;
    width: 100%;
}

.story-featured-content {
    margin: 0 10px;
    padding: 24px 14px;
    position: relative;
    top: -24px;
    background-color: #fff;
}

@media (min-width: 1200px) {
    .story_feature-card {
        width: 100%;
        margin-bottom: 0;
    }

    .story-featured-img {
        height: auto;
        width: 675px;
        float: right;
    }

    .story-featured-content {
        width: 576px;
        position: absolute;
        transform: none;
        top: 150px;
    }
}

@media (min-width: 768px) {
    .story-featured-content {
        padding: 15px 32px;
        margin: 0 15px;
    }
}

#popular-news {
    background-color: #f2f2f2;
}

.news .news-item {
    background-color: #fff;
}

.news .news-content {
    padding: 15px 20px;
}

.news .news-content h3 {
    font-weight: 700;
    font-size: 24px;
}

.news .news-content h3 a {
    color: #37423b;
    transition: 0.3s;
}

.news .news-content h3 a:hover {
    color: var(--primary_color);
}

.news .news-content p {
    font-size: 14px;
    color: #777777;
}

.news .news-content h4 {
    font-size: 16px;
    padding: 10px 0;
    margin: 0;
    line-height: 25px;
    margin-bottom: 10px;
}

.news .trainer {
    padding-top: 15px;
    border-top: 1px solid #eef0ef;
}

.news .trainer .trainer-profile img {
    max-width: 50px;
    border-radius: 50px;
}

.news .trainer .trainer-profile span {
    padding-left: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #5a6c60;
}

.news .trainer .trainer-rank {
    font-size: 18px;
    color: #657a6d;
}

/*--------------------------------------------------------------
  # Chancellor Message
  --------------------------------------------------------------*/
.block-quote {
    width: 100%;
    display: block;
    height: auto;
}

.block-quote__img-wrapper {
    margin-bottom: 0;
}

.block-quote__img-wrapper img {
    width: 100%;
    position: relative;
    display: block;
}

.block-quote__content {
    padding: 32px 24px;
    background-color: var(--primary_color);
    color: #fff;
}

.chancellor .content {
    background-color: var(--primary_color);
    padding: 4rem;
    color: #fff;
}

.chancellor .content h3 {
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
}

.chancellor .content .read-more-btn {
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 25px 9px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.chancellor .content .read-more-btn:hover {
    background: #fff;
    color: var(--primary_color);
}

@media (max-width: 768px) {
    .chancellor .content {
        padding: 2rem;
        margin: 0;
    }

    .chancellor .content h3 {
        font-size: 18px;
        line-height: 30px;
    }
}

@media (min-width: 768px) {
    .block-quote_content {
        padding: 32px;
    }
}

@media (min-width: 1024px) {
    .block-quote {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 1174px;
        margin: 0 auto;
        padding: 64px 0;
        padding-top: 0px;
    }

    .block-quote__img-wrapper {
        width: 524px;
        vertical-align: middle;
    }

    .block-quote__content {
        padding: 72px 86px 72px 90px;
        margin-left: -22px;
        vertical-align: middle;
        width: calc(99% - 495px);
    }
}

@media (min-width: 1024px) and (max-width: 1230px) {
    .block-quote__img-wrapper {
        margin-left: 24px;
    }

    .block-quote__content {
        margin-left: 24px;
    }
}

/*--------------------------------------------------------------
  # News Story
  --------------------------------------------------------------*/
.news-story {
    padding-top: 0px;
}

.news-story .select-menu {
    padding: 8px 16px;
    background-color: transparent;
    border: 2px solid #00598c;
    color: #00598c !important;
    font-size: 16px;
    font-weight: bold;
    border-radius: 2px;
    line-height: 1.25;
    border-radius: 2px;
    background-repeat: no-repeat;
    min-width: 205px;
    margin-bottom: 5px;
}

.select-menu {
    background-size: 24px;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 24px 8px 16px;
    border: 1px solid gray;
    border-radius: 2px;
    color: #666;
}

.newsstory_feature-card {
    min-height: 540px;
}

.newsstory-featured-img {
    height: auto;
    width: 100%;
}

.newsstory-featured-content {
    margin: 0 10px;
    padding: 24px 14px;
    position: relative;
    top: -24px;
    background-color: #fff;
}

@media (min-width: 1200px) {
    .newsstory_feature-card {
        width: 100%;
        margin-bottom: 0;
    }

    .newsstory-featured-img {
        height: auto;
        width: 675px;
        float: right;
    }

    .newsstory-featured-content {
        width: 576px;
        position: absolute;
        transform: none;
        top: 220px;
    }
}

@media (min-width: 768px) {
    .newsstory-featured-content {
        padding: 15px 32px;
        margin: 0 15px;
    }
}

.news-story .icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    transition: 0.3s;
    border: 1px solid #eef0ef;
}

.news-story .icon-box i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 1;
}

.news-story .icon-box h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
}

.news-story .icon-box h3 a {
    color: #37423b;
    transition: 0.3s;
}

.news-story .icon-box:hover {
    border-color: var(--primary_color);
}

.news-story .icon-box:hover h3 a {
    color: var(--primary_color);
}

.news-story-content {
    padding: 10px 15px;
    background-color: var(--primary_color);
}

.news-story-content a {
    color: #ffffff;
    transition: 0.3s;
}

.news-story-item .last {
    background-color: var(--primary_color);
    color: #fff;
}

.news-story-item .last h6 {
    font-weight: 600;
}

.news-story-item .last h4 {
    color: var(--secondary_color);
    font-weight: 900;
}

.news-story-item .last p {
    font-size: 12px;
    margin: 0;
}

.news-story-content-last {
    background-color: #fff;
    padding: 10px 15px;
    border: 5px solid #197da8;
}

.news-story-content a:hover {
    background-color: #ffe500;
    color: #37423b;
}

/*--------------------------------------------------------------
  # Events
  --------------------------------------------------------------*/
#events-section {
    background-color: #f2f2f2;
}

.events .events-item {
    background-color: #fff;
}

.events .events-content-frist {
    padding: 20px 15px 15px;
}

.events .events-content-frist:hover {
    background-color: var(--primary_color);
    transition: 0.3s;
}

.events .events-content-frist:hover h3 a {
    color: #fff;
    transition: 0.3s;
}

.events .events-content-last {
    padding: 15px 15px 17px 15px;
}

.events .events-content-frist .date {
    background-color: #ffe500;
    display: inline-block;
    padding: 5px;
    font-weight: 800;
    color: #000;
}

.events .events-content-frist h3 a {
    font-weight: 800;
    transition: 0.3s;
}

.events .events-content-last p {
    font-size: 14px;
    color: #888888;
    font-weight: 600;
}

.events .events-content-last h4 {
    font-size: 14px;
    margin: 0;
    line-height: 25px;
    font-weight: 500;
}

/*--------------------------------------------------------------
  # Social Events
  --------------------------------------------------------------*/

#social-events {
    background: #2774ae;
}

#social-events .social-post-header {
    padding-bottom: 10px;
    color: #ffffff;
    font-weight: bold;
}

#social-events .social-header-text {
    color: #ffffff;
}

#social-events .social-block {
    height: fit-content;
}

#social-events .social-post-container {
    background: #ffffff;
}

#social-events .social-post-container a {
    color: #333333;
}

.social-post-top {
    padding: 16px;
    justify-content: space-between;
}

.social-post-handle,
.social-post-timestamp {
    line-height: 20px;
    align-items: center;
    color: #999;
}

.social-post-handle strong {
    color: #000;
}

.social-post-author-image {
    margin-right: 8px;
    border-radius: 30px;
}

.social-post-media {
    width: 100%;
}

.social-post-info {
    padding: 16px;
}

@media (min-width: 576px) {
    .card-columns {
        column-count: 1;
    }
}

@media (min-width: 768px) {
    .card-columns {
        column-count: 2;
    }
}

@media (min-width: 992px) {
    .card-columns {
        column-count: 4;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #37423b;
    font-size: 14px;
}

#footer .footer-top {
    padding: 30px 0 30px 0;
    background: var(--primary_color);
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #777777;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: var(--primary_color);
    background-color: #ffe500;
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: #444444;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    text-align: left;
    border: 1px solid #e0e5e2;
}

#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px 2px 20px;
    background: var(--primary_color);
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
    background: var(--secondary_color);
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
}

#footer .credits a {
    color: var(--secondary_color);
    transition: 0.3s;
}

#footer .credits a:hover {
    color: var(--primary_color);
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--primary_color);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #ffe500;
    color: #444444;
    text-decoration: none;
}


/*Card design for the expendable and collapsible design*/

#col-exp .collapsible {
    background-color: #f5f5f5;
    color: #333;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border-color: #ddd;
    text-align: left;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
}

#col-exp .active, .collapsible:hover {
    background-color: #29abe2;
    color: white;
}

#col-exp .active, .collapsible:hover:after {
    color: white;
}

#col-exp .content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f9f9f9;
}

#col-exp .content p{
    margin-top: 10px;
}

#col-exp .collapsible:after {
    content: "\002B";
    color: black;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

#col-exp .active:after {
    content: "\2212";
    color: white;
}

#col-exp .card-style{
    padding: 30px;
    border-top: 3px solid #4893ec;
    box-shadow:0 0 10px rgb(41,171,226);
}
