:root {
  --thm-font: "Roboto", sans-serif;
  --thm-gilroy-bold: "gilroy-bold";
  --thm-gilroy-heavy: "gilroy-heavy";
  --thm-base: #00B0F0;
  --thm-base-rgb: 0, 176, 240;
  --thm-primary: #F40008;
  --thm-primary-rgb: 244, 0, 8;
  --thm-black: #222222;
  --thm-black-rgb: 34, 34, 34;
  --thm-gray: #5e5858;
}

body {
  font-family: var(--thm-font);
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
}
button:focus {
  outline: none;
}
a:active,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
ul,
li {
  margin: 0;
  padding: 0;
}

::-webkit-input-placeholder {
  opacity: 1;
}

::-moz-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.block-title {
  margin-bottom: 82px;
  margin-top: -8px;
}
.block-title h4 {
  position: relative;
  font-size: 24px;
  color: var(--thm-primary);
  text-transform: uppercase;
  line-height: 34px;
  display: inline-block;
  font-family: var(--thm-gilroy-bold);
  margin-bottom: 18px;
}

.block-title h2 {
  font-size: 48px;
  color: var(--thm-base);
  text-transform: capitalize;
  line-height: 58px;
  font-family: var(--thm-gilroy-heavy);
  margin-bottom: 24px;
}
.block-title p.block-title-text {
  font-size: 20px;
  margin: 0;
  line-height: 30px;
}

.thm-btn {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  background-color: var(--thm-primary);
  font-size: 16px;
  color: #ffffff;
  padding: 10px 30px;
  padding-right: 10px;
  border-radius: 8px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  font-family: var(--thm-gilroy-bold);
}
.thm-btn i {
  background: #ffffff;
  color: var(--thm-primary);
  display: inline-block;
  padding: 8px 12px;
  margin-left: 26px;
  border-radius: 4px;
  transition: all 500ms ease;
}

.thm-btn:hover {
  background-color: var(--thm-black);
  color: #ffffff;
}
.thm-btn:hover i {
  border-radius: 50%;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--thm-gray);
}

.bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--thm-primary);
  color: #fff;
}

.bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--thm-black);
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
  background: var(--thm-primary);
  color: #fff;
  cursor: pointer;
}

/* datepicker */

.datepicker.dropdown-menu {
  min-width: 17rem;
}

.datepicker table {
  width: 100%;
}

.post-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.post-pagination a {
  border-radius: 50%;
  background-color: var(--thm-gray);
  color: #9ca3a9;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  transition: all 0.4s ease;
}

.post-pagination a:hover {
  background-color: var(--thm-primary);
  color: #fff;
}

.post-pagination a.active {
  background-color: var(--thm-base);
  color: #fff;
  cursor: auto;
}

.post-pagination a + a {
  margin-left: 15px;
}

/* owl dots style */

.thm__owl-carousel .owl-dots {
  margin-top: 20px;
}

.thm__owl-carousel .owl-dots .owl-dot {
  outline: none;
}

.thm__owl-carousel .owl-dots .owl-dot span {
  margin: 0 2.5px;
  padding: 0;
  width: 14px;
  height: 14px;
  background-color: var(--thm-gray);
  border-radius: 50%;
  transition: all 500ms ease;
}

.thm__owl-carousel .owl-dots .owl-dot:hover span,
.thm__owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--thm-primary);
}

.thm__owl-carousel.light-dots .owl-dots .owl-dot span {
  background-color: #fff;
}

.thm__owl-carousel.light-dots .owl-dots .owl-dot:hover span,
.thm__owl-carousel.light-dots .owl-dots .owl-dot.active span {
  background-color: var(--thm-primary);
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999999991;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: var(--thm-primary);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background: var(--thm-black);
}

.scroll-to-top:hover i {
  color: #fff;
}

/* Cursor Style */
.cursor {
  position: absolute;
  background-color: #fff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: scale(1);
  visibility: hidden;
}

.cursor {
  visibility: visible;
}

.cursor.active {
  opacity: 0.5;
  transform: scale(0);
}

.cursor.hovered {
  opacity: 0.08;
}

.cursor-follower {
  position: absolute;
  background-color: RGBA(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  visibility: hidden;
}

.cursor-follower {
  visibility: visible;
}

.cursor-follower.active {
  opacity: 0.7;
  transform: scale(1);
}

.cursor-follower.hovered {
  opacity: 0.08;
}

.cursor-follower.close-cursor:before {
  position: absolute;
  content: "";
  height: 25px;
  width: 2px;
  background: #fff;
  left: 48%;
  top: 12px;
  transform: rotate(-45deg);
  display: inline-block;
}

.cursor-follower.close-cursor:after {
  position: absolute;
  content: "";
  height: 25px;
  width: 2px;
  background: #fff;
  right: 48%;
  top: 12px;
  transform: rotate(45deg);
}

/*--------------------------------------------------------------
    Site Header Header one wrap
--------------------------------------------------------------*/
.site-header__header-one-wrap {
  position: relative;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999;
  transition: all 500ms ease;
}
.header_top_one {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--thm-base);
  padding: 13px 0;
}

.header_top_one_inner {
  position: relative;
  display: block;
}
.header_top_one_inner_left {
  position: relative;
  max-width: 510px;
  width: 100%;
}
.header_top_one_inner_left_text {
}
.header_top_one_inner_left_text p {
  font-size: 17px;
  color: #ffffff;
  line-height: 34px;
  margin: 0;
}
.header_top_one_inner_left_text span {
  padding-right: 25px;
}

.header_top_one_inner_left_text_carousel .owl-nav {
  position: absolute;
  top: -1px;
  bottom: 0;
  margin: 0;
  right: -140px;
  height: 36px;
  width: 72px;
  line-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 7px;
}
.header_top_one_inner_left_text_carousel .owl-nav .owl-next,
.header_top_one_inner_left_text_carousel .owl-nav .owl-prev {
  color: #ffffff !important;
  margin: 0;
  background: transparent !important;
}
.header_top_one_inner_left_text_carousel .owl-nav .owl-prev {
  margin-right: 12.5px;
}
.header_top_one_inner_left_text_carousel .owl-nav .owl-next {
  margin-left: 12.5px;
}

.header_top_one_inner_right {
  position: relative;
}
.header_top_one_inner_right_social {
  display: flex;
  align-items: center;
}
.header_top_one_inner_right_social a {
  color: #ffffff;
  transition: all 500ms ease;
}
.header_top_one_inner_right_social a + a {
  margin-left: 16px;
}
.header_top_one_inner_right_social a:hover {
  color: var(--thm-primary);
}

.main-nav__header-one {
  position: relative;
  display: block;
  background: var(--thm-primary);
}
.header-navigation.one.original {
  position: relative;
}

.main-nav__header-one .container-box {
  position: relative;
  display: block;
}

.main-nav__left {
  position: relative;
  display: block;
}

.main-nav__left .side-menu__toggler {
  position: relative;
  display: inline-block;
  margin-left: 30px;
  font-size: 20px;
  color: var(--thm-base);
}

.main-nav__left_one {
  position: relative;
  display: block;
}

.logo_one {
  position: relative;
  display: block;
  padding: 10px 0 0px 0;
}
.logo_one {
    position: relative;
    display: block;
    padding: 10px 0 0px 0;
}

.main-nav__main-navigation.one {
  position: relative;
  display: block;
}
.main-nav__main-navigation .main-nav__navigation-box {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
.main-nav__main-navigation .main-nav__navigation-box,
.main-nav__main-navigation .main-nav__navigation-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav__main-navigation .main-nav__navigation-box > li + li {
}
.main-nav__main-navigation .main-nav__navigation-box > li {display: flex;align-items: center;gap: 0.5rem;}
.main-nav__main-navigation .main-nav__navigation-box > li > a {
  z-index: 1;
  color: #fff;
  font-weight: 400;
  font-size: 1.08rem;
  text-decoration: none;
  padding: 0.4rem 0.4rem;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
  background: transparent;
  outline: none;
  white-space: nowrap;
  overflow: hidden;
  border-right: solid 2px #ffffff5c;
}

.main-nav__main-navigation .main-nav__navigation-box > li:hover > a,
.main-nav__main-navigation .main-nav__navigation-box > li.current > a,
.main-nav__main-navigation
  .main-nav__navigation-box
  > li.current-menu-item
  > a {
  color: #00B0F0;
}
.main-nav__main-navigation .main-nav__navigation-box > li:hover > a:before,
.main-nav__main-navigation .main-nav__navigation-box > li.current > a:before,
.main-nav__main-navigation
  .main-nav__navigation-box
  > li.current-menu-item
  > a:before {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav__main-navigation .main-nav__navigation-box > li.dropdown > a {
}

/* Dropdown menu */
.main-nav__main-navigation .dropdown-btn {
  display: none;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul {
  position: absolute;
  width: 330px;
  background-color: #fff;
  border-top: 0px solid #f7f6f6;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  transform-origin: top;
  visibility: hidden;
  opacity: 0;
  z-index: 991;
  transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li {
  position: relative;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li + li {
  border-top: 1px solid #f7f6f6;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li > a {
  display: block;
  color: var(--thm-black);
  font-size: 16px;
  word-break: break-all;
  padding-top: 2.5px;
  padding-bottom: 2.5px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: var(--thm-gilroy-bold);
  transition: all 500ms ease;
  text-transform: capitalize;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li:hover > a {
  color: var(--thm-primary);
}

/* Second level menu */
.main-nav__main-navigation .main-nav__navigation-box > li > ul {
  top: 100%;
  left: 0;
  transform: translateY(30px);

  visibility: hidden;
  opacity: 0;
}
.main-nav__main-navigation .main-nav__navigation-box > li:hover > ul {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

/* Third level menu */
.main-nav__main-navigation .main-nav__navigation-box > li > ul > li > ul {
  top: 0;
  left: 100%;
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}
.main-nav__main-navigation .main-nav__navigation-box > li > ul > li:hover > ul {
  transform: translateX(0px);
  visibility: visible;
  opacity: 1;
    background: #a00;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* After Third level menu */
.main-nav__main-navigation
  .main-nav__navigation-box
  > li
  > ul
  > li
  > ul
  > li
  ul {
  display: none;
}

.main-nav__right_one {
  position: relative;
  display: block;
}

.main-nav__right {
  position: relative;
  display: block;
}

.header_btn_1 {
    position: relative;
    display: block;
    float: right;
    padding: 30px 0;
    margin-left: 40px;
}

/* stricky Menu Css */
.stricked-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999999999;
  background-color: #cc0000;
  box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(-110%);
  transition: all 0.4s ease;
}
.stricked-menu.stricky-fixed {
  opacity: 1;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  transform: translateY(0%);
}

.stricked-menu .logo_one {
  padding: 5px 0;
}
.stricked-menu .main-nav__main-navigation .main-nav__navigation-box > li {
  position: relative;
  padding: 1px 0px 1px;
}
.stricked-menu .container-box {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.stricked-menu .header_btn_1 {
  padding: 17px 0 17px;
}

/*--------------------------------------------------------------
# Site Header Header Two Wrap
--------------------------------------------------------------*/
.site-header__header-one-wrap.two {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999;
  transition: all 500ms ease;
}
.main-nav__header-one.two {
  background: transparent;
}
.main-nav__header-one.two
  .main-nav__main-navigation
  .main-nav__navigation-box
  > li
  > a {
  color: #ffffff;
  text-transform: capitalize;
}
.main-nav__header-one.two
  .main-nav__main-navigation
  .main-nav__navigation-box
  > li
  > a:hover {
  color: #00B0F0;
}
.main-nav__header-one.two
  .main-nav__main-navigation
  .main-nav__navigation-box
  > li:hover
  > a,
.main-nav__header-one.two
  .main-nav__main-navigation
  .main-nav__navigation-box
  > li.current
  > a {
  color: #00B0F0;
}
.main-nav__header-one.two .header_btn_1 .thm-btn {
  background: transparent;
  border: 1px solid #ffffff;
}
.main-nav__header-one.two .header_btn_1 .thm-btn:hover {
  background: var(--thm-black);
  border: 1px solid var(--thm-black);
}
.main-nav__header-one.two .stricked-menu.stricky-fixed {
  background: #000000;
}

/*--------------------------------------------------------------
# Site Header Header three Wrap
--------------------------------------------------------------*/
.site-header__header-one-wrap.three {
}
.header_top_three {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 12.5px 0;
}
.header_top_three_inner {
}
.header_top_three_inner_left {
}
.header_top_three_inner_contact_info {
}
.header_top_three_inner_contact_info li {
  position: relative;
  display: inline-block;
}
.header_top_three_inner_contact_info li:before {
  position: absolute;
  top: 11px;
  left: -25px;
  bottom: 11px;
  content: "";
  background: #ffffff;
  width: 1px;
}
.header_top_three_inner_contact_info li:first-child:before {
  display: none;
}
.header_top_three_inner_contact_info li + li {
  margin-left: 50px;
}
.header_top_three_inner_contact_info li a {
  font-size: 16px;
  color: #ffffff;
  transition: all 500ms ease;
}
.header_top_three_inner_contact_info li a:hover {
  color: var(--thm-primary);
}
.header_top_three_inner_contact_info li span {
  padding-right: 15px;
}

.header_top_three_inner_right {
}
.header_top_three_inner_address {
  position: relative;
  float: left;
}
.header_top_three_inner_address:before {
  position: absolute;
  top: 11px;
  bottom: 11px;
  right: -25px;
  content: "";
  background: #ffffff;
  width: 1px;
}
.header_top_three_inner_address li {
  font-size: 16px;
  color: #ffffff;
  line-height: 35px;
}
.header_top_three_inner_address span {
  padding-right: 10px;
}
.header_top_three_inner_right_social {
  float: right;
  position: relative;
  padding-left: 50px;
  padding-bottom: 1px;
}
.header_top_three_inner_right_social-list {
  display: flex;
  align-items: center;
}
.header_top_three_inner_right_social a {
  color: #ffffff;
  transition: all 500ms ease;
}
.header_top_three_inner_right_social a + a {
  margin-left: 15px;
}
.header_top_three_inner_right_social a:hover {
  color: var(--thm-primary);
}

/* stricky Menu Css */
.header_three_wrap .stricked-menu {
  background-color: #ffffff;
}

@media (min-width: 1200px) {
  .main-nav__left .side-menu__toggler {
    display: none;
  }
  .main-nav__main-navigation {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
  }
  .mobile_menu_icon_two .side-menu__toggler {
    display: none;
  }

  .mobile_menu_icon_three .side-menu__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider-one {
  position: relative;
  display: block;
  background-color: #00B0F0;
  padding: 188px 0 197px;
  overflow: hidden;
}
.main-slider-one-shape-bg {
position: absolute;
    top: -188px;
    left: -100000px;
    bottom: -390px;
    background: #00000036;
    right: 20%;
    transform: skew(-15deg, 0deg);
    z-index: 1;
}
.main-slider-one-shape-round {
  height: 660px;
  width: 660px;
  background: #FF0000;
  position: absolute;
  bottom: 0;
  right: 340px;
  border-radius: 50%;
  -webkit-animation-name: shapeMover;
  animation-name: shapeMover;
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.main-slider-shape-dots {
  position: absolute;
    top: 123px;
    right: 8px;
  -webkit-animation-name: squareMover;
  animation-name: squareMover;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  perspective: 100px;
  transform-origin: center center;
}
.main-slider-small-round {
  position: absolute;
  bottom: 60px;
  right: 342px;
  height: 135px;
  width: 135px;
  background: rgb(0 176 240 / 32%);
  border-radius: 50%;
  z-index: 2;
  transform-origin: center bottom;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: banner3Shake;
  animation-name: banner3Shake;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.main-slider-img {
  position: absolute;
  bottom: 0;
  right: 30px;
}
.main-slider-img img {
}
.main-slider-one-left-content {
  position: relative;
  display: block;
  max-width: 535px;
  width: 100%;
}

.main_slider_one_left {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider-one-left-content h4 {
  font-size: 35px;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  color: #fed827;
  line-height: 45px;
}
.main-slider-one-left-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: 90px;
  line-height: 108px;
  font-family: var(--thm-gilroy-heavy);
  margin-top: 12px;
  margin-bottom: 28px;
}

.main-slider-one-left-content p {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 30px;
  line-height: 42px;
  color: #ffffff;
}

.main-slider-one-left-content .thm-btn {
  background: var(--thm-base);
  margin-top: 55px;
}
.main-slider-one-left-content .thm-btn i {
  color: var(--thm-base);
}
.main-slider-one-left-content .thm-btn:hover {
  background: var(--thm-black);
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  display: block;
  padding: 264px 0 290px;
}
.main-slider-two-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-slider-two-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(245, 56, 31, 0.85);
}
.main-slider-two-shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 760px;
}
.main-slider-two-img {
  position: absolute;
  bottom: 0;
  right: 145px;
}
.main-slider-two-img img {
}
.main-slider-two-left-content {
}
.main-slider-two-left-content {
  position: relative;
  display: block;
  max-width: 533px;
  width: 100%;
}
.main-slider-two-left-content h4 {
  font-size: 35px;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  color: #fed827;
  line-height: 45px;
}
.main-slider-two-left-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: 90px;
  line-height: 108px;
  font-family: var(--thm-gilroy-heavy);
  margin-top: 12px;
  margin-bottom: 28px;
}

.main-slider-two-left-content p {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 30px;
  line-height: 42px;
  color: #ffffff;
}

.main-slider-two-left-content .thm-btn {
  background: var(--thm-base);
  margin-top: 55px;
}
.main-slider-two-left-content .thm-btn i {
  color: var(--thm-base);
}
.main-slider-two-left-content .thm-btn:hover {
  background: var(--thm-black);
}

/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
  overflow: hidden;
  position: relative;
}

.main-slider-three .swiper-slide {
  position: relative;
  background-color: var(--thm-primary);
}

.main-slider-three .image-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1538px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.main-slider-three .swiper-slide-inner {
  position: relative;
  display: block;
  padding-top: 145px;
  padding-bottom: 240px;
}
.swiper-slide-inner-text {
  position: relative;
  display: block;
  max-width: 655px;
  width: 100%;
  padding-left: 70px;
  padding-top: 70px;
}
.swiper-slide-inner-text:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../images/main-slider/main-slider-three-inner-text-bg.webp);
  width: 584px;
  height: 600px;
}
.main-slider-three h2 {
  margin: 0;
  margin-bottom: 57px;
  color: #ffffff;
  font-size: 90px;
  line-height: 108px;
  font-family: var(--thm-gilroy-heavy);
  text-transform: capitalize;
  opacity: 0;
  visibility: hidden;
  transform: translateY(90px);
  transition-delay: 1000ms;
  transition: transform 2000ms ease, opacity 2000ms ease;
}

.main-slider-three .thm-btn {
  opacity: 0;
  transform: translateY(100px);
  transition-delay: 2500ms;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
    background 500ms ease;
}
.main-slider-three .thm-btn:hover {
  background: var(--thm-base);
  color: #ffffff;
}

.main-slider-three .swiper-slide-active .thm-btn,
.main-slider-three .swiper-slide-active h2 {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
}

#main-slider-pagination {
  z-index: 10;
  bottom: auto;
  top: 50%;
  left: 5%;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  transform: translateY(-50%);
}

#main-slider-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  opacity: 0.5;
  background-color: #fff;
  position: relative;
}
#main-slider-pagination .swiper-pagination-bullet:before {
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  content: "";
  border-radius: 50%;
  border: 2px solid #fff;
  opacity: 0;
}
#main-slider-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-top: 25px;
}

#main-slider-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
#main-slider-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  opacity: 1;
}
.main-slider-three-featured {
  position: absolute;
  top: 50%;
  right: 90px;
  transform: translateY(-50%);
  max-width: 370px;
  width: 100%;
  z-index: 2;
}
.main-slider-three-featured-single {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 7px;
  padding-right: 25px;
}
.main-slider-three-featured-single + .main-slider-three-featured-single {
  margin-top: 20px;
}
.main-slider-three-featured-img {
}
.main-slider-three-featured-img img {
  border-radius: 7px;
}
.main-slider-three-featured-text {
  margin-left: 25px;
}
.main-slider-three-featured-text h5 {
  font-size: 16px;
  color: var(--thm-primary);
  font-family: var(--thm-gilroy-bold);
  line-height: 26px;
}
.main-slider-three-featured-text p {
  font-size: 18px;
  font-family: var(--thm-gilroy-bold);
  line-height: 24px;
  margin: 0;
  margin-bottom: 8px;
}
.main-slider-three-featured-text p a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.main-slider-three-featured-text p a:hover {
  color: var(--thm-primary);
}
.main-slider-three-featured-text span {
  font-size: 16px;
  color: var(--thm-gray);
  line-height: 26px;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/

.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  transform: scale(1, 0);
  transform-origin: bottom center;
  transition: transform 0.7s ease;
}

.search-popup.active {
  transform-origin: top center;
  transform: scale(1, 1);
}

.search-popup__overlay {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  opacity: 0.7;
  cursor: none;
}

.search-popup__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-popup__form {
  position: relative;
  z-index: 9991;
  width: 100%;
  padding: 15px;
  max-width: 600px;
  position: relative;
}

.search-popup__form input {
  background-color: transparent;
  border: none;
  outline: none;
  width: 100%;
  height: 60px;
  color: var(--thm-black);
  font-size: 18px;
  background-color: white;
  padding-left: 30px;
}

.search-popup__form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--thm-black);
}

.search-popup__form input::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--thm-black);
}

.search-popup__form input:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--thm-black);
}

.search-popup__form input:-moz-placeholder {
  /* Firefox 18- */
  color: var(--thm-black);
}

.search-popup__form button[type="submit"] {
  border: none;
  outline: none;
  width: 60px;
  height: 60px;
  color: #fff;
  background-color: var(--thm-black);
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}
.search-popup__form button[type="submit"]:hover {
  background-color: var(--thm-black);
  color: var(--thm-base);
}

/*--------------------------------------------------------------
# MobileNav
--------------------------------------------------------------*/

.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: transform 500ms ease;
  z-index: 9999999;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  transform: scale(1, 1);
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-black);
  opacity: 0.8;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--thm-base);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}
.mobile-nav__content .header_btn_1 {
  margin-left: 0;
}
.mobile-nav__content .thm-btn {
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

.mobile-nav__content .main-nav__navigation-box,
.mobile-nav__content .main-nav__navigation-box ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
  float: none !important;
}

.mobile-nav__content .main-nav__navigation-box ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-nav__navigation-box ul li a {
  padding-left: 1em;
}

.mobile-nav__content .main-nav__navigation-box li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-nav__navigation-box li a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #fff;
  font-size: 15px;
  font-family: var(--thm-font);
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-nav__navigation-box li a.open {
  color: var(--thm-primary);
}

.mobile-nav__content .main-nav__navigation-box li a button {
  width: 30px;
  height: 30px;
  background-color: var(--thm-primary);
  border: none;
  outline: none;
  color: #fff;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-nav__navigation-box li a button.open {
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--thm-black);
}

.mobile-nav__content .main-nav__navigation-box li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  transform: translate(0, 0);
}

.mobile-nav__content .main-nav__navigation-box li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mobile-nav__language {
  display: flex;
  align-items: center;
}

.mobile-nav__language img {
  border-radius: 50%;
  margin-right: 10px;
}

.mobile-nav__language
  .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 70px;
}

.mobile-nav__language .bootstrap-select > .dropdown-toggle {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border: none;
  outline: none;
  color: #fff;
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: #fff;
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-left: 10px;
}

.mobile-nav__social a:hover {
  color: var(--thm-primary);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--thm-primary);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--thm-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  margin-right: 10px;
  color: #fff;
}
.mobile-nav__contact li > i::before {
  font-size: inherit;
}

@media (max-width: 575px) {
  .side-menu__block-inner {
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .side-menu__block-inner {
    max-width: 400px;
  }
}

@media (max-width: 375px) {
  .side-menu__block-inner {
    max-width: 300px;
  }
}

@media (max-width: 575px) {
  .side-menu__top,
  .side-menu__content,
  .mobile-nav__container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .side-menu__sep {
    margin-top: 40px;
    margin-bottom: 40px;
    width: calc(100% - 100px);
  }
}

@media (max-width: 480px) {
  .side-menu__top,
  .side-menu__content,
  .mobile-nav__container {
    padding-left: 25px;
    padding-right: 25px;
  }

  .side-menu__sep {
    width: calc(100% - 50px);
  }

  .side-menu__social {
    margin-top: 40px;
  }

  .side-menu__social a {
    width: 45px;
    height: 45px;
  }
}

/*--------------------------------------------------------------
# Top Section One
--------------------------------------------------------------*/
.top_section_one {
  position: relative;
  display: block;
  padding: 145px 0 145px;
}
.top_section_one_shape_1 {
  position: absolute;
  top: -145px;
  left: -100000px;
  background: var(--thm-base);
  bottom: -145px;
  right: 48%;
  transform: skew(-15deg, 0deg);
}
.top_section_one_shape_2 {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 422px;
  width: 121px;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.donation_taker {
  position: relative;
  display: block;
}
.donation_taker_content_inner {
  position: relative;
  display: block;
  background: #00B0F0;
  border-radius: 15px;
  padding: 40px 20px 40px;
  z-index: 10;
}

.donation_taker_content {
}
.donation_taker_content h3 {
  font-size: 24px;
  color: var(--thm-gray);
  font-family: var(--thm-gilroy-bold);
  line-height: 36px;
  text-transform: uppercase;
}
.donation_taker_content h2 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 54px;
  margin-bottom: 21px;
}
.donation_taker_content p {
  font-size: 20px;
  color: #ffffff;
  margin: 0;
  line-height: 30px;
}
.donation_taker_input_box {
  position: relative;
  display: block;
  margin: 42px 0 20px;
}

.donation_taker_input_box
  .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  height: 54px;
}
.donation_taker_input_box .bootstrap-select > .dropdown-toggle {
  width: 100%;
  height: 54px;
  line-height: 54px;
  border: 0px solid #f5f0e9;
  padding: 0 20px;
  outline: none;
  border-radius: 6px;
  background: #ffffff;
  color: #999999;
  font-size: 20px;
}
.donation_taker_input_box .bootstrap-select .dropdown-toggle:before {
  position: absolute;
  top: 0;
  right: 20px;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--thm-black);
  bottom: 0;
  z-index: 2;
  cursor: pointer;
}
.donation_taker_input_box .dropdown-toggle::after {
  display: none;
}
.donation_taker_btn {
}
.donation_taker_btn .thm-btn {
}

.top_section_one_preface {
}
.top_section_one_preface_title {
}
.top_section_one_preface_title h4 {
  font-size: 20px;
  color: var(--thm-primary);
  text-transform: uppercase;
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
}
.top_section_one_preface_title h2 {
  font-size: 40px;
  color: var(--thm-base);
  font-family: "gilroy-heavy";
  line-height: 50px;
  margin-bottom: 19px;
}
.top_section_one_preface_text {
}
.top_section_one_preface_text .text-1 {
  margin: 0;
}
.top_section_one_preface_text .text-2 {
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.top_section_one_preface_text .text-3 {
  margin: 0;
}
.top_section_one_preface_btn {
  padding-top: 25px;
}
.top_section_one_preface_btn .thm-btn {
  background: transparent;
  border: 1px solid var(--thm-base);
  color: var(--thm-black);
}
.top_section_one_preface_btn .thm-btn i {
  background: var(--thm-primary);
  color: #ffffff;
}
.top_section_one_preface_btn .thm-btn:hover {
  background: var(--thm-base);
  color: #ffffff;
}

.upcomming-events {
}
.upcomming-events .upcomming-events_title {
  font-size: 20px;
  color: var(--thm-primary);
  text-transform: uppercase;
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
}
.upcomming-events-list {
  padding-top: 18px;
}
.upcomming-events-list li {
  position: relative;
  display: block;
  padding-left: 95px;
  border-bottom: 1px solid #ebeafd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.upcomming-events-list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.upcomming-events-list li .events_date {
  height: 72px;
  width: 72px;
  background: var(--thm-base);
  text-align: center;
  position: absolute;
  top: 9px;
  left: 0;
  border-radius: 3px;
}
.upcomming-events-list li .events_date h4 {
  font-size: 30px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 19px;
  padding-top: 15px;
}
.upcomming-events-list li .events_date span {
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  font-size: 16px;
  text-transform: uppercase;
}
.upcomming-events-list li .events_content {
}
.upcomming-events-list li .events_content p {
  font-size: 20px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-bold);
  margin: 0;
  line-height: 30px;
}
.upcomming-events-list li .events_content p a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.upcomming-events-list li .events_content p a:hover {
  color: var(--thm-primary);
}
.upcomming-events-list li .events_content .time-location {
  padding-top: 15px;
}
.upcomming-events-list li .events_content .time-location li {
  padding: 0;
  display: inline-block;
  border-bottom: 0;
  margin: 0;
}
.upcomming-events-list li .events_content .time-location li + li {
  margin-left: 20px;
}
.upcomming-events-list li .events_content .time-location li i {
  color: #00B0F0;
  padding-right: 8px;
}
.upcomming-events_btn {
  padding-top: 5px;
}
.upcomming-events_btn a {
    font-size: 15px;
    color: var(--thm-black);
    font-family: var(--thm-gilroy-bold);
    border-bottom: 2px solid var(--thm-base);
    display: inline-block;
    transition: all 500ms ease;
}
.upcomming-events_btn i {
  padding-left: 15px;
  color: var(--thm-primary);
  font-size: 18px;
}
.upcomming-events_btn a:hover {
  color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Acoucement
--------------------------------------------------------------*/
.anoucement {
  position: relative;
  display: block;
  padding: 80px 0 145px;
}
.anoucement_inner {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding-top: 61px;
  padding-left: 95px;
  padding-bottom: 60px;
  border-radius: 24px;
}
.anoucement_inner .block-title {
  margin-bottom: 32px;
}
.anoucement_inner .block-title h4 {
  color: #dfdfdf;
  margin-bottom: 4px;
}
.anoucement_inner .block-title h2 {
  color: #ffffff;
}
.anoucement_inner .block-title p {
  color: #ffffff;
}
.anoucement_btn {
}
.anoucement_btn .thm-btn {
  background: var(--thm-base);
}
.anoucement_btn .thm-btn:hover {
  background: var(--thm-black);
}
.anoucement_btn .thm-btn i {
  color: var(--thm-black);
}
.anoucement_inner_megaphone {
  position: absolute;
  top: -25px;
  right: -65px;
}
.anoucement_inner_megaphone img {
  -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about_one {
  position: relative;
  display: block;
  padding-bottom: 165px;
}
.about_one_left {
}
.about_one_left .block-title {
  margin-bottom: 27px;
}
.about_one_left .block-title h4 {
  margin-bottom: 10px;
}
.about_one_left .block-title h2 {
}
.about_one_left .block-title .block-title-text {
}
.about_one_left_text {
}
.about_one_left_text p {
}
.about_one_btn {
}
.about_one_btn .thm-btn {
}

.about_one_right {
  position: relative;
  display: block;
  margin-right: 170px;
}
.about_one_right_img {
  position: relative;
  display: block;
  z-index: 2;
}
.about_one_right_img:before {
  position: absolute;
  top: 35px;
  right: -88px;
  content: "";
  background-image: url(../images/shapes/about-one-shape-1.webp);
  background-repeat: no-repeat;
  width: 53px;
  height: 54px;
  webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}
.about_one_right_img:after {
  position: absolute;
  bottom: -90px;
  right: 110px;
  content: "";
  background-image: url(../images/shapes/about-one-shape-2.webp);
  background-repeat: no-repeat;
  width: 39px;
  height: 40px;
  webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}
.about_one_right_img img {
  width: 100%;
  border-radius: 12px;
}
.about_one_right_last_img {
  position: absolute;
  top: 130px;
  right: -330px;
  z-index: -1;
}
.about_one_right_last_img img {
  width: 100%;
  border-radius: 12px;
}

/*--------------------------------------------------------------
# Mission And Vission
--------------------------------------------------------------*/
.mission_and_vission {
  position: relative;
  display: block;
  padding: 145px 0 245px;
  background: var(--thm-base);
}
.mission_and_vission .block-title {
}
.mission_and_vission .block-title h4 {
  color: #fed827;
}
.mission_and_vission .block-title h2 {
  color: #ffffff;
}
.mission_and_vission .block-title-text {
  color: #cacbd8;
}
.mission_and_vission_single {
  position: relative;
  display: block;
  border: 1px solid #7073b8;
  border-radius: 25px;
  margin-bottom: 30px;
}
.mission_and_vission_img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.mission_and_vission_img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(34, 34, 34, 0.5);
  transform: scale(0);
  z-index: 1;
  transition: transform 500ms ease, opacity 500ms ease;
}
.mission_and_vission_single:hover .mission_and_vission_img:before {
  transform: scale(1);
}
.mission_and_vission_img img {
  width: 100%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  transform: scale(1);
  transition: transform 500ms ease, opacity 500ms ease;
}
.mission_and_vission_single:hover .mission_and_vission_img img {
  transform: scale(1.05);
}
.mission_and_vission_content {
  position: relative;
  display: block;
  padding: 34px 30px 36px;
}
.mission_and_vission_content h4 {
  font-size: 18px;
  color: #fed827;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 26px;
}
.mission_and_vission_content h3 {
  font-size: 30px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 40px;
  margin-bottom: 10px;
}
.mission_and_vission_content h3 a {
  color: #ffffff;
  transition: all 500ms ease;
}
.mission_and_vission_content h3 a:hover {
  color: var(--thm-primary);
}
.mission_and_vission_content p {
  color: #f5f5f8;
  margin: 0;
}
.mission_and_vission_arrow {
  padding-top: 17px;
}
.mission_and_vission_arrow span {
  color: #ffffff;
  font-size: 25px;
}

/*--------------------------------------------------------------
# Mission And Vission
--------------------------------------------------------------*/
.volunteer_one {
  position: relative;
  display: block;
  margin-top: -130px;
}
.volunteer_one_inner {
  position: relative;
  display: flex;
  background: #00B0F0;
  border-radius: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 58px 72px;
}
.volunteer_one_inner_left {
}
.volunteer_one_inner_left h4 {
  font-size: 20px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 30px;
}
.volunteer_one_inner_left h2 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 58px;
  margin-top: 6px;
  margin-bottom: 19px;
}
.volunteer_one_inner_left p {
  font-size: 20px;
  color: #ffffff;
  margin: 0;
  line-height: 30px;
}
.volunteer_one_inner_right {
}
.volunteer_one_inner_right .thm-btn {
  padding: 15px 50px;
  padding-right: 15px;
}
.volunteer_one_inner_right .thm-btn i {
  margin-left: 50px;
  padding: 13px 17px;
}

/*--------------------------------------------------------------
# Candidate One
--------------------------------------------------------------*/
.candidate_one {
  position: relative;
  display: block;
  padding: 145px 0 108px;
}
.candidate_one .block-title {
  margin-bottom: 68px;
}
.candidate_one_left {
  position: relative;
  display: block;
}
.candidate_one_img {
  position: relative;
  display: block;
}
.candidate_one_img img {
  border-radius: 50px;
  width: 100%;
}
.candidate_one_video_box {
  position: absolute;
  display: block;
  background-image: url(../images/shapes/candidate_one_video-shape-1.webp);
  background-repeat: no-repeat;
  width: 96px;
  height: 98px;
  bottom: -2px;
  right: 55px;
  transition: all 500ms ease;
}
.candidate_one_video_box:hover {
  background-image: url(../images/shapes/candidate_one_video-shape-1-hover.webp);
}
.candidate_one_video__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #ffffff;
  transition: all 500ms ease;
}
.candidate_one_video__btn:hover {
  color: var(--thm-primary);
}

.candidate_one_right {
  position: relative;
  display: block;
  margin-left: 100px;
}
.candidate_one_right_title {
  padding-bottom: 30px;
}
.candidate_one_right_title h2 {
  font-size: 60px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-heavy);
  line-height: 72px;
  margin-bottom: 20px;
}
.candidate_one_right_title p {
  font-size: 20px;
  margin: 0;
  line-height: 30px;
}
.candidate_one_right_text {
}
.candidate_one_right_text p {
  margin: 0;
  line-height: 30px;
}
.candidate_one_signature {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.candidate_one_signature_img {
}
.candidate_one_signature_img img {
}
.candidate_one_signature_text {
  margin-left: 45px;
  position: relative;
  top: -10px;
}
.candidate_one_signature_text p {
  font-size: 30px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-heavy);
  margin: 0;
  line-height: 40px;
}

/*--------------------------------------------------------------
# Donation One
--------------------------------------------------------------*/
.donation_one {
  position: relative;
  display: block;
  padding: 147px 0 180px;
  background-repeat: no-repeat;
  background-size: cover;
}
.donation_one:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(245, 36, 31, 0.88);
}
.donation_one_inner {
  position: relative;
  display: block;
  text-align: center;
}
.donation_one_inner_title {
}
.donation_one_inner_title h5 {
  font-size: 24px;
  color: #fed827;
  font-family: var(--thm-gilroy-bold);
  line-height: 34px;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.donation_one_inner_title h2 {
  font-size: 72px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 82px;
  margin-bottom: 6px;
}
.donation_one_inner_title h3 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 62px;
}
.donation_one_inner_text {
  padding: 25px 0 60px;
}
.donation_one_inner_text p {
  font-size: 30px;
  color: #ffffff;
  margin: 0;
  line-height: 40px;
}
.donation_one_btn {
}
.donation_one_btn .thm-btn {
  padding: 15px 50px;
  padding-right: 15px;
  background: var(--thm-base);
  transition: all 500ms ease;
}
.donation_one_btn .thm-btn:hover {
  background: var(--thm-black);
}
.donation_one_btn .thm-btn i {
  margin-left: 50px;
  padding: 13px 17px;
  color: var(--thm-base);
}

/*--------------------------------------------------------------
# Testimonials One
--------------------------------------------------------------*/
.testimonials_one {
  position: relative;
  display: block;
  padding: 145px 0 145px;
}
.testimonials_one .block-title {
  margin-bottom: 50px;
}
.testimonials_one .block-title h4 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 8px;
}
.testimonials_one .block-title h2 {
  font-size: 60px;
  line-height: 70px;
}
.testimonials_one-carousel {
}
.testimonials_one_carousel_single {
  position: relative;
  display: block;
  padding-left: 100px;
}
.testimonials_one_text {
}
.testimonials_one_text p {
  font-size: 30px;
  line-height: 40px;
  margin: 0;
}
.testimonials_one_author {
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.testimonials_one_author_img {
  position: relative;
  display: block;
  width: 72px;
}
.testimonials_one_author_img img {
  width: 100%;
  border-radius: 50%;
}
.testimonials_one_author_content {
  margin-left: 30px;
}
.testimonials_one_author_content h4 {
  font-size: 24px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-heavy);
}
.testimonials_one_author_content span {
  font-size: 18px;
  color: var(--thm-gray);
  margin-left: 20px;
  font-family: var(--thm-font);
  font-weight: 400;
}
.testimonials_one_quote_icon {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(180deg);
}
.testimonials_one_quote_icon span {
  font-size: 55px;
  color: #f5b302;
}

.testimonials_one_right {
  position: relative;
  display: block;
  margin-left: 100px;
}
.testimonials_one_right_img {
}
.testimonials_one_right_img img {
  width: 100%;
}

/*--------------------------------------------------------------
# Shop One
--------------------------------------------------------------*/
.shop_one {
  position: relative;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 145px 0 107px;
  z-index: 1;
}
.shop_one:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(12, 15, 71, 0.9);
  z-index: -1;
}
.shop_one .block-title {
}
.shop_one .block-title h4 {
  color: #ffffff;
}
.shop_one .block-title h2 {
  color: #ffffff;
}
.shop_one .block-title .block-title-text {
  color: #ffffff;
}
.shop_one_single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
  overflow: hidden;
}
.shop_one_img {
  position: relative;
  display: block;
  overflow: hidden;
}
.shop_one_img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(15, 15, 71, 0.5);
  transform: translate3d(0px, 100%, 0px);
  transition: all 1000ms ease;
}
.shop_one_single:hover .shop_one_img:before {
  transform: translate3d(0px, 0px, 0px);
}
.shop_one_img img {
  width: 100%;
  border-radius: 15px;
}
.shop_one_content {
  margin-top: 27px;
}
.shop_one_content h4 {
  font-size: 24px;
  color: #ffffff;
  line-height: 34px;
  font-family: var(--thm-gilroy-bold);
  margin-bottom: 3px;
}
.shop_one_content p {
  font-size: 30px;
  color: var(--thm-base);
  line-height: 40px;
  font-family: var(--thm-gilroy-bold);
  margin: 0;
}

/*--------------------------------------------------------------
# News And Subscription
--------------------------------------------------------------*/
.news_and_subscription {
  position: relative;
  display: block;
  padding: 145px 0 290px;
}
.news_and_subscription_shape_1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 479px;
  width: 137px;
  background-repeat: no-repeat;
}
:root {
  --thm-font: "Roboto", sans-serif;
  --thm-gilroy-bold: "gilroy-bold";
  --thm-gilroy-heavy: "gilroy-heavy";
  --thm-base: #00B0F0;
  --thm-base-rgb: 0, 176, 240;
  --thm-primary: #F40008;
  --thm-primary-rgb: 244, 0, 8;
  --thm-black: #222222;
  --thm-black-rgb: 34, 34, 34;
  --thm-gray: #5e5858;
}

body {
  font-family: var(--thm-font);
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
}
button:focus {
  outline: none;
}
a:active,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
ul,
li {
  margin: 0;
  padding: 0;
}

::-webkit-input-placeholder {
  opacity: 1;
}

::-moz-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.block-title {
  margin-bottom: 82px;
  margin-top: -8px;
}
.block-title h4 {
  position: relative;
  font-size: 24px;
  color: var(--thm-primary);
  text-transform: uppercase;
  line-height: 34px;
  display: inline-block;
  font-family: var(--thm-gilroy-bold);
  margin-bottom: 18px;
}

.block-title h2 {
  font-size: 48px;
  color: var(--thm-base);
  text-transform: capitalize;
  line-height: 58px;
  font-family: var(--thm-gilroy-heavy);
  margin-bottom: 24px;
}
.block-title p.block-title-text {
  font-size: 20px;
  margin: 0;
  line-height: 30px;
}

.thm-btn {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  background-color: var(--thm-primary);
  font-size: 16px;
  color: #ffffff;
  padding: 10px 30px;
  padding-right: 10px;
  border-radius: 8px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  font-family: var(--thm-gilroy-bold);
}
.thm-btn i {
  background: #ffffff;
  color: var(--thm-primary);
  display: inline-block;
  padding: 8px 12px;
  margin-left: 26px;
  border-radius: 4px;
  transition: all 500ms ease;
}

.thm-btn:hover {
  background-color: var(--thm-black);
  color: #ffffff;
}
.thm-btn:hover i {
  border-radius: 50%;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--thm-gray);
}

.bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--thm-primary);
  color: #fff;
}

.bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--thm-black);
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
  background: var(--thm-primary);
  color: #fff;
  cursor: pointer;
}

/* datepicker */

.datepicker.dropdown-menu {
  min-width: 17rem;
}

.datepicker table {
  width: 100%;
}

.post-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.post-pagination a {
  border-radius: 50%;
  background-color: var(--thm-gray);
  color: #9ca3a9;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  transition: all 0.4s ease;
}

.post-pagination a:hover {
  background-color: var(--thm-primary);
  color: #fff;
}

.post-pagination a.active {
  background-color: var(--thm-base);
  color: #fff;
  cursor: auto;
}

.post-pagination a + a {
  margin-left: 15px;
}

/* owl dots style */

.thm__owl-carousel .owl-dots {
  margin-top: 20px;
}

.thm__owl-carousel .owl-dots .owl-dot {
  outline: none;
}

.thm__owl-carousel .owl-dots .owl-dot span {
  margin: 0 2.5px;
  padding: 0;
  width: 14px;
  height: 14px;
  background-color: var(--thm-gray);
  border-radius: 50%;
  transition: all 500ms ease;
}

.thm__owl-carousel .owl-dots .owl-dot:hover span,
.thm__owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--thm-primary);
}

.thm__owl-carousel.light-dots .owl-dots .owl-dot span {
  background-color: #fff;
}

.thm__owl-carousel.light-dots .owl-dots .owl-dot:hover span,
.thm__owl-carousel.light-dots .owl-dots .owl-dot.active span {
  background-color: var(--thm-primary);
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999999991;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: var(--thm-primary);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background: var(--thm-black);
}

.scroll-to-top:hover i {
  color: #fff;
}

/* Cursor Style */
.cursor {
  position: absolute;
  background-color: #fff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: scale(1);
  visibility: hidden;
}

.cursor {
  visibility: visible;
}

.cursor.active {
  opacity: 0.5;
  transform: scale(0);
}

.cursor.hovered {
  opacity: 0.08;
}

.cursor-follower {
  position: absolute;
  background-color: RGBA(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  visibility: hidden;
}

.cursor-follower {
  visibility: visible;
}

.cursor-follower.active {
  opacity: 0.7;
  transform: scale(1);
}

.cursor-follower.hovered {
  opacity: 0.08;
}

.cursor-follower.close-cursor:before {
  position: absolute;
  content: "";
  height: 25px;
  width: 2px;
  background: #fff;
  left: 48%;
  top: 12px;
  transform: rotate(-45deg);
  display: inline-block;
}

.cursor-follower.close-cursor:after {
  position: absolute;
  content: "";
  height: 25px;
  width: 2px;
  background: #fff;
  right: 48%;
  top: 12px;
  transform: rotate(45deg);
}

/*--------------------------------------------------------------
    Site Header Header one wrap
--------------------------------------------------------------*/
.site-header__header-one-wrap {
  position: relative;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999;
  transition: all 500ms ease;
}
.header_top_one {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--thm-base);
  padding: 13px 0;
}

.header_top_one_inner {
  position: relative;
  display: block;
}
.header_top_one_inner_left {
  position: relative;
  max-width: 510px;
  width: 100%;
}
.header_top_one_inner_left_text {
}
.header_top_one_inner_left_text p {
  font-size: 17px;
  color: #ffffff;
  line-height: 34px;
  margin: 0;
}
.header_top_one_inner_left_text span {
  padding-right: 25px;
}

.header_top_one_inner_left_text_carousel .owl-nav {
  position: absolute;
  top: -1px;
  bottom: 0;
  margin: 0;
  right: -140px;
  height: 36px;
  width: 72px;
  line-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 7px;
}
.header_top_one_inner_left_text_carousel .owl-nav .owl-next,
.header_top_one_inner_left_text_carousel .owl-nav .owl-prev {
  color: #ffffff !important;
  margin: 0;
  background: transparent !important;
}
.header_top_one_inner_left_text_carousel .owl-nav .owl-prev {
  margin-right: 12.5px;
}
.header_top_one_inner_left_text_carousel .owl-nav .owl-next {
  margin-left: 12.5px;
}

.header_top_one_inner_right {
  position: relative;
}
.header_top_one_inner_right_social {
  display: flex;
  align-items: center;
}
.header_top_one_inner_right_social a {
  color: #ffffff;
  transition: all 500ms ease;
}
.header_top_one_inner_right_social a + a {
  margin-left: 16px;
}
.header_top_one_inner_right_social a:hover {
  color: var(--thm-primary);
}

.main-nav__header-one {
  position: relative;
  display: block;
  background: var(--thm-primary);
}
.header-navigation.one.original {
  position: relative;
}

.main-nav__header-one .container-box {
  position: relative;
  display: block;
}

.main-nav__left {
  position: relative;
  display: block;
}

.main-nav__left .side-menu__toggler {
  position: relative;
  display: inline-block;
  margin-left: 30px;
  font-size: 20px;
  color: var(--thm-base);
}

.main-nav__left_one {
  position: relative;
  display: block;
}

.logo_one {
  position: relative;
  display: block;
  padding: 10px 0 0px 0;
}
.logo_one {
    position: relative;
    display: block;
    padding: 10px 0 0px 0;
}

.main-nav__main-navigation.one {
  position: relative;
  display: block;
}
.main-nav__main-navigation .main-nav__navigation-box {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
.main-nav__main-navigation .main-nav__navigation-box,
.main-nav__main-navigation .main-nav__navigation-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav__main-navigation .main-nav__navigation-box > li + li {
}
.main-nav__main-navigation .main-nav__navigation-box > li {display: flex;align-items: center;gap: 0.5rem;}
.main-nav__main-navigation .main-nav__navigation-box > li > a {
  z-index: 1;
  color: #fff;
  font-weight: 400;
  font-size: 1.08rem;
  text-decoration: none;
  padding: 0.4rem 0.4rem;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
  background: transparent;
  outline: none;
  white-space: nowrap;
  overflow: hidden;
  border-right: solid 2px #ffffff5c;
}

.main-nav__main-navigation .main-nav__navigation-box > li:hover > a,
.main-nav__main-navigation .main-nav__navigation-box > li.current > a,
.main-nav__main-navigation
  .main-nav__navigation-box
  > li.current-menu-item
  > a {
  color: #00B0F0;
}
.main-nav__main-navigation .main-nav__navigation-box > li:hover > a:before,
.main-nav__main-navigation .main-nav__navigation-box > li.current > a:before,
.main-nav__main-navigation
  .main-nav__navigation-box
  > li.current-menu-item
  > a:before {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav__main-navigation .main-nav__navigation-box > li.dropdown > a {
}

/* Dropdown menu */
.main-nav__main-navigation .dropdown-btn {
  display: none;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul {
  position: absolute;
  width: 330px;
  background-color: #fff;
  border-top: 0px solid #f7f6f6;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  transform-origin: top;
  visibility: hidden;
  opacity: 0;
  z-index: 991;
  transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li {
  position: relative;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li + li {
  border-top: 1px solid #f7f6f6;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li > a {
  display: block;
  color: var(--thm-black);
  font-size: 16px;
  word-break: break-all;
  padding-top: 2.5px;
  padding-bottom: 2.5px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: var(--thm-gilroy-bold);
  transition: all 500ms ease;
  text-transform: capitalize;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li:hover > a {
  color: var(--thm-primary);
}

/* Second level menu */
.main-nav__main-navigation .main-nav__navigation-box > li > ul {
  top: 100%;
  left: 0;
  transform: translateY(30px);

  visibility: hidden;
  opacity: 0;
}
.main-nav__main-navigation .main-nav__navigation-box > li:hover > ul {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

/* Third level menu */
.main-nav__main-navigation .main-nav__navigation-box > li > ul > li > ul {
  top: 0;
  left: 100%;
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}
.main-nav__main-navigation .main-nav__navigation-box > li > ul > li:hover > ul {
  transform: translateX(0px);
  visibility: visible;
  opacity: 1;
    background: #a00;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* After Third level menu */
.main-nav__main-navigation
  .main-nav__navigation-box
  > li
  > ul
  > li
  > ul
  > li
  ul {
  display: none;
}

.main-nav__right_one {
  position: relative;
  display: block;
}

.main-nav__right {
  position: relative;
  display: block;
}

.header_btn_1 {
    position: relative;
    display: block;
    float: right;
    padding: 30px 0;
    margin-left: 40px;
}

/* stricky Menu Css */
.stricked-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999999999;
  background-color: #cc0000;
  box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(-110%);
  transition: all 0.4s ease;
}
.stricked-menu.stricky-fixed {
  opacity: 1;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  transform: translateY(0%);
}

.stricked-menu .logo_one {
  padding: 5px 0;
}
.stricked-menu .main-nav__main-navigation .main-nav__navigation-box > li {
  position: relative;
  padding: 1px 0px 1px;
}
.stricked-menu .container-box {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.stricked-menu .header_btn_1 {
  padding: 17px 0 17px;
}

/*--------------------------------------------------------------
# Site Header Header Two Wrap
--------------------------------------------------------------*/
.site-header__header-one-wrap.two {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999;
  transition: all 500ms ease;
}
.main-nav__header-one.two {
  background: transparent;
}
.main-nav__header-one.two
  .main-nav__main-navigation
  .main-nav__navigation-box
  > li
  > a {
  color: #ffffff;
  text-transform: capitalize;
}
.main-nav__header-one.two
  .main-nav__main-navigation
  .main-nav__navigation-box
  > li
  > a:hover {
  color: #00B0F0;
}
.main-nav__header-one.two
  .main-nav__main-navigation
  .main-nav__navigation-box
  > li:hover
  > a,
.main-nav__header-one.two
  .main-nav__main-navigation
  .main-nav__navigation-box
  > li.current
  > a {
  color: #00B0F0;
}
.main-nav__header-one.two .header_btn_1 .thm-btn {
  background: transparent;
  border: 1px solid #ffffff;
}
.main-nav__header-one.two .header_btn_1 .thm-btn:hover {
  background: var(--thm-black);
  border: 1px solid var(--thm-black);
}
.main-nav__header-one.two .stricked-menu.stricky-fixed {
  background: #000000;
}

/*--------------------------------------------------------------
# Site Header Header three Wrap
--------------------------------------------------------------*/
.site-header__header-one-wrap.three {
}
.header_top_three {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 12.5px 0;
}
.header_top_three_inner {
}
.header_top_three_inner_left {
}
.header_top_three_inner_contact_info {
}
.header_top_three_inner_contact_info li {
  position: relative;
  display: inline-block;
}
.header_top_three_inner_contact_info li:before {
  position: absolute;
  top: 11px;
  left: -25px;
  bottom: 11px;
  content: "";
  background: #ffffff;
  width: 1px;
}
.header_top_three_inner_contact_info li:first-child:before {
  display: none;
}
.header_top_three_inner_contact_info li + li {
  margin-left: 50px;
}
.header_top_three_inner_contact_info li a {
  font-size: 16px;
  color: #ffffff;
  transition: all 500ms ease;
}
.header_top_three_inner_contact_info li a:hover {
  color: var(--thm-primary);
}
.header_top_three_inner_contact_info li span {
  padding-right: 15px;
}

.header_top_three_inner_right {
}
.header_top_three_inner_address {
  position: relative;
  float: left;
}
.header_top_three_inner_address:before {
  position: absolute;
  top: 11px;
  bottom: 11px;
  right: -25px;
  content: "";
  background: #ffffff;
  width: 1px;
}
.header_top_three_inner_address li {
  font-size: 16px;
  color: #ffffff;
  line-height: 35px;
}
.header_top_three_inner_address span {
  padding-right: 10px;
}
.header_top_three_inner_right_social {
  float: right;
  position: relative;
  padding-left: 50px;
  padding-bottom: 1px;
}
.header_top_three_inner_right_social-list {
  display: flex;
  align-items: center;
}
.header_top_three_inner_right_social a {
  color: #ffffff;
  transition: all 500ms ease;
}
.header_top_three_inner_right_social a + a {
  margin-left: 15px;
}
.header_top_three_inner_right_social a:hover {
  color: var(--thm-primary);
}

/* stricky Menu Css */
.header_three_wrap .stricked-menu {
  background-color: #ffffff;
}

@media (min-width: 1200px) {
  .main-nav__left .side-menu__toggler {
    display: none;
  }
  .main-nav__main-navigation {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
  }
  .mobile_menu_icon_two .side-menu__toggler {
    display: none;
  }

  .mobile_menu_icon_three .side-menu__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider-one {
  position: relative;
  display: block;
  background-color: #00B0F0;
  padding: 188px 0 197px;
  overflow: hidden;
}
.main-slider-one-shape-bg {
position: absolute;
    top: -188px;
    left: -100000px;
    bottom: -390px;
    background: #00000036;
    right: 20%;
    transform: skew(-15deg, 0deg);
    z-index: 1;
}
.main-slider-one-shape-round {
  height: 660px;
  width: 660px;
  background: #FF0000;
  position: absolute;
  bottom: 0;
  right: 340px;
  border-radius: 50%;
  -webkit-animation-name: shapeMover;
  animation-name: shapeMover;
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.main-slider-shape-dots {
  position: absolute;
    top: 123px;
    right: 8px;
  -webkit-animation-name: squareMover;
  animation-name: squareMover;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  perspective: 100px;
  transform-origin: center center;
}
.main-slider-small-round {
  position: absolute;
  bottom: 60px;
  right: 342px;
  height: 135px;
  width: 135px;
  background: rgb(0 176 240 / 32%);
  border-radius: 50%;
  z-index: 2;
  transform-origin: center bottom;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: banner3Shake;
  animation-name: banner3Shake;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.main-slider-img {
  position: absolute;
  bottom: 0;
  right: 30px;
}
.main-slider-img img {
}
.main-slider-one-left-content {
  position: relative;
  display: block;
  max-width: 535px;
  width: 100%;
}

.main_slider_one_left {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider-one-left-content h4 {
  font-size: 35px;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  color: #fed827;
  line-height: 45px;
}
.main-slider-one-left-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: 90px;
  line-height: 108px;
  font-family: var(--thm-gilroy-heavy);
  margin-top: 12px;
  margin-bottom: 28px;
}

.main-slider-one-left-content p {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 30px;
  line-height: 42px;
  color: #ffffff;
}

.main-slider-one-left-content .thm-btn {
  background: var(--thm-base);
  margin-top: 55px;
}
.main-slider-one-left-content .thm-btn i {
  color: var(--thm-base);
}
.main-slider-one-left-content .thm-btn:hover {
  background: var(--thm-black);
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  display: block;
  padding: 264px 0 290px;
}
.main-slider-two-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-slider-two-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(245, 56, 31, 0.85);
}
.main-slider-two-shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 760px;
}
.main-slider-two-img {
  position: absolute;
  bottom: 0;
  right: 145px;
}
.main-slider-two-img img {
}
.main-slider-two-left-content {
}
.main-slider-two-left-content {
  position: relative;
  display: block;
  max-width: 533px;
  width: 100%;
}
.main-slider-two-left-content h4 {
  font-size: 35px;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  color: #fed827;
  line-height: 45px;
}
.main-slider-two-left-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: 90px;
  line-height: 108px;
  font-family: var(--thm-gilroy-heavy);
  margin-top: 12px;
  margin-bottom: 28px;
}

.main-slider-two-left-content p {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 30px;
  line-height: 42px;
  color: #ffffff;
}

.main-slider-two-left-content .thm-btn {
  background: var(--thm-base);
  margin-top: 55px;
}
.main-slider-two-left-content .thm-btn i {
  color: var(--thm-base);
}
.main-slider-two-left-content .thm-btn:hover {
  background: var(--thm-black);
}

/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
  overflow: hidden;
  position: relative;
}

.main-slider-three .swiper-slide {
  position: relative;
  background-color: var(--thm-primary);
}

.main-slider-three .image-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1538px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.main-slider-three .swiper-slide-inner {
  position: relative;
  display: block;
  padding-top: 145px;
  padding-bottom: 240px;
}
.swiper-slide-inner-text {
  position: relative;
  display: block;
  max-width: 655px;
  width: 100%;
  padding-left: 70px;
  padding-top: 70px;
}
.swiper-slide-inner-text:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../images/main-slider/main-slider-three-inner-text-bg.webp);
  width: 584px;
  height: 600px;
}
.main-slider-three h2 {
  margin: 0;
  margin-bottom: 57px;
  color: #ffffff;
  font-size: 90px;
  line-height: 108px;
  font-family: var(--thm-gilroy-heavy);
  text-transform: capitalize;
  opacity: 0;
  visibility: hidden;
  transform: translateY(90px);
  transition-delay: 1000ms;
  transition: transform 2000ms ease, opacity 2000ms ease;
}

.main-slider-three .thm-btn {
  opacity: 0;
  transform: translateY(100px);
  transition-delay: 2500ms;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
    background 500ms ease;
}
.main-slider-three .thm-btn:hover {
  background: var(--thm-base);
  color: #ffffff;
}

.main-slider-three .swiper-slide-active .thm-btn,
.main-slider-three .swiper-slide-active h2 {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
}

#main-slider-pagination {
  z-index: 10;
  bottom: auto;
  top: 50%;
  left: 5%;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  transform: translateY(-50%);
}

#main-slider-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  opacity: 0.5;
  background-color: #fff;
  position: relative;
}
#main-slider-pagination .swiper-pagination-bullet:before {
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  content: "";
  border-radius: 50%;
  border: 2px solid #fff;
  opacity: 0;
}
#main-slider-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-top: 25px;
}

#main-slider-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
#main-slider-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  opacity: 1;
}
.main-slider-three-featured {
  position: absolute;
  top: 50%;
  right: 90px;
  transform: translateY(-50%);
  max-width: 370px;
  width: 100%;
  z-index: 2;
}
.main-slider-three-featured-single {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 7px;
  padding-right: 25px;
}
.main-slider-three-featured-single + .main-slider-three-featured-single {
  margin-top: 20px;
}
.main-slider-three-featured-img {
}
.main-slider-three-featured-img img {
  border-radius: 7px;
}
.main-slider-three-featured-text {
  margin-left: 25px;
}
.main-slider-three-featured-text h5 {
  font-size: 16px;
  color: var(--thm-primary);
  font-family: var(--thm-gilroy-bold);
  line-height: 26px;
}
.main-slider-three-featured-text p {
  font-size: 18px;
  font-family: var(--thm-gilroy-bold);
  line-height: 24px;
  margin: 0;
  margin-bottom: 8px;
}
.main-slider-three-featured-text p a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.main-slider-three-featured-text p a:hover {
  color: var(--thm-primary);
}
.main-slider-three-featured-text span {
  font-size: 16px;
  color: var(--thm-gray);
  line-height: 26px;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/

.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  transform: scale(1, 0);
  transform-origin: bottom center;
  transition: transform 0.7s ease;
}

.search-popup.active {
  transform-origin: top center;
  transform: scale(1, 1);
}

.search-popup__overlay {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  opacity: 0.7;
  cursor: none;
}

.search-popup__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-popup__form {
  position: relative;
  z-index: 9991;
  width: 100%;
  padding: 15px;
  max-width: 600px;
  position: relative;
}

.search-popup__form input {
  background-color: transparent;
  border: none;
  outline: none;
  width: 100%;
  height: 60px;
  color: var(--thm-black);
  font-size: 18px;
  background-color: white;
  padding-left: 30px;
}

.search-popup__form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--thm-black);
}

.search-popup__form input::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--thm-black);
}

.search-popup__form input:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--thm-black);
}

.search-popup__form input:-moz-placeholder {
  /* Firefox 18- */
  color: var(--thm-black);
}

.search-popup__form button[type="submit"] {
  border: none;
  outline: none;
  width: 60px;
  height: 60px;
  color: #fff;
  background-color: var(--thm-black);
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}
.search-popup__form button[type="submit"]:hover {
  background-color: var(--thm-black);
  color: var(--thm-base);
}

/*--------------------------------------------------------------
# MobileNav
--------------------------------------------------------------*/

.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: transform 500ms ease;
  z-index: 9999999;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  transform: scale(1, 1);
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-black);
  opacity: 0.8;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--thm-base);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}
.mobile-nav__content .header_btn_1 {
  margin-left: 0;
}
.mobile-nav__content .thm-btn {
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

.mobile-nav__content .main-nav__navigation-box,
.mobile-nav__content .main-nav__navigation-box ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
  float: none !important;
}

.mobile-nav__content .main-nav__navigation-box ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-nav__navigation-box ul li a {
  padding-left: 1em;
}

.mobile-nav__content .main-nav__navigation-box li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-nav__navigation-box li a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #fff;
  font-size: 15px;
  font-family: var(--thm-font);
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-nav__navigation-box li a.open {
  color: var(--thm-primary);
}

.mobile-nav__content .main-nav__navigation-box li a button {
  width: 30px;
  height: 30px;
  background-color: var(--thm-primary);
  border: none;
  outline: none;
  color: #fff;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-nav__navigation-box li a button.open {
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--thm-black);
}

.mobile-nav__content .main-nav__navigation-box li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  transform: translate(0, 0);
}

.mobile-nav__content .main-nav__navigation-box li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__contact .main-nav__right_one {
  display: none;
}
.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mobile-nav__language {
  display: flex;
  align-items: center;
}

.mobile-nav__language img {
  border-radius: 50%;
  margin-right: 10px;
}

.mobile-nav__language
  .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 70px;
}

.mobile-nav__language .bootstrap-select > .dropdown-toggle {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border: none;
  outline: none;
  color: #fff;
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: #fff;
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-left: 10px;
}

.mobile-nav__social a:hover {
  color: var(--thm-primary);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--thm-primary);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--thm-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  margin-right: 10px;
  color: #fff;
}
.mobile-nav__contact li > i::before {
  font-size: inherit;
}

@media (max-width: 575px) {
  .side-menu__block-inner {
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .side-menu__block-inner {
    max-width: 400px;
  }
}

@media (max-width: 375px) {
  .side-menu__block-inner {
    max-width: 300px;
  }
}

@media (max-width: 575px) {
  .side-menu__top,
  .side-menu__content,
  .mobile-nav__container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .side-menu__sep {
    margin-top: 40px;
    margin-bottom: 40px;
    width: calc(100% - 100px);
  }
}

@media (max-width: 480px) {
  .side-menu__top,
  .side-menu__content,
  .mobile-nav__container {
    padding-left: 25px;
    padding-right: 25px;
  }

  .side-menu__sep {
    width: calc(100% - 50px);
  }

  .side-menu__social {
    margin-top: 40px;
  }

  .side-menu__social a {
    width: 45px;
    height: 45px;
  }
}

/*--------------------------------------------------------------
# Top Section One
--------------------------------------------------------------*/
.top_section_one {
  position: relative;
  display: block;
  padding: 145px 0 145px;
}
.top_section_one_shape_1 {
  position: absolute;
  top: -145px;
  left: -100000px;
  background: var(--thm-base);
  bottom: -145px;
  right: 48%;
  transform: skew(-15deg, 0deg);
}
.top_section_one_shape_2 {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 422px;
  width: 121px;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.donation_taker {
  position: relative;
  display: block;
}
.donation_taker_content_inner {
  position: relative;
  display: block;
  background: #00B0F0;
  border-radius: 15px;
  padding: 40px 20px 40px;
  z-index: 10;
}

.donation_taker_content {
}
.donation_taker_content h3 {
  font-size: 24px;
  color: var(--thm-gray);
  font-family: var(--thm-gilroy-bold);
  line-height: 36px;
  text-transform: uppercase;
}
.donation_taker_content h2 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 54px;
  margin-bottom: 21px;
}
.donation_taker_content p {
  font-size: 20px;
  color: #ffffff;
  margin: 0;
  line-height: 30px;
}
.donation_taker_input_box {
  position: relative;
  display: block;
  margin: 42px 0 20px;
}

.donation_taker_input_box
  .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  height: 54px;
}
.donation_taker_input_box .bootstrap-select > .dropdown-toggle {
  width: 100%;
  height: 54px;
  line-height: 54px;
  border: 0px solid #f5f0e9;
  padding: 0 20px;
  outline: none;
  border-radius: 6px;
  background: #ffffff;
  color: #999999;
  font-size: 20px;
}
.donation_taker_input_box .bootstrap-select .dropdown-toggle:before {
  position: absolute;
  top: 0;
  right: 20px;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--thm-black);
  bottom: 0;
  z-index: 2;
  cursor: pointer;
}
.donation_taker_input_box .dropdown-toggle::after {
  display: none;
}
.donation_taker_btn {
}
.donation_taker_btn .thm-btn {
}

.top_section_one_preface {
}
.top_section_one_preface_title {
}
.top_section_one_preface_title h4 {
  font-size: 20px;
  color: var(--thm-primary);
  text-transform: uppercase;
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
}
.top_section_one_preface_title h2 {
  font-size: 40px;
  color: var(--thm-base);
  font-family: "gilroy-heavy";
  line-height: 50px;
  margin-bottom: 19px;
}
.top_section_one_preface_text {
}
.top_section_one_preface_text .text-1 {
  margin: 0;
}
.top_section_one_preface_text .text-2 {
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.top_section_one_preface_text .text-3 {
  margin: 0;
}
.top_section_one_preface_btn {
  padding-top: 25px;
}
.top_section_one_preface_btn .thm-btn {
  background: transparent;
  border: 1px solid var(--thm-base);
  color: var(--thm-black);
}
.top_section_one_preface_btn .thm-btn i {
  background: var(--thm-primary);
  color: #ffffff;
}
.top_section_one_preface_btn .thm-btn:hover {
  background: var(--thm-base);
  color: #ffffff;
}

.upcomming-events {
}
.upcomming-events .upcomming-events_title {
  font-size: 20px;
  color: var(--thm-primary);
  text-transform: uppercase;
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
}
.upcomming-events-list {
  padding-top: 18px;
}
.upcomming-events-list li {
  position: relative;
  display: block;
  padding-left: 95px;
  border-bottom: 1px solid #ebeafd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.upcomming-events-list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.upcomming-events-list li .events_date {
  height: 72px;
  width: 72px;
  background: var(--thm-base);
  text-align: center;
  position: absolute;
  top: 9px;
  left: 0;
  border-radius: 3px;
}
.upcomming-events-list li .events_date h4 {
  font-size: 30px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 19px;
  padding-top: 15px;
}
.upcomming-events-list li .events_date span {
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  font-size: 16px;
  text-transform: uppercase;
}
.upcomming-events-list li .events_content {
}
.upcomming-events-list li .events_content p {
  font-size: 20px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-bold);
  margin: 0;
  line-height: 30px;
}
.upcomming-events-list li .events_content p a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.upcomming-events-list li .events_content p a:hover {
  color: var(--thm-primary);
}
.upcomming-events-list li .events_content .time-location {
  padding-top: 15px;
}
.upcomming-events-list li .events_content .time-location li {
  padding: 0;
  display: inline-block;
  border-bottom: 0;
  margin: 0;
}
.upcomming-events-list li .events_content .time-location li + li {
  margin-left: 20px;
}
.upcomming-events-list li .events_content .time-location li i {
  color: #00B0F0;
  padding-right: 8px;
}
.upcomming-events_btn {
  padding-top: 5px;
}
.upcomming-events_btn a {
    font-size: 15px;
    color: var(--thm-black);
    font-family: var(--thm-gilroy-bold);
    border-bottom: 2px solid var(--thm-base);
    display: inline-block;
    transition: all 500ms ease;
}
.upcomming-events_btn i {
  padding-left: 15px;
  color: var(--thm-primary);
  font-size: 18px;
}
.upcomming-events_btn a:hover {
  color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Acoucement
--------------------------------------------------------------*/
.anoucement {
  position: relative;
  display: block;
  padding: 80px 0 145px;
}
.anoucement_inner {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding-top: 61px;
  padding-left: 95px;
  padding-bottom: 60px;
  border-radius: 24px;
}
.anoucement_inner .block-title {
  margin-bottom: 32px;
}
.anoucement_inner .block-title h4 {
  color: #dfdfdf;
  margin-bottom: 4px;
}
.anoucement_inner .block-title h2 {
  color: #ffffff;
}
.anoucement_inner .block-title p {
  color: #ffffff;
}
.anoucement_btn {
}
.anoucement_btn .thm-btn {
  background: var(--thm-base);
}
.anoucement_btn .thm-btn:hover {
  background: var(--thm-black);
}
.anoucement_btn .thm-btn i {
  color: var(--thm-black);
}
.anoucement_inner_megaphone {
  position: absolute;
  top: -25px;
  right: -65px;
}
.anoucement_inner_megaphone img {
  -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about_one {
  position: relative;
  display: block;
  padding-bottom: 165px;
}
.about_one_left {
}
.about_one_left .block-title {
  margin-bottom: 27px;
}
.about_one_left .block-title h4 {
  margin-bottom: 10px;
}
.about_one_left .block-title h2 {
}
.about_one_left .block-title .block-title-text {
}
.about_one_left_text {
}
.about_one_left_text p {
}
.about_one_btn {
}
.about_one_btn .thm-btn {
}

.about_one_right {
  position: relative;
  display: block;
  margin-right: 170px;
}
.about_one_right_img {
  position: relative;
  display: block;
  z-index: 2;
}
.about_one_right_img:before {
  position: absolute;
  top: 35px;
  right: -88px;
  content: "";
  background-image: url(../images/shapes/about-one-shape-1.webp);
  background-repeat: no-repeat;
  width: 53px;
  height: 54px;
  webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}
.about_one_right_img:after {
  position: absolute;
  bottom: -90px;
  right: 110px;
  content: "";
  background-image: url(../images/shapes/about-one-shape-2.webp);
  background-repeat: no-repeat;
  width: 39px;
  height: 40px;
  webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}
.about_one_right_img img {
  width: 100%;
  border-radius: 12px;
}
.about_one_right_last_img {
  position: absolute;
  top: 130px;
  right: -330px;
  z-index: -1;
}
.about_one_right_last_img img {
  width: 100%;
  border-radius: 12px;
}

/*--------------------------------------------------------------
# Mission And Vission
--------------------------------------------------------------*/
.mission_and_vission {
  position: relative;
  display: block;
  padding: 145px 0 245px;
  background: var(--thm-base);
}
.mission_and_vission .block-title {
}
.mission_and_vission .block-title h4 {
  color: #fed827;
}
.mission_and_vission .block-title h2 {
  color: #ffffff;
}
.mission_and_vission .block-title-text {
  color: #cacbd8;
}
.mission_and_vission_single {
  position: relative;
  display: block;
  border: 1px solid #7073b8;
  border-radius: 25px;
  margin-bottom: 30px;
}
.mission_and_vission_img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.mission_and_vission_img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(34, 34, 34, 0.5);
  transform: scale(0);
  z-index: 1;
  transition: transform 500ms ease, opacity 500ms ease;
}
.mission_and_vission_single:hover .mission_and_vission_img:before {
  transform: scale(1);
}
.mission_and_vission_img img {
  width: 100%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  transform: scale(1);
  transition: transform 500ms ease, opacity 500ms ease;
}
.mission_and_vission_single:hover .mission_and_vission_img img {
  transform: scale(1.05);
}
.mission_and_vission_content {
  position: relative;
  display: block;
  padding: 34px 30px 36px;
}
.mission_and_vission_content h4 {
  font-size: 18px;
  color: #fed827;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 26px;
}
.mission_and_vission_content h3 {
  font-size: 30px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 40px;
  margin-bottom: 10px;
}
.mission_and_vission_content h3 a {
  color: #ffffff;
  transition: all 500ms ease;
}
.mission_and_vission_content h3 a:hover {
  color: var(--thm-primary);
}
.mission_and_vission_content p {
  color: #f5f5f8;
  margin: 0;
}
.mission_and_vission_arrow {
  padding-top: 17px;
}
.mission_and_vission_arrow span {
  color: #ffffff;
  font-size: 25px;
}

/*--------------------------------------------------------------
# Mission And Vission
--------------------------------------------------------------*/
.volunteer_one {
  position: relative;
  display: block;
  margin-top: -130px;
}
.volunteer_one_inner {
  position: relative;
  display: flex;
  background: #00B0F0;
  border-radius: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 58px 72px;
}
.volunteer_one_inner_left {
}
.volunteer_one_inner_left h4 {
  font-size: 20px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 30px;
}
.volunteer_one_inner_left h2 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 58px;
  margin-top: 6px;
  margin-bottom: 19px;
}
.volunteer_one_inner_left p {
  font-size: 20px;
  color: #ffffff;
  margin: 0;
  line-height: 30px;
}
.volunteer_one_inner_right {
}
.volunteer_one_inner_right .thm-btn {
  padding: 15px 50px;
  padding-right: 15px;
}
.volunteer_one_inner_right .thm-btn i {
  margin-left: 50px;
  padding: 13px 17px;
}

/*--------------------------------------------------------------
# Candidate One
--------------------------------------------------------------*/
.candidate_one {
  position: relative;
  display: block;
  padding: 145px 0 108px;
}
.candidate_one .block-title {
  margin-bottom: 68px;
}
.candidate_one_left {
  position: relative;
  display: block;
}
.candidate_one_img {
  position: relative;
  display: block;
}
.candidate_one_img img {
  border-radius: 50px;
  width: 100%;
}
.candidate_one_video_box {
  position: absolute;
  display: block;
  background-image: url(../images/shapes/candidate_one_video-shape-1.webp);
  background-repeat: no-repeat;
  width: 96px;
  height: 98px;
  bottom: -2px;
  right: 55px;
  transition: all 500ms ease;
}
.candidate_one_video_box:hover {
  background-image: url(../images/shapes/candidate_one_video-shape-1-hover.webp);
}
.candidate_one_video__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #ffffff;
  transition: all 500ms ease;
}
.candidate_one_video__btn:hover {
  color: var(--thm-primary);
}

.candidate_one_right {
  position: relative;
  display: block;
  margin-left: 100px;
}
.candidate_one_right_title {
  padding-bottom: 30px;
}
.candidate_one_right_title h2 {
  font-size: 60px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-heavy);
  line-height: 72px;
  margin-bottom: 20px;
}
.candidate_one_right_title p {
  font-size: 20px;
  margin: 0;
  line-height: 30px;
}
.candidate_one_right_text {
}
.candidate_one_right_text p {
  margin: 0;
  line-height: 30px;
}
.candidate_one_signature {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.candidate_one_signature_img {
}
.candidate_one_signature_img img {
}
.candidate_one_signature_text {
  margin-left: 45px;
  position: relative;
  top: -10px;
}
.candidate_one_signature_text p {
  font-size: 30px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-heavy);
  margin: 0;
  line-height: 40px;
}

/*--------------------------------------------------------------
# Donation One
--------------------------------------------------------------*/
.donation_one {
  position: relative;
  display: block;
  padding: 147px 0 180px;
  background-repeat: no-repeat;
  background-size: cover;
}
.donation_one:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(245, 36, 31, 0.88);
}
.donation_one_inner {
  position: relative;
  display: block;
  text-align: center;
}
.donation_one_inner_title {
}
.donation_one_inner_title h5 {
  font-size: 24px;
  color: #fed827;
  font-family: var(--thm-gilroy-bold);
  line-height: 34px;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.donation_one_inner_title h2 {
  font-size: 72px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 82px;
  margin-bottom: 6px;
}
.donation_one_inner_title h3 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 62px;
}
.donation_one_inner_text {
  padding: 25px 0 60px;
}
.donation_one_inner_text p {
  font-size: 30px;
  color: #ffffff;
  margin: 0;
  line-height: 40px;
}
.donation_one_btn {
}
.donation_one_btn .thm-btn {
  padding: 15px 50px;
  padding-right: 15px;
  background: var(--thm-base);
  transition: all 500ms ease;
}
.donation_one_btn .thm-btn:hover {
  background: var(--thm-black);
}
.donation_one_btn .thm-btn i {
  margin-left: 50px;
  padding: 13px 17px;
  color: var(--thm-base);
}

/*--------------------------------------------------------------
# Testimonials One
--------------------------------------------------------------*/
.testimonials_one {
  position: relative;
  display: block;
  padding: 145px 0 145px;
}
.testimonials_one .block-title {
  margin-bottom: 50px;
}
.testimonials_one .block-title h4 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 8px;
}
.testimonials_one .block-title h2 {
  font-size: 60px;
  line-height: 70px;
}
.testimonials_one-carousel {
}
.testimonials_one_carousel_single {
  position: relative;
  display: block;
  padding-left: 100px;
}
.testimonials_one_text {
}
.testimonials_one_text p {
  font-size: 30px;
  line-height: 40px;
  margin: 0;
}
.testimonials_one_author {
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.testimonials_one_author_img {
  position: relative;
  display: block;
  width: 72px;
}
.testimonials_one_author_img img {
  width: 100%;
  border-radius: 50%;
}
.testimonials_one_author_content {
  margin-left: 30px;
}
.testimonials_one_author_content h4 {
  font-size: 24px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-heavy);
}
.testimonials_one_author_content span {
  font-size: 18px;
  color: var(--thm-gray);
  margin-left: 20px;
  font-family: var(--thm-font);
  font-weight: 400;
}
.testimonials_one_quote_icon {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(180deg);
}
.testimonials_one_quote_icon span {
  font-size: 55px;
  color: #f5b302;
}

.testimonials_one_right {
  position: relative;
  display: block;
  margin-left: 100px;
}
.testimonials_one_right_img {
}
.testimonials_one_right_img img {
  width: 100%;
}

/*--------------------------------------------------------------
# Shop One
--------------------------------------------------------------*/
.shop_one {
  position: relative;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 145px 0 107px;
  z-index: 1;
}
.shop_one:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(12, 15, 71, 0.9);
  z-index: -1;
}
.shop_one .block-title {
}
.shop_one .block-title h4 {
  color: #ffffff;
}
.shop_one .block-title h2 {
  color: #ffffff;
}
.shop_one .block-title .block-title-text {
  color: #ffffff;
}
.shop_one_single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
  overflow: hidden;
}
.shop_one_img {
  position: relative;
  display: block;
  overflow: hidden;
}
.shop_one_img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(15, 15, 71, 0.5);
  transform: translate3d(0px, 100%, 0px);
  transition: all 1000ms ease;
}
.shop_one_single:hover .shop_one_img:before {
  transform: translate3d(0px, 0px, 0px);
}
.shop_one_img img {
  width: 100%;
  border-radius: 15px;
}
.shop_one_content {
  margin-top: 27px;
}
.shop_one_content h4 {
  font-size: 24px;
  color: #ffffff;
  line-height: 34px;
  font-family: var(--thm-gilroy-bold);
  margin-bottom: 3px;
}
.shop_one_content p {
  font-size: 30px;
  color: var(--thm-base);
  line-height: 40px;
  font-family: var(--thm-gilroy-bold);
  margin: 0;
}

/*--------------------------------------------------------------
# News And Subscription
--------------------------------------------------------------*/
.news_and_subscription {
  position: relative;
  display: block;
  padding: 145px 0 290px;
}
.news_and_subscription_shape_1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 479px;
  width: 137px;
  background-repeat: no-repeat;
}
.news_and_subscription_shape_2 {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 758px;
  width: 217px;
  background-repeat: no-repeat;
}
.subscription {
  position: relative;
  display: block;
  background-repeat: no-repeat;
  border-radius: 15px;
  padding: 60px;
  background-size: cover;
  z-index: 1;
}
.subscription:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(245, 56, 31, 0.87);
  border-radius: 15px;
  z-index: -1;
}
.subscription .block-title {
  margin-bottom: 142px;
}
.subscription .block-title h4 {
  color: #fed827;
  margin-bottom: 0;
}
.subscription .block-title h2 {
  color: #ffffff;
  margin-bottom: 19px;
}
.subscription .block-title .block-title-text {
  color: #ffffff;
}

.Subscription_input_box {
  position: relative;
  display: block;
}
.Subscription_input_box input {
}
.Subscription_input_box input[type="Email"] {
  height: 60px;
  background: #ffffff;
  width: 100%;
  padding-left: 30px;
  padding-right: 80px;
  border-radius: 6px;
  font-size: 20px;
  color: #999999;
  border: none;
}
.Subscription_input_box input[type="email"]:focus {
  outline: none;
}
.Subscription_input_box input[type="email"]::-webkit-input-placeholder {
  color: #999999;
}
.Subscription_input_box input[type="email"]:-moz-placeholder {
  color: #999999;
}
.Subscription_input_box input[type="email"]::-moz-placeholder {
  color: #999999;
}
.Subscription_input_box input[type="email"]:-ms-input-placeholder {
  color: #999999;
}
.Subscription_input_box .button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  background: var(--thm-base);
  border-radius: 6px;
  font-size: 20px;
  color: #ffffff;
  border: none;
}

.news {
  position: relative;
  display: block;
  margin-left: 100px;
}
.news .block-title {
  margin-bottom: 38px;
}
.news .block-title h4 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 8px;
}
.news .block-title h2 {
  font-size: 60px;
  line-height: 70px;
}
.news_all {
  position: relative;
  float: left;
}
.news_all li {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 13px;
  margin-bottom: 23px;
}
.news_all li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 27px;
}
.news_all li .news_all_content {
}
.news_all li .news_all_content h5 {
  font-size: 18px;
  color: var(--thm-primary);
  font-family: var(--thm-gilroy-bold);
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.news_all li .news_all_content p {
  font-size: 24px;
  font-family: var(--thm-gilroy-bold);
  line-height: 34px;
  margin: 0;
}
.news_all li .news_all_content p a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.news_all li .news_all_content p a:hover {
  color: var(--thm-primary);
}
.news_all li .news_post_time {
  padding-top: 5px;
}
.news_all li .news_post_time span {
  font-size: 16px;
}
.news_all.two {
  margin-left: 50px;
}
.news_all_btn {
}

/*--------------------------------------------------------------
# Special Message
--------------------------------------------------------------*/
.special_message {
  position: relative;
  display: block;
  margin-top: -130px;
}
.special_message:before {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 130px;
  background: #11134f;
  content: "";
}
.special_message_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #00B0F0;
  padding: 49.5px 70px;
  border-radius: 24px;
}
.special_message_inner_content {
}
.special_message_inner_content h2 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 54px;
  margin-bottom: 19px;
}
.special_message_inner_content p {
  font-size: 20px;
  color: #ffffff;
  margin: 0;
}
.special_message_inner_btn {
}
.special_message_inner_btn .thm-btn {
  padding: 15px 50px;
  padding-right: 15px;
}
.special_message_inner_btn .thm-btn i {
  margin-left: 50px;
  padding: 13px 17px;
}

/*--------------------------------------------------------------
# Site Footer One
--------------------------------------------------------------*/
.site_footer_one {
  position: relative;
  display: block;
  background: #11134f;
  padding: 138px 0 54px;
}
.site_footer_one_top {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding-bottom: 74px;
  margin-bottom: 88px;
}
.footer-widget__our_campaign {
}
.footer-widget__title {
  margin-bottom: 27px;
}
.footer-widget__title h3 {
  font-size: 21px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
  text-transform: uppercase;
}
.footer-widget__our_campaign_list {
}
.footer-widget__our_campaign_list li {
  position: relative;
  display: block;
  padding-left: 110px;
  padding-bottom: 14px;
}
.footer-widget__our_campaign_list li:last-child {
  padding-bottom: 0;
}

.footer-widget__our_campaign_list li .footer-widget__our_campaign_image {
  position: absolute;
  top: 0;
  left: 0;
}
.footer-widget__our_campaign_list li .footer-widget__our_campaign_image img {
  border-radius: 7px;
}
.footer-widget__our_campaign_content {
}
.footer-widget__our_campaign_content h4 {
  font-size: 16px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 26px;
  margin-bottom: 4px;
}
.footer-widget__our_campaign_content span {
  color: #999999;
  font-size: 15px;
  font-family: var(--thm-font);
  position: relative;
  margin-left: 8px;
  padding-left: 12px;
}
.footer-widget__our_campaign_content span:before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 1px;
  bottom: 3px;
  content: "";
  background: #bfbfbf;
}
.footer-widget__our_campaign_content p {
  font-size: 20px;
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
}
.footer-widget__our_campaign_content p a {
  color: #ffffff;
  transition: all 500ms ease;
}
.footer-widget__our_campaign_content p a:hover {
  color: var(--thm-primary);
}

.footer-widget__featured_video {
}
.footer-widget__featured_video_img {
  position: relative;
  display: block;
}
.footer-widget__featured_video_img img {
  width: 100%;
  border-radius: 13px;
}
.featured_video_btn_box {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  right: 0;
}
.featured_video_btn {
  height: 60px;
  width: 60px;
  color: var(--thm-primary);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 500ms ease;
}
.featured_video_btn:hover {
  background: var(--thm-primary);
  color: #ffffff;
}
.footer-widget__featured_video_text {
  margin-top: 18px;
}
.footer-widget__featured_video_text h4 {
  font-size: 16px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 26px;
  margin-bottom: 4px;
}
.footer-widget__featured_video_text span {
  color: #999999;
  font-size: 15px;
  font-family: var(--thm-font);
  position: relative;
  margin-left: 8px;
  padding-left: 12px;
}
.footer-widget__featured_video_text span:before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 1px;
  bottom: 3px;
  content: "";
  background: #bfbfbf;
}
.footer-widget__featured_video_text p {
  font-size: 21px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  margin: 0;
  line-height: 30px;
}

.site_footer_one_bottom {
}
.footer-widget__about {
}
.footer-widget__about_logo {
}
.footer-widget__about_logo img {
}
.footer-widget__about_logo_text {
  padding: 32px 0 18px;
}
.footer-widget__about_logo_text p {
  color: #cbcfd4;
  margin: 0;
  line-height: 28px;
}
.site_footer_one_bottom__social {
  display: flex;
  align-items: center;
}
.site_footer_one_bottom__social a {
  color: #ffffff;
  transition: all 500ms ease;
}
.site_footer_one_bottom__social a:hover {
  color: var(--thm-primary);
}
.site_footer_one_bottom__social a + a {
  margin-left: 16px;
}

.footer-widget__title_two {
  margin-bottom: 22px;
}
.footer-widget__title_two h3 {
  font-size: 20px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 30px;
}

.footer-widget__address {
  margin-left: 100px;
}
.footer-widget__address_list {
}
.footer-widget__address_list li {
  position: relative;
  display: block;
  padding-left: 40px;
  padding-bottom: 12px;
}
.footer-widget__address_list li:last-child {
  padding-bottom: 0;
}
.footer-widget__address_list li .icon {
  position: absolute;
  top: 3px;
  left: 0;
}
.footer-widget__address_list li .icon span {
  color: #cbcfd4;
}
.footer-widget__address_list li .text {
}
.footer-widget__address_list li .text p {
  font-size: 18px;
  color: #cbcfd4;
  margin: 0;
}
.footer-widget__address_list li .text a {
  color: #cbcfd4;
  transition: all 500ms ease;
}
.footer-widget__address_list li .text a:hover {
  color: var(--thm-primary);
}

.footer-widget__links {
  margin-right: -5px;
}
.footer-widget__links_list {
}
.footer-widget__links_list li + li {
  margin-top: 2px;
}
.footer-widget__links_list li a {
  color: #cbcfd4;
  transition: all 500ms ease;
}

.footer-widget__Resource {
  margin-left: 99px;
}
.footer-widget__Resource__links_list {
}
.footer-widget__Resource__links_list li + li {
  margin-top: 2px;
}
.footer-widget__Resource__links_list li a {
  color: #cbcfd4;
  transition: all 500ms ease;
}
.footer-widget__links_list li a:hover,
.footer-widget__Resource__links_list li a:hover {
  color: var(--thm-primary);
}

.site_footer_one_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 130px;
}
.site_footer_one_menu_Designed_by {
}
.site_footer_one_menu_Designed_by p {
  color: #b8bac8;
  margin: 0;
}
.site_footer_one_menu_Designed_by .heart_icon {
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  top: 2px;
}
.site_footer_one_menu_Designed_by .name {
  color: #ffffff;
}
.site_footer_one_menu_list {
}
.site_footer_one_menu_list li {
  position: relative;
  display: inline-block;
}
.site_footer_one_menu_list li + li {
  margin-left: 45px;
}
.site_footer_one_menu_list li a {
  color: #cbcfd4;
  transition: all 500ms ease;
}
.site_footer_one_menu_list li a:hover {
  color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Featured Causes
--------------------------------------------------------------*/
.featured_causes {
  position: relative;
  display: block;
  margin-top: -120px;
}
.featured_causes_inner {
  position: relative;
  display: block;
  background: #00B0F0;
  padding: 49px 60px 60px;
  border-radius: 18px;
  background-repeat: no-repeat;
  background-position: left;
}
.featured_causes_inner_title {
  padding-top: 13px;
}
.featured_causes_inner_title h4 {
  font-size: 24px;
  color: #00B0F0;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 34px;
}
.featured_causes_inner_title h3 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 54px;
}
.featured_causes_right {
  margin-left: 78px;
}
.featured_causes_right_carousel {
}
.featured_causes_right_carousel_single {
}
.featured_causes_right_carousel.owl-carousel .owl-dots {
  margin-top: 0;
  position: absolute;
  right: -25px;
  display: flex;
  flex-direction: column;
  top: 50%;
  transform: translateY(-50%);
}
.featured_causes_right_carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #fde29a;
  border: none;
  margin: 6px 0px;
  padding: 0px;
  border-radius: 50%;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}
.featured_causes_right_carousel.owl-carousel .owl-dots .owl-dot.active {
  height: 30px;
  border-radius: 5px;
}
.featured_causes_right_carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.featured_causes_right h2 {
  font-size: 42px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 52px;
  margin-bottom: 28px;
}

.progress-levels {
  position: relative;
  display: block;
  max-width: 500px;
  width: 100%;
}
.progress-levels .progress-box {
  position: relative;
  display: block;
  margin-bottom: 25px;
}
.progress-levels .progress-box.last-child {
  margin-bottom: 0;
}

.progress-levels .progress-box .inner {
  position: relative;
  display: block;
}

.progress-levels .progress-box .bar {
  position: relative;
  display: block;
}
.progress-levels .progress-box .bar .bar-innner {
  position: relative;
  width: 100%;
  height: 10px;
  background: #ffffff;
  border-radius: 10px;
}
.progress-levels .progress-box .bar .bar-fill {
  position: absolute;
  top: 0%;
  left: 0px;
  bottom: 0%;
  width: 0px;
  height: 10px;
  border-radius: 10px;
  background: var(--thm-primary);
  transition: all 2000ms ease 300ms;
}
.progress-levels .progress-box .bar .bar-innner .skill-percent {
  position: absolute;
  top: -13px;
  right: -76px;
  width: 55px;
  height: 30px;
  display: block;
  text-align: center;
  padding: 0;
  z-index: 1;
}
.progress-levels .progress-box .inner .count-text {
  position: relative;
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
  font-family: var(--thm-gilroy-bold);
  display: inline-block;
  float: none;
}
.progress-levels .progress-box .inner .percent {
  position: relative;
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
  font-family: var(--thm-gilroy-bold);
  display: inline-block;
  float: none;
}

.progress-levels .progress-box .inner .text {
  position: relative;
  color: #ffffff;
  font-size: 21px;
  font-family: var(--thm-gilroy-bold);
  line-height: 31px;
  padding-bottom: 12px;
}
.progress-levels .progress-box .inner .text span {
  font-size: 16px;
}
.featured_causes_right_btn {
  padding-top: 5px;
}
.featured_causes_right_btn .thm-btn {
  background: var(--thm-base);
  transition: all 500ms ease;
}
.featured_causes_right_btn .thm-btn:hover {
  background: var(--thm-primary);
}
.featured_causes_right_btn .thm-btn i {
}

/*--------------------------------------------------------------
# Featured Causes
--------------------------------------------------------------*/
.latest_news {
  position: relative;
  display: block;
  padding: 145px 0 115px;
}
.latest_news .block-title {
}
.latest_news .block-title h4 {
}
.latest_news .block-title h2 {
}
.latest_news_single_item_1 {
  margin-bottom: 25px;
}
.latest_news_single_item_1_img {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}
.latest_news_single_item_1_img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  content: "";
  border-radius: 12px;
  transform: scaleY(0);
  z-index: 1;
  transition: all 500ms ease;
}
.latest_news_single_item_1:hover .latest_news_single_item_1_img:before {
  transform: scaleY(1);
}
.latest_news_single_item_1_img img {
  width: 100%;
  border-radius: 12px;
  transform: scale(1);
  transition: all 500ms ease;
}
.latest_news_single_item_1:hover .latest_news_single_item_1_img img {
  transform: scale(1.05);
}
.latest_news_single_item_1_content {
  position: relative;
  display: block;
  padding-top: 16px;
}
.latest_news_single_item_1_content h4 {
  font-size: 18px;
  color: var(--thm-primary);
  font-family: var(--thm-gilroy-bold);
  line-height: 28px;
  margin-bottom: 3px;
}
.latest_news_single_item_1_content span {
  font-size: 16px;
  color: var(--thm-gray);
  font-family: var(--thm-font);
  font-weight: 400;
  margin-left: 10px;
}
.latest_news_single_item_1_content p {
  font-size: 24px;
  font-family: var(--thm-gilroy-bold);
  line-height: 34px;
  margin: 0;
}
.latest_news_single_item_1_content a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.latest_news_single_item_1_content a:hover {
  color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/
.video_one {
  position: relative;
  display: block;
  z-index: 2;
}
.video_one_inner {
  position: relative;
  display: block;
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
}
.video_one_inner_img {
  position: relative;
  display: block;
}
.video_one_inner_img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.12);
  border-radius: 15px;
}
.video_one_inner_img img {
  width: 100%;
  border-radius: 20px;
}
.video_one_btn_box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video_one_btn {
  height: 96px;
  width: 96px;
  color: var(--thm-primary);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 500ms ease;
}
.video_one_btn:hover {
  background: var(--thm-primary);
  color: #ffffff;
}

/*--------------------------------------------------------------
# Mission And Vission Two
--------------------------------------------------------------*/
.mission_and_vission_two {
  position: relative;
  display: block;
  background: #32369a;
  padding: 189px 0 0;
  margin-top: -150px;
  z-index: 1;
}
.mission_and_vission_two:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  height: 419px;
  background: #ffffff;
}
.mission_and_vission_two .row {
  margin: 0;
}
.mission_and_vission_two .col-xl-4 {
  padding: 0;
}
.mission_and_vission_title {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 132px;
}
.mission_and_vission_title h3 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 58px;
  margin-bottom: 14px;
}
.mission_and_vission_title p {
  font-size: 21px;
  color: #cacbd8;
  line-height: 31px;
  margin: 0;
}
.mission_and_vission_two_single_one {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
.mission_and_vission_two_content {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 65px 42px 97px;
}
.mission_and_vission_two_icon_box {
  padding-bottom: 30px;
}
.mission_and_vission_two_icon_box span {
  color: #ffffff;
  font-size: 60px;
  line-height: 60px;
}
.mission_and_vission_two_text_box {
}
.mission_and_vission_two_text_box h4 {
  font-size: 18px;
  color: #fed827;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 28px;
}
.mission_and_vission_two_text_box h3 {
  font-size: 30px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 38px;
  padding-bottom: 13px;
}
.mission_and_vission_two_text_box p {
  color: #f5f5f8;
  margin: 0;
  line-height: 28px;
}
.mission_and_vission_two_arrow {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
}

.mission_and_vission_two_arrow a {
  height: 72px;
  width: 72px;
  background: #00B0F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 23px;
  transition: all 500ms ease;
}
.mission_and_vission_two_arrow a:hover {
  background: var(--thm-black);
}
.mission_and_vission_two_arrow span {
}
.mission_and_vission_two__img {
}
.mission_and_vission_two__img img {
  width: 100%;
}

.mission_and_vission_two_single_two {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
.mission_and_vission_two__img_two {
  position: relative;
  display: block;
}
.mission_and_vission_two__img_two img {
  width: 100%;
}
.mission_and_vission_two_arrow_two {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.mission_and_vission_two_arrow_two a {
  height: 72px;
  width: 72px;
  background: #00B0F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 23px;
  transition: all 500ms ease;
}
.mission_and_vission_two_arrow_two a:hover {
  background: var(--thm-black);
}
.mission_and_vission_two_arrow_two span {
}
.mission_and_vission_two_content_two {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 93px 42px 65px;
}
.mission_and_vission_two_text_box_two {
}
.mission_and_vission_two_text_box_two h4 {
  font-size: 18px;
  color: #fed827;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 28px;
}
.mission_and_vission_two_text_box_two h3 {
  font-size: 30px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 38px;
  padding-bottom: 13px;
}
.mission_and_vission_two_text_box_two p {
  color: #f5f5f8;
  margin: 0;
  line-height: 28px;
}
.mission_and_vission_two_icon_box_two {
  padding-top: 34px;
}
.mission_and_vission_two_icon_box_two span {
  color: #ffffff;
  font-size: 60px;
  line-height: 60px;
}

.mission_and_vission_two_content.btlr {
  border-top-left-radius: 20px;
}
.mission_and_vission_two__img.bblr img {
  border-bottom-left-radius: 20px;
}
.mission_and_vission_two_content.btrr {
  border-top-right-radius: 20px;
}
.mission_and_vission_two__img.bbrr img {
  border-bottom-right-radius: 20px;
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about_one.two {
  padding-top: 115px;
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about_one.three {
  padding-top: 145px;
}
/*--------------------------------------------------------------
# Candidate Two
--------------------------------------------------------------*/
.candidate_one.two {
  background: #ebebeb;
}

/*--------------------------------------------------------------
# Events Two
--------------------------------------------------------------*/
.events_two {
  position: relative;
  display: block;
  padding: 145px 0 317px;
}
.events_two .block-title {
}
.events_two_left {
  position: relative;
  display: block;
}
.events_two_left_img {
  position: relative;
  display: block;
  margin-bottom: 21px;
}
.events_two_left_img img {
  width: 100%;
  border-radius: 15px;
}
.events_two_list {
}
.events_two_list li {
  position: relative;
  display: block;
  padding-left: 95px;
}
.events_two_list li .date_box {
  height: 72px;
  width: 72px;
  background: var(--thm-primary);
  text-align: center;
  position: absolute;
  top: 9px;
  left: 0;
  border-radius: 3px;
}
.events_two_list li .date_box h4 {
  font-size: 30px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 19px;
  padding-top: 15px;
}
.events_two_list li .date_box span {
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  font-size: 16px;
  text-transform: uppercase;
}
.events_two_list li .content_box {
}
.events_two_list li .content_box p {
  font-size: 24px;
  font-family: var(--thm-gilroy-bold);
  line-height: 38px;
}
.events_two_list li .content_box p a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.events_two_list li .content_box p a:hover {
  color: var(--thm-primary);
}
.events_two_time_location {
}
.events_two_time_location li {
  padding: 0;
  display: inline-block;
  border-bottom: 0;
  margin: 0;
}
.events_two_time_location li + li {
  margin-left: 20px;
}
.events_two_time_location li i {
  color: #00B0F0;
  padding-right: 8px;
}
.events_two_right {
  position: relative;
  display: block;
  margin-left: 100px;
  margin-top: -10px;
}
.events_two_right_list {
}
.events_two_right_list li {
  border-bottom: 1px solid #ebeafd;
  padding-bottom: 25px;
  margin-bottom: 26px;
}
.events_two_right_list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.events_two_right_list .events_two_time_location li {
  margin: 0;
  padding: 0;
  border-bottom: 0;
}
.events_two_right_list .events_two_time_location li + li {
  margin-left: 20px;
}

/*--------------------------------------------------------------
# Volunteer Two
--------------------------------------------------------------*/
.volunteer_two {
  position: relative;
  display: block;
  margin-top: -182px;
  z-index: 2;
}
.volunteer_two_inner {
  position: relative;
  display: block;
  background: #00B0F0;
  padding: 90px 70px 90px;
  border-radius: 24px;
}

.volunteer_two_left {
  margin-top: -8px;
}
.volunteer_two_title {
}
.volunteer_two_title h4 {
  font-size: 24px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 34px;
  margin-bottom: 8px;
}
.volunteer_two_title h2 {
  font-size: 60px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 70px;
  margin-bottom: 17px;
}
.volunteer_two_title p {
  font-size: 24px;
  color: #ffffff;
  margin: 0;
  line-height: 34px;
}
.volunteer_two_right {
  margin-left: 100px;
}
.volunteer_two_form {
}
.volunteer_two_input_box {
}
.volunteer_two_input_box input[type="text"],
.volunteer_two_input_box input[type="email"] {
  height: 60px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  color: #5e5858;
  font-size: 18px;
  margin-bottom: 20px;
  padding: 0 20px;
  outline: none;
}
.volunteer_two_input_box textarea {
  height: 110px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  color: #5e5858;
  font-size: 18px;
  margin-bottom: 20px;
  padding: 20px 20px 20px 20px;
  outline: none;
}
.voulnteer_two_btn {
}
.voulnteer_two_btn .thm-btn {
  background: var(--thm-base);
}
.voulnteer_two_btn .thm-btn:hover {
  background: var(--thm-primary);
}

/*--------------------------------------------------------------
# Funfacts One
--------------------------------------------------------------*/
.funfacts_one {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 556px 0 92px;
  margin-top: -426px;
  z-index: 1;
}
.funfacts_one_single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 50px;
}
.funfacts_one_content {
}
.funfacts_one_content h2 {
  font-size: 72px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  display: inline-block;
  line-height: 82px;
  margin-bottom: 12px;
}
.funfacts_one_content span {
  font-size: 72px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  display: inline-block;
  line-height: 82px;
  margin-bottom: 12px;
}
.funfacts_one_content p {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 58px;
  margin: 0;
}

/*--------------------------------------------------------------
# Funfacts One
--------------------------------------------------------------*/
.testimonial_two {
  position: relative;
  display: block;
  padding: 145px 0 175px;
}
.testimonial_two .block-title {
  margin-bottom: 118px;
}
.testimonial_two_single {
  position: relative;
  display: block;
  margin-bottom: 80px;
}
.testimonial_two_content {
  position: relative;
  display: block;
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  box-shadow: 14.562px 10.58px 48px 0px rgb(0, 0, 0, 0.06);
  padding: 67px 40px 39px;
}
.testimonial_two_img {
  position: absolute;
  top: -36px;
  left: 40px;
}
.testimonial_two_img img {
}
.testimonial_two__text {
}
.testimonial_two__text p {
  margin: 0;
  line-height: 30px;
}
.testimonial_two_author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
}
.testimonial_two_author_name {
}
.testimonial_two_author_name h3 {
  font-size: 21px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-bold);
  line-height: 31px;
}
.testimonial_two_author_name span {
  font-size: 16px;
  color: var(--thm-gray);
  font-family: var(--thm-font);
  font-weight: 400;
  margin-left: 6px;
}
.testimonial_two_quote_icon {
}
.testimonial_two_quote_icon span {
  font-size: 26px;
  color: var(--thm-primary);
  line-height: 26px;
}

/*--------------------------------------------------------------
# Special Message Two
--------------------------------------------------------------*/
.special_message_two {
  position: relative;
  display: block;
  margin-top: -111px;
  z-index: 3;
}
.special_message_inner_two {
  position: relative;
  display: block;
  background: #00B0F0;
  border-radius: 24px;
  padding: 90px 70px 70px;
}
.special_message_two_content {
  position: relative;
  display: block;
  margin-top: -7px;
}
.special_message_two_content h4 {
  font-size: 24px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 34px;
}
.special_message_two_content h2 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 58px;
}
.special_message_two_input_box {
  position: relative;
  display: block;
}
.special_message_two_input_box input[type="Email"] {
  height: 72px;
  background: #ffffff;
  width: 100%;
  padding-left: 30px;
  padding-right: 100px;
  border-radius: 8px;
  font-size: 18px;
  color: #5e5858;
  border: none;
  outline: none;
}
.special_message_two_input_box .button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  background: var(--thm-primary);
  border-radius: 8px;
  font-size: 20px;
  color: #ffffff;
  border: none;
  transition: all 500ms ease;
}
.special_message_two_input_box .button:hover {
  background-color: var(--thm-base);
  color: #fff;
}

/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/
.site_footer_two {
  position: relative;
  display: block;
  padding: 270px 0 64px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  margin-top: -151px;
}
.site_footer_two:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(17, 19, 79, 0.9);
  z-index: -1;
}
.site_footer_two_top {
  position: relative;
  display: block;
  padding-bottom: 90px;
}
.site_footer_two_logo {
}
.site_footer_two_logo img {
}
.site_footer_two_text {
  margin-top: -5px;
}
.site_footer_two_text p {
  color: #cbcfd4;
  margin: 0;
  line-height: 28px;
}
.site_footer_two_btn {
  float: right;
}

.site_footer_two_bottom {
}
.site_footer_two_bottom_title {
  margin-bottom: 22px;
}
.site_footer_two_bottom_title h3 {
  font-size: 20px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 30px;
}
.footer-widget__address_two {
}
.footer-widget__address_two_list {
}
.footer-widget__address_two_list li {
  position: relative;
  display: block;
  padding-left: 40px;
}
.footer-widget__address_two_list li:last-child {
  padding-bottom: 0;
}
.footer-widget__address_two_list li .icon {
  position: absolute;
  top: 3px;
  left: 0;
}
.footer-widget__address_two_list li .icon span {
  color: #cbcfd4;
}
.footer-widget__address_two_list li .text {
}
.footer-widget__address_two_list li .text p {
  font-size: 18px;
  color: #cbcfd4;
  margin: 0;
}
.footer-widget__address_two_list li .text a {
  color: #cbcfd4;
  transition: all 500ms ease;
}
.footer-widget__address_two_list li .text a:hover {
  color: var(--thm-primary);
}

.footer-widget__about_two {
  margin-left: 12px;
}
.footer-widget__about_two_list {
}
.footer-widget__about_two_list li + li {
  margin-top: 2px;
}

.footer-widget__resource_two {
  margin-left: 15px;
}
.footer-widget__resource_two_list {
}
.footer-widget__resource_two_list li + li {
  margin-top: 2px;
}

.footer-widget__links_two {
  margin-left: 15px;
}
.footer-widget__links_two_list {
}
.footer-widget__links_two_list li + li {
  margin-top: 2px;
}

.footer-widget__about_two_list li a,
.footer-widget__resource_two_list li a,
.footer-widget__links_two_list li a {
  font-size: 18px;
  color: #cbcfd4;
  transition: all 500ms ease;
}
.footer-widget__about_two_list li a:hover,
.footer-widget__resource_two_list li a:hover,
.footer-widget__links_two_list li a:hover {
  color: var(--thm-primary);
}

.footer-widget__tweets_two {
  margin-left: 12px;
  margin-right: -5px;
}
.footer-widget__tweets_two_list {
}
.footer-widget__tweets_two_list li {
  position: relative;
  display: block;
  padding-left: 40px;
}
.footer-widget__tweets_two_list li + li {
  margin-top: 15px;
}
.footer-widget__tweets_two_list li .tw_icon {
  position: absolute;
  top: 3px;
  left: 0;
}
.footer-widget__tweets_two_list li .tw_icon span {
  color: #cbcfd4;
}
.footer-widget__tweets_two_list li .tw_content {
}
.footer-widget__tweets_two_list li .tw_content p {
  font-size: 18px;
  color: #cbcfd4;
  margin: 0;
  line-height: 26px;
}

.footer-widget__tweets_two_list li .tw_content a {
  color: #cbcfd4;
  display: block;
  transition: all 500ms ease;
}
.footer-widget__tweets_two_list li .tw_content a:hover {
  color: var(--thm-primary);
}
.footer-widget__tweets_two_list li .tw_content span {
}

.site_footer_two_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 140px;
  border-top: 1px solid rgba(204, 211, 224, 0.27);
  padding-top: 30px;
}
.site_footer_two_menu_Designed_by {
}
.site_footer_two_menu_Designed_by p {
  color: #b8bac8;
  margin: 0;
}
.site_footer_two_menu_Designed_by .heart_icon {
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  top: 2px;
}
.site_footer_two_menu_Designed_by .name {
  color: #ffffff;
}
.site_footer_two_bottom__social {
  display: flex;
  align-items: center;
}
.site_footer_two_bottom__social a {
  color: #ffffff;
  transition: all 500ms ease;
}
.site_footer_two_bottom__social a:hover {
  color: var(--thm-primary);
}
.site_footer_two_bottom__social a + a {
  margin-left: 15px;
}

/*--------------------------------------------------------------
# Featured News
--------------------------------------------------------------*/
.featured_news {
  position: relative;
  display: block;
  padding: 145px 0 115px;
}
.featured_news_top {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 70px 70px 135px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  z-index: 1;
}
.featured_news_top:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.42);
  border-radius: 10px;
  z-index: -1;
}
.featured_news_content {
  position: relative;
  display: block;
}
.featured_news_content h2 {
  font-size: 60px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 70px;
  margin-bottom: 17px;
}
.featured_news_content p {
  font-size: 24px;
  color: #ffffff;
  margin: 0;
  line-height: 34px;
}
.featured_news_top_btn {
  padding-top: 46px;
}
.featured_news_top_btn .thm-btn {
  background: var(--thm-base);
}
.featured_news_top_btn .thm-btn:hover {
  background: var(--thm-primary);
}

.featured_news_bottom {
  position: relative;
  display: block;
}
.featured_news_bottom_single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.featured_news_bottom_content {
  position: absolute;
  bottom: 35px;
  left: 35px;
}
.featured_news_bottom_img {
  position: relative;
  display: block;
  z-index: 1;
}
.featured_news_bottom_img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.42);
  border-radius: 12px;
}
.featured_news_bottom_img img {
  width: 100%;
  border-radius: 12px;
}
.featured_news_bottom_content {
}
.featured_news_bottom_content h5 {
  font-size: 16px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 26px;
  text-transform: uppercase;
}
.featured_news_bottom_content h3 {
  font-size: 30px;
  font-family: var(--thm-gilroy-bold);
  line-height: 36px;
}
.featured_news_bottom_content h3 a {
  color: #ffffff;
  transition: all 500ms ease;
}
.featured_news_bottom_content h3 a:hover {
  color: var(--thm-primary);
}
/*--------------------------------------------------------------
# Mission And Vission Three
--------------------------------------------------------------*/
.mission_and_vission_three {
  position: relative;
  display: block;
  padding: 0 0 100px;
}
.mission_and_vission_three .block-title {
}
.mission_and_vission_three_single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
.mission_and_vission_three_icon {
  padding-bottom: 33px;
}
.mission_and_vission_three_icon span {
  font-size: 60px;
  color: var(--thm-primary);
  line-height: 60px;
}
.mission_and_vission_three_content {
}
.mission_and_vission_three_content {
}
.mission_and_vission_three_content h3 {
  font-size: 30px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  line-height: 40px;
  margin-bottom: 20px;
}
.mission_and_vission_three_content p {
  margin: 0;
  line-height: 28px;
}
.mission_and_vission_three_arrow {
  padding-top: 26px;
}
.mission_and_vission_three_arrow a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.mission_and_vission_three_arrow a:hover {
  color: var(--thm-primary);
}
.mission_and_vission_three_arrow span {
  font-size: 28px;
}

/*--------------------------------------------------------------
# Campaign Videos
--------------------------------------------------------------*/
.campaign_videos {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 145px 0 111px;
}
.campaign_videos .block-title {
}
.campaign_videos .block-title h4 {
  color: #ffffff;
}
.campaign_videos .block-title h2 {
  color: #ffffff;
}
.campaign_videos .block-title .block-title-text {
  color: #ffffff;
}
.campaign_videos_single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.campaign_videos_img {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.campaign_videos_img img {
  width: 100%;
  border-radius: 10px;
  transform: scale(1);
  transition: all 500ms ease;
}
.campaign_videos_single:hover .campaign_videos_img img {
  transform: scale(1.05);
}
.campaign_videos_box {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.campaign_videos_btn {
  height: 72px;
  width: 72px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--thm-primary);
  transition: all 500ms ease;
}
.campaign_videos_btn:hover {
  background: var(--thm-primary);
  color: #ffffff;
}
.campaign_videos_content {
  padding-top: 23px;
}
.campaign_videos_content h5 {
  font-size: 16px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 26px;
}
.campaign_videos_content p {
  font-size: 24px;
  font-family: var(--thm-gilroy-bold);
  line-height: 34px;
  margin: 0;
}
.campaign_videos_content p a {
  color: #ffffff;
  transition: all 500ms ease;
}
.campaign_videos_content p a:hover {
  color: var(--thm-primary);
}
/*--------------------------------------------------------------
# Campaign Videos
--------------------------------------------------------------*/
.causes_three {
  position: relative;
  display: block;
  background: #ebebeb;
  padding: 145px 0 115px;
}
.causes_three .block-title {
}
.causes_three_single {
  margin-bottom: 30px;
}
.causes_three_img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.causes_three_img img {
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  opacity: 1;
  transform: scale(1);
  transition: transform 500ms ease, opacity 500ms ease;
}
.causes_three_single:hover .causes_three_img img {
  opacity: 0.7;
  transform: scale(1.05);
}
.causes_three_content {
  position: relative;
  display: block;
  background: #ffffff;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 31px 30px 50px;
}
.causes_three_title {
}
.causes_three_title h5 {
  font-size: 16px;
  color: var(--thm-primary);
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
}
.causes_three_title h3 {
  font-size: 24px;
  font-family: var(--thm-gilroy-bold);
  line-height: 32px;
  margin-bottom: 15px;
  margin-top: 4px;
}
.causes_three_title h3 a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.causes_three_title h3 a:hover {
  color: var(--thm-primary);
}
.causes_three_text {
  margin-bottom: 20px;
}
.causes_three_text p {
  margin: 0;
  line-height: 28px;
}

.causes_three_content .progress-levels {
  max-width: 260px;
}
.causes_three_content .progress-levels .progress-box {
  margin-bottom: 0px;
}
.causes_three_content .progress-levels .progress-box .bar .bar-fill {
  height: 8px;
}
.causes_three_content .progress-levels .progress-box .bar .bar-innner {
  height: 8px;
  background: #e9e8e8;
}
.causes_three_content .progress-levels .progress-box .inner .count-text {
  color: var(--thm-base);
  font-size: 20px;
  line-height: 30px;
}
.causes_three_content .progress-levels .progress-box .inner .percent {
  color: var(--thm-base);
  font-size: 20px;
  line-height: 30px;
}

.causes_three_content .progress-levels .progress-box .inner .text {
  color: var(--thm-primary);
  font-size: 18px;
  line-height: 28px;
  padding-bottom: 8px;
}
.causes_three_content .progress-levels .progress-box .inner .text span {
  font-size: 16px;
  color: #999999;
}
.causes_three_content
  .progress-levels
  .progress-box
  .bar
  .bar-innner
  .skill-percent {
  right: -56px;
  width: 44px;
}

/*--------------------------------------------------------------
# Message And Volunteer
--------------------------------------------------------------*/
.message_and_volunteer {
  position: relative;
  display: block;
  padding: 145px 0 145px;
}
.message_and_volunteer .block-title {
  margin-bottom: 18px;
}
.message_and_volunteer .block-title h4 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 6px;
}
.message_and_volunteer .block-title h2 {
  font-size: 60px;
  line-height: 72px;
}
.message_and_volunteer_text {
}
.message_and_volunteer_text p {
  margin: 0;
  line-height: 30px;
}
.message_and_volunteer_text.marl {
  margin-left: 20px;
}
.message_and_volunteer_signature {
  display: flex;
  align-items: center;
  margin-top: 55px;
}
.message_and_volunteer_signature_img {
}
.message_and_volunteer_signature_img img {
}
.message_and_volunteer_signature_text {
  margin-left: 45px;
  top: -10px;
  position: relative;
}
.message_and_volunteer_signature_text p {
  font-size: 30px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-heavy);
  line-height: 40px;
  margin: 0;
}

.message_and_volunteer_right {
  position: relative;
  display: block;
  background: #00B0F0;
  padding: 40px 50px 50px;
  border-radius: 24px;
  margin-left: 104px;
}
.message_and_volunteer_title {
  padding-bottom: 27px;
}
.message_and_volunteer_title h3 {
  font-size: 42px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 52px;
  margin-bottom: 5px;
}
.message_and_volunteer_title p {
  font-size: 20px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
  margin: 0;
  text-transform: uppercase;
}
.message_and_volunteer_form {
  position: relative;
  display: block;
}
.message_and_volunteer_input_box {
}
.message_and_volunteer_input_box input[type="text"] {
  height: 54px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  color: #5e5858;
  font-size: 18px;
  margin-bottom: 20px;
  padding: 0 20px;
  outline: none;
}
.message_and_volunteer_input_box textarea {
  height: 120px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  color: #5e5858;
  font-size: 18px;
  margin-bottom: 10px;
  padding: 20px 20px 20px 20px;
  outline: none;
}
.message_and_volunteer_btn {
}
.message_and_volunteer_btn .thm-btn {
  background: var(--thm-base);
}
.message_and_volunteer_btn .thm-btn:hover {
  background: var(--thm-primary);
}

/*--------------------------------------------------------------
# Social Updates
--------------------------------------------------------------*/
.social_updates {
  position: relative;
  display: block;
  padding: 145px 0 256px;
}
.social_updates .block-title {
}
.social_updates_single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  overflow: hidden;
}
.social_updates_top {
  position: relative;
  display: flex;
  background: var(--thm-base);
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 12px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.social_updates_logo_text_box {
  position: relative;
  display: flex;
  align-items: center;
}
.social_updates_logo {
}
.social_updates_logo img {
}
.social_updates_text {
  margin-left: 8px;
}
.social_updates_text h3 {
  font-size: 16px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 26px;
}
.social_updates_top_social {
}
.social_updates_top_social a {
  color: #ffffff;
}
.social_updates_bottom_content {
  position: relative;
  display: block;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background: #ffffff;
  box-shadow: 3px 5.196px 18px 0px rgb(16, 41, 188, 0.06);
  padding: 12px 12px 23px;
  overflow: hidden;
}
.social_updates_bottom_img {
  position: relative;
  display: block;
  overflow: hidden;
}
.social_updates_bottom_img img {
  width: 100%;
  opacity: 1;
  transform: scale(1);
  transition: transform 500ms ease, opacity 500ms ease;
}
.social_updates_single:hover .social_updates_bottom_img img {
  opacity: 0.7;
  transform: scale(1.05);
}
.social_updates_bottom_text {
  padding-bottom: 21px;
  padding-top: 19px;
}
.social_updates_bottom_text p {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}
.social_updates_bottom_text .link_text {
  color: var(--thm-base);
  font-family: var(--thm-font);
  font-weight: 400;
}
.social_updates_bottom_text a {
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
}
.social_updates_bottom_post_time_like_counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social_updates_bottom_post_time {
}
.social_updates_bottom_post_time p {
  font-size: 12px;
  margin: 0;
  color: #999999;
  line-height: 22px;
}
.social_updates_bottom_like_counter {
}
.social_updates_bottom_like_counter h4 {
  color: #999999;
  font-size: 12px;
}
.social_updates_bottom_like_counter span {
  color: var(--thm-primary);
  font-size: 15px;
  margin-right: 8px;
}
.social_updates_btn {
  text-align: center;
  padding-top: 40px;
}

/*--------------------------------------------------------------
# Site Footer Three
--------------------------------------------------------------*/
.site_footer_three {
  position: relative;
  display: block;
  background: #000000;
  padding: 275px 0 65px;
  margin-top: -130px;
}
.site_footer_three_top {
  position: relative;
  display: block;
  padding-bottom: 82px;
}
.site_footer_three_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site_footer_three_logo {
}
.site_footer_three_logo img {
    max-width: 350px;
}
.site_footer_three_top__social {
  display: flex;
  align-items: center;
}
.site_footer_three_top__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 42px;
  width: 42px;
  border-radius: 7px;
  background: #ffffff;
  color: #11134f;
  font-size: 20px;
  transition: all 500ms ease;
}
.site_footer_three_top__social a:hover {
  background: var(--thm-primary);
  color: #ffffff;
}
.site_footer_three_top__social a + a {
  margin-left: 12px;
}

.site_footer_three_bottom {
}
.footer_widget__stay_connected {
}
.stay_connected_text {
  color: #cbcfd4;
  line-height: 28px;
  margin: 0;
  padding-top: 4px;
  margin-bottom: 20px;
}

.footer-widget__links_two.three {
  margin-left: 0;
}
.footer-widget__our_campaign.three {
  margin-left: -16px;
}

.footer-widget__gallery {
  margin-left: -28px;
}

.footer-widget-gallery-list {
  padding-top: 6px;
}
.footer-widget-gallery-list li {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 8px;
}

.footer-widget-gallery-list li .gallery-img {
  position: relative;
  display: block;
}

.footer-widget-gallery-list li .gallery-img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  transform: scaleX(0);
  transition: all 500ms ease;
}
.footer-widget-gallery-list li:hover .gallery-img:before {
  transform: scaleX(1);
}
.footer-widget-gallery-list li .gallery-img img {
  border-radius: 7px;
  width: 100%;
}
.gallery-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-primary);
  font-size: 15px;
  transform: scale(0);
  transition: all 500ms ease;
}
.footer-widget-gallery-list li:hover .gallery-img-hover {
  transform: scale(1);
}
.gallery-img-hover a {
  color: #ffffff;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.main-nav__logo{
color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
}
.main-nav__logo span {
    color: #00bfff;
}
.page-header {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 160px 0 59px;
}
.page-header-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 974px;
}
.page-header-content {
}
.page-header-content h2 {
  font-size: 80px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 100px;
  margin-bottom: 33px;
}
.page-header-content p {
  font-size: 30px;
  color: #ffffff;
  line-height: 42px;
  margin: 0;
}
.thm-breadcrumb {
  position: relative;
  display: block;
  padding-top: 60px;
}
.thm-breadcrumb li {
  position: relative;
  display: inline-block;
}
.thm-breadcrumb li + li {
  margin-left: 15px;
}
.thm-breadcrumb li span {
  font-size: 18px;
  color: #ffffff;
  transition: all 500ms ease;
}
.thm-breadcrumb li a {
  font-size: 18px;
  color: #ffffff;
  transition: all 500ms ease;
}
.thm-breadcrumb li:hover a {
  color: #00B0F0;
}
.thm-breadcrumb li:hover span {
  color: #00B0F0;
}

.mission_and_vission_three.four {
  background: #0a2387;
  padding-top: 145px;
}

.mission_and_vission_three.four .mission_and_vission_three_icon span {
  color: #00B0F0;
}
.mission_and_vission_three.four .mission_and_vission_three_content h3 {
  color: #ffffff;
}
.mission_and_vission_three.four .mission_and_vission_three_content p {
  color: #ffffff;
}
.mission_and_vission_three.four .mission_and_vission_three_arrow a {
  color: #ffffff;
}
.mission_and_vission_three.four .mission_and_vission_three_arrow a:hover {
  color: var(--thm-primary);
}

/*--------------------------------------------------------------
# History
--------------------------------------------------------------*/
.history {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 145px 0 145px;
}
.history .block-title {
}
.history_box {
  position: relative;
  display: block;
  max-width: 970px;
  width: 100%;
  margin: 0 auto;
}
.history_main_box {
  float: left;
  position: relative;
  display: block;
}
.history_main_box li {
  position: relative;
  display: block;
  max-width: 370px;
  width: 100%;
}
.history_main_box li:before {
  position: absolute;
  top: 33px;
  right: -97px;
  height: 3px;
  width: 97px;
  content: "";
  background: #f9b602;
}
.history_main_box li:after {
  position: absolute;
  top: 15px;
  right: -133px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  border: 10px solid var(--thm-base);
  background: #ffffff;
  content: "";
  z-index: 2;
}
.history_main_box li + li {
  margin-top: 60px;
}
.history_main_box li .history_date_box {
  text-align: center;
  background: var(--thm-primary);
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  padding: 19px 0;
}
.history_main_box li .history_date_box span {
  color: #ffffff;
}
.history_main_box li .history_content_box {
  background-color: rgb(255, 255, 255);
  box-shadow: 2.5px 4.33px 30px 0px rgb(144, 109, 63, 0.12);
  text-align: center;
  padding: 51px 45px 50px;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
.history_main_box li .history_content_box h3 {
  font-size: 30px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  line-height: 40px;
  margin-bottom: 17px;
}
.history_main_box li .history_content_box p {
  margin: 0;
  line-height: 32px;
}
.history_main_box.two {
  margin-left: 230px;
  margin-top: 185px;
}
.history_main_box_border {
  position: absolute;
  top: 15px;
  bottom: 74px;
  width: 3px;
  background: #00B0F0;
  left: 483px;
}
.history_main_box_border:before {
  position: absolute;
  bottom: 0;
  left: -16px;
  height: 36px;
  width: 36px;
  background: var(--thm-base);
  content: "\f107";
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.history_main_box.two li:before {
  position: absolute;
  top: 33px;
  left: -97px;
  height: 3px;
  width: 97px;
  content: "";
  background: #f9b602;
}
.history_main_box.two li:after {
  position: absolute;
  top: 15px;
  left: -133px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  border: 10px solid var(--thm-base);
  background: #ffffff;
  content: "";
  z-index: 2;
}

/*--------------------------------------------------------------
# Featured Banner
--------------------------------------------------------------*/
.featured_banner {
  position: relative;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 145px 0 145px;
  z-index: 1;
}
.featured_banner:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.36);
  z-index: -1;
}
.featured_banner_inner {
}
.featured_banner_inner .block-title {
  margin-bottom: 42px;
}
.featured_banner_inner .block-title h4 {
  font-size: 30px;
  color: #ffffff;
  line-height: 40px;
  margin-bottom: 6px;
}
.featured_banner_inner .block-title h2 {
  font-size: 60px;
  color: #ffffff;
  line-height: 72px;
  margin-bottom: 21px;
}
.featured_banner_inner .block-title .block-title-text {
  color: #ffffff;
}
.featured_banner_btn {
}
.featured_banner_btn .thm-btn {
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team_one {
  position: relative;
  display: block;
  padding: 145px 0 145px;
}
.team_one .block-title {
}
.team_one_single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  text-align: center;
  overflow: hidden;
}
.team_one_img {
  position: relative;
  display: block;
}
.team_one_img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  transform: scale(0);
  transition: all 500ms ease;
}
.team_one_single:hover .team_one_img:before {
  transform: scale(1);
}
.team_one_img img {
  width: 100%;
  border-radius: 20px;
}

.team_one_icon {
  position: absolute;
  bottom: -25px;
  right: 50px;
}
.team_one_icon a {
  height: 50px;
  width: 50px;
  background: var(--thm-primary);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
.team_one_single:hover .team_one_icon a {
  background: var(--thm-base);
}

.team_one_content {
  padding-top: 35px;
}
.team_one_content h3 {
  font-size: 30px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  line-height: 41px;
}
.team_one_content p {
  margin: 0;
}
.team_one_btn {
  text-align: center;
  padding-top: 34px;
}

/*--------------------------------------------------------------
# Funfacts Two
--------------------------------------------------------------*/
.funfacts_two {
  position: relative;
  display: block;
  padding: 116px 0 79px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.funfacts_two:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(245, 56, 31, 0.82);
  z-index: -1;
}
.funfacts_two_single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
.funfacts_two_iocn {
}
.funfacts_two_iocn i {
  font-size: 65px;
  color: #ffffff;
  line-height: 65px;
}
.funfacts_two_content {
}
.funfacts_two_content h2 {
  font-size: 72px;
  color: #00B0F0;
  font-family: var(--thm-gilroy-heavy);
  line-height: 82px;
  display: inline-block;
  padding: 30px 0 20px;
}
.funfacts_two_content span {
  font-size: 72px;
  color: #00B0F0;
  font-family: var(--thm-gilroy-heavy);
  line-height: 82px;
  display: inline-block;
}
.funfacts_two_content p {
  font-size: 36px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 46px;
  margin: 0;
}

/*--------------------------------------------------------------
# Sponsors
--------------------------------------------------------------*/
.sponsors {
  position: relative;
  display: block;
  padding: 145px 0 224px;
  z-index: 2;
}
.sponsors .block-title {
}
.sponsors_box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.sponsors_box_single {
  position: relative;
  overflow: hidden;
  flex: 0 0 15%;
  max-width: 15%;
  width: 100%;
  margin-bottom: 50px;
}
.sponsors_box_single a {
  position: relative;
  display: inline-block;
}
.sponsors_box_single a img {
  opacity: 1;
  transition: all 0.2s ease-in-out 0.1s;
}
.sponsors_box_single:hover a img {
  opacity: 0;
  transition: all 0.8s ease-in-out 0.1s;
}
.sponsors_overly_box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(55px);
  transition: all 0.4s ease-in-out 0.1s;
}
.sponsors_box_single:hover .sponsors_overly_box {
  transform: translateY(0px);
}
.sponsors_box_single .sponsors_overly_box a {
  position: relative;
  display: inline-block;
}
.sponsors_box_single .sponsors_overly_box a img {
  opacity: 1;
}

.special_message.three {
  z-index: 2;
}
.special_message.three:before {
  display: none;
}
.special_message.three .special_message_inner {
  padding: 72px 70px 61px;
}

/*--------------------------------------------------------------
# Joining Us
--------------------------------------------------------------*/
.joining_us {
  position: relative;
  display: block;
  padding: 145px 0 170px;
}
.joining_us_left {
}
.joining_us_title {
  margin-bottom: 44px;
  margin-top: 3px;
}
.joining_us_title h4 {
  font-size: 30px;
  color: var(--thm-primary);
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 40px;
  margin-bottom: 6px;
}
.joining_us_title h2 {
  font-size: 60px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-heavy);
  line-height: 72px;
}

.joining_form {
}
.joining_form_input_box {
}
.joining_form_input_box input[type="text"] {
  height: 60px;
  width: 100%;
  border: 1px solid #d9d8e4;
  border-radius: 7px;
  padding: 0 15px;
  font-size: 20px;
  color: #999999;
  outline: none;
  background: #ffffff;
  margin-bottom: 20px;
}

.joining_form_input_box
  .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  height: 60px;
}
.joining_form_input_box .bootstrap-select .dropdown-toggle:before {
}
.joining_form_input_box .bootstrap-select > .dropdown-toggle {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: 1px solid #d9d8e4;
  padding: 0 30px;
  outline: none;
  border-radius: 7px;
  background: #ffffff;
  color: #999999;
  font-size: 20px;
}
.joining_form_input_box .bootstrap-select .dropdown-toggle:before {
  position: absolute;
  top: 0;
  right: 20px;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #999999;
  bottom: 0;
  z-index: 2;
  cursor: pointer;
}
.joining_form_input_box .dropdown-toggle::after {
  display: none;
}

.joining_form_input_box textarea {
  height: 120px;
  width: 100%;
  border: 1px solid #d9d8e4;
  border-radius: 7px;
  padding: 10px 30px 20px;
  font-size: 20px;
  color: #999999;
  outline: none;
  background: #ffffff;
  margin-top: 20px;
}
.joingin_form_btn {
  margin-top: 9px;
}

.joining_us_right {
  position: relative;
  display: block;
  margin-left: 100px;
}
.joining_us_img {
  position: relative;
  display: block;
  z-index: 2;
}
.joining_us_img:before {
  position: absolute;
  top: 45px;
  right: -45px;
  height: 100%;
  width: 100%;
  border: 6px solid #00B0F0;
  border-radius: 12px;
  content: "";
  z-index: -1;
}
.joining_us_img img {
  width: 100%;
  border-radius: 12px;
}

/*--------------------------------------------------------------
# Benefits Of Joining
--------------------------------------------------------------*/
.benefits_of_joining {
  position: relative;
  display: block;
  padding: 145px 0 111px;
}
.benefits_of_joining .block-title {
  margin-bottom: 75px;
}
.benefits_of_joining_single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.benefits_of_joining_list {
}
.benefits_of_joining_list li {
  position: relative;
  display: block;
  padding-left: 45px;
}
.benefits_of_joining_list li + li {
  margin-top: 45px;
}
.benefits_of_joining_list li .icon {
  position: absolute;
  top: 0;
  left: 0;
}
.benefits_of_joining_list li .icon i {
  color: var(--thm-primary);
  font-size: 21px;
}
.benefits_of_joining_list li .text {
}
.benefits_of_joining_list li .text p {
  margin: 0;
  line-height: 28px;
}

/*--------------------------------------------------------------
# Inner Pages Footer
--------------------------------------------------------------*/
.site_footer_three.inner-pages-footer {
  padding-top: 140px;
  margin: 0;
}

/*--------------------------------------------------------------
# Donation Form
--------------------------------------------------------------*/
.donation_form {
  padding: 145px 0 145px;
}
:root {
  --thm-font: "Roboto", sans-serif;
  --thm-gilroy-bold: "gilroy-bold";
  --thm-gilroy-heavy: "gilroy-heavy";
  --thm-base: #00B0F0;
  --thm-base-rgb: 0, 176, 240;
  --thm-primary: #F40008;
  --thm-primary-rgb: 244, 0, 8;
  --thm-black: #222222;
  --thm-black-rgb: 34, 34, 34;
  --thm-gray: #5e5858;
}

body {
  font-family: var(--thm-font);
  color: var(--thm-gray);
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
}
button:focus {
  outline: none;
}
a:active,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
ul,
li {
  margin: 0;
  padding: 0;
}

::-webkit-input-placeholder {
  opacity: 1;
}

::-moz-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.block-title {
  margin-bottom: 82px;
  margin-top: -8px;
}
.block-title h4 {
  position: relative;
  font-size: 24px;
  color: var(--thm-primary);
  text-transform: uppercase;
  line-height: 34px;
  display: inline-block;
  font-family: var(--thm-gilroy-bold);
  margin-bottom: 18px;
}

.block-title h2 {
  font-size: 48px;
  color: var(--thm-base);
  text-transform: capitalize;
  line-height: 58px;
  font-family: var(--thm-gilroy-heavy);
  margin-bottom: 24px;
}
.block-title p.block-title-text {
  font-size: 20px;
  margin: 0;
  line-height: 30px;
}

.thm-btn {
  display: inline-block;
  vertical-align: middle;
  border: none;
  outline: none;
  background-color: var(--thm-primary);
  font-size: 16px;
  color: #ffffff;
  padding: 10px 30px;
  padding-right: 10px;
  border-radius: 8px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  font-family: var(--thm-gilroy-bold);
}
.thm-btn i {
  background: #ffffff;
  color: var(--thm-primary);
  display: inline-block;
  padding: 8px 12px;
  margin-left: 26px;
  border-radius: 4px;
  transition: all 500ms ease;
}

.thm-btn:hover {
  background-color: var(--thm-black);
  color: #ffffff;
}
.thm-btn:hover i {
  border-radius: 50%;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--thm-gray);
}

.bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--thm-primary);
  color: #fff;
}

.bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--thm-black);
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
  background: var(--thm-primary);
  color: #fff;
  cursor: pointer;
}

/* datepicker */

.datepicker.dropdown-menu {
  min-width: 17rem;
}

.datepicker table {
  width: 100%;
}

.post-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.post-pagination a {
  border-radius: 50%;
  background-color: var(--thm-gray);
  color: #9ca3a9;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  transition: all 0.4s ease;
}

.post-pagination a:hover {
  background-color: var(--thm-primary);
  color: #fff;
}

.post-pagination a.active {
  background-color: var(--thm-base);
  color: #fff;
  cursor: auto;
}

.post-pagination a + a {
  margin-left: 15px;
}

/* owl dots style */

.thm__owl-carousel .owl-dots {
  margin-top: 20px;
}

.thm__owl-carousel .owl-dots .owl-dot {
  outline: none;
}

.thm__owl-carousel .owl-dots .owl-dot span {
  margin: 0 2.5px;
  padding: 0;
  width: 14px;
  height: 14px;
  background-color: var(--thm-gray);
  border-radius: 50%;
  transition: all 500ms ease;
}

.thm__owl-carousel .owl-dots .owl-dot:hover span,
.thm__owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--thm-primary);
}

.thm__owl-carousel.light-dots .owl-dots .owl-dot span {
  background-color: #fff;
}

.thm__owl-carousel.light-dots .owl-dots .owl-dot:hover span,
.thm__owl-carousel.light-dots .owl-dots .owl-dot.active span {
  background-color: var(--thm-primary);
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999999991;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: var(--thm-primary);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background: var(--thm-black);
}

.scroll-to-top:hover i {
  color: #fff;
}

/* Cursor Style */
.cursor {
  position: absolute;
  background-color: #fff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: scale(1);
  visibility: hidden;
}

.cursor {
  visibility: visible;
}

.cursor.active {
  opacity: 0.5;
  transform: scale(0);
}

.cursor.hovered {
  opacity: 0.08;
}

.cursor-follower {
  position: absolute;
  background-color: RGBA(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  visibility: hidden;
}

.cursor-follower {
  visibility: visible;
}

.cursor-follower.active {
  opacity: 0.7;
  transform: scale(1);
}

.cursor-follower.hovered {
  opacity: 0.08;
}

.cursor-follower.close-cursor:before {
  position: absolute;
  content: "";
  height: 25px;
  width: 2px;
  background: #fff;
  left: 48%;
  top: 12px;
  transform: rotate(-45deg);
  display: inline-block;
}

.cursor-follower.close-cursor:after {
  position: absolute;
  content: "";
  height: 25px;
  width: 2px;
  background: #fff;
  right: 48%;
  top: 12px;
  transform: rotate(45deg);
}

/*--------------------------------------------------------------
    Site Header Header one wrap
--------------------------------------------------------------*/
.site-header__header-one-wrap {
  position: relative;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999;
  transition: all 500ms ease;
}
.header_top_one {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--thm-base);
  padding: 13px 0;
}

.header_top_one_inner {
  position: relative;
  display: block;
}
.header_top_one_inner_left {
  position: relative;
  max-width: 510px;
  width: 100%;
}
.header_top_one_inner_left_text {
}
.header_top_one_inner_left_text p {
  font-size: 17px;
  color: #ffffff;
  line-height: 34px;
  margin: 0;
}
.header_top_one_inner_left_text span {
  padding-right: 25px;
}

.header_top_one_inner_left_text_carousel .owl-nav {
  position: absolute;
  top: -1px;
  bottom: 0;
  margin: 0;
  right: -140px;
  height: 36px;
  width: 72px;
  line-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 7px;
}
.header_top_one_inner_left_text_carousel .owl-nav .owl-next,
.header_top_one_inner_left_text_carousel .owl-nav .owl-prev {
  color: #ffffff !important;
  margin: 0;
  background: transparent !important;
}
.header_top_one_inner_left_text_carousel .owl-nav .owl-prev {
  margin-right: 12.5px;
}
.header_top_one_inner_left_text_carousel .owl-nav .owl-next {
  margin-left: 12.5px;
}

.header_top_one_inner_right {
  position: relative;
}
.header_top_one_inner_right_social {
  display: flex;
  align-items: center;
}
.header_top_one_inner_right_social a {
  color: #ffffff;
  transition: all 500ms ease;
}
.header_top_one_inner_right_social a + a {
  margin-left: 16px;
}
.header_top_one_inner_right_social a:hover {
  color: var(--thm-primary);
}

.main-nav__header-one {
  position: relative;
  display: block;
  background: var(--thm-primary);
}
.header-navigation.one.original {
  position: relative;
}

.main-nav__header-one .container-box {
  position: relative;
  display: block;
}

.main-nav__left {
  position: relative;
  display: block;
}

.main-nav__left .side-menu__toggler {
  position: relative;
  display: inline-block;
  margin-left: 30px;
  font-size: 20px;
  color: var(--thm-base);
}

.main-nav__left_one {
  position: relative;
  display: block;
}

.logo_one {
  position: relative;
  display: block;
  padding: 10px 0 0px 0;
}
.logo_one {
    position: relative;
    display: block;
    padding: 10px 0 0px 0;
}

.main-nav__main-navigation.one {
  position: relative;
  display: block;
}
.main-nav__main-navigation .main-nav__navigation-box {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
.main-nav__main-navigation .main-nav__navigation-box,
.main-nav__main-navigation .main-nav__navigation-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav__main-navigation .main-nav__navigation-box > li + li {
}
.main-nav__main-navigation .main-nav__navigation-box > li {display: flex;align-items: center;gap: 0.5rem;}
.main-nav__main-navigation .main-nav__navigation-box > li > a {
  z-index: 1;
  color: #fff;
  font-weight: 400;
  font-size: 1.08rem;
  text-decoration: none;
  padding: 0.4rem 0.4rem;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
  background: transparent;
  outline: none;
  white-space: nowrap;
  overflow: hidden;
  border-right: solid 2px #ffffff5c;
}

.main-nav__main-navigation .main-nav__navigation-box > li:hover > a,
.main-nav__main-navigation .main-nav__navigation-box > li.current > a,
.main-nav__main-navigation
  .main-nav__navigation-box
  > li.current-menu-item
  > a {
  color: #00B0F0;
}
.main-nav__main-navigation .main-nav__navigation-box > li:hover > a:before,
.main-nav__main-navigation .main-nav__navigation-box > li.current > a:before,
.main-nav__main-navigation
  .main-nav__navigation-box
  > li.current-menu-item
  > a:before {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav__main-navigation .main-nav__navigation-box > li.dropdown > a {
}

/* Dropdown menu */
.main-nav__main-navigation .dropdown-btn {
  display: none;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul {
  position: absolute;
  width: 330px;
  background-color: #fff;
  border-top: 0px solid #f7f6f6;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
    -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  transform-origin: top;
  visibility: hidden;
  opacity: 0;
  z-index: 991;
  transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li {
  position: relative;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li + li {
  border-top: 1px solid #f7f6f6;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li > a {
  display: block;
  color: var(--thm-black);
  font-size: 16px;
  word-break: break-all;
  padding-top: 2.5px;
  padding-bottom: 2.5px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: var(--thm-gilroy-bold);
  transition: all 500ms ease;
  text-transform: capitalize;
}
.main-nav__main-navigation .main-nav__navigation-box > li ul > li:hover > a {
  color: var(--thm-primary);
}

/* Second level menu */
.main-nav__main-navigation .main-nav__navigation-box > li > ul {
  top: 100%;
  left: 0;
  transform: translateY(30px);

  visibility: hidden;
  opacity: 0;
}
.main-nav__main-navigation .main-nav__navigation-box > li:hover > ul {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

/* Third level menu */
.main-nav__main-navigation .main-nav__navigation-box > li > ul > li > ul {
  top: 0;
  left: 100%;
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}
.main-nav__main-navigation .main-nav__navigation-box > li > ul > li:hover > ul {
  transform: translateX(0px);
  visibility: visible;
  opacity: 1;
    background: #a00;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* After Third level menu */
.main-nav__main-navigation
  .main-nav__navigation-box
  > li
  > ul
  > li
  > ul
  > li
  ul {
  display: none;
}

.main-nav__right_one {
  position: relative;
  display: block;
}

.main-nav__right {
  position: relative;
  display: block;
}

.header_btn_1 {
    position: relative;
    display: block;
    float: right;
    padding: 30px 0;
    margin-left: 40px;
}

/* stricky Menu Css */
.stricked-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999999999;
  background-color: #cc0000;
  box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(-110%);
  transition: all 0.4s ease;
}
.stricked-menu.stricky-fixed {
  opacity: 1;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  transform: translateY(0%);
}

.stricked-menu .logo_one {
  padding: 5px 0;
}
.stricked-menu .main-nav__main-navigation .main-nav__navigation-box > li {
  position: relative;
  padding: 1px 0px 1px;
}
.stricked-menu .container-box {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.stricked-menu .header_btn_1 {
  padding: 17px 0 17px;
}

/*--------------------------------------------------------------
# Site Header Header Two Wrap
--------------------------------------------------------------*/
.site-header__header-one-wrap.two {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999;
  transition: all 500ms ease;
}
.main-nav__header-one.two {
  background: transparent;
}
.main-nav__header-one.two
  .main-nav__main-navigation
  .main-nav__navigation-box
  > li
  > a {
  color: #ffffff;
  text-transform: capitalize;
}
.main-nav__header-one.two
  .main-nav__main-navigation
  .main-nav__navigation-box
  > li
  > a:hover {
  color: #00B0F0;
}
.main-nav__header-one.two
  .main-nav__main-navigation
  .main-nav__navigation-box
  > li:hover
  > a,
.main-nav__header-one.two
  .main-nav__main-navigation
  .main-nav__navigation-box
  > li.current
  > a {
  color: #00B0F0;
}
.main-nav__header-one.two .header_btn_1 .thm-btn {
  background: transparent;
  border: 1px solid #ffffff;
}
.main-nav__header-one.two .header_btn_1 .thm-btn:hover {
  background: var(--thm-black);
  border: 1px solid var(--thm-black);
}
.main-nav__header-one.two .stricked-menu.stricky-fixed {
  background: #000000;
}

/*--------------------------------------------------------------
# Site Header Header three Wrap
--------------------------------------------------------------*/
.site-header__header-one-wrap.three {
}
.header_top_three {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 12.5px 0;
}
.header_top_three_inner {
}
.header_top_three_inner_left {
}
.header_top_three_inner_contact_info {
}
.header_top_three_inner_contact_info li {
  position: relative;
  display: inline-block;
}
.header_top_three_inner_contact_info li:before {
  position: absolute;
  top: 11px;
  left: -25px;
  bottom: 11px;
  content: "";
  background: #ffffff;
  width: 1px;
}
.header_top_three_inner_contact_info li:first-child:before {
  display: none;
}
.header_top_three_inner_contact_info li + li {
  margin-left: 50px;
}
.header_top_three_inner_contact_info li a {
  font-size: 16px;
  color: #ffffff;
  transition: all 500ms ease;
}
.header_top_three_inner_contact_info li a:hover {
  color: var(--thm-primary);
}
.header_top_three_inner_contact_info li span {
  padding-right: 15px;
}

.header_top_three_inner_right {
}
.header_top_three_inner_address {
  position: relative;
  float: left;
}
.header_top_three_inner_address:before {
  position: absolute;
  top: 11px;
  bottom: 11px;
  right: -25px;
  content: "";
  background: #ffffff;
  width: 1px;
}
.header_top_three_inner_address li {
  font-size: 16px;
  color: #ffffff;
  line-height: 35px;
}
.header_top_three_inner_address span {
  padding-right: 10px;
}
.header_top_three_inner_right_social {
  float: right;
  position: relative;
  padding-left: 50px;
  padding-bottom: 1px;
}
.header_top_three_inner_right_social-list {
  display: flex;
  align-items: center;
}
.header_top_three_inner_right_social a {
  color: #ffffff;
  transition: all 500ms ease;
}
.header_top_three_inner_right_social a + a {
  margin-left: 15px;
}
.header_top_three_inner_right_social a:hover {
  color: var(--thm-primary);
}

/* stricky Menu Css */
.header_three_wrap .stricked-menu {
  background-color: #ffffff;
}

@media (min-width: 1200px) {
  .main-nav__left .side-menu__toggler {
    display: none;
  }
  .main-nav__main-navigation {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
  }
  .mobile_menu_icon_two .side-menu__toggler {
    display: none;
  }

  .mobile_menu_icon_three .side-menu__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider-one {
  position: relative;
  display: block;
  background-color: #00B0F0;
  padding: 188px 0 197px;
  overflow: hidden;
}
.main-slider-one-shape-bg {
position: absolute;
    top: -188px;
    left: -100000px;
    bottom: -390px;
    background: #00000036;
    right: 20%;
    transform: skew(-15deg, 0deg);
    z-index: 1;
}
.main-slider-one-shape-round {
  height: 660px;
  width: 660px;
  background: #FF0000;
  position: absolute;
  bottom: 0;
  right: 340px;
  border-radius: 50%;
  -webkit-animation-name: shapeMover;
  animation-name: shapeMover;
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.main-slider-shape-dots {
  position: absolute;
    top: 123px;
    right: 8px;
  -webkit-animation-name: squareMover;
  animation-name: squareMover;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  perspective: 100px;
  transform-origin: center center;
}
.main-slider-small-round {
  position: absolute;
  bottom: 60px;
  right: 342px;
  height: 135px;
  width: 135px;
  background: rgb(0 176 240 / 32%);
  border-radius: 50%;
  z-index: 2;
  transform-origin: center bottom;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: banner3Shake;
  animation-name: banner3Shake;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.main-slider-img {
  position: absolute;
  bottom: 0;
  right: 30px;
}
.main-slider-img img {
}
.main-slider-one-left-content {
  position: relative;
  display: block;
  max-width: 535px;
  width: 100%;
}

.main_slider_one_left {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider-one-left-content h4 {
  font-size: 35px;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  color: #fed827;
  line-height: 45px;
}
.main-slider-one-left-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: 90px;
  line-height: 108px;
  font-family: var(--thm-gilroy-heavy);
  margin-top: 12px;
  margin-bottom: 28px;
}

.main-slider-one-left-content p {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 30px;
  line-height: 42px;
  color: #ffffff;
}

.main-slider-one-left-content .thm-btn {
  background: var(--thm-base);
  margin-top: 55px;
}
.main-slider-one-left-content .thm-btn i {
  color: var(--thm-base);
}
.main-slider-one-left-content .thm-btn:hover {
  background: var(--thm-black);
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  display: block;
  padding: 264px 0 290px;
}
.main-slider-two-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-slider-two-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(245, 56, 31, 0.85);
}
.main-slider-two-shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 760px;
}
.main-slider-two-img {
  position: absolute;
  bottom: 0;
  right: 145px;
}
.main-slider-two-img img {
}
.main-slider-two-left-content {
}
.main-slider-two-left-content {
  position: relative;
  display: block;
  max-width: 533px;
  width: 100%;
}
.main-slider-two-left-content h4 {
  font-size: 35px;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  color: #fed827;
  line-height: 45px;
}
.main-slider-two-left-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: 90px;
  line-height: 108px;
  font-family: var(--thm-gilroy-heavy);
  margin-top: 12px;
  margin-bottom: 28px;
}

.main-slider-two-left-content p {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 30px;
  line-height: 42px;
  color: #ffffff;
}

.main-slider-two-left-content .thm-btn {
  background: var(--thm-base);
  margin-top: 55px;
}
.main-slider-two-left-content .thm-btn i {
  color: var(--thm-base);
}
.main-slider-two-left-content .thm-btn:hover {
  background: var(--thm-black);
}

/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
  overflow: hidden;
  position: relative;
}

.main-slider-three .swiper-slide {
  position: relative;
  background-color: var(--thm-primary);
}

.main-slider-three .image-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1538px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.main-slider-three .swiper-slide-inner {
  position: relative;
  display: block;
  padding-top: 145px;
  padding-bottom: 240px;
}
.swiper-slide-inner-text {
  position: relative;
  display: block;
  max-width: 655px;
  width: 100%;
  padding-left: 70px;
  padding-top: 70px;
}
.swiper-slide-inner-text:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../images/main-slider/main-slider-three-inner-text-bg.webp);
  width: 584px;
  height: 600px;
}
.main-slider-three h2 {
  margin: 0;
  margin-bottom: 57px;
  color: #ffffff;
  font-size: 90px;
  line-height: 108px;
  font-family: var(--thm-gilroy-heavy);
  text-transform: capitalize;
  opacity: 0;
  visibility: hidden;
  transform: translateY(90px);
  transition-delay: 1000ms;
  transition: transform 2000ms ease, opacity 2000ms ease;
}

.main-slider-three .thm-btn {
  opacity: 0;
  transform: translateY(100px);
  transition-delay: 2500ms;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
    background 500ms ease;
}
.main-slider-three .thm-btn:hover {
  background: var(--thm-base);
  color: #ffffff;
}

.main-slider-three .swiper-slide-active .thm-btn,
.main-slider-three .swiper-slide-active h2 {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
}

#main-slider-pagination {
  z-index: 10;
  bottom: auto;
  top: 50%;
  left: 5%;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  transform: translateY(-50%);
}

#main-slider-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  opacity: 0.5;
  background-color: #fff;
  position: relative;
}
#main-slider-pagination .swiper-pagination-bullet:before {
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  content: "";
  border-radius: 50%;
  border: 2px solid #fff;
  opacity: 0;
}
#main-slider-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-top: 25px;
}

#main-slider-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
#main-slider-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  opacity: 1;
}
.main-slider-three-featured {
  position: absolute;
  top: 50%;
  right: 90px;
  transform: translateY(-50%);
  max-width: 370px;
  width: 100%;
  z-index: 2;
}
.main-slider-three-featured-single {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 7px;
  padding-right: 25px;
}
.main-slider-three-featured-single + .main-slider-three-featured-single {
  margin-top: 20px;
}
.main-slider-three-featured-img {
}
.main-slider-three-featured-img img {
  border-radius: 7px;
}
.main-slider-three-featured-text {
  margin-left: 25px;
}
.main-slider-three-featured-text h5 {
  font-size: 16px;
  color: var(--thm-primary);
  font-family: var(--thm-gilroy-bold);
  line-height: 26px;
}
.main-slider-three-featured-text p {
  font-size: 18px;
  font-family: var(--thm-gilroy-bold);
  line-height: 24px;
  margin: 0;
  margin-bottom: 8px;
}
.main-slider-three-featured-text p a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.main-slider-three-featured-text p a:hover {
  color: var(--thm-primary);
}
.main-slider-three-featured-text span {
  font-size: 16px;
  color: var(--thm-gray);
  line-height: 26px;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/

.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  transform: scale(1, 0);
  transform-origin: bottom center;
  transition: transform 0.7s ease;
}

.search-popup.active {
  transform-origin: top center;
  transform: scale(1, 1);
}

.search-popup__overlay {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  opacity: 0.7;
  cursor: none;
}

.search-popup__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-popup__form {
  position: relative;
  z-index: 9991;
  width: 100%;
  padding: 15px;
  max-width: 600px;
  position: relative;
}

.search-popup__form input {
  background-color: transparent;
  border: none;
  outline: none;
  width: 100%;
  height: 60px;
  color: var(--thm-black);
  font-size: 18px;
  background-color: white;
  padding-left: 30px;
}

.search-popup__form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--thm-black);
}

.search-popup__form input::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--thm-black);
}

.search-popup__form input:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--thm-black);
}

.search-popup__form input:-moz-placeholder {
  /* Firefox 18- */
  color: var(--thm-black);
}

.search-popup__form button[type="submit"] {
  border: none;
  outline: none;
  width: 60px;
  height: 60px;
  color: #fff;
  background-color: var(--thm-black);
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}
.search-popup__form button[type="submit"]:hover {
  background-color: var(--thm-black);
  color: var(--thm-base);
}

/*--------------------------------------------------------------
# MobileNav
--------------------------------------------------------------*/

.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: transform 500ms ease;
  z-index: 9999999;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  transform: scale(1, 1);
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-black);
  opacity: 0.8;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--thm-base);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}
.mobile-nav__content .header_btn_1 {
  margin-left: 0;
}
.mobile-nav__content .thm-btn {
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

.mobile-nav__content .main-nav__navigation-box,
.mobile-nav__content .main-nav__navigation-box ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
  float: none !important;
}

.mobile-nav__content .main-nav__navigation-box ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-nav__navigation-box ul li a {
  padding-left: 1em;
}

.mobile-nav__content .main-nav__navigation-box li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-nav__navigation-box li a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #fff;
  font-size: 15px;
  font-family: var(--thm-font);
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-nav__navigation-box li a.open {
  color: var(--thm-primary);
}

.mobile-nav__content .main-nav__navigation-box li a button {
  width: 30px;
  height: 30px;
  background-color: var(--thm-primary);
  border: none;
  outline: none;
  color: #fff;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-nav__navigation-box li a button.open {
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--thm-black);
}

.mobile-nav__content .main-nav__navigation-box li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  transform: translate(0, 0);
}

.mobile-nav__content .main-nav__navigation-box li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__contact .main-nav__right_one {
  display: none;
}
.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mobile-nav__language {
  display: flex;
  align-items: center;
}

.mobile-nav__language img {
  border-radius: 50%;
  margin-right: 10px;
}

.mobile-nav__language
  .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 70px;
}

.mobile-nav__language .bootstrap-select > .dropdown-toggle {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border: none;
  outline: none;
  color: #fff;
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: #fff;
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-left: 10px;
}

.mobile-nav__social a:hover {
  color: var(--thm-primary);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--thm-primary);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--thm-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  margin-right: 10px;
  color: #fff;
}
.mobile-nav__contact li > i::before {
  font-size: inherit;
}

@media (max-width: 575px) {
  .side-menu__block-inner {
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .side-menu__block-inner {
    max-width: 400px;
  }
}

@media (max-width: 375px) {
  .side-menu__block-inner {
    max-width: 300px;
  }
}

@media (max-width: 575px) {
  .side-menu__top,
  .side-menu__content,
  .mobile-nav__container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .side-menu__sep {
    margin-top: 40px;
    margin-bottom: 40px;
    width: calc(100% - 100px);
  }
}

@media (max-width: 480px) {
  .side-menu__top,
  .side-menu__content,
  .mobile-nav__container {
    padding-left: 25px;
    padding-right: 25px;
  }

  .side-menu__sep {
    width: calc(100% - 50px);
  }

  .side-menu__social {
    margin-top: 40px;
  }

  .side-menu__social a {
    width: 45px;
    height: 45px;
  }
}

/*--------------------------------------------------------------
# Top Section One
--------------------------------------------------------------*/
.top_section_one {
  position: relative;
  display: block;
  padding: 145px 0 145px;
}
.top_section_one_shape_1 {
  position: absolute;
  top: -145px;
  left: -100000px;
  background: var(--thm-base);
  bottom: -145px;
  right: 48%;
  transform: skew(-15deg, 0deg);
}
.top_section_one_shape_2 {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 422px;
  width: 121px;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.donation_taker {
  position: relative;
  display: block;
}
.donation_taker_content_inner {
  position: relative;
  display: block;
  background: #00B0F0;
  border-radius: 15px;
  padding: 40px 20px 40px;
  z-index: 10;
}

.donation_taker_content {
}
.donation_taker_content h3 {
  font-size: 24px;
  color: var(--thm-gray);
  font-family: var(--thm-gilroy-bold);
  line-height: 36px;
  text-transform: uppercase;
}
.donation_taker_content h2 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 54px;
  margin-bottom: 21px;
}
.donation_taker_content p {
  font-size: 20px;
  color: #ffffff;
  margin: 0;
  line-height: 30px;
}
.donation_taker_input_box {
  position: relative;
  display: block;
  margin: 42px 0 20px;
}

.donation_taker_input_box
  .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  height: 54px;
}
.donation_taker_input_box .bootstrap-select > .dropdown-toggle {
  width: 100%;
  height: 54px;
  line-height: 54px;
  border: 0px solid #f5f0e9;
  padding: 0 20px;
  outline: none;
  border-radius: 6px;
  background: #ffffff;
  color: #999999;
  font-size: 20px;
}
.donation_taker_input_box .bootstrap-select .dropdown-toggle:before {
  position: absolute;
  top: 0;
  right: 20px;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--thm-black);
  bottom: 0;
  z-index: 2;
  cursor: pointer;
}
.donation_taker_input_box .dropdown-toggle::after {
  display: none;
}
.donation_taker_btn {
}
.donation_taker_btn .thm-btn {
}

.top_section_one_preface {
}
.top_section_one_preface_title {
}
.top_section_one_preface_title h4 {
  font-size: 20px;
  color: var(--thm-primary);
  text-transform: uppercase;
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
}
.top_section_one_preface_title h2 {
  font-size: 40px;
  color: var(--thm-base);
  font-family: "gilroy-heavy";
  line-height: 50px;
  margin-bottom: 19px;
}
.top_section_one_preface_text {
}
.top_section_one_preface_text .text-1 {
  margin: 0;
}
.top_section_one_preface_text .text-2 {
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.top_section_one_preface_text .text-3 {
  margin: 0;
}
.top_section_one_preface_btn {
  padding-top: 25px;
}
.top_section_one_preface_btn .thm-btn {
  background: transparent;
  border: 1px solid var(--thm-base);
  color: var(--thm-black);
}
.top_section_one_preface_btn .thm-btn i {
  background: var(--thm-primary);
  color: #ffffff;
}
.top_section_one_preface_btn .thm-btn:hover {
  background: var(--thm-base);
  color: #ffffff;
}

.upcomming-events {
}
.upcomming-events .upcomming-events_title {
  font-size: 20px;
  color: var(--thm-primary);
  text-transform: uppercase;
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
}
.upcomming-events-list {
  padding-top: 18px;
}
.upcomming-events-list li {
  position: relative;
  display: block;
  padding-left: 95px;
  border-bottom: 1px solid #ebeafd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.upcomming-events-list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.upcomming-events-list li .events_date {
  height: 72px;
  width: 72px;
  background: var(--thm-base);
  text-align: center;
  position: absolute;
  top: 9px;
  left: 0;
  border-radius: 3px;
}
.upcomming-events-list li .events_date h4 {
  font-size: 30px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 19px;
  padding-top: 15px;
}
.upcomming-events-list li .events_date span {
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  font-size: 16px;
  text-transform: uppercase;
}
.upcomming-events-list li .events_content {
}
.upcomming-events-list li .events_content p {
  font-size: 20px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-bold);
  margin: 0;
  line-height: 30px;
}
.upcomming-events-list li .events_content p a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.upcomming-events-list li .events_content p a:hover {
  color: var(--thm-primary);
}
.upcomming-events-list li .events_content .time-location {
  padding-top: 15px;
}
.upcomming-events-list li .events_content .time-location li {
  padding: 0;
  display: inline-block;
  border-bottom: 0;
  margin: 0;
}
.upcomming-events-list li .events_content .time-location li + li {
  margin-left: 20px;
}
.upcomming-events-list li .events_content .time-location li i {
  color: #00B0F0;
  padding-right: 8px;
}
.upcomming-events_btn {
  padding-top: 5px;
}
.upcomming-events_btn a {
    font-size: 15px;
    color: var(--thm-black);
    font-family: var(--thm-gilroy-bold);
    border-bottom: 2px solid var(--thm-base);
    display: inline-block;
    transition: all 500ms ease;
}
.upcomming-events_btn i {
  padding-left: 15px;
  color: var(--thm-primary);
  font-size: 18px;
}
.upcomming-events_btn a:hover {
  color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Acoucement
--------------------------------------------------------------*/
.anoucement {
  position: relative;
  display: block;
  padding: 80px 0 145px;
}
.anoucement_inner {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding-top: 61px;
  padding-left: 95px;
  padding-bottom: 60px;
  border-radius: 24px;
}
.anoucement_inner .block-title {
  margin-bottom: 32px;
}
.anoucement_inner .block-title h4 {
  color: #dfdfdf;
  margin-bottom: 4px;
}
.anoucement_inner .block-title h2 {
  color: #ffffff;
}
.anoucement_inner .block-title p {
  color: #ffffff;
}
.anoucement_btn {
}
.anoucement_btn .thm-btn {
  background: var(--thm-base);
}
.anoucement_btn .thm-btn:hover {
  background: var(--thm-black);
}
.anoucement_btn .thm-btn i {
  color: var(--thm-black);
}
.anoucement_inner_megaphone {
  position: absolute;
  top: -25px;
  right: -65px;
}
.anoucement_inner_megaphone img {
  -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about_one {
  position: relative;
  display: block;
  padding-bottom: 165px;
}
.about_one_left {
}
.about_one_left .block-title {
  margin-bottom: 27px;
}
.about_one_left .block-title h4 {
  margin-bottom: 10px;
}
.about_one_left .block-title h2 {
}
.about_one_left .block-title .block-title-text {
}
.about_one_left_text {
}
.about_one_left_text p {
}
.about_one_btn {
}
.about_one_btn .thm-btn {
}

.about_one_right {
  position: relative;
  display: block;
  margin-right: 170px;
}
.about_one_right_img {
  position: relative;
  display: block;
  z-index: 2;
}
.about_one_right_img:before {
  position: absolute;
  top: 35px;
  right: -88px;
  content: "";
  background-image: url(../images/shapes/about-one-shape-1.webp);
  background-repeat: no-repeat;
  width: 53px;
  height: 54px;
  webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}
.about_one_right_img:after {
  position: absolute;
  bottom: -90px;
  right: 110px;
  content: "";
  background-image: url(../images/shapes/about-one-shape-2.webp);
  background-repeat: no-repeat;
  width: 39px;
  height: 40px;
  webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  -webkit-animation: ImgBounce 5s ease-in-out 0s infinite alternate;
  animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}
.about_one_right_img img {
  width: 100%;
  border-radius: 12px;
}
.about_one_right_last_img {
  position: absolute;
  top: 130px;
  right: -330px;
  z-index: -1;
}
.about_one_right_last_img img {
  width: 100%;
  border-radius: 12px;
}

/*--------------------------------------------------------------
# Mission And Vission
--------------------------------------------------------------*/
.mission_and_vission {
  position: relative;
  display: block;
  padding: 145px 0 245px;
  background: var(--thm-base);
}
.mission_and_vission .block-title {
}
.mission_and_vission .block-title h4 {
  color: #fed827;
}
.mission_and_vission .block-title h2 {
  color: #ffffff;
}
.mission_and_vission .block-title-text {
  color: #cacbd8;
}
.mission_and_vission_single {
  position: relative;
  display: block;
  border: 1px solid #7073b8;
  border-radius: 25px;
  margin-bottom: 30px;
}
.mission_and_vission_img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.mission_and_vission_img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(34, 34, 34, 0.5);
  transform: scale(0);
  z-index: 1;
  transition: transform 500ms ease, opacity 500ms ease;
}
.mission_and_vission_single:hover .mission_and_vission_img:before {
  transform: scale(1);
}
.mission_and_vission_img img {
  width: 100%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  transform: scale(1);
  transition: transform 500ms ease, opacity 500ms ease;
}
.mission_and_vission_single:hover .mission_and_vission_img img {
  transform: scale(1.05);
}
.mission_and_vission_content {
  position: relative;
  display: block;
  padding: 34px 30px 36px;
}
.mission_and_vission_content h4 {
  font-size: 18px;
  color: #fed827;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 26px;
}
.mission_and_vission_content h3 {
  font-size: 30px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 40px;
  margin-bottom: 10px;
}
.mission_and_vission_content h3 a {
  color: #ffffff;
  transition: all 500ms ease;
}
.mission_and_vission_content h3 a:hover {
  color: var(--thm-primary);
}
.mission_and_vission_content p {
  color: #f5f5f8;
  margin: 0;
}
.mission_and_vission_arrow {
  padding-top: 17px;
}
.mission_and_vission_arrow span {
  color: #ffffff;
  font-size: 25px;
}

/*--------------------------------------------------------------
# Mission And Vission
--------------------------------------------------------------*/
.volunteer_one {
  position: relative;
  display: block;
  margin-top: -130px;
}
.volunteer_one_inner {
  position: relative;
  display: flex;
  background: #00B0F0;
  border-radius: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 58px 72px;
}
.volunteer_one_inner_left {
}
.volunteer_one_inner_left h4 {
  font-size: 20px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 30px;
}
.volunteer_one_inner_left h2 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 58px;
  margin-top: 6px;
  margin-bottom: 19px;
}
.volunteer_one_inner_left p {
  font-size: 20px;
  color: #ffffff;
  margin: 0;
  line-height: 30px;
}
.volunteer_one_inner_right {
}
.volunteer_one_inner_right .thm-btn {
  padding: 15px 50px;
  padding-right: 15px;
}
.volunteer_one_inner_right .thm-btn i {
  margin-left: 50px;
  padding: 13px 17px;
}

/*--------------------------------------------------------------
# Candidate One
--------------------------------------------------------------*/
.candidate_one {
  position: relative;
  display: block;
  padding: 145px 0 108px;
}
.candidate_one .block-title {
  margin-bottom: 68px;
}
.candidate_one_left {
  position: relative;
  display: block;
}
.candidate_one_img {
  position: relative;
  display: block;
}
.candidate_one_img img {
  border-radius: 50px;
  width: 100%;
}
.candidate_one_video_box {
  position: absolute;
  display: block;
  background-image: url(../images/shapes/candidate_one_video-shape-1.webp);
  background-repeat: no-repeat;
  width: 96px;
  height: 98px;
  bottom: -2px;
  right: 55px;
  transition: all 500ms ease;
}
.candidate_one_video_box:hover {
  background-image: url(../images/shapes/candidate_one_video-shape-1-hover.webp);
}
.candidate_one_video__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #ffffff;
  transition: all 500ms ease;
}
.candidate_one_video__btn:hover {
  color: var(--thm-primary);
}

.candidate_one_right {
  position: relative;
  display: block;
  margin-left: 100px;
}
.candidate_one_right_title {
  padding-bottom: 30px;
}
.candidate_one_right_title h2 {
  font-size: 60px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-heavy);
  line-height: 72px;
  margin-bottom: 20px;
}
.candidate_one_right_title p {
  font-size: 20px;
  margin: 0;
  line-height: 30px;
}
.candidate_one_right_text {
}
.candidate_one_right_text p {
  margin: 0;
  line-height: 30px;
}
.candidate_one_signature {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.candidate_one_signature_img {
}
.candidate_one_signature_img img {
}
.candidate_one_signature_text {
  margin-left: 45px;
  position: relative;
  top: -10px;
}
.candidate_one_signature_text p {
  font-size: 30px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-heavy);
  margin: 0;
  line-height: 40px;
}

/*--------------------------------------------------------------
# Donation One
--------------------------------------------------------------*/
.donation_one {
  position: relative;
  display: block;
  padding: 147px 0 180px;
  background-repeat: no-repeat;
  background-size: cover;
}
.donation_one:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(245, 36, 31, 0.88);
}
.donation_one_inner {
  position: relative;
  display: block;
  text-align: center;
}
.donation_one_inner_title {
}
.donation_one_inner_title h5 {
  font-size: 24px;
  color: #fed827;
  font-family: var(--thm-gilroy-bold);
  line-height: 34px;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.donation_one_inner_title h2 {
  font-size: 72px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 82px;
  margin-bottom: 6px;
}
.donation_one_inner_title h3 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 62px;
}
.donation_one_inner_text {
  padding: 25px 0 60px;
}
.donation_one_inner_text p {
  font-size: 30px;
  color: #ffffff;
  margin: 0;
  line-height: 40px;
}
.donation_one_btn {
}
.donation_one_btn .thm-btn {
  padding: 15px 50px;
  padding-right: 15px;
  background: var(--thm-base);
  transition: all 500ms ease;
}
.donation_one_btn .thm-btn:hover {
  background: var(--thm-black);
}
.donation_one_btn .thm-btn i {
  margin-left: 50px;
  padding: 13px 17px;
  color: var(--thm-base);
}

/*--------------------------------------------------------------
# Testimonials One
--------------------------------------------------------------*/
.testimonials_one {
  position: relative;
  display: block;
  padding: 145px 0 145px;
}
.testimonials_one .block-title {
  margin-bottom: 50px;
}
.testimonials_one .block-title h4 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 8px;
}
.testimonials_one .block-title h2 {
  font-size: 60px;
  line-height: 70px;
}
.testimonials_one-carousel {
}
.testimonials_one_carousel_single {
  position: relative;
  display: block;
  padding-left: 100px;
}
.testimonials_one_text {
}
.testimonials_one_text p {
  font-size: 30px;
  line-height: 40px;
  margin: 0;
}
.testimonials_one_author {
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.testimonials_one_author_img {
  position: relative;
  display: block;
  width: 72px;
}
.testimonials_one_author_img img {
  width: 100%;
  border-radius: 50%;
}
.testimonials_one_author_content {
  margin-left: 30px;
}
.testimonials_one_author_content h4 {
  font-size: 24px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-heavy);
}
.testimonials_one_author_content span {
  font-size: 18px;
  color: var(--thm-gray);
  margin-left: 20px;
  font-family: var(--thm-font);
  font-weight: 400;
}
.testimonials_one_quote_icon {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(180deg);
}
.testimonials_one_quote_icon span {
  font-size: 55px;
  color: #f5b302;
}

.testimonials_one_right {
  position: relative;
  display: block;
  margin-left: 100px;
}
.testimonials_one_right_img {
}
.testimonials_one_right_img img {
  width: 100%;
}

/*--------------------------------------------------------------
# Shop One
--------------------------------------------------------------*/
.shop_one {
  position: relative;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 145px 0 107px;
  z-index: 1;
}
.shop_one:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(12, 15, 71, 0.9);
  z-index: -1;
}
.shop_one .block-title {
}
.shop_one .block-title h4 {
  color: #ffffff;
}
.shop_one .block-title h2 {
  color: #ffffff;
}
.shop_one .block-title .block-title-text {
  color: #ffffff;
}
.shop_one_single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
  overflow: hidden;
}
.shop_one_img {
  position: relative;
  display: block;
  overflow: hidden;
}
.shop_one_img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(15, 15, 71, 0.5);
  transform: translate3d(0px, 100%, 0px);
  transition: all 1000ms ease;
}
.shop_one_single:hover .shop_one_img:before {
  transform: translate3d(0px, 0px, 0px);
}
.shop_one_img img {
  width: 100%;
  border-radius: 15px;
}
.shop_one_content {
  margin-top: 27px;
}
.shop_one_content h4 {
  font-size: 24px;
  color: #ffffff;
  line-height: 34px;
  font-family: var(--thm-gilroy-bold);
  margin-bottom: 3px;
}
.shop_one_content p {
  font-size: 30px;
  color: var(--thm-base);
  line-height: 40px;
  font-family: var(--thm-gilroy-bold);
  margin: 0;
}

/*--------------------------------------------------------------
# News And Subscription
--------------------------------------------------------------*/
.news_and_subscription {
  position: relative;
  display: block;
  padding: 145px 0 290px;
}
.news_and_subscription_shape_1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 479px;
  width: 137px;
  background-repeat: no-repeat;
}
.news_and_subscription_shape_2 {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 758px;
  width: 217px;
  background-repeat: no-repeat;
}
.subscription {
  position: relative;
  display: block;
  background-repeat: no-repeat;
  border-radius: 15px;
  padding: 60px;
  background-size: cover;
  z-index: 1;
}
.subscription:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(245, 56, 31, 0.87);
  border-radius: 15px;
  z-index: -1;
}
.subscription .block-title {
  margin-bottom: 142px;
}
.subscription .block-title h4 {
  color: #fed827;
  margin-bottom: 0;
}
.subscription .block-title h2 {
  color: #ffffff;
  margin-bottom: 19px;
}
.subscription .block-title .block-title-text {
  color: #ffffff;
}

.Subscription_input_box {
  position: relative;
  display: block;
}
.Subscription_input_box input {
}
.Subscription_input_box input[type="Email"] {
  height: 60px;
  background: #ffffff;
  width: 100%;
  padding-left: 30px;
  padding-right: 80px;
  border-radius: 6px;
  font-size: 20px;
  color: #999999;
  border: none;
}
.Subscription_input_box input[type="email"]:focus {
  outline: none;
}
.Subscription_input_box input[type="email"]::-webkit-input-placeholder {
  color: #999999;
}
.Subscription_input_box input[type="email"]:-moz-placeholder {
  color: #999999;
}
.Subscription_input_box input[type="email"]::-moz-placeholder {
  color: #999999;
}
.Subscription_input_box input[type="email"]:-ms-input-placeholder {
  color: #999999;
}
.Subscription_input_box .button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  background: var(--thm-base);
  border-radius: 6px;
  font-size: 20px;
  color: #ffffff;
  border: none;
}

.news {
  position: relative;
  display: block;
  margin-left: 100px;
}
.news .block-title {
  margin-bottom: 38px;
}
.news .block-title h4 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 8px;
}
.news .block-title h2 {
  font-size: 60px;
  line-height: 70px;
}
.news_all {
  position: relative;
  float: left;
}
.news_all li {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 13px;
  margin-bottom: 23px;
}
.news_all li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 27px;
}
.news_all li .news_all_content {
}
.news_all li .news_all_content h5 {
  font-size: 18px;
  color: var(--thm-primary);
  font-family: var(--thm-gilroy-bold);
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.news_all li .news_all_content p {
  font-size: 24px;
  font-family: var(--thm-gilroy-bold);
  line-height: 34px;
  margin: 0;
}
.news_all li .news_all_content p a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.news_all li .news_all_content p a:hover {
  color: var(--thm-primary);
}
.news_all li .news_post_time {
  padding-top: 5px;
}
.news_all li .news_post_time span {
  font-size: 16px;
}
.news_all.two {
  margin-left: 50px;
}
.news_all_btn {
}

/*--------------------------------------------------------------
# Special Message
--------------------------------------------------------------*/
.special_message {
  position: relative;
  display: block;
  margin-top: -130px;
}
.special_message:before {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 130px;
  background: #11134f;
  content: "";
}
.special_message_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #00B0F0;
  padding: 49.5px 70px;
  border-radius: 24px;
}
.special_message_inner_content {
}
.special_message_inner_content h2 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 54px;
  margin-bottom: 19px;
}
.special_message_inner_content p {
  font-size: 20px;
  color: #ffffff;
  margin: 0;
}
.special_message_inner_btn {
}
.special_message_inner_btn .thm-btn {
  padding: 15px 50px;
  padding-right: 15px;
}
.special_message_inner_btn .thm-btn i {
  margin-left: 50px;
  padding: 13px 17px;
}

/*--------------------------------------------------------------
# Site Footer One
--------------------------------------------------------------*/
.site_footer_one {
  position: relative;
  display: block;
  background: #11134f;
  padding: 138px 0 54px;
}
.site_footer_one_top {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding-bottom: 74px;
  margin-bottom: 88px;
}
.footer-widget__our_campaign {
}
.footer-widget__title {
  margin-bottom: 27px;
}
.footer-widget__title h3 {
  font-size: 21px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
  text-transform: uppercase;
}
.footer-widget__our_campaign_list {
}
.footer-widget__our_campaign_list li {
  position: relative;
  display: block;
  padding-left: 110px;
  padding-bottom: 14px;
}
.footer-widget__our_campaign_list li:last-child {
  padding-bottom: 0;
}

.footer-widget__our_campaign_list li .footer-widget__our_campaign_image {
  position: absolute;
  top: 0;
  left: 0;
}
.footer-widget__our_campaign_list li .footer-widget__our_campaign_image img {
  border-radius: 7px;
}
.footer-widget__our_campaign_content {
}
.footer-widget__our_campaign_content h4 {
  font-size: 16px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 26px;
  margin-bottom: 4px;
}
.footer-widget__our_campaign_content span {
  color: #999999;
  font-size: 15px;
  font-family: var(--thm-font);
  position: relative;
  margin-left: 8px;
  padding-left: 12px;
}
.footer-widget__our_campaign_content span:before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 1px;
  bottom: 3px;
  content: "";
  background: #bfbfbf;
}
.footer-widget__our_campaign_content p {
  font-size: 20px;
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
}
.footer-widget__our_campaign_content p a {
  color: #ffffff;
  transition: all 500ms ease;
}
.footer-widget__our_campaign_content p a:hover {
  color: var(--thm-primary);
}

.footer-widget__featured_video {
}
.footer-widget__featured_video_img {
  position: relative;
  display: block;
}
.footer-widget__featured_video_img img {
  width: 100%;
  border-radius: 13px;
}
.featured_video_btn_box {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  right: 0;
}
.featured_video_btn {
  height: 60px;
  width: 60px;
  color: var(--thm-primary);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 500ms ease;
}
.featured_video_btn:hover {
  background: var(--thm-primary);
  color: #ffffff;
}
.footer-widget__featured_video_text {
  margin-top: 18px;
}
.footer-widget__featured_video_text h4 {
  font-size: 16px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 26px;
  margin-bottom: 4px;
}
.footer-widget__featured_video_text span {
  color: #999999;
  font-size: 15px;
  font-family: var(--thm-font);
  position: relative;
  margin-left: 8px;
  padding-left: 12px;
}
.footer-widget__featured_video_text span:before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 1px;
  bottom: 3px;
  content: "";
  background: #bfbfbf;
}
.footer-widget__featured_video_text p {
  font-size: 21px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  margin: 0;
  line-height: 30px;
}

.site_footer_one_bottom {
}
.footer-widget__about {
}
.footer-widget__about_logo {
}
.footer-widget__about_logo img {
}
.footer-widget__about_logo_text {
  padding: 32px 0 18px;
}
.footer-widget__about_logo_text p {
  color: #cbcfd4;
  margin: 0;
  line-height: 28px;
}
.site_footer_one_bottom__social {
  display: flex;
  align-items: center;
}
.site_footer_one_bottom__social a {
  color: #ffffff;
  transition: all 500ms ease;
}
.site_footer_one_bottom__social a:hover {
  color: var(--thm-primary);
}
.site_footer_one_bottom__social a + a {
  margin-left: 16px;
}

.footer-widget__title_two {
  margin-bottom: 22px;
}
.footer-widget__title_two h3 {
  font-size: 20px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 30px;
}

.footer-widget__address {
  margin-left: 100px;
}
.footer-widget__address_list {
}
.footer-widget__address_list li {
  position: relative;
  display: block;
  padding-left: 40px;
  padding-bottom: 12px;
}
.footer-widget__address_list li:last-child {
  padding-bottom: 0;
}
.footer-widget__address_list li .icon {
  position: absolute;
  top: 3px;
  left: 0;
}
.footer-widget__address_list li .icon span {
  color: #cbcfd4;
}
.footer-widget__address_list li .text {
}
.footer-widget__address_list li .text p {
  font-size: 18px;
  color: #cbcfd4;
  margin: 0;
}
.footer-widget__address_list li .text a {
  color: #cbcfd4;
  transition: all 500ms ease;
}
.footer-widget__address_list li .text a:hover {
  color: var(--thm-primary);
}

.footer-widget__links {
  margin-right: -5px;
}
.footer-widget__links_list {
}
.footer-widget__links_list li + li {
  margin-top: 2px;
}
.footer-widget__links_list li a {
  color: #cbcfd4;
  transition: all 500ms ease;
}

.footer-widget__Resource {
  margin-left: 99px;
}
.footer-widget__Resource__links_list {
}
.footer-widget__Resource__links_list li + li {
  margin-top: 2px;
}
.footer-widget__Resource__links_list li a {
  color: #cbcfd4;
  transition: all 500ms ease;
}
.footer-widget__links_list li a:hover,
.footer-widget__Resource__links_list li a:hover {
  color: var(--thm-primary);
}

.site_footer_one_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 130px;
}
.site_footer_one_menu_Designed_by {
}
.site_footer_one_menu_Designed_by p {
  color: #b8bac8;
  margin: 0;
}
.site_footer_one_menu_Designed_by .heart_icon {
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  top: 2px;
}
.site_footer_one_menu_Designed_by .name {
  color: #ffffff;
}
.site_footer_one_menu_list {
}
.site_footer_one_menu_list li {
  position: relative;
  display: inline-block;
}
.site_footer_one_menu_list li + li {
  margin-left: 45px;
}
.site_footer_one_menu_list li a {
  color: #cbcfd4;
  transition: all 500ms ease;
}
.site_footer_one_menu_list li a:hover {
  color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Featured Causes
--------------------------------------------------------------*/
.featured_causes {
  position: relative;
  display: block;
  margin-top: -120px;
}
.featured_causes_inner {
  position: relative;
  display: block;
  background: #00B0F0;
  padding: 49px 60px 60px;
  border-radius: 18px;
  background-repeat: no-repeat;
  background-position: left;
}
.featured_causes_inner_title {
  padding-top: 13px;
}
.featured_causes_inner_title h4 {
  font-size: 24px;
  color: #00B0F0;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 34px;
}
.featured_causes_inner_title h3 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 54px;
}
.featured_causes_right {
  margin-left: 78px;
}
.featured_causes_right_carousel {
}
.featured_causes_right_carousel_single {
}
.featured_causes_right_carousel.owl-carousel .owl-dots {
  margin-top: 0;
  position: absolute;
  right: -25px;
  display: flex;
  flex-direction: column;
  top: 50%;
  transform: translateY(-50%);
}
.featured_causes_right_carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #fde29a;
  border: none;
  margin: 6px 0px;
  padding: 0px;
  border-radius: 50%;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}
.featured_causes_right_carousel.owl-carousel .owl-dots .owl-dot.active {
  height: 30px;
  border-radius: 5px;
}
.featured_causes_right_carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.featured_causes_right h2 {
  font-size: 42px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 52px;
  margin-bottom: 28px;
}

.progress-levels {
  position: relative;
  display: block;
  max-width: 500px;
  width: 100%;
}
.progress-levels .progress-box {
  position: relative;
  display: block;
  margin-bottom: 25px;
}
.progress-levels .progress-box.last-child {
  margin-bottom: 0;
}

.progress-levels .progress-box .inner {
  position: relative;
  display: block;
}

.progress-levels .progress-box .bar {
  position: relative;
  display: block;
}
.progress-levels .progress-box .bar .bar-innner {
  position: relative;
  width: 100%;
  height: 10px;
  background: #ffffff;
  border-radius: 10px;
}
.progress-levels .progress-box .bar .bar-fill {
  position: absolute;
  top: 0%;
  left: 0px;
  bottom: 0%;
  width: 0px;
  height: 10px;
  border-radius: 10px;
  background: var(--thm-primary);
  transition: all 2000ms ease 300ms;
}
.progress-levels .progress-box .bar .bar-innner .skill-percent {
  position: absolute;
  top: -13px;
  right: -76px;
  width: 55px;
  height: 30px;
  display: block;
  text-align: center;
  padding: 0;
  z-index: 1;
}
.progress-levels .progress-box .inner .count-text {
  position: relative;
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
  font-family: var(--thm-gilroy-bold);
  display: inline-block;
  float: none;
}
.progress-levels .progress-box .inner .percent {
  position: relative;
  color: #ffffff;
  font-size: 24px;
  line-height: 34px;
  font-family: var(--thm-gilroy-bold);
  display: inline-block;
  float: none;
}

.progress-levels .progress-box .inner .text {
  position: relative;
  color: #ffffff;
  font-size: 21px;
  font-family: var(--thm-gilroy-bold);
  line-height: 31px;
  padding-bottom: 12px;
}
.progress-levels .progress-box .inner .text span {
  font-size: 16px;
}
.featured_causes_right_btn {
  padding-top: 5px;
}
.featured_causes_right_btn .thm-btn {
  background: var(--thm-base);
  transition: all 500ms ease;
}
.featured_causes_right_btn .thm-btn:hover {
  background: var(--thm-primary);
}
.featured_causes_right_btn .thm-btn i {
}

/*--------------------------------------------------------------
# Featured Causes
--------------------------------------------------------------*/
.latest_news {
  position: relative;
  display: block;
  padding: 145px 0 115px;
}
.latest_news .block-title {
}
.latest_news .block-title h4 {
}
.latest_news .block-title h2 {
}
.latest_news_single_item_1 {
  margin-bottom: 25px;
}
.latest_news_single_item_1_img {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}
.latest_news_single_item_1_img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  content: "";
  border-radius: 12px;
  transform: scaleY(0);
  z-index: 1;
  transition: all 500ms ease;
}
.latest_news_single_item_1:hover .latest_news_single_item_1_img:before {
  transform: scaleY(1);
}
.latest_news_single_item_1_img img {
  width: 100%;
  border-radius: 12px;
  transform: scale(1);
  transition: all 500ms ease;
}
.latest_news_single_item_1:hover .latest_news_single_item_1_img img {
  transform: scale(1.05);
}
.latest_news_single_item_1_content {
  position: relative;
  display: block;
  padding-top: 16px;
}
.latest_news_single_item_1_content h4 {
  font-size: 18px;
  color: var(--thm-primary);
  font-family: var(--thm-gilroy-bold);
  line-height: 28px;
  margin-bottom: 3px;
}
.latest_news_single_item_1_content span {
  font-size: 16px;
  color: var(--thm-gray);
  font-family: var(--thm-font);
  font-weight: 400;
  margin-left: 10px;
}
.latest_news_single_item_1_content p {
  font-size: 24px;
  font-family: var(--thm-gilroy-bold);
  line-height: 34px;
  margin: 0;
}
.latest_news_single_item_1_content a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.latest_news_single_item_1_content a:hover {
  color: var(--thm-primary);
}

/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/
.video_one {
  position: relative;
  display: block;
  z-index: 2;
}
.video_one_inner {
  position: relative;
  display: block;
  max-width: 770px;
  width: 100%;
  margin: 0 auto;
}
.video_one_inner_img {
  position: relative;
  display: block;
}
.video_one_inner_img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.12);
  border-radius: 15px;
}
.video_one_inner_img img {
  width: 100%;
  border-radius: 20px;
}
.video_one_btn_box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video_one_btn {
  height: 96px;
  width: 96px;
  color: var(--thm-primary);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 500ms ease;
}
.video_one_btn:hover {
  background: var(--thm-primary);
  color: #ffffff;
}

/*--------------------------------------------------------------
# Mission And Vission Two
--------------------------------------------------------------*/
.mission_and_vission_two {
  position: relative;
  display: block;
  background: #32369a;
  padding: 189px 0 0;
  margin-top: -150px;
  z-index: 1;
}
.mission_and_vission_two:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  height: 419px;
  background: #ffffff;
}
.mission_and_vission_two .row {
  margin: 0;
}
.mission_and_vission_two .col-xl-4 {
  padding: 0;
}
.mission_and_vission_title {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 132px;
}
.mission_and_vission_title h3 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 58px;
  margin-bottom: 14px;
}
.mission_and_vission_title p {
  font-size: 21px;
  color: #cacbd8;
  line-height: 31px;
  margin: 0;
}
.mission_and_vission_two_single_one {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
.mission_and_vission_two_content {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 65px 42px 97px;
}
.mission_and_vission_two_icon_box {
  padding-bottom: 30px;
}
.mission_and_vission_two_icon_box span {
  color: #ffffff;
  font-size: 60px;
  line-height: 60px;
}
.mission_and_vission_two_text_box {
}
.mission_and_vission_two_text_box h4 {
  font-size: 18px;
  color: #fed827;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 28px;
}
.mission_and_vission_two_text_box h3 {
  font-size: 30px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 38px;
  padding-bottom: 13px;
}
.mission_and_vission_two_text_box p {
  color: #f5f5f8;
  margin: 0;
  line-height: 28px;
}
.mission_and_vission_two_arrow {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
}

.mission_and_vission_two_arrow a {
  height: 72px;
  width: 72px;
  background: #00B0F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 23px;
  transition: all 500ms ease;
}
.mission_and_vission_two_arrow a:hover {
  background: var(--thm-black);
}
.mission_and_vission_two_arrow span {
}
.mission_and_vission_two__img {
}
.mission_and_vission_two__img img {
  width: 100%;
}

.mission_and_vission_two_single_two {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
.mission_and_vission_two__img_two {
  position: relative;
  display: block;
}
.mission_and_vission_two__img_two img {
  width: 100%;
}
.mission_and_vission_two_arrow_two {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.mission_and_vission_two_arrow_two a {
  height: 72px;
  width: 72px;
  background: #00B0F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 23px;
  transition: all 500ms ease;
}
.mission_and_vission_two_arrow_two a:hover {
  background: var(--thm-black);
}
.mission_and_vission_two_arrow_two span {
}
.mission_and_vission_two_content_two {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 93px 42px 65px;
}
.mission_and_vission_two_text_box_two {
}
.mission_and_vission_two_text_box_two h4 {
  font-size: 18px;
  color: #fed827;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 28px;
}
.mission_and_vission_two_text_box_two h3 {
  font-size: 30px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 38px;
  padding-bottom: 13px;
}
.mission_and_vission_two_text_box_two p {
  color: #f5f5f8;
  margin: 0;
  line-height: 28px;
}
.mission_and_vission_two_icon_box_two {
  padding-top: 34px;
}
.mission_and_vission_two_icon_box_two span {
  color: #ffffff;
  font-size: 60px;
  line-height: 60px;
}

.mission_and_vission_two_content.btlr {
  border-top-left-radius: 20px;
}
.mission_and_vission_two__img.bblr img {
  border-bottom-left-radius: 20px;
}
.mission_and_vission_two_content.btrr {
  border-top-right-radius: 20px;
}
.mission_and_vission_two__img.bbrr img {
  border-bottom-right-radius: 20px;
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about_one.two {
  padding-top: 115px;
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about_one.three {
  padding-top: 145px;
}
/*--------------------------------------------------------------
# Candidate Two
--------------------------------------------------------------*/
.candidate_one.two {
  background: #ebebeb;
}

/*--------------------------------------------------------------
# Events Two
--------------------------------------------------------------*/
.events_two {
  position: relative;
  display: block;
  padding: 145px 0 317px;
}
.events_two .block-title {
}
.events_two_left {
  position: relative;
  display: block;
}
.events_two_left_img {
  position: relative;
  display: block;
  margin-bottom: 21px;
}
.events_two_left_img img {
  width: 100%;
  border-radius: 15px;
}
.events_two_list {
}
.events_two_list li {
  position: relative;
  display: block;
  padding-left: 95px;
}
.events_two_list li .date_box {
  height: 72px;
  width: 72px;
  background: var(--thm-primary);
  text-align: center;
  position: absolute;
  top: 9px;
  left: 0;
  border-radius: 3px;
}
.events_two_list li .date_box h4 {
  font-size: 30px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 19px;
  padding-top: 15px;
}
.events_two_list li .date_box span {
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  font-size: 16px;
  text-transform: uppercase;
}
.events_two_list li .content_box {
}
.events_two_list li .content_box p {
  font-size: 24px;
  font-family: var(--thm-gilroy-bold);
  line-height: 38px;
}
.events_two_list li .content_box p a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.events_two_list li .content_box p a:hover {
  color: var(--thm-primary);
}
.events_two_time_location {
}
.events_two_time_location li {
  padding: 0;
  display: inline-block;
  border-bottom: 0;
  margin: 0;
}
.events_two_time_location li + li {
  margin-left: 20px;
}
.events_two_time_location li i {
  color: #00B0F0;
  padding-right: 8px;
}
.events_two_right {
  position: relative;
  display: block;
  margin-left: 100px;
  margin-top: -10px;
}
.events_two_right_list {
}
.events_two_right_list li {
  border-bottom: 1px solid #ebeafd;
  padding-bottom: 25px;
  margin-bottom: 26px;
}
.events_two_right_list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.events_two_right_list .events_two_time_location li {
  margin: 0;
  padding: 0;
  border-bottom: 0;
}
.events_two_right_list .events_two_time_location li + li {
  margin-left: 20px;
}

/*--------------------------------------------------------------
# Volunteer Two
--------------------------------------------------------------*/
.volunteer_two {
  position: relative;
  display: block;
  margin-top: -182px;
  z-index: 2;
}
.volunteer_two_inner {
  position: relative;
  display: block;
  background: #00B0F0;
  padding: 90px 70px 90px;
  border-radius: 24px;
}

.volunteer_two_left {
  margin-top: -8px;
}
.volunteer_two_title {
}
.volunteer_two_title h4 {
  font-size: 24px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 34px;
  margin-bottom: 8px;
}
.volunteer_two_title h2 {
  font-size: 60px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 70px;
  margin-bottom: 17px;
}
.volunteer_two_title p {
  font-size: 24px;
  color: #ffffff;
  margin: 0;
  line-height: 34px;
}
.volunteer_two_right {
  margin-left: 100px;
}
.volunteer_two_form {
}
.volunteer_two_input_box {
}
.volunteer_two_input_box input[type="text"],
.volunteer_two_input_box input[type="email"] {
  height: 60px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  color: #5e5858;
  font-size: 18px;
  margin-bottom: 20px;
  padding: 0 20px;
  outline: none;
}
.volunteer_two_input_box textarea {
  height: 110px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  color: #5e5858;
  font-size: 18px;
  margin-bottom: 20px;
  padding: 20px 20px 20px 20px;
  outline: none;
}
.voulnteer_two_btn {
}
.voulnteer_two_btn .thm-btn {
  background: var(--thm-base);
}
.voulnteer_two_btn .thm-btn:hover {
  background: var(--thm-primary);
}

/*--------------------------------------------------------------
# Funfacts One
--------------------------------------------------------------*/
.funfacts_one {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 556px 0 92px;
  margin-top: -426px;
  z-index: 1;
}
.funfacts_one_single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 50px;
}
.funfacts_one_content {
}
.funfacts_one_content h2 {
  font-size: 72px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  display: inline-block;
  line-height: 82px;
  margin-bottom: 12px;
}
.funfacts_one_content span {
  font-size: 72px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  display: inline-block;
  line-height: 82px;
  margin-bottom: 12px;
}
.funfacts_one_content p {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 58px;
  margin: 0;
}

/*--------------------------------------------------------------
# Funfacts One
--------------------------------------------------------------*/
.testimonial_two {
  position: relative;
  display: block;
  padding: 145px 0 175px;
}
.testimonial_two .block-title {
  margin-bottom: 118px;
}
.testimonial_two_single {
  position: relative;
  display: block;
  margin-bottom: 80px;
}
.testimonial_two_content {
  position: relative;
  display: block;
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  box-shadow: 14.562px 10.58px 48px 0px rgb(0, 0, 0, 0.06);
  padding: 67px 40px 39px;
}
.testimonial_two_img {
  position: absolute;
  top: -36px;
  left: 40px;
}
.testimonial_two_img img {
}
.testimonial_two__text {
}
.testimonial_two__text p {
  margin: 0;
  line-height: 30px;
}
.testimonial_two_author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
}
.testimonial_two_author_name {
}
.testimonial_two_author_name h3 {
  font-size: 21px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-bold);
  line-height: 31px;
}
.testimonial_two_author_name span {
  font-size: 16px;
  color: var(--thm-gray);
  font-family: var(--thm-font);
  font-weight: 400;
  margin-left: 6px;
}
.testimonial_two_quote_icon {
}
.testimonial_two_quote_icon span {
  font-size: 26px;
  color: var(--thm-primary);
  line-height: 26px;
}

/*--------------------------------------------------------------
# Special Message Two
--------------------------------------------------------------*/
.special_message_two {
  position: relative;
  display: block;
  margin-top: -111px;
  z-index: 3;
}
.special_message_inner_two {
  position: relative;
  display: block;
  background: #00B0F0;
  border-radius: 24px;
  padding: 90px 70px 70px;
}
.special_message_two_content {
  position: relative;
  display: block;
  margin-top: -7px;
}
.special_message_two_content h4 {
  font-size: 24px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 34px;
}
.special_message_two_content h2 {
  font-size: 48px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 58px;
}
.special_message_two_input_box {
  position: relative;
  display: block;
}
.special_message_two_input_box input[type="Email"] {
  height: 72px;
  background: #ffffff;
  width: 100%;
  padding-left: 30px;
  padding-right: 100px;
  border-radius: 8px;
  font-size: 18px;
  color: #5e5858;
  border: none;
  outline: none;
}
.special_message_two_input_box .button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  background: var(--thm-primary);
  border-radius: 8px;
  font-size: 20px;
  color: #ffffff;
  border: none;
  transition: all 500ms ease;
}
.special_message_two_input_box .button:hover {
  background-color: var(--thm-base);
  color: #fff;
}

/*--------------------------------------------------------------
# Site Footer Two
--------------------------------------------------------------*/
.site_footer_two {
  position: relative;
  display: block;
  padding: 270px 0 64px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  margin-top: -151px;
}
.site_footer_two:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(17, 19, 79, 0.9);
  z-index: -1;
}
.site_footer_two_top {
  position: relative;
  display: block;
  padding-bottom: 90px;
}
.site_footer_two_logo {
}
.site_footer_two_logo img {
}
.site_footer_two_text {
  margin-top: -5px;
}
.site_footer_two_text p {
  color: #cbcfd4;
  margin: 0;
  line-height: 28px;
}
.site_footer_two_btn {
  float: right;
}

.site_footer_two_bottom {
}
.site_footer_two_bottom_title {
  margin-bottom: 22px;
}
.site_footer_two_bottom_title h3 {
  font-size: 20px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 30px;
}
.footer-widget__address_two {
}
.footer-widget__address_two_list {
}
.footer-widget__address_two_list li {
  position: relative;
  display: block;
  padding-left: 40px;
}
.footer-widget__address_two_list li:last-child {
  padding-bottom: 0;
}
.footer-widget__address_two_list li .icon {
  position: absolute;
  top: 3px;
  left: 0;
}
.footer-widget__address_two_list li .icon span {
  color: #cbcfd4;
}
.footer-widget__address_two_list li .text {
}
.footer-widget__address_two_list li .text p {
  font-size: 18px;
  color: #cbcfd4;
  margin: 0;
}
.footer-widget__address_two_list li .text a {
  color: #cbcfd4;
  transition: all 500ms ease;
}
.footer-widget__address_two_list li .text a:hover {
  color: var(--thm-primary);
}

.footer-widget__about_two {
  margin-left: 12px;
}
.footer-widget__about_two_list {
}
.footer-widget__about_two_list li + li {
  margin-top: 2px;
}

.footer-widget__resource_two {
  margin-left: 15px;
}
.footer-widget__resource_two_list {
}
.footer-widget__resource_two_list li + li {
  margin-top: 2px;
}

.footer-widget__links_two {
  margin-left: 15px;
}
.footer-widget__links_two_list {
}
.footer-widget__links_two_list li + li {
  margin-top: 2px;
}

.footer-widget__about_two_list li a,
.footer-widget__resource_two_list li a,
.footer-widget__links_two_list li a {
  font-size: 18px;
  color: #cbcfd4;
  transition: all 500ms ease;
}
.footer-widget__about_two_list li a:hover,
.footer-widget__resource_two_list li a:hover,
.footer-widget__links_two_list li a:hover {
  color: var(--thm-primary);
}

.footer-widget__tweets_two {
  margin-left: 12px;
  margin-right: -5px;
}
.footer-widget__tweets_two_list {
}
.footer-widget__tweets_two_list li {
  position: relative;
  display: block;
  padding-left: 40px;
}
.footer-widget__tweets_two_list li + li {
  margin-top: 15px;
}
.footer-widget__tweets_two_list li .tw_icon {
  position: absolute;
  top: 3px;
  left: 0;
}
.footer-widget__tweets_two_list li .tw_icon span {
  color: #cbcfd4;
}
.footer-widget__tweets_two_list li .tw_content {
}
.footer-widget__tweets_two_list li .tw_content p {
  font-size: 18px;
  color: #cbcfd4;
  margin: 0;
  line-height: 26px;
}

.footer-widget__tweets_two_list li .tw_content a {
  color: #cbcfd4;
  display: block;
  transition: all 500ms ease;
}
.footer-widget__tweets_two_list li .tw_content a:hover {
  color: var(--thm-primary);
}
.footer-widget__tweets_two_list li .tw_content span {
}

.site_footer_two_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 140px;
  border-top: 1px solid rgba(204, 211, 224, 0.27);
  padding-top: 30px;
}
.site_footer_two_menu_Designed_by {
}
.site_footer_two_menu_Designed_by p {
  color: #b8bac8;
  margin: 0;
}
.site_footer_two_menu_Designed_by .heart_icon {
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  top: 2px;
}
.site_footer_two_menu_Designed_by .name {
  color: #ffffff;
}
.site_footer_two_bottom__social {
  display: flex;
  align-items: center;
}
.site_footer_two_bottom__social a {
  color: #ffffff;
  transition: all 500ms ease;
}
.site_footer_two_bottom__social a:hover {
  color: var(--thm-primary);
}
.site_footer_two_bottom__social a + a {
  margin-left: 15px;
}

/*--------------------------------------------------------------
# Featured News
--------------------------------------------------------------*/
.featured_news {
  position: relative;
  display: block;
  padding: 145px 0 115px;
}
.featured_news_top {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 70px 70px 135px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  z-index: 1;
}
.featured_news_top:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.42);
  border-radius: 10px;
  z-index: -1;
}
.featured_news_content {
  position: relative;
  display: block;
}
.featured_news_content h2 {
  font-size: 60px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 70px;
  margin-bottom: 17px;
}
.featured_news_content p {
  font-size: 24px;
  color: #ffffff;
  margin: 0;
  line-height: 34px;
}
.featured_news_top_btn {
  padding-top: 46px;
}
.featured_news_top_btn .thm-btn {
  background: var(--thm-base);
}
.featured_news_top_btn .thm-btn:hover {
  background: var(--thm-primary);
}

.featured_news_bottom {
  position: relative;
  display: block;
}
.featured_news_bottom_single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.featured_news_bottom_content {
  position: absolute;
  bottom: 35px;
  left: 35px;
}
.featured_news_bottom_img {
  position: relative;
  display: block;
  z-index: 1;
}
.featured_news_bottom_img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.42);
  border-radius: 12px;
}
.featured_news_bottom_img img {
  width: 100%;
  border-radius: 12px;
}
.featured_news_bottom_content {
}
.featured_news_bottom_content h5 {
  font-size: 16px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 26px;
  text-transform: uppercase;
}
.featured_news_bottom_content h3 {
  font-size: 30px;
  font-family: var(--thm-gilroy-bold);
  line-height: 36px;
}
.featured_news_bottom_content h3 a {
  color: #ffffff;
  transition: all 500ms ease;
}
.featured_news_bottom_content h3 a:hover {
  color: var(--thm-primary);
}
/*--------------------------------------------------------------
# Mission And Vission Three
--------------------------------------------------------------*/
.mission_and_vission_three {
  position: relative;
  display: block;
  padding: 0 0 100px;
}
.mission_and_vission_three .block-title {
}
.mission_and_vission_three_single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
.mission_and_vission_three_icon {
  padding-bottom: 33px;
}
.mission_and_vission_three_icon span {
  font-size: 60px;
  color: var(--thm-primary);
  line-height: 60px;
}
.mission_and_vission_three_content {
}
.mission_and_vission_three_content {
}
.mission_and_vission_three_content h3 {
  font-size: 30px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  line-height: 40px;
  margin-bottom: 20px;
}
.mission_and_vission_three_content p {
  margin: 0;
  line-height: 28px;
}
.mission_and_vission_three_arrow {
  padding-top: 26px;
}
.mission_and_vission_three_arrow a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.mission_and_vission_three_arrow a:hover {
  color: var(--thm-primary);
}
.mission_and_vission_three_arrow span {
  font-size: 28px;
}

/*--------------------------------------------------------------
# Campaign Videos
--------------------------------------------------------------*/
.campaign_videos {
  position: relative;
  display: block;
  background: var(--thm-base);
  padding: 145px 0 111px;
}
.campaign_videos .block-title {
}
.campaign_videos .block-title h4 {
  color: #ffffff;
}
.campaign_videos .block-title h2 {
  color: #ffffff;
}
.campaign_videos .block-title .block-title-text {
  color: #ffffff;
}
.campaign_videos_single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.campaign_videos_img {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.campaign_videos_img img {
  width: 100%;
  border-radius: 10px;
  transform: scale(1);
  transition: all 500ms ease;
}
.campaign_videos_single:hover .campaign_videos_img img {
  transform: scale(1.05);
}
.campaign_videos_box {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.campaign_videos_btn {
  height: 72px;
  width: 72px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--thm-primary);
  transition: all 500ms ease;
}
.campaign_videos_btn:hover {
  background: var(--thm-primary);
  color: #ffffff;
}
.campaign_videos_content {
  padding-top: 23px;
}
.campaign_videos_content h5 {
  font-size: 16px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 26px;
}
.campaign_videos_content p {
  font-size: 24px;
  font-family: var(--thm-gilroy-bold);
  line-height: 34px;
  margin: 0;
}
.campaign_videos_content p a {
  color: #ffffff;
  transition: all 500ms ease;
}
.campaign_videos_content p a:hover {
  color: var(--thm-primary);
}
/*--------------------------------------------------------------
# Campaign Videos
--------------------------------------------------------------*/
.causes_three {
  position: relative;
  display: block;
  background: #ebebeb;
  padding: 145px 0 115px;
}
.causes_three .block-title {
}
.causes_three_single {
  margin-bottom: 30px;
}
.causes_three_img {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.causes_three_img img {
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  opacity: 1;
  transform: scale(1);
  transition: transform 500ms ease, opacity 500ms ease;
}
.causes_three_single:hover .causes_three_img img {
  opacity: 0.7;
  transform: scale(1.05);
}
.causes_three_content {
  position: relative;
  display: block;
  background: #ffffff;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 31px 30px 50px;
}
.causes_three_title {
}
.causes_three_title h5 {
  font-size: 16px;
  color: var(--thm-primary);
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
}
.causes_three_title h3 {
  font-size: 24px;
  font-family: var(--thm-gilroy-bold);
  line-height: 32px;
  margin-bottom: 15px;
  margin-top: 4px;
}
.causes_three_title h3 a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.causes_three_title h3 a:hover {
  color: var(--thm-primary);
}
.causes_three_text {
  margin-bottom: 20px;
}
.causes_three_text p {
  margin: 0;
  line-height: 28px;
}

.causes_three_content .progress-levels {
  max-width: 260px;
}
.causes_three_content .progress-levels .progress-box {
  margin-bottom: 0px;
}
.causes_three_content .progress-levels .progress-box .bar .bar-fill {
  height: 8px;
}
.causes_three_content .progress-levels .progress-box .bar .bar-innner {
  height: 8px;
  background: #e9e8e8;
}
.causes_three_content .progress-levels .progress-box .inner .count-text {
  color: var(--thm-base);
  font-size: 20px;
  line-height: 30px;
}
.causes_three_content .progress-levels .progress-box .inner .percent {
  color: var(--thm-base);
  font-size: 20px;
  line-height: 30px;
}

.causes_three_content .progress-levels .progress-box .inner .text {
  color: var(--thm-primary);
  font-size: 18px;
  line-height: 28px;
  padding-bottom: 8px;
}
.causes_three_content .progress-levels .progress-box .inner .text span {
  font-size: 16px;
  color: #999999;
}
.causes_three_content
  .progress-levels
  .progress-box
  .bar
  .bar-innner
  .skill-percent {
  right: -56px;
  width: 44px;
}

/*--------------------------------------------------------------
# Message And Volunteer
--------------------------------------------------------------*/
.message_and_volunteer {
  position: relative;
  display: block;
  padding: 145px 0 145px;
}
.message_and_volunteer .block-title {
  margin-bottom: 18px;
}
.message_and_volunteer .block-title h4 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 6px;
}
.message_and_volunteer .block-title h2 {
  font-size: 60px;
  line-height: 72px;
}
.message_and_volunteer_text {
}
.message_and_volunteer_text p {
  margin: 0;
  line-height: 30px;
}
.message_and_volunteer_text.marl {
  margin-left: 20px;
}
.message_and_volunteer_signature {
  display: flex;
  align-items: center;
  margin-top: 55px;
}
.message_and_volunteer_signature_img {
}
.message_and_volunteer_signature_img img {
}
.message_and_volunteer_signature_text {
  margin-left: 45px;
  top: -10px;
  position: relative;
}
.message_and_volunteer_signature_text p {
  font-size: 30px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-heavy);
  line-height: 40px;
  margin: 0;
}

.message_and_volunteer_right {
  position: relative;
  display: block;
  background: #00B0F0;
  padding: 40px 50px 50px;
  border-radius: 24px;
  margin-left: 104px;
}
.message_and_volunteer_title {
  padding-bottom: 27px;
}
.message_and_volunteer_title h3 {
  font-size: 42px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 52px;
  margin-bottom: 5px;
}
.message_and_volunteer_title p {
  font-size: 20px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
  margin: 0;
  text-transform: uppercase;
}
.message_and_volunteer_form {
  position: relative;
  display: block;
}
.message_and_volunteer_input_box {
}
.message_and_volunteer_input_box input[type="text"] {
  height: 54px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  color: #5e5858;
  font-size: 18px;
  margin-bottom: 20px;
  padding: 0 20px;
  outline: none;
}
.message_and_volunteer_input_box textarea {
  height: 120px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  color: #5e5858;
  font-size: 18px;
  margin-bottom: 10px;
  padding: 20px 20px 20px 20px;
  outline: none;
}
.message_and_volunteer_btn {
}
.message_and_volunteer_btn .thm-btn {
  background: var(--thm-base);
}
.message_and_volunteer_btn .thm-btn:hover {
  background: var(--thm-primary);
}

/*--------------------------------------------------------------
# Social Updates
--------------------------------------------------------------*/
.social_updates {
  position: relative;
  display: block;
  padding: 145px 0 256px;
}
.social_updates .block-title {
}
.social_updates_single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  overflow: hidden;
}
.social_updates_top {
  position: relative;
  display: flex;
  background: var(--thm-base);
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 12px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.social_updates_logo_text_box {
  position: relative;
  display: flex;
  align-items: center;
}
.social_updates_logo {
}
.social_updates_logo img {
}
.social_updates_text {
  margin-left: 8px;
}
.social_updates_text h3 {
  font-size: 16px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 26px;
}
.social_updates_top_social {
}
.social_updates_top_social a {
  color: #ffffff;
}
.social_updates_bottom_content {
  position: relative;
  display: block;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background: #ffffff;
  box-shadow: 3px 5.196px 18px 0px rgb(16, 41, 188, 0.06);
  padding: 12px 12px 23px;
  overflow: hidden;
}
.social_updates_bottom_img {
  position: relative;
  display: block;
  overflow: hidden;
}
.social_updates_bottom_img img {
  width: 100%;
  opacity: 1;
  transform: scale(1);
  transition: transform 500ms ease, opacity 500ms ease;
}
.social_updates_single:hover .social_updates_bottom_img img {
  opacity: 0.7;
  transform: scale(1.05);
}
.social_updates_bottom_text {
  padding-bottom: 21px;
  padding-top: 19px;
}
.social_updates_bottom_text p {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}
.social_updates_bottom_text .link_text {
  color: var(--thm-base);
  font-family: var(--thm-font);
  font-weight: 400;
}
.social_updates_bottom_text a {
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
}
.social_updates_bottom_post_time_like_counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social_updates_bottom_post_time {
}
.social_updates_bottom_post_time p {
  font-size: 12px;
  margin: 0;
  color: #999999;
  line-height: 22px;
}
.social_updates_bottom_like_counter {
}
.social_updates_bottom_like_counter h4 {
  color: #999999;
  font-size: 12px;
}
.social_updates_bottom_like_counter span {
  color: var(--thm-primary);
  font-size: 15px;
  margin-right: 8px;
}
.social_updates_btn {
  text-align: center;
  padding-top: 40px;
}

/*--------------------------------------------------------------
# Site Footer Three
--------------------------------------------------------------*/
.site_footer_three {
  position: relative;
  display: block;
  background: #000000;
  padding: 275px 0 65px;
  margin-top: -130px;
}
.site_footer_three_top {
  position: relative;
  display: block;
  padding-bottom: 82px;
}
.site_footer_three_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site_footer_three_logo {
}
.site_footer_three_logo img {
    max-width: 350px;
}
.site_footer_three_top__social {
  display: flex;
  align-items: center;
}
.site_footer_three_top__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 42px;
  width: 42px;
  border-radius: 7px;
  background: #ffffff;
  color: #11134f;
  font-size: 20px;
  transition: all 500ms ease;
}
.site_footer_three_top__social a:hover {
  background: var(--thm-primary);
  color: #ffffff;
}
.site_footer_three_top__social a + a {
  margin-left: 12px;
}

.site_footer_three_bottom {
}
.footer_widget__stay_connected {
}
.stay_connected_text {
  color: #cbcfd4;
  line-height: 28px;
  margin: 0;
  padding-top: 4px;
  margin-bottom: 20px;
}

.footer-widget__links_two.three {
  margin-left: 0;
}
.footer-widget__our_campaign.three {
  margin-left: -16px;
}

.footer-widget__gallery {
  margin-left: -28px;
}

.footer-widget-gallery-list {
  padding-top: 6px;
}
.footer-widget-gallery-list li {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 8px;
}

.footer-widget-gallery-list li .gallery-img {
  position: relative;
  display: block;
}

.footer-widget-gallery-list li .gallery-img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  transform: scaleX(0);
  transition: all 500ms ease;
}
.footer-widget-gallery-list li:hover .gallery-img:before {
  transform: scaleX(1);
}
.footer-widget-gallery-list li .gallery-img img {
  border-radius: 7px;
  width: 100%;
}
.gallery-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-primary);
  font-size: 15px;
  transform: scale(0);
  transition: all 500ms ease;
}
.footer-widget-gallery-list li:hover .gallery-img-hover {
  transform: scale(1);
}
.gallery-img-hover a {
  color: #ffffff;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.main-nav__logo{
color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
}
.main-nav__logo span {
    color: #00bfff;
}
.page-header {
  position: relative;
  display: block;
  background: var(--thm-primary);
  padding: 160px 0 59px;
}
.page-header-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 974px;
}
.page-header-content {
}
.page-header-content h2 {
  font-size: 80px;
  color: #ffffff;
  font-family: var(--thm-gilroy-heavy);
  line-height: 100px;
  margin-bottom: 33px;
}
.page-header-content p {
  font-size: 30px;
  color: #ffffff;
  line-height: 42px;
  margin: 0;
}
.thm-breadcrumb {
  position: relative;
  display: block;
  padding-top: 60px;
}
.thm-breadcrumb li {
  position: relative;
  display: inline-block;
}
.thm-breadcrumb li + li {
  margin-left: 15px;
}
.thm-breadcrumb li span {
  font-size: 18px;
  color: #ffffff;
  transition: all 500ms ease;
}
.thm-breadcrumb li a {
  font-size: 18px;
  color: #ffffff;
  transition: all 500ms ease;
}
.thm-breadcrumb li:hover a {
  color: #00B0F0;
}
.thm-breadcrumb li:hover span {
  color: #00B0F0;
}

.mission_and_vission_three.four {
  background: #0a2387;
  padding-top: 145px;
}

.mission_and_vission_three.four .mission_and_vission_three_icon span {
  color: #00B0F0;
}
.mission_and_vission_three.four .mission_and_vission_three_content h3 {
  color: #ffffff;
}
.mission_and_vission_three.four .mission_and_vission_three_content p {
  color: #ffffff;
}
.mission_and_vission_three.four .mission_and_vission_three_arrow a {
  color: #ffffff;
}
.mission_and_vission_three.four .mission_and_vission_three_arrow a:hover {
  color: var(--thm-primary);
}

/*--------------------------------------------------------------
# History
--------------------------------------------------------------*/
.history {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 145px 0 145px;
}
.history .block-title {
}
.history_box {
  position: relative;
  display: block;
  max-width: 970px;
  width: 100%;
  margin: 0 auto;
}
.history_main_box {
  float: left;
  position: relative;
  display: block;
}
.history_main_box li {
  position: relative;
  display: block;
  max-width: 370px;
  width: 100%;
}
.history_main_box li:before {
  position: absolute;
  top: 33px;
  right: -97px;
  height: 3px;
  width: 97px;
  content: "";
  background: #f9b602;
}
.history_main_box li:after {
  position: absolute;
  top: 15px;
  right: -133px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  border: 10px solid var(--thm-base);
  background: #ffffff;
  content: "";
  z-index: 2;
}
.history_main_box li + li {
  margin-top: 60px;
}
.history_main_box li .history_date_box {
  text-align: center;
  background: var(--thm-primary);
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  padding: 19px 0;
}
.history_main_box li .history_date_box span {
  color: #ffffff;
}
.history_main_box li .history_content_box {
  background-color: rgb(255, 255, 255);
  box-shadow: 2.5px 4.33px 30px 0px rgb(144, 109, 63, 0.12);
  text-align: center;
  padding: 51px 45px 50px;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
.history_main_box li .history_content_box h3 {
  font-size: 30px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  line-height: 40px;
  margin-bottom: 17px;
}
.history_main_box li .history_content_box p {
  margin: 0;
  line-height: 32px;
}
.history_main_box.two {
  margin-left: 230px;
  margin-top: 185px;
}
.history_main_box_border {
  position: absolute;
  top: 15px;
  bottom: 74px;
  width: 3px;
  background: #00B0F0;
  left: 483px;
}
.history_main_box_border:before {
  position: absolute;
  bottom: 0;
  left: -16px;
  height: 36px;
  width: 36px;
  background: var(--thm-base);
  content: "\f107";
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.history_main_box.two li:before {
  position: absolute;
  top: 33px;
  left: -97px;
  height: 3px;
  width: 97px;
  content: "";
  background: #f9b602;
}
.history_main_box.two li:after {
  position: absolute;
  top: 15px;
  left: -133px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  border: 10px solid var(--thm-base);
  background: #ffffff;
  content: "";
  z-index: 2;
}

/*--------------------------------------------------------------
# Featured Banner
--------------------------------------------------------------*/
.featured_banner {
  position: relative;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 145px 0 145px;
  z-index: 1;
}
.featured_banner:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.36);
  z-index: -1;
}
.featured_banner_inner {
}
.featured_banner_inner .block-title {
  margin-bottom: 42px;
}
.featured_banner_inner .block-title h4 {
  font-size: 30px;
  color: #ffffff;
  line-height: 40px;
  margin-bottom: 6px;
}
.featured_banner_inner .block-title h2 {
  font-size: 60px;
  color: #ffffff;
  line-height: 72px;
  margin-bottom: 21px;
}
.featured_banner_inner .block-title .block-title-text {
  color: #ffffff;
}
.featured_banner_btn {
}
.featured_banner_btn .thm-btn {
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team_one {
  position: relative;
  display: block;
  padding: 145px 0 145px;
}
.team_one .block-title {
}
.team_one_single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  text-align: center;
  overflow: hidden;
}
.team_one_img {
  position: relative;
  display: block;
}
.team_one_img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  transform: scale(0);
  transition: all 500ms ease;
}
.team_one_single:hover .team_one_img:before {
  transform: scale(1);
}
.team_one_img img {
  width: 100%;
  border-radius: 20px;
}

.team_one_icon {
  position: absolute;
  bottom: -25px;
  right: 50px;
}
.team_one_icon a {
  height: 50px;
  width: 50px;
  background: var(--thm-primary);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
.team_one_single:hover .team_one_icon a {
  background: var(--thm-base);
}

.team_one_content {
  padding-top: 35px;
}
.team_one_content h3 {
  font-size: 30px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  line-height: 41px;
}
.team_one_content p {
  margin: 0;
}
.team_one_btn {
  text-align: center;
  padding-top: 34px;
}

/*--------------------------------------------------------------
# Funfacts Two
--------------------------------------------------------------*/
.funfacts_two {
  position: relative;
  display: block;
  padding: 116px 0 79px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.funfacts_two:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(245, 56, 31, 0.82);
  z-index: -1;
}
.funfacts_two_single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
.funfacts_two_iocn {
}
.funfacts_two_iocn i {
  font-size: 65px;
  color: #ffffff;
  line-height: 65px;
}
.funfacts_two_content {
}
.funfacts_two_content h2 {
  font-size: 72px;
  color: #00B0F0;
  font-family: var(--thm-gilroy-heavy);
  line-height: 82px;
  display: inline-block;
  padding: 30px 0 20px;
}
.funfacts_two_content span {
  font-size: 72px;
  color: #00B0F0;
  font-family: var(--thm-gilroy-heavy);
  line-height: 82px;
  display: inline-block;
}
.funfacts_two_content p {
  font-size: 36px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 46px;
  margin: 0;
}

/*--------------------------------------------------------------
# Sponsors
--------------------------------------------------------------*/
.sponsors {
  position: relative;
  display: block;
  padding: 145px 0 224px;
  z-index: 2;
}
.sponsors .block-title {
}
.sponsors_box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.sponsors_box_single {
  position: relative;
  overflow: hidden;
  flex: 0 0 15%;
  max-width: 15%;
  width: 100%;
  margin-bottom: 50px;
}
.sponsors_box_single a {
  position: relative;
  display: inline-block;
}
.sponsors_box_single a img {
  opacity: 1;
  transition: all 0.2s ease-in-out 0.1s;
}
.sponsors_box_single:hover a img {
  opacity: 0;
  transition: all 0.8s ease-in-out 0.1s;
}
.sponsors_overly_box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(55px);
  transition: all 0.4s ease-in-out 0.1s;
}
.sponsors_box_single:hover .sponsors_overly_box {
  transform: translateY(0px);
}
.sponsors_box_single .sponsors_overly_box a {
  position: relative;
  display: inline-block;
}
.sponsors_box_single .sponsors_overly_box a img {
  opacity: 1;
}

.special_message.three {
  z-index: 2;
}
.special_message.three:before {
  display: none;
}
.special_message.three .special_message_inner {
  padding: 72px 70px 61px;
}

/*--------------------------------------------------------------
# Joining Us
--------------------------------------------------------------*/
.joining_us {
  position: relative;
  display: block;
  padding: 145px 0 170px;
}
.joining_us_left {
}
.joining_us_title {
  margin-bottom: 44px;
  margin-top: 3px;
}
.joining_us_title h4 {
  font-size: 30px;
  color: var(--thm-primary);
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 40px;
  margin-bottom: 6px;
}
.joining_us_title h2 {
  font-size: 60px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-heavy);
  line-height: 72px;
}

.joining_form {
}
.joining_form_input_box {
}
.joining_form_input_box input[type="text"] {
  height: 60px;
  width: 100%;
  border: 1px solid #d9d8e4;
  border-radius: 7px;
  padding: 0 15px;
  font-size: 20px;
  color: #999999;
  outline: none;
  background: #ffffff;
  margin-bottom: 20px;
}

.joining_form_input_box
  .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  height: 60px;
}
.joining_form_input_box .bootstrap-select .dropdown-toggle:before {
}
.joining_form_input_box .bootstrap-select > .dropdown-toggle {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: 1px solid #d9d8e4;
  padding: 0 30px;
  outline: none;
  border-radius: 7px;
  background: #ffffff;
  color: #999999;
  font-size: 20px;
}
.joining_form_input_box .bootstrap-select .dropdown-toggle:before {
  position: absolute;
  top: 0;
  right: 20px;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #999999;
  bottom: 0;
  z-index: 2;
  cursor: pointer;
}
.joining_form_input_box .dropdown-toggle::after {
  display: none;
}

.joining_form_input_box textarea {
  height: 120px;
  width: 100%;
  border: 1px solid #d9d8e4;
  border-radius: 7px;
  padding: 10px 30px 20px;
  font-size: 20px;
  color: #999999;
  outline: none;
  background: #ffffff;
  margin-top: 20px;
}
.joingin_form_btn {
  margin-top: 9px;
}

.joining_us_right {
  position: relative;
  display: block;
  margin-left: 100px;
}
.joining_us_img {
  position: relative;
  display: block;
  z-index: 2;
}
.joining_us_img:before {
  position: absolute;
  top: 45px;
  right: -45px;
  height: 100%;
  width: 100%;
  border: 6px solid #00B0F0;
  border-radius: 12px;
  content: "";
  z-index: -1;
}
.joining_us_img img {
  width: 100%;
  border-radius: 12px;
}

/*--------------------------------------------------------------
# Benefits Of Joining
--------------------------------------------------------------*/
.benefits_of_joining {
  position: relative;
  display: block;
  padding: 145px 0 111px;
}
.benefits_of_joining .block-title {
  margin-bottom: 75px;
}
.benefits_of_joining_single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.benefits_of_joining_list {
}
.benefits_of_joining_list li {
  position: relative;
  display: block;
  padding-left: 45px;
}
.benefits_of_joining_list li + li {
  margin-top: 45px;
}
.benefits_of_joining_list li .icon {
  position: absolute;
  top: 0;
  left: 0;
}
.benefits_of_joining_list li .icon i {
  color: var(--thm-primary);
  font-size: 21px;
}
.benefits_of_joining_list li .text {
}
.benefits_of_joining_list li .text p {
  margin: 0;
  line-height: 28px;
}

/*--------------------------------------------------------------
# Inner Pages Footer
--------------------------------------------------------------*/
.site_footer_three.inner-pages-footer {
  padding-top: 140px;
  margin: 0;
}

/*--------------------------------------------------------------
# Donation Form
--------------------------------------------------------------*/
.donation_form {
  padding: 145px 0 145px;
}
.donation_form_title {
  position: relative;
  display: block;
  margin-right: 100px;
}
.donation_form_title .block-title {
}
.donation_form_title .block-title h4 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 5px;
}
.donation_form_title .block-title h2 {
  font-size: 60px;
  line-height: 72px;
  margin-bottom: 19px;
  text-transform: inherit;
}

.donation_form_right {
  position: relative;
  display: block;
}
.donation_form_box {
}
.donation_form_box li {
  position: relative;
  display: inline-block;
  margin-right: 13px;
  margin-top: 20px;
}
.donation_form_box li.active a {
  background: var(--thm-base);
  color: #ffffff;
}
.donation_form_box li.other_text a {
  font-size: 20px;
}
.donation_form_box li:nth-child(1) {
  margin-top: 0;
}
.donation_form_box li:nth-child(2) {
  margin-top: 0;
}
.donation_form_box li:nth-child(3) {
  margin-top: 0;
  margin-right: 0;
}
.donation_form_box li:nth-child(4) {
}
.donation_form_box li:nth-child(5) {
}
.donation_form_box li:nth-child(6) {
  margin-right: 0;
}
.donation_form_box li:nth-child(7) {
}
.donation_form_box li:nth-child(8) {
}
.donation_form_box li:nth-child(9) {
  margin-right: 0;
}
.donation_form_box li a {
  font-size: 30px;
  color: #999999;
  border: 1px solid #d9d8e4;
  border-radius: 7px;
  height: 72px;
  width: 145px;
  text-align: center;
  line-height: 72px;
  display: inline-block;
  transition: all 500ms ease;
}
.donation_form_box li a:hover {
  background: var(--thm-base);
  color: #ffffff;
}

.donation_form_btn {
  margin-top: 20px;
}
.donation_form_btn .thm-btn {
  padding: 19px 166px;
  padding-right: 14px;
  font-size: 22px;
}
.donation_form_btn .thm-btn i {
  margin-left: 110px;
}

/*--------------------------------------------------------------
# Donation Featured Banner
--------------------------------------------------------------*/
.donation_featured_banner_two {
  position: relative;
  display: block;
  padding: 145px 0 107px;
  background: #332e98;
}
.donation_featured_banner_two_single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.featured_banner_list {
}
.featured_banner_list li {
  position: relative;
  display: block;
  padding-left: 111px;
  margin-bottom: 30px;
}
.featured_banner_list li .icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 72px;
  width: 72px;
  background: #ffffff;
  border-radius: 50%;
  color: var(--thm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 500ms ease;
}
.featured_banner_list li .icon:hover {
  background: var(--thm-primary);
  color: #ffffff;
}
.featured_banner_list li .icon span {
}
.featured_banner_list li .content {
}
.featured_banner_list li .content h3 {
  font-size: 30px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 40px;
  margin-bottom: 23px;
}
.featured_banner_list li .content p {
  color: #ffffff;
  margin: 0;
  line-height: 28px;
}

/*--------------------------------------------------------------
# How We Use Donation
--------------------------------------------------------------*/
.how_we_use_donation {
  position: relative;
  display: block;
  padding: 145px 0 137px;
}
.how_we_use_donation .block-title {
}
.how_we_use_donation_inner {
  position: relative;
  display: block;
}
.how_we_use_donation_box {
  display: flex;
  flex-direction: row;
}
.how_we_use_donation_box + .how_we_use_donation_box {
  margin-top: 58px;
}
.how_we_use_donation_iocn {
}
.how_we_use_donation_iocn span {
  height: 120px;
  width: 120px;
  background: var(--thm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  color: #ffffff;
  border-radius: 12px;
  transition: all 500ms ease;
}
.how_we_use_donation_iocn span:hover {
  background: var(--thm-black);
}
.how_we_use_donation_content {
  margin-left: 40px;
  margin-top: -10px;
}
.how_we_use_donation_content h3 {
  font-size: 30px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  line-height: 40px;
  margin-bottom: 28px;
}
.how_we_use_donation_content p {
  margin: 0;
  line-height: 28px;
}

/*--------------------------------------------------------------
# Event Page
--------------------------------------------------------------*/
.event_page {
  position: relative;
  display: block;
  padding: 145px 0 145px;
}
.event_page_single {
  display: flex;
  flex-direction: row;
}
.event_page_single + .event_page_single {
  margin-top: 65px;
}
.event_pate_img {
  position: relative;
  display: block;
}
.event_pate_img:before {
  border-radius: 16px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  content: "";
  transform: scaleY(0);
  transition: all 500ms ease;
}
.event_page_single:hover .event_pate_img:before {
  transform: scaleY(1);
}
.event_pate_img img {
  border-radius: 15px;
}
.event_page_date_box {
  height: 72px;
  width: 72px;
  background: var(--thm-primary);
  text-align: center;
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 3px;
}

.event_page_date_box h4 {
  font-size: 30px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 19px;
  padding-top: 15px;
}
.event_page_date_box span {
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  font-size: 16px;
  text-transform: uppercase;
}
.event_page_content {
  margin-left: 50px;
}
.event_page_content_title {
  margin-top: -8px;
}
.event_page_content_title h4 {
  color: var(--thm-primary);
  font-size: 20px;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 30px;
}
.event_page_content_title h3 {
  font-size: 36px;
  font-family: var(--thm-gilroy-bold);
  line-height: 49px;
}
.event_page_content_title h3 a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.event_page_content_title h3 a:hover {
  color: var(--thm-primary);
}
.event_page_text {
  padding-top: 21px;
  padding-bottom: 25px;
}
.event_page_text p {
  margin: 0;
  line-height: 28px;
}
.event_page_time_location {
}
.event_page_time_location li {
  position: relative;
  display: inline-block;
}
.event_page_time_location li + li {
  margin-left: 25px;
}
.event_page_time_location li i {
  color: #00B0F0;
  padding-right: 10px;
}
.event_page_btn {
  padding-top: 44px;
}
.event_page_btn .thm-btn {
}

.thm_pg_pagination {
  position: relative;
  display: block;
  text-align: center;
  padding-top: 90px;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pg_pagination {
}
.pg_pagination li {
  position: relative;
  display: inline-block;
}
.pg_pagination li + li {
  margin-left: 15px;
}
.pg_pagination li.next a {
  color: var(--thm-primary);
  border: 1px solid var(--thm-base);
}
.pg_pagination li a {
  height: 56px;
  width: 56px;
  border: 1px solid #d9d8e4;
  color: var(--thm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #ffffff;
  transition: all 500ms ease;
}
.pg_pagination li a:hover {
  background: var(--thm-base);
  color: #ffffff;
}

/*--------------------------------------------------------------
# Even Details
--------------------------------------------------------------*/
.event_details {
  position: relative;
  display: block;
  padding: 145px 0 78px;
}
.event_details_left {
}
.even_details_img {
}
.even_details_img img {
  width: 100%;
  border-radius: 15px;
}
.even_details_content {
  padding-top: 42px;
}
.even_details_title {
  padding-bottom: 27px;
}
.even_details_title h4 {
  color: var(--thm-primary);
  font-size: 20px;
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  line-height: 30px;
  margin-bottom: 5px;
}
.even_details_title h3 {
  font-size: 48px;
  font-family: var(--thm-gilroy-bold);
  line-height: 60px;
  margin-bottom: 20px;
  color: var(--thm-base);
}

.even_details_title p {
  margin: 0;
  line-height: 26px;
}
.even_details_text {
}
.even_details_text p {
  margin: 0;
  line-height: 28px;
}

.even_details_sidebar {
  position: relative;
  display: block;
}
.even_details_sidebar_single {
  position: relative;
  display: block;
}
.even_details_sidebar_single + .even_details_sidebar_single {
  margin-top: 60px;
}
.even_details_sidebar_widget_title {
  position: relative;
  display: block;
  text-align: center;
  background: var(--thm-base);
  padding: 22px 0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.even_details_single_box {
}
.even_details_sidebar_widget_title h3 {
  font-size: 24px;
  font-family: var(--thm-gilroy-bold);
  color: #ffffff;
}
.even_details_sidebar_content {
  position: relative;
  display: block;
  padding: 30px 30px 29px;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 3.464px 30px 0px rgb(71, 117, 192, 0.1);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.even_details_sidebar_content_single {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.even_details_sidebar_content_single + .even_details_sidebar_content_single {
  margin-top: 4px;
}
.even_details_sidebar_content_single .icon {
}
.even_details_sidebar_content_single .icon i {
  color: var(--thm-primary);
  font-size: 16px;
}
.even_details_sidebar_content_single .icon span {
  font-size: 16px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  margin-left: 8px;
}
.even_details_sidebar_content_single .date_box {
}
.even_details_sidebar_content_single .date_box p {
  font-size: 16px;
  margin: 0;
}

.even_details_speaker_box {
  position: relative;
  display: block;
}
.even_details_speaker_box_inner {
  position: relative;
  display: block;
  padding: 40px 30px 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 3.464px 30px 0px rgb(71, 117, 192, 0.1);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.even_details_speaker_box_content {
  display: flex;
  align-items: center;
}
.even_details_speaker_box_content + .even_details_speaker_box_content {
  margin-top: 12px;
}
.even_details_speaker_box_img {
}
.even_details_speaker_box_img img {
}
.even_details_speaker_box_text {
  margin-left: 20px;
}
.even_details_speaker_box_text h4 {
  font-size: 20px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
}
.even_details_speaker_box_text p {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}

.even_details_map {
  position: relative;
  display: block;
}
.even_details_map_box {
  position: relative;
  display: block;
  padding: 40px 30px 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 3.464px 30px 0px rgb(71, 117, 192, 0.1);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
iframe.event_details_google-map {
  height: 190px;
  width: 100%;
  border: none;
}
/*--------------------------------------------------------------
# Releted Event
--------------------------------------------------------------*/
.related_event {
  position: relative;
  display: block;
  padding-bottom: 115px;
}
.related_event_title {
  font-size: 36px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-bold);
  line-height: 46px;
  margin-bottom: 39px;
}
.related_event_single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.related_event_img {
  position: relative;
  display: block;
}
.related_event_img img {
  width: 100%;
}
.related_event_content {
  display: flex;
  align-items: center;
  padding-top: 21px;
}
.related_event_date_box {
  height: 60px;
  width: 60px;
  background: var(--thm-primary);
  text-align: center;
  border-radius: 3px;
  padding: 0 17px;
}
.related_event_date_box h4 {
  font-size: 24px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 11px;
  padding-top: 15px;
}
.related_event_date_box span {
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  font-size: 14px;
  text-transform: uppercase;
}
.related_event_content_box {
  margin-left: 20px;
}
.related_event_content_box h3 {
  font-size: 24px;
  font-family: var(--thm-gilroy-bold);
  line-height: 34px;
}
.related_event_content_box h3 a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.related_event_content_box h3 a:hover {
  color: var(--thm-primary);
}
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  position: relative;
  display: block;
  padding: 135px 0 145px;
}
.gallery-filter {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 55px;
}
.gallery-filter li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.gallery-filter li + li {
  margin-left: 50px;
}
.gallery-filter li .filter-text {
  font-size: 21px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  display: block;
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-filter li:hover .filter-text,
.gallery-filter li.active .filter-text {
  color: var(--thm-primary);
}

.gallery_single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  overflow: hidden;
}
.gallery_img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  z-index: 1;
}
.gallery_img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(250, 183, 2, 0.86);
  transform: scaleX(0);
  border-radius: 18px;
  z-index: 1;
  transition: all 500ms ease;
}
.gallery_single:hover .gallery_img:before {
  transform: scaleX(1);
}
.gallery_img img {
  width: 100%;
  border-radius: 18px;
  transform: scale(1);
  transition: all 500ms ease;
}
.gallery_single:hover .gallery_img img {
  transform: scale(1.05);
}
.gallery_icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  z-index: 3;
  transition: all 800ms ease;
}
.gallery_single:hover .gallery_icon {
  transform: scale(1);
}
.gallery_icon span {
  font-size: 60px;
  color: #ffffff;
  line-height: 60px;
}
.gallery_btn {
  text-align: center;
  padding-top: 40px;
}

/*--------------------------------------------------------------
# Member Styled 1
--------------------------------------------------------------*/
.member_style_1 {
  position: relative;
  display: block;
  padding: 145px 0 30px;
}
.member_style_1_single {
  position: relative;
  display: block;
  border: 1px solid #d9d8e4;
  border-radius: 24px;
  padding: 44px 50px 46px;
  margin-bottom: 30px;
}

.member_style_1_top {
  position: relative;
  display: flex;
  align-items: center;
}
.member_style_1_img {
}
.member_style_1_img img {
}
.member_style_1_content {
  margin-left: 30px;
}
.member_style_1_title {
}
.member_style_1_title h3 {
  font-size: 30px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-bold);
  line-height: 40px;
  margin-bottom: 3px;
}
.member_style_1_title span {
}
.member_style_1_title h5 {
  font-size: 20px;
  color: var(--thm-black);
  font-weight: 700;
  line-height: 30px;
}
.member_style_1_social {
  display: flex;
  align-items: center;
  margin-top: 14px;
}
.member_style_1_social a {
  font-size: 20px;
  transition: all 500ms ease;
}

.member_style_1_social a + a {
  margin-left: 15px;
}
.member_style_1_social a.clr-link {
  color: #0077b5;
}
.member_style_1_social a.clr-fb {
  color: #3b5998;
}
.member_style_1_social a.clr-tw {
  color: #1da1f2;
}
.member_style_1_social a.clr-ins {
  color: #dd4b39;
}
.member_style_1_social a:hover {
  color: var(--thm-black);
}
.member_style_1_text {
  padding: 39px 0 34px;
}
.member_style_1_text p {
  margin: 0;
  line-height: 28px;
}
.member_style_1_signature {
}
.member_style_1_signature img {
}

/*--------------------------------------------------------------
# Member Style Two
--------------------------------------------------------------*/
.team_one.member_style_two {
  padding-top: 85px;
}

.thm_pg_pagination.member_pg_pagination {
  padding-top: 28px;
}

/*--------------------------------------------------------------
# News Page
--------------------------------------------------------------*/
.news_page {
  position: relative;
  display: block;
  padding: 145px 0 145px;
}
.news_page_inner {
  position: relative;
  display: block;
}
.news_page_single {
  position: relative;
  display: block;
  margin-bottom: 60px;
}
.news_page_img {
  position: relative;
  display: block;
}
.news_page_img img {
  width: 100%;
}
.news_page_content {
  padding-top: 38px;
}
.news_page_title {
  margin-bottom: 47px;
}
.news_page_title h4 {
  font-size: 20px;
  color: var(--thm-primary);
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
  margin-bottom: 4px;
}
.news_page_title h4 span {
  font-size: 18px;
  color: var(--thm-gray);
  font-weight: 400;
  font-family: var(--thm-font);
  margin-left: 15px;
}
.news_page_title h2 {
  font-size: 36px;
  font-family: var(--thm-gilroy-heavy);
  line-height: 46px;
  margin-bottom: 22px;
}
.news_page_title h2 a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.news_page_title h2 a:hover {
  color: var(--thm-primary);
}
.news_page_title p {
  margin: 0;
  line-height: 28px;
}
.news_page_btn_and_social_icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news_page_btn {
  padding-top: 0;
}
.news_page_btn .thm-btn {
}
.news_page_social_icon {
}
.news_page_social_icon span {
  font-size: 16px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  margin-right: 23px;
}
.news_page_social_icon a {
  transition: all 500ms ease;
}
.news_page_social_icon a.clr-link {
  color: #3b5998;
}
.news_page_social_icon a.clr-fb {
  color: #1da1f2;
}
.news_page_social_icon a.clr-tw {
  color: #0077b5;
}
.news_page_social_icon a.clr-ins {
  color: #cdccdd;
}
.news_page_social_icon a + a {
  margin-left: 10px;
}

.news_page_social_icon a:hover {
  color: var(--thm-primary);
}

/*========Sidebar==========*/

.sidebar {
  margin-left: 30px;
}

.sidebar__single {
}

.sidebar__single + .sidebar__single {
}

.sidebar__title {
  margin: 0;
  color: var(--thm-black);
  font-size: 30px;
  margin-bottom: 27px;
  font-family: var(--thm-gilroy-bold);
}

.sidebar__search {
}

.sidebar__search-form {
  position: relative;
  margin-bottom: 68px;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: 1px solid #d1dbe5;
  outline: none;
  color: var(--thm-gray);
  font-size: 18px;
  padding-left: 20px;
  height: 60px;
  border-radius: 12px;
  width: 100%;
  padding-right: 60px;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--thm-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--thm-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--thm-gray);
}

.sidebar__search-form button[type="submit"] {
  background-color: transparent;
  color: var(--thm-black);
  font-size: 20px;
  position: absolute;
  top: 0;
  right: 0px;
  width: 60px;
  outline: none;
  border: none;
  height: 60px;
}

.sidebar__post {
}
.sidebar__post .sidebar__title {
  margin-bottom: 34px;
}
.sidebar__post-list {
  margin-bottom: 65px;
}
.sidebar__post-list li {
  position: relative;
  display: flex;
  align-items: center;
}
.sidebar__post-list li + li {
  margin-top: 24px;
}
.sidebar__post-list li .sidebar__post-image {
}
.sidebar__post-list li .sidebar__post-image img {
}
.sidebar__post-content {
  margin-left: 20px;
}
.sidebar__post-content h3 {
  font-size: 20px;
  font-family: var(--thm-gilroy-bold);
  line-height: 20px;
}
.sidebar__post-content h3 a {
  color: var(--thm-black);
  transition: all 500ms ease;
}
.sidebar__post-content h3 a:hover {
  color: var(--thm-primary);
}
.sidebar__post-content h3 span {
  color: #999999;
  font-size: 16px;
  font-family: var(--thm-font);
  font-weight: 400;
  margin: 0;
  line-height: 32px;
  padding-top: 6px;
  display: block;
}

.sidebar__category {
  position: relative;
  display: block;
}
.sidebar__category-list {
  margin: 0;
  margin-bottom: 58px;
}

.sidebar__category-list li + li {
}

.sidebar__category-list li a {
  color: var(--thm-gray);
  font-size: 18px;
  position: relative;
  transition: all 500ms ease;
  padding-left: 23px;
}
.sidebar__category-list li a:hover {
  color: var(--thm-primary);
}
.sidebar__category-list li a::before {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 25px;
  color: var(--thm-primary);
  transition: all 500ms ease;
}
.sidebar__category-list li a:hover:before {
  color: var(--thm-black);
}

.sidebar__tags {
}
.sidebar__tags-list {
}
.sidebar__tags-list li {
  position: relative;
  display: inline-block;
}
.sidebar__tags-list li + li {
  margin-left: 5px;
  margin-top: 10px;
}
.sidebar__tags-list li a {
  color: var(--thm-gray);
  font-size: 16px;
  display: inline-block;
  border: 1px solid #d1d5de;
  text-align: center;
  border-radius: 30px;
  height: 42px;
  width: 105px;
  line-height: 42px;
  transition: all 500ms ease;
}

.sidebar__tags-list li a:hover {
  background: var(--thm-base);
  color: #ffffff;
}

.thm_pg_pagination.news_pg_pagination {
  text-align: left;
  padding-top: 30px;
}

/*--------------------------------------------------------------
# News 2
--------------------------------------------------------------*/
.news_2 {
  position: relative;
  display: block;
  padding: 140px 0 145px;
}
.news_2_single {
  position: relative;
  display: block;
  margin-bottom: 52px;
}
.news_2_img {
  position: relative;
  display: block;
}
.news_2_img:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: rgba(250, 183, 2, 0.86);
  border-radius: 10px;
  transform: scaleX(0);
  transition: all 500ms ease;
}
.news_2_single:hover .news_2_img:before {
  transform: scaleX(1);
}
.news_2_img img {
  width: 100%;
  border-radius: 10px;
}
.news_2_icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 800ms ease;
}
.news_2_single:hover .news_2_icon {
  transform: scale(1);
}
.news_2_icon span {
  font-size: 35px;
  color: #ffffff;
  line-height: 35px;
}
.news_2_content {
  padding-top: 26px;
}
.news_2_content h4 {
  font-size: 20px;
  color: var(--thm-primary);
  font-family: var(--thm-gilroy-bold);
  line-height: 35px;
}
.news_2_content span {
  font-size: 18px;
  color: var(--thm-gray);
  font-family: var(--thm-font);
  font-weight: 400;
  margin-left: 15px;
}
.news_2_content p {
  font-size: 24px;
  font-family: var(--thm-gilroy-bold);
  line-height: 32px;
  margin: 0;
}
.news_2_content p a {
  color: var(--thm-base);
  transition: all 500ms ease;
}
.news_2_content p a:hover {
  color: var(--thm-primary);
}
.news_2_btn {
  text-align: center;
  padding-top: 10px;
}

/*--------------------------------------------------------------
# News Details Featured Image
--------------------------------------------------------------*/
.news_details_featured_image {
  position: relative;
  display: block;
}
.news_details_featured_image img {
  width: 100%;
}

/*--------------------------------------------------------------
# News Details
--------------------------------------------------------------*/
.news_details {
  position: relative;
  display: block;
  padding: 137px 0 145px;
}
.news_details_content {
}
.news_detials_title {
  margin-bottom: 22px;
}
.news_detials_title h4 {
  font-size: 20px;
  color: var(--thm-primary);
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
  margin-bottom: 5px;
}
.news_detials_title span {
  font-size: 18px;
  color: var(--thm-gray);
  font-family: var(--thm-font);
  font-weight: 400;
  margin-left: 15px;
}
.news_detials_title h2 {
  font-size: 48px;
  color: var(--thm-base);
  font-family: var(--thm-gilroy-heavy);
  line-height: 58px;
}
.news_details_author_comment_and_read_box {
  margin-bottom: 24px;
}
.news_details_author {
  position: relative;
  float: left;
}
.news_details_author li {
  position: relative;
  display: block;
}
.news_details_author li .news_details_author_info {
  display: flex;
  align-items: center;
}
.written_by {
}
.written_by span {
  font-size: 16px;
  color: #999999;
  line-height: 26px;
  padding-right: 20px;
}
.news_details_author li .news_details_author_img {
}
.news_details_author li .news_details_author_img img {
}
.news_details_author li .news_details_author_name {
  margin-left: 15px;
}
.news_details_author li .news_details_author_name h4 {
  font-size: 18px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  line-height: 28px;
}

.comment_and_read {
  position: relative;
  float: left;
  margin-left: 45px;
  line-height: 42px;
}
.comment_and_read li {
  position: relative;
  display: inline-block;
  color: #999999;
}
.comment_and_read li:before {
  position: absolute;
  top: 13px;
  bottom: 14px;
  width: 1px;
  left: -23px;
  content: "";
  background: #bbbbbb;
}
.comment_and_read li + li {
  margin-left: 45px;
}

.news_details_text {
}
.news_details_text p {
  line-height: 28px;
}
.news_details_text .text_1 {
}
.news_details_text .text_2 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.news_details_text .text_3 {
}

.news_details_author_description {
  position: relative;
  display: block;
  padding-left: 75px;
  margin-top: 66px;
  margin-bottom: 53px;
}
.news_details_author_description:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: var(--thm-primary);
  width: 5px;
}
.news_details_author_description p {
  font-size: 24px;
  font-style: italic;
  margin: 0;
}
.news_details_author_description h3 {
  position: relative;
  font-size: 20px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
  margin-top: 28px;
}
.news_details_author_description h3:before {
  position: absolute;
  top: 50%;
  left: -49px;
  width: 30px;
  height: 1px;
  content: "";
  background: var(--thm-black);
  transform: translateY(-50%);
}
.news_details_author_description span {
  font-size: 18px;
  color: var(--thm-gray);
  font-family: var(--thm-font);
  font-weight: 400;
  margin-left: 15px;
}

.news_detials_bottom_text {
}
.news_detials_bottom_text p {
  line-height: 28px;
}
.news_detials_bottom_text .text_1 {
  padding-bottom: 10px;
}
.news_detials_bottom_text .text_2 {
}

.news_details__meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 51px;
  margin-bottom: 71px;
}
.news_details__tags {
}
.news_details__tags span {
  font-size: 16px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  margin-right: 15px;
}
.news_details__tags a {
  font-size: 16px;
  color: #666666;
  display: inline-block;
  border: 1px solid #d2d6df;
  border-radius: 30px;
  padding: 3px 30px;
  background: #ffffff;
  transition: all 500ms ease;
}
.news_details__tags a:hover {
  background: var(--thm-base);
  color: #ffffff;
}
.news_details__tags a + a {
  margin-left: 3px;
}
.news_details_share {
}
.news_details_share span {
  font-size: 16px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
  margin-right: 20px;
}
.news_details_share a {
  transition: all 500ms ease;
}
.news_details_share a + a {
  margin-left: 10px;
}
.news_details_share a.clr-link {
  color: #0077b5;
}
.news_details_share a.clr-fb {
  color: #3b5998;
}
.news_details_share a.clr-tw {
  color: #1da1f2;
}
.news_details_share a.clr-ins {
  color: #cdccdd;
}
.news_details_share a:hover {
  color: var(--thm-primary);
}

.news_details_post_navigation {
  display: flex;
  align-items: center;
  margin-bottom: 61px;
}
.news_details_post_navigation li {
  display: inline-block;
  position: relative;
  margin-right: 30px;
}
.news_details_post_navigation li:last-child {
  margin-right: 0;
}
.news_details_post_navigation li h4 {
  font-size: 16px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  text-transform: uppercase;
}
.news_details_post_navigation li a {
  color: var(--thm-black);
}

.news_details_post_navigation li i {
  font-size: 17px;
  color: var(--thm-primary);
  margin-right: 10px;
}
.news_details_post_navigation li p {
  font-size: 20px;
  color: var(--thm-black);
  font-family: var(--thm-gilroy-bold);
  line-height: 30px;
  border-top: 1px solid #d1d5de;
  margin-top: 15px;
  padding-top: 12px;
}

.news_details_post_navigation li a.pg-right {
  position: relative;
  display: block;
  text-align: right;
}
.news_details_post_navigation li a.pg-right i {
  font-size: 17px;
  margin-right: 0;
  margin-left: 10px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-one {
  position: relative;
  display: block;
  margin-bottom: 74px;
}
.comment-one__title,
.comment-form__title {
  margin: 0;
  color: var(--thm-black);
  font-size: 36px;
  margin-bottom: 39px;
  font-family: var(--thm-gilroy-bold);
  line-height: 46px;
}

.comment-one__single {
  display: flex;
}
.comment-one__single.comment_middle {
  padding-left: 120px;
  padding-top: 49px;
  padding-bottom: 49px;
}
.comment-one__content {
  position: relative;
  margin-left: 30px;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 24px;
  font-family: var(--thm-gilroy-bold);
  color: var(--thm-black);
  margin-bottom: 31px;
}
.comment-one__content span {
  color: #999999;
  font-size: 16px;
  font-family: var(--thm-font);
  font-weight: 400;
  display: block;
  margin-top: 10px;
}
.comment-one__content p {
  margin: 0;
}

.comment-one__btn {
  font-size: 15px;
  line-height: 45px;
  padding: 0 30px;
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--thm-gilroy-bold);
  background: none;
  color: var(--thm-black);
  border: 1px solid var(--thm-primary);
  border-radius: 7px;
  transition: all 500ms ease;
}
.comment-one__btn:hover {
  background: var(--thm-primary);
  color: #ffffff;
}
.comment-one__image img {
  width: 112px;
  height: 111px;
  border-radius: 50%;
}

.comment-form .row {
  margin-right: -5px;
  margin-left: -5px;
}
.comment-form .col-xl-6 {
  padding-right: 10px;
  padding-left: 10px;
}
.comment-form .comment-form__title {
  margin-bottom: 29px;
}
.comment-form-title-two {
  margin: 0;
  padding-bottom: 20px;
}
.comment_input_box input[type="text"],
.comment_input_box input[type="email"] {
  height: 60px;
  width: 100%;
  border: 1px solid #d1d5de;
  border-radius: 7px;
  background: #ffffff;
  padding: 0 25px;
  margin-bottom: 20px;
  outline: none;
  font-size: 18px;
  color: var(--thm-gray);
}

.comment_input_box textarea {
  font-size: 16px;
  color: #878986;
  height: 190px;
  width: 100%;
  background: #ffffff;
  padding: 20px 30px 20px;
  border: 1px solid #d1d5de;
  border-radius: 7px;
  outline: none;
  margin-bottom: 10px;
}

.comment_input_box input[type="text"]::-webkit-input-placeholder {
  color: #999999;
}

.comment_input_box input[type="text"]::-moz-placeholder {
  color: #999999;
}

.comment_input_box input[type="text"]:-ms-input-placeholder {
  color: #999999;
}
.comment_input_box input[type="email"]::-webkit-input-placeholder {
  color: #999999;
}

.comment_input_box input[type="email"]:-moz-placeholder {
  color: #999999;
}

.comment_input_box input[type="email"]::-moz-placeholder {
  color: #999999;
}

.comment_input_box input[type="email"]:-ms-input-placeholder {
  color: #999999;
}
.comment_input_box textarea::-webkit-input-placeholder {
  color: #999999;
}
.comment_input_box textarea:-moz-placeholder {
  color: #828690;
}
.comment_input_box textarea::-moz-placeholder {
  color: #999999;
}
.comment_input_box textarea:-ms-input-placeholder {
  color: #999999;
}

/*--------------------------------------------------------------
## Contact Option
--------------------------------------------------------------*/
.contact_options {
  position: relative;
  display: block;
  padding: 145px 0 115px;
}
.contact_options .block-title {
}
.contact_options_single {
  position: relative;
  display: block;
  border-radius: 15px;
  background: #00B0F0;
  text-align: center;
  padding: 70px 0 65px;
  margin-bottom: 30px;
  transition: all 500ms ease;
}
.contact_options_single.pdb {
  padding-bottom: 96px;
}
.contact_options_single:hover {
  background: var(--thm-primary);
}
.contact_option_icon {
}
.contact_option_icon span {
  font-size: 70px;
  color: var(--thm-base);
  line-height: 70px;
  transition: all 500ms ease;
}
.contact_options_single:hover .contact_option_icon span {
  color: #ffffff;
}
.contact_option_content {
}
.contact_option_content h3 {
  font-size: 24px;
  color: #ffffff;
  font-family: var(--thm-gilroy-bold);
  line-height: 34px;
  margin-top: 30px;
  margin-bottom: 28px;
}
.contact_option_content p {
  font-size: 18px;
  color: #ffffff;
  margin: 0;
  line-height: 31px;
}
.contact_option_content p a {
  color: #ffffff;
}

/*--------------------------------------------------------------
## Contact Us
--------------------------------------------------------------*/
.contact_us {
  position: relative;
  display: block;
  padding-bottom: 135px;
}
.contact_us_form {
  position: relative;
  display: block;
  margin-left: 200px;
  margin-right: 200px;
}
.contact__form .row {
  margin-right: -5px;
  margin-left: -5px;
}
.contact__form .col-xl-6 {
  padding-right: 10px;
  padding-left: 10px;
}
.contact__form .col-xl-12 {
  padding-right: 10px;
  padding-left: 10px;
}

.contact_input_box input[type="text"],
.contact_input_box input[type="email"] {
  height: 60px;
  width: 100%;
  border: 1px solid #d1d5de;
  border-radius: 7px;
  background: #ffffff;
  padding: 0 25px;
  margin-bottom: 20px;
  outline: none;
  font-size: 18px;
  color: var(--thm-gray);
}

.contact_input_box textarea {
  font-size: 16px;
  color: #878986;
  height: 190px;
  width: 100%;
  background: #ffffff;
  padding: 20px 30px 20px;
  border: 1px solid #d1d5de;
  border-radius: 7px;
  outline: none;
  margin-bottom: 10px;
}

.contact_input_box input[type="text"]::-webkit-input-placeholder {
  color: #999999;
}

.contact_input_box input[type="text"]:-moz-placeholder {
  color: #999999;
}

.contact_input_box input[type="text"]::-moz-placeholder {
  color: #999999;
}

.contact_input_box input[type="text"]:-ms-input-placeholder {
  color: #999999;
}
.contact_input_box input[type="email"]::-webkit-input-placeholder {
  color: #999999;
}

.contact_input_box input[type="email"]:-moz-placeholder {
  color: #999999;
}

.contact_input_box input[type="email"]::-moz-placeholder {
  color: #999999;
}

.contact_input_box input[type="email"]:-ms-input-placeholder {
  color: #999999;
}
.contact_input_box textarea::-webkit-input-placeholder {
  color: #999999;
}
.contact_input_box textarea:-moz-placeholder {
  color: #999999;
}
.contact_input_box textarea::-moz-placeholder {
  color: #999999;
}
.contact_input_box textarea:-ms-input-placeholder {
  color: #999999;
}

.last_text {
  padding-top: 40px;
}
.last_text p {
  margin: 0;
}
.last_text span {
  font-weight: 700;
}

/*--------------------------------------------------------------
# Google_map
--------------------------------------------------------------*/
.google_map {
  position: relative;
  display: block;
  background: #f8f8f8;
  z-index: 1;
}
.google-map__contact {
  width: 100%;
  border: none;
  outline: none;
  display: block;
  height: 615px;
}

/*================css 3 Animation==============*/

@-webkit-keyframes shapeMover {
  0%,
  100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px)
      translateX(0);
  }

  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px)
      translateY(20px) translateX(20px);
  }
}

@keyframes shapeMover {
  0%,
  100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px)
      translateX(0);
  }

  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px)
      translateY(20px) translateX(20px);
  }
}

@-webkit-keyframes squareMover {
  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }

  20%,
  60% {
    transform: translate(20px, 40px) rotate(180deg);
  }

  30%,
  80% {
    transform: translate(40px, 60px) rotate(0deg);
  }
}

@keyframes squareMover {
  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }

  20%,
  60% {
    transform: translate(20px, 40px) rotate(180deg);
  }

  30%,
  80% {
    transform: translate(40px, 60px) rotate(0deg);
  }
}

@-webkit-keyframes banner3Shake {
  0% {
    transform: rotate3d(0, 1, 0, 0deg);
  }

  30% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  60% {
    transform: rotate3d(1, 0, 0, 0deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  100% {
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

@keyframes banner3Shake {
  0% {
    transform: rotate3d(0, 1, 0, 0deg);
  }

  30% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  60% {
    transform: rotate3d(1, 0, 0, 0deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  100% {
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

@-webkit-keyframes ImgBounce {
  0% {
    transform: translateY(0);
  }

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

@keyframes ImgBounce {
  0% {
    transform: translateY(0);
  }

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

/* Galería Home Section */
.gallery_home {
    padding: 120px 0;
    background-color: #f8f9fa;
}

.gallery_home_single {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery_home_single:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery_home_img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.gallery_home_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery_home_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(225, 62, 62, 0.9), rgba(0, 168, 230, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery_home_single:hover .gallery_home_overlay {
    opacity: 1;
}

.gallery_home_content {
    text-align: center;
    color: white;
}

.gallery_home_content h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.gallery_home_icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.gallery_home_icon:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.gallery_home_btn {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .gallery_home {
        padding: 80px 0;
    }
    
    .gallery_home_img {
        height: 200px;
    }
    
    .gallery_home_content h4 {
        font-size: 16px;
    }
}

/* Estilos Corporativos Profesionales para el Home */
.commitment-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white !important;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.achievement-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat-mini {
    text-align: center;
    color: white !important;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #ffd000 !important;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.9) !important;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section-badge i {
    margin-right: 8px;
    font-size: 16px;
    color: white !important;
}

.subtitle-corporate {
    color: #666 !important;
    font-size: 18px;
    font-weight: 400;
    margin: 10px 0 20px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.corporate-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.indicator {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    min-width: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(225, 62, 62, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.indicator-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #F40008 !important;
    margin-bottom: 5px;
}

.indicator-label {
    font-size: 12px;
    color: #333 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Clases para reemplazar estilos inline de la página de inicio */
.hero-video {
    min-width: 100%;
    min-height: 50vh;
    position: absolute;
    z-index: 0;
    top: 0px;
}

.hero-welcome {
    color: #00C5F2 ;
}

.hero-title {
    color: #fff;
}

.hero-subtitle {
    color: #f0f0f0;
    font-size: 26px;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.commitment-title {
    color: white !important;
}

.commitment-subtitle {
    color: white !important;
}

.commitment-description {
    color: rgba(255,255,255,0.9) !important;
}

/* Backgrounds para page headers */
.page-header-bg-evento {
    background-image: url(/assets/images/resources/page-header-event-bg.png);
}

.page-header-bg-propuesta {
    background-image: url(assets/images/resources/page-header-join-us-bg.png);
}

.page-header-bg-participacion {
    background-image: url(/assets/images/resources/page-header-participacion.webp);
}

.page-header-bg-obras {
    background-image: url(/assets/images/resources/page-header-works-bg.webp);
}

.page-header-bg-galeria {
    background-image: url(/assets/images/resources/page-header-gallery-bg.webp);
}

.page-header-bg-biografia {
    background-image: url(/assets/images/resources/page-header-about-bg.webp);
}

.page-header-bg-agenda {
    background-image: url(/assets/images/resources/page-header-event-bg.webp);
}

.page-header-bg-contacto {
    background-image: url(/assets/images/resources/page-header-gallery-bg.png);
}

/* Sección obras ambientales */
.obras-ambientales {
    background-color: #f8f9fa;
}

.obras-capacitacion {
    background-color: #f8f9fa;
}

/* Sección shop */
.shop-background {
    background-image: url(/assets/images/backgrounds/shop_one_bg.webp);
}

/* Shapes para inicio */
.news-shape-1 {
    background-image: url(/assets/images/shapes/news_and_subscription_shape_1.webp);
}

.news-shape-2 {
    background-image: url(/assets/images/shapes/news_and_subscription_shape_2.webp);
}

.subscription-bg {
    background-image: url(/assets/images/resources/subscription_img-1.webp);
}

.top-section-shape-2 {
    background-image: url(/assets/images/shapes/top_section_one_shape_2.webp);
}

/* Testimonial styles */
.testimonial-rounded {
    border-radius: 20px;
}

.testimonial-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #092287;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px auto;
}

.testimonial-content {
    border-radius: 50%;
    padding: 25px;
    background: #f7f7f7;
}

.testimonial-italic {
    font-style: italic;
}

/* Featured banner backgrounds */
.featured-banner-bg {
    background-image: url(/assets/images/backgrounds/featured_banner_bg.webp);
}

.funfacts-bg {
    background-image: url(/assets/images/backgrounds/funfacts_two_bg.webp);
}

/* Error 404 Styles */
.error-404-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.error-404-number {
    font-size: 160px;
    font-weight: 900;
    color: #ff0000;
    margin-bottom: 20px;
}

.error-404-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
}

.error-404-description {
    font-size: 20px;
    color: #777;
    margin: 20px auto 40px;
    max-width: 700px;
}

.error-404-btn {
    padding: 12px 30px;
    font-size: 18px;
}

/* Galería Completa - Page Header */
.galeria-page-header {
    position: relative;
    background: url('/assets/images/resources/page-header-gallery-bg.webp') center center/cover no-repeat;
    padding: 120px 0 80px;
}

.galeria-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(225, 62, 62, 0.8), rgba(0, 168, 230, 0.8));
}

/* Estadísticas de Galería */
.gallery-stats {
    padding: 80px 0;
    background: #f8f9fa;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

/* Filtros de Galería */
.gallery-filters {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.filter-tabs {
    text-align: center;
}

.filter-list {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 15px 25px;
    margin: 5px;
    background: transparent;
    border: none;
    border-radius: 30px;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    color: white;
    transform: translateY(-2px);
}

.filter-btn i {
    margin-right: 8px;
}

/* Galería Principal */
.main-gallery {
    padding: 80px 0;
}

.gallery-container {
    margin-bottom: 60px;
}

.gallery-item {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.gallery-item.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(225, 62, 62, 0.9), rgba(0, 168, 230, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.gallery-zoom {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.gallery-zoom:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.gallery-info {
    padding: 20px;
}

.gallery-info h5 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.gallery-category {
    display: inline-block;
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Información total de galería */
.gallery-info-total {
    margin-top: 40px;
    padding: 20px;
    background: rgba(225, 62, 62, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(225, 62, 62, 0.1);
}

.gallery-total-text {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.gallery-total-text i {
    color: #F40008;
    margin-right: 10px;
}

/* Call to Action de Galería */
.gallery-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cta-content {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.cta-content h2 {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thm-btn-outline {
    background: transparent;
    border: 2px solid var(--thm-primary);
    color: var(--thm-primary);
}

.thm-btn-outline:hover {
    background: var(--thm-primary);
    color: white;
}

/* Responsive para galería preview */
@media (max-width: 768px) {
    .gallery-preview-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .preview-stat {
        width: 250px;
        justify-content: center;
    }
    
    .corporate-indicators {
        gap: 20px;
    }
    
    .indicator {
        min-width: 80px;
        padding: 15px;
    }
    
    .indicator-value {
        font-size: 22px;
    }
    
    .achievement-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-mini {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .stat-number {
        margin-bottom: 0;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .subtitle-corporate {
        font-size: 16px;
    }
    
    .filter-list {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .thm-btn {
        width: 200px;
    }
}

/* Estilos específicos para mejorar contraste en el Home */
.home-text-dark {
    color: #333 !important;
}

.home-text-light {
    color: rgba(255,255,255,0.95) !important;
}

.home-bg-white {
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
}

.home-bg-gradient {
    background: linear-gradient(45deg, #F40008, #00C5F2 ) !important;
    color: white !important;
}

/* Mejoras específicas para elementos del home */
.mission_and_vission .block-title h2,
.mission_and_vission .block-title h4,
.mission_and_vission .block-title p {
    color: #333 !important;
}

.candidate_one .block-title h2,
.candidate_one .block-title h4,
.candidate_one .block-title p {
    color: #333 !important;
}

.gallery_home .block-title h2,
.gallery_home .block-title h4,
.gallery_home .block-title p {
    color: #333 !important;
}

/* Asegurar que los iconos tengan buen contraste */
.corporate-indicators .indicator i,
.gallery-preview-stats .preview-stat i,
.section-badge i {
    color: inherit !important;
}

/* Estilos para la galería preview en el home */
.gallery-preview-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.preview-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 25px;
    color: #333 !important;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(225, 62, 62, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.preview-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    background: rgba(255,255,255,1);
    border-color: rgba(225, 62, 62, 0.5);
}

.preview-stat i {
    color: #F40008 !important;
    font-size: 16px;
}

/* Mejoras adicionales para la galería del home */
.gallery_home {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.gallery_home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="camera" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2300A8E6" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23camera)"/></svg>');
    z-index: 1;
}

.gallery_home .container {
    position: relative;
    z-index: 2;
}

.gallery_home_btn {
    position: relative;
    z-index: 2;
}

.gallery_home_btn .thm-btn {
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery_home_btn .thm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Responsive para galería preview */
@media (max-width: 768px) {
    .gallery-preview-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .preview-stat {
        width: 250px;
        justify-content: center;
    }
}

/* WMB Gallery Styles - Oscar Valencia Aucca Gallery System */

/* WMB Gallery Statistics */
.wmb-gallery-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.wmb-stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 2px solid transparent;
}

.wmb-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: rgba(225, 62, 62, 0.3);
}

.wmb-stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.wmb-stat-card:hover .wmb-stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(225, 62, 62, 0.3);
}

.wmb-stat-content h3 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-family: var(--thm-gilroy-heavy);
}

.wmb-stat-content p {
    color: #666;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

/* WMB Gallery Filters */
.wmb-gallery-filters {
    padding: 60px 0;
    background: white;
    border-bottom: 2px solid #f1f1f1;
}

.wmb-filter-tabs {
    text-align: center;
}

.wmb-filter-list {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 15px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.wmb-filter-btn {
    padding: 15px 25px;
    margin: 5px;
    background: transparent;
    border: none;
    border-radius: 30px;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
    position: relative;
}

.wmb-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    border-radius: 30px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.wmb-filter-btn:hover,
.wmb-filter-btn.active {
    color: white;
    transform: translateY(-2px);
}

.wmb-filter-btn:hover::before,
.wmb-filter-btn.active::before {
    opacity: 1;
}

.wmb-filter-btn i {
    margin-right: 8px;
    font-size: 16px;
}

/* WMB Main Gallery */
.wmb-main-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.wmb-gallery-container {
    margin-bottom: 60px;
}

.wmb-gallery-item {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.wmb-gallery-item.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.wmb-gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.wmb-gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(225, 62, 62, 0.3);
}

.wmb-gallery-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.wmb-gallery-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.wmb-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wmb-gallery-card:hover .wmb-gallery-image img {
    transform: scale(1.08);
}

.wmb-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(225, 62, 62, 0.85), rgba(0, 168, 230, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.wmb-gallery-card:hover .wmb-gallery-overlay {
    opacity: 1;
}

.wmb-overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.wmb-overlay-content h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
    font-family: var(--thm-gilroy-bold);
}

.wmb-gallery-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.4);
}

.wmb-gallery-card:hover .wmb-gallery-icon {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255,255,255,0.6);
}

.wmb-gallery-info {
    padding: 25px 20px;
}

.wmb-gallery-info h5 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    font-family: var(--thm-gilroy-bold);
}

.wmb-gallery-category {
    display: inline-block;
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* WMB Gallery Info Total */
.wmb-gallery-info-total {
    margin-top: 50px;
    padding: 25px;
    background: rgba(225, 62, 62, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(225, 62, 62, 0.1);
}

.wmb-gallery-total-text {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    font-family: var(--thm-gilroy-bold);
}

.wmb-gallery-total-text i {
    color: #F40008;
    margin-right: 10px;
    font-size: 20px;
}

/* WMB Gallery Call to Action */
.wmb-gallery-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #F40008 0%, #00C5F2  100%);
    color: white;
    position: relative;
}

.wmb-gallery-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 6s ease-in-out infinite;
}

.wmb-cta-content {
    background: rgba(255,255,255,0.1);
    padding: 60px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
}

.wmb-cta-content h2 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--thm-gilroy-heavy);
}

.wmb-cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.wmb-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.wmb-cta-buttons .thm-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.wmb-cta-buttons .thm-btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.wmb-cta-buttons .thm-btn-outline:hover {
    background: white;
    color: #F40008;
    transform: translateY(-2px);
}

/* WMB Responsive Design */
@media (max-width: 768px) {
    .wmb-gallery-stats {
        padding: 60px 0;
    }
    
    .wmb-stat-card {
        margin-bottom: 20px;
        padding: 30px 20px;
    }
    
    .wmb-stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .wmb-stat-content h3 {
        font-size: 32px;
    }
    
    .wmb-filter-list {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }
    
    .wmb-filter-btn {
        margin: 3px 0;
        width: 220px;
        text-align: center;
    }
    
    .wmb-gallery-image {
        height: 220px;
    }
    
    .wmb-overlay-content h4 {
        font-size: 16px;
    }
    
    .wmb-gallery-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }
    
    .wmb-cta-content {
        padding: 40px 20px;
    }
    
    .wmb-cta-content h2 {
        font-size: 28px;
    }
    
    .wmb-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wmb-cta-buttons .thm-btn {
        width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .wmb-main-gallery {
        padding: 60px 0;
    }
    
    .wmb-gallery-image {
        height: 200px;
    }
    
    .wmb-gallery-info {
        padding: 20px 15px;
    }
    
    .wmb-gallery-info h5 {
        font-size: 14px;
    }
    
    .wmb-gallery-category {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* WMB Animation Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* WMB Lightbox Improvements */
.wmb-gallery-link:hover {
    text-decoration: none;
}

.wmb-gallery-link:focus {
    outline: 2px solid #F40008;
    outline-offset: 2px;
}

/* WMB Loading States */
.wmb-gallery-item.loading {
    opacity: 0.5;
    pointer-events: none;
}

.wmb-gallery-item.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #F40008;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* WMB Gallery Home Styles */
.wmb-gallery-home {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.wmb-gallery-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="camera" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2300A8E6" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23camera)"/></svg>');
    z-index: 1;
}

.wmb-gallery-home .container {
    position: relative;
    z-index: 2;
}

.wmb-gallery-home-single {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    background: white;
}

.wmb-gallery-home-single:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.wmb-gallery-home-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.wmb-gallery-home-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.wmb-gallery-home-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wmb-gallery-home-single:hover .wmb-gallery-home-img img {
    transform: scale(1.08);
}

.wmb-gallery-home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(225, 62, 62, 0.9), rgba(0, 168, 230, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.wmb-gallery-home-single:hover .wmb-gallery-home-overlay {
    opacity: 1;
}

.wmb-gallery-home-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.wmb-gallery-home-content h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.3;
    font-family: var(--thm-gilroy-bold);
}

.wmb-gallery-home-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.wmb-gallery-home-single:hover .wmb-gallery-home-icon {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.wmb-gallery-home-btn {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.wmb-gallery-home-btn .thm-btn {
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
}

.wmb-gallery-home-btn .thm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* =============================================
   ESTADÍSTICAS DE LA GALERÍA
   ============================================= */

.wmb-gallery-stats {
    margin: 40px 0 30px 0;
    padding: 30px 0;
}

.wmb-stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.wmb-gallery-stats .wmb-stat-item {
    text-align: center;
    position: relative;
}

.wmb-gallery-stats .wmb-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
}

.wmb-gallery-stats .wmb-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--thm-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.wmb-gallery-stats .wmb-stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive para estadísticas */
@media (max-width: 768px) {
    .wmb-stats-container {
        gap: 40px;
        justify-content: center;
    }
    
    .wmb-gallery-stats .wmb-stat-item:not(:last-child)::after {
        display: none;
    }
    
    .wmb-gallery-stats .wmb-stat-number {
        font-size: 28px;
    }
    
    .wmb-gallery-stats .wmb-stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .wmb-stats-container {
        gap: 30px;
        flex-direction: column;
    }
    
    .wmb-gallery-stats {
        margin: 30px 0 20px 0;
        padding: 20px 0;
    }
    
    .wmb-gallery-stats .wmb-stat-number {
        font-size: 24px;
    }
}

/* WMB Gallery Preview Stats for Home */
.wmb-gallery-preview-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.wmb-preview-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 25px;
    color: #333 !important;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(225, 62, 62, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.wmb-preview-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    background: rgba(255,255,255,1);
    border-color: rgba(225, 62, 62, 0.5);
}

.wmb-preview-stat i {
    color: #F40008 !important;
    font-size: 16px;
}

/* WMB Responsive Design for Home Gallery */
@media (max-width: 768px) {
    .wmb-gallery-home {
        padding: 80px 0;
    }
    
    .wmb-gallery-home-img {
        height: 200px;
    }
    
    .wmb-gallery-home-content h4 {
        font-size: 14px;
    }
    
    .wmb-gallery-preview-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .wmb-preview-stat {
        width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .wmb-gallery-home-img {
        height: 180px;
    }
    
    .wmb-gallery-home-content h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .wmb-gallery-home-icon {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
    }
}

/* WMB Mission & Vision Modern Section - Diseño Profesional */

.mission_and_vission_modern {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.mission_and_vission_modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 0, 8, 0.05) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.mission_and_vission_modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 176, 240, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
}

/* Cards Modernas */
.mission_vission_card {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.mission_vission_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.mission_card:hover {
    border-color: rgba(0, 176, 240, 0.3);
}

.vision_card:hover {
    border-color: rgba(244, 0, 8, 0.3);
}

.plan_card:hover {
    border-color: rgba(244, 0, 8, 0.3);
}

/* Featured Card */
.featured_card {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
    transform: scale(1.05);
}

.featured_badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #F40008, #00B0F0);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured_badge i {
    font-size: 10px;
}

/* Icon Wrapper */
.card_icon_wrapper {
    position: relative;
    margin-bottom: 30px;
}

.card_icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.card_icon i {
    font-size: 40px;
    transition: all 0.4s ease;
}

.mission_card .card_icon {
    background: linear-gradient(135deg, #e6f7ff 0%, #ffffff 100%);
}

.mission_card .card_icon i {
    color: #00B0F0;
}

.vision_card .card_icon {
    background: linear-gradient(135deg, #ffe6e6 0%, #ffffff 100%);
}

.vision_card .card_icon i {
    color: #F40008;
}

.plan_card .card_icon {
    background: linear-gradient(135deg, #fff0e6 0%, #ffffff 100%);
}

.plan_card .card_icon i {
    color: #ff8c00;
}

.mission_vission_card:hover .card_icon {
    transform: scale(1.1) rotate(5deg);
}

.icon_bg_effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.mission_card .icon_bg_effect {
    background: radial-gradient(circle, rgba(0, 176, 240, 0.1) 0%, transparent 70%);
}

.vision_card .icon_bg_effect {
    background: radial-gradient(circle, rgba(244, 0, 8, 0.1) 0%, transparent 70%);
}

.plan_card .icon_bg_effect {
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
}

.mission_vission_card:hover .icon_bg_effect {
    opacity: 1;
    width: 150px;
    height: 150px;
}

/* Card Content */
.card_content {
    text-align: center;
}

.card_content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-family: var(--thm-gilroy-heavy);
}

.card_content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Features */
.card_features {
    margin-bottom: 30px;
}

.feature_item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.feature_item i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.mission_card .feature_item i {
    color: #00B0F0;
}

.vision_card .feature_item i {
    color: #F40008;
}

.plan_card .feature_item i {
    color: #ff8c00;
}

.feature_item span {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.mission_vission_card:hover .feature_item {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Card Link */
.card_link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission_card .card_link {
    background: rgba(0, 176, 240, 0.1);
    color: #00B0F0;
}

.vision_card .card_link {
    background: rgba(244, 0, 8, 0.1);
    color: #F40008;
}

.plan_card .card_link {
    background: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
}

.card_link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.mission_card .card_link::before {
    background: #00B0F0;
}

.vision_card .card_link::before {
    background: #F40008;
}

.plan_card .card_link::before {
    background: #ff8c00;
}

.card_link:hover {
    color: white;
    transform: translateY(-2px);
}

.card_link:hover::before {
    left: 0;
}

.card_link span,
.card_link i {
    position: relative;
    z-index: 1;
}

.card_link i {
    transition: all 0.3s ease;
}

.card_link:hover i {
    transform: translateX(5px);
}

/* Card Number */
.card_number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    font-family: var(--thm-gilroy-heavy);
    line-height: 1;
}

/* Call to Action */
.mission_vission_cta {
    margin-top: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(244, 0, 8, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.cta_content h4 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-family: var(--thm-gilroy-heavy);
}

.cta_content p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.cta_buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta_buttons .thm-btn {
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta_buttons .btn-outline {
    background: transparent;
    border: 2px solid var(--thm-primary);
    color: var(--thm-primary);
}

.cta_buttons .btn-outline:hover {
    background: var(--thm-primary);
    color: white;
}

/* Animación Float */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

/* Responsive Design - Mission & Vision Modern */
@media (max-width: 1200px) {
    .featured_card {
        transform: scale(1);
    }
    
    .mission_vission_card {
        padding: 40px 25px;
    }
}

@media (max-width: 992px) {
    .mission_and_vission_modern {
        padding: 100px 0;
    }
    
    .mission_vission_cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 40px 30px;
    }
    
    .cta_buttons {
        justify-content: center;
        width: 100%;
    }
    
    .card_content h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .mission_and_vission_modern {
        padding: 80px 0;
    }
    
    .mission_and_vission_modern::before,
    .mission_and_vission_modern::after {
        display: none;
    }
    
    .mission_vission_card {
        margin-bottom: 20px;
        padding: 35px 20px;
    }
    
    .card_icon {
        width: 80px;
        height: 80px;
    }
    
    .card_icon i {
        font-size: 32px;
    }
    
    .card_content h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .card_content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .feature_item {
        padding: 8px 15px;
        margin-bottom: 10px;
    }
    
    .feature_item span {
        font-size: 14px;
    }
    
    .card_link {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .card_number {
        font-size: 50px;
    }
    
    .mission_vission_cta {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .cta_content h4 {
        font-size: 24px;
    }
    
    .cta_content p {
        font-size: 16px;
    }
    
    .cta_buttons {
        gap: 15px;
    }
    
    .cta_buttons .thm-btn {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .mission_and_vission_modern {
        padding: 60px 0;
    }
    
    .block-title h2 {
        font-size: 32px !important;
    }
    
    .subtitle-corporate {
        font-size: 16px;
    }
    
    .mission_vission_card {
        border-radius: 20px;
        padding: 30px 15px;
    }
    
    .featured_badge {
        top: 15px;
        right: 15px;
        padding: 4px 12px;
        font-size: 11px;
    }
    
    .card_icon_wrapper {
        margin-bottom: 25px;
    }
    
    .card_icon {
        width: 70px;
        height: 70px;
    }
    
    .card_icon i {
        font-size: 28px;
    }
    
    .icon_bg_effect {
        width: 100px;
        height: 100px;
    }
    
    .mission_vission_card:hover .icon_bg_effect {
        width: 120px;
        height: 120px;
    }
    
    .card_content h3 {
        font-size: 24px;
    }
    
    .card_content p {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .card_features {
        margin-bottom: 25px;
    }
    
    .feature_item {
        padding: 6px 12px;
        margin-bottom: 8px;
        font-size: 13px;
    }
    
    .feature_item i {
        font-size: 12px;
    }
    
    .feature_item span {
        font-size: 13px;
    }
    
    .card_link {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .card_number {
        font-size: 40px;
        top: 15px;
        left: 15px;
    }
    
    .mission_vission_cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .cta_content h4 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .cta_content p {
        font-size: 15px;
        line-height: 1.4;
    }
    
    .cta_buttons {
        gap: 12px;
        margin-top: 20px;
    }
    
    .cta_buttons .thm-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .section-badge {
        font-size: 11px;
        padding: 5px 15px;
    }
    
    .section-badge i {
        font-size: 12px;
        margin-right: 5px;
    }
    
    .block-title h2 {
        font-size: 28px !important;
        line-height: 1.2;
    }
    
    .subtitle-corporate {
        font-size: 14px;
    }
    
    .mission_vission_card {
        padding: 25px 12px;
    }
    
    .card_icon {
        width: 60px;
        height: 60px;
        border-radius: 20px;
    }
    
    .card_icon i {
        font-size: 24px;
    }
}

/* WMB Personal Home Styles - Oscar Valencia Professional Site */

/* WMB Achievements Section */
.wmb-achievements-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.wmb-achievements-content h4 {
    color: #F40008;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wmb-achievements-content h2 {
    color: #333;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--thm-gilroy-heavy);
    line-height: 1.2;
}

.wmb-achievements-content p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.wmb-achievements-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.wmb-stat-item {
    text-align: center;
}

.wmb-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #F40008;
    font-family: var(--thm-gilroy-heavy);
    line-height: 1;
    margin-bottom: 5px;
}

.wmb-stat-label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.wmb-quick-access h5 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: var(--thm-gilroy-bold);
}

.wmb-access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wmb-access-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #333;
    border: 2px solid #f1f1f1;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.wmb-access-card:hover {
    transform: translateY(-5px);
    border-color: #F40008;
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.15);
    text-decoration: none;
    color: #F40008;
}

.wmb-access-card i {
    font-size: 32px;
    color: #00C5F2 ;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.wmb-access-card:hover i {
    color: #F40008;
    transform: scale(1.1);
}

.wmb-access-card span {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

/* WMB Personal Message */
.wmb-personal-message {
    padding: 80px 0;
    background: linear-gradient(135deg, #F40008 0%, #00C5F2  100%);
    color: white;
    position: relative;
}

.wmb-personal-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
}

.wmb-message-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.wmb-message-content h4 {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wmb-message-content h2 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: var(--thm-gilroy-heavy);
}

.wmb-message-content p {
    color: rgba(255,255,255,0.9);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.wmb-message-quote {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}

.wmb-message-quote i {
    font-size: 24px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.wmb-message-quote span {
    font-size: 18px;
    font-style: italic;
    color: white;
    line-height: 1.5;
}

/* WMB About Personal */
.wmb-about-personal {
    padding: 100px 0;
}

.wmb-about-content h4 {
    color: #F40008;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wmb-about-content h2 {
    color: #333;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: var(--thm-gilroy-heavy);
}

.wmb-about-content p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.wmb-personal-values {
    margin-bottom: 40px;
}

.wmb-value-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wmb-value-item:hover {
    background: #F40008;
    color: white;
    transform: translateX(10px);
}

.wmb-value-item i {
    font-size: 20px;
    color: #00C5F2 ;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.wmb-value-item:hover i {
    color: white;
}

.wmb-value-item span {
    font-weight: 500;
}

.wmb-about-images {
    position: relative;
}

.wmb-main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.wmb-main-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.wmb-secondary-image {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border: 5px solid white;
}

.wmb-secondary-image img {
    width: 100%;
}

/* WMB Work Focus */
.wmb-work-focus {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.wmb-focus-intro h4 {
    color: #F40008;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wmb-focus-intro h2 {
    color: #333;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: var(--thm-gilroy-heavy);
}

.wmb-focus-intro p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 60px;
}

.wmb-focus-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 30px;
}

.wmb-focus-card:hover {
    transform: translateY(-10px);
    border-color: #F40008;
    box-shadow: 0 15px 35px rgba(229, 62, 62, 0.15);
}

.wmb-focus-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.wmb-focus-card:hover .wmb-focus-icon {
    transform: scale(1.1) rotate(5deg);
}

.wmb-focus-icon i {
    font-size: 32px;
    color: white;
}

.wmb-focus-card h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--thm-gilroy-bold);
}

.wmb-focus-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* WMB Contact Section */
.wmb-contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.wmb-contact-content h4 {
    color: #F40008;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wmb-contact-content h2 {
    color: #333;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: var(--thm-gilroy-heavy);
}

.wmb-contact-content p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.wmb-newsletter-form {
    margin-bottom: 30px;
}

.wmb-form-group {
    position: relative;
    display: flex;
}

.wmb-form-group input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e1e1e1;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.wmb-form-group input:focus {
    border-color: #F40008;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.wmb-submit-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 50px;
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wmb-submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
}

.wmb-recent-updates h5 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: var(--thm-gilroy-bold);
}

.wmb-update-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.wmb-update-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.wmb-update-date {
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    min-width: 60px;
    margin-right: 15px;
}

.wmb-update-content h6 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: var(--thm-gilroy-bold);
}

.wmb-update-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* WMB Responsive Design */
@media (max-width: 768px) {
    .wmb-achievements-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .wmb-access-grid {
        grid-template-columns: 1fr;
    }
    
    .wmb-stat-number {
        font-size: 36px;
    }
    
    .wmb-message-content h2,
    .wmb-about-content h2,
    .wmb-focus-intro h2,
    .wmb-contact-content h2 {
        font-size: 32px;
    }
    
    .wmb-secondary-image {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
    
    .wmb-focus-card {
        margin-bottom: 20px;
    }
    
    .wmb-update-item {
        flex-direction: column;
        text-align: center;
    }
    
    .wmb-update-date {
        margin-right: 0;
        margin-bottom: 10px;
        align-self: center;
    }
}

/* WMB Professional Video Slider */

.wmb-hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 650px;
    overflow: hidden;
    background: #000;
}

.wmb-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wmb-slider-videos {
    position: relative;
    width: 100%;
    height: 100%;
}

.wmb-slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.wmb-slider-item.active {
    opacity: 1;
    z-index: 2;
}

.wmb-slider-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.wmb-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 3;
}

.wmb-slider-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 4;
    color: white;
}



.wmb-slider-text {
    animation: slideInFromLeft 1s ease-out;
}

.wmb-slider-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.wmb-slider-badge span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: var(--thm-gilroy-bold);
}

.wmb-slider-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: var(--thm-gilroy-heavy);
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.wmb-slider-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    line-height: 1.5;
    max-width: 600px;
    transition: all 0.4s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.wmb-slider-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.wmb-btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    padding: 18px 28px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 3px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.wmb-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.wmb-btn-primary:hover::before {
    left: 100%;
}

/* Contenedor del icono principal */
.wmb-btn-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--thm-primary) 0%, #e74c3c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(244, 0, 8, 0.3);
}

.wmb-btn-icon i {
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Icono de flecha */
.wmb-btn-arrow {
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.wmb-btn-arrow i {
    color: #2c3e50;
    font-size: 12px;
    transition: all 0.3s ease;
}

/* Texto del botón */
.wmb-btn-primary span,
.wmb-btn-outline span {
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Efectos hover para botón primario */
.wmb-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 1);
}

.wmb-btn-primary:hover .wmb-btn-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(244, 0, 8, 0.4);
}

.wmb-btn-primary:hover .wmb-btn-arrow {
    background: var(--thm-primary);
    opacity: 1;
    transform: translateX(5px);
}

.wmb-btn-primary:hover .wmb-btn-arrow i {
    color: white;
    transform: translateX(2px);
}

.wmb-btn-primary:hover span {
    letter-spacing: 0.8px;
    color: var(--thm-primary);
}

/* Efectos hover para botón outline */
.wmb-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.wmb-btn-outline .wmb-btn-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.wmb-btn-outline .wmb-btn-arrow {
    background: rgba(255, 255, 255, 0.1);
}

.wmb-btn-outline .wmb-btn-arrow i {
    color: white;
}

.wmb-btn-outline:hover .wmb-btn-icon {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.wmb-btn-outline:hover .wmb-btn-icon i {
    color: var(--thm-primary);
}

.wmb-btn-outline:hover .wmb-btn-arrow {
    background: rgba(255, 255, 255, 0.9);
    opacity: 1;
    transform: translateX(5px);
}

.wmb-btn-outline:hover .wmb-btn-arrow i {
    color: var(--thm-primary);
    transform: translateX(2px);
}

.wmb-btn-outline:hover span {
    letter-spacing: 0.8px;
}

.wmb-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-color: rgba(255, 255, 255, 0.95);
}

.wmb-btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 18px 28px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.wmb-btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.wmb-btn-outline:hover::before {
    left: 100%;
}

/* ===================================================
   🔥 BOTONES HERO SLIDER - ESTILOS ÚNICOS CRÍTICOS 
   =================================================== */

/* 🚨 CRITICAL: Base del botón con máxima especificidad */
.wmb-slider-actions a.wmb-hero-btn,
a.wmb-hero-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 16px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    min-width: 200px !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 100 !important;
    margin: 0 5px !important;
    /* DEBUG: Color de fondo temporal para ver si aparece */
    background-color: red !important;
    border: 3px solid yellow !important;
}

/* Estilos específicos para cada variante */
.wmb-slider-actions a.wmb-hero-btn.wmb-hero-btn-primary,
a.wmb-hero-btn.wmb-hero-btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    color: #2c3e50 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.wmb-slider-actions a.wmb-hero-btn.wmb-hero-btn-outline,
a.wmb-hero-btn.wmb-hero-btn-outline {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Icono */
.wmb-hero-icon {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    position: relative !important;
    z-index: 2 !important;
}

.wmb-hero-btn-primary .wmb-hero-icon {
    background: linear-gradient(135deg, #F40008 0%, #e74c3c 100%) !important;
}

.wmb-hero-btn-outline .wmb-hero-icon {
    background: rgba(255, 255, 255, 0.2) !important;
}

.wmb-hero-icon i {
    font-size: 14px !important;
    color: white !important;
}

/* Texto */
.wmb-hero-text {
    flex: 1 !important;
    text-align: center !important;
    font-weight: 600 !important;
    position: relative !important;
    z-index: 2 !important;
    margin: 0 8px !important;
}

/* Flecha */
.wmb-hero-arrow {
    width: 25px !important;
    height: 25px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    opacity: 0.8 !important;
    position: relative !important;
    z-index: 2 !important;
}

.wmb-hero-btn-primary .wmb-hero-arrow {
    background: rgba(0, 0, 0, 0.1) !important;
}

.wmb-hero-btn-outline .wmb-hero-arrow {
    background: rgba(255, 255, 255, 0.15) !important;
}

.wmb-hero-arrow i {
    font-size: 10px !important;
}

.wmb-hero-btn-primary .wmb-hero-arrow i {
    color: #2c3e50 !important;
}

.wmb-hero-btn-outline .wmb-hero-arrow i {
    color: white !important;
}

/* EFECTOS HOVER */
.wmb-hero-btn:hover {
    transform: translateY(-2px) !important;
    text-decoration: none !important;
}

.wmb-hero-btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    color: #2c3e50 !important;
}

.wmb-hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: white !important;
}

.wmb-hero-btn:hover .wmb-hero-icon {
    transform: scale(1.1) !important;
}

.wmb-hero-btn:hover .wmb-hero-arrow {
    opacity: 1 !important;
    transform: translateX(3px) !important;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .wmb-hero-btn {
        min-width: 180px !important;
        padding: 14px 20px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 767px) {
    .wmb-hero-btn {
        width: 100% !important;
        min-width: auto !important;
        margin: 5px 0 !important;
    }
}



/* Controles del Slider */
.wmb-slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 8;
    pointer-events: none;
}

.wmb-slider-prev,
.wmb-slider-next {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wmb-slider-prev {
    left: 30px;
}

.wmb-slider-next {
    right: 30px;
}

.wmb-slider-prev:hover,
.wmb-slider-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Indicadores del Slider */
.wmb-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 7;
}

.wmb-indicators-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.wmb-indicator {
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.wmb-indicator.active {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.wmb-indicator span {
    display: none;
}

.wmb-indicator-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wmb-indicator.active .wmb-indicator-progress {
    opacity: 1;
}

/* Control de Reproducción */
.wmb-slider-play-pause {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 8;
}

.wmb-play-pause-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wmb-play-pause-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Animaciones */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive para Oscar - SIMPLE */
@media (min-width: 1400px) {
    .oscar-slider-position {
        width: 550px;
        right: 22%;
        height: 100vh;
        bottom: -220px;
    }
}

@media (max-width: 1200px) {
    .wmb-slider-title {
        font-size: 46px;
    }
    
    .wmb-slider-description {
        font-size: 18px;
        min-height: 55px;
    }
    
    .oscar-slider-position {
        width: 450px;
        right: 20%;
        height: 90vh;
        bottom: -180px;
    }
}

/* Oscar y botones de navegación OCULTOS en tablets */
@media (max-width: 1024px) {
    .oscar-slider-position {
        display: none !important;
    }
    
    .wmb-slider-prev,
    .wmb-slider-next {
        display: none !important;
    }
    
    /* Botones optimizados para tablets */
    .wmb-slider-actions {
        gap: 15px;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .wmb-btn-primary,
    .wmb-btn-outline {
        min-width: 200px;
        padding: 16px 24px;
        font-size: 14px;
    }
    
    .wmb-btn-icon {
        width: 36px;
        height: 36px;
    }
    
    .wmb-btn-icon i {
        font-size: 14px;
    }
    
    .wmb-btn-arrow {
        width: 28px;
        height: 28px;
    }
    
    .wmb-btn-arrow i {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .wmb-hero-slider {
        height: 60vh;
        min-height: 400px;
        max-height: 500px;
    }
    
    .wmb-slider-title {
        font-size: 36px;
    }
    
    .wmb-slider-description {
        font-size: 16px;
        margin-bottom: 25px;
        min-height: 50px;
    }
    
    .wmb-slider-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin-top: 25px;
    }
    
    .wmb-btn-primary,
    .wmb-btn-outline {
        min-width: 100%;
        padding: 18px 20px;
        font-size: 15px;
        justify-content: space-between;
    }
    
    .wmb-btn-icon {
        width: 38px;
        height: 38px;
    }
    
    .wmb-btn-icon i {
        font-size: 15px;
    }
    
    .wmb-btn-arrow {
        width: 32px;
        height: 32px;
    }
    
    .wmb-btn-arrow i {
        font-size: 12px;
    }
    
    .wmb-slider-prev,
    .wmb-slider-next {
        display: none !important;
    }
    
    .wmb-indicators-wrapper {
        gap: 15px;
        justify-content: center;
        padding: 0 20px;
    }
    
    .wmb-indicator {
        width: 10px;
        height: 10px;
    }
    
    .wmb-slider-play-pause {
        top: 20px;
        right: 20px;
    }
    
    .wmb-play-pause-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    /* Oscar OCULTO en mobile */
    .oscar-slider-position {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .wmb-hero-slider {
        height: 55vh;
        min-height: 350px;
        max-height: 450px;
    }
    
    .wmb-slider-title {
        font-size: 28px;
    }
    
    .wmb-slider-description {
        font-size: 15px;
        min-height: 45px;
    }
    
    .wmb-slider-actions {
        gap: 12px;
        margin-top: 20px;
    }
    
    .wmb-btn-primary,
    .wmb-btn-outline {
        padding: 16px 18px;
        font-size: 14px;
        min-width: 100%;
        letter-spacing: 0.3px;
    }
    
    .wmb-btn-icon {
        width: 34px;
        height: 34px;
    }
    
    .wmb-btn-icon i {
        font-size: 13px;
    }
    
    .wmb-btn-arrow {
        width: 28px;
        height: 28px;
    }
    
    .wmb-btn-arrow i {
        font-size: 10px;
    }
    
    .wmb-slider-indicators {
        bottom: 20px;
    }
    
    /* Oscar OCULTO en móviles pequeños */
    .oscar-slider-position {
        display: none !important;
    }
}

/* WMB Historia de Machupicchu - Video Hero Section */

.wmb-historia-video-hero {
    padding: 80px 0 0;
    background-image: url('/assets/images/backgrounds/featured_banner_bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.wmb-historia-video-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(229, 62, 62, 0.6) 40%, rgba(0, 168, 230, 0.6) 60%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.wmb-historia-video-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heritage" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23ffffff" opacity="0.08"/><path d="M20,20 L40,20 L40,40 L20,40 Z" fill="none" stroke="%2300A8E6" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23heritage)"/></svg>');
    z-index: 2;
}

.wmb-historia-video-hero .container,
.wmb-historia-video-hero .container-fluid {
    position: relative;
    z-index: 5;
}

/* Header de la sección */
.wmb-historia-header {
    margin-bottom: 60px;
    padding: 0 20px;
}

.wmb-historia-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.4);
    backdrop-filter: blur(10px);
}

.wmb-historia-badge i {
    margin-right: 10px;
    font-size: 16px;
}

.wmb-historia-header h2 {
    color: white;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--thm-gilroy-heavy);
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.wmb-historia-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    line-height: 1.4;
    margin: 0;
    font-weight: 300;
}

/* Contenedor principal del video */
.wmb-main-video-container {
    margin-bottom: 80px;
}

.wmb-video-hero-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.wmb-video-poster-hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.wmb-video-poster-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wmb-video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(229, 62, 62, 0.3) 50%, rgba(0, 168, 230, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.wmb-video-hero-wrapper:hover .wmb-video-hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(229, 62, 62, 0.4) 50%, rgba(0, 168, 230, 0.4) 100%);
}

.wmb-video-hero-wrapper:hover .wmb-video-poster-hero img {
    transform: scale(1.05);
}

/* Controles centrales del video */
.wmb-play-controls-center {
    text-align: center;
    color: white;
}

.wmb-hero-play-button {
    position: relative;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    overflow: hidden;
}

.wmb-play-icon-wrapper {
    position: relative;
    z-index: 3;
    margin-left: 5px;
}

.wmb-play-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: heroPulse 3s ease-in-out infinite;
}

.wmb-hero-play-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.wmb-video-title-overlay h3 {
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--thm-gilroy-bold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.wmb-video-title-overlay span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.4;
}

/* Reproductor de video */
.wmb-video-hero-player {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 25px;
}

/* Información flotante */
.wmb-video-floating-info {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wmb-floating-stat {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px 20px;
    text-align: center;
    min-width: 100px;
    transition: all 0.3s ease;
}

.wmb-floating-stat:hover {
    background: rgba(229, 62, 62, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.3);
}

.wmb-stat-icon {
    margin-bottom: 8px;
}

.wmb-stat-icon i {
    color: #00C5F2 ;
    font-size: 24px;
}

.wmb-floating-stat:hover .wmb-stat-icon i {
    color: white;
}

.wmb-stat-number {
    display: block;
    color: white;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--thm-gilroy-bold);
    line-height: 1;
    margin-bottom: 5px;
}

.wmb-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

/* Contenido Premium de Patrimonio */
.wmb-heritage-content-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    z-index: 5;
    margin-top: -50px;
    border-radius: 50px 50px 0 0;
}

/* Sección de Estadísticas Destacadas */
.wmb-heritage-stats-section {
    margin-bottom: 80px;
}

.wmb-heritage-stat-card {
    background: white;
    border-radius: 25px;
    padding: 35px 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.wmb-heritage-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #F40008 0%, #00C5F2  100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.wmb-heritage-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(229, 62, 62, 0.2);
    border-color: rgba(229, 62, 62, 0.3);
}

.wmb-heritage-stat-card:hover::before {
    opacity: 0.05;
}

.wmb-stat-visual {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wmb-stat-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F40008 0%, #00C5F2  100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.wmb-heritage-stat-card:hover .wmb-stat-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.3);
}

.wmb-stat-icon-large i {
    color: white;
    font-size: 28px;
}

.wmb-stat-data {
    flex: 1;
}

.wmb-stat-number-large {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    font-family: var(--thm-gilroy-heavy);
    line-height: 1;
    margin-bottom: 8px;
}

.wmb-stat-label-large {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contenido Principal */
.wmb-heritage-main-content {
    padding-top: 40px;
}

.wmb-heritage-story {
    padding-right: 30px;
}

.wmb-story-header {
    margin-bottom: 30px;
}

.wmb-story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
}

.wmb-story-badge i {
    font-size: 16px;
}

.wmb-story-header h3 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    font-family: var(--thm-gilroy-heavy);
    line-height: 1.2;
}

.wmb-story-content {
    margin-bottom: 40px;
}

.wmb-story-lead {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

.wmb-story-text {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Pilares del Patrimonio */
.wmb-heritage-pillars {
    background: rgba(229, 62, 62, 0.05);
    border-radius: 20px;
    padding: 30px;
    border-left: 4px solid #F40008;
}

.wmb-pillars-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    font-family: var(--thm-gilroy-bold);
}

.wmb-pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wmb-pillar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.wmb-pillar-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.15);
}

.wmb-pillar-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wmb-pillar-icon i {
    color: white;
    font-size: 20px;
}

.wmb-pillar-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
    font-family: var(--thm-gilroy-bold);
}

.wmb-pillar-text span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Sección de Compromiso */
.wmb-heritage-commitment {
    padding-left: 30px;
}

.wmb-commitment-card {
    background: white;
    border-radius: 25px;
    padding: 40px 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.wmb-commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #F40008 0%, #00C5F2  100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.wmb-commitment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(229, 62, 62, 0.2);
    border-color: rgba(229, 62, 62, 0.3);
}

.wmb-commitment-card:hover::before {
    opacity: 0.03;
}

.wmb-commitment-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f1f1f1;
}

.wmb-commitment-avatar {
    position: relative;
}

.wmb-commitment-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wmb-avatar-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
}

.wmb-avatar-badge i {
    color: white;
    font-size: 12px;
}

.wmb-commitment-title h4 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-family: var(--thm-gilroy-heavy);
}

.wmb-commitment-title span {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

/* Sección de Cita */
.wmb-quote-section {
    margin-bottom: 35px;
    position: relative;
}

.wmb-quote-icon {
    margin-bottom: 15px;
}

.wmb-quote-icon i {
    font-size: 32px;
    color: #F40008;
    opacity: 0.7;
}

.wmb-quote-section blockquote {
    font-size: 18px;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding-left: 30px;
    border-left: 4px solid #F40008;
    position: relative;
}

/* Acciones de Compromiso */
.wmb-commitment-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wmb-btn-heritage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(45deg, #F40008, #00C5F2 );
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.wmb-btn-heritage:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(229, 62, 62, 0.4);
}

.wmb-btn-heritage i {
    transition: all 0.3s ease;
}

.wmb-btn-heritage:hover i {
    transform: translateX(5px);
}

.wmb-btn-heritage-outline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    color: #F40008;
    border: 2px solid #F40008;
    padding: 13px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wmb-btn-heritage-outline:hover {
    background: #F40008;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.wmb-btn-heritage-outline i {
    transition: all 0.3s ease;
}

.wmb-btn-heritage-outline:hover i {
    transform: translateX(5px);
}

/* Animaciones */
@keyframes heroPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .wmb-historia-header h2 {
        font-size: 48px;
    }
    
    .wmb-video-poster-hero {
        height: 500px;
    }
    
    .wmb-video-hero-player {
        height: 500px;
    }
    
    .wmb-video-floating-info {
        bottom: 20px;
        right: 20px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .wmb-historia-video-hero {
        padding: 60px 0 80px;
    }
    
    .wmb-historia-header {
        margin-bottom: 40px;
    }
    
    .wmb-historia-header h2 {
        font-size: 36px;
    }
    
    .wmb-historia-subtitle {
        font-size: 18px;
    }
    
    .wmb-video-poster-hero {
        height: 350px;
    }
    
    .wmb-video-hero-player {
        height: 350px;
    }
    
    .wmb-hero-play-button {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
    
    .wmb-video-title-overlay h3 {
        font-size: 22px;
    }
    
    .wmb-video-title-overlay span {
        font-size: 16px;
    }
    
    .wmb-video-floating-info {
        position: static;
        justify-content: center;
        margin-top: 20px;
        gap: 10px;
    }
    
    .wmb-floating-stat {
        min-width: 80px;
        padding: 12px 15px;
    }
    
    /* Responsive para contenido premium */
    .wmb-heritage-content-premium {
        padding: 60px 0;
        margin-top: -30px;
        border-radius: 30px 30px 0 0;
    }
    
    .wmb-heritage-stats-section {
        margin-bottom: 60px;
    }
    
    .wmb-heritage-stat-card {
        margin-bottom: 20px;
        padding: 25px 20px;
    }
    
    .wmb-stat-visual {
        gap: 15px;
    }
    
    .wmb-stat-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .wmb-stat-icon-large i {
        font-size: 24px;
    }
    
    .wmb-stat-number-large {
        font-size: 28px;
    }
    
    .wmb-stat-label-large {
        font-size: 13px;
    }
    
    .wmb-heritage-story,
    .wmb-heritage-commitment {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .wmb-story-header h3 {
        font-size: 32px;
    }
    
    .wmb-story-lead {
        font-size: 18px;
    }
    
    .wmb-story-text {
        font-size: 16px;
    }
    
    .wmb-heritage-pillars {
        padding: 25px 20px;
    }
    
    .wmb-pillars-grid {
        gap: 15px;
    }
    
    .wmb-pillar-item {
        padding: 15px;
    }
    
    .wmb-pillar-icon {
        width: 40px;
        height: 40px;
    }
    
    .wmb-pillar-icon i {
        font-size: 18px;
    }
    
    .wmb-commitment-card {
        padding: 30px 25px;
    }
    
    .wmb-commitment-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .wmb-commitment-avatar img {
        width: 70px;
        height: 70px;
    }
    
    .wmb-avatar-badge {
        width: 25px;
        height: 25px;
    }
    
    .wmb-avatar-badge i {
        font-size: 10px;
    }
    
    .wmb-commitment-title h4 {
        font-size: 20px;
    }
    
    .wmb-commitment-title span {
        font-size: 14px;
    }
    
    .wmb-quote-section blockquote {
        font-size: 16px;
        padding-left: 20px;
    }
    
    .wmb-quote-icon i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .wmb-historia-header h2 {
        font-size: 28px;
    }
    
    .wmb-historia-subtitle {
        font-size: 16px;
    }
    
    .wmb-video-poster-hero {
        height: 250px;
    }
    
    .wmb-video-hero-player {
        height: 250px;
    }
    
    .wmb-hero-play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .wmb-video-title-overlay h3 {
        font-size: 18px;
    }
    
    .wmb-video-title-overlay span {
        font-size: 14px;
    }
    
    /* Móviles pequeños - contenido premium */
    .wmb-heritage-content-premium {
        padding: 40px 0;
        border-radius: 20px 20px 0 0;
    }
    
    .wmb-heritage-stats-section {
        margin-bottom: 40px;
    }
    
    .wmb-heritage-stat-card {
        padding: 20px 15px;
    }
    
    .wmb-stat-visual {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .wmb-stat-icon-large {
        width: 50px;
        height: 50px;
    }
    
    .wmb-stat-icon-large i {
        font-size: 20px;
    }
    
    .wmb-stat-number-large {
        font-size: 24px;
    }
    
    .wmb-stat-label-large {
        font-size: 12px;
    }
    
    .wmb-story-header h3 {
        font-size: 28px;
    }
    
    .wmb-story-lead {
        font-size: 16px;
    }
    
    .wmb-story-text {
        font-size: 15px;
    }
    
    .wmb-heritage-pillars {
        padding: 20px 15px;
    }
    
    .wmb-pillars-title {
        font-size: 16px;
    }
    
    .wmb-pillars-grid {
        gap: 12px;
    }
    
    .wmb-pillar-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .wmb-pillar-icon {
        width: 35px;
        height: 35px;
    }
    
    .wmb-pillar-icon i {
        font-size: 16px;
    }
    
    .wmb-pillar-text strong {
        font-size: 14px;
    }
    
    .wmb-pillar-text span {
        font-size: 12px;
    }
    
    .wmb-commitment-card {
        padding: 25px 20px;
    }
    
    .wmb-commitment-avatar img {
        width: 60px;
        height: 60px;
    }
    
    .wmb-avatar-badge {
        width: 20px;
        height: 20px;
    }
    
    .wmb-avatar-badge i {
        font-size: 8px;
    }
    
    .wmb-commitment-title h4 {
        font-size: 18px;
    }
    
    .wmb-commitment-title span {
        font-size: 13px;
    }
    
    .wmb-quote-section blockquote {
        font-size: 15px;
        padding-left: 15px;
    }
    
    .wmb-quote-icon i {
        font-size: 24px;
    }
    
    .wmb-btn-heritage,
    .wmb-btn-heritage-outline {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .wmb-commitment-actions {
        gap: 12px;
    }
}

/* OSCAR VALENCIA - SOLO VISIBLE EN DESKTOP/PC */
.oscar-slider-position {
    position: absolute !important;
    bottom: -200px !important;
    right: 25% !important;
    width: 500px !important;
    height: 95vh !important;
    z-index: 5 !important;
    pointer-events: none !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
    contain: layout !important;
}

.oscar-slider-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}



/* ... existing code ... */

/* ===========================================================
   WMB PROFESSIONAL GRADIENT VARIABLES 
   Variables CSS para cambio fácil de colores corporativos
   Oscar Valencia Aucca - #F40008 y #00B0F0
   =========================================================== */

:root {
  /* Variables de gradients corporativos */
  --wmb-gradient-primary: linear-gradient(45deg, #F40008, #00B0F0);
  --wmb-gradient-secondary: linear-gradient(135deg, #F40008, #00B0F0);
  --wmb-gradient-reverse: linear-gradient(45deg, #00B0F0, #F40008);
  --wmb-gradient-vertical: linear-gradient(180deg, #F40008, #00B0F0);
  --wmb-gradient-horizontal: linear-gradient(90deg, #F40008, #00B0F0);
  --wmb-gradient-diagonal: linear-gradient(135deg, #F40008 0%, #00B0F0 100%);
  --wmb-gradient-soft: linear-gradient(135deg, #F40008 0%, #00B0F0 50%, #F40008 100%);
  --wmb-gradient-hero: linear-gradient(135deg, #F40008 0%, #00B0F0 60%, #F40008 100%);
  
  /* Gradients con transparencias */
  --wmb-gradient-overlay: linear-gradient(45deg, rgba(244, 0, 8, 0.9), rgba(0, 176, 240, 0.9));
  --wmb-gradient-subtle: linear-gradient(135deg, rgba(244, 0, 8, 0.1), rgba(0, 176, 240, 0.1));
  --wmb-gradient-hero-complex: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(244, 0, 8, 0.6) 40%, rgba(0, 176, 240, 0.6) 60%, rgba(0, 0, 0, 0.8) 100%);
  
  /* Gradients de fondo */
  --wmb-gradient-light: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  --wmb-gradient-premium: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}



/* =================================================================
   OSCAR VALENCIA - COLORES GLOBALES PROFESIONALES
   Sistema centralizado para control fácil de colores
   ================================================================= */

/* Colores Globales Base */
:root {
  --e-global-color-primary: #F40008;
  --e-global-color-secondary: #00B0F0;
  --e-global-color-text: #7A7A7A;
  --e-global-color-accent: #F40008;
  --e-global-color-9829e0a: #EEEEEE;
  --e-global-color-53900a3: #00B0F0;
  --e-global-color-1109efb: #FFFFFF;
  --e-global-color-266948c: #030F1C;
  --e-global-color-01c9c86: #EBF2FC;
  --e-global-color-dc26cff: #F2F3F5;
  --e-global-color-c64e0e3: #FFFFFF9E;
  --e-global-color-dba1478: #181B2A;
  
  /* Gradients usando los colores globales */
  --wmb-gradient-global-primary: linear-gradient(45deg, var(--e-global-color-primary), var(--e-global-color-53900a3));
  --wmb-gradient-global-secondary: linear-gradient(135deg, var(--e-global-color-primary), var(--e-global-color-53900a3));
  --wmb-gradient-global-reverse: linear-gradient(45deg, var(--e-global-color-53900a3), var(--e-global-color-primary));
  --wmb-gradient-global-vertical: linear-gradient(180deg, var(--e-global-color-primary), var(--e-global-color-53900a3));
  --wmb-gradient-global-diagonal: linear-gradient(135deg, var(--e-global-color-primary) 0%, var(--e-global-color-53900a3) 100%);
  --wmb-gradient-global-soft: linear-gradient(135deg, var(--e-global-color-primary) 0%, var(--e-global-color-53900a3) 50%, var(--e-global-color-primary) 100%);
  --wmb-gradient-global-hero: linear-gradient(135deg, var(--e-global-color-primary) 0%, var(--e-global-color-53900a3) 60%, var(--e-global-color-primary) 100%);
  
  /* Gradients con transparencias */
  --wmb-gradient-global-overlay: linear-gradient(45deg, rgba(244, 0, 8, 0.9), rgba(0, 176, 240, 0.9));
  --wmb-gradient-global-subtle: linear-gradient(135deg, rgba(244, 0, 8, 0.1), rgba(0, 176, 240, 0.1));
}

/* EJEMPLOS DE USO:
   background: var(--wmb-gradient-global-primary);
   color: var(--e-global-color-primary);
   border: 2px solid var(--e-global-color-53900a3);
   box-shadow: 0 5px 15px rgba(244, 0, 8, 0.3);
*/

/* =================================================================
   WMB INSTITUTIONAL COMMITMENT SECTION - OSCAR VALENCIA
   Sección Profesional de Misión, Visión y Plan de Trabajo
   Diseño Narrativo e Institucional
   ================================================================= */

/* Sección Principal */
.wmb-institutional-commitment {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.wmb-institutional-commitment::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 0, 8, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.wmb-institutional-commitment::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 176, 240, 0.03) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

/* Header Institucional */
.wmb-institutional-header {
    margin-bottom: 80px;
}

.wmb-institutional-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #F40008, #00B0F0);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(244, 0, 8, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wmb-institutional-badge i {
    font-size: 16px;
}

.wmb-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-family: var(--thm-gilroy-heavy);
    line-height: 1.2;
}

.wmb-subtitle-narrative {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Espaciado de Contenido */
.wmb-content-spacing {
    margin-bottom: 80px;
}

/* Marcador de Sección */
.wmb-section-marker {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.wmb-marker-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #F40008, #00B0F0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-right: 20px;
    box-shadow: 0 8px 25px rgba(244, 0, 8, 0.2);
    transition: all 0.3s ease;
}

.wmb-marker-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #F40008, transparent);
}

/* Títulos de Sección */
.wmb-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    font-family: var(--thm-gilroy-heavy);
}

/* Contenido Narrativo */
.wmb-narrative-content {
    padding-right: 30px;
}

.wmb-narrative-text {
    margin-bottom: 35px;
}

.wmb-lead-paragraph {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

.wmb-detail-paragraph {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Pilares de Misión */
.wmb-mission-pillars {
    margin-top: 30px;
}

.wmb-pillar-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 20px;
    background: rgba(244, 0, 8, 0.05);
    border-radius: 25px;
    border-left: 4px solid #F40008;
    transition: all 0.3s ease;
}

.wmb-pillar-item:hover {
    background: rgba(244, 0, 8, 0.1);
    transform: translateX(10px);
}

.wmb-pillar-item i {
    color: #F40008;
    font-size: 18px;
    margin-right: 15px;
    width: 20px;
}

.wmb-pillar-item span {
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

/* Visual de Misión */
.wmb-visual-content {
    padding-left: 30px;
}

.wmb-mission-visual {
    position: relative;
}

.wmb-visual-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.wmb-visual-main img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.wmb-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 0, 8, 0.8), rgba(0, 176, 240, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.wmb-visual-main:hover .wmb-visual-overlay {
    opacity: 1;
}

.wmb-quote-highlight {
    text-align: center;
    color: white;
    padding: 30px;
}

.wmb-quote-highlight i {
    font-size: 32px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.wmb-quote-highlight p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Estadísticas Visuales */
.wmb-visual-stats {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.wmb-stat-mini {
    text-align: center;
    background: white;
    padding: 20px 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.wmb-stat-mini:hover {
    border-color: #F40008;
    transform: translateY(-5px);
}

.wmb-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #F40008;
    font-family: var(--thm-gilroy-heavy);
    line-height: 1;
    margin-bottom: 5px;
}

.wmb-stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Divisor de Sección */
.wmb-section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #F40008, #00B0F0, transparent);
    margin: 60px auto;
    max-width: 300px;
    border-radius: 2px;
}

/* Sección de Visión */
.wmb-vision-section {
    position: relative;
}

.wmb-vision-visual {
    padding-right: 30px;
}

.wmb-vision-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.wmb-vision-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.wmb-vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wmb-vision-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wmb-highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wmb-highlight-item i {
    color: #00B0F0;
    font-size: 24px;
}

.wmb-highlight-item span {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

/* Marcador de Visión */
.wmb-vision-marker .wmb-marker-icon {
    background: linear-gradient(45deg, #00B0F0, #F40008);
}

/* Objetivos de Visión */
.wmb-vision-objectives {
    margin-top: 30px;
}

.wmb-vision-objectives h5 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-family: var(--thm-gilroy-bold);
}

.wmb-objectives-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wmb-objectives-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px 0;
}

.wmb-objectives-list li i {
    color: #00B0F0;
    font-size: 16px;
    margin-right: 15px;
    width: 20px;
}

.wmb-objectives-list li span {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

/* Sección de Plan de Trabajo */
.wmb-plan-section {
    position: relative;
}

.wmb-plan-header {
    margin-bottom: 60px;
}

.wmb-plan-marker {
    justify-content: center;
}

.wmb-plan-marker .wmb-marker-icon {
    background: linear-gradient(135deg, #F40008 0%, #00B0F0 100%);
    margin-right: 0;
}

.wmb-plan-marker .wmb-marker-line {
    display: none;
}

.wmb-plan-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Contenido del Plan */
.wmb-plan-content {
    margin-top: 40px;
}

/* Ejes del Plan */
.wmb-plan-axis {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    height: 100%;
}

.wmb-plan-axis:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(244, 0, 8, 0.2);
}

/* Header del Eje */
.wmb-axis-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f1f1;
}

.wmb-axis-number {
    font-size: 36px;
    font-weight: 700;
    color: #F40008;
    font-family: var(--thm-gilroy-heavy);
    margin-right: 20px;
    line-height: 1;
}

.wmb-axis-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #F40008, #00B0F0);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.wmb-plan-axis:hover .wmb-axis-icon {
    transform: scale(1.1) rotate(5deg);
}

.wmb-axis-icon i {
    color: white;
    font-size: 20px;
}

.wmb-axis-header h4 {
    color: #333;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    font-family: var(--thm-gilroy-bold);
    line-height: 1.3;
    flex: 1;
}

/* Contenido del Eje */
.wmb-axis-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Acciones del Eje */
.wmb-axis-actions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wmb-axis-actions li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.wmb-axis-actions li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #F40008;
    font-weight: 700;
}

/* CTA Institucional */
.wmb-institutional-cta {
    margin-top: 60px;
    background: linear-gradient(45deg, #F40008, #00B0F0);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wmb-institutional-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 8s ease-in-out infinite;
}

.wmb-cta-content {
    position: relative;
    z-index: 2;
}

.wmb-cta-content h4 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    font-family: var(--thm-gilroy-heavy);
}

.wmb-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Acciones del CTA */
.wmb-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.wmb-btn-primary {
    background: white;
    color: #F40008;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.wmb-btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #F40008;
    text-decoration: none;
}

.wmb-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.wmb-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .wmb-main-title {
        font-size: 42px;
    }
    
    .wmb-section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .wmb-institutional-commitment {
        padding: 80px 0;
    }
    
    .wmb-institutional-header {
        margin-bottom: 60px;
    }
    
    .wmb-main-title {
        font-size: 36px;
    }
    
    .wmb-subtitle-narrative {
        font-size: 18px;
    }
    
    .wmb-content-spacing {
        margin-bottom: 60px;
    }
    
    .wmb-narrative-content,
    .wmb-visual-content,
    .wmb-vision-visual {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .wmb-section-marker {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .wmb-marker-line {
        width: 100px;
        height: 2px;
    }
    
    .wmb-section-title {
        font-size: 28px;
    }
    
    .wmb-lead-paragraph {
        font-size: 20px;
    }
    
    .wmb-detail-paragraph {
        font-size: 16px;
    }
    
    .wmb-visual-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .wmb-vision-highlights {
        gap: 15px;
    }
    
    .wmb-highlight-item {
        padding: 12px 20px;
    }
    
    .wmb-plan-header {
        margin-bottom: 40px;
    }
    
    .wmb-plan-content {
        margin-top: 20px;
    }
    
    .wmb-plan-axis {
        margin-bottom: 20px;
        padding: 25px 20px;
    }
    
    .wmb-axis-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .wmb-axis-number {
        font-size: 28px;
        margin-right: 0;
    }
    
    .wmb-axis-icon {
        margin-right: 0;
    }
    
    .wmb-axis-header h4 {
        font-size: 20px;
    }
    
    .wmb-institutional-cta {
        padding: 40px 25px;
        margin-top: 40px;
    }
    
    .wmb-cta-content h4 {
        font-size: 28px;
    }
    
    .wmb-cta-content p {
        font-size: 16px;
    }
    
    .wmb-cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .wmb-btn-primary,
    .wmb-btn-outline {
        width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .wmb-main-title {
        font-size: 28px;
    }
    
    .wmb-subtitle-narrative {
        font-size: 16px;
    }
    
    .wmb-section-title {
        font-size: 24px;
    }
    
    .wmb-lead-paragraph {
        font-size: 18px;
    }
    
    .wmb-detail-paragraph {
        font-size: 15px;
    }
    
    .wmb-pillar-item {
        padding: 10px 15px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .wmb-pillar-item span {
        font-size: 14px;
    }
    
    .wmb-visual-main img {
        height: 250px;
    }
    
    .wmb-quote-highlight p {
        font-size: 16px;
    }
    
    .wmb-stat-mini {
        padding: 15px 10px;
    }
    
    .wmb-stat-number {
        font-size: 20px;
    }
    
    .wmb-stat-label {
        font-size: 11px;
    }
    
    .wmb-vision-image-container img {
        height: 250px;
    }
    
    .wmb-highlight-item {
        padding: 10px 15px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .wmb-highlight-item span {
        font-size: 14px;
    }
    
    .wmb-objectives-list li span {
        font-size: 14px;
    }
    
    .wmb-plan-axis {
        padding: 20px 15px;
    }
    
    .wmb-axis-content p {
        font-size: 14px;
    }
    
    .wmb-axis-actions li {
        font-size: 13px;
    }
    
    .wmb-institutional-cta {
        padding: 30px 20px;
    }
    
    .wmb-cta-content h4 {
        font-size: 24px;
    }
    
    .wmb-cta-content p {
        font-size: 15px;
    }
    
    .wmb-btn-primary,
    .wmb-btn-outline {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# WMB Biography Styles
--------------------------------------------------------------*/
.wmb-biography-intro {
    position: relative;
    display: block;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.wmb-biography-intro::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../images/shapes/about-bg-pattern.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.05;
    z-index: 1;
}

.wmb-bio-content {
    position: relative;
    z-index: 2;
}

.wmb-bio-header {
    margin-bottom: 30px;
}

.wmb-bio-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--thm-primary) 0%, #0056b3 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.wmb-bio-badge i {
    font-size: 16px;
}

.wmb-bio-title {
    font-size: 48px;
    color: var(--thm-base);
    font-family: var(--thm-gilroy-heavy);
    line-height: 1.2;
    margin-bottom: 10px;
}

.wmb-bio-subtitle {
    font-size: 18px;
    color: var(--thm-primary);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 25px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.wmb-bio-intro-text {
    margin-bottom: 30px;
}

.wmb-bio-lead {
    font-size: 20px;
    color: var(--thm-base);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
}

.wmb-bio-text {
    font-size: 16px;
    color: var(--thm-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.wmb-bio-languages h5 {
    font-size: 18px;
    color: var(--thm-base);
    font-weight: 700;
    margin-bottom: 15px;
}

.wmb-languages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.wmb-language-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 8px;
    font-weight: 600;
    color: var(--thm-primary);
}

.wmb-language-item i {
    font-size: 14px;
}

.wmb-bio-image {
    position: relative;
}

.wmb-bio-main-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wmb-bio-main-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.wmb-bio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.wmb-bio-main-img:hover .wmb-bio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.wmb-bio-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.wmb-stat-item {
    text-align: center;
    color: #ffffff;
}

.wmb-stat-number {
    font-size: 24px;
    font-weight: 700;
    display: block;
}

.wmb-stat-label {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 5px;
}

.wmb-biography-origins,
.wmb-biography-career,
.wmb-biography-current,
.wmb-biography-vision {
    position: relative;
    display: block;
    padding: 80px 0;
}

.wmb-biography-origins {
    background: #ffffff;
}

.wmb-biography-career {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.wmb-biography-current {
    background: #ffffff;
}

.wmb-biography-vision {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
}

.wmb-biography-vision .wmb-section-title,
.wmb-biography-vision .wmb-vision-lead,
.wmb-biography-vision .wmb-vision-text {
    color: #ffffff;
}

.wmb-bio-section {
    margin-bottom: 50px;
}

.wmb-section-header {
    margin-bottom: 40px;
}

.wmb-section-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.wmb-marker-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--thm-primary) 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.wmb-section-title {
    font-size: 36px;
    color: var(--thm-base);
    font-family: var(--thm-gilroy-heavy);
    line-height: 1.3;
    margin-bottom: 15px;
}

.wmb-section-subtitle {
    font-size: 18px;
    color: var(--thm-gray);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.wmb-bio-narrative {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wmb-narrative-lead {
    font-size: 20px;
    color: var(--thm-base);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
}

.wmb-narrative-text {
    font-size: 16px;
    color: var(--thm-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.wmb-quote-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--thm-primary);
    margin: 30px 0;
    position: relative;
}

.wmb-quote-highlight i {
    font-size: 30px;
    color: var(--thm-primary);
    margin-bottom: 15px;
}

.wmb-quote-highlight blockquote {
    font-size: 18px;
    color: var(--thm-base);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.wmb-career-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.wmb-career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.wmb-career-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.wmb-career-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--thm-primary) 0%, #0056b3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}

.wmb-career-header h4 {
    font-size: 22px;
    color: var(--thm-base);
    font-weight: 700;
    margin: 0;
}

.wmb-career-content p {
    font-size: 16px;
    color: var(--thm-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.wmb-career-highlights {
    margin-top: 20px;
}

.wmb-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px 0;
}

.wmb-highlight-item i {
    color: var(--thm-primary);
    font-size: 16px;
}

.wmb-highlight-item span {
    font-size: 14px;
    color: var(--thm-gray);
    font-weight: 500;
}

.wmb-current-work {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wmb-work-lead {
    font-size: 20px;
    color: var(--thm-base);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
}

.wmb-work-text {
    font-size: 16px;
    color: var(--thm-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.wmb-work-focus h5 {
    font-size: 18px;
    color: var(--thm-base);
    font-weight: 700;
    margin-bottom: 20px;
}

.wmb-focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.wmb-focus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.wmb-focus-item:hover {
    background: linear-gradient(135deg, var(--thm-primary) 0%, #0056b3 100%);
    color: #ffffff;
    transform: translateY(-2px);
}

.wmb-focus-item i {
    font-size: 18px;
    color: var(--thm-primary);
    transition: color 0.3s ease;
}

.wmb-focus-item:hover i {
    color: #ffffff;
}

.wmb-focus-item span {
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.wmb-vision-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.wmb-vision-lead {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
}

.wmb-vision-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.wmb-final-quote {
    margin-top: 40px;
}

.wmb-quote-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ffffff;
    position: relative;
}

.wmb-quote-container i {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 15px;
}

.wmb-quote-container blockquote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.wmb-quote-container cite {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

.wmb-achievements {
    position: relative;
    display: block;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.wmb-achievements-header {
    margin-bottom: 50px;
}

.wmb-achievement-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.wmb-achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.wmb-achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--thm-primary) 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    margin: 0 auto 20px;
}

.wmb-achievement-content h4 {
    font-size: 36px;
    color: var(--thm-primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.wmb-achievement-content p {
    font-size: 16px;
    color: var(--thm-gray);
    font-weight: 500;
    margin: 0;
}

.wmb-biography-cta {
    position: relative;
    display: block;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--thm-base) 0%, #1a1a1a 100%);
    color: #ffffff;
}

.wmb-biography-cta::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../images/shapes/cta-pattern.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.wmb-biography-cta .wmb-cta-content {
    position: relative;
    z-index: 2;
}

.wmb-biography-cta .wmb-cta-content h4 {
    color: #ffffff;
}

.wmb-biography-cta .wmb-cta-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design para Biografía */
@media (max-width: 768px) {
    .wmb-bio-title {
        font-size: 36px;
    }
    
    .wmb-bio-subtitle {
        font-size: 16px;
    }
    
    .wmb-bio-lead {
        font-size: 18px;
    }
    
    .wmb-languages-grid {
        grid-template-columns: 1fr;
    }
    
    .wmb-bio-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .wmb-section-title {
        font-size: 28px;
    }
    
    .wmb-bio-narrative {
        padding: 25px;
    }
    
    .wmb-career-card {
        padding: 25px;
    }
    
    .wmb-focus-grid {
        grid-template-columns: 1fr;
    }
    
    .wmb-achievement-content h4 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .wmb-biography-intro,
    .wmb-biography-origins,
    .wmb-biography-career,
    .wmb-biography-current,
    .wmb-biography-vision,
    .wmb-achievements,
    .wmb-biography-cta {
        padding: 50px 0;
    }
    
    .wmb-bio-title {
        font-size: 28px;
    }
    
    .wmb-section-title {
        font-size: 24px;
    }
    
    .wmb-bio-narrative {
        padding: 20px;
    }
    
    .wmb-career-card {
        padding: 20px;
    }
    
    .wmb-quote-highlight {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# WMB News/Noticias Styles
--------------------------------------------------------------*/
.wmb-news-featured {
    position: relative;
    display: block;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.wmb-news-featured::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../images/shapes/news-pattern.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.03;
    z-index: 1;
}

.wmb-news-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.wmb-news-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.wmb-news-badge i {
    font-size: 16px;
}

.wmb-news-title {
    font-size: 42px;
    color: var(--thm-base);
    font-family: var(--thm-gilroy-heavy);
    line-height: 1.2;
    margin-bottom: 15px;
}

.wmb-news-subtitle {
    font-size: 18px;
    color: var(--thm-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Noticia Principal */
.wmb-news-main {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.wmb-news-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.wmb-news-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.wmb-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wmb-news-main:hover .wmb-news-image img {
    transform: scale(1.05);
}

.wmb-news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wmb-news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.wmb-news-content {
    padding: 30px;
}

.wmb-news-content h3 {
    font-size: 24px;
    color: var(--thm-base);
    font-family: var(--thm-gilroy-bold);
    line-height: 1.3;
    margin-bottom: 15px;
}

.wmb-news-content h3 a {
    color: var(--thm-base);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wmb-news-content h3 a:hover {
    color: var(--thm-primary);
}

.wmb-news-content p {
    font-size: 16px;
    color: var(--thm-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.wmb-news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.wmb-news-author,
.wmb-news-reading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--thm-gray);
}

.wmb-news-author i,
.wmb-news-reading i {
    color: var(--thm-primary);
    font-size: 12px;
}

.wmb-news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--thm-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.wmb-news-link:hover {
    color: #0056b3;
    gap: 12px;
}

.wmb-news-link i {
    transition: transform 0.3s ease;
}

.wmb-news-link:hover i {
    transform: translateX(3px);
}

/* Noticias Secundarias */
.wmb-news-secondary {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.wmb-news-item {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.wmb-news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.wmb-news-item-image {
    flex-shrink: 0;
    width: 120px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
}

.wmb-news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wmb-news-item:hover .wmb-news-item-image img {
    transform: scale(1.1);
}

.wmb-news-item-content {
    flex: 1;
}

.wmb-news-item-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.wmb-news-item-category {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wmb-news-item-date {
    font-size: 12px;
    color: var(--thm-gray);
    font-weight: 500;
}

.wmb-news-item-content h4 {
    font-size: 16px;
    color: var(--thm-base);
    font-family: var(--thm-gilroy-bold);
    line-height: 1.3;
    margin-bottom: 8px;
}

.wmb-news-item-content h4 a {
    color: var(--thm-base);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wmb-news-item-content h4 a:hover {
    color: var(--thm-primary);
}

.wmb-news-item-content p {
    font-size: 14px;
    color: var(--thm-gray);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Estadísticas de Noticias */
.wmb-news-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 60px 0 40px;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.wmb-news-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.wmb-news-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}

.wmb-news-stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wmb-news-stat-number {
    font-size: 28px;
    color: var(--thm-base);
    font-family: var(--thm-gilroy-heavy);
    font-weight: 700;
    line-height: 1;
}

.wmb-news-stat-label {
    font-size: 14px;
    color: var(--thm-gray);
    font-weight: 500;
    margin-top: 5px;
}

/* CTA de Noticias */
.wmb-news-cta {
    margin-top: 20px;
}

.wmb-btn-news {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    border: 2px solid transparent;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.wmb-btn-news:hover {
    background: #ffffff;
    color: #28a745;
    border-color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.wmb-btn-news i {
    transition: transform 0.3s ease;
}

.wmb-btn-news:hover i {
    transform: translateX(3px);
}

/* Responsive Design para Noticias */
@media (max-width: 768px) {
    .wmb-news-featured {
        padding: 60px 0;
    }
    
    .wmb-news-title {
        font-size: 32px;
    }
    
    .wmb-news-subtitle {
        font-size: 16px;
    }
    
    .wmb-news-header {
        margin-bottom: 40px;
    }
    
    .wmb-news-image {
        height: 220px;
    }
    
    .wmb-news-content {
        padding: 20px;
    }
    
    .wmb-news-content h3 {
        font-size: 20px;
    }
    
    .wmb-news-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .wmb-news-item-image {
        width: 100%;
        height: 150px;
    }
    
    .wmb-news-stats {
        flex-direction: column;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .wmb-news-stat-item {
        justify-content: center;
    }
    
    .wmb-news-stat-content {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .wmb-news-featured {
        padding: 50px 0;
    }
    
    .wmb-news-title {
        font-size: 28px;
    }
    
    .wmb-news-content {
        padding: 15px;
    }
    
    .wmb-news-content h3 {
        font-size: 18px;
    }
    
    .wmb-news-item {
        padding: 15px;
    }
    
    .wmb-news-item-image {
        height: 120px;
    }
    
    .wmb-news-stat-number {
        font-size: 24px;
    }
    
    .wmb-news-stat-label {
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# WMB News Page Styles
--------------------------------------------------------------*/
.page-header-bg-noticias {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.9), rgba(32, 201, 151, 0.9)), url(../images/backgrounds/news-header-bg.jpg);
    background-size: cover;
    background-position: center;
}

.wmb-news-page {
    position: relative;
    display: block;
    padding: 80px 0;
    background: #ffffff;
}

.wmb-news-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.wmb-news-page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--thm-base);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.wmb-news-page-badge i {
    font-size: 16px;
}

.wmb-news-page-title {
    font-size: 48px;
    color: var(--thm-base);
    font-family: var(--thm-gilroy-heavy);
    line-height: 1.2;
    margin-bottom: 15px;
}

.wmb-news-page-subtitle {
    font-size: 18px;
    color: var(--thm-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Filtros de Noticias */
.wmb-news-filters {
    margin-bottom: 50px;
}

.wmb-filter-tabs {
    display: flex;
    justify-content: center;
}

.wmb-filter-list {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.wmb-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--thm-gray);
    border: 2px solid #e9ecef;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wmb-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--thm-base);
    border-radius: 25px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.wmb-filter-btn:hover,
.wmb-filter-btn.active {
    color: #ffffff;
    border-color: var(--thm-base);
    background: var(--thm-base);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 240, 0.3);
}

.wmb-filter-btn:hover::before,
.wmb-filter-btn.active::before {
    opacity: 1;
    transform: scale(1);
}

.wmb-filter-btn i {
    font-size: 14px;
}

/* Grid de Noticias */
.wmb-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.wmb-news-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wmb-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.wmb-news-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.wmb-news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wmb-news-card:hover .wmb-news-card-image img {
    transform: scale(1.05);
}

.wmb-news-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--thm-primary);
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wmb-news-card-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.wmb-news-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wmb-news-card-content h3 {
    font-size: 22px;
    color: var(--thm-base);
    font-family: var(--thm-gilroy-bold);
    line-height: 1.3;
    margin-bottom: 15px;
}

.wmb-news-card-content h3 a {
    color: var(--thm-base);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wmb-news-card-content h3 a:hover {
    color: var(--thm-primary);
}

.wmb-news-card-content p {
    font-size: 16px;
    color: var(--thm-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.wmb-news-card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.wmb-news-card-author,
.wmb-news-card-reading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--thm-gray);
}

.wmb-news-card-author i,
.wmb-news-card-reading i {
    color: var(--thm-primary);
    font-size: 12px;
}

.wmb-news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--thm-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.wmb-news-card-link:hover {
    color: #0056b3;
    gap: 12px;
}

.wmb-news-card-link i {
    transition: transform 0.3s ease;
}

.wmb-news-card-link:hover i {
    transform: translateX(3px);
}

/* Paginación */
.wmb-news-pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

/* Suscripción */
.wmb-news-subscription {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 50px;
    margin-top: 30px;
}

.wmb-subscription-content {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}

.wmb-subscription-icon {
    width: 60px;
    height: 60px;
    background: var(--thm-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
}

.wmb-subscription-text h4 {
    font-size: 24px;
    color: var(--thm-base);
    font-family: var(--thm-gilroy-bold);
    margin-bottom: 8px;
}

.wmb-subscription-text p {
    font-size: 16px;
    color: var(--thm-gray);
    margin: 0;
}

.wmb-subscription-form {
    flex: 1;
    max-width: 400px;
}

.wmb-subscription-form .wmb-form-group {
    display: flex;
    gap: 10px;
}

.wmb-subscription-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.wmb-subscription-form .wmb-submit-btn {
    background: var(--thm-base);
    color: #ffffff;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.wmb-subscription-form .wmb-submit-btn:hover {
    background: #ffffff;
    color: var(--thm-base);
    border: 2px solid var(--thm-base);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 240, 0.3);
}

/* Responsive Design para Página de Noticias */
@media (max-width: 768px) {
    .wmb-news-page {
        padding: 60px 0;
    }
    
    .wmb-news-page-title {
        font-size: 36px;
    }
    
    .wmb-news-page-subtitle {
        font-size: 16px;
    }
    
    .wmb-filter-list {
        gap: 10px;
    }
    
    .wmb-filter-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .wmb-news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wmb-news-card-image {
        height: 200px;
    }
    
    .wmb-news-card-content {
        padding: 20px;
    }
    
    .wmb-news-card-content h3 {
        font-size: 18px;
    }
    
    .wmb-subscription-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .wmb-subscription-form .wmb-form-group {
        flex-direction: column;
    }
    
    .wmb-news-subscription {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .wmb-news-page-title {
        font-size: 28px;
    }
    
    .wmb-filter-list {
        flex-direction: column;
        align-items: center;
    }
    
    .wmb-news-card-content {
        padding: 15px;
    }
    
    .wmb-news-card-content h3 {
        font-size: 16px;
    }
    
    .wmb-news-subscription {
        padding: 20px 15px;
    }
    
    .wmb-subscription-text h4 {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# WMB News Enhanced Styles
--------------------------------------------------------------*/

/* Mejoras para la sección de noticias del home */
.wmb-news-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.wmb-news-highlights {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.wmb-highlight-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--thm-gray);
    font-weight: 500;
}

.wmb-highlight-stat i {
    color: var(--thm-primary);
    font-size: 16px;
}

.wmb-news-views {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--thm-gray);
}

.wmb-news-views i {
    color: var(--thm-primary);
    font-size: 12px;
}

/* Header de noticias secundarias */
.wmb-news-secondary-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.wmb-news-secondary-header h4 {
    font-size: 20px;
    color: var(--thm-base);
    font-family: var(--thm-gilroy-bold);
    margin-bottom: 5px;
}

.wmb-news-secondary-header p {
    font-size: 14px;
    color: var(--thm-gray);
    margin: 0;
}

/* Categorías mejoradas */
.category-transport {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%) !important;
}

.category-cooperation {
    background: linear-gradient(135deg, #6f42c1 0%, #5a2d91 100%) !important;
}

.category-community {
    background: linear-gradient(135deg, #e83e8c 0%, #c7336c 100%) !important;
}

/* Stats en noticias secundarias */
.wmb-news-item-stats {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f1f1f1;
}

.wmb-news-item-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--thm-gray);
}

.wmb-news-item-stats i {
    color: var(--thm-primary);
}

/* Botón "Ver más" mejorado */
.wmb-news-more {
    margin-top: 20px;
    text-align: center;
}

.wmb-btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--thm-base);
    border: 2px solid #e9ecef;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wmb-btn-more:hover {
    background: var(--thm-base);
    color: #ffffff;
    border-color: var(--thm-base);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 240, 0.3);
}

/* Estilos para la página de noticias */
.wmb-news-card.featured {
    border: 2px solid #ffc107;
    position: relative;
}

.wmb-news-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.1;
}

.wmb-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.wmb-news-card-stats {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.wmb-news-card-stats .wmb-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--thm-gray);
    font-weight: 500;
}

.wmb-news-card-stats .wmb-stat-item i {
    color: var(--thm-primary);
    font-size: 14px;
}

.wmb-news-card-views {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--thm-gray);
}

.wmb-news-card-views i {
    color: var(--thm-primary);
    font-size: 12px;
}

/* Responsive para las mejoras */
@media (max-width: 768px) {
    .wmb-news-highlights {
        flex-direction: column;
        gap: 10px;
    }
    
    .wmb-news-item-stats {
        justify-content: center;
    }
    
    .wmb-news-card-stats {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .wmb-news-secondary-header {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .wmb-news-featured-badge,
    .wmb-featured-badge {
        position: static;
        margin-bottom: 10px;
        align-self: flex-start;
    }
    
    .wmb-highlight-stat {
        justify-content: center;
    }
}

/* ===== Estilos para Sección de Noticias Clásica - Home ===== */
.wmb-news-classic {
    padding: 80px 0;
    background: #fff;
}

.wmb-news-classic .wmb-news-header {
    margin-bottom: 60px;
}

.wmb-news-classic .wmb-news-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--thm-base);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.wmb-news-classic .wmb-news-title {
    font-size: 36px;
    font-family: var(--thm-gilroy-heavy);
    color: var(--thm-black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.wmb-news-classic .wmb-news-subtitle {
    font-size: 16px;
    color: var(--thm-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid de Noticias */
.wmb-news-classic-grid {
    margin-bottom: 50px;
}

.wmb-news-classic-grid [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

.wmb-news-classic .wmb-news-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wmb-news-classic .wmb-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wmb-news-classic .wmb-news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.wmb-news-classic .wmb-news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wmb-news-classic .wmb-news-card:hover .wmb-news-card-image img {
    transform: scale(1.05);
}

.wmb-news-classic .wmb-news-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--thm-primary);
    color: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.wmb-news-classic .wmb-news-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}



.wmb-news-classic .wmb-news-card h4 {
    font-size: 18px;
    font-family: var(--thm-gilroy-bold);
    line-height: 1.4;
    margin-bottom: 15px;
    margin-top: 0;
}

.wmb-news-classic .wmb-news-card h4 a {
    color: var(--thm-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wmb-news-classic .wmb-news-card h4 a:hover {
    color: var(--thm-base);
}

.wmb-news-classic .wmb-news-card p {
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CTA Button */
.wmb-news-cta {
    margin-top: 30px;
}

.wmb-news-cta .thm-btn {
    padding: 15px 35px;
    font-size: 16px;
    font-family: var(--thm-gilroy-bold);
}

/* Responsive */
@media (max-width: 1199px) {
    .wmb-news-classic .wmb-news-title {
        font-size: 32px;
    }
    
    .wmb-news-classic .wmb-news-card-image {
        height: 180px;
    }
}

@media (max-width: 991px) {
    .wmb-news-classic {
        padding: 60px 0;
    }
    
    .wmb-news-classic .wmb-news-title {
        font-size: 28px;
    }
    
    .wmb-news-classic .wmb-news-card-image {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .wmb-news-classic {
        padding: 50px 0;
    }
    
    .wmb-news-classic .wmb-news-header {
        margin-bottom: 40px;
    }
    
    .wmb-news-classic .wmb-news-title {
        font-size: 24px;
    }
    
    .wmb-news-classic .wmb-news-card {
        margin-bottom: 25px;
    }
    
    .wmb-news-classic .wmb-news-card-image {
        height: 180px;
    }
    
    .wmb-news-classic .wmb-news-card-content {
        padding: 20px 15px;
    }
    
    .wmb-news-classic .wmb-news-card h4 {
        font-size: 16px;
    }
}

/* ===== Estilos para página de noticias - diseño como inicio ===== */
.wmb-news-page {
    padding: 80px 0;
    background: #fff;
}

.wmb-news-classic-header {
    margin-bottom: 50px;
}

.wmb-news-classic-header .wmb-news-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--thm-base);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.wmb-news-classic-header .wmb-news-title {
    font-size: 36px;
    font-family: var(--thm-gilroy-heavy);
    color: var(--thm-black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.wmb-news-classic-header .wmb-news-subtitle {
    font-size: 16px;
    color: var(--thm-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filtros simples */
.wmb-simple-filters {
    margin-bottom: 50px;
}

.wmb-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.wmb-simple-filter-btn {
    background: #f8f9fa;
    color: var(--thm-gray);
    border: 2px solid #e9ecef;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wmb-simple-filter-btn:hover,
.wmb-simple-filter-btn.active {
    background: var(--thm-base);
    color: #ffffff;
    border-color: var(--thm-base);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 176, 240, 0.3);
}

/* Grid de noticias página */
.wmb-news-page .wmb-news-classic-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.wmb-news-page .wmb-news-classic-grid [class*="col-"] {
    display: flex;
    padding: 0 15px;
    margin-bottom: 30px;
}

.wmb-news-page .wmb-news-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.wmb-news-page .wmb-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wmb-news-page .wmb-news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.wmb-news-page .wmb-news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wmb-news-page .wmb-news-card:hover .wmb-news-card-image img {
    transform: scale(1.05);
}

.wmb-news-page .wmb-news-card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--thm-primary);
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.wmb-news-page .wmb-news-card-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 500;
}

.wmb-news-page .wmb-news-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wmb-news-page .wmb-news-card h4 {
    font-size: 18px;
    font-family: var(--thm-gilroy-bold);
    line-height: 1.4;
    margin-bottom: 15px;
    margin-top: 0;
}

.wmb-news-page .wmb-news-card h4 a {
    color: var(--thm-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wmb-news-page .wmb-news-card h4 a:hover {
    color: var(--thm-base);
}

.wmb-news-page .wmb-news-card p {
    color: var(--thm-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive para página de noticias */
@media (max-width: 768px) {
    .wmb-news-page {
        padding: 50px 0;
    }
    
    .wmb-news-classic-header .wmb-news-title {
        font-size: 28px;
    }
    
    .wmb-filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .wmb-simple-filter-btn {
        min-width: 150px;
        text-align: center;
    }
    
    .wmb-news-page .wmb-news-card-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .wmb-news-classic-header .wmb-news-title {
        font-size: 24px;
    }
    
    .wmb-news-page .wmb-news-card h4 {
        font-size: 16px;
    }
}
