/*--------------------------------------------------------------
# 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: 0 !important;
  }
}
/*--------------------------------------------------------------
# Main Header with menu
--------------------------------------------------------------*/
/* header */
.header {
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
}

.header-item-navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.header .header-item-navbar .header-item-navbar-brand {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #333333;
}
.header .header-item-navbar .header-item-navbar-brand:hover {
  color: var(--primary_color);
  transition: 0.3s;
}

.header .logo-header {
  background-color: var(--primary_color);
}

.header .logo-header a {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  font-style: italic;
}
.header .site-name {
  font-size: 26px;
  font-weight: 700;
  margin-left: 2rem;
}
.header .site-name a {
  color: rgb(59, 59, 59);
}

.header .item-left {
  flex: 0 0 17%;
}
.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;
  transition: color 0.3s ease;
}
.header-item .menu {
  float: right;
}
.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: 10px 15px;
}
.header .menu > ul > li > a:hover {
  background-color: var(--primary_color);
  color: #fff;
}
.header .menu > ul > li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}
.header .menu > ul > li .sub-menu-search {
  position: absolute;
  z-index: 500;
  background-color: #ffffff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  .header .menu > ul > li.menu-item-has-children:hover .sub-menu {
    margin-top: 9px;
    visibility: visible;
    opacity: 1;
    border-top: 5px solid var(--primary_color);
  }
  .header .menu > ul > li.menu-item-search .sub-menu-search {
    margin-top: 9px;
    opacity: 1;
  }
  .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 > ul > li {
  line-height: 1;
}

.header .menu > ul > li .sub-menu > ul > li > a {
  display: inline-block;
  font-size: 15px;
  padding: 10px 20px;
  color: #00598c;
  text-decoration: none;
  text-transform: capitalize;
  font-weight: 600;
  min-width: 250px;
}
.header .menu > ul > li .single-column-menu {
  max-width: 350px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
  line-height: 1;
  display: block;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
  margin: 10px 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 0;
}
.header .menu > ul > li .sub-menu-search.search-mega-menu {
  width: 100%;
  padding: 20px 4rem;
  box-shadow: 0 4px 6px 0 rgb(0 0 0 / 50%);
}

.header
  .menu
  > ul
  > li
  .sub-menu-search.search-mega-menu
  .search
  .search-field
  .search-icon
  i {
  position: absolute;
  top: 15px;
  left: 7px;
  color: var(--primary_color);
  font-weight: 600;
  font-size: 25px;
}
.header
  .menu
  > ul
  > li
  .sub-menu-search.search-mega-menu
  .search
  .search-field
  .cross_icon
  i {
  position: absolute;
  top: 8px;
  right: 7px;
  font-weight: 500;
  font-size: 35px;
  cursor: pointer;
}
.header
  .menu
  > ul
  > li
  .sub-menu-search.search-mega-menu
  .search
  .search-field
  input {
  padding: 0 2.7rem;
  background-color: #ffffff;
  height: 50px;
  border: none;
}
.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;
  height: 50px;
}
.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 > 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 {
  display: none;
}

/*responsive*/
@media (max-width: 991px) {
  .header .item-left,
  .header .item-right {
    flex: 0 0 auto;
  }
  .v-center {
    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: center;
  }

  .header .menu {
    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 .menu-main .menu-item-top {
    flex-direction: column;
    margin: 0;
  }
  .menu .menu-main .menu-item-top > li {
    line-height: 1;
    display: block;
    padding: 0;
  }
  .menu .menu-main .menu-item-top > li > a {
    padding: 0 50px 0 15px;
    line-height: 50px;
    height: 50px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    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 .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 {
    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 > ul > li > a,
  .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    display: block;
  }
  .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;
  }
}

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

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #37423b;
  margin-top: 0px;
  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;
}

/*--------------------------------------------------------------
# News Profile Page
--------------------------------------------------------------*/
.feature_card_content{
    margin: 24px 0 0;
}
.event_card_primary{
    display: block;
    position: relative;
}
.event_card_figure{
    margin: 0;
    min-height: 1px;
}
.event_card_img{
    width: 100%;
    height: auto;
}
@media (min-width: 1024px) {
    .event_card_primary{
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 0 0 64px;
    }
    .event_card{
        margin: 0 0 32px;
    }
    .event_card_figure{
        width: 70%;
        max-width: 70%;
        margin-left: auto;
        margin-bottom: -32px;
    }
    .event_card_primary .event_card_img{
        max-width: 100%;
    }
    .event_card_primary .event_card_body{
        width: 36%;
        background-color: #ffffff;
        padding: 24px;
        position: absolute;
        left: 0;
        z-index: 2;
        margin-left: -24px;
    }
    .event_card_date{
        margin: 0 0 16px;
    }
}

@media (min-width: 768px) {

    .event_card_primary .event_card_title{
        font-size: 36px;
    }

    .event_card_title{
        font-size: 24px;
        line-height: 1.25;
    }
}

.event_card_date{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 8px;
}
.event_card_date h6{
    display: inline-block;
    padding: 4px 8px;
}
.event_card_primary .event_card_date h6{
    font-size: 12px;
    width: auto;
    background-color: #ffd100;
    color: #003B5C;
}
.event_card_primary .event_card_title{
    font-size: 24px;
}
.event_card_title{
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 8px;
}





.story_feature-card {
  min-height: 540px;
}
.story-featured {
  margin: 0;
  min-height: 1px;
}
.story-featured-img {
  height: 550px;
  width: 100%;
}
.credit-line {
  font-size: 11px;
  font-style: italic;
  padding: 4px 0;
  text-align: right;
}
.story-featured .story-featured-caption {
  padding: 0 60px;
  margin: 4px 0;
}
.story-featured-content {
  margin: 0 10px;
  padding: 24px 14px;
  position: relative;
  background-color: #fff;
}
@media (min-width: 1200px) {
  .story_feature-card {
    width: 100%;
    margin-bottom: 0;
  }
  .story_feature-card .story-featured {
    width: 70%;
    max-width: 70%;
    margin-left: auto;
  }
  .story-featured-img {
    width: 100%;
  }
  .story-featured .story-featured-caption {
    padding: 0 60px;
    margin: 4px 0;
  }
  .story-featured-content {
    max-width: 36%;
    position: absolute;
    transform: none;
    top: 110px;
  }
}
.article-card-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 8px;
}
.article-card-title a:hover {
  background-color: var(--primary_color);
  color: #fff;
}
.story_feature-card .story-featured-content .categories {
  background-color: #ffd100;
  padding: 5px 10px;
  display: inline-block;
  font-weight: 800;
}
@media (min-width: 768px) {
  .story-featured-content {
    padding: 15px 32px;
    margin: 0 15px;
  }
  .article-card-title {
    font-size: 20px;
  }
}
.news-header .news-header-content {
  padding: 20px 15px 15px;
  background-color: #fff;
  position: relative;
}

.news-header-item {
  background-color: #fff;
  margin-bottom: 2rem;
}

.news-header-item .news-header-item-content {
  padding: 0 0;
}
.news-header-item .news-header-item-content .categories {
  background-color: var(--primary_color);
  color: #fff;
  padding: 5px 10px;
  font-weight: 800;
}

.brur-news-section-title {
  padding-bottom: 40px;
}

.brur-news-section-title h2 {
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #37423b;
  border-left: 5px solid var(--secondary_color);
  padding-left: 1rem;
}

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

.brur-news-item .media {
  font-size: 16px;
  font-weight: 800;
}
.recent-news {
  background-color: #e9f3fd;
}

.more-news-content p {
  font-size: 12px;
  font-style: italic;
}
.more-news-content h5 {
  font-size: 14px;
  font-weight: 700;
}

/*----- Promo Card Section --------*/
.promo-card {
  padding: 24px;
  margin: 0 0 24px;
  width: 100%;
}
.promo-card_primary {
  background-color: var(--primary_color);
  color: #fff;
}
.promo-card-title {
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.subscribe-input {
  background-color: #0e76a3;
  height: 45px;
  color: #fff;
  border: 1px solid #0e76a3;
  border-radius: 4px 0 0 4px;
  display: inline-block;
  vertical-align: middle;
  padding: 8px 16px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.subscribe-input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #fff;
}
.subscribe-input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
  opacity: 1;
}
.subscribe-input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
  opacity: 1;
}
.subscribe-input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff;
}
  .promo-card .subscribe-input:focus {
  box-shadow: none;
  border: 1px dashed #fff;
  background-color: #0e76a3;
  color: #fff;
  }
  .promo-card .subscribe-btn {
  min-height: 45px;
  border-radius:0;
  background: #FFD100;
  color: #333333;
  font-weight:600;
  }
.promo-card-muted {
  background-color: #E5E5E5;
}
.media {
  display: flex;
  align-items: flex-start;
}
.media-body {
  flex: 1;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #37423b;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 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 .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;
}
