/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --wishon-font: 'DM Sans', sans-serif;
  --wishon-font-two: 'Merriweather', serif;
  --wishon-white: #ffffff;
  --wishon-white-rgb: 255, 255, 255;
  --wishon-base: #e33c34;
  --wishon-base-rgb: 227, 60, 52;
  --wishon-black: #313131;
  --wishon-black-rgb: 49, 49, 49;
  --wishon-primary: #f3b42c;
  --wishon-primary-rgb: 243, 180, 44;
  --wishon-extra: #f2f2f2;
  --wishon-extra-rgb: 242, 242, 242;
  --wishon-gray: #6f6f6f;
  --wishon-gray-rgb: 111, 111, 111;
  --wishon-bdr-color: #e0e0e0;
  --wishon-bdr-color-rgb: 224, 224, 224;
  --wishon-bdr-radius: 10px;
  --wishon-letter-spacing: -0.04em;
  --wishon-letter-spacing-two: 0.1em;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--wishon-font);
  color: var(--wishon-gray);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  direction: ltr;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--wishon-base);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--wishon-black);
  margin: 0;
  letter-spacing: var(--wishon-letter-spacing);
  font-family: var(--wishon-font-two);
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--wishon-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

.section-title {
  position: relative;
  display: block;
  padding-top: 13px;
  margin-bottom: 47px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  color: var(--wishon-gray);
  font-weight: 500;
}

.section-title__tagline::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  height: 2px;
  width: 33px;
  background-color: var(--wishon-primary);
}

.section-title__title {
  margin: 0;
  color: var(--wishon-black);
  font-size: 45px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: var(--wishon-letter-spacing);
  margin-top: 3px;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 700;
  font-size: 14px;
  color: var(--wishon-white);
  text-transform: uppercase;
  letter-spacing: var(--wishon-letter-spacing-two);
  background-color: #f3b42d;
  border-radius: var(--wishon-bdr-radius);
  padding: 17px 50px 17px;
  padding-right: 47px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
}

.thm-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--wishon-base);
  transform: scale(0);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border-radius: var(--wishon-bdr-radius);
  opacity: 1;
  z-index: -1;
}

.thm-btn:hover:after {
  opacity: 1;
  transform: scale(1);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.thm-btn:hover {
  color: var(--wishon-white);
}

.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 {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  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 rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--wishon-base);
  color: var(--wishon-white);
}

.bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--wishon-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
  background: var(--wishon-base);
  color: var(--wishon-white);
  cursor: pointer;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: 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;
  background-image: url(../images/resources/logo-1.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--wishon-black);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99999;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
}

.scroll-to-top i {
  color: var(--wishon-white);
  font-size: 18px;
  line-height: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.scroll-to-top:hover {
  background-color: var(--wishon-base);
}

.scroll-to-top:hover i {
  color: var(--wishon-white);
}

/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all .4s ease-in .8s;
  -o-transition: all .4s ease-in .8s;
  transition: all .4s ease-in .8s;
  cursor: url(../images/icon/cross-out.html),
    pointer;
  z-index: 999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .8;
  visibility: visible;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s;
  transition: all .8s ease-out 0s;
  right: 100%;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--wishon-base);
  border-color: var(--wishon-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--wishon-black);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in .3s;
  -o-transition: all .3s ease-in .3s;
  transition: all .3s ease-in .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  border: none;
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
  border: none;
  outline: none;
  background-color: var(--wishon-white);
  color: var(--wishon-black);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 45px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:hover {
  color: var(--wishon-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  width: 100%;
  transition: all 500ms ease;
  z-index: 991;
}

.main-header__top {
  position: relative;
  display: block;
  background-color: var(--wishon-black);
  z-index: 1;
}

.main-header__top-wrapper {
  position: relative;
  display: block;
  padding: 0px 60px 0px;
}

.main-header__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}

.main-header__top-left {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-header__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li+li {
  margin-left: 30px;
}

.main-header__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li .icon i {
  font-size: 13px;
  color: var(--wishon-primary);
}

.main-header__contact-list li .text {
  margin-left: 10px;
}

.main-header__contact-list li .text p {
  font-size: 13px;
  color: var(--wishon-white);
}

.main-header__contact-list li .text p a {
  color: var(--wishon-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__contact-list li .text p a:hover {
  color: var(--wishon-base);
}

.main-header__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-header__social {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #232323;
  padding: 13.5px 40px 13.5px;
  margin-right: 30px;
}

.main-header__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--wishon-white);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 1;
}

.main-header__social a:hover {
  color: var(--wishon-base);
}

.main-header__social a+a {
  margin-left: 27px;
}

.main-header__login-reg {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__login-reg li {
  position: relative;
  display: block;
}

.main-header__login-reg li:before {
  content: "";
  position: absolute;
  top: 9px;
  bottom: 9px;
  right: -13px;
  width: 1px;
  background-color: #898989;
  transform: rotate(15deg);
}

.main-header__login-reg li:last-child:before {
  display: none;
}

.main-header__login-reg li+li {
  margin-left: 26px;
}

.main-header__login-reg li a {
  font-size: 13px;
  color: #898989;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__login-reg li a:hover {
  color: var(--wishon-white);
}

.main-menu {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  padding: 0px 60px 0px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--wishon-white);
  z-index: 1;
}

.main-menu__left {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__logo {
  position: relative;
  display: block;
  margin-right: 135px;
  z-index: 1;
}

.main-menu__logo a {
  position: relative;
  display: block;
  padding: 16px 60px 16px;
  padding-left: 0;
  z-index: 1;
}

.main-menu__logo a:before {
  content: "";
  position: absolute;
  top: 0;
  left: -10000000px;
  right: 0;
  background-color: var(--wishon-white);
  z-index: -1;
}

.main-menu__logo img {
  width: 77px;
  height: auto;
}

.main-menu__main-menu-box {
  position: relative;
  display: block;
}

.main-menu__right {
  position: relative;
  display: block;
}

.main-menu__join-us-search-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
}

.main-menu__join-us {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 16px;
}

.main-menu__join-us-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: var(--wishon-extra);
  border-radius: 50%;
  font-size: 17px;
  color: var(--wishon-base);
}

.main-menu__join-us-content {
  margin-left: 15px;
}

.main-menu__join-us-sub-title {
  font-size: 13px;
  line-height: 13px;
}

.main-menu__join-us-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  margin-top: 10px;
}

.main-menu__join-us-title a {
  color: var(--wishon-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__join-us-title a:hover {
  color: var(--wishon-base);
}

.main-menu__search-box {
  position: relative;
  display: block;
  margin-left: 60px;
  margin-right: 30px;
  padding: 13px 0;
}

.main-menu__search-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  width: 1px;
  background-color: var(--wishon-bdr-color);
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--wishon-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--wishon-base);
}

.main-menu__btn-box {
  position: relative;
  display: block;
}

.main-menu__btn {
  padding: 10px 30px 10px;
  font-size: 12px;
}


.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  /* margin-left: 70px; */
  margin-left: 30px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--wishon-gray);
  font-weight: 400;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 16px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 50%;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-size: 13px;
  color: var(--wishon-gray);
  transform: translateY(-50%);
  font-weight: 700;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--wishon-black);
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--wishon-black);
  text-shadow: 1px 0 0 rgb(49 49 49 / 60%);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
  margin-top: 10px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  color: var(--wishon-black);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px 10px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--wishon-base);
  color: var(--wishon-white);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}


.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--wishon-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--wishon-base);
}

.main-menu .mobile-nav__toggler {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--wishon-black);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--wishon-base);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 315px;
  background-color: var(--wishon-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--wishon-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--wishon-font);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--wishon-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--wishon-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--wishon-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--wishon-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--wishon-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--wishon-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--wishon-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--wishon-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--wishon-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--wishon-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-two__top {
  position: relative;
  display: block;
  background-color: var(--wishon-black);
  z-index: 1;
}

.main-header-two__top-wrapper {
  position: relative;
  display: block;
  padding: 0px 0px 0px;
}

.main-header-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}

.main-header-two__top-left {
  position: relative;
  display: block;
}

.main-header-two__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__contact-list li {
  position: relative;
  display: block;
}

.main-header-two__contact-list li:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -16px;
  width: 1px;
  background-color: #898989;
}

.main-header-two__contact-list li:first-child:before {
  display: none;
}

.main-header-two__contact-list li+li {
  margin-left: 30px;
}

.main-header-two__contact-list li a {
  font-size: 13px;
  color: #898989;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__contact-list li a:hover {
  color: var(--wishon-white);
}

.main-header-two__top-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--wishon-white);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 1;
}

.main-header-two__social a:hover {
  color: var(--wishon-base);
}

.main-header-two__social a+a {
  margin-left: 27px;
}

.main-header-two__btn-box {
  position: relative;
  display: block;
  margin-left: 30px;
}

.main-header-two__btn {
  background-color: var(--wishon-base);
  padding: 6px 30px 6px;
  font-size: 12px;
  border-radius: 0;
}

.main-header-two__btn:hover {
  color: var(--wishon-base);
}

.main-header-two__btn:after {
  background-color: var(--wishon-white);
  border-radius: 0;
}

.main-menu-two {
  background-color: rgba(35, 35, 35, 0.8);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.stricky-header.main-menu-two {
  background-color: rgba(35, 35, 35, 1);
  box-shadow: none;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
}

.main-menu-two__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}

.main-menu-two__left {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__logo {
  position: relative;
  display: block;
  padding: 27.5px 0;
}

.main-menu-two__main-menu-box {
  position: relative;
  display: block;
}

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1;
}

.main-menu-two__search-box {
  position: relative;
  display: block;
  margin-left: 60px;
  padding: 33px 0;
}

.main-menu-two__search-box:before {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: -30px;
  width: 1px;
  background-color: rgba(var(--wishon-white-rgb), .10);
}

.main-menu-two__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--wishon-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__search:hover {
  color: var(--wishon-base);
}

.main-menu-two .main-menu__list>li+li,
.stricky-header.main-menu-two .main-menu__list>li+li {
  margin-left: 60px;
}

.main-menu-two .main-menu__list>li,
.stricky-header.main-menu-two .main-menu__list>li {
  padding-top: 30px;
  padding-bottom: 30px;
}

.main-menu-two .main-menu__list>li>a,
.stricky-header.main-menu-two .main-menu__list>li>a {
  font-size: 16px;
  color: var(--wishon-white);
  font-weight: 400;
}

.main-menu-two .main-menu__list>li.dropdown>a:after {
  color: var(--wishon-white);
}

.main-menu-two .main-menu__list>li.current>a::after,
.main-menu-two .main-menu__list>li:hover>a::after,
.stricky-header.main-menu-two .main-menu__list>li.current>a::after,
.stricky-header.main-menu-two .main-menu__list>li:hover>a::after {
  color: var(--wishon-white);
}

.main-menu-two .main-menu__list>li.current>a,
.main-menu-two .main-menu__list>li:hover>a,
.stricky-header.main-menu-two .main-menu__list>li.current>a,
.stricky-header.main-menu-two .main-menu__list>li:hover>a {
  color: var(--wishon-white);
  text-shadow: 1px 0 0 rgb(255 255 255 / 60%);
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-three {
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.15);
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
}

.main-menu-three__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
  padding: 0 60px 0;
}

.main-menu-three__logo {
  position: relative;
  display: block;
  padding: 32.5px 0;
}

.main-menu-three__main-menu-box {
  position: relative;
  display: block;
}

.main-menu-three__social-and-search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--wishon-white);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 1;
}

.main-menu-three__social a+a {
  margin-left: 30px;
}

.main-menu-three__social a:hover {
  color: var(--wishon-black);
}

.main-menu-three__search-box {
  position: relative;
  display: block;
  margin-left: 60px;
  padding: 38px 0;
}

.main-menu-three__search-box:before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 29px;
  left: -30px;
  width: 1px;
  background-color: rgba(var(--wishon-white-rgb), .30);
}

.main-menu-three__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--wishon-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__search:hover {
  color: var(--wishon-black);
}

.main-menu-three .main-menu__list>li,
.stricky-header.main-menu-three .main-menu__list>li {
  padding-top: 35px;
  padding-bottom: 35px;
}

.main-menu-three .main-menu__list>li+li,
.stricky-header.main-menu-three .main-menu__list>li+li {
  margin-left: 70px;
}

.main-menu-three .main-menu__list>li>a,
.stricky-header.main-menu-three .main-menu__list>li>a {
  color: var(--wishon-white);
}

.main-menu-three .main-menu__list>li.dropdown>a:after {
  color: var(--wishon-white);
}

.main-menu-three .main-menu__list>li.current>a::after,
.main-menu-three .main-menu__list>li:hover>a::after,
.stricky-header.main-menu-three .main-menu__list>li.current>a::after,
.stricky-header.main-menu-three .main-menu__list>li:hover>a::after {
  color: var(--wishon-white);
}

.main-menu-three .main-menu__list>li.current>a,
.main-menu-three .main-menu__list>li:hover>a,
.stricky-header.main-menu-three .main-menu__list>li.current>a,
.stricky-header.main-menu-three .main-menu__list>li:hover>a {
  color: var(--wishon-white);
  text-shadow: 1px 0 0 rgb(255 255 255 / 60%);
}

.stricky-header.main-menu-three {
  background-color: var(--wishon-base);
}

/*--------------------------------------------------------------
# Navigations Four
--------------------------------------------------------------*/
.main-header-four {
  position: relative;
  display: block;
  width: 100%;
  transition: all 500ms ease;
  z-index: 991;
}

.main-header-four__top {
  position: relative;
  display: block;
  background-color: var(--wishon-black);
  z-index: 1;
}

.main-header-four__top-wrapper {
  position: relative;
  display: block;
}

.main-header-four__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5.5px 0;
  z-index: 1;
}

.main-header-four__top-left {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-header-four__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-four__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-four__contact-list li+li {
  margin-left: 30px;
}

.main-header-four__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-four__contact-list li .icon i {
  font-size: 13px;
  color: var(--wishon-primary);
}

.main-header-four__contact-list li .text {
  margin-left: 10px;
}

.main-header-four__contact-list li .text p {
  font-size: 13px;
  color: var(--wishon-white);
}

.main-header-four__contact-list li .text p a {
  color: var(--wishon-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-four__contact-list li .text p a:hover {
  color: var(--wishon-base);
}

.main-header-four__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-header-four__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.main-header-four__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--wishon-white);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 1;
}

.main-header-four__social a:hover {
  color: var(--wishon-base);
}

.main-header-four__social a+a {
  margin-left: 27px;
}

.main-header-four__login-reg {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-four__login-reg li {
  position: relative;
  display: block;
}

.main-header-four__login-reg li:before {
  content: "";
  position: absolute;
  top: 9px;
  bottom: 9px;
  right: -13px;
  width: 1px;
  background-color: #898989;
  transform: rotate(15deg);
}

.main-header-four__login-reg li:last-child:before {
  display: none;
}

.main-header-four__login-reg li+li {
  margin-left: 26px;
}

.main-header-four__login-reg li a {
  font-size: 13px;
  color: #898989;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-four__login-reg li a:hover {
  color: var(--wishon-white);
}

.main-menu-four__wrapper {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.main-menu-four__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}

.main-menu-four__left {
  position: relative;
  display: block;
}

.main-menu-four__logo {
  position: relative;
  display: block;
  padding: 27.5px 0;
  z-index: 1;
}

.main-menu-four__main-menu-box {
  position: relative;
  display: block;
}

.main-menu-four__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-four__search-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

.main-menu-four__search-box {
  position: relative;
  display: block;
  margin-left: 90px;
  margin-right: 30px;
  padding: 13px 0;
}

.main-menu-four__search-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  width: 1px;
  background-color: var(--wishon-bdr-color);
}

.main-menu-four__search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--wishon-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-four__search:hover {
  color: var(--wishon-base);
}

.main-menu-four__btn-box {
  position: relative;
  display: block;
}

.main-menu-four__btn {
  padding: 10px 30px 10px;
  font-size: 12px;
}

.main-menu-four .main-menu__list>li,
.stricky-header.main-menu-four .main-menu__list>li {
  padding-top: 30px;
  padding-bottom: 30px;
}

.main-menu-four .main-menu__list>li+li,
.stricky-header.main-menu-four .main-menu__list>li+li {
  margin-left: 50px;
}

.main-menu-four .main-menu__list>li>a,
.stricky-header.main-menu-four .main-menu__list>li>a {
  font-size: 16px;
  color: var(--wishon-gray);
}

.main-menu-four .main-menu__list>li.dropdown>a {
  padding-right: 16px;
}

.main-menu-four .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 50%;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-size: 13px;
  color: var(--wishon-gray);
  transform: translateY(-50%);
  font-weight: 700;
  z-index: 1;
}

.main-menu-four .main-menu__list>li.current>a::after,
.main-menu-four .main-menu__list>li:hover>a::after,
.stricky-header.main-menu-four .main-menu__list>li.current>a::after,
.stricky-header.main-menu-four .main-menu__list>li:hover>a::after {
  color: var(--wishon-black);
}

.main-menu-four .main-menu__list>li.current>a,
.main-menu-four .main-menu__list>li:hover>a,
.stricky-header.main-menu-four .main-menu__list>li.current>a,
.stricky-header.main-menu-four .main-menu__list>li:hover>a {
  color: var(--wishon-black);
  text-shadow: 1px 0 0 rgb(49 49 49 / 60%);
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--wishon-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 68px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 10px;
  background-color: var(--wishon-base);
  border: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:after {
  background-color: var(--wishon-black);
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--wishon-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover i {
  color: var(--wishon-white);
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: #313131;
}

.main-slider .container {
  position: relative;
  padding-top: 190px;
  padding-bottom: 200px;
  z-index: 30;
}

.image-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.image-layer:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 940px;
  background-image: -moz-linear-gradient(0deg, rgb(16, 16, 16) 0%, rgba(16, 16, 16, 0) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(16, 16, 16) 0%, rgba(16, 16, 16, 0) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(16, 16, 16) 0%, rgba(16, 16, 16, 0) 100%);
  z-index: -1;
}

.image-layer:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--wishon-black-rgb), .40);
  z-index: -1;
}

.main-slider__content {
  position: relative;
  display: block;
}

.main-slider__title {
  position: relative;
  font-size: 100px;
  color: var(--wishon-white);
  font-weight: 700;
  line-height: 100px;
  font-family: var(--wishon-font);
  margin-bottom: 17px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__title span {
  color: var(--wishon-primary);
  font-family: var(--wishon-font-two);
  font-weight: 900;
  font-style: italic;
}

.main-slider__text {
  font-size: 20px;
  color: var(--wishon-white);
  font-weight: 400;
  line-height: 30px;
  padding-bottom: 32px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__btn-two {
  background-color: var(--wishon-base);
  margin-left: 10px;
}

.main-slider__btn-two:after {
  background-color: var(--wishon-primary);
}

.main-slider .swiper-slide-active .main-slider__title,
.main-slider .swiper-slide-active .main-slider__text,
.main-slider .swiper-slide-active .main-slider__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider__nav {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  padding: 0 60px;
  height: 0;
  line-height: 0;
}


.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: var(--wishon-black);
  background-color: rgba(var(--wishon-white-rgb), .30);
  border: 0;
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 30px 0;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  background-color: rgba(var(--wishon-white-rgb), 1);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev i {
  position: relative;
  display: inline-block;
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  display: block;
  z-index: 1;
}

.main-slider-two .swiper-slide {
  position: relative;
  background-color: #232323;
}

.main-slider-two .container {
  position: relative;
  padding-top: 334px;
  padding-bottom: 205px;
  z-index: 30;
}

.image-layer-two {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider-two .swiper-slide-active .image-layer-two {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.image-layer-two:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(35, 35, 35, .40);
  z-index: -1;
}

.main-slider-two__content {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
}

.main-slider-two__sub-title {
  font-size: 20px;
  color: var(--wishon-white);
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__title {
  position: relative;
  font-size: 100px;
  color: var(--wishon-white);
  font-weight: 700;
  line-height: 100px;
  font-family: var(--wishon-font);
  margin-top: 15px;
  margin-bottom: 24px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__title span {
  position: relative;
  display: inline-block;
}

.main-slider-two__title span:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -5px;
  height: 38px;
  width: 36px;
  background-image: url(../images/icon/main-slider-two-heart-icon.png);
  background-repeat: no-repeat;
}

.main-slider-two__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two .swiper-slide-active .main-slider-two__title,
.main-slider-two .swiper-slide-active .main-slider-two__sub-title,
.main-slider-two .swiper-slide-active .main-slider-two__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-two .main-slider__nav {
  top: 58%;
}

/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display: block;
  z-index: 1;
}

.main-slider-three .swiper-slide {
  position: relative;
  background-image: -moz-linear-gradient(33deg, rgb(227, 60, 52) 0%, rgb(243, 180, 44) 100%);
  background-image: -webkit-linear-gradient(33deg, rgb(227, 60, 52) 0%, rgb(243, 180, 44) 100%);
  background-image: -ms-linear-gradient(33deg, rgb(227, 60, 52) 0%, rgb(243, 180, 44) 100%);
}

.main-slider-three .container {
  position: relative;
  padding-top: 279px;
  padding-bottom: 182px;
  z-index: 30;
}

.main-slider-three__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: color-dodge;
  opacity: .15;
  z-index: -1;
}

.main-slider-three__shape-2 {
  position: absolute;
  top: 175px;
  right: 765px;
  z-index: 1;
}

.main-slider-three__shape-2 img {
  width: auto;
}

.main-slider-three__bg {
  position: absolute;
  top: 101px;
  right: 0;
  bottom: 0;
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  z-index: -1;
}

.main-slider-three__content {
  position: relative;
  display: block;
  margin-left: -203px;
  z-index: 1;
}

.main-slider-three__sub-title {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--wishon-white);
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
  z-index: 1;
}

.main-slider-three__sub-title:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--wishon-white);
}

.main-slider-three__title {
  position: relative;
  font-size: 100px;
  color: var(--wishon-white);
  font-weight: 700;
  line-height: 100px;
  text-transform: uppercase;
  font-family: var(--wishon-font);
  margin-top: 6px;
  margin-bottom: 24px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__btn-one {
  background-color: var(--wishon-black);
}

.main-slider-three__btn-one:hover {
  color: var(--wishon-base);
}

.main-slider-three__btn-one:after {
  background-color: var(--wishon-white);
}

.main-slider-three__btn-two {
  margin-left: 10px;
}

.main-slider-three__btn-two:after {
  background-color: var(--wishon-black);
}

.main-slider-three .swiper-slide-active .main-slider-three__title,
.main-slider-three .swiper-slide-active .main-slider-three__sub-title,
.main-slider-three .swiper-slide-active .main-slider-three__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-three__nav {
  position: absolute;
  top: 47%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
  padding: 0 60px;
  height: 0;
  line-height: 0;
}


.main-slider-three__nav .swiper-button-next,
.main-slider-three__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: rgba(var(--wishon-black-rgb), .30);
  background-color: rgba(var(--wishon-white-rgb), .20);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 30px 0;
}

.main-slider-three__nav .swiper-button-next:hover,
.main-slider-three__nav .swiper-button-prev:hover {
  color: rgba(var(--wishon-black-rgb), 1);
  background-color: rgba(var(--wishon-white-rgb), 1);
}

.main-slider-three__nav .swiper-button-next::after,
.main-slider-three__nav .swiper-button-prev::after {
  display: none;
}

.main-slider-three__nav .swiper-button-prev {
  margin-bottom: 10px;
}

.main-slider-three__nav .swiper-button-prev i {
  position: relative;
  display: inline-block;
}

/*--------------------------------------------------------------
# Main Slider Four
--------------------------------------------------------------*/
.main-slider-four {
  position: relative;
  display: block;
}

.main-slider-four .swiper-slide {
  position: relative;
  background-color: #313131;
}

.main-slider-four .container {
  position: relative;
  padding-top: 192px;
  padding-bottom: 203px;
  z-index: 30;
}

.image-layer-four {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider-four .swiper-slide-active .image-layer-four {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.image-layer-four:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 940px;
  background-image: -moz-linear-gradient(0deg, rgb(16, 16, 16) 0%, rgba(16, 16, 16, 0) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(16, 16, 16) 0%, rgba(16, 16, 16, 0) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(16, 16, 16) 0%, rgba(16, 16, 16, 0) 100%);
  z-index: -1;
}

.main-slider-four__shape-1 {
  position: absolute;
  bottom: -167px;
  left: 0;
  mix-blend-mode: screen;
  opacity: .50;
  z-index: 1;
}

.main-slider-four__content {
  position: relative;
  display: block;
}

.main-slider-four__title {
  position: relative;
  font-size: 100px;
  color: var(--wishon-white);
  font-weight: 700;
  line-height: 100px;
  font-family: var(--wishon-font);
  margin-bottom: 17px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}


.main-slider-four__text {
  font-size: 20px;
  color: var(--wishon-white);
  font-weight: 400;
  line-height: 30px;
  padding-bottom: 32px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-four__btn-box {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-four .swiper-slide-active .main-slider-four__title,
.main-slider-four .swiper-slide-active .main-slider-four__text,
.main-slider-four .swiper-slide-active .main-slider-four__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-four__nav {
  position: absolute;
  top: 39%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  height: 0;
  line-height: 0;
}


.main-slider-four__nav .swiper-button-next,
.main-slider-four__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: rgba(var(--wishon-black-rgb), .30);
  background-color: rgba(var(--wishon-white-rgb), .20);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 30px 0;
}

.main-slider-four__nav .swiper-button-next:hover,
.main-slider-four__nav .swiper-button-prev:hover {
  color: rgba(var(--wishon-black-rgb), 1);
  background-color: rgba(var(--wishon-white-rgb), 1);
}

.main-slider-four__nav .swiper-button-next::after,
.main-slider-four__nav .swiper-button-prev::after {
  display: none;
}

.main-slider-four__nav .swiper-button-prev {
  margin-bottom: 10px;
}

.main-slider-four__nav .swiper-button-prev i {
  position: relative;
  display: inline-block;
}

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  /* padding: 128px 0 22px; */
  padding: 170px 0 0;
}

.feature-one__single {
  position: relative;
  display: block;
  text-align: center;
  padding: 126px 54px 0px;
  border-radius: var(--wishon-bdr-radius);
  background-image: -moz-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(54, 161, 176) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(54, 161, 176) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(54, 161, 176) 100%);
  margin-bottom: 195px;
}

.feature-one__single-2 {
  background-image: -moz-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(243, 180, 45) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(243, 180, 45) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(243, 180, 45) 100%);
}

.feature-one__single-3 {
  background-image: -moz-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(227, 60, 52) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(227, 60, 52) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(227, 60, 52) 100%);
}

.feature-one__single::before {
  position: absolute;
  content: "";
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: -60px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  border-radius: var(--wishon-bdr-radius);
}

.feature-one__img {
  position: absolute;
  top: -68px;
  left: 50%;
  transform: translateX(-50%);
}

.feature-one__img img {
  /* width: auto; */
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
}

.feature-one__content {
  position: relative;
  display: block;
}

.feature-one__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 29px;
}

.feature-one__title a {
  color: var(--wishon-black);
  transition: all 500ms ease;
}

.feature-one__title a:hover {
  color: var(--wishon-base);
}

.feature-one__text {
  line-height: 26px;
  margin-top: 16px;
}

.feature-one__arrow-box {
  position: absolute;
  bottom: -97px;
  left: 50%;
  transform: translateX(-50%);
}

.feature-one__arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background-color: var(--wishon-extra);
  border-radius: 50%;
  font-size: 16px;
  color: var(--wishon-black);
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__arrow {
  background-color: #36a1b0;
  color: var(--wishon-white);
}

.feature-one__single:hover .feature-one__arrow-2 {
  background-color: var(--wishon-primary);
  color: var(--wishon-white);
}

.feature-one__single:hover .feature-one__arrow-3 {
  background-color: var(--wishon-base);
  color: var(--wishon-white);
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  /* padding: 60px 0 60px; */
  padding: 120px 0 60px;
  z-index: 1;
}

.about-one__shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .40;
  z-index: -1;
}

.about-one__shape-2 img {
  width: auto;
}

.about-one__left {
  position: relative;
  display: block;
  margin-right: 34px;
  margin-left: -34px;
}

.about-one__left::before {
  content: "";
  position: absolute;
  left: -10000px;
  top: -60px;
  right: 85px;
  bottom: -105px;
  border-top-right-radius: 300px;
  border-bottom-right-radius: 300px;
  background-image: -moz-linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(242, 242, 242) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(242, 242, 242) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(242, 242, 242) 100%);
  z-index: -1;
}

.about-one__img-box {
  position: relative;
  display: block;
}

.about-one__img {
  position: relative;
  display: block;
}

.about-one__img img {
  /* width: 100%; */
  width: 571px;
  height: 571px;
  object-fit: cover;
  border-radius: 50%;
}

.about-one__img-2 {
  position: absolute;
  left: -38px;
  bottom: -45px;
  z-index: 1;
}

.about-one__img-2 img {
  /* width: auto; */
  width: 269px;
  height: 269px;
  object-fit: cover;
  border-radius: 50%;
}

.about-one__shape-1 {
  position: absolute;
  top: 20px;
  left: -90px;
  width: 534px;
  height: 534px;
  border: 4px solid var(--wishon-primary);
  border-radius: 50%;
}

.about-one__video-link {
  position: absolute;
  top: 160px;
  left: -20px;
}

.about-one__video-link:before {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 0;
  border-top: 23px solid var(--wishon-base);
  border-left: 20px solid transparent;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.about-one__video-link:hover:before {
  border-top: 23px solid var(--wishon-primary);
}

.about-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 133px;
  height: 112px;
  line-height: 112px;
  text-align: center;
  font-size: 30px;
  color: var(--wishon-white);
  background-color: var(--wishon-base);
  border-radius: var(--wishon-bdr-radius);
  border-bottom-left-radius: 0;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.about-one__video-icon:hover {
  background-color: var(--wishon-primary);
  color: var(--wishon-white);
}

.about-one__video-link .ripple,
.about-one__video-icon .ripple:before,
.about-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 133px;
  height: 112px;
  border-radius: var(--wishon-bdr-radius);
  border-bottom-left-radius: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--wishon-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--wishon-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--wishon-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--wishon-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.about-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.about-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.about-one__right {
  position: relative;
  display: block;
}

.about-one__right .section-title {
  margin-bottom: 28px;
}

.about-one__text-box {
  position: relative;
  display: block;
  background-color: var(--wishon-extra);
  padding: 19px 40px 18px;
  border-radius: var(--wishon-bdr-radius);
  margin-top: 30px;
  margin-bottom: 36px;
  overflow: hidden;
}

.about-one__text-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background-color: var(--wishon-primary);
}

.about-one__text-2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: var(--wishon-black);
  letter-spacing: var(--wishon-letter-spacing);
}

.about-one__text-2 span {
  color: var(--wishon-base);
}

.about-one__points {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__points li {
  position: relative;
  display: block
}

.about-one__points li:last-child {
  margin-left: 27px;
}

.about-one__points-icon-box {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__points-icon-box .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: var(--wishon-base);
  border-radius: 50%;
}

.about-one__points-icon-box .icon span {
  font-size: 10px;
  color: var(--wishon-white);
}

.about-one__points-icon-box .text {
  margin-left: 8px;
}

.about-one__points-icon-box .text p {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  font-family: var(--wishon-font-two);
  color: var(--wishon-black);
  letter-spacing: var(--wishon-letter-spacing);
}

.about-one__points-text-2 {
  margin-top: 13px;
}

.about-one__btn-box {
  position: relative;
  display: block;
  margin-top: 40px;
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  padding: 70px 0 70px;
  /* padding: 10px 0 120px; */
  /* padding: 120px 0 20px; */
  background-color: var(--wishon-white);
  z-index: 1;
}

.counter-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  z-index: -1;
}

.counter-one__single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 21px;
}

.counter-one__icon-box {
  position: relative;
  display: inline-block;
}

.counter-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 153px;
  height: 153px;
  background-color: #36a1b0;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
}

.counter-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--wishon-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.counter-one__single:hover .counter-one__icon span {
  transform: scale(.9);
}

.counter-one__count-box {
  position: relative;
  display: block;
  margin-top: 11px;
}

.counter-one__count-box h3 {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px !important;
  font-family: var(--wishon-font-two) !important;
}

.counter-one__letter {
  position: relative;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px !important;
  font-family: var(--wishon-font-two) !important;
  color: var(--wishon-black);
  top: 16px;
  left: -4px;
}

.counter-one__text {
  font-size: 18px;
  margin-top: 5px;
}

.counter-one__shape-1 {
  position: absolute;
  top: 17px;
  left: -21px;
}

.counter-one__shape-1 img {
  width: auto;
}

.counter-one__single-2 .counter-one__icon {
  background-color: var(--wishon-primary);
}

.counter-one__single-3 .counter-one__icon {
  background-color: #e33c34;
}

.counter-one__single-4 .counter-one__icon {
  background-color: #4a78e0;
}

/*--------------------------------------------------------------
# Fundraising One
--------------------------------------------------------------*/
.fundraising-one {
  position: relative;
  display: block;
  background-color: var(--wishon-black);
  padding: 112px 0 120px;
  z-index: 1;
}

.fundraising-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .30;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: color-dodge;
  z-index: -1;
}

.fundraising-one__inner {
  position: relative;
  display: block;
  text-align: center;
}

.fundraising-one__sub-title {
  font-size: 20px;
  line-height: 30px;
  color: rgba(var(--wishon-white-rgb), .70);
}

.fundraising-one__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  color: var(--wishon-white);
  margin-top: 18px;
  margin-bottom: 38px;
}

.fundraising-one__title span {
  position: relative;
  display: inline-block;
  z-index: 1;
  margin-left: 3px;
  margin-right: 2px;
}

.fundraising-one__title span:before {
  position: absolute;
  bottom: 3px;
  left: -33px;
  right: -39px;
  content: "";
  height: 61px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/shapes/fundraising-one-shape-1.png);
  z-index: -1;

  animation-name: zoom-fade-2;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;

  -webkit-animation-name: zoom-fade-2;
  -webkit-animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  -moz-animation-name: zoom-fade-2;
  -moz-animation-duration: 5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;

  -ms-animation-name: zoom-fade-2;
  -ms-animation-duration: 5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;

  -o-animation-name: zoom-fade-2;
  -o-animation-duration: 5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.fundraising-one__btn-box {
  position: relative;
  display: block;
}

/*--------------------------------------------------------------
# Event One
--------------------------------------------------------------*/
.event-one {
  position: relative;
  display: block;
  padding: 120px 0 200px;
  overflow: hidden;
  z-index: 1;
}

.event-one__shape-1 {
  position: absolute;
  top: -58px;
  left: 0;
  opacity: .40;
  z-index: -1;
}

.event-one__shape-1 img {
  width: auto;
}

.event-one__left {
  position: relative;
  display: block;
  margin-right: 120px;
}

.event-one__left .section-title {
  margin-bottom: 0;
}

.event-one__helping {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 30px;
}

.event-one__helping-icon {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.event-one__helping-icon::before {
  content: "";
  position: absolute;
  width: 49px;
  height: 49px;
  bottom: -10px;
  right: -10px;
  background-color: rgba(var(--wishon-base-rgb), .10);
  border-radius: 50%;
  z-index: -1;
}

.event-one__helping-icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--wishon-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.event-one__helping:hover .event-one__helping-icon span {
  transform: scale(.9);
}

.event-one__helping-text {
  position: relative;
  display: block;
  margin-left: 32px;
}

.event-one__helping-text p {
  font-size: 20px;
  font-weight: 700;
  line-height: 31px;
  font-family: var(--wishon-font-two);
  color: var(--wishon-black);
  letter-spacing: var(--wishon-letter-spacing);
}

.event-one__right {
  position: relative;
  display: block;
  z-index: 1;
}

.event-one__right::before {
  content: "";
  position: absolute;
  top: -120px;
  bottom: -120px;
  left: 120px;
  right: -100000px;
  background-color: #e23b33;
  border-bottom-left-radius: var(--wishon-bdr-radius);
  z-index: -1;
}

/* .event-one__right::before {
  content: "";
  position: absolute;
  top: -350px;
  bottom: -350px;
  left: 120px;
  right: -100000px;
  background-color: #e23b33;
  border-bottom-left-radius: var(--wishon-bdr-radius);
  z-index: -1;
} */

.event-one__heart {
  position: absolute;
  bottom: -120px;
  left: 120px;
  border-bottom-left-radius: 10px;
  mix-blend-mode: luminosity;
  opacity: .15;
  z-index: -1;
}

/* .event-one__heart {
    position: absolute;
    bottom: -350px;
    left: 120px;
    border-bottom-left-radius: 10px;
    mix-blend-mode: luminosity;
    opacity: .15;
    z-index: -1;
} */

.event-one__heart img {
  width: auto;
  border-bottom-left-radius: 10px;
}

.event-one__carousel {
  position: relative;
  display: block;
}

.event-one__carousel.owl-carousel .owl-stage-outer {
  border-radius: 10px;
}

.event-one__carousel.owl-carousel .owl-dots {
  position: absolute;
  top: 0px;
  bottom: 0;
  right: -50px;
  margin-top: 0 !important;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.event-one__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(var(--wishon-black-rgb), .30);
  margin: 5px 0px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.event-one__carousel.owl-carousel .owl-dots .owl-dot:before {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  content: "";
  background-color: var(--wishon-white);
  border-radius: 50%;
  transform: scale(0);
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.event-one__carousel.owl-carousel .owl-dot.active:before {
  transform: scale(1);
}

.event-one__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.event-one__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.event-one__list {
  position: relative;
  display: block;
}

.event-one__list>li {
  position: relative;
  display: flex;
  /* align-items: center; */
}

.event-one__list>li+li {
  margin-top: 30px;
}

/* .event-one__img {
  position: relative;
  display: inline-block;
  max-width: 210px;
  min-height: 176px;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: var(--wishon-bdr-radius);
  border-bottom-left-radius: var(--wishon-bdr-radius);
} */

.event-one__img {
  position: relative;
  /* display: inline-block; */
  display: flex;
  max-width: 170px;
  min-height: 130px;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: var(--wishon-bdr-radius);
  border-bottom-left-radius: var(--wishon-bdr-radius);
}

.event-one__img img {
  width: 100%;
  border-top-left-radius: var(--wishon-bdr-radius);
  border-bottom-left-radius: var(--wishon-bdr-radius);
}

/* .event-one__date {
  position: absolute;
  left: -74px;
  top: 66px;
  background-color: var(--wishon-base);
  padding: 15px 39px;
  z-index: 2;
  transform: rotate(90deg);
} */

.event-one__date {
  position: absolute;
  left: -62px;
  top: 50px;
  background-color: var(--wishon-base);
  padding: 15px 39px;
  z-index: 2;
  transform: rotate(90deg);
}

.event-one__date p {
  /* font-size: 14px; */
  font-size: 10px;
  color: var(--wishon-white);
  line-height: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--wishon-letter-spacing-two);
}

.event-one__content {
  position: relative;
  display: block;
  min-height: 176px;
  width: fit-content;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 25px 30px 21px;
  border-top-right-radius: var(--wishon-bdr-radius);
  border-bottom-right-radius: var(--wishon-bdr-radius);
}

.event-one__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.event-one__meta>li {
  font-size: 14px;
  line-height: 24px;
}

.event-one__meta>li+li {
  margin-left: 7px;
}

.event-one__meta>li>i {
  font-size: 15px;
  color: var(--wishon-primary);
  padding-right: 5px;
}

.event-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: var(--wishon-letter-spacing);
  margin-top: 6px;
  margin-bottom: 9px;
}

.event-one__title a {
  color: var(--wishon-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.event-one__carousel.owl-theme .owl-nav {
  position: absolute;
  top: -167px;
  right: 0;
}

.event-one__carousel.owl-theme .owl-nav .owl-next {
  height: 63px;
  width: 63px;
  line-height: 63px;
  border-radius: 50%;
  color: #c9cdd5;
  border: 2px solid #c3c8d0;
  background-color: transparent;
  font-size: 20px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.event-one__carousel.owl-theme .owl-nav .owl-prev {
  height: 63px;
  width: 63px;
  line-height: 63px;
  border-radius: 50%;
  color: #c9cdd5;
  border: 2px solid #c3c8d0;
  background-color: transparent;
  font-size: 20px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.event-one__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.event-one__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.event-one__carousel.owl-theme .owl-nav .owl-next span,
.event-one__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-one__carousel.owl-theme .owl-nav .owl-next:hover,
.event-one__carousel.owl-theme .owl-nav .owl-prev:hover {
  border: 2px solid var(--wishon-base);
  color: var(--wishon-base);
}

/*--------------------------------------------------------------
# Causes One
--------------------------------------------------------------*/
.causes-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.causes-one .section-title__tagline::before {
  left: 50%;
  transform: translateX(-50%);
}

.causes-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.causes-one__img-box {
  position: relative;
  display: block;
}

.causes-one__img {
  position: relative;
  display: block;
  border-top-left-radius: var(--wishon-bdr-radius);
  border-top-right-radius: var(--wishon-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.causes-one__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  border-top-left-radius: var(--wishon-bdr-radius);
  border-top-right-radius: var(--wishon-bdr-radius);
  background-color: rgba(var(--wishon-black-rgb), .30);
  -webkit-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -ms-transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  transform: perspective(400px) rotateX(90deg) scaleY(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  z-index: 1;
}

.causes-one__single:hover .causes-one__img:before {
  -webkit-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scaleY(1.0);
  transform: perspective(400px) rotateX(0deg) scaleY(1.0);
}

.causes-one__img img {
  width: 100%;
  border-top-left-radius: var(--wishon-bdr-radius);
  border-top-right-radius: var(--wishon-bdr-radius);
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 500ms ease
}

.causes-one__single:hover .causes-one__img img {
  transform: scale(1.05);
}

.causes-one__category {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--wishon-primary);
  padding: 2px 20px 1px;
  border-radius: var(--wishon-bdr-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.causes-one__category span {
  font-size: 10px;
  color: var(--wishon-white);
  text-transform: uppercase;
  letter-spacing: var(--wishon-letter-spacing-two);
  font-weight: 500;
}

.causes-one__border-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 11px;
  background-color: transparent;
}

.causes-one__border-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -1px;
  width: 50%;
  background-color: #fff;
  z-index: 2;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
}

.causes-one__border-box:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -1px;
  right: -1px;
  width: 50%;
  background-color: #fff;
  z-index: 2;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.causes-one__content {
  position: relative;
  display: block;
  /* padding: 15px 40px 40px; */
  padding: 40px 40px 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  border-bottom-left-radius: var(--wishon-bdr-radius);
  border-bottom-right-radius: var(--wishon-bdr-radius);
}

.causes-one__title-box {
  position: relative;
  display: block;
  text-align: center;
}

.causes-one__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}

.causes-one__title a {
  color: var(--wishon-black);
  transition: all 500ms ease;
}

.causes-one__title a:hover {
  color: var(--wishon-base);
}

.causes-one__text {
  margin-top: 14px;
  margin-bottom: 20px;
}

.causes-one__progress-box {
  position: relative;
  display: block;
}

.progress-levels {
  position: relative;
  display: block;
}

.progress-levels .progress-box {
  position: relative;
  display: block;
}

.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: 6px;
  background: var(--wishon-extra);
  border-radius: 3px;
}

.progress-levels .progress-box .bar .bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 6px;
  border-radius: 3px;
  background: #36a1b0;
  transition: all 2000ms ease 300ms;
}

.progress-levels .progress-box .bar .bar-innner .skill-percent {
  position: absolute;
  top: 18px;
  right: -7px;
  padding: 0;
  z-index: 1;
}

.progress-levels .progress-box .inner .count-text {
  position: relative;
  color: var(--wishon-base);
  font-size: 26px;
  line-height: 16px;
  font-weight: 700;
  font-family: var(--wishon-font-two);
}

.progress-levels .progress-box .inner .percent {
  position: relative;
  color: var(--wishon-base);
  font-size: 26px;
  line-height: 16px;
  font-weight: 700;
  font-family: var(--wishon-font-two);
  top: -3px;
  left: -5px;
}

.causes-one__goals-box {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 8px;
  margin-bottom: 16px;
}

.causes-one__goals-left {
  position: relative;
  display: block;
}

.causes-one__goals-left p {
  font-size: 14px;
  line-height: 26px;
}

.causes-one__goals-left p+p {
  margin-top: 3px;
}

.causes-one__goals-left p span {
  font-weight: 700;
  font-size: 16px;
  font-family: var(--wishon-font-two);
  color: var(--wishon-black);
  letter-spacing: var(--wishon-letter-spacing);
}

.causes-one__goals-right {
  position: relative;
  display: block;
}

.causes-one__goals-right p {
  font-size: 14px;
  line-height: 26px;
}

.causes-one__btn-box {
  position: relative;
  display: block;
}

.causes-one__btn {
  text-align: center;
  width: 100%;
  background-color: #f2f2f2;
  color: var(--wishon-gray);
}

/*--------------------------------------------------------------
# Donate One
--------------------------------------------------------------*/
.donate-one {
  position: relative;
  display: block;
  padding-bottom: 110px;
}

.donate-one .container {
  max-width: 1650px;
}

.donate-one .row {
  --bs-gutter-x: 8px;
}

.donate-one__left {
  position: relative;
  display: block;
  background-color: #f2f2f2;
  padding: 120px 120px 120px;
  border-radius: var(--wishon-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.donate-one__left .section-title {
  margin-bottom: 27px;
}

.donate-one__left .row {
  --bs-gutter-x: 10px;
}

.donate-one__shape-1 {
  position: absolute;
  right: -60px;
  bottom: -50px;
  opacity: .15;
  z-index: -1;
}

.donate-one__shape-1 img {
  width: auto;
}

.contact-form-box__input-box {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.contact-form-box__input-box p {
  font-size: 15px;
  color: #433838;
  opacity: .70;
  line-height: 20px;
  margin-bottom: 5px;
}

.contact-form-box__input-box input[type="text"],
.contact-form-box__input-box input[type="email"] {
  height: 64px;
  border: 0;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: var(--wishon-gray);
  background-color: var(--wishon-white);
  border-radius: var(--wishon-bdr-radius);
  padding: 0 20px;
  outline: none;
}

.contact-form-box__input-box textarea {
  height: 135px;
  width: 100%;
  border: none;
  color: var(--wishon-gray);
  background-color: var(--wishon-white);
  border-radius: var(--wishon-bdr-radius);
  padding: 20px 20px 20px;
  font-size: 14px;
  font-weight: 500;
  outline: none;
}

.contact-form-box__input-box.text-message-box {
  height: 135px;
  margin-bottom: 10px;
}

.contact-form-box__btn-box {
  position: relative;
  display: block;
}

.contact-form-box__btn {
  border: none;
  background-color: var(--wishon-base);
  color: var(--wishon-white);
}

.contact-form-box__btn:hover {
  color: var(--wishon-white);
}

.contact-form-box__btn:after {
  background-color: var(--wishon-black);
}

.donate-one__right {
  position: relative;
  display: block;
}

.donate-one__img {
  position: relative;
  display: block;
}

.donate-one__img img {
  width: 100%;
  border-top-left-radius: var(--wishon-bdr-radius);
  border-top-right-radius: var(--wishon-bdr-radius);
}

.donate-one__contact {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--wishon-primary);
  padding: 63px 60px 63px;
  border-bottom-left-radius: var(--wishon-bdr-radius);
  border-bottom-right-radius: var(--wishon-bdr-radius);
}

.donate-one__contact li {
  position: relative;
  display: flex;
  align-items: center;
}

.donate-one__contact li+li {
  margin-left: 60px;
}

.donate-one__contact li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--wishon-white);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.donate-one__contact li .icon:hover {
  background-color: var(--wishon-base);
}

.donate-one__contact li .icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--wishon-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.donate-one__contact li .icon:hover span {
  color: var(--wishon-white);
}

.donate-one__contact li .content {
  position: relative;
  display: block;
  margin-left: 22px;
}

.donate-one__contact li .content p {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: var(--wishon-white);
}

.donate-one__contact li .content p a {
  color: var(--wishon-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.donate-one__contact li .content p a:hover {
  color: var(--wishon-black);
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  background-color: var(--wishon-extra);
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 1;
}

.testimonial-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 37.8%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: 0.08;
  z-index: -1;
}

.testimonial-one__map {
  position: absolute;
  right: 0;
  bottom: -40px;
  opacity: 0.25;
  z-index: -1;
}

.testimonial-one__map img {
  width: auto;
}

.testimonial-one__left {
  position: relative;
  display: block;
  z-index: 5;
}

.testimonial-one__left .section-title {
  margin-bottom: 28px;
}

.testimonial-one__right {
  position: relative;
  display: block;
  margin-top: 40px;
}

.testimonial-one__carousel {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: var(--wishon-bdr-radius);
}

.testimonial-one__single-inner {
  position: relative;
  display: block;
  padding: 50px 47px 45px;
  border-radius: var(--wishon-bdr-radius);
  overflow: hidden;
}

.testimonial-one__shape-1 {
  content: "";
  position: absolute;
  top: -117px;
  right: -128px;
  width: 246px;
  height: 246px;
  background-color: var(--wishon-extra);
  border-radius: 50%;
}

.testimonial-one__img-box {
  position: absolute;
  top: -30px;
  left: 40px;
}

.testimonial-one__img {
  position: relative;
  display: block;
  width: 116px;
  z-index: 1;
}

.testimonial-one__img::before {
  content: "";
  position: absolute;
  width: 127px;
  height: 127px;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background-image: -moz-linear-gradient(0deg, rgb(227, 60, 52) 0%, rgb(243, 180, 44) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(227, 60, 52) 0%, rgb(243, 180, 44) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(227, 60, 52) 0%, rgb(243, 180, 44) 100%);
  z-index: -1;
}

.testimonial-one__img img {
  border-radius: 50%;
  border: 5px solid var(--wishon-white);
  /* width: 100%; */
  width: 116px;
  height: 116px;
}

.testimonial-one__icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 58px;
  right: 50px;
  width: 60px;
  height: 60px;
  background-color: var(--wishon-base);
  border-radius: 50%;
}

.testimonial-one__icon span {
  font-size: 18px;
  color: var(--wishon-white);
}

.testimonial-one__client-info {
  position: relative;
  display: block;
}

.testimonial-one__content {
  position: relative;
  display: block;
  margin-left: 145px;
}

.testimonial-one__rating {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-one__rating span {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--wishon-primary);
}

.testimonial-one__rating span+span {
  margin-left: 4px;
}

.testimonial-one__client-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-top: 14px;
}

.testimonial-one__client-sub-title {
  /* font-size: 14px;
  line-height: 21px; */
  font-size: 20px;
  line-height: 21px;
  font-weight: 600;
  color: var(--wishon-black);
}

.testimonial-one__text {
  font-size: 17px;
  line-height: 30px;
  margin-top: 15px;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-one__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-one__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-one__carousel.owl-carousel .owl-dots {
  position: absolute;
  /* bottom: 9px;
  left: -504px; */
}

.testimonial-one__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(var(--wishon-black-rgb), .30);
  margin: 0px 4px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.testimonial-one__carousel.owl-carousel .owl-dots .owl-dot:before {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  content: "";
  background-color: var(--wishon-base);
  border-radius: 50%;
  transform: scale(0);
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.testimonial-one__carousel.owl-carousel .owl-dot.active:before {
  transform: scale(1);
}

.testimonial-one__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.testimonial-one__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;
  padding: 88px 0 88px;
  background-image: -moz-linear-gradient(0deg, rgb(227, 60, 52) 0%, rgb(243, 180, 44) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(227, 60, 52) 0%, rgb(243, 180, 44) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(227, 60, 52) 0%, rgb(243, 180, 44) 100%);
  z-index: 1;
}

.brand-one__shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 141px;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  opacity: 0.05;
  z-index: -1;
}

.brand-one .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand-one .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 0.3;
  max-width: 100%;
}

.brand-one .swiper-slide img:hover {
  opacity: 0.8;
}

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.blog-one .section-title__tagline::before {
  left: 50%;
  transform: translateX(-50%);
}

.blog-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-one__img-box {
  position: relative;
  display: block;
}

.blog-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--wishon-bdr-radius);
  z-index: 1;
}

.blog-one__img:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 0px;
  background-color: rgba(var(--wishon-black-rgb), .30);
  visibility: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  transform: perspective(370px) rotateY(90deg) translate(0px, 50px);
  border-radius: var(--wishon-bdr-radius);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  z-index: 1;
}

.blog-one__single:hover .blog-one__img:before {
  visibility: visible;
  opacity: 1;
  transform: perspective(370px) rotateY(0deg) translate(0px, 0px);
  height: 100%;
}

.blog-one__img img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.blog-one__single:hover .blog-one__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05)
}

.blog-one__date {
  position: absolute;
  bottom: 0;
  right: 20px;
  background-color: var(--wishon-base);
  border-radius: var(--wishon-bdr-radius);
  border-bottom-right-radius: 0;
  padding: 16px 18px 18px;
  z-index: 3;
}

.blog-one__date span {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: var(--wishon-white);
  font-family: var(--wishon-font-two);
}

.blog-one__date p {
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  color: var(--wishon-white);
  font-family: var(--wishon-font-two);
  margin-top: -6px;
}

.blog-one__content-box {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: var(--wishon-bdr-radius);
  padding: 22px 30px 10px;
  margin-top: -30px;
  margin-left: 20px;
  margin-right: 20px;
  z-index: 2;
}

.blog-one__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-one__meta li {
  position: relative;
  display: block;
}

.blog-one__meta li+li {
  margin-left: 7px;
}

.blog-one__meta li a {
  font-size: 14px;
  color: var(--wishon-gray);
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__meta li a:hover {
  color: var(--wishon-base);
}

.blog-one__meta li a i {
  color: var(--wishon-primary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__meta li a:hover i {
  color: var(--wishon-base);
}

.blog-one__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 31px;
  margin-top: 7px;
  margin-bottom: 22px;
}

.blog-one__title a {
  color: var(--wishon-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__title a:hover {
  color: var(--wishon-base);
}

.blog-one__read-more {
  position: relative;
  display: block;
  padding-top: 8px;
  border-top: 1px solid var(--wishon-bdr-color);
}

.blog-one__read-more a {
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: var(--wishon-letter-spacing-two);
  color: var(--wishon-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__read-more a:hover {
  color: var(--wishon-base);
}

.blog-one__read-more a span {
  color: var(--wishon-base);
  margin-right: 7px;
}

/*--------------------------------------------------------------
# Gallery one
--------------------------------------------------------------*/
.gallery-one {
  position: relative;
  display: block;
  z-index: 2;
}

.gallery-one .container {
  max-width: 1650px;
}

.gallery-one__carousel {
  position: relative;
  display: block;
}

.gallery-one__single {
  position: relative;
  display: block;
}

.gallery-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--wishon-bdr-radius);
  z-index: 1;
}

.gallery-one__img:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--wishon-primary-rgb), .90);
  border-radius: var(--wishon-bdr-radius);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-70%);
  transform: translateY(-70%);
  z-index: 1;
}

.gallery-one__single:hover .gallery-one__img:before {
  border-radius: var(--wishon-bdr-radius);
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}

.gallery-one__img img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
  transition: all 500ms ease;
}

.gallery-one__single:hover .gallery-one__img img {
  transform: scale(1.05);
  border-radius: var(--wishon-bdr-radius);
}

.gallery-one__img-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}

.gallery-one__img-icon a {
  position: relative;
  display: inline-block;
  font-size: 27px;
  color: var(--wishon-white);
  transform: rotate(45deg) scale(0);
  transition: all 600ms ease;
}

.gallery-one__single:hover .gallery-one__img-icon a {
  transform: rotate(0deg) scale(1);
  transition-delay: 400ms;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  padding-top: 75px;
  background-color: var(--wishon-black);
  margin-top: -60px;
  overflow: hidden;
  z-index: 1;
}

.site-footer__shape-1 {
  position: absolute;
  bottom: -30px;
  left: 0;
  mix-blend-mode: luminosity;
  opacity: 0.05;
  z-index: -1;
}

.site-footer__shape-1 img {
  width: auto;
}

.site-footer__shape-2 {
  position: absolute;
  bottom: 0;
  right: -30px;
  mix-blend-mode: luminosity;
  opacity: 0.05;
  z-index: -1;
}

.site-footer__shape-2 img {
  width: auto;
}

.site-footer__top {
  position: relative;
  display: block;
  padding-bottom: 40px;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-right: 70px;
  margin-top: -1px;
}

.footer-widget__about-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  color: var(--wishon-white);
  font-family: var(--wishon-font-two);
  letter-spacing: var(--wishon-letter-spacing);
}

.footer-widget__about-btn-box {
  position: relative;
  display: block;
  margin-top: 21px;
}

.footer-widget__about-btn {
  background-color: var(--wishon-base);
  font-size: 12px;
  padding: 10px 30px 10px;
}

.footer-widget__about-btn:hover {
  color: var(--wishon-base);
}

.footer-widget__about-btn::after {
  background-color: var(--wishon-white);
}

.footer-widget__links {
  position: relative;
  display: block;
}

.footer-widget__title-box {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.footer-widget__title-box::before {
  content: "";
  position: absolute;
  top: 16px;
  right: -31px;
  width: 20px;
  height: 2px;
  background-color: var(--wishon-base);
}

.footer-widget__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--wishon-white);
}

.footer-widget__links-points-box {
  position: relative;
  display: block;
}

.footer-widget__links-list {
  position: relative;
  display: block;
}

.footer-widget__links-list li {
  position: relative;
  display: block;
}

.footer-widget__links-list li+li {
  margin-top: 6px;
}

.footer-widget__links-list li a {
  font-size: 15px;
  line-height: 25px;
  color: #898989;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
  color: var(--wishon-white);
}

.footer-widget__non-profit {
  position: relative;
  display: block;
}

.footer-widget__non-profit-list {
  position: relative;
  display: block;
}

.footer-widget__non-profit-list li {
  position: relative;
  display: block;
}

.footer-widget__non-profit-list li+li {
  margin-top: 6px;
}

.footer-widget__non-profit-list li a {
  font-size: 15px;
  line-height: 25px;
  color: #898989;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__non-profit-list li a:hover {
  color: var(--wishon-white);
}

.footer-widget__contact {
  position: relative;
  display: block;
  margin-left: 100px;
}

.footer-widget__contact-list {
  position: relative;
  display: block;
}

.footer-widget__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-widget__contact-list li+li {
  margin-top: 6px;
}

.footer-widget__contact-list li .icon {
  position: relative;
  display: inline-block;
  margin-right: 23px;
  margin-bottom: auto;
}

.footer-widget__contact-list li .icon i {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--wishon-primary);
}

.footer-widget__contact-list li .text {
  position: relative;
  display: block;
}

.footer-widget__contact-list li .text p {
  font-size: 15px;
  line-height: 25px;
}

.footer-widget__contact-list li .text p a {
  color: #898989;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-list li .text p a:hover {
  color: var(--wishon-primary);
}

.footer-widget__contact-text {
  font-size: 15px;
  line-height: 30px;
  color: #898989;
  margin-top: 12px;
}

.site-footer__bottom {
  position: relative;
  display: block;
  margin-top: 67px;
}

.site-footer__bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #232323;
  padding: 30px 30px 30px;
  border-radius: var(--wishon-bdr-radius);
}

.site-footer__bottom-text {
  font-size: 15px;
  line-height: 30px;
  color: #898989;
}

.site-footer__bottom-text a {
  color: #898989;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--wishon-white);
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-footer__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--wishon-white);
  background-color: var(--wishon-black);
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: var(--wishon-base);
  background-color: var(--wishon-white);
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--wishon-white);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.site-footer__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer__social a+a {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Feature Two
--------------------------------------------------------------*/
.feature-two {
  position: relative;
  display: block;
  padding-top: 17px;
}

.feature-two .container {
  max-width: 100%;
  padding: 0;
}

.feature-two .row {
  --bs-gutter-x: 17px;
}

.feature-two__single {
  position: relative;
  display: block;
  background-color: #36a1b0;
  padding: 46px 60px 50px;
  overflow: hidden;
  z-index: 1;
}

.feature-two__single-2 {
  background-color: #f3b42d;
}

.feature-two__single-3 {
  background-color: var(--wishon-base);
}

.feature-two__single-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 575px;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.feature-two__single-bg img {
  width: auto;
}

.feature-two__sub-title {
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: var(--wishon-letter-spacing-two);
  text-transform: uppercase;
  color: var(--wishon-white);
}

.feature-two__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  margin-top: 7px;
  margin-bottom: 39px;
}

.feature-two__title a {
  color: var(--wishon-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__title a:hover {
  color: var(--wishon-black);
}

.feature-two__btn-box {
  position: relative;
  display: block;
}

.feature-two__btn {
  font-size: 12px;
  padding: 5px 20px 5px;
}

.feature-two__btn::after {
  background-color: var(--wishon-black);
}

.feature-two__single-2 .feature-two__btn {
  background-color: var(--wishon-black);
}

.feature-two__single-2 .feature-two__btn::after {
  background-color: var(--wishon-base);
}

/*--------------------------------------------------------------
# Our Goal
--------------------------------------------------------------*/
.our-goal {
  position: relative;
  display: block;
  padding-top: 120px;
  z-index: 1;
}

.our-goal__shape-1 {
  position: absolute;
  left: 0;
  top: 90px;
  opacity: .40;
  z-index: -1;
}

.our-goal__shape-1 img {
  width: auto;
}

.our-goal__left {
  position: relative;
  display: block;
  margin-right: 80px;
}

.our-goal__left .section-title {
  margin-bottom: 28px;
}

.our-goal__points-list {
  position: relative;
  display: block;
  padding: 0;
  margin-top: 30px;
}

.our-goal__points-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.our-goal__points-list li .icon {
  position: relative;
  display: inline-block;
}

.our-goal__points-list li .icon span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  background-color: var(--wishon-primary);
  border-radius: 50%;
  font-size: 9px;
  color: var(--wishon-white);
}

.our-goal__points-list li .text {
  position: relative;
  display: block;
  margin-left: 14px;
}

.our-goal__points-list li .text p {
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
  color: var(--wishon-black);
}

.our-goal__progress {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 39px;
  margin-bottom: 67px;
}

.our-goal__progress-single {
  position: relative;
  display: block;
}

.our-goal__progress-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--wishon-black);
  margin-bottom: 6px;
}

.our-goal__progress .bar {
  position: relative;
  width: 100%;
  height: 13px;
  max-width: 500px;
  background-color: var(--wishon-extra);
  margin-bottom: 16px;
  border-radius: 7px;
}

.our-goal__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 13px;
  background: var(--wishon-base);
  border-radius: 7px;
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.our-goal__progress .count-text {
  position: absolute;
  right: 0px;
  bottom: 20px;
  color: var(--wishon-gray);
  line-height: 24px;
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.our-goal__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.our-goal__progress .bar.marb-0 {
  margin-bottom: 0;
}

.our-goal__person {
  position: relative;
  display: flex;
  align-items: center;
}

.our-goal__person-img {
  position: relative;
  display: block;
  width: 70px;
}

.our-goal__person-img img {
  width: 100%;
  border-radius: 50%;
}

.our-goal__person-shape-1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.our-goal__person-shape-1 img {
  width: auto;
}

.our-goal__person-content {
  position: relative;
  display: block;
  margin-left: 30px;
  top: 3px;
}

.our-goal__person-name {
  font-size: 22px;
  line-height: 22px;
  color: var(--wishon-primary);
  font-style: italic;
  margin-bottom: 2px;
}

.our-goal__person-sub-title {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
}

.our-goal__right {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-right: -375px;
}

.our-goal__img-box {
  position: relative;
  display: block;
}

.our-goal__img {
  position: relative;
  display: block;
}

.our-goal__img::before {
  position: absolute;
  top: 30px;
  left: -10px;
  height: 308px;
  width: 10px;
  background-color: var(--wishon-primary);
  border-top-left-radius: var(--wishon-bdr-radius);
  border-bottom-left-radius: var(--wishon-bdr-radius);
  content: "";
}

.our-goal__img img {
  width: 100%;
  border-top-left-radius: var(--wishon-bdr-radius);
  border-bottom-left-radius: var(--wishon-bdr-radius);
}

.our-goal__change-life {
  position: absolute;
  bottom: 30px;
  left: -160px;
  width: 290px;
  height: 281px;
  background-color: var(--wishon-base);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  border-radius: var(--wishon-bdr-radius);
  z-index: 1;
  padding: 54px 70px 56px;
}

.our-goal__change-life::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: rgb(255, 255, 255);
  border-radius: var(--wishon-bdr-radius);
  z-index: -1;
}

.our-goal__change-life-icon {
  position: relative;
  display: inline-block;
}

.our-goal__change-life-icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--wishon-primary);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.our-goal__change-life:hover .our-goal__change-life-icon span {
  transform: scale(.9);
}

.our-goal__change-life-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  font-style: italic;
  margin-top: 9px;
}

/*--------------------------------------------------------------
# Causes Two
--------------------------------------------------------------*/
.causes-two .container {
  max-width: 1600px;
}

/*--------------------------------------------------------------
# Tackling One
--------------------------------------------------------------*/
.tackling-one {
  position: relative;
  display: block;
  background-color: var(--wishon-black);
  padding: 120px 0 120px;
  z-index: 1;
}

.tackling-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .30;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.tackling-one__left {
  position: relative;
  display: block;
  margin-top: 13px;
}

.tackling-one__video-link {
  position: relative;
  display: inline-block;
  z-index: 3;
}

.tackling-one__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 21px;
  color: var(--wishon-white);
  background-color: var(--wishon-primary);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.tackling-one__video-icon:hover {
  background-color: var(--wishon-white);
  color: var(--wishon-base);
}

.tackling-one__video-icon:before {
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  content: "";
  border: 1px solid #505050;
  border-radius: 50%;
  z-index: 1;
}

.tackling-one__video-link .ripple,
.tackling-one__video-icon .ripple:before,
.tackling-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 113px;
  height: 113px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--wishon-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--wishon-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--wishon-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--wishon-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.tackling-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.tackling-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.tackling-one__title {
  font-size: 50px;
  font-weight: 700;
  color: var(--wishon-white);
  margin-top: 53px;
}

.tackling-one__right {
  position: relative;
  display: block;
  margin-left: 64px;
}

.tackling-one__points-box {
  position: relative;
  display: block;
}

.tackling-one__points-list {
  position: relative;
  display: flex;
  align-items: center;
}

.tackling-one__points-list li {
  position: relative;
  display: block;
  max-width: 200px;
  width: 100%;
  border: 1px solid #8c837a;
  border-radius: var(--wishon-bdr-radius);
  text-align: center;
  padding: 32px 0 35px;
}

.tackling-one__points-list li+li {
  margin-left: 6px;
}

.tackling-one__points-list li .icon {
  position: relative;
  display: inline-block;
}

.tackling-one__points-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 72px;
  color: var(--wishon-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.tackling-one__points-list li:hover span {
  transform: scale(.9);
}

.tackling-one__points-list li .text {
  position: relative;
  display: block;
  margin-top: 2px;
}

.tackling-one__points-list li .text p {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--wishon-white);
}

.tackling-one__points-list-2 {
  margin-top: 6px;
}

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two {
  position: relative;
  display: block;
  padding: 88px 0 88px;
  border-bottom: 1px solid var(--wishon-bdr-color);
  z-index: 1;
}

.brand-two .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand-two .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 0.15;
  max-width: 100%;
}

.brand-two .swiper-slide img:hover {
  opacity: 0.5;
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
  position: relative;
  display: block;
  padding: 120px 0 166px;
  z-index: 1;
}

.testimonial-two .section-title__tagline::before {
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-two__bottom {
  position: relative;
  display: block;
}

.testimonial-two__carousel {
  position: relative;
  display: block;
}

.testimonial-two__single {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
}

.testimonial-two__inner {
  position: relative;
  display: block;
  border: 1px solid #e2e2e2;
  border-radius: var(--wishon-bdr-radius);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__inner {
  border: 1px solid var(--wishon-base);
}

.testimonial-two__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0;
  background-color: #e2e2e2;
  padding: 19px 0 18px;
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__name:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  border-top: 10px solid #e2e2e2;
  border-right: 24px solid transparent;
  border-left: 24px solid transparent;
  transform: translateX(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__name {
  background-color: var(--wishon-base);
  color: var(--wishon-white);
}

.testimonial-two__single:hover .testimonial-two__name:before {
  border-top: 10px solid var(--wishon-base);
}

.testimonial-two__text {
  font-size: 20px;
  line-height: 40px;
  padding: 58px 58px 72px;
}

.testimonial-two__shape-1 {
  position: absolute;
  bottom: 115px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.testimonial-two__shape-1 img {
  width: auto;
}

.testimonial-two__img-1 {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.testimonial-two__img-1::before {
  content: "";
  position: absolute;
  top: -11px;
  left: -11px;
  right: -11px;
  bottom: -11px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  background-color: var(--wishon-white);
  z-index: -1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__img-1::before {
  border: 1px solid var(--wishon-base);
}

.testimonial-two__img-1 img {
  width: auto;
  border-radius: 50%;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  z-index: 1;
}

.team-one__inner {
  position: relative;
  display: block;
  padding: 120px 0 73px;
  z-index: 1;
}

.team-one__bg-shape {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 610px;
  opacity: .15;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.team-one .section-title__tagline::before {
  left: 50%;
  transform: translateX(-50%);
}

.team-one .section-title {
  margin-bottom: 62px;
}

.team-one__single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 47px;
}

.team-one__img-box {
  position: relative;
  display: block;
}

.team-one__img {
  position: relative;
  display: block;
  width: 319px;
  margin: 0 auto;
}

.team-one__img img {
  /* width: 100%;
  border-radius: 50%; */
  width: 320px;
  height: 320px;
  border-radius: 50%;
}

.team-one__content {
  position: relative;
  display: block;
  margin-top: 31px;
}

.team-one__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.team-one__name a {
  color: var(--wishon-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__name a:hover {
  color: var(--wishon-base);
}

.team-one__social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.team-one__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--wishon-black);
  background-color: var(--wishon-extra);
  font-size: 14px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__social a+a {
  margin-left: 10px;
}

.team-one__social a:hover {
  color: var(--wishon-white);
  background-color: var(--wishon-base);
}

.team-one__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--wishon-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.team-one__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.team-one__shape-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__shape-1 img {
  width: auto;
}

.team-one__single:hover .team-one__shape-1 {
  opacity: 0;
}

.team-one__shape-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
}

.team-one__shape-2 img {
  width: auto;
}

.team-one__single:hover .team-one__shape-2 {
  opacity: 1;
}

/*--------------------------------------------------------------
# Boxed Version
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  display: block;
  background-color: var(--wishon-extra);
  overflow: hidden;
  z-index: 1;
  padding: 55px 50px 75px 50px;
}

.faq-one__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46.6%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: 0.08;
  z-index: -1;
}

/* .faq-one__left {
  position: relative;
  display: block;
  margin-right: 70px;
  margin-left: -362px;
} */

.faq-one__left {
  position: relative;
  display: block;
  margin-right: 70px;
  /* margin-left: -320px; */
  /* margin-top: 114px; */
  margin: auto;
  padding: 20px 50px 50px 50px;
}

.faq-one__img-box {
  position: relative;
  display: block;
}

.faq-one__img {
  position: relative;
  display: block;
  z-index: 1;
}

.faq-one__img::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10px;
  width: 30px;
  background-color: var(--wishon-primary);
  border-bottom-right-radius: var(--wishon-bdr-radius);
  z-index: -1;
}

.faq-one__img img {
  width: 100%;
  border-bottom-right-radius: var(--wishon-bdr-radius);
}

.faq-one__right {
  position: relative;
  display: block;
  /* padding: 120px 0 120px; */
  padding: 10px 0 50px;
  z-index: 1;
}

.faq-one__right .section-title {
  margin-bottom: 7.5px;
}

.faq-one__single {
  position: relative;
  display: block;
}

.faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  border-radius: var(--wishon-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 17px 40px 18px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  border-radius: 0;
}

.faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.faq-one-accrodion .accrodion+.accrodion {
  margin-top: 10px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
  color: var(--wishon-base);
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--wishon-base);
}

.faq-one-accrodion .accrodion-title h4::before {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  color: var(--wishon-black);
  position: absolute;
  top: 50%;
  right: -2px;
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f107";
  color: var(--wishon-base);
}

.faq-one-accrodion .accrodion-content {
  position: relative;
  padding: 22px 39px 22px;
  border-top: 1px solid var(--wishon-extra);
}

.faq-one-accrodion .accrodion-content p {
  margin: 0;
  line-height: 34px;
}

/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  z-index: 2;
}

.cta-one__wrap {
  position: relative;
  display: block;
  max-width: 1620px;
  width: 100%;
  background-color: var(--wishon-base);
  margin: 0 auto;
  border-radius: var(--wishon-bdr-radius);
  padding: 60px 0 60px;
  z-index: 1;
}

.cta-one__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 53px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: .10;
  z-index: -1;
}

.cta-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cta-one__left {
  position: relative;
  display: flex;
  align-items: center;
}

.cta-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 126px;
  background-color: var(--wishon-primary);
  border-radius: 50%;
}

.cta-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--wishon-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.cta-one__icon:hover span {
  transform: scale(.9);
}

.cta-one__left h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 49px;
  color: var(--wishon-white);
  margin-left: 40px;
}

.cta-one__right {
  position: relative;
  display: block;
}

.cta-one__btn-box {
  position: relative;
  display: block;
}

.cta-one__btn {
  background-color: var(--wishon-black);
}

.cta-one__btn::after {
  background-color: var(--wishon-primary);
}

/*--------------------------------------------------------------
# Feature Three
--------------------------------------------------------------*/
.feature-three {
  position: relative;
  display: block;
}

.feature-three .container {
  max-width: 100%;
  padding: 0;
}

.feature-three .row {
  --bs-gutter-x: 0;
}

.feature-three__single {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--wishon-extra);
  padding: 54px 120px 53px;
}

.feature-three__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 102px;
  height: 102px;
  background-color: #36a1b0;
  border-radius: 50%;
}

.feature-three__icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--wishon-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.feature-three__single:hover .feature-three__icon span {
  transform: scale(.9);
}

.feature-three__content {
  position: relative;
  display: block;
  margin-left: 20px;
}

.feature-three__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.feature-three__title a {
  color: var(--wishon-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-three__title a:hover {
  color: var(--wishon-base);
}

.feature-three__single-2 {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.feature-three__single-2 .feature-three__icon {
  background-color: var(--wishon-primary);
}

.feature-three__single-3 .feature-three__icon {
  background-color: var(--wishon-base);
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.about-two__shape-4 {
  position: absolute;
  left: 0;
  top: 120px;
  opacity: .25;
}

.about-two__shape-4 img {
  width: auto;
}

.about-two__left {
  position: relative;
  display: block;
  margin-right: 107px;
}

.about-two__shape-1 {
  position: absolute;
  right: -105px;
  bottom: -7px;
}

.about-two__shape-1 img {
  width: auto;
}

.about-two__shape-2 {
  position: absolute;
  right: -74px;
  top: 246px;
}

.about-two__shape-2 img {
  width: auto;
}

.about-two__shape-3 {
  position: absolute;
  left: 20px;
  top: 145px;
}

.about-two__shape-3 img {
  width: auto;
}

.about-two__img-box {
  position: relative;
  display: block;
}

.about-two__img {
  position: relative;
  display: block;
}

.about-two__img img {
  width: 100%;
}

.about-two__experience {
  position: absolute;
  bottom: 168px;
  left: -99px;
  max-width: 235px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0 30px;
}

.about-two__experience:before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50px;
  border-top: 20px solid white;
  border-right: 44px solid transparent;
  border-left: 2px solid transparent;
}

.about-two__experience-count-box {
  position: relative;
  display: block;
}

.about-two__experience-count-box h3 {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px !important;
  font-family: var(--wishon-font-two) !important;
  color: var(--wishon-base);
}

.about-two__experience-text {
  font-size: 18px;
  line-height: 24px;
  margin-left: 15px;
}

.about-two__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.about-two__right .section-title {
  margin-bottom: 31px;
}

.about-two__text-one {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--wishon-base);
  font-family: var(--wishon-font-two);
  letter-spacing: var(--wishon-letter-spacing);
}

.about-two__text-two {
  margin-top: 32px;
  margin-bottom: 36px;
}

.about-two__points-list {
  position: relative;
  display: block;
}

.about-two__points-list li {
  position: relative;
  display: flex;
}

.about-two__points-list li+li {
  margin-top: 35px;
}

.about-two__points-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 87px;
  width: 100%;
  height: 87px;
  background-color: var(--wishon-extra);
  border-radius: 50%;
  top: 5px;
}

.about-two__points-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 46px;
  color: var(--wishon-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.about-two__points-list li:hover .icon span {
  transform: scale(.9);
}

.about-two__points-list li .content {
  position: relative;
  display: block;
  margin-left: 30px;
}

.about-two__points-list li .content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.about-two__points-list li .content p {
  margin-top: 12px;
}

.about-two__btn-box {
  position: relative;
  display: block;
  margin-top: 41px;
}

/*--------------------------------------------------------------
# Feature Four
--------------------------------------------------------------*/
.feature-four {
  position: relative;
  display: block;
  padding-bottom: 90px;
  z-index: 1;
}

.feature-four__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 287px;
  opacity: .60;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: -1;
}

.feature-four__single {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--wishon-black);
  border-radius: var(--wishon-bdr-radius);
  padding: 50px 50px 42px;
  margin-bottom: 30px;
  z-index: 1;
}

.feature-four__single-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .20;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--wishon-bdr-radius);
  z-index: -1;
}

.feature-four__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 133px;
  height: 133px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  z-index: 1;
}

.feature-four__icon::before {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: "";
  border-radius: 50%;
  background-color: var(--wishon-base);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.feature-four__single:hover .feature-four__icon::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.feature-four__icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--wishon-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transform: scale(1) rotateY(0deg);
  transform: scale(1) rotateY(0deg);
}

.feature-four__single:hover .feature-four__icon span {
  -webkit-transform: scale(0.9) rotateY(360deg);
  transform: scale(0.9) rotateY(360deg);
  color: var(--wishon-white);
}

.feature-four__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-top: 26px;
  margin-bottom: 17px;
}

.feature-four__title a {
  color: var(--wishon-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-four__title a:hover {
  color: var(--wishon-base);
}

.feature-four__text {
  color: var(--wishon-white);
  line-height: 26px;
}

/*--------------------------------------------------------------
# Inspire One
--------------------------------------------------------------*/
.inspire-one {
  position: relative;
  display: block;
}

.inspire-one__wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.inspire-one__left {
  position: relative;
  display: block;
  float: left;
  width: 47%;
  min-height: 709px;
}

.inspire-one__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.inspire-one__big-text {
  position: absolute;
  right: -200px;
  top: 326px;
  background-color: var(--wishon-primary);
  padding: 16px 52px 16px;
  transform: rotate(90deg);
  border: none;
}

.inspire-one__big-text p {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.2em;
  color: var(--wishon-white);
  text-transform: uppercase;
}

.inspire-one__right {
  position: relative;
  display: block;
  float: right;
  width: 53%;
  padding: 120px 0 139px;
  background-color: var(--wishon-base);
  overflow: hidden;
  z-index: 1;
}

.inspire-one__shape-1 {
  position: absolute;
  right: 0;
  top: -30px;
  opacity: 0.05;
  z-index: -1;
}

.inspire-one__shape-1 img {
  width: auto;
}

.inspire-one__content {
  position: relative;
  display: block;
  max-width: 500px;
  width: 100%;
  float: left;
  margin-left: 120px;
}

.inspire-one__right .section-title {
  margin-bottom: 29px;
}

.inspire-one__right .section-title__tagline {
  color: var(--wishon-white);
}

.inspire-one__right .section-title__title {
  color: var(--wishon-white);
}

.inspire-one__text {
  color: var(--wishon-white);
}

.inspire-one__img-and-points {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 33px;
}

.inspire-one__img-2 {
  position: relative;
  display: block;
  width: 198px;
}

.inspire-one__img-2 img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
}

.inspire-one__points {
  position: relative;
  display: block;
  margin-left: 30px;
}

.inspire-one__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.inspire-one__points li+li {
  margin-top: 4px;
}

.inspire-one__points li .icon {
  position: relative;
  display: inline-block;
}

.inspire-one__points li .icon span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: var(--wishon-base);
  font-size: 10px;
  background-color: var(--wishon-primary);
  border-radius: 50%;
}

.inspire-one__points li .text {
  position: relative;
  display: block;
  margin-left: 10px;
}

.inspire-one__points li .text p {
  font-weight: 700;
  color: var(--wishon-white);
}

/*--------------------------------------------------------------
# Brand Three
--------------------------------------------------------------*/
.brand-three {
  border-bottom: 0;
  background-color: var(--wishon-extra);
}

/*--------------------------------------------------------------
# Event Two
--------------------------------------------------------------*/
.event-two {
  position: relative;
  display: block;
  padding-top: 120px;
  z-index: 1;
}

.event-two__shape-1 {
  position: absolute;
  top: 27px;
  left: 0;
  opacity: .40;
}

.event-two__shape-1 img {
  width: auto;
}

.event-two__left {
  position: relative;
  display: block;
  margin-right: -15px;
  z-index: 5;
}

.event-two__left .section-title {
  margin-bottom: 28px;
}

.event-two__right {
  position: relative;
  display: block;
  margin-left: 77px;
  margin-right: -380px;
}

.event-two__single {
  position: relative;
  display: block;
}

.event-two__img-box {
  position: relative;
  display: block;
}

.event-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--wishon-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.event-two__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: var(--wishon-bdr-radius);
  background: rgb(49, 49, 49);
  background: linear-gradient(0deg, rgba(49, 49, 49, 1) 5%, rgba(49, 49, 49, 0) 100%);
  z-index: 1;
}

.event-two__img img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.event-two__single:hover .event-two__img img {
  transform: scale(1.05);
}

.event-two__date {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--wishon-base);
  border-radius: var(--wishon-bdr-radius);
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  padding: 16px 18px 18px;
  z-index: 3;
}

.event-two__date span {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: var(--wishon-white);
  font-family: var(--wishon-font-two);
}

.event-two__date p {
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  color: var(--wishon-white);
  font-family: var(--wishon-font-two);
  margin-top: -6px;
}

.event-two__content {
  position: absolute;
  bottom: 22px;
  left: 30px;
  right: 30px;
  z-index: 3;
}

.event-two__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.event-two__meta li {
  position: relative;
  display: block;
}

.event-two__meta li+li {
  margin-left: 7px;
}

.event-two__meta li a {
  font-size: 14px;
  color: var(--wishon-white);
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.event-two__meta li a:hover {
  color: var(--wishon-base);
}

.event-two__meta li a i {
  color: var(--wishon-primary);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.event-two__meta li a:hover i {
  color: var(--wishon-base);
}

.event-two__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 31px;
  margin-top: 4px;
}

.event-two__title a {
  color: var(--wishon-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.event-two__title a:hover {
  color: var(--wishon-base);
}

.event-two__carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: 26px;
  left: -381px;
}

.event-two__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(var(--wishon-black-rgb), .30);
  margin: 0px 4px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.event-two__carousel.owl-carousel .owl-dots .owl-dot:before {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  content: "";
  background-color: var(--wishon-base);
  border-radius: 50%;
  transform: scale(0);
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.event-two__carousel.owl-carousel .owl-dot.active:before {
  transform: scale(1);
}

.event-two__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.event-two__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.event-two__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.event-two__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.event-two__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
# Gallery one
--------------------------------------------------------------*/
.gallery-page {
  /* padding: 90px 0 90px 0; */
  padding: 90px 10px 90px 10px;
}

.gallery-two {
  position: relative;
  display: block;
  z-index: 2;
}

/* .gallery-two:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 177px;
  background-color: var(--wishon-extra);
  z-index: -1;
} */

.gallery-two .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.gallery-two .row {
  --bs-gutter-x: 5px;
}

.gallery-two .section-title__tagline::before {
  left: 50%;
  transform: translateX(-50%);
}

.gallery-two .section-title {
  margin-bottom: 91px;
}

.gallery-two__carousel {
  position: relative;
  display: block;
}

.gallery-two__single {
  position: relative;
  display: block;
  margin-bottom: 4px;
}

.gallery-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--wishon-bdr-radius);
  z-index: 1;
}

.gallery-two__img:before {
  position: absolute;
  content: "";
  top: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: rgba(var(--wishon-base-rgb), .90);
  border-radius: var(--wishon-bdr-radius);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-70%);
  transform: translateY(-70%);
  z-index: 1;
}

.gallery-two__single:hover .gallery-two__img:before {
  border-radius: var(--wishon-bdr-radius);
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  opacity: 1;
}

.gallery-two__img img {
  width: 100%;
  height: 200px;
  border-radius: var(--wishon-bdr-radius);
  transition: all 500ms ease;
}

.gallery-two__single:hover .gallery-two__img img {
  transform: scale(1.05);
  border-radius: var(--wishon-bdr-radius);
}

.gallery-two__img-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}

.gallery-two__img-icon a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  font-size: 21px;
  color: var(--wishon-black);
  background-color: var(--wishon-white);
  border-radius: 50%;
  transform: rotate(45deg) scale(0);
  transition: all 600ms ease;
}

.gallery-two__single:hover .gallery-two__img-icon a {
  transform: rotate(0deg) scale(1);
  transition-delay: 400ms;
}


/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
  display: block;
  background-color: var(--wishon-extra);
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 450px;
  width: 100%;
  mix-blend-mode: luminosity;
}

/*--------------------------------------------------------------
# Site Footer Three
--------------------------------------------------------------*/
.site-footer-two {
  margin-top: 0;
  padding-top: 95px;
}

/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/
.testimonial-three {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  background-color: var(--wishon-black);
  z-index: 1;
}

.testimonial-three__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: color-dodge;
  opacity: .30;
  z-index: -1;
}

.testimonial-three__inner {
  position: relative;
  display: block;
  z-index: 1;
}

.testimonial-three__thumb-box {
  position: absolute;
  top: 0;
  left: 0px;
  width: 80px;
  height: 251px;
  overflow: hidden;
  z-index: 5;
}

#testimonials-three__thumb {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
}

.testimonial-three__img-holder {
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 500ms ease;
  width: 80px;
  height: 77px;
  cursor: pointer;
  border-radius: var(--wishon-bdr-radius);
  z-index: 1;
}

.testimonial-three__img-holder:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--wishon-black-rgb), .50);
  border-radius: var(--wishon-bdr-radius);
  z-index: 1;
  transition: all 500ms ease;
}

.swiper-slide-thumb-active .testimonial-three__img-holder:before {
  background-color: rgba(var(--wishon-black-rgb), .0);
}

.testimonial-three__img-holder>img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
  transition: all 0.5s ease-in-out 0.6s;
}

.testimonial-three__main-content {
  position: relative;
  display: block;
}

.testimonial-three__content-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 100px;
}

.testimonial-three__content-img {
  position: relative;
  display: block;
  width: 237px;
  border-radius: var(--wishon-bdr-radius);
}

.testimonial-three__content-img img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
}

.testimonial-three__content {
  position: relative;
  display: block;
  max-width: 766px;
  width: 100%;
  margin-left: 60px;
}

.testimonial-three__text {
  font-size: 34px;
  color: var(--wishon-white);
  line-height: 50px;
  font-weight: 400;
}

.testimonial-three__client-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--wishon-primary);
  letter-spacing: 0;
  margin-top: 37px;
}

/*--------------------------------------------------------------
# Blog Three
--------------------------------------------------------------*/
.blog-three {
  position: relative;
  display: block;
}

.blog-three:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  height: 350px;
  background-color: var(--wishon-extra);
  z-index: -1;
}

/*--------------------------------------------------------------
# Welcome One
--------------------------------------------------------------*/
.welcome-one {
  position: relative;
  display: block;
  padding: 120px 0 131px;
  z-index: 1;
}

.welcome-one__shape-1 {
  position: absolute;
  top: 33px;
  right: 0;
  opacity: .40;
  z-index: -1;
}

.welcome-one__shape-1 img {
  width: auto;
}

.welcome-one__left {
  position: relative;
  display: block;
  margin-right: 9px;
  margin-left: 108px;
  z-index: 1;
}

.welcome-one__img-3 {
  position: absolute;
  top: -120px;
  left: -482px;
  opacity: .30;
  mix-blend-mode: luminosity;
  border-bottom-right-radius: var(--wishon-bdr-radius);
  z-index: -1;
}

.welcome-one__img-3 img {
  width: auto;
  border-bottom-right-radius: var(--wishon-bdr-radius);
}

.welcome-one__left::before {
  content: "";
  position: absolute;
  top: -120px;
  bottom: -205px;
  left: -10000px;
  right: 361px;
  background-color: var(--wishon-primary);
  border-bottom-right-radius: var(--wishon-bdr-radius);
  z-index: -1;
}

.welcome-one__img-box {
  position: relative;
  display: block;
}

.welcome-one__img {
  position: relative;
  display: block;
}

.welcome-one__img-box::before {
  content: "";
  position: absolute;
  bottom: -34px;
  right: 110px;
  width: 31px;
  height: 34px;
  background-color: var(--wishon-base);
}

.welcome-one__img-box::after {
  position: absolute;
  top: 0;
  left: -47px;
  width: 17px;
  height: 244px;
  content: "";
  background-color: rgba(var(--wishon-white-rgb), .10);
}

.welcome-one__img img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
}

.welcome-one__img-2 {
  position: absolute;
  bottom: -85px;
  right: 141px;
}

.welcome-one__img-2 img {
  /* width: auto;
  border-radius: var(--wishon-bdr-radius); */
  width: 400px;
  height: 300px;
  border-radius: var(--wishon-bdr-radius);
}

.welcome-one__big-text-two {
  position: absolute;
  top: 259px;
  left: -470px;
  font-size: 80px;
  line-height: 80px;
  color: var(--wishon-white);
  font-weight: 500;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  transform: rotate(90deg);
}

.welcome-one__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.welcome-one__right .section-title {
  margin-bottom: 29px;
}

.welcome-one__text-1 {
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--wishon-base);
  margin-bottom: 27px;
}

.welcome-one__progress {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 50px;
}

.welcome-one__progress-single {
  position: relative;
  display: block;
}

.welcome-one__progress-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--wishon-black);
  margin-bottom: 6px;
}

.welcome-one__progress .bar {
  position: relative;
  width: 100%;
  height: 13px;
  max-width: 500px;
  background-color: var(--wishon-extra);
  margin-bottom: 16px;
  border-radius: 7px;
}

.welcome-one__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 13px;
  background: var(--wishon-base);
  border-radius: 7px;
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.welcome-one__progress .count-text {
  position: absolute;
  right: 0px;
  bottom: 20px;
  color: var(--wishon-gray);
  line-height: 24px;
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.welcome-one__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.welcome-one__progress .bar.marb-0 {
  margin-bottom: 0;
}

.welcome-one__person {
  position: relative;
  display: flex;
  align-items: center;
}

.welcome-one__person-img {
  position: relative;
  display: block;
  width: 70px;
}

.welcome-one__person-img img {
  width: 100%;
  border-radius: 50%;
}

.welcome-one__person-shape-1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.welcome-one__person-shape-1 img {
  width: auto;
}

.welcome-one__person-content {
  position: relative;
  display: block;
  margin-left: 30px;
  top: 3px;
}

.welcome-one__person-name {
  font-size: 22px;
  line-height: 22px;
  color: var(--wishon-primary);
  font-style: italic;
  margin-bottom: 2px;
}

.welcome-one__person-sub-title {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Feature Five
--------------------------------------------------------------*/
.feature-five {
  position: relative;
  display: block;
  padding: 176px 0 22px;
}

/*--------------------------------------------------------------
# Need Help
--------------------------------------------------------------*/
.need-help {
  position: relative;
  display: block;
  padding-bottom: 120px;
}

.need-help__shape-1 {
  position: absolute;
  bottom: -28px;
  right: 0;
  opacity: .15;
  z-index: 1;
}

.need-help__shape-1 img {
  width: auto;
}

.need-help__inner {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: var(--wishon-bdr-radius);
}

.need-help__img-box {
  position: relative;
  display: block;
}

.need-help__img {
  position: relative;
  display: block;
  width: 560px;
  z-index: 1;
}

.need-help__img::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10px;
  width: 25px;
  background-color: var(--wishon-base);
  border-top-right-radius: var(--wishon-bdr-radius);
  border-bottom-right-radius: var(--wishon-bdr-radius);
  z-index: -1;
}

.need-help__img img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
}

.need-help__content {
  position: relative;
  display: block;
  margin-left: 90px;
}

.need-help__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: var(--wishon-letter-spacing);
  margin-bottom: 13px;
}

/*--------------------------------------------------------------
# Featured Campaigns
--------------------------------------------------------------*/
.featured-campaigns {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.featured-campaigns__carousel {
  position: relative;
  display: block;
}

.featured-campaigns__single {
  position: relative;
  display: block;
}

.featured-campaigns__img-box {
  position: relative;
  display: block;
  margin-right: -93px;
}

.featured-campaigns__Category {
  position: absolute;
  top: 40px;
  left: 40px;
  background: var(--wishon-primary);
  padding: 2px 20px 1px;
  border-radius: var(--wishon-bdr-radius);
}

.featured-campaigns__Category p {
  font-size: 10px;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: var(--wishon-letter-spacing-two);
}

.featured-campaigns__img {
  position: relative;
  display: block;
}

.featured-campaigns__img img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
}

.featured-campaigns__content_box {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .10);
  border-radius: var(--wishon-bdr-radius);
  margin-left: -57px;
  margin-top: 40px;
  z-index: 1;
}

.featured-campaigns__content {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 96px 100px 100px;
  border-radius: var(--wishon-bdr-radius);
}

.featured-campaigns__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .60;
  z-index: -1;
}

.featured-campaigns__shape-1 img {
  width: auto;
}

.featured-campaigns__title-box {
  position: relative;
  display: block;
}

.featured-campaigns__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: var(--wishon-black);
}

.featured-campaigns__text {
  margin-top: 34px;
  margin-bottom: 30px;
}

.featured-campaigns__progress-box {
  position: relative;
  display: block;
}

.featured-campaigns__progress-box .progress-levels {
  position: relative;
  display: block;
}

.featured-campaigns__progress-box .progress-levels .progress-box {
  position: relative;
  display: block;
}

.featured-campaigns__progress-box .progress-levels .progress-box.last-child {
  margin-bottom: 0;
}

.featured-campaigns__progress-box .progress-levels .progress-box .inner {
  position: relative;
  display: block;
}

.featured-campaigns__progress-box .progress-levels .progress-box .bar {
  position: relative;
  display: block;
}

.featured-campaigns__progress-box .progress-levels .progress-box .bar .bar-innner {
  position: relative;
  width: 100%;
  height: 6px;
  background: var(--wishon-extra);
  border-radius: 3px;
}

.featured-campaigns__progress-box .progress-levels .progress-box .bar .bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 6px;
  border-radius: 3px;
  background: #36a1b0;
  transition: all 2000ms ease 300ms;
}

.featured-campaigns__progress-box .progress-levels .progress-box .bar .bar-innner .skill-percent {
  position: absolute;
  top: 18px;
  right: -7px;
  padding: 0;
  z-index: 1;
}

.featured-campaigns__progress-box .progress-levels .progress-box .inner .count-text {
  position: relative;
  color: var(--wishon-base);
  font-size: 26px;
  line-height: 16px;
  font-weight: 700;
  font-family: var(--wishon-font-two);
}

.featured-campaigns__progress-box .progress-levels .progress-box .inner .percent {
  position: relative;
  color: var(--wishon-base);
  font-size: 26px;
  line-height: 16px;
  font-weight: 700;
  font-family: var(--wishon-font-two);
  top: -3px;
  left: -5px;
}

.featured-campaigns__goals-box {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 8px;
  margin-bottom: 26px;
}

.featured-campaigns__goals-left {
  position: relative;
  display: block;
}

.featured-campaigns__goals-left p {
  font-size: 14px;
  line-height: 26px;
}

.featured-campaigns__goals-left p+p {
  margin-top: 3px;
}

.featured-campaigns__goals-left p span {
  font-weight: 700;
  font-size: 16px;
  font-family: var(--wishon-font-two);
  color: var(--wishon-black);
  letter-spacing: var(--wishon-letter-spacing);
}

.featured-campaigns__goals-right {
  position: relative;
  display: block;
}

.featured-campaigns__goals-right p {
  font-size: 14px;
  line-height: 26px;
}

.featured-campaigns__btn-box {
  position: relative;
  display: block;
}

.featured-campaigns__btn {
  text-align: center;
  width: 100%;
  background-color: var(--wishon-base);
}

.featured-campaigns__btn::after {
  background-color: var(--wishon-black);
}

.featured-campaigns__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.featured-campaigns__carousel.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.featured-campaigns__carousel.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.featured-campaigns__carousel.owl-carousel .owl-dots {
  position: absolute;
  top: -137px;
  right: 0;
}

.featured-campaigns__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(var(--wishon-black-rgb), .30);
  margin: 0px 4px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.featured-campaigns__carousel.owl-carousel .owl-dots .owl-dot:before {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  content: "";
  background-color: var(--wishon-base);
  border-radius: 50%;
  transform: scale(0);
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.featured-campaigns__carousel.owl-carousel .owl-dot.active:before {
  transform: scale(1);
}

.featured-campaigns__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.featured-campaigns__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Fundraising Two
--------------------------------------------------------------*/
.fundraising-two {
  padding: 112px 0 240px;
}

/*--------------------------------------------------------------
# Fundraising Three
--------------------------------------------------------------*/
.fundraising-three {
  padding: 172px 0 120px;
  margin-top: -60px;
}

/*--------------------------------------------------------------
# Event Three
--------------------------------------------------------------*/
.event-three {
  position: relative;
  display: block;
}

.event-three__inner {
  position: relative;
  display: block;
  background-color: var(--wishon-extra);
  border-radius: var(--wishon-bdr-radius);
  padding: 98px 0 90px;
  max-width: 1530px;
  margin: -120px auto 0;
  z-index: 1;
}

.event-three__inner-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 196px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: .15;
  z-index: -1;
}

.event-three .section-title {
  margin-bottom: 39px;
}

.event-three .section-title__title {
  font-size: 40px;
  line-height: 49px;
  margin-top: 0;
}

.event-three .section-title__tagline::before {
  display: none;
}

.event-three__left {
  position: relative;
  display: block;
}

.event-three__bottom {
  position: relative;
  display: block;
}

.event-three__carousel {
  position: relative;
  display: block;
}

.event-three__single {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--wishon-white);
  padding: 20px 20px 20px;
  border-radius: var(--wishon-bdr-radius);
  border: 2px solid transparent;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.event-three__single:hover {
  border: 2px solid var(--wishon-base);
}

.event-three__img-box {
  position: relative;
  display: block;
}

.event-three__img {
  position: relative;
  display: block;
  width: 109px;
  border-radius: 50%;
}

.event-three__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--wishon-black-rgb), .70);
  border-radius: 50%;
  transform: scale(0);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.event-three__single:hover .event-three__img::before {
  transform: scale(1);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.event-three__img img {
  width: 100%;
  border-radius: 50%;
}

.event-three__date {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 3;
  opacity: 0;
  transition: all 500ms ease;
}

.event-three__date span {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: var(--wishon-white);
  font-family: var(--wishon-font-two);
}

.event-three__date p {
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  color: var(--wishon-white);
  font-family: var(--wishon-font-two);
  margin-top: -6px;
}

.event-three__single:hover .event-three__date {
  opacity: 1;
  transition-delay: 300ms;
}

.event-three__content {
  position: relative;
  display: block;
  margin-left: 20px;
  max-width: 177px;
  width: 100%;
}

.event-three__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.event-three__meta>li {
  font-size: 14px;
  line-height: 24px;
}

.event-three__meta>li+li {
  margin-left: 7px;
}

.event-three__meta>li>i {
  font-size: 15px;
  color: var(--wishon-primary);
  padding-right: 5px;
}

.event-three__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-top: 8px;
}

.event-three__title a {
  color: var(--wishon-black);
  transition: all 500ms ease;
}

.event-three__title a:hover {
  color: var(--wishon-base)
}

.event-three__carousel.owl-carousel .owl-dots {
  position: absolute;
  top: -103px;
  right: 0;
}

.event-three__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(var(--wishon-black-rgb), .30);
  margin: 0px 4px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.event-three__carousel.owl-carousel .owl-dots .owl-dot:before {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  content: "";
  background-color: var(--wishon-base);
  border-radius: 50%;
  transform: scale(0);
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.event-three__carousel.owl-carousel .owl-dot.active:before {
  transform: scale(1);
}

.event-three__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.event-three__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.event-three__right {
  position: relative;
  display: block;
  margin-top: 22px;
}

.event-three__img-box-2 {
  position: relative;
  display: block;
}

.event-three__img-2 {
  position: relative;
  display: block;
  border-radius: var(--wishon-bdr-radius);
  background-color: var(--wishon-black);
  z-index: 1;
}

.event-three__img-2-overly {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -moz-linear-gradient(-90deg, rgb(243, 180, 44) 0%, rgba(49, 49, 49, 0) 100%);
  background-image: -webkit-linear-gradient(-90deg, rgb(243, 180, 44) 0%, rgba(49, 49, 49, 0) 100%);
  background-image: -ms-linear-gradient(-90deg, rgb(243, 180, 44) 0%, rgba(49, 49, 49, 0) 100%);
  border-radius: var(--wishon-bdr-radius);
  z-index: 2;
}

.event-three__img-2 img {
  width: 100%;
  mix-blend-mode: luminosity;
  border-radius: var(--wishon-bdr-radius);
  opacity: .50;
}

.event-three__content-2 {
  position: absolute;
  left: 60px;
  bottom: 60px;
  right: 60px;
  z-index: 3;
}

.event-three__content-2-icon {
  position: relative;
  display: inline-block;
}

.event-three__content-2-icon span {
  position: relative;
  display: inline-block;
  font-size: 63px;
  color: var(--wishon-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.event-three__img-box-2:hover .event-three__content-2-icon span {
  transform: scale(.9);
}

.event-three__title-2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: var(--wishon-white);
  margin-top: 15px;
  margin-bottom: 27px;
}

.event-three__btn-box {
  position: relative;
  display: block;
}

.event-three__btn {
  font-size: 12px;
  padding: 10px 30px 10px;
}

/*--------------------------------------------------------------
# Help One
--------------------------------------------------------------*/
.help-one {
  position: relative;
  display: block;
  padding: 120px 0 132px;
  overflow: hidden;
  z-index: 1;
}

.help-one__shape-1 {
  position: absolute;
  bottom: -69px;
  right: 16px;
  z-index: -1;
}

.help-one__shape-1 img {
  width: auto;
}

.help-one__left {
  position: relative;
  display: block;
  margin-left: -60px;
  margin-right: 330px;
}

.help-one__img-box {
  position: relative;
  display: block;
}

.help-one__img {
  position: relative;
  display: block;
}

.help-one__img img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
}

.help-one__img-2 {
  position: absolute;
  top: 120px;
  right: -330px;
}

.help-one__img-2 img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
}

.help-one__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.help-one__right .section-title {
  margin-bottom: 30px;
}

.help-one__points {
  position: relative;
  display: block;
  margin-top: 30px;
}

.help-one__points li {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 21px;
  border-bottom: 1px solid var(--wishon-bdr-color);
}

.help-one__points li:last-child {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0;
}

.help-one__points li .icon {
  position: relative;
  display: inline-block;
  top: 8px;
  z-index: 1;
}

.help-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: #36a1b0;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.help-one__points li:hover .icon span {
  transform: scale(.9);
}

.help-one__points li .icon-2 span {
  color: var(--wishon-primary)
}

.help-one__points li .icon-3 span {
  color: var(--wishon-base)
}

.help-one__icon-shape-1 {
  position: absolute;
  bottom: 4px;
  right: -22px;
  width: 44px;
  height: 44px;
  background-color: #36a1b0;
  opacity: .10;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  z-index: -1;
}

.help-one__points li:hover .help-one__icon-shape-1 {
  transform: scale(1.2);
}

.help-one__points li .icon-2 .help-one__icon-shape-1 {
  background-color: var(--wishon-primary);
}

.help-one__points li .icon-3 .help-one__icon-shape-1 {
  background-color: var(--wishon-base);
}

.help-one__points li .content {
  position: relative;
  display: block;
  margin-left: 50px;
}

.help-one__points li .content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}

/*--------------------------------------------------------------
# Boxed Version
--------------------------------------------------------------*/
.blog-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.blog-two__bg-box {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 492px;
  background-color: var(--wishon-extra);
  z-index: -1;
}

.blog-two__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 327px;
  opacity: .40;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: -1;
}

.blog-two .section-title__tagline::before {
  left: 50%;
  transform: translateX(-50%);
}

/*--------------------------------------------------------------
# Newsletter One
--------------------------------------------------------------*/
.newsletter-one {
  position: relative;
  display: block;
}

.newsletter-one__wrap {
  position: relative;
  display: block;
  max-width: 1530px;
  width: 100%;
  background-color: var(--wishon-base);
  margin: 0 auto;
  border-radius: var(--wishon-bdr-radius);
  padding: 79px 0 87px;
  overflow: hidden;
  z-index: 1;
}

.newsletter-one__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 51px;
  bottom: -103px;
  opacity: .10;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  z-index: -1;
}

.newsletter-one__left {
  position: relative;
  display: block;
}

.newsletter-one__tagline {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: var(--wishon-white);
}

.newsletter-one__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  color: var(--wishon-white);
}

.newsletter-one__right {
  position: relative;
  display: block;
  margin-left: -25px;
}

.newsletter-one__newsletter-form {
  position: relative;
  display: block;
}

.newsletter-one__newsletter-form-input-box {
  position: relative;
  display: block;
  max-width: 595px;
  width: 100%;
}

.newsletter-one__newsletter-form-input-box input[type="email"] {
  height: 64px;
  width: 100%;
  outline: none;
  font-size: 15px;
  color: var(--wishon-gray);
  padding-right: 30px;
  padding-left: 30px;
  border: none;
  background-color: var(--wishon-white);
  border-radius: var(--wishon-bdr-radius);
  max-width: 400px;
}

.newsletter-one__newsletter-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  border: none;
}

.newsletter-one__newsletter-btn:hover {
  color: var(--wishon-base);
}

.newsletter-one__newsletter-btn:after {
  background-color: var(--wishon-white);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.page-header-bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--wishon-black-rgb), .40);
}

.page-header-bg::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 936px;
  background-image: -moz-linear-gradient(0deg, rgb(16, 16, 16) 0%, rgba(16, 16, 16, 0) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(16, 16, 16) 0%, rgba(16, 16, 16, 0) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(16, 16, 16) 0%, rgba(16, 16, 16, 0) 100%);
}

.page-header__inner {
  position: relative;
  display: block;
  padding: 141px 0 147px;
  z-index: 15;
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  font-size: 14px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 400;
  color: var(--wishon-white);
}

.thm-breadcrumb li+li {
  margin-left: 4px;
}

.thm-breadcrumb li a {
  color: var(--wishon-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--wishon-base);
  opacity: 1;
}

.thm-breadcrumb li span {
  font-size: 14px;
}

.page-header__inner h2 {
  font-size: 50px;
  color: var(--wishon-white);
  line-height: 60px;
  font-weight: 700;
  margin-top: 3px;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.blog-details__left {
  position: relative;
  display: block;
}

.blog-details__img {
  position: relative;
  display: block;
}

.blog-details__img img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
  border-bottom-right-radius: 0;
}

.blog-details__date {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--wishon-base);
  border-radius: var(--wishon-bdr-radius);
  border-bottom-right-radius: 0;
  padding: 16px 18px 18px;
  z-index: 3;
}

.blog-details__date span {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: var(--wishon-white);
  font-family: var(--wishon-font-two);
}

.blog-details__date p {
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  color: var(--wishon-white);
  font-family: var(--wishon-font-two);
  margin-top: -6px;
}

.blog-details__content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.blog-details__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__meta li+li {
  margin-left: 10px;
}

.blog-details__meta li a {
  font-size: 14px;
  color: var(--wishon-gray);
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__meta li a:hover {
  color: var(--wishon-primary);
}

.blog-details__meta li a i {
  color: var(--wishon-primary);
}

.blog-details__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-top: -2px;
  margin-bottom: 12px;
}

.blog-details__text-2 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.blog-details__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0 30px;
  margin-top: 53px;
  border-top: 1px solid var(--wishon-bdr-color);
}

.blog-details__bottom p {
  margin: 0;
}

.blog-details__tags span {
  color: var(--wishon-black);
  font-size: 16px;
  margin-right: 16px;
  font-weight: 700;
  font-family: var(--wishon-font-two);
}

.blog-details__tags a {
  position: relative;
  color: var(--wishon-white);
  font-size: 12px;
  background-color: var(--wishon-primary);
  display: inline-block;
  padding: 5px 20px 5px;
  font-weight: 700;
  border-radius: var(--wishon-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: uppercase;
  letter-spacing: var(--wishon-letter-spacing-two);
}

.blog-details__tags a:hover {
  background-color: var(--wishon-base);
  color: var(--wishon-white);
}

.blog-details__tags a+a {
  margin-left: 6px;
}

.blog-details__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-details__social-list a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--wishon-black);
  background-color: var(--wishon-extra);
  font-size: 14px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.blog-details__social-list a:hover {
  color: var(--wishon-white);
}

.blog-details__social-list a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--wishon-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.blog-details__social-list a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.blog-details__social-list a+a {
  margin-left: 10px;
}

.blog-details__pagenation-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 53px;
}

.blog-details__pagenation {
  position: relative;
  display: block;
}

.blog-details__pagenation li {
  position: relative;
  float: left;
  font-size: 22px;
  color: var(--wishon-black);
  font-weight: 700;
  background-color: var(--wishon-extra);
  line-height: 37px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  max-width: 370px;
  width: 100%;
  padding: 52px 60px 52px;
  letter-spacing: var(--wishon-letter-spacing);
  font-family: var(--wishon-font-two);
  border-radius: var(--wishon-bdr-radius);
}

.blog-details__pagenation li+li {
  margin-left: 30px;
}

.blog-details__pagenation li:hover {
  background-color: var(--wishon-base);
  color: var(--wishon-white);
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-one__title,
.comment-form__title {
  margin: 0;
  color: var(--wishon-black);
  font-size: 30px;
  margin-bottom: 53px;
  font-weight: 700;
}

.comment-one__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eeede5;
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.comment-one__content {
  position: relative;
  margin-left: 45px;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 20px;
  color: var(--wishon-black);
  margin-bottom: 26px;
  font-weight: 700;
}

.comment-one__btn {
  padding: 5px 20px;
  position: absolute;
  top: -12px;
  right: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--wishon-white);
  background-color: var(--wishon-primary);
  border-radius: var(--wishon-bdr-radius);
}

.comment-one__btn:hover {
  color: var(--wishon-white);
}

.comment-one__btn:before {
  background-color: var(--wishon-base);
}

.comment-one__image {
  position: relative;
  display: block;
  border-radius: 50%;
}

.comment-one__image img {
  border-radius: 50%;
}

.comment-form .comment-form__title {
  margin-top: -7px;
}

.comment-one__form .row {
  --bs-gutter-x: 10px;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 10px;
  background-color: var(--wishon-extra);
  border-radius: 10px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 64px;
  width: 100%;
  border: none;
  background-color: var(--wishon-extra);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--wishon-gray);
  display: block;
  font-weight: 400;
  border-radius: 10px;
}

.comment-form__input-box textarea {
  font-size: 14px;
  color: var(--wishon-gray);
  height: 165px;
  width: 100%;
  background-color: var(--wishon-extra);
  padding: 25px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 400;
  border-radius: 10px;
}

.comment-form__btn {
  border: none;
  background-color: var(--wishon-base);
}

.comment-form__btn::after {
  background-color: var(--wishon-black);
}

.comment-form__input-box.text-message-box {
  height: 165px;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  margin: 0;
  font-size: 20px;
  margin-bottom: 3px;
  font-weight: 700;
}

.sidebar__search {
  position: relative;
  display: block;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--wishon-base);
  color: var(--wishon-white);
  font-size: 16px;
  font-weight: 400;
  padding-left: 50px;
  height: 80px;
  width: 100%;
  padding-right: 80px;
  border-radius: var(--wishon-bdr-radius);
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--wishon-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--wishon-white);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--wishon-white);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--wishon-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--wishon-white);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--wishon-white);
}

.sidebar__search-form button[type="submit"] {
  background-color: transparent;
  color: var(--wishon-white);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 46px 30px 30px;
  background-color: var(--wishon-extra);
  border-radius: var(--wishon-bdr-radius);
  overflow: hidden;
  z-index: 1;
}

.sidebar__post .sidebar__title {
  margin-left: 20px;
}

.sidebar__post-list {
  margin: 0;
}

.sidebar__post-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 20px 14px;
  border-radius: var(--wishon-bdr-radius);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-list li:hover {
  background-color: var(--wishon-white);
}

.sidebar__post-list li+li {
  margin-top: 10px;
}

.sidebar__post-image {
  margin-right: 20px;
  border-radius: var(--wishon-bdr-radius);
}

.sidebar__post-image>img {
  width: 70px;
  border-radius: var(--wishon-bdr-radius);
}

.sidebar__post-content {
  position: relative;
  top: -3px;
}

.sidebar__post-content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.sidebar__post-content-meta {
  font-size: 14px;
  font-weight: 400;
  color: var(--wishon-gray) !important;
  font-family: var(--wishon-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-content-meta i {
  color: var(--wishon-primary);
  font-size: 14px;
  padding-right: 4px;
}

.sidebar__post-content h3 a {
  color: var(--wishon-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  margin-top: 3px;
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: var(--wishon-extra);
  border-radius: var(--wishon-bdr-radius);
  padding: 46px 30px 36px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__category .sidebar__title {
  padding-left: 20px;
  margin-bottom: 11px;
}

.sidebar__category-list {
  margin: 0;
}

.sidebar__category-list li+li {
  margin-top: 8px;
}

.sidebar__category-list li a {
  color: var(--wishon-gray);
  font-size: 16px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 5px 20px 5px;
  font-weight: 500;
  border-radius: var(--wishon-bdr-radius);
}

.sidebar__category-list li a:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: var(--wishon-black);
}

.sidebar__category-list li.active a {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: var(--wishon-black);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--wishon-base);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
}

.sidebar__category-list li a:hover span {
  color: var(--wishon-base);
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.sidebar__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  color: var(--wishon-base);
}

.sidebar__tags {
  position: relative;
  display: block;
  background: var(--wishon-extra);
  border-radius: var(--wishon-bdr-radius);
  padding: 46px 45px 50px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__tags .sidebar__title {
  margin-left: 5px;
  margin-bottom: 25px;
}

.sidebar__tags-list {
  margin-top: -10px;
}

.sidebar__tags-list a {
  font-size: 12px;
  color: var(--wishon-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--wishon-white);
  display: inline-block;
  padding: 5px 20px 5px;
  margin-left: 6px;
  font-weight: 700;
  border-radius: var(--wishon-bdr-radius);
  text-transform: uppercase;
  letter-spacing: var(--wishon-letter-spacing-two);
}

.sidebar__tags-list a+a {
  margin-left: 6px;
  margin-top: 10px;
}

.sidebar__tags-list a:hover {
  color: var(--wishon-white);
  background: var(--wishon-base);
}

/*--------------------------------------------------------------
# Event Details
--------------------------------------------------------------*/
.event-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.event-details__left {
  position: relative;
  display: block;
}

.event-details__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-details__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
}

.event-details__date {
  position: relative;
  display: block;
  background-color: var(--wishon-base);
  border-radius: var(--wishon-bdr-radius);
  padding: 16px 18px 18px;
  z-index: 3;
}

.event-details__date span {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: var(--wishon-white);
  font-family: var(--wishon-font-two);
}

.event-details__date p {
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  color: var(--wishon-white);
  font-family: var(--wishon-font-two);
  margin-top: -6px;
}

.event-details__text-1 {
  margin-bottom: 29px;
  margin-top: 8px;
}

.event-details__text-2 {
  font-size: 18px;
  line-height: 30px;
  color: var(--wishon-black);
}

.event-details__text-3 {
  margin-top: 31px;
  margin-bottom: 53px;
}

.event-details__img-box {
  position: relative;
  display: block;
}

.event-details__img-box-left {
  position: relative;
  display: block;
}

.event-details__img-one {
  position: relative;
  display: block;
  border-radius: var(--wishon-bdr-radius);
  margin-bottom: 30px;
}

.event-details__img-one img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
}

.event-details__img-box-right {
  position: relative;
  display: block;
}

.event-details__img-two {
  position: relative;
  display: block;
  border-radius: var(--wishon-bdr-radius);
}

.event-details__img-two img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
}

.event-details__text-4 {
  color: #6f7775;
  margin-top: 21px;
  margin-bottom: 29px;
}

.event-details__text-5 {
  font-size: 18px;
  line-height: 30px;
  color: var(--wishon-base);
}

.event-details__text-6 {
  color: #6f7775;
  margin-top: 31px;
  margin-bottom: 53px;
}

.event-details__btn-box {
  position: relative;
  display: block;
}

.event-details__content-right {
  position: relative;
  display: block;
}

.event-details__info {
  position: relative;
  display: block;
  background-color: var(--wishon-extra);
  border-radius: var(--wishon-bdr-radius);
  padding: 43px 60px 38px;
  margin-bottom: 30px;
}

.event-details__info-list {
  position: relative;
  display: block;
}

.event-details__info-list li {
  position: relative;
  display: block;
}

.event-details__info-list li+li {
  margin-top: 27px;
}

.event-details__info-list li p {
  font-weight: 500;
  color: var(--wishon-base);
  font-size: 14px;
  line-height: 27px;
}

.event-details__info-list li h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--wishon-black);
  letter-spacing: 0;
  font-family: var(--wishon-font);
}

.event-details__info-list li h4 a {
  color: var(--wishon-base);
}

.event-details__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 23px;
}

.event-details__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--wishon-black);
  background-color: var(--wishon-white);
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.event-details__social a:hover {
  color: var(--wishon-white);
  background-color: var(--wishon-base);
}

.event-details__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--wishon-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.event-details__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.event-details__social a+a {
  margin-left: 10px;
}

.event-details__google-map {
  position: relative;
  display: block;
  background-color: var(--wishon-extra);
  border-radius: var(--wishon-bdr-radius);
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 430px;
  width: 100%;
  mix-blend-mode: luminosity;
  border-radius: var(--wishon-bdr-radius);
}

/*--------------------------------------------------------------
# Cause Details
--------------------------------------------------------------*/
.cause-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.cause-details__left {
  position: relative;
  display: block;
}

.cause-details__top {
  position: relative;
  display: block;
}

.cause-details__img-box {
  position: relative;
  display: block;
}

.cause-details__img {
  position: relative;
  display: block;
  border-top-left-radius: var(--wishon-bdr-radius);
  border-top-right-radius: var(--wishon-bdr-radius);
}

.cause-details__img img {
  width: 100%;
  border-top-left-radius: var(--wishon-bdr-radius);
  border-top-right-radius: var(--wishon-bdr-radius);
}

.cause-details__category {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--wishon-primary);
  padding: 2px 20px 1px;
  border-radius: var(--wishon-bdr-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.cause-details__category span {
  font-size: 10px;
  color: var(--wishon-white);
  text-transform: uppercase;
  letter-spacing: var(--wishon-letter-spacing-two);
  font-weight: 500;
}

.cause-details__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 40px 40px 20px;
}

.cause-details__progress-box {
  position: relative;
  display: block;
}

.cause-details__progress-box .progress-levels {
  position: relative;
  display: block;
}

.cause-details__progress-box .progress-levels .progress-box {
  position: relative;
  display: block;
}

.cause-details__progress-box .progress-levels .progress-box.last-child {
  margin-bottom: 0;
}

.cause-details__progress-box .progress-levels .progress-box .inner {
  position: relative;
  display: block;
}

.cause-details__progress-box .progress-levels .progress-box .bar {
  position: relative;
  display: block;
}

.cause-details__progress-box .progress-levels .progress-box .bar .bar-innner {
  position: relative;
  width: 100%;
  height: 6px;
  background: var(--wishon-extra);
  border-radius: 3px;
}

.cause-details__progress-box .progress-levels .progress-box .bar .bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 6px;
  border-radius: 3px;
  background: #36a1b0;
  transition: all 2000ms ease 300ms;
}

.cause-details__progress-box .progress-levels .progress-box .bar .bar-innner .skill-percent {
  position: absolute;
  top: 18px;
  right: -7px;
  padding: 0;
  z-index: 1;
}

.cause-details__progress-box .progress-levels .progress-box .inner .count-text {
  position: relative;
  color: var(--wishon-base);
  font-size: 26px;
  line-height: 16px;
  font-weight: 700;
  font-family: var(--wishon-font-two);
}

.cause-details__progress-box .progress-levels .progress-box .inner .percent {
  position: relative;
  color: var(--wishon-base);
  font-size: 26px;
  line-height: 16px;
  font-weight: 700;
  font-family: var(--wishon-font-two);
  top: -3px;
  left: -5px;
}

.cause-details__goals-box {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 8px;
  margin-bottom: 16px;
}

.causes-one__goals-left {
  position: relative;
  display: block;
}

.cause-details__goals-left p {
  font-size: 14px;
  line-height: 26px;
}

.cause-details__goals-left p+p {
  margin-top: 3px;
}

.cause-details__goals-left p span {
  font-weight: 700;
  font-size: 16px;
  font-family: var(--wishon-font-two);
  color: var(--wishon-black);
  letter-spacing: var(--wishon-letter-spacing);
}

.cause-details__goals-right {
  position: relative;
  display: block;
}

.cause-details__goals-right p {
  font-size: 14px;
  line-height: 26px;
}

.cause-details__title-1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-top: 33px;
  margin-bottom: 23px;
}

.cause-details__text-2 {
  margin-top: 30px;
  margin-bottom: 76px;
}

.cause-details__title-2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.cause-details__text-3 {
  margin-top: 22px;
  margin-bottom: 31px;
}

.cause-details__points {
  position: relative;
  display: block;
}

.cause-details__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.cause-details__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: var(--wishon-primary);
  border-radius: 50%;
}

.cause-details__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 9px;
  color: var(--wishon-white);
}

.cause-details__points li .text {
  position: relative;
  display: block;
  margin-left: 24px;
}

.cause-details__points li .text p {
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  color: var(--wishon-black);
}

.cause-details__text-4 {
  margin-top: 31px;
  margin-bottom: 53px;
}

.cause-details__img-box-two {
  position: relative;
  display: block;
}

.cause-details__img-box-two-img {
  position: relative;
  display: block;
  border-radius: var(--wishon-bdr-radius);
  margin-bottom: 30px;
}

.cause-details__img-box-two-img img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
}

.cause-details__btn-and-social {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.cause-details__btn-box {
  position: relative;
  display: block;
}

.cause-details__btn {
  background-color: var(--wishon-base);
}

.cause-details__btn::after {
  background-color: var(--wishon-black);
}

.cause-details__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 30px;
}

.cause-details__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--wishon-black);
  background-color: var(--wishon-extra);
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.cause-details__social a:hover {
  color: var(--wishon-white);
  background-color: var(--wishon-base);
}

.cause-details__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--wishon-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.cause-details__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.cause-details__social a+a {
  margin-left: 10px;
}

.cause-details__documents {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--wishon-extra);
  border-radius: var(--wishon-bdr-radius);
  padding: 52px 50px 50px;
  margin-bottom: 54px;
}

.cause-details__documents-icon-box {
  position: relative;
  display: flex;
  align-items: center;
}

.cause-details__documents-icon {
  position: relative;
  display: inline-block;
}

.cause-details__documents-icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--wishon-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.cause-details__documents-icon:hover span {
  transform: scale(0.9);
}

.cause-details__documents-text {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-left: 20px;
}

.cause-details__documents-btn-box {
  position: relative;
  display: block;
}

.cause-details__sidebar {
  position: relative;
  display: block;
}

.cause-details__organizer {
  position: relative;
  display: flex;
  background-color: var(--wishon-extra);
  border-radius: var(--wishon-bdr-radius);
  padding: 50px 50px 45px;
}

.cause-details__organizer-img {
  position: relative;
  display: block;
}

.cause-details__organizer-img img {
  width: auto;
  border-radius: var(--wishon-bdr-radius);
}

.cause-details__organizer-content {
  margin-left: 20px;
  margin-top: -7px;
}

.cause-details__organizer-date {
  font-size: 14px;
  margin: 0;
  line-height: 22px;
  font-weight: 500;
}

.cause-details__organizer-title span {
  font-weight: 700;
  color: var(--wishon-black);
}

.cause-details__organizer-list {
  position: relative;
  display: block;
  margin-top: 6px;
}

.cause-details__organizer-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.cause-details__organizer-list li .icon span {
  font-size: 13px;
  color: var(--wishon-base);
}

.cause-details__organizer-list li .text {
  margin-left: 10px;
}

.cause-details__organizer-list li .text p {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

.cause-details__recent-donation {
  position: relative;
  display: block;
  background-color: var(--wishon-extra);
  border-radius: var(--wishon-bdr-radius);
  padding-top: 45px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
}

.cause-details__recent-donation-title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 22px;
  font-weight: 700;
}

.cause-details__recent-donation-list {
  position: relative;
  display: block;
}

.cause-details__recent-donation-list li {
  position: relative;
  display: flex;
}

.cause-details__recent-donation-list li+li {
  margin-top: 22px;
}

.cause-details__recent-donation-img {
  position: relative;
  display: block;
}

.cause-details__recent-donation-img img {
  width: auto;
  border-radius: var(--wishon-bdr-radius);
}

.cause-details__recent-donation-content {
  margin-left: 20px;
  margin-top: -6px;
}

.cause-details__recent-donation-amount {
  font-size: 16px;
  color: var(--wishon-base);
  line-height: 27px;
  font-weight: 700;
}

.cause-details__recent-donation-name {
  font-size: 16px;
  color: var(--wishon-black);
  font-weight: 700;
  margin: 0;
  line-height: 26px;
  letter-spacing: var(--wishon-letter-spacing);
}

.cause-details__recent-donation-name span {
  font-size: 14px;
  color: var(--wishon-gray);
  font-weight: 400;
}

.cause-details__sidebar-single+.cause-details__sidebar-single {
  margin-top: 30px;
}

/*--------------------------------------------------------------
## Become Volunteer
--------------------------------------------------------------*/

.become-volunteer {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.become-volunteer .section-title__tagline::before {
  left: 50%;
  transform: translateX(-50%);
}

.become-volunteer .section-title {
  margin-bottom: 49px;
}

.become-volunteer__Left {
  position: relative;
  display: block;
}

.become-volunteer__images {
  position: relative;
  display: block;
}

.become-volunteer__img-single {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.become-volunteer__img-single img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
}

.become-volunteer__content {
  position: relative;
  display: block;
}

.become-volunteer__text {
  margin: 0;
  padding-bottom: 42px;
  font-size: 18px;
  line-height: 30px;
}

.become-volunteer__points {
  position: relative;
  display: block;
}

.become-volunteer__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.become-volunteer__points li+li {
  margin-top: 6px;
}

.become-volunteer__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: var(--wishon-primary);
  border-radius: 50%;
}

.become-volunteer__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 9px;
  color: var(--wishon-white);
}

.become-volunteer__points li .text {
  position: relative;
  display: block;
  margin-left: 12px;
}

.become-volunteer__points li .text p {
  font-size: 18px;
  color: var(--wishon-black);
  font-weight: 500;
}

.become-volunteer__contact-box {
  position: relative;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--wishon-bdr-color);
  padding-top: 29px;
  margin-top: 35px;
}

.become-volunteer__contact-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--wishon-extra);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.become-volunteer__contact-icon:hover {
  background-color: var(--wishon-base);
}

.become-volunteer__contact-icon span {
  position: relative;
  display: inline-block;
  font-size: 19px;
  color: var(--wishon-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.become-volunteer__contact-icon:hover span {
  color: var(--wishon-white);
}

.become-volunteer__contact {
  margin-left: 20px;
}

.become-volunteer__phone {
  font-size: 22px;
  color: var(--wishon-base);
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--wishon-font-two);
}

.become-volunteer__phone:hover {
  color: var(--wishon-primary);
}

.become-volunteer__email {
  color: var(--wishon-black);
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.become-volunteer__email:hover {
  color: var(--wishon-base);
}

.become-volunteer__right {
  position: relative;
  display: block;
}

.become-volunteer__form {
  position: relative;
  display: block;
}

.become-volunteer__form .row {
  --bs-gutter-x: 10px;
}

.become-volunteer__input {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.become-volunteer__input input[type="text"],
.become-volunteer__input input[type="email"] {
  height: 64px;
  width: 100%;
  border: none;
  outline: none;
  background-color: var(--wishon-extra);
  color: var(--wishon-gray);
  font-size: 14px;
  padding: 0 30px;
  border-radius: var(--wishon-bdr-radius);
}

.become-volunteer__input textarea {
  height: 164px;
  width: 100%;
  border: none;
  outline: none;
  background-color: var(--wishon-extra);
  color: var(--wishon-gray);
  font-size: 14px;
  padding: 18px 30px 30px;
  border-radius: var(--wishon-bdr-radius);
}

.become-volunteer__input.become-volunteer__message-box {
  height: 164px;
}

.become-volunteer__btn {
  background-color: var(--wishon-base);
  border: none;
}

.become-volunteer__btn:after {
  background-color: var(--wishon-black);
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Event Page
--------------------------------------------------------------*/
.event-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.event-page .event-two__single {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Causes Page
--------------------------------------------------------------*/
.causes-page {
  position: relative;
  display: block;
  /* padding: 120px 0 90px; */
  padding: 70px 0 90px;
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/

.Ourinitiativeabout {
  position: relative;
  display: block;
  padding: 80px 0 15px;
  z-index: 1;
}

.about-three {
  position: relative;
  display: block;
  /* padding: 120px 0 120px; */
  padding: 70px 0 120px;
  z-index: 1;
}

.about-three__left {
  position: relative;
  display: block;
  margin-right: 70px;
}

.about-three__left .section-title {
  margin-bottom: 7.4px;
}

.about-three__progress {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 35px;
  margin-bottom: 60px;
}

.about-three__progress-single {
  position: relative;
  display: block;
}

.about-three__progress-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--wishon-black);
  margin-bottom: 6px;
}

.about-three__progress .bar {
  position: relative;
  width: 100%;
  height: 13px;
  max-width: 500px;
  background-color: var(--wishon-extra);
  margin-bottom: 16px;
  border-radius: 7px;
}

.about-three__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 13px;
  background: var(--wishon-base);
  border-radius: 7px;
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.about-three__progress .count-text {
  position: absolute;
  right: 0px;
  bottom: 20px;
  color: var(--wishon-gray);
  line-height: 24px;
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-three__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.about-three__progress .bar.marb-0 {
  margin-bottom: 0;
}

.about-three__person-details {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-three__person-contact {
  position: relative;
  display: block;
}

.about-three__person-contact-sub-title {
  line-height: 16px;
}

.about-three__person-contact-number {
  font-size: 24px;
  line-height: 24px;
  margin-top: 7px;
}

.about-three__person-contact-number a {
  color: var(--wishon-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-three__person-contact-number a:hover {
  color: var(--wishon-base);
}

.about-three__person {
  position: relative;
  display: flex;
  align-items: center;
}

.about-three__person-img {
  position: relative;
  display: block;
  width: 70px;
}

.about-three__person-img img {
  width: 100%;
  border-radius: 50%;
}

.about-three__person-shape-1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.about-three__person-shape-1 img {
  width: auto;
}

.about-three__person-content {
  position: relative;
  display: block;
  margin-left: 30px;
  top: 3px;
}

.about-three__person-name {
  font-size: 22px;
  line-height: 22px;
  color: var(--wishon-primary);
  font-style: italic;
  margin-bottom: 2px;
}

.about-three__person-sub-title {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
}

.about-three__right {
  position: relative;
  display: block;
  margin-left: 60px;
}

.about-three__img {
  position: relative;
  display: block;
}

.about-three__img:before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: -20px;
  background-color: var(--wishon-primary);
  width: 20px;
  border-top-left-radius: var(--wishon-bdr-radius);
  border-bottom-left-radius: var(--wishon-bdr-radius);
}

.about-three__img img {
  width: 100%;
  border-radius: var(--wishon-bdr-radius);
}

/*--------------------------------------------------------------
# Counter Two
--------------------------------------------------------------*/
.counter-two {
  position: relative;
  display: block;
  z-index: 3;
}

.about-three__shape-1 {
  position: absolute;
  bottom: -198px;
  left: 0;
  z-index: -1;
}

.about-three__shape-1 img {
  width: auto;
}

.counter-two__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: var(--wishon-base);
  border-radius: var(--wishon-bdr-radius);
  padding: 49px 60px 45px;
  z-index: 1;
}

.counter-two__list li {
  position: relative;
  display: block;
  margin-bottom: 9px;
}

.counter-two__single {
  position: relative;
  display: flex;
  align-items: center;
}

.counter-two__icon {
  position: relative;
  display: flex;
  align-items: center;
}

.counter-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 66px;
  color: var(--wishon-primary);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.counter-two__list li:hover .counter-two__icon span {
  transform: scale(.9);
}

.counter-two__content {
  margin-left: 20px;
}

.counter-two__content h3 {
  font-size: 40px;
  color: var(--wishon-white);
  font-weight: 700;
  line-height: 40px !important;
  font-family: var(--wishon-font-two) !important;
}

.counter-two__letter {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px !important;
  font-family: var(--wishon-font-two) !important;
  color: var(--wishon-white);
  top: 10px;
  left: -4px;
}

.counter-two__text {
  font-size: 18px;
  margin-top: 5px;
  color: var(--wishon-white);
}

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
  position: relative;
  display: block;
  padding: 120px 0 73px;
}

.team-two .section-title__tagline::before {
  left: 50%;
  transform: translateX(-50%);
}

.team-two .section-title {
  margin-bottom: 62px;
}

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-four {
  position: relative;
  display: block;
  z-index: 1;
}

.brand-four__inner {
  position: relative;
  display: block;
  padding: 88px 0 88px;
  border-top: 1px solid var(--wishon-bdr-color);
}

.brand-four .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.brand-four .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 0.15;
  max-width: 100%;
}

.brand-four .swiper-slide img:hover {
  opacity: 0.5;
}

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.our_team {
  position: relative;
  display: block;
  padding: 70px 0 0px;
}

.team-page {
  position: relative;
  display: block;
  padding: 23.5px 0 73px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Google Map Two
--------------------------------------------------------------*/
.google-map-two {
  position: relative;
  display: block;
  /* padding: 120px 0 0; */
  padding: 0 0 120px;
}

.google-map-two__box {
  position: relative;
  display: block;
  background-color: var(--wishon-extra);
  border-top-left-radius: var(--wishon-bdr-radius);
  border-top-right-radius: var(--wishon-bdr-radius);
}

.google-map-two__map {
  position: relative;
  display: block;
  border: none;
  height: 440px;
  width: 100%;
  mix-blend-mode: luminosity;
  border-top-left-radius: var(--wishon-bdr-radius);
  border-top-right-radius: var(--wishon-bdr-radius);
}

.google-map-two__bottom {
  position: relative;
  display: block;
}

.google-map-two__bottom-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--wishon-primary);
  padding: 60px 60px 60px;
  border-bottom-left-radius: var(--wishon-bdr-radius);
  border-bottom-right-radius: var(--wishon-bdr-radius);
}

.google-map-two__bottom-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.google-map-two__bottom-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--wishon-white);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.google-map-two__bottom-list li .icon:hover {
  background-color: var(--wishon-base);
}

.google-map-two__bottom-list li .icon:hover span {
  color: var(--wishon-white);
}

.google-map-two__bottom-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--wishon-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.google-map-two__bottom-list li:hover .icon span {
  color: var(--wishon-white);
}

.google-map-two__bottom-list li .content {
  position: relative;
  display: block;
  margin-left: 22px;
}

.google-map-two__bottom-list li .content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: var(--wishon-white);
  margin-top: 6px;
}

.google-map-two__bottom-list li .content p a {
  color: var(--wishon-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.google-map-two__bottom-list li .content p a:hover {
  color: var(--wishon-black);
}

/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.three_div_contact {
  position: relative;
  display: block;
  padding: 60px 0 0px;
}

.contact-page-form {
  position: relative;
  display: block;
  padding: 80px 0 80px;
}

.contact-page-form .container {
  padding: 0;
}

.contact-page-form .section-title__tagline::before {
  left: 10.5%;
  transform: translateX(-50%);
}

.contact-page-form__form-box {
  position: relative;
  display: block;
}

.contact-page-form__form-box .row {
  --bs-gutter-x: 10px;
}

.contact-page-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.contact-page-form__input-box input[type="text"],
.contact-page-form__input-box input[type="email"] {
  height: 64px;
  width: 100%;
  border: none;
  background-color: var(--wishon-extra);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--wishon-gray);
  display: block;
  font-weight: 400;
  border-radius: 10px;
}

.contact-page-form__input-box textarea {
  font-size: 14px;
  color: var(--wishon-gray);
  height: 165px;
  width: 100%;
  background-color: var(--wishon-extra);
  padding: 25px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 400;
  border-radius: 10px;
}

.contact-page-form__input-box.text-message-box {
  height: 165px;
}

.contact-page-form__btn {
  display: block;
  border: none;
  background-color: var(--wishon-base);
  margin: 0 auto;
}

.contact-page-form__btn::after {
  background-color: var(--wishon-black);
}


/*--------------------------------------------------------------
# Boxed Version
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Legal compliance
--------------------------------------------------------------*/
.gallery-page.legalcompliance {
  padding: 90px 10px 150px 10px;
}

/*--------------------------------------------------------------
# Legal compliance end
--------------------------------------------------------------*/


/* =====================================================
   HELP MEDICAL FOUNDATION
   SIMPLE + INTERACTIVE HEADER
   ===================================================== */

.helpmedicalfoundationheader {
  width: 100%;
  position: relative;
  z-index: 9999;
  background: #fff;
}


/* =========================
   TOP BAR
   ========================= */

.helpmedicalfoundationheader__top {
  height: 36px;
  background: #f6f6f6;
  border-bottom: 1px solid #e9e9e9;
}

.helpmedicalfoundationheader__top-inner {
  width: min(1280px, calc(100% - 40px));
  height: 100%;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.helpmedicalfoundationheader__social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.helpmedicalfoundationheader__social a {
  color: #555;
  font-size: 13px;

  text-decoration: none;

  transition:
    color .25s ease,
    transform .25s ease;
}

.helpmedicalfoundationheader__social a:hover {
  color: #e23b3b;
  transform: translateY(-2px);
}


/* =========================
   MAIN NAV
   ========================= */

.helpmedicalfoundationheader__nav {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.helpmedicalfoundationheader__nav-inner {
  width: min(1280px, calc(100% - 40px));
  min-height: 82px;

  margin: auto;

  display: flex;
  align-items: center;
}


/* =========================
   LOGO
   ========================= */

.helpmedicalfoundationheader__logo {
  flex-shrink: 0;
  margin-right: 55px;
}

.helpmedicalfoundationheader__logo a {
  display: block;
}

.helpmedicalfoundationheader__logo img {
  width: 65px;
  height: auto;
  padding: 4px;
}

/* =========================
   MENU AREA
   ========================= */

.helpmedicalfoundationheader__menu-area {
  flex: 1;
}

.helpmedicalfoundationheader__menu {
  margin: 0;
  padding: 0;

  list-style: none;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 3px;
}

.helpmedicalfoundationheader__menu>li {
  position: relative;
}

.helpmedicalfoundationheader__menu>li>a {
  min-height: 82px;

  padding: 0 14px;

  display: flex;
  align-items: center;
  gap: 6px;

  position: relative;

  color: #252525;

  text-decoration: none;

  font-size: 12px;
  font-weight: 600;

  transition:
    color .25s ease;
}


/* SIMPLE ACTIVE LINE */

.helpmedicalfoundationheader__menu>li>a::after {
  content: "";

  position: absolute;

  bottom: 16px;
  left: 14px;
  right: 14px;

  height: 2px;

  background: #e23b3b;

  transform: scaleX(0);

  transition:
    transform .25s ease;
}

.helpmedicalfoundationheader__menu>li:hover>a {
  color: #e23b3b;
}

.helpmedicalfoundationheader__menu>li:hover>a::after {
  transform: scaleX(1);
}

.helpmedicalfoundationheader__menu>li>a i {
  font-size: 8px;

  transition:
    transform .25s ease;
}

.helpmedicalfoundationheader__has-dropdown:hover>a i {
  transform: rotate(180deg);
}


/* =========================
   DROPDOWN
   ========================= */

.helpmedicalfoundationheader__dropdown {
  position: absolute;

  top: calc(100% - 1px);
  left: 0;

  width: 235px;

  margin: 0;
  padding: 7px 0;

  list-style: none;

  background: #fff;

  border: 1px solid #e5e5e5;

  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);

  opacity: 0;
  visibility: hidden;

  transform: translateY(6px);

  transition:
    opacity .2s ease,
    visibility .2s ease,
    transform .2s ease;
}

.helpmedicalfoundationheader__has-dropdown:hover .helpmedicalfoundationheader__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.helpmedicalfoundationheader__dropdown li a {
  display: flex;
  align-items: center;

  min-height: 40px;

  padding: 0 16px;

  color: #333;

  text-decoration: none;

  font-size: 12px;

  transition:
    background .2s ease,
    color .2s ease,
    padding-left .2s ease;
}

.helpmedicalfoundationheader__dropdown li a:hover {
  background: #f7f7f7;
  color: #e23b3b;
  padding-left: 21px;
}


/* =========================
   RIGHT SIDE
   ========================= */

.helpmedicalfoundationheader__right {
  display: flex;
  align-items: center;

  gap: 20px;

  flex-shrink: 0;
}


/* VOLUNTEER */

.helpmedicalfoundationheader__volunteer {
  display: flex;
  align-items: center;
  gap: 9px;

  color: #333;

  text-decoration: none;

  transition: color .25s ease;
}

.helpmedicalfoundationheader__volunteer:hover {
  color: #e23b3b;
}

.helpmedicalfoundationheader__volunteer-icon {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f3f3f3;

  transition:
    background .25s ease,
    color .25s ease;
}

.helpmedicalfoundationheader__volunteer:hover .helpmedicalfoundationheader__volunteer-icon {
  background: #e23b3b;
  color: #fff;
}

.helpmedicalfoundationheader__volunteer span:last-child {
  display: flex;
  flex-direction: column;
}

.helpmedicalfoundationheader__volunteer small {
  color: #999;
  line-height: 16px;
}

.helpmedicalfoundationheader__volunteer strong {
  font-size: 10px;
  white-space: nowrap;
  color: #555;
  font-weight: 800;
  text-transform: uppercase;
}


/* =========================
   DONATE
   ========================= */

.helpmedicalfoundationheader__donate {
  min-width: 105px;
  height: 42px;

  padding: 0 17px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #e23b3b;
  color: #fff;

  border-radius: 4px;

  text-decoration: none;

  font-size: 12px;
  font-weight: 700;

  transition:
    background .25s ease,
    transform .25s ease;
}

.helpmedicalfoundationheader__donate:hover {
  background: #c92f2f;
  transform: translateY(-2px);
  color: #FFF;
}


/* =========================
   MOBILE BUTTON
   ========================= */

.helpmedicalfoundationheader__mobile-toggle {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid #ddd;
  background: #fff;

  padding: 9px;

  cursor: pointer;
}

.helpmedicalfoundationheader__mobile-toggle span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 4px 0;

  background: #333;

  transition:
    transform .25s ease,
    opacity .25s ease;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1150px) {

  .helpmedicalfoundationheader__logo {
    margin-right: 25px;
  }

  .helpmedicalfoundationheader__menu>li>a {
    padding: 0 9px;
    font-size: 11px;
  }

  .helpmedicalfoundationheader__volunteer span:last-child {
    display: none;
  }

  .helpmedicalfoundationheader__right {
    gap: 10px;
  }

}


/* =====================================================
   MOBILE SIDE PANEL
   Desktop layout remains completely unchanged
   ===================================================== */

@media (max-width: 900px) {

  .helpmedicalfoundationheader__nav-inner {
    min-height: 70px;
  }

  .helpmedicalfoundationheader__logo {
    margin-right: auto;
  }

  .helpmedicalfoundationheader__logo img {
    width: 65px;
    padding: 5px;
  }

  .helpmedicalfoundationheader__right {
    margin-left: auto;
    margin-right: 12px;
  }

  .helpmedicalfoundationheader__volunteer {
    display: none;
  }


  /* =========================
     HAMBURGER
     ========================= */

  .helpmedicalfoundationheader__menu-area {
    flex: initial;
    order: 3;
  }

  .helpmedicalfoundationheader__mobile-toggle {
    position: relative;

    display: flex;

    width: 42px;
    height: 42px;

    padding: 8px;

    flex-direction: column;
    justify-content: center;

    border: 1px solid #dedede;
    border-radius: 4px;

    background: #fff;

    cursor: pointer;

    z-index: 10002;
  }

  .helpmedicalfoundationheader__mobile-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 3px 0;

    background: #252525;

    transition:
      transform .3s ease,
      opacity .2s ease;
  }


  /* HAMBURGER -> X */

  .helpmedicalfoundationheader__mobile-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .helpmedicalfoundationheader__mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .helpmedicalfoundationheader__mobile-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }


  /* =========================
     DARK OVERLAY
     ========================= */

  .helpmedicalfoundationheader__menu-area::before {
    content: "";

    position: fixed;

    inset: 0;

    z-index: 9997;

    background: rgba(0, 0, 0, .35);

    opacity: 0;

    visibility: hidden;

    transition:
      opacity .3s ease,
      visibility .3s ease;
  }

  .helpmedicalfoundationheader__menu-area.is-menu-open::before {
    opacity: 1;
    visibility: visible;
  }


  /* =========================
     SIDE MENU
     ========================= */

  .helpmedicalfoundationheader__menu {
    position: fixed !important;

    top: 0 !important;
    right: 0 !important;
    left: auto !important;

    width: min(360px, 88vw);

    height: 100vh;

    margin: 0 !important;
    padding: 85px 0 25px !important;

    display: flex !important;

    flex-direction: column;

    align-items: stretch !important;

    justify-content: flex-start !important;

    gap: 0 !important;

    overflow-y: auto;
    overflow-x: hidden;

    list-style: none;

    background: #fff;

    border: 0 !important;

    box-shadow:
      -8px 0 30px rgba(0, 0, 0, .12);

    z-index: 9998;

    transform: translateX(100%);

    opacity: 1 !important;
    visibility: visible !important;

    transition:
      transform .35s ease;

    scrollbar-width: thin;
  }

  .helpmedicalfoundationheader__menu.is-open {
    transform: translateX(0);
  }


  /* =========================
     MENU ITEMS
     ========================= */

  .helpmedicalfoundationheader__menu > li {
    position: relative;

    width: 100%;

    border-bottom: 1px solid #eeeeee;
  }


  .helpmedicalfoundationheader__menu > li > a {
    min-height: 58px;

    width: 100%;

    padding: 0 25px !important;

    display: flex;

    align-items: center;
    justify-content: space-between;

    color: #252525;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
  }


  .helpmedicalfoundationheader__menu > li > a::after {
    display: none;
  }


  .helpmedicalfoundationheader__menu > li > a:hover {
    color: #e23b3b;
    background: #fafafa;
  }


  /* =========================
     DROPDOWN
     ========================= */

  .helpmedicalfoundationheader__dropdown {
    position: static !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 0 8px !important;

    display: block;

    opacity: 1 !important;
    visibility: visible !important;

    transform: none !important;

    background: #fafafa;

    border: 0 !important;

    box-shadow: none !important;
  }


  .helpmedicalfoundationheader__dropdown li {
    width: 100%;
  }


  .helpmedicalfoundationheader__dropdown li a {
    min-height: 43px;

    padding: 0 25px 0 48px !important;

    display: flex;

    align-items: center;

    color: #666;

    font-size: 11px;

    border-top: 1px solid #eeeeee;
  }


  .helpmedicalfoundationheader__dropdown li a::before {
    content: "";

    width: 4px;
    height: 4px;

    margin-right: 10px;

    border-radius: 50%;

    background: #e23b3b;
  }


  .helpmedicalfoundationheader__dropdown li a:hover {
    padding-left: 48px !important;

    color: #e23b3b;

    background: #f5f5f5;
  }


  /* Chevron */

  .helpmedicalfoundationheader__menu > li > a i {
    font-size: 8px;

    transition:
      transform .25s ease;
  }


  /* =========================
     DONATE
     ========================= */

  .helpmedicalfoundationheader__donate {
    min-width: 90px;

    height: 38px;

    padding: 0 12px;

    font-size: 11px;
  }

}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 550px) {

  .helpmedicalfoundationheader__top-inner,
  .helpmedicalfoundationheader__nav-inner {
    width: calc(100% - 24px);
  }


  .helpmedicalfoundationheader__logo img {
    width: 55px;
    padding: 4px;
  }


  .helpmedicalfoundationheader__right {
    margin-right: 8px;
  }


  .helpmedicalfoundationheader__donate {
    min-width: 82px;

    height: 36px;

    padding: 0 9px;

    font-size: 10px;
  }


  .helpmedicalfoundationheader__mobile-toggle {
    width: 40px;
    height: 40px;
  }


  .helpmedicalfoundationheader__menu {
    width: min(340px, 90vw);
  }

}


/* =====================================================
   VERY SMALL MOBILE
   ===================================================== */

@media (max-width: 380px) {

  .helpmedicalfoundationheader__donate {
    display: none;
  }

  .helpmedicalfoundationheader__logo img {
    width: 52px;
  }

  .helpmedicalfoundationheader__menu {
    width: 92vw;
  }

}

/* =========================================================
   HELP MEDICAL FOUNDATION
   IMAGE FOOTER
   FLUID + INTERACTIVE
   ========================================================= */

.helpmedicalfoundationfooter {
  position: relative;

  width: 100%;

  overflow: hidden;

  color: #ffffff;

  background: #172129;
  z-index: 999;
}


/* =========================================================
   BACKGROUND IMAGE
   ========================================================= */

.helpmedicalfoundationfooter__bg {
  position: absolute;

  inset: 0;

  background-image:
    url("assets/images/shapes/footer-shape-1.png");

  background-repeat: no-repeat;

  background-position:
    right center;

  background-size:
    600px auto;

  opacity: .20;

  transform: scale(1);

  transition:
    transform 1.2s ease,
    opacity .6s ease;

  pointer-events: none;
}


/* SECOND IMAGE */

.helpmedicalfoundationfooter::before {
  content: "";

  position: absolute;

  left: -120px;
  bottom: -120px;

  width: 500px;
  height: 500px;

  background-image:
    url("assets/images/shapes/footer-shape-2.png");

  background-repeat: no-repeat;

  background-position: center;

  background-size: contain;

  opacity: .12;

  pointer-events: none;
}


.helpmedicalfoundationfooter:hover .helpmedicalfoundationfooter__bg {
  transform: scale(1.04);

  opacity: .26;
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.helpmedicalfoundationfooter__overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(110deg,
      rgba(20, 29, 36, .98) 0%,
      rgba(20, 29, 36, .94) 42%,
      rgba(20, 29, 36, .78) 72%,
      rgba(20, 29, 36, .66) 100%);

  pointer-events: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.helpmedicalfoundationfooter__container {
  position: relative;

  z-index: 2;

  width: min(1250px, calc(100% - 40px));

  margin: 0 auto;
}


/* =========================================================
   ABOUT
   ========================================================= */

.helpmedicalfoundationfooter__about {
  padding: 55px 0 45px;

  border-bottom:
    1px solid rgba(255, 255, 255, .12);
}


.helpmedicalfoundationfooter__about-title {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 18px;
}


.helpmedicalfoundationfooter__about-title h4,
.helpmedicalfoundationfooter__navigation-heading h4,
.helpmedicalfoundationfooter__contact-heading h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
}


.helpmedicalfoundationfooter__about-line,
.helpmedicalfoundationfooter__navigation-heading span,
.helpmedicalfoundationfooter__contact-heading span {
  display: block;

  width: 30px;

  height: 2px;

  background: #e23b3b;

  transition:
    width .35s ease;
}


.helpmedicalfoundationfooter__about:hover .helpmedicalfoundationfooter__about-line,

.helpmedicalfoundationfooter__navigation:hover .helpmedicalfoundationfooter__navigation-heading span,

.helpmedicalfoundationfooter__contact:hover .helpmedicalfoundationfooter__contact-heading span {
  width: 55px;
}


/* =========================================================
   ABOUT CONTENT
   ========================================================= */

.helpmedicalfoundationfooter__about-layout {
  display: flex;

  align-items: center;

  gap: 45px;
}


.helpmedicalfoundationfooter__about-text {
  flex: 1;

  max-width: 850px;

  margin: 0;

  color: #c5cdd1;

  font-size: 13px;

  line-height: 1.9;
}


/* =========================================================
   DONATE
   ========================================================= */

.helpmedicalfoundationfooter__donate {
  position: relative;

  display: flex;

  align-items: center;

  flex-shrink: 0;

  height: 48px;

  min-width: 145px;

  padding-left: 20px;

  overflow: hidden;

  color: #ffffff;

  background: #e23b3b;

  text-decoration: none;

  border-radius: 3px;

  font-size: 12px;

  font-weight: 600;

  transition:
    transform .3s ease,
    background .3s ease;
}


.helpmedicalfoundationfooter__donate-text {
  position: relative;

  z-index: 2;
}


.helpmedicalfoundationfooter__donate-arrow {
  position: absolute;

  right: 0;
  top: 0;

  width: 42px;
  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(0, 0, 0, .15);

  transition:
    width .35s ease;
}


.helpmedicalfoundationfooter__donate-arrow i {
  transition:
    transform .35s ease;
}


.helpmedicalfoundationfooter__donate:hover {
  transform: translateY(-3px);
  background: #d33131;
  color: #FFF;
  transition: 2s ease-in-out;
}


.helpmedicalfoundationfooter__donate:hover .helpmedicalfoundationfooter__donate-arrow {
  width: -webkit-fill-available;
  justify-content: right;
  padding-right: 20px;
}


.helpmedicalfoundationfooter__donate:hover .helpmedicalfoundationfooter__donate-arrow i {
  transform: translateX(5px);
}


/* =========================================================
   LOWER AREA
   ========================================================= */

.helpmedicalfoundationfooter__navigation,
.helpmedicalfoundationfooter__contact {
  padding-top: 38px;
}


.helpmedicalfoundationfooter__navigation {
  flex: 1;
}


.helpmedicalfoundationfooter__contact {
  flex: 1;
}


.helpmedicalfoundationfooter__navigation-heading,
.helpmedicalfoundationfooter__contact-heading {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 18px;
}


/* =========================================================
   FLOATING LOWER LAYOUT
   ========================================================= */

.helpmedicalfoundationfooter__navigation,
.helpmedicalfoundationfooter__contact {
  display: inline-block;

  vertical-align: top;

  width: 49%;

  box-sizing: border-box;
}


.helpmedicalfoundationfooter__navigation {
  padding-right: 60px;
}


.helpmedicalfoundationfooter__contact {
  padding-left: 35px;

  border-left:
    1px solid rgba(255, 255, 255, .10);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.helpmedicalfoundationfooter__navigation-list {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(150px, 1fr));

  column-gap: 35px;

  row-gap: 3px;
}


.helpmedicalfoundationfooter__navigation-list a {
  display: flex;

  align-items: center;

  justify-content: space-between;

  min-height: 32px;

  color: #aeb8bd;

  text-decoration: none;

  font-size: 12px;

  border-bottom:
    1px solid transparent;

  transition:
    color .25s ease,
    padding-left .3s ease,
    border-color .3s ease;
}


.helpmedicalfoundationfooter__navigation-list a i {
  color: #e23b3b;

  font-size: 8px;

  opacity: 0;

  transform: translateX(-8px);

  transition:
    opacity .25s ease,
    transform .3s ease;
}


.helpmedicalfoundationfooter__navigation-list a:hover {
  color: #ffffff;

  padding-left: 7px;

  border-bottom-color:
    rgba(255, 255, 255, .12);
}


.helpmedicalfoundationfooter__navigation-list a:hover i {
  opacity: 1;

  transform: translateX(0);
}


/* =========================================================
   CONTACT
   ========================================================= */

.helpmedicalfoundationfooter__contact-list {
  display: flex;

  flex-direction: column;

  gap: 13px;
}


.helpmedicalfoundationfooter__contact-item {
  display: flex;

  align-items: flex-start;

  gap: 13px;

  color: #aeb8bd;

  text-decoration: none;

  font-size: 12px;

  line-height: 1.65;

  transition:
    color .3s ease;
}


.helpmedicalfoundationfooter__contact-icon {
  width: 34px;

  height: 34px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border:
    1px solid rgba(255, 255, 255, .18);

  border-radius: 50%;

  color: #ffffff;

  transition:
    background .3s ease,
    border-color .3s ease,
    transform .3s ease;
}


.helpmedicalfoundationfooter__contact-item:hover {
  color: #ffffff;
}


.helpmedicalfoundationfooter__contact-item:hover .helpmedicalfoundationfooter__contact-icon {
  background: #e23b3b;

  border-color: #e23b3b;

  transform:
    rotate(-8deg) scale(1.08);
}


.helpmedicalfoundationfooter__contact-info {
  display: flex;

  flex-direction: column;

  gap: 2px;

  padding-top: 2px;
}


.helpmedicalfoundationfooter__contact-info small {
  color: #727e85;

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: .5px;
}


.helpmedicalfoundationfooter__contact-info strong {
  color: inherit;

  font-size: 12px;

  font-weight: 400;
}


/* =========================================================
   BOTTOM
   ========================================================= */

.helpmedicalfoundationfooter__bottom {
  margin-top: 40px;

  min-height: 65px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  border-top:
    1px solid rgba(255, 255, 255, .12);
}


.helpmedicalfoundationfooter__policies {
  display: flex;

  flex-wrap: wrap;

  gap: 20px;
}

.helpmedicalfoundationfooter__policies p,
.helpmedicalfoundationfooter__policies a {
  position: relative;

  color: #89949a;

  text-decoration: none;

  font-size: 13px;

  transition:
    color .25s ease;
}

.helpmedicalfoundationfooter__policies a {
  color: #e23b3b;
  font-weight: 600;
}

.helpmedicalfoundationfooter__policies a::before {
  content: "";

  position: absolute;

  left: 0;

  bottom: -5px;

  width: 100%;

  height: 1px;

  background: #e23b3b;

  transform:
    scaleX(0);

  transform-origin: right;

  transition:
    transform .3s ease;
}


.helpmedicalfoundationfooter__policies a:hover {
  color: #ffffff;
}


.helpmedicalfoundationfooter__policies a:hover::before {
  transform:
    scaleX(1);

  transform-origin: left;
}


/* =========================================================
   SOCIAL
   ========================================================= */

.helpmedicalfoundationfooter__social {
  display: flex;

  gap: 8px;
}


.helpmedicalfoundationfooter__social a {
  width: 37px;

  height: 37px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #c5cdd1;

  text-decoration: none;

  border:
    1px solid rgba(255, 255, 255, .20);

  border-radius: 50%;

  transition:
    color .25s ease,
    background .3s ease,
    border-color .3s ease,
    transform .3s ease;
}


.helpmedicalfoundationfooter__social a:hover {
  color: #ffffff;

  background: #e23b3b;

  border-color: #e23b3b;

  transform:
    translateY(-4px) rotate(5deg);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

  .helpmedicalfoundationfooter__about-layout {
    align-items: flex-start;

    flex-direction: column;

    gap: 22px;
  }


  .helpmedicalfoundationfooter__navigation,
  .helpmedicalfoundationfooter__contact {
    width: 100%;

    padding-left: 0;
    padding-right: 0;

    border-left: 0;
  }


  .helpmedicalfoundationfooter__contact {
    margin-top: 35px;

    padding-top: 35px;

    border-top:
      1px solid rgba(255, 255, 255, .10);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .helpmedicalfoundationfooter__container {
    width: calc(100% - 30px);
  }


  .helpmedicalfoundationfooter__bg {
    background-size: 400px auto;

    background-position:
      right bottom;
  }


  .helpmedicalfoundationfooter__about {
    padding-top: 42px;
  }


  .helpmedicalfoundationfooter__about-text {
    font-size: 13px;

    line-height: 1.8;
  }


  .helpmedicalfoundationfooter__navigation-list {
    grid-template-columns: 1fr 1fr;

    column-gap: 20px;
  }


  .helpmedicalfoundationfooter__bottom {
    align-items: flex-start;

    flex-direction: column;

    padding: 20px 0 25px;
  }


  .helpmedicalfoundationfooter__policies {
    gap: 12px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .helpmedicalfoundationfooter__navigation-list {
    grid-template-columns: 1fr;
  }


  .helpmedicalfoundationfooter__contact-info strong {
    overflow-wrap: anywhere;
  }


  .helpmedicalfoundationfooter__policies {
    display: block;

    line-height: 2;
  }


  .helpmedicalfoundationfooter__policies a {
    margin-right: 12px;
  }

}



/* =========================================================
   HELP MEDICAL FOUNDATION
   HOME ABOUT
   HORIZONTAL STORY LAYOUT
   ========================================================= */

.helpmedicalfoundationfhomeabout {
  position: relative;

  width: 100%;

  padding: 85px 0;

  overflow: hidden;

  background: #f7f8f8;
}


/* =========================================================
   BACKGROUND SHAPE
   ========================================================= */

.helpmedicalfoundationfhomeabout__background-shape {
  position: absolute;

  right: -100px;
  top: 20px;

  width: 350px;

  opacity: .055;

  pointer-events: none;

  animation:
    helpmedicalfoundationfhomeabout__float 8s ease-in-out infinite;
}


.helpmedicalfoundationfhomeabout__background-shape img {
  display: block;

  width: 100%;
}


@keyframes helpmedicalfoundationfhomeabout__float {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }

}


/* =========================================================
   CONTAINER
   ========================================================= */

.helpmedicalfoundationfhomeabout__container {
  width: min(1220px, calc(100% - 40px));

  margin: 0 auto;

  position: relative;

  z-index: 2;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.helpmedicalfoundationfhomeabout__layout {
  display: grid;

  grid-template-columns:
    1.05fr .95fr;

  align-items: center;

  gap: 90px;
}


/* =========================================================
   GALLERY
   ========================================================= */

.helpmedicalfoundationfhomeabout__gallery {
  position: relative;

  height: 520px;

  display: flex;

  align-items: center;
}


/* =========================================================
   MAIN IMAGE
   ========================================================= */

.helpmedicalfoundationfhomeabout__gallery-main {
  position: relative;

  width: 72%;

  height: 450px;

  overflow: hidden;

  background: #dddddd;

  transition:
    width .55s cubic-bezier(.2, .8, .2, 1),
    transform .55s ease,
    box-shadow .55s ease;
}


.helpmedicalfoundationfhomeabout__gallery-main img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform .8s cubic-bezier(.2, .8, .2, 1);
}


.helpmedicalfoundationfhomeabout__gallery-main::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .45),
      transparent 45%);

  pointer-events: none;
}


.helpmedicalfoundationfhomeabout__gallery-main:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, .16);
}


.helpmedicalfoundationfhomeabout__gallery-main:hover img {
  transform: scale(1.06);
}


/* =========================================================
   IMAGE CAPTION
   ========================================================= */

.helpmedicalfoundationfhomeabout__gallery-caption {
  position: absolute;

  left: 25px;
  bottom: 25px;

  z-index: 3;

  color: #ffffff;

  font-size: 12px;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.helpmedicalfoundationfhomeabout__gallery-caption::before {
  content: "";

  display: inline-block;

  width: 25px;
  height: 2px;

  margin-right: 10px;

  vertical-align: middle;

  background: #e23b3b;
}


/* =========================================================
   SECOND IMAGE
   ========================================================= */

.helpmedicalfoundationfhomeabout__gallery-second {
  position: absolute;

  right: 0;
  bottom: 25px;

  width: 48%;
  height: 255px;

  padding: 7px;

  background: #ffffff;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, .13);

  transition:
    transform .55s cubic-bezier(.2, .8, .2, 1),
    width .55s cubic-bezier(.2, .8, .2, 1);
}


.helpmedicalfoundationfhomeabout__gallery-second img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform .7s ease;
}


.helpmedicalfoundationfhomeabout__gallery-second:hover {
  width: 55%;

  transform:
    translate(-12px, -12px);
}


.helpmedicalfoundationfhomeabout__gallery-second:hover img {
  transform: scale(1.05);
}


/* =========================================================
   IMAGE NUMBER
   ========================================================= */

.helpmedicalfoundationfhomeabout__gallery-number {
  position: absolute;

  left: -28px;
  top: 50%;

  transform: translateY(-50%);

  display: flex;

  align-items: center;

  gap: 10px;

  color: #202a33;

  font-size: 12px;

  font-weight: 700;

  writing-mode: vertical-rl;
}


.helpmedicalfoundationfhomeabout__gallery-number i {
  display: block;

  width: 1px;
  height: 45px;

  background: #e23b3b;
}


/* =========================================================
   CONTENT
   ========================================================= */

.helpmedicalfoundationfhomeabout__content {
  position: relative;

  padding: 20px 0;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.helpmedicalfoundationfhomeabout__eyebrow {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 18px;

  color: #e23b3b;

  font-size: 12px;

  letter-spacing: 1px;

  text-transform: uppercase;
}


.helpmedicalfoundationfhomeabout__eyebrow span {
  display: block;

  width: 35px;
  height: 2px;

  background: #e23b3b;

  transition:
    width .35s ease;
}


.helpmedicalfoundationfhomeabout__content:hover .helpmedicalfoundationfhomeabout__eyebrow span {
  width: 65px;
}


/* =========================================================
   TITLE
   ========================================================= */

.helpmedicalfoundationfhomeabout__title {
  max-width: 570px;

  margin: 0 0 25px;

  color: #202a33;

  font-size: 40px;

  line-height: 1.17;

  font-weight: 700;
}


/* =========================================================
   TEXT
   ========================================================= */

.helpmedicalfoundationfhomeabout__text {
  max-width: 570px;

  margin: 0;

  color: #687278;

  font-size: 14px;

  line-height: 1.9;
}


/* =========================================================
   ACTION
   ========================================================= */

.helpmedicalfoundationfhomeabout__action {
  display: flex;

  align-items: center;

  gap: 20px;

  margin-top: 30px;
}


.helpmedicalfoundationfhomeabout__button {
  display: inline-flex;

  align-items: center;

  gap: 13px;

  min-height: 44px;

  padding: 0 19px;

  color: #ffffff;

  background: #e23b3b;

  text-decoration: none;

  border-radius: 3px;

  font-size: 12px;

  font-weight: 600;

  transition:
    transform .3s ease,
    padding .35s ease,
    background .3s ease;
}


.helpmedicalfoundationfhomeabout__button i {
  transition:
    transform .35s ease;
}


.helpmedicalfoundationfhomeabout__button:hover {
  padding-left: 23px;
  padding-right: 23px;

  transform: translateY(-3px);

  background: #cc3030;
}


.helpmedicalfoundationfhomeabout__button:hover i {
  transform: translateX(6px);
}


.helpmedicalfoundationfhomeabout__action-line {
  width: 70px;
  height: 1px;

  background: #d8dcde;

  transition:
    width .35s ease;
}


.helpmedicalfoundationfhomeabout__action:hover .helpmedicalfoundationfhomeabout__action-line {
  width: 110px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .helpmedicalfoundationfhomeabout__layout {
    gap: 55px;
  }


  .helpmedicalfoundationfhomeabout__title {
    font-size: 34px;
  }


  .helpmedicalfoundationfhomeabout__gallery {
    height: 450px;
  }


  .helpmedicalfoundationfhomeabout__gallery-main {
    height: 390px;
  }


  .helpmedicalfoundationfhomeabout__gallery-second {
    height: 220px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

  .helpmedicalfoundationfhomeabout {
    padding: 20px 0;
  }


  .helpmedicalfoundationfhomeabout__container {
    width: calc(100% - 30px);
  }


  .helpmedicalfoundationfhomeabout__layout {
    display: flex;

    flex-direction: column;

    gap: 30px;
  }


  .helpmedicalfoundationfhomeabout__gallery {
    width: 100%;

    height: 430px;
  }


  .helpmedicalfoundationfhomeabout__gallery-main {
    width: 75%;

    height: 360px;
  }


  .helpmedicalfoundationfhomeabout__gallery-second {
    width: 48%;

    height: 210px;
  }


  .helpmedicalfoundationfhomeabout__gallery-number {
    left: -8px;
  }


  .helpmedicalfoundationfhomeabout__content {
    padding: 0;
  }


  .helpmedicalfoundationfhomeabout__title {
    font-size: 31px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .helpmedicalfoundationfhomeabout__gallery {
    height: 350px;
  }


  .helpmedicalfoundationfhomeabout__gallery-main {
    width: 80%;

    height: 290px;
  }


  .helpmedicalfoundationfhomeabout__gallery-second {
    width: 50%;

    height: 165px;

    bottom: 15px;
  }


  .helpmedicalfoundationfhomeabout__title {
    font-size: 27px;
  }


  .helpmedicalfoundationfhomeabout__text {
    font-size: 13px;
  }


  .helpmedicalfoundationfhomeabout__background-shape {
    width: 220px;

    right: -80px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .helpmedicalfoundationfhomeabout__background-shape {
    animation: none;
  }


  .helpmedicalfoundationfhomeabout__gallery-main,
  .helpmedicalfoundationfhomeabout__gallery-main img,
  .helpmedicalfoundationfhomeabout__gallery-second,
  .helpmedicalfoundationfhomeabout__gallery-second img,
  .helpmedicalfoundationfhomeabout__button {
    transition: none;
  }

}

.helpmedicalfoundationfhomeservices {
  position: relative;

  width: 100%;

  padding: 90px 0;

  overflow: hidden;

  background: #f4f6f6;
}


.helpmedicalfoundationfhomeservices__container {
  width: min(1200px, calc(100% - 40px));

  margin: 0 auto;

  display: flex;

  gap: 12px;

  height: 570px;
}


/* =========================================================
   SERVICE
   ========================================================= */

.helpmedicalfoundationfhomeservices__service {
  position: relative;

  flex: 1;

  min-width: 0;

  overflow: hidden;

  background: #202a33;

  cursor: default;

  transition:
    flex .65s cubic-bezier(.2, .8, .2, 1),
    box-shadow .4s ease;
}


/* EXPAND SERVICE */

.helpmedicalfoundationfhomeservices__service:hover {
  flex: 2.5;

  box-shadow:
    0 20px 45px rgba(0, 0, 0, .16);

  z-index: 3;
}


/* =========================================================
   IMAGE
   ========================================================= */

.helpmedicalfoundationfhomeservices__image {
  position: absolute;

  inset: 0;

  overflow: hidden;
}


.helpmedicalfoundationfhomeservices__image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(to bottom,
      rgba(15, 25, 32, .05) 15%,
      rgba(15, 25, 32, .25) 40%,
      rgba(15, 25, 32, .95) 100%);

  transition:
    background .5s ease;
}


.helpmedicalfoundationfhomeservices__image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 1s cubic-bezier(.2, .8, .2, 1),
    filter .5s ease;
}


.helpmedicalfoundationfhomeservices__service:hover .helpmedicalfoundationfhomeservices__image img {
  transform: scale(1.08);

  filter: brightness(.85);
}


.helpmedicalfoundationfhomeservices__service:hover .helpmedicalfoundationfhomeservices__image::after {
  background:
    linear-gradient(to bottom,
      rgba(15, 25, 32, .05) 5%,
      rgba(15, 25, 32, .18) 25%,
      rgba(15, 25, 32, .94) 75%,
      rgba(15, 25, 32, .98) 100%);
}


/* =========================================================
   CONTENT
   ========================================================= */

.helpmedicalfoundationfhomeservices__content {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  z-index: 2;

  padding: 30px;

  transform: translateY(120px);

  transition:
    transform .55s cubic-bezier(.2, .8, .2, 1);
}


.helpmedicalfoundationfhomeservices__service:hover .helpmedicalfoundationfhomeservices__content {
  transform: translateY(0);
}


/* =========================================================
   NUMBER
   ========================================================= */

.helpmedicalfoundationfhomeservices__number {
  display: block;

  margin-bottom: 12px;

  color: #e23b3b;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;
}


/* =========================================================
   TITLE
   ========================================================= */

.helpmedicalfoundationfhomeservices__title {
  margin: 0 0 15px;

  font-size: 24px;

  line-height: 1.25;

  font-weight: 700;
}


.helpmedicalfoundationfhomeservices__title a {
  color: #ffffff;

  text-decoration: none;
}


/* =========================================================
   TEXT
   ========================================================= */

.helpmedicalfoundationfhomeservices__text {
  max-width: 620px;

  margin: 0;

  color: rgba(255, 255, 255, .78);

  font-size: 12px;

  line-height: 1.8;

  opacity: 0;

  transform: translateY(15px);

  transition:
    opacity .4s ease .12s,
    transform .45s ease .12s;
}


.helpmedicalfoundationfhomeservices__service:hover .helpmedicalfoundationfhomeservices__text {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   BUTTON
   ========================================================= */

.helpmedicalfoundationfhomeservices__button {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 20px;

  padding: 10px 15px;

  color: #ffffff;

  background: #e23b3b;

  text-decoration: none;

  border-radius: 3px;

  font-size: 11px;

  font-weight: 600;

  opacity: 0;

  transform: translateY(15px);

  transition:
    opacity .4s ease .2s,
    transform .4s ease .2s,
    background .25s ease,
    gap .3s ease;
}


.helpmedicalfoundationfhomeservices__service:hover .helpmedicalfoundationfhomeservices__button {
  opacity: 1;

  transform: translateY(0);
}


.helpmedicalfoundationfhomeservices__button:hover {
  background: #d33131;

  gap: 18px;
}


.helpmedicalfoundationfhomeservices__button i {
  transition:
    transform .3s ease;
}


.helpmedicalfoundationfhomeservices__button:hover i {
  transform: translateX(3px);
}


/* =========================================================
   INDICATOR
   ========================================================= */

.helpmedicalfoundationfhomeservices__indicator {
  position: absolute;

  right: 18px;
  top: 18px;

  z-index: 5;

  width: 34px;
  height: 34px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #ffffff;

  background: rgba(0, 0, 0, .28);

  border: 1px solid rgba(255, 255, 255, .35);

  border-radius: 50%;

  transition:
    background .3s ease,
    transform .45s ease,
    border-color .3s ease;
}


.helpmedicalfoundationfhomeservices__indicator i {
  font-size: 10px;

  transition:
    transform .4s ease;
}


.helpmedicalfoundationfhomeservices__service:hover .helpmedicalfoundationfhomeservices__indicator {
  background: #e23b3b;

  border-color: #e23b3b;

  transform: rotate(45deg);
}


.helpmedicalfoundationfhomeservices__service:hover .helpmedicalfoundationfhomeservices__indicator i {
  transform: rotate(45deg);
}


/* =========================================================
   NON-HOVERED ITEMS
   ========================================================= */

.helpmedicalfoundationfhomeservices__service:not(:hover) .helpmedicalfoundationfhomeservices__content {
  bottom: 10px;
}


.helpmedicalfoundationfhomeservices__service:not(:hover) .helpmedicalfoundationfhomeservices__title {
  font-size: 18px;
}


.helpmedicalfoundationfhomeservices__service:not(:hover) .helpmedicalfoundationfhomeservices__text,
.helpmedicalfoundationfhomeservices__service:not(:hover) .helpmedicalfoundationfhomeservices__button {
  display: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

  .helpmedicalfoundationfhomeservices {
    padding: 65px 0;
  }


  .helpmedicalfoundationfhomeservices__container {
    height: 520px;

    gap: 8px;
  }


  .helpmedicalfoundationfhomeservices__content {
    padding: 22px;
  }


  .helpmedicalfoundationfhomeservices__title {
    font-size: 21px;
  }


  .helpmedicalfoundationfhomeservices__text {
    font-size: 11px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .helpmedicalfoundationfhomeservices {
    padding: 55px 0;
  }


  .helpmedicalfoundationfhomeservices__container {
    width: calc(100% - 30px);

    height: auto;

    display: flex;

    flex-direction: column;

    gap: 12px;
  }


  .helpmedicalfoundationfhomeservices__service,
  .helpmedicalfoundationfhomeservices__service:hover {
    flex: none;

    width: 100%;

    height: 320px;

    box-shadow: none;
  }


  .helpmedicalfoundationfhomeservices__content,
  .helpmedicalfoundationfhomeservices__service:hover .helpmedicalfoundationfhomeservices__content {
    transform: translateY(0);

    padding: 15px;
  }


  .helpmedicalfoundationfhomeservices__service:not(:hover) .helpmedicalfoundationfhomeservices__content {
    bottom: 0;
  }


  .helpmedicalfoundationfhomeservices__service:not(:hover) .helpmedicalfoundationfhomeservices__title {
    font-size: 22px;
  }


  .helpmedicalfoundationfhomeservices__service:not(:hover) .helpmedicalfoundationfhomeservices__text,
  .helpmedicalfoundationfhomeservices__service:not(:hover) .helpmedicalfoundationfhomeservices__button {
    display: block;
  }


  .helpmedicalfoundationfhomeservices__text {
    opacity: 1;

    transform: translateY(0);
  }


  .helpmedicalfoundationfhomeservices__button {
    opacity: 1;

    transform: translateY(0);
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .helpmedicalfoundationfhomeservices__service {
    height: 350px;
  }


  .helpmedicalfoundationfhomeservices__content {
    padding: 20px;
  }


  .helpmedicalfoundationfhomeservices__title,
  .helpmedicalfoundationfhomeservices__service:not(:hover) .helpmedicalfoundationfhomeservices__title {
    font-size: 20px;
  }


  .helpmedicalfoundationfhomeservices__text {
    font-size: 11px;

    line-height: 1.7;
  }

}

/* =========================================================
   HELP MEDICAL DONATION SECTION
   Screenshot-matched styling
   ========================================================= */

.helpmedicaldonation {
  position: relative;
  width: 100%;
  padding: 68px 0 165px;
  background: #f7f7f7;
  overflow: hidden;
}

.helpmedicaldonation .container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* -------------------------
   Heading
------------------------- */

.helpmedicaldonation h5 {
  margin: 0 0 7px;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -1.5px;
  text-align: center;
}

.helpmedicaldonation h5 .pinkcolor {
  color: #e23b3b;
}

.helpmedicaldonation>.container>p {
  margin: 0 0 72px;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 1px;
  color: #777777;
  text-align: center;
}


/* -------------------------
   Cards Row
------------------------- */

.helpmedicaldonation .row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 38px;
  margin: 0;
}

.helpmedicaldonation .row>[class*="col-"] {
  width: calc(50% - 19px);
  max-width: 590px;
  flex: 0 0 calc(50% - 19px);
  padding: 0;
  margin: 0;
}


/* -------------------------
   Card Link
------------------------- */

.helpmedicaldonation .row>[class*="col-"]>a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}


/* -------------------------
   Donation Card
------------------------- */

.helpmedicaldonation .feature-box {
  position: relative;
  width: 100%;
  height: 224px;
  min-height: 224px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #ffffff;
  border-radius: 7px;
  overflow: hidden;

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.07),
    0 2px 8px rgba(0, 0, 0, 0.03);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.helpmedicaldonation .feature-box:hover {
  transform: translateY(-5px);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.11),
    0 5px 12px rgba(0, 0, 0, 0.04);
}


/* -------------------------
   Card Inner Content
------------------------- */

.helpmedicaldonation .feature-box-move-bottom-top {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 25px 30px !important;
  margin: 0 !important;

  text-align: center;
}


/* -------------------------
   Icons
------------------------- */

.helpmedicaldonation .feature-box-icon {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.helpmedicaldonation .feature-box-icon i {
  display: flex !important;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  margin: 0 0 25px !important;

  color: #e23b3b !important;
  font-size: 43px !important;
  line-height: 1;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.helpmedicaldonation .feature-box-icon .line-icon-Inbox {
  font-size: 47px !important;
}

.helpmedicaldonation .feature-box:hover .feature-box-icon i {
  transform: translateY(-3px);
}


/* -------------------------
   Card Text
------------------------- */

.helpmedicaldonation .feature-box-content {
  width: 100%;
  text-align: center;
}

.helpmedicaldonation .feature-box-content span {
  display: block;

  margin: 0 !important;
  padding: 0;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px !important;
  line-height: 1.35;
  font-weight: 500 !important;

  color: #111111 !important;
  letter-spacing: 0;
}


/* -------------------------
   Overlay
------------------------- */

.helpmedicaldonation .feature-box-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: transparent;

  opacity: 0;
  pointer-events: none;
}


/* -------------------------
   Remove unwanted utility
   spacing from original CSS
------------------------- */

.helpmedicaldonation .marginbot50 {
  margin-bottom: 0 !important;
}

.helpmedicaldonation .margin-50px-bottom {
  margin-bottom: 72px !important;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

  .helpmedicaldonation {
    padding-top: 68px;
    padding-bottom: 165px;
  }

  .helpmedicaldonation .container {
    max-width: 1240px;
  }

  .helpmedicaldonation .row {
    gap: 38px;
  }

  .helpmedicaldonation .feature-box {
    height: 224px;
    min-height: 224px;
  }
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (min-width: 992px) and (max-width: 1399px) {

  .helpmedicaldonation {
    padding: 65px 0 130px;
  }

  .helpmedicaldonation .container {
    max-width: 1180px;
  }

  .helpmedicaldonation .row {
    gap: 30px;
  }

  .helpmedicaldonation .row>[class*="col-"] {
    width: calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
  }

  .helpmedicaldonation h5 {
    font-size: 38px;
  }

  .helpmedicaldonation .feature-box {
    height: 220px;
    min-height: 220px;
  }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

  .helpmedicaldonation {
    padding: 60px 0 100px;
  }

  .helpmedicaldonation .container {
    max-width: 900px;
  }

  .helpmedicaldonation h5 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .helpmedicaldonation>.container>p {
    margin-bottom: 50px;
    font-size: 18px;
  }

  .helpmedicaldonation .row {
    gap: 25px;
  }

  .helpmedicaldonation .row>[class*="col-"] {
    width: calc(50% - 12.5px);
    flex: 0 0 calc(50% - 12.5px);
  }

  .helpmedicaldonation .feature-box {
    height: 210px;
    min-height: 210px;
  }

  .helpmedicaldonation .feature-box-content span {
    font-size: 19px !important;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .helpmedicaldonation {
    padding: 55px 0 80px;
  }

  .helpmedicaldonation .container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .helpmedicaldonation h5 {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: -0.8px;
  }

  .helpmedicaldonation>.container>p {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.5px;
  }

  .helpmedicaldonation .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .helpmedicaldonation .row>[class*="col-"] {
    width: 100%;
    max-width: 590px;
    flex: 0 0 100%;
    padding: 0;
  }

  .helpmedicaldonation .feature-box {
    width: 100%;
    height: 205px;
    min-height: 205px;
  }

  .helpmedicaldonation .feature-box-move-bottom-top {
    padding: 25px 20px !important;
  }

  .helpmedicaldonation .feature-box-icon i {
    width: 44px;
    height: 44px;
    font-size: 39px !important;
    margin-bottom: 20px !important;
  }

  .helpmedicaldonation .feature-box-icon .line-icon-Inbox {
    font-size: 42px !important;
  }

  .helpmedicaldonation .feature-box-content span {
    font-size: 19px !important;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .helpmedicaldonation {
    padding: 45px 0 65px;
  }

  .helpmedicaldonation h5 {
    font-size: 27px;
  }

  .helpmedicaldonation>.container>p {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .helpmedicaldonation .row {
    gap: 18px;
  }

  .helpmedicaldonation .feature-box {
    height: 190px;
    min-height: 190px;
    border-radius: 6px;
  }

  .helpmedicaldonation .feature-box-icon i {
    font-size: 36px !important;
    margin-bottom: 17px !important;
  }

  .helpmedicaldonation .feature-box-content span {
    font-size: 18px !important;
  }
}


/* =========================================================
   FCRA / CHEQUE-BANK DRAFT DONATION SECTION
   Screenshot-matched CSS
   ========================================================= */

.helpmedicalfcradonation {
  position: relative;
  width: 100%;
  background: #f7f7f7;
  padding: 105px 0 120px;
  overflow: hidden;
}

.helpmedicalfcradonation .container {
  width: 100%;
  max-width: 1510px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}


/* =========================================================
   HEADING AREA
   ========================================================= */

.helpmedicalfcradonation .row.justify-content-center {
  display: flex;
  justify-content: center;
  margin: 0;
}

.helpmedicalfcradonation .margin-six-bottom {
  margin-bottom: 100px !important;
}

.helpmedicalfcradonation h5 {
  margin: 0 0 5px !important;
  padding: 0;
  font-family: Poppins, sans-serif;
  font-size: 2.3rem;
  line-height: 1.2;
  font-weight: 600 !important;
  letter-spacing: -.5px;
  color: #232323;
  text-align: center;
}

.helpmedicalfcradonation .d-block {
  display: block;
}

.helpmedicalfcradonation .margin-six-bottom>span {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: #858585;
  text-align: center;
}


/* =========================================================
   CARDS ROW
   ========================================================= */

.helpmedicalfcradonation .row.row-cols-12 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;

  margin-left: -20px;
  margin-right: -20px;
}

.helpmedicalfcradonation .row.row-cols-12>.col {
  width: calc(50% - 20px);
  max-width: none;
  flex: 0 0 calc(50% - 20px);

  padding-left: 20px;
  padding-right: 20px;

  margin-bottom: 0 !important;
}


/* =========================================================
   DONATION CARD
   ========================================================= */

.helpmedicalfcradonation .position-relative.bg-white {
  position: relative;

  width: 100%;

  background: #ffffff;

  padding: 3rem !important;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.055);

  border-radius: 0;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.helpmedicalfcradonation .position-relative.bg-white:hover {
  transform: translateY(-3px);

  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.09);
}


/* =========================================================
   "INDIAN CITIZENS" LABEL
   ========================================================= */

.helpmedicalfcradonation .position-relative .bg-dark-purple {
  position: absolute;

  top: -19px;
  right: 0;

  display: flex;
  align-items: center;

  height: 42px;

  padding: 0 25px !important;

  background: #302e42 !important;

  color: #ffffff !important;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px !important;
  line-height: 42px;
  font-weight: 600 !important;

  text-transform: uppercase;
  letter-spacing: 0;

  white-space: nowrap;
}

.helpmedicalfcradonation .top-minus-15px {
  top: -19px !important;
}

.helpmedicalfcradonation .right-0px {
  right: 0 !important;
}

.helpmedicalfcradonation .padding-5px-tb {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.helpmedicalfcradonation .padding-20px-lr {
  padding-left: 25px !important;
  padding-right: 25px !important;
}


/* =========================================================
   BANK INFORMATION
   ========================================================= */

.helpmedicalfcradonation .pmargin {
  margin: 0 0 27px !important;
  padding: 0;

  display: flex;
  align-items: center;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;

  color: #111111 !important;
  letter-spacing: 0;
}

.helpmedicalfcradonation .pmargin:last-child {
  margin-bottom: 0 !important;
}


/* =========================================================
   BULLET ICON
   ========================================================= */

.helpmedicalfcradonation .pmargin i {
  flex: 0 0 auto;

  width: 20px;
  height: 20px;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  margin-right: 14px !important;

  color: #111111 !important;

  font-size: 16px !important;
  line-height: 20px;

  font-style: normal;
}

.helpmedicalfcradonation .icon-feather-disc {
  position: relative;
}

.helpmedicalfcradonation .icon-feather-disc::before {
  font-size: 16px;
}


/* =========================================================
   REMOVE UNWANTED UTILITY SPACING
   ========================================================= */

.helpmedicalfcradonation .padding-3-rem-all {
  padding: 54px 52px !important;
}

.helpmedicalfcradonation .box-shadow-small {
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.055) !important;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

  .helpmedicalfcradonation {
    padding: 105px 0 120px;
  }

  .helpmedicalfcradonation .container {
    max-width: 1510px;
  }

  .helpmedicalfcradonation .pmargin {
    font-size: 20px;
    margin-bottom: 27px !important;
  }
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (min-width: 992px) and (max-width: 1399px) {

  .helpmedicalfcradonation {
    padding: 90px 0 100px;
  }

  .helpmedicalfcradonation .container {
    max-width: 1200px;
  }

  .helpmedicalfcradonation .margin-six-bottom {
    margin-bottom: 80px !important;
  }

  .helpmedicalfcradonation .row.row-cols-12 {
    margin-left: -15px;
    margin-right: -15px;
  }

  .helpmedicalfcradonation .row.row-cols-12>.col {
    width: calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
    padding-left: 15px;
    padding-right: 15px;
  }

  .helpmedicalfcradonation .pmargin {
    font-size: 15px;
    margin-bottom: 12px !important;
  }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

  .helpmedicalfcradonation {
    padding: 75px 0 90px;
  }

  .helpmedicalfcradonation .container {
    max-width: 920px;
  }

  .helpmedicalfcradonation .margin-six-bottom {
    margin-bottom: 70px !important;
  }

  .helpmedicalfcradonation .margin-six-bottom>span {
    font-size: 18px;
  }

  .helpmedicalfcradonation .row.row-cols-12 {
    margin-left: -10px;
    margin-right: -10px;
  }

  .helpmedicalfcradonation .row.row-cols-12>.col {
    width: calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
    padding-left: 10px;
    padding-right: 10px;
  }

  .helpmedicalfcradonation .pmargin {
    font-size: 17px;
    margin-bottom: 24px !important;
  }

  .helpmedicalfcradonation .position-relative .bg-dark-purple {
    font-size: 14px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .helpmedicalfcradonation {
    padding: 65px 0 70px;
  }

  .helpmedicalfcradonation .container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .helpmedicalfcradonation .margin-six-bottom {
    margin-bottom: 60px !important;
  }

  .helpmedicalfcradonation .margin-six-bottom>span {
    font-size: 16px;
  }

  .helpmedicalfcradonation .row.row-cols-12 {
    display: flex;
    flex-direction: column;

    margin-left: 0;
    margin-right: 0;
  }

  .helpmedicalfcradonation .row.row-cols-12>.col {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;

    padding-left: 0;
    padding-right: 0;

    margin-bottom: 45px !important;
  }

  .helpmedicalfcradonation .row.row-cols-12>.col:last-child {
    margin-bottom: 0 !important;
  }

  .helpmedicalfcradonation .position-relative .bg-dark-purple {
    top: -17px;

    height: 38px;

    padding-left: 18px !important;
    padding-right: 18px !important;

    font-size: 13px !important;
    line-height: 38px;
  }

  .helpmedicalfcradonation .pmargin {
    font-size: 16px;
    line-height: 1.5;

    align-items: flex-start;

    margin-bottom: 22px !important;
  }

  .helpmedicalfcradonation .pmargin i {
    margin-top: 3px;
    margin-right: 11px !important;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .helpmedicalfcradonation {
    padding: 55px 0 60px;
  }

  .helpmedicalfcradonation .margin-six-bottom>span {
    font-size: 15px;
  }

  .helpmedicalfcradonation .margin-six-bottom {
    margin-bottom: 50px !important;
  }

  .helpmedicalfcradonation .pmargin {
    font-size: 15px;
    line-height: 1.55;
  }

  .helpmedicalfcradonation .position-relative .bg-dark-purple {
    font-size: 12px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* =========================================================
   HELP MEDICAL FOUNDATION
   FCRA ABOUT SECTION
   EDITORIAL INTERACTIVE LAYOUT
   ========================================================= */

.helpmedicalfcraabout {
  position: relative;

  width: 100%;

  padding: 95px 0;

  overflow: hidden;

  background: #ffffff;
}


/* =========================================================
   BACKGROUND SHAPE
   ========================================================= */

.helpmedicalfcraabout__background-shape {
  position: absolute;

  right: -120px;
  top: -50px;

  width: 420px;

  opacity: .055;

  pointer-events: none;

  transition:
    transform 1s ease;
}


.helpmedicalfcraabout__background-shape img {
  width: 100%;

  display: block;
}


.helpmedicalfcraabout:hover .helpmedicalfcraabout__background-shape {
  transform:
    translateY(20px) rotate(4deg);
}


/* =========================================================
   CONTAINER
   ========================================================= */

.helpmedicalfcraabout__container {
  width: min(1200px, calc(100% - 40px));

  margin: 0 auto;

  position: relative;

  z-index: 2;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.helpmedicalfcraabout__layout {
  display: grid;

  grid-template-columns:
    .95fr 1.05fr;

  align-items: center;

  gap: 85px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.helpmedicalfcraabout__content {
  position: relative;

  padding: 15px 0;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.helpmedicalfcraabout__eyebrow {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 14px;
}


.helpmedicalfcraabout__eyebrow-line {
  width: 35px;
  height: 2px;

  background: #e23b3b;

  transition:
    width .4s ease;
}


.helpmedicalfcraabout__content:hover .helpmedicalfcraabout__eyebrow-line {
  width: 65px;
}


.helpmedicalfcraabout__eyebrow-text {
  color: #e23b3b;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* =========================================================
   TITLE
   ========================================================= */

.helpmedicalfcraabout__title {
  margin: 0 0 28px;

  color: #202a33;

  font-size: 64px;

  line-height: .95;

  font-weight: 700;

  letter-spacing: -2px;

  transition:
    transform .4s ease;
}


.helpmedicalfcraabout__content:hover .helpmedicalfcraabout__title {
  transform:
    translateX(6px);
}


/* =========================================================
   TEXT AREA
   ========================================================= */

.helpmedicalfcraabout__text-wrap {
  position: relative;

  padding-left: 24px;
}


.helpmedicalfcraabout__vertical-line {
  position: absolute;

  left: 0;
  top: 5px;
  bottom: 5px;

  width: 2px;

  background: #e23b3b;

  transform:
    scaleY(.35);

  transform-origin: top;

  transition:
    transform .5s ease;
}


.helpmedicalfcraabout__content:hover .helpmedicalfcraabout__vertical-line {
  transform:
    scaleY(1);
}


.helpmedicalfcraabout__text {
  max-width: 560px;

  margin: 0;

  color: #697278;

  font-size: 13px;

  line-height: 1.95;
}


/* =========================================================
   BOTTOM STATEMENT
   ========================================================= */

.helpmedicalfcraabout__bottom-line {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 28px;

  color: #202a33;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 1px;
}


.helpmedicalfcraabout__bottom-line span {
  width: 35px;
  height: 1px;

  background: #d5dadd;

  transition:
    width .4s ease;
}


.helpmedicalfcraabout__content:hover .helpmedicalfcraabout__bottom-line span {
  width: 70px;
}


.helpmedicalfcraabout__bottom-line strong {
  font-weight: 700;
}


/* =========================================================
   VISUAL AREA
   ========================================================= */

.helpmedicalfcraabout__visual {
  position: relative;

  min-height: 570px;
}


/* =========================================================
   IMAGE FRAME
   ========================================================= */

.helpmedicalfcraabout__image-frame {
  position: absolute;

  right: 0;
  top: 0;

  width: 88%;
  height: 520px;

  padding: 10px;

  background: #ffffff;

  box-shadow:
    0 20px 50px rgba(0, 0, 0, .10);

  transition:
    transform .55s cubic-bezier(.2, .8, .2, 1),
    box-shadow .55s ease;
}


.helpmedicalfcraabout__image {
  width: 100%;
  height: 100%;

  overflow: hidden;
}


.helpmedicalfcraabout__image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 1s cubic-bezier(.2, .8, .2, 1);
}


/* =========================================================
   IMAGE INTERACTION
   ========================================================= */

.helpmedicalfcraabout__visual:hover .helpmedicalfcraabout__image-frame {
  transform:
    translate(-8px, -8px);

  box-shadow:
    0 28px 60px rgba(0, 0, 0, .15);
}


.helpmedicalfcraabout__visual:hover .helpmedicalfcraabout__image img {
  transform:
    scale(1.06);
}


/* =========================================================
   RED IMAGE ACCENT
   ========================================================= */

.helpmedicalfcraabout__image-accent {
  position: absolute;

  left: 0;
  top: 65px;

  width: 5px;
  height: 150px;

  background: #e23b3b;

  transition:
    height .5s ease,
    top .5s ease;
}


.helpmedicalfcraabout__visual:hover .helpmedicalfcraabout__image-accent {
  top: 35px;

  height: 210px;
}


/* =========================================================
   IMAGE CORNER
   ========================================================= */

.helpmedicalfcraabout__image-corner {
  position: absolute;

  right: -10px;
  bottom: 20px;

  width: 85px;
  height: 85px;
}


.helpmedicalfcraabout__image-corner span:first-child {
  position: absolute;

  right: 0;
  bottom: 0;

  width: 55px;
  height: 2px;

  background: #e23b3b;

  transition:
    width .4s ease;
}


.helpmedicalfcraabout__image-corner span:last-child {
  position: absolute;

  right: 0;
  bottom: 0;

  width: 2px;
  height: 55px;

  background: #e23b3b;

  transition:
    height .4s ease;
}


.helpmedicalfcraabout__visual:hover .helpmedicalfcraabout__image-corner span:first-child {
  width: 85px;
}


.helpmedicalfcraabout__visual:hover .helpmedicalfcraabout__image-corner span:last-child {
  height: 85px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .helpmedicalfcraabout {
    padding: 75px 0;
  }


  .helpmedicalfcraabout__layout {
    gap: 50px;
  }


  .helpmedicalfcraabout__title {
    font-size: 52px;
  }


  .helpmedicalfcraabout__visual {
    min-height: 480px;
  }


  .helpmedicalfcraabout__image-frame {
    height: 440px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 750px) {

  .helpmedicalfcraabout {
    padding: 60px 0;
  }


  .helpmedicalfcraabout__container {
    width: calc(100% - 30px);
  }


  .helpmedicalfcraabout__layout {
    display: flex;

    flex-direction: column;

    gap: 45px;
  }


  .helpmedicalfcraabout__content {
    width: 100%;

    padding: 0;
  }


  .helpmedicalfcraabout__title {
    font-size: 48px;

    letter-spacing: -1px;
  }


  .helpmedicalfcraabout__text-wrap {
    padding-left: 18px;
  }


  .helpmedicalfcraabout__text {
    font-size: 13px;

    line-height: 1.85;
  }


  .helpmedicalfcraabout__visual {
    width: 100%;

    min-height: 390px;
  }


  .helpmedicalfcraabout__image-frame {
    width: calc(100% - 25px);

    height: 360px;

    right: 0;
  }


  .helpmedicalfcraabout__image-accent {
    left: 0;

    top: 45px;

    height: 100px;
  }


  .helpmedicalfcraabout__image-corner {
    right: 0;

    bottom: 5px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .helpmedicalfcraabout {
    padding: 50px 0;
  }


  .helpmedicalfcraabout__container {
    width: calc(100% - 24px);
  }


  .helpmedicalfcraabout__eyebrow-text {
    font-size: 11px;
  }


  .helpmedicalfcraabout__title {
    font-size: 40px;

    margin-bottom: 22px;
  }


  .helpmedicalfcraabout__text {
    font-size: 12px;

    line-height: 1.85;
  }


  .helpmedicalfcraabout__visual {
    min-height: 320px;
  }


  .helpmedicalfcraabout__image-frame {
    width: calc(100% - 18px);

    height: 295px;

    padding: 7px;
  }


  .helpmedicalfcraabout__image-accent {
    width: 4px;

    top: 35px;

    height: 80px;
  }


  .helpmedicalfcraabout__image-corner {
    width: 55px;
    height: 55px;

    right: -2px;
  }


  .helpmedicalfcraabout__image-corner span:first-child {
    width: 40px;
  }


  .helpmedicalfcraabout__image-corner span:last-child {
    height: 40px;
  }


  .helpmedicalfcraabout__background-shape {
    width: 220px;

    right: -80px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

  .helpmedicalfcraabout__title {
    font-size: 36px;
  }


  .helpmedicalfcraabout__text {
    font-size: 11.5px;
  }


  .helpmedicalfcraabout__visual {
    min-height: 285px;
  }


  .helpmedicalfcraabout__image-frame {
    height: 260px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .helpmedicalfcraabout__background-shape,
  .helpmedicalfcraabout__image-frame,
  .helpmedicalfcraabout__image img,
  .helpmedicalfcraabout__image-accent,
  .helpmedicalfcraabout__image-corner span,
  .helpmedicalfcraabout__title,
  .helpmedicalfcraabout__vertical-line {
    transition: none;
  }

}

/* =========================================================
   HELP MEDICAL FOUNDATION
   FOUNDER'S STORY
   INTERACTIVE STORY LAYOUT
   ========================================================= */

.helpmedicalfoundationourstory {
  position: relative;

  width: 100%;

  padding: 90px 0;

  overflow: hidden;

  background: #f7f8f8;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.helpmedicalfoundationourstory__background {
  position: absolute;

  right: -80px;
  top: 0;

  width: 360px;
  height: 100%;

  pointer-events: none;

  opacity: .45;
}


.helpmedicalfoundationourstory__background span {
  position: absolute;

  display: block;

  border: 1px solid rgba(226, 59, 59, .08);

  border-radius: 50%;
}


.helpmedicalfoundationourstory__background span:nth-child(1) {
  width: 260px;
  height: 260px;

  right: 0;
  top: 50px;
}


.helpmedicalfoundationourstory__background span:nth-child(2) {
  width: 180px;
  height: 180px;

  right: 40px;
  top: 90px;
}


.helpmedicalfoundationourstory__background span:nth-child(3) {
  width: 100px;
  height: 100px;

  right: 80px;
  top: 130px;
}


.helpmedicalfoundationourstory:hover .helpmedicalfoundationourstory__background span:nth-child(1) {
  transform: scale(1.08);
}


.helpmedicalfoundationourstory:hover .helpmedicalfoundationourstory__background span:nth-child(2) {
  transform: scale(1.12);
}


.helpmedicalfoundationourstory:hover .helpmedicalfoundationourstory__background span:nth-child(3) {
  transform: scale(1.18);
}


.helpmedicalfoundationourstory__background span {
  transition:
    transform .8s ease;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.helpmedicalfoundationourstory__container {
  width: min(1200px, calc(100% - 40px));

  margin: 0 auto;

  position: relative;

  z-index: 2;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.helpmedicalfoundationourstory__layout {
  display: grid;

  grid-template-columns:
    1.15fr .85fr;

  gap: 80px;

  align-items: start;
}


/* =========================================================
   CONTENT
   ========================================================= */

.helpmedicalfoundationourstory__content {
  position: relative;
}


/* =========================================================
   HEADING
   ========================================================= */

.helpmedicalfoundationourstory__heading {
  display: flex;

  align-items: center;

  gap: 13px;

  margin-bottom: 35px;
}


.helpmedicalfoundationourstory__line {
  display: block;

  width: 40px;
  height: 2px;

  background: #e23b3b;

  transition:
    width .4s ease;
}


.helpmedicalfoundationourstory:hover .helpmedicalfoundationourstory__line {
  width: 75px;
}


.helpmedicalfoundationourstory__tag {
  color: #e23b3b;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* =========================================================
   STORY
   ========================================================= */

.helpmedicalfoundationourstory__story {
  position: relative;

  padding-left: 30px;
}


/* =========================================================
   STORY LINE
   ========================================================= */

.helpmedicalfoundationourstory__story-line {
  position: absolute;

  left: 4px;

  top: 5px;
  bottom: 5px;

  width: 2px;

  background:
    linear-gradient(to bottom,
      #e23b3b,
      #dfe3e5);

  transform-origin: top;

  transform:
    scaleY(.4);

  transition:
    transform .8s ease;
}


.helpmedicalfoundationourstory:hover .helpmedicalfoundationourstory__story-line {
  transform:
    scaleY(1);
}


/* =========================================================
   STORY ITEM
   ========================================================= */

.helpmedicalfoundationourstory__story-item {
  position: relative;
}


/* =========================================================
   STORY DOT
   ========================================================= */

.helpmedicalfoundationourstory__story-dot {
  position: absolute;

  left: -31px;
  top: 3px;

  width: 12px;
  height: 12px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #f7f8f8;

  border: 2px solid #e23b3b;

  border-radius: 50%;

  transition:
    transform .35s ease,
    background .35s ease;
}


.helpmedicalfoundationourstory__story-dot span {
  width: 4px;
  height: 4px;

  display: block;

  background: #e23b3b;

  border-radius: 50%;
}


.helpmedicalfoundationourstory__story-item:hover .helpmedicalfoundationourstory__story-dot {
  transform: scale(1.35);

  background: #e23b3b;
}


.helpmedicalfoundationourstory__story-item:hover .helpmedicalfoundationourstory__story-dot span {
  background: #ffffff;
}


/* =========================================================
   STORY TEXT
   ========================================================= */

.helpmedicalfoundationourstory__story-text {
  padding: 0;
}


.helpmedicalfoundationourstory__story-text p {
  margin: 0;

  color: #697278;

  font-size: 13px;

  line-height: 1.95;
}


/* =========================================================
   PARAGRAPH SPACING
   ========================================================= */

.helpmedicalfoundationourstory__story-text p br {
  content: "";

  display: block;

  margin-bottom: 22px;
}


/* =========================================================
   VISUAL
   ========================================================= */

.helpmedicalfoundationourstory__visual {
  position: sticky;

  top: 100px;

  min-height: 570px;
}


/* =========================================================
   IMAGE WRAPPER
   ========================================================= */

.helpmedicalfoundationourstory__image-wrapper {
  position: absolute;

  right: 0;
  top: 0;

  width: 90%;
  height: 520px;

  padding: 9px;

  background: #ffffff;

  box-shadow:
    0 20px 45px rgba(0, 0, 0, .10);

  transition:
    transform .6s cubic-bezier(.2, .8, .2, 1),
    box-shadow .5s ease;
}


.helpmedicalfoundationourstory__visual:hover .helpmedicalfoundationourstory__image-wrapper {
  transform:
    rotate(1.5deg) translateY(-8px);

  box-shadow:
    0 28px 55px rgba(0, 0, 0, .15);
}


/* =========================================================
   IMAGE
   ========================================================= */

.helpmedicalfoundationourstory__image {
  width: 100%;
  height: 100%;

  overflow: hidden;
}


.helpmedicalfoundationourstory__image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform .9s cubic-bezier(.2, .8, .2, 1);
}


.helpmedicalfoundationourstory__visual:hover .helpmedicalfoundationourstory__image img {
  transform: scale(1.06);
}


/* =========================================================
   IMAGE ACCENT
   ========================================================= */

.helpmedicalfoundationourstory__image-accent {
  position: absolute;

  left: 3%;
  top: 70px;

  width: 3.7px;
  height: 140px;

  background: #e23b3b;

  transition:
    height .5s ease,
    top .5s ease;
}


.helpmedicalfoundationourstory__visual:hover .helpmedicalfoundationourstory__image-accent {
  top: 40px;

  height: 200px;
}


/* =========================================================
   IMAGE NUMBER
   ========================================================= */

.helpmedicalfoundationourstory__image-number {
  position: absolute;

  right: -5px;
  bottom: 35px;

  width: 58px;
  height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #ffffff;

  background: #e23b3b;

  font-size: 12px;

  font-weight: 700;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, .12);

  transition:
    transform .4s ease;
}


.helpmedicalfoundationourstory__visual:hover .helpmedicalfoundationourstory__image-number {
  transform:
    translate(-8px, -8px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .helpmedicalfoundationourstory {
    padding: 75px 0;
  }


  .helpmedicalfoundationourstory__layout {
    gap: 50px;
  }


  .helpmedicalfoundationourstory__visual {
    min-height: 500px;
  }


  .helpmedicalfoundationourstory__image-wrapper {
    height: 450px;
  }


  .helpmedicalfoundationourstory__story-text p {
    font-size: 12px;

    line-height: 1.85;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 750px) {

  .helpmedicalfoundationourstory {
    padding: 60px 0;
  }


  .helpmedicalfoundationourstory__container {
    width: calc(100% - 30px);
  }


  .helpmedicalfoundationourstory__layout {
    display: flex;

    flex-direction: column;

    gap: 45px;
  }


  .helpmedicalfoundationourstory__content {
    width: 100%;
  }


  .helpmedicalfoundationourstory__heading {
    margin-bottom: 28px;
  }


  .helpmedicalfoundationourstory__story {
    padding-left: 25px;
  }


  .helpmedicalfoundationourstory__story-line {
    left: 3px;
  }


  .helpmedicalfoundationourstory__story-dot {
    left: -31px;
  }


  .helpmedicalfoundationourstory__story-text p {
    font-size: 13px;

    line-height: 1.85;
  }


  .helpmedicalfoundationourstory__story-text p br {
    margin-bottom: 18px;
  }


  .helpmedicalfoundationourstory__visual {
    position: relative;

    top: auto;

    width: 100%;

    min-height: 390px;
  }


  .helpmedicalfoundationourstory__image-wrapper {
    width: calc(100% - 20px);

    height: 360px;

    right: 0;

    transform: rotate(1deg);
  }


  .helpmedicalfoundationourstory__image-accent {
    left: 0;

    top: 50px;

    height: 100px;
  }


  .helpmedicalfoundationourstory__image-number {
    right: 0;

    bottom: 10px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .helpmedicalfoundationourstory {
    padding: 50px 0;
  }


  .helpmedicalfoundationourstory__container {
    width: calc(100% - 24px);
  }


  .helpmedicalfoundationourstory__tag {
    font-size: 11px;

    letter-spacing: 1.2px;
  }


  .helpmedicalfoundationourstory__story {
    padding-left: 21px;
  }


  .helpmedicalfoundationourstory__story-line {
    left: 2px;
  }


  .helpmedicalfoundationourstory__story-dot {
    left: -27px;

    width: 11px;
    height: 11px;
  }


  .helpmedicalfoundationourstory__story-text p {
    font-size: 12px;

    line-height: 1.85;
  }


  .helpmedicalfoundationourstory__story-text p br {
    margin-bottom: 16px;
  }


  .helpmedicalfoundationourstory__visual {
    min-height: 320px;
  }


  .helpmedicalfoundationourstory__image-wrapper {
    width: calc(100% - 15px);

    height: 295px;

    padding: 7px;
  }


  .helpmedicalfoundationourstory__image-accent {
    width: 4px;

    top: 35px;

    height: 80px;
  }


  .helpmedicalfoundationourstory__image-number {
    width: 48px;
    height: 48px;

    font-size: 11px;

    bottom: 5px;
  }


  .helpmedicalfoundationourstory__background {
    right: -130px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

  .helpmedicalfoundationourstory__story-text p {
    font-size: 11.5px;

    line-height: 1.8;
  }


  .helpmedicalfoundationourstory__visual {
    min-height: 285px;
  }


  .helpmedicalfoundationourstory__image-wrapper {
    height: 260px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .helpmedicalfoundationourstory__background span,
  .helpmedicalfoundationourstory__line,
  .helpmedicalfoundationourstory__story-line,
  .helpmedicalfoundationourstory__story-dot,
  .helpmedicalfoundationourstory__image-wrapper,
  .helpmedicalfoundationourstory__image img,
  .helpmedicalfoundationourstory__image-accent,
  .helpmedicalfoundationourstory__image-number {
    transition: none;
  }

}

/* =========================================================
   HELP MEDICAL FOUNDATION
   VISION & MISSION
   INTERACTIVE CHAPTER LAYOUT
   ========================================================= */

.helpmedicalfoundationvissionmission {
  position: relative;

  width: 100%;

  padding: 90px 0;

  overflow: hidden;

  background: #f7f8f8;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.helpmedicalfoundationvissionmission__background {
  position: absolute;

  inset: 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  opacity: .035;

  pointer-events: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.helpmedicalfoundationvissionmission__container {
  position: relative;

  z-index: 2;

  width: min(1200px, calc(100% - 40px));

  margin: 0 auto;
}


/* =========================================================
   CHAPTER
   ========================================================= */

.helpmedicalfoundationvissionmission__chapter {
  position: relative;

  display: grid;

  grid-template-columns:
    42% 58%;

  align-items: center;

  min-height: 520px;

  margin-bottom: 90px;
}


.helpmedicalfoundationvissionmission__chapter:last-child {
  margin-bottom: 0;
}


/* =========================================================
   REVERSE CHAPTER
   ========================================================= */

.helpmedicalfoundationvissionmission__chapter--reverse {
  grid-template-columns:
    58% 42%;
}


.helpmedicalfoundationvissionmission__chapter--reverse .helpmedicalfoundationvissionmission__visual {
  order: 2;
}


.helpmedicalfoundationvissionmission__chapter--reverse .helpmedicalfoundationvissionmission__content {
  order: 1;

  padding-left: 0;

  padding-right: 70px;
}


/* =========================================================
   VISUAL
   ========================================================= */

.helpmedicalfoundationvissionmission__visual {
  position: relative;

  height: 480px;

  padding: 20px;
}


/* =========================================================
   IMAGE
   ========================================================= */

.helpmedicalfoundationvissionmission__image {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  background: #dfe3e5;

  box-shadow:
    0 20px 45px rgba(0, 0, 0, .10);

  transition:
    transform .6s cubic-bezier(.2, .8, .2, 1),
    box-shadow .5s ease;
}


.helpmedicalfoundationvissionmission__image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform .9s cubic-bezier(.2, .8, .2, 1);
}


.helpmedicalfoundationvissionmission__visual:hover .helpmedicalfoundationvissionmission__image {
  transform:
    translateY(-8px);

  box-shadow:
    0 28px 55px rgba(0, 0, 0, .15);
}


.helpmedicalfoundationvissionmission__visual:hover .helpmedicalfoundationvissionmission__image img {
  transform:
    scale(1.07);
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.helpmedicalfoundationvissionmission__image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(to top,
      rgba(20, 30, 36, .18),
      transparent 55%);

  transition:
    background .4s ease;
}


.helpmedicalfoundationvissionmission__visual:hover .helpmedicalfoundationvissionmission__image::after {
  background:
    linear-gradient(to top,
      rgba(20, 30, 36, .28),
      transparent 65%);
}


/* =========================================================
   IMAGE NUMBER
   ========================================================= */

.helpmedicalfoundationvissionmission__image-number {
  position: absolute;

  left: 0;
  bottom: 25px;

  z-index: 5;

  width: 55px;
  height: 55px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #ffffff;

  background: #e23b3b;

  font-size: 12px;

  font-weight: 700;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, .12);

  transition:
    transform .4s ease;
}


.helpmedicalfoundationvissionmission__visual:hover .helpmedicalfoundationvissionmission__image-number {
  transform:
    translate(8px, -8px);
}


/* =========================================================
   IMAGE LINE
   ========================================================= */

.helpmedicalfoundationvissionmission__image-line {
  position: absolute;

  right: 0;
  top: 45px;

  width: 4px;
  height: 110px;

  background: #e23b3b;

  transition:
    height .5s ease,
    top .5s ease;
}


.helpmedicalfoundationvissionmission__visual:hover .helpmedicalfoundationvissionmission__image-line {
  top: 20px;

  height: 175px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.helpmedicalfoundationvissionmission__content {
  padding-left: 70px;

  padding-right: 0;
}


/* =========================================================
   HEADING
   ========================================================= */

.helpmedicalfoundationvissionmission__heading {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 12px;
}


.helpmedicalfoundationvissionmission__heading-line {
  width: 38px;
  height: 2px;

  background: #e23b3b;

  transition:
    width .4s ease;
}


.helpmedicalfoundationvissionmission__content:hover .helpmedicalfoundationvissionmission__heading-line {
  width: 75px;
}


.helpmedicalfoundationvissionmission__label {
  color: #e23b3b;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* =========================================================
   TITLE
   ========================================================= */

.helpmedicalfoundationvissionmission__title {
  margin: 0 0 28px;

  color: #202a33;

  font-size: 55px;

  line-height: 1;

  font-weight: 700;

  letter-spacing: -1.5px;

  transition:
    transform .4s ease;
}


.helpmedicalfoundationvissionmission__content:hover .helpmedicalfoundationvissionmission__title {
  transform:
    translateX(5px);
}


/* =========================================================
   TEXT
   ========================================================= */

.helpmedicalfoundationvissionmission__text {
  position: relative;

  padding-left: 22px;
}


.helpmedicalfoundationvissionmission__text::before {
  content: "";

  position: absolute;

  left: 0;
  top: 4px;
  bottom: 4px;

  width: 2px;

  background:
    linear-gradient(to bottom,
      #e23b3b,
      #dfe3e5);

  transform:
    scaleY(.35);

  transform-origin: top;

  transition:
    transform .6s ease;
}


.helpmedicalfoundationvissionmission__content:hover .helpmedicalfoundationvissionmission__text::before {
  transform:
    scaleY(1);
}


.helpmedicalfoundationvissionmission__text p {
  margin: 0;

  color: #687278;

  font-size: 13px;

  line-height: 1.9;
}


/* =========================================================
   TEXT PARAGRAPH SPACING
   ========================================================= */

.helpmedicalfoundationvissionmission__text p br {
  content: "";

  display: block;

  margin-bottom: 22px;
}


/* =========================================================
   CHAPTER DIVIDER
   ========================================================= */

.helpmedicalfoundationvissionmission__chapter:first-child::after {
  content: "";

  position: absolute;

  left: 42%;
  right: 0;
  bottom: -45px;

  height: 1px;

  background: #dfe3e5;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .helpmedicalfoundationvissionmission {
    padding: 70px 0;
  }


  .helpmedicalfoundationvissionmission__chapter {
    grid-template-columns:
      45% 55%;

    min-height: 470px;

    margin-bottom: 75px;
  }


  .helpmedicalfoundationvissionmission__chapter--reverse {
    grid-template-columns:
      55% 45%;
  }


  .helpmedicalfoundationvissionmission__content {
    padding-left: 45px;
  }


  .helpmedicalfoundationvissionmission__chapter--reverse .helpmedicalfoundationvissionmission__content {
    padding-right: 45px;
  }


  .helpmedicalfoundationvissionmission__visual {
    height: 430px;

    padding: 15px;
  }


  .helpmedicalfoundationvissionmission__title {
    font-size: 45px;
  }


  .helpmedicalfoundationvissionmission__text p {
    font-size: 12px;

    line-height: 1.85;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 750px) {

  .helpmedicalfoundationvissionmission {
    padding: 60px 0;
  }


  .helpmedicalfoundationvissionmission__container {
    width: calc(100% - 30px);
  }


  .helpmedicalfoundationvissionmission__chapter,
  .helpmedicalfoundationvissionmission__chapter--reverse {

    display: flex;

    flex-direction: column;

    width: 100%;

    min-height: 0;

    margin-bottom: 65px;
  }


  /* IMAGE FIRST */

  .helpmedicalfoundationvissionmission__visual,
  .helpmedicalfoundationvissionmission__chapter--reverse .helpmedicalfoundationvissionmission__visual {

    order: 1;

    width: 100%;

    height: 360px;

    padding: 10px;
  }


  /* CONTENT SECOND */

  .helpmedicalfoundationvissionmission__content,
  .helpmedicalfoundationvissionmission__chapter--reverse .helpmedicalfoundationvissionmission__content {

    order: 2;

    width: 100%;

    padding: 35px 0 0;
  }


  .helpmedicalfoundationvissionmission__title {
    font-size: 45px;

    margin-bottom: 24px;
  }


  .helpmedicalfoundationvissionmission__text {
    padding-left: 18px;
  }


  .helpmedicalfoundationvissionmission__text p {
    font-size: 13px;

    line-height: 1.85;
  }


  .helpmedicalfoundationvissionmission__text p br {
    margin-bottom: 18px;
  }


  /* REMOVE DESKTOP DIVIDER */

  .helpmedicalfoundationvissionmission__chapter:first-child::after {
    left: 0;
    right: 0;

    bottom: -32px;
  }


  .helpmedicalfoundationvissionmission__image-number {
    left: 0;

    bottom: 15px;
  }


  .helpmedicalfoundationvissionmission__image-line {
    right: 0;

    top: 35px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .helpmedicalfoundationvissionmission {
    padding: 50px 0;
  }


  .helpmedicalfoundationvissionmission__container {
    width: calc(100% - 24px);
  }


  .helpmedicalfoundationvissionmission__visual {
    height: 300px;

    padding: 7px;
  }


  .helpmedicalfoundationvissionmission__content,
  .helpmedicalfoundationvissionmission__chapter--reverse .helpmedicalfoundationvissionmission__content {

    padding-top: 28px;
  }


  .helpmedicalfoundationvissionmission__label {
    font-size: 11px;
  }


  .helpmedicalfoundationvissionmission__title {
    font-size: 39px;

    margin-bottom: 20px;
  }


  .helpmedicalfoundationvissionmission__text {
    padding-left: 16px;
  }


  .helpmedicalfoundationvissionmission__text p {
    font-size: 12px;

    line-height: 1.85;
  }


  .helpmedicalfoundationvissionmission__image-number {
    width: 48px;
    height: 48px;

    font-size: 11px;

    bottom: 8px;
  }


  .helpmedicalfoundationvissionmission__image-line {
    width: 3px;

    height: 75px;

    top: 25px;
  }


  .helpmedicalfoundationvissionmission__chapter {
    margin-bottom: 55px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

  .helpmedicalfoundationvissionmission__visual {
    height: 270px;
  }


  .helpmedicalfoundationvissionmission__title {
    font-size: 35px;
  }


  .helpmedicalfoundationvissionmission__text p {
    font-size: 11.5px;

    line-height: 1.8;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .helpmedicalfoundationvissionmission__image,
  .helpmedicalfoundationvissionmission__image img,
  .helpmedicalfoundationvissionmission__image-number,
  .helpmedicalfoundationvissionmission__image-line,
  .helpmedicalfoundationvissionmission__heading-line,
  .helpmedicalfoundationvissionmission__title,
  .helpmedicalfoundationvissionmission__text::before {
    transition: none;
  }

}


.helpmedicalfoundationteam {
  width: 100%;
  padding: 90px 0;
  background: #f6f7f7;
  overflow: hidden;
}

.helpmedicalfoundationteam__container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


/* =========================================================
   INTRO
   ========================================================= */

.helpmedicalfoundationteam__intro {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.helpmedicalfoundationteam__intro-line {
  width: 38px;
  height: 2px;
  background: #e23b3b;
  transition: width .4s ease;
}

.helpmedicalfoundationteam:hover .helpmedicalfoundationteam__intro-line {
  width: 70px;
}

.helpmedicalfoundationteam__intro-text {
  color: #e23b3b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.helpmedicalfoundationteam__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}


/* =========================================================
   FEATURED MEMBER
   ========================================================= */

.helpmedicalfoundationteam__featured {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #202a33;
}

.helpmedicalfoundationteam__featured-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.helpmedicalfoundationteam__featured-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2, .8, .2, 1);
}

.helpmedicalfoundationteam__featured:hover .helpmedicalfoundationteam__featured-image img {
  transform: scale(1.06);
}

.helpmedicalfoundationteam__featured-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(20, 30, 36, .05) 25%,
      rgba(20, 30, 36, .15) 50%,
      rgba(20, 30, 36, .95) 100%);
}

.helpmedicalfoundationteam__featured-number {
  position: absolute;
  top: 22px;
  left: 22px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.helpmedicalfoundationteam__featured-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;

  padding: 30px;
}

.helpmedicalfoundationteam__featured-name {
  margin: 0;
  font-size: 23px;
  line-height: 1.25;
}

.helpmedicalfoundationteam__featured-name a {
  color: #ffffff;
  text-decoration: none;
}

.helpmedicalfoundationteam__featured-arrow {
  flex-shrink: 0;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #e23b3b;
  border-radius: 50%;

  transition:
    transform .35s ease,
    background .3s ease;
}

.helpmedicalfoundationteam__featured:hover .helpmedicalfoundationteam__featured-arrow {
  transform: translateX(6px);
}


/* =========================================================
   MEMBER LIST
   ========================================================= */

.helpmedicalfoundationteam__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #dfe2e3;
}


/* =========================================================
   MEMBER ITEM
   ========================================================= */

.helpmedicalfoundationteam__item {
  position: relative;

  min-height: 92px;

  display: grid;

  grid-template-columns: 35px 65px 1fr 40px;

  align-items: center;

  gap: 15px;

  padding: 12px 15px;

  color: #202a33;

  text-decoration: none;

  border-bottom: 1px solid #dfe2e3;

  overflow: hidden;

  transition:
    padding .4s ease,
    background .35s ease;
}

.helpmedicalfoundationteam__item::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 3px;

  background: #e23b3b;

  transform: scaleY(0);

  transform-origin: bottom;

  transition: transform .4s ease;
}

.helpmedicalfoundationteam__item:hover {
  padding-left: 22px;
  background: #ffffff;
}

.helpmedicalfoundationteam__item:hover::before {
  transform: scaleY(1);
}


/* =========================================================
   NUMBER
   ========================================================= */

.helpmedicalfoundationteam__item-number {
  color: #a0a8ac;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}


/* =========================================================
   SMALL IMAGE
   ========================================================= */

.helpmedicalfoundationteam__item-image {
  width: 65px;
  height: 65px;

  overflow: hidden;

  background: #e8eaeb;
}

.helpmedicalfoundationteam__item-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  filter: grayscale(25%);

  transition:
    transform .5s ease,
    filter .4s ease;
}

.helpmedicalfoundationteam__item:hover .helpmedicalfoundationteam__item-image img {
  transform: scale(1.1);
  filter: grayscale(0);
}


/* =========================================================
   NAME
   ========================================================= */

.helpmedicalfoundationteam__item-name {
  color: #202a33;

  font-size: 13px;

  line-height: 1.4;

  font-weight: 700;

  transition:
    transform .35s ease,
    color .3s ease;
}

.helpmedicalfoundationteam__item:hover .helpmedicalfoundationteam__item-name {
  transform: translateX(4px);
  color: #e23b3b;
}


/* =========================================================
   ARROW
   ========================================================= */

.helpmedicalfoundationteam__item-arrow {
  width: 34px;
  height: 34px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #202a33;

  border: 1px solid #d8dddf;

  border-radius: 50%;

  transition:
    color .3s ease,
    background .3s ease,
    border-color .3s ease,
    transform .35s ease;
}

.helpmedicalfoundationteam__item:hover .helpmedicalfoundationteam__item-arrow {
  color: #ffffff;
  background: #e23b3b;
  border-color: #e23b3b;
  transform: translateX(3px);
}

.helpmedicalfoundationteam__item-arrow i {
  font-size: 9px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .helpmedicalfoundationteam {
    padding: 70px 0;
  }

  .helpmedicalfoundationteam__layout {
    grid-template-columns: 45% 55%;
    gap: 20px;
  }

  .helpmedicalfoundationteam__featured {
    min-height: 560px;
  }

  .helpmedicalfoundationteam__item {
    grid-template-columns: 30px 58px 1fr 35px;
    gap: 10px;
    min-height: 82px;
  }

  .helpmedicalfoundationteam__item-image {
    width: 58px;
    height: 58px;
  }

  .helpmedicalfoundationteam__item-name {
    font-size: 11px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .helpmedicalfoundationteam {
    padding: 55px 0;
  }

  .helpmedicalfoundationteam__container {
    width: calc(100% - 30px);
  }

  .helpmedicalfoundationteam__layout {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .helpmedicalfoundationteam__featured {
    width: 100%;
    min-height: 440px;
  }

  .helpmedicalfoundationteam__featured-content {
    padding: 22px;
  }

  .helpmedicalfoundationteam__featured-name {
    font-size: 19px;
  }

  .helpmedicalfoundationteam__featured-arrow {
    width: 38px;
    height: 38px;
  }

  .helpmedicalfoundationteam__list {
    width: 100%;
  }

  .helpmedicalfoundationteam__item {
    min-height: 85px;

    grid-template-columns:
      28px 58px 1fr 35px;

    gap: 10px;

    padding: 10px;
  }

  .helpmedicalfoundationteam__item:hover {
    padding-left: 15px;
  }

  .helpmedicalfoundationteam__item-image {
    width: 58px;
    height: 58px;
  }

  .helpmedicalfoundationteam__item-name {
    font-size: 12px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 450px) {

  .helpmedicalfoundationteam__container {
    width: calc(100% - 24px);
  }

  .helpmedicalfoundationteam__featured {
    min-height: 390px;
  }

  .helpmedicalfoundationteam__featured-number {
    top: 16px;
    left: 16px;
  }

  .helpmedicalfoundationteam__featured-content {
    padding: 18px;
  }

  .helpmedicalfoundationteam__featured-name {
    font-size: 17px;
  }

  .helpmedicalfoundationteam__featured-arrow {
    width: 34px;
    height: 34px;
  }

  .helpmedicalfoundationteam__item {
    grid-template-columns:
      25px 52px 1fr 32px;

    gap: 8px;

    min-height: 75px;
  }

  .helpmedicalfoundationteam__item-image {
    width: 52px;
    height: 52px;
  }

  .helpmedicalfoundationteam__item-name {
    font-size: 11px;
  }

  .helpmedicalfoundationteam__item-arrow {
    width: 30px;
    height: 30px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

  .helpmedicalfoundationteam__featured {
    min-height: 350px;
  }

  .helpmedicalfoundationteam__featured-name {
    font-size: 15px;
  }

  .helpmedicalfoundationteam__item {
    grid-template-columns:
      20px 48px 1fr 30px;
  }

  .helpmedicalfoundationteam__item-image {
    width: 48px;
    height: 48px;
  }

  .helpmedicalfoundationteam__item-name {
    font-size: 10px;
  }

}

/* =========================================================
   INTERACTIVE FEATURED PROFILE
   ========================================================= */

.helpmedicalfoundationteam__featured-image {
  position: absolute;
  inset: 0;

  overflow: hidden;
}


.helpmedicalfoundationteam__featured-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  opacity: 1;

  transition:
    opacity .2s ease,
    transform .8s cubic-bezier(.2, .8, .2, 1);
}


/* =========================================================
   ACTIVE TEAM MEMBER
   ========================================================= */

.helpmedicalfoundationteam__item--active {
  background: #ffffff;

  padding-left: 22px;
}


.helpmedicalfoundationteam__item--active::before {
  transform: scaleY(1);
}


.helpmedicalfoundationteam__item--active .helpmedicalfoundationteam__item-name {
  color: #e23b3b;

  transform: translateX(4px);
}


.helpmedicalfoundationteam__item--active .helpmedicalfoundationteam__item-arrow {
  color: #ffffff;

  background: #e23b3b;

  border-color: #e23b3b;

  transform: translateX(3px);
}


.helpmedicalfoundationteam__item--active .helpmedicalfoundationteam__item-image img {
  filter: grayscale(0);

  transform: scale(1.08);
}


/* =========================================================
   FEATURED IMAGE CHANGE EFFECT
   ========================================================= */

.helpmedicalfoundationteam__featured:hover .helpmedicalfoundationteam__featured-image img {
  transform: scale(1.04);
}


/* =========================================================
   FEATURED NAME TRANSITION
   ========================================================= */

.helpmedicalfoundationteam__featured-name a {
  display: inline-block;

  transition:
    opacity .25s ease,
    transform .25s ease;
}

/* =========================================================
   HELP MEDICAL FOUNDATION
   LEGAL COMPLIANCE
   DASHBOARD STYLE
   ========================================================= */

.helpmedicalfoundationlegalcompliance {
  position: relative;

  width: 100%;

  padding: 90px 0;

  background: #f4f6f6;

  overflow: hidden;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.helpmedicalfoundationlegalcompliance__container {
  width: min(1150px, calc(100% - 40px));

  margin: 0 auto;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.helpmedicalfoundationlegalcompliance__layout {
  display: grid;

  grid-template-columns: 32% 68%;

  min-height: 560px;

  background: #ffffff;

  box-shadow:
    0 20px 55px rgba(0, 0, 0, .06);
}


/* =========================================================
   LEFT INTRO
   ========================================================= */

.helpmedicalfoundationlegalcompliance__intro {
  position: relative;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 45px;

  overflow: hidden;

  background: #202a33;
}


.helpmedicalfoundationlegalcompliance__intro::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -100px;
  top: -80px;

  border: 1px solid rgba(255, 255, 255, .12);

  border-radius: 50%;
}


.helpmedicalfoundationlegalcompliance__intro::after {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  right: -180px;
  top: -130px;

  border: 1px solid rgba(255, 255, 255, .07);

  border-radius: 50%;
}


/* =========================================================
   INTRO ICON
   ========================================================= */

.helpmedicalfoundationlegalcompliance__intro-icon {
  position: absolute;

  top: 45px;
  left: 45px;

  width: 55px;
  height: 55px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, .25);

  border-radius: 50%;

  transition:
    background .4s ease,
    transform .4s ease;
}


.helpmedicalfoundationlegalcompliance__intro:hover .helpmedicalfoundationlegalcompliance__intro-icon {
  background: #e23b3b;

  border-color: #e23b3b;

  transform:
    rotate(-8deg);
}


.helpmedicalfoundationlegalcompliance__intro-icon i {
  font-size: 21px;
}


/* =========================================================
   INTRO NUMBER
   ========================================================= */

.helpmedicalfoundationlegalcompliance__intro-number {
  position: absolute;

  top: 55px;
  right: 45px;

  color: rgba(255, 255, 255, .25);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;
}


/* =========================================================
   INTRO TITLE
   ========================================================= */

.helpmedicalfoundationlegalcompliance__intro-title {
  position: relative;

  z-index: 2;

  margin: 0 0 25px;

  color: #ffffff;

  font-size: 43px;

  line-height: 1.05;

  font-weight: 700;

  letter-spacing: -1px;
}


/* =========================================================
   INTRO LINE
   ========================================================= */

.helpmedicalfoundationlegalcompliance__intro-line {
  width: 45px;
  height: 2px;

  margin-bottom: 18px;

  background: #e23b3b;

  transition:
    width .5s ease;
}


.helpmedicalfoundationlegalcompliance__intro:hover .helpmedicalfoundationlegalcompliance__intro-line {
  width: 90px;
}


/* =========================================================
   INTRO TEXT
   ========================================================= */

.helpmedicalfoundationlegalcompliance__intro-text {
  position: relative;

  z-index: 2;

  color: rgba(255, 255, 255, .62);

  font-size: 12px;

  line-height: 1.7;
}


/* =========================================================
   DOCUMENT AREA
   ========================================================= */

.helpmedicalfoundationlegalcompliance__documents {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  padding: 25px;
}


/* =========================================================
   DOCUMENT
   ========================================================= */

.helpmedicalfoundationlegalcompliance__document {
  position: relative;

  display: grid;

  grid-template-columns:
    32px 48px 1fr;

  grid-template-rows:
    1fr 1fr;

  align-items: center;

  column-gap: 15px;

  min-height: 125px;

  padding: 18px;

  color: #202a33;

  text-decoration: none;

  border-bottom: 1px solid #e4e7e8;

  overflow: hidden;

  transition:
    background .35s ease,
    padding .4s ease;
}


/* =========================================================
   RED SLIDE BAR
   ========================================================= */

.helpmedicalfoundationlegalcompliance__document::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 3px;

  background: #e23b3b;

  transform:
    translateX(-4px);

  transition:
    transform .35s ease;
}


.helpmedicalfoundationlegalcompliance__document:hover {
  background: #f8f9f9;

  padding-left: 23px;
}


.helpmedicalfoundationlegalcompliance__document:hover::before {
  transform:
    translateX(0);
}


/* =========================================================
   NUMBER
   ========================================================= */

.helpmedicalfoundationlegalcompliance__document-number {
  grid-row: 1 / 3;

  color: #a1a9ad;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;

  transition:
    color .3s ease;
}


.helpmedicalfoundationlegalcompliance__document:hover .helpmedicalfoundationlegalcompliance__document-number {
  color: #e23b3b;
}


/* =========================================================
   PDF ICON
   ========================================================= */

.helpmedicalfoundationlegalcompliance__document-icon {
  grid-row: 1 / 3;

  width: 48px;
  height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #e23b3b;

  border: 1px solid #dfe3e5;

  transition:
    color .35s ease,
    background .35s ease,
    border-color .35s ease,
    transform .35s ease;
}


.helpmedicalfoundationlegalcompliance__document:hover .helpmedicalfoundationlegalcompliance__document-icon {
  color: #ffffff;

  background: #e23b3b;

  border-color: #e23b3b;

  transform:
    translateY(-3px);
}


.helpmedicalfoundationlegalcompliance__document-icon i {
  font-size: 19px;
}


/* =========================================================
   DOCUMENT NAME
   ========================================================= */

.helpmedicalfoundationlegalcompliance__document-name {
  align-self: end;

  color: #202a33;

  font-size: 13px;

  line-height: 1.4;

  font-weight: 700;

  transition:
    color .3s ease,
    transform .3s ease;
}


.helpmedicalfoundationlegalcompliance__document:hover .helpmedicalfoundationlegalcompliance__document-name {
  color: #e23b3b;

  transform:
    translateX(3px);
}


/* =========================================================
   DOWNLOAD ACTION
   ========================================================= */

.helpmedicalfoundationlegalcompliance__document-action {
  grid-column: 3;

  align-self: start;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 10px;

  color: #9ba3a7;

  font-size: 9px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: .8px;

  transition:
    color .3s ease,
    transform .35s ease;
}


.helpmedicalfoundationlegalcompliance__document-action i {
  font-size: 9px;

  transition:
    transform .35s ease;
}


.helpmedicalfoundationlegalcompliance__document:hover .helpmedicalfoundationlegalcompliance__document-action {
  color: #e23b3b;

  transform:
    translateX(3px);
}


.helpmedicalfoundationlegalcompliance__document:hover .helpmedicalfoundationlegalcompliance__document-action i {
  transform:
    translateX(4px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

  .helpmedicalfoundationlegalcompliance {
    padding: 70px 0;
  }


  .helpmedicalfoundationlegalcompliance__layout {
    grid-template-columns: 35% 65%;
  }


  .helpmedicalfoundationlegalcompliance__intro {
    padding: 35px;
  }


  .helpmedicalfoundationlegalcompliance__intro-icon {
    top: 35px;
    left: 35px;
  }


  .helpmedicalfoundationlegalcompliance__intro-number {
    top: 45px;
    right: 35px;
  }


  .helpmedicalfoundationlegalcompliance__intro-title {
    font-size: 36px;
  }


  .helpmedicalfoundationlegalcompliance__documents {
    padding: 18px;
  }


  .helpmedicalfoundationlegalcompliance__document {
    grid-template-columns:
      25px 42px 1fr;

    column-gap: 10px;

    padding: 14px;
  }


  .helpmedicalfoundationlegalcompliance__document-icon {
    width: 42px;
    height: 52px;
  }


  .helpmedicalfoundationlegalcompliance__document-name {
    font-size: 12px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .helpmedicalfoundationlegalcompliance {
    padding: 50px 0;
  }


  .helpmedicalfoundationlegalcompliance__container {
    width: calc(100% - 24px);
  }


  .helpmedicalfoundationlegalcompliance__layout {
    display: flex;

    flex-direction: column;
  }


  /* INTRO */

  .helpmedicalfoundationlegalcompliance__intro {
    min-height: 230px;

    padding: 30px;
  }


  .helpmedicalfoundationlegalcompliance__intro-icon {
    top: 25px;
    left: 30px;

    width: 48px;
    height: 48px;
  }


  .helpmedicalfoundationlegalcompliance__intro-number {
    top: 40px;
    right: 30px;
  }


  .helpmedicalfoundationlegalcompliance__intro-title {
    margin-top: 65px;

    margin-bottom: 18px;

    font-size: 34px;
  }


  .helpmedicalfoundationlegalcompliance__intro-line {
    margin-bottom: 12px;
  }


  /* DOCUMENTS */

  .helpmedicalfoundationlegalcompliance__documents {
    display: flex;

    flex-direction: column;

    padding: 10px;
  }


  .helpmedicalfoundationlegalcompliance__document {
    min-height: 95px;

    grid-template-columns:
      28px 45px 1fr;

    padding: 15px 10px;
  }


  .helpmedicalfoundationlegalcompliance__document:hover {
    padding-left: 15px;
  }


  .helpmedicalfoundationlegalcompliance__document-icon {
    width: 45px;
    height: 54px;
  }


  .helpmedicalfoundationlegalcompliance__document-name {
    font-size: 13px;
  }


  .helpmedicalfoundationlegalcompliance__document-action {
    font-size: 8px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .helpmedicalfoundationlegalcompliance__intro {
    min-height: 210px;

    padding: 25px;
  }


  .helpmedicalfoundationlegalcompliance__intro-icon {
    left: 25px;
    top: 22px;

    width: 44px;
    height: 44px;
  }


  .helpmedicalfoundationlegalcompliance__intro-number {
    right: 25px;
    top: 35px;
  }


  .helpmedicalfoundationlegalcompliance__intro-title {
    margin-top: 55px;

    font-size: 30px;
  }


  .helpmedicalfoundationlegalcompliance__documents {
    padding: 5px;
  }


  .helpmedicalfoundationlegalcompliance__document {
    grid-template-columns:
      24px 40px 1fr;

    min-height: 88px;

    column-gap: 9px;

    padding: 12px 7px;
  }


  .helpmedicalfoundationlegalcompliance__document-icon {
    width: 40px;
    height: 49px;
  }


  .helpmedicalfoundationlegalcompliance__document-name {
    font-size: 12px;
  }

}


/* =========================================================
   VERY SMALL
   ========================================================= */

@media (max-width: 360px) {

  .helpmedicalfoundationlegalcompliance__intro-title {
    font-size: 27px;
  }


  .helpmedicalfoundationlegalcompliance__document {
    grid-template-columns:
      22px 36px 1fr;
  }


  .helpmedicalfoundationlegalcompliance__document-icon {
    width: 36px;
    height: 45px;
  }


  .helpmedicalfoundationlegalcompliance__document-name {
    font-size: 11px;
  }


  .helpmedicalfoundationlegalcompliance__document-action {
    font-size: 7px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .helpmedicalfoundationlegalcompliance__intro-icon,
  .helpmedicalfoundationlegalcompliance__intro-line,
  .helpmedicalfoundationlegalcompliance__document,
  .helpmedicalfoundationlegalcompliance__document-icon,
  .helpmedicalfoundationlegalcompliance__document-name,
  .helpmedicalfoundationlegalcompliance__document-action {
    transition: none;
  }

}


.helpmedicalfoundationourinitiaves {
  width: 100%;
  overflow: hidden;
  background: #f5f7f7;
  padding: 70px 50px;
}

.helpmedicalfoundationourinitiaves__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


/* =========================================
   ITEM
   ========================================= */

.helpmedicalfoundationourinitiaves__item {
  position: relative;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid #e4e8e8;
  transition:
    box-shadow .4s ease,
    border-color .4s ease;
}

.helpmedicalfoundationourinitiaves__item:hover {
  border-color: #d5dada;
}

.helpmedicalfoundationourinitiaves__item.is-open {
  box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}


/* =========================================
   HEADING
   ========================================= */

.helpmedicalfoundationourinitiaves__heading {
  position: relative;

  width: 100%;
  min-height: 105px;

  display: grid;
  grid-template-columns: 80px 1fr 65px;

  align-items: center;

  padding: 20px 30px;

  border: 0;

  background: #fff;

  text-align: left;

  cursor: pointer;

  color: #202a33;
}


/* =========================================
   NUMBER
   ========================================= */

.helpmedicalfoundationourinitiaves__number {
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  background: #e23b3b;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  align-content: center;
  text-align: -webkit-center;
}


/* =========================================
   HEADING TEXT
   ========================================= */

.helpmedicalfoundationourinitiaves__heading-text {
  padding-right: 25px;

  font-size: 25px;

  line-height: 1.25;

  font-weight: 700;
}


/* =========================================
   ICON
   ========================================= */

.helpmedicalfoundationourinitiaves__icon {
  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #dfe3e3;

  border-radius: 50%;

  color: #202a33;

  transition:
    background .35s ease,
    color .35s ease,
    transform .4s ease;
}

.helpmedicalfoundationourinitiaves__icon i {
  font-size: 12px;
}


/* OPEN ICON */

.helpmedicalfoundationourinitiaves__item.is-open .helpmedicalfoundationourinitiaves__icon {
  background: #e23b3b;

  border-color: #e23b3b;

  color: #fff;

  transform: rotate(45deg);
}


/* =========================================
   BODY
   ========================================= */

.helpmedicalfoundationourinitiaves__body {
  display: grid;

  grid-template-columns: 43% 57%;

  max-height: 0;

  overflow: hidden;

  opacity: 0;

  transition:
    max-height .65s ease,
    opacity .35s ease;
}


/* OPEN */

.helpmedicalfoundationourinitiaves__item.is-open .helpmedicalfoundationourinitiaves__body {
  max-height: 900px;

  opacity: 1;
}


/* =========================================
   IMAGE
   ========================================= */

.helpmedicalfoundationourinitiaves__image {
  position: relative;

  min-height: 390px;

  overflow: hidden;

  background: #202a33;
}

.helpmedicalfoundationourinitiaves__image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform .8s ease;
}

.helpmedicalfoundationourinitiaves__item:hover .helpmedicalfoundationourinitiaves__image img {
  transform: scale(1.045);
}


/* IMAGE OVERLAY */

.helpmedicalfoundationourinitiaves__image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(20, 30, 35, .20),
      transparent);

  pointer-events: none;
}


/* =========================================
   CONTENT
   ========================================= */

.helpmedicalfoundationourinitiaves__content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 55px 60px;
}


/* =========================================
   LABEL
   ========================================= */

.helpmedicalfoundationourinitiaves__label {
  position: relative;

  display: inline-block;

  width: fit-content;

  margin-bottom: 20px;

  color: #e23b3b;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;
}

.helpmedicalfoundationourinitiaves__label::after {
  content: "";

  display: block;

  width: 35px;

  height: 2px;

  margin-top: 10px;

  background: #e23b3b;

  transition: width .4s ease;
}

.helpmedicalfoundationourinitiaves__item:hover .helpmedicalfoundationourinitiaves__label::after {
  width: 75px;
}


/* =========================================
   TEXT
   ========================================= */

.helpmedicalfoundationourinitiaves__content p {
  margin: 0;

  color: #687278;

  font-size: 13px;

  line-height: 1.9;
}


/* =========================================
   ACTIVE ITEM LEFT ACCENT
   ========================================= */

.helpmedicalfoundationourinitiaves__item.is-open::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 4px;

  background: #e23b3b;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

  .helpmedicalfoundationourinitiaves {
    padding: 60px 0;
  }

  .helpmedicalfoundationourinitiaves__heading {
    min-height: 90px;

    grid-template-columns: 60px 1fr 55px;

    padding: 18px 25px;
  }

  .helpmedicalfoundationourinitiaves__heading-text {
    font-size: 23px;
  }

  .helpmedicalfoundationourinitiaves__body {
    grid-template-columns: 45% 55%;
  }

  .helpmedicalfoundationourinitiaves__image {
    min-height: 350px;
  }

  .helpmedicalfoundationourinitiaves__content {
    padding: 40px;
  }

  .helpmedicalfoundationourinitiaves__content p {
    font-size: 12px;
    line-height: 1.8;
  }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

  .helpmedicalfoundationourinitiaves {
    padding: 40px 10px;
  }

  .helpmedicalfoundationourinitiaves__inner {
    width: calc(100% - 24px);
  }

  .helpmedicalfoundationourinitiaves__heading {
    min-height: 80px;

    grid-template-columns: 42px 1fr 45px;

    padding: 15px 18px;
  }

  .helpmedicalfoundationourinitiaves__number {
    font-size: 10px;
  }

  .helpmedicalfoundationourinitiaves__heading-text {
    padding-right: 10px;

    font-size: 19px;
  }

  .helpmedicalfoundationourinitiaves__icon {
    width: 36px;
    height: 36px;
  }

  .helpmedicalfoundationourinitiaves__body {
    display: flex;

    flex-direction: column;

    max-height: 0;
  }

  .helpmedicalfoundationourinitiaves__item.is-open .helpmedicalfoundationourinitiaves__body {
    max-height: 1200px;
  }

  .helpmedicalfoundationourinitiaves__image {
    width: 100%;

    min-height: 260px;

    height: 260px;
  }

  .helpmedicalfoundationourinitiaves__content {
    padding: 30px 22px;
  }

  .helpmedicalfoundationourinitiaves__content p {
    font-size: 12px;

    line-height: 1.85;
  }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 420px) {

  .helpmedicalfoundationourinitiaves__inner {
    width: calc(100% - 16px);
  }

  .helpmedicalfoundationourinitiaves__heading {
    grid-template-columns: 35px 1fr 40px;

    padding: 14px;
    text-align: -webkit-center;
  }

  .helpmedicalfoundationourinitiaves__heading-text {
    font-size: 15px;
    text-align: left;
    padding-left: 11px;
  }

  .helpmedicalfoundationourinitiaves__icon {
    width: 32px;
    height: 32px;
  }

  .helpmedicalfoundationourinitiaves__image {
    height: 230px;
    min-height: 230px;
  }

  .helpmedicalfoundationourinitiaves__content {
    padding: 25px 18px;
  }

  .helpmedicalfoundationourinitiaves__content p {
    font-size: 11px;
    line-height: 1.8;
  }

}

.helpmedicalfoundationcontact {
  background: #f7f8f8;
  padding: 0 0 90px;
}


/* ================================
   TOP
   ================================ */

.helpmedicalfoundationcontact__top {
  display: flex;
  align-items: flex-end;
  gap: 25px;
  margin-bottom: 22.7px;
  overflow: hidden;
}

.helpmedicalfoundationcontact__label {
  display: block;
  margin-bottom: 3px;
  color: #e23b3b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.helpmedicalfoundationcontact__top h3 {
  margin: 0;
  color: #202a33;
  font-size: 30px;
  line-height: 1.2;
  font-family: Poppins, sans-serif;
  font-weight: 600;
}

.helpmedicalfoundationcontact__line {
  flex: 1;
  height: 1px;
  margin-bottom: 5px;
  background: #dfe3e3;
}

.helpmedicalfoundationcontact__top .subtitle {
  display: flex;
  place-items: center;
  gap: 20px;
}


/* ================================
   CONTACT ITEMS
   ================================ */

.helpmedicalfoundationcontact .google-map-two__bottom-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 0;
}


.helpmedicalfoundationcontact__item {
  display: flex;
  align-items: flex-start;

  min-height: 145px;

  padding: 25px;

  background: #ffffff;

  border: 1px solid #e2e5e5;

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}


.helpmedicalfoundationcontact__item:hover {
  transform: translateY(-4px);

  border-color: #d3d8d8;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, .06);
}


/* ICON */

.helpmedicalfoundationcontact__item .icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f3eeee;

  color: #e23b3b;

  transition:
    background .25s ease,
    color .25s ease;
}


.helpmedicalfoundationcontact__item:hover .icon {
  background: #e23b3b;
  color: #ffffff;
}


/* CONTENT */

.helpmedicalfoundationcontact__item .content {
  min-width: 0;
}

.helpmedicalfoundationcontact__item-label {
  display: block;
  color: #222;
  font-size: 14px;
  font-weight: 900 !important;
  letter-spacing: 1px;
  line-height: 18px;
}


.helpmedicalfoundationcontact__item .content p {
  margin: 0 0 4px;
  color: #687278 !important;
  font-size: 8px;
  line-height: 1.65;
}


.helpmedicalfoundationcontact__item .content a {
  color: #92999c !important;
  transition: color .2s ease;
}


.helpmedicalfoundationcontact__item .content a:hover {
  color: #e23b3b;
}


/* ================================
   FORM
   ================================ */

.helpmedicalfoundationcontact .contact-page-form {
  padding: 50px 0 0;
}


.helpmedicalfoundationcontact__form-title {
  margin-bottom: 35px;

  padding-bottom: 20px;

  border-bottom: 1px solid #dfe3e3;
}


.helpmedicalfoundationcontact__form-title .section-title {
  margin-bottom: 0;
}


/* ================================
   INPUTS
   ================================ */

.helpmedicalfoundationcontact__input {
  position: relative;

  margin-bottom: 20px;

  border: 1px solid #dfe3e3;

  background: #ffffff;

  transition:
    border-color .25s ease,
    box-shadow .25s ease;
}


.helpmedicalfoundationcontact__input::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: #e23b3b;

  transition: width .3s ease;
}


.helpmedicalfoundationcontact__input:focus-within {
  border-color: #cdd3d3;

  box-shadow:
    0 5px 15px rgba(0, 0, 0, .03);
}


.helpmedicalfoundationcontact__input:focus-within::after {
  width: 100%;
}


.helpmedicalfoundationcontact__input input,
.helpmedicalfoundationcontact__input textarea {
  width: 100%;

  border: 0 !important;

  outline: none !important;

  background: transparent !important;

  box-shadow: none !important;

  color: #202a33;
}


.helpmedicalfoundationcontact__input input {
  height: 65px;

  padding: 0 20px !important;
}


.helpmedicalfoundationcontact__input textarea {
  min-height: 170px;

  padding: 20px !important;

  resize: vertical;
}


/* ================================
   BUTTON
   ================================ */

.helpmedicalfoundationcontact__button {
  display: inline-flex;

  align-items: center;

  gap: 15px;

  border: 0;

  cursor: pointer;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}


.helpmedicalfoundationcontact__button span {
  transition: transform .25s ease;
}


.helpmedicalfoundationcontact__button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 8px 18px rgba(0, 0, 0, .10);
}


.helpmedicalfoundationcontact__button:hover span {
  transform: translateX(4px);
}


/* ================================
   TABLET
   ================================ */

@media (max-width: 900px) {

  .helpmedicalfoundationcontact {
    padding: 60px 0 75px;
  }

  .helpmedicalfoundationcontact .google-map-two__bottom-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .helpmedicalfoundationcontact__item:last-child {
    grid-column: 1 / -1;
  }

}


/* ================================
   MOBILE
   ================================ */

@media (max-width: 650px) {

  .helpmedicalfoundationcontact {
    padding: 25px 10px 60px;
  }

  .helpmedicalfoundationcontact .three_div_contact {
    padding: 30px 0 0px;
  }

  .helpmedicalfoundationcontact__top {
    display: block;
    margin-bottom: 25px;
  }

  .helpmedicalfoundationcontact__line {
    margin-top: 18px;
  }

  .helpmedicalfoundationcontact__top h3 {
    font-size: 25px;
  }

  .helpmedicalfoundationcontact .google-map-two__bottom-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .helpmedicalfoundationcontact__item {
    min-height: 115px;
    padding: 20px;
    width: -webkit-fill-available;
  }

  .helpmedicalfoundationcontact .contact-page-form {
    padding-top: 55px;
  }

  .helpmedicalfoundationcontact__form-title {
    margin-bottom: 25px;
  }

}


/* ================================
   SMALL MOBILE
   ================================ */

@media (max-width: 420px) {

  .helpmedicalfoundationcontact__item {
    gap: 13px;
    padding: 17px;
    width: -webkit-fill-available;
  }

  .helpmedicalfoundationcontact__item .icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .helpmedicalfoundationcontact__item .content p {
    font-size: 11px;
  }

  .helpmedicalfoundationcontact__input input {
    height: 60px;
  }

  .helpmedicalfoundationcontact__button {
    width: 100%;
    justify-content: center;
  }

}