/*--------------------------------------------------------------
>>> 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: #7f345e;
  --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: 18px;
    line-height: 16px;
    color:#7f345e !important;
    font-weight: 600;
    text-transform: uppercase;
    top: 16px;
    margin-bottom: 20px;
}

.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: 50px;
  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;
  border: 2px;
}

.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/logo-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 165px 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: 99;
  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: 7px 7px 7px; */
  padding-left: 0;
  z-index: 1;
}
.main-menu__logo img{
  /* width: 110px; */
  width: 80px;
}



.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: 30px 0;
}

.main-menu__join-us {
  position: relative;
  display: flex;
  align-items: center;
}

.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: 40px;
  padding-bottom: 40px; */
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 70px;
}

.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: 500;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  
}



.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:#7f345e !important;
  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: #413d3d;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  /* width: 300px; */
  background-color: white;
  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: black;
  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 rgb(44 41 41 / 10%);
}

.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: black;
  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: black;
  -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: black;
  -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;
}

.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;
  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;
  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%;
  border-radius: 50%;
}

.about-one__img-2 {
  position: absolute;
  left: -38px;
  bottom: -45px;
  z-index: 1;
}

.about-one__img-2 img {
  width: auto;
  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{
  margin-bottom: 15px;
  font-weight: 500;
} 

.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: 0px 0 94px;
  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;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; */
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.34); 
  padding: 20px 12px 20px 12px;
  border-radius: 8px;
}

.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;
  font-size: 42px;
}

.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: 38px;
  font-weight: 700;
  line-height: 60px !important;
  font-family: var(--wishon-font-two) !important;
}

.counter-one__letter {
  position: relative;
  font-size: 38px;
  font-weight: 700;
  line-height: 60px !important;
  font-family: var(--wishon-font-two) !important;
  color: #7f345e !important;
  top: 7px;
  left: -4px;
}

.counter-one__text {
  font-size: 18px;
  margin-top: 5px;
  font-weight: 500;
}

.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 120px;
  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: 28px;
}

.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__heart {
  position: absolute;
  bottom: -120px;
  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 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 p {
  font-size: 14px;
  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;
  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;
  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: 100px 0 100px;
  overflow: hidden;
  z-index: 1;
}

.testimonial_two {
  position: relative;
  display: block;
  /* background-color: var(--wishon-extra); */
  padding: 40px 0 40px;
  overflow: hidden;
  z-index: 1;
}

.margin{
  margin-bottom: 75PX;
}
.testimonial-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  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__shape-2 {
  content: "";
  position: absolute;
  top: -117px;
  left: -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-color: #f3b42d;
  /* 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%;
}

.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;
}

.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: 90px 0 10px; */
  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: 110px;
  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: white;
}
a:hover{
  color:#f3b42d ;
}

.footer-widget__about-btn::after {
  background-color:#f3b42d;
}

.footer-widget__links {
  position: relative;
  display: block;
  margin-left: 125px;
}

.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: #f3b42d;
}

.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;
  color: white;
}

.footer-widget__links-list li+li {
  margin-top: 6px;
}

.footer-widget__links-list li a {
  font-size: 15px;
  line-height: 25px;
  color: white;
  -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: white;
  -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;
}

.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;
  color: white;
}

.footer-widget__contact-list li .text p a {
color: white;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-list li .text p a:hover {
  color: var(--wishon-primary);
  /* color: white; */
}

.footer-widget__contact-text {
  font-size: 15px;
  line-height: 30px;
  color: #898989;
  margin-top: 12px;
}

.site-footer__bottom {
  position: relative;
  display: block;
  margin-top: 93px;
}

.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: white;
}

.site-footer__bottom-text a {
  color: white;
  -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: 10px;
}

.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: #7f345e !important;
  -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;
}

.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__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;
  z-index: 1;
}

.faq-one__right .section-title {
  margin-bottom: 35px;
}

.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-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%;
  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);
}

.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;
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.about-three__left {
  position: relative;
  display: block;
  margin-right: 70px;
}

.about-three__left .section-title {
  margin-bottom: 29px;
}

.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
--------------------------------------------------------------*/
.team-page {
  position: relative;
  display: block;
  padding: 100px 0px 40px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Google Map Two
--------------------------------------------------------------*/
.google-map-two {
  position: relative;
  display: block;
  padding: 120px 0 0;
}

.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;
  width: 64px;
  height: 64px;
  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 span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--wishon-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.google-map-two__bottom-list li .icon:hover 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: 18px;
  font-weight: 500;
  line-height: 30px;
  color: var(--wishon-white);
}

.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
--------------------------------------------------------------*/
.contact-page-form {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.contact-page-form .container {
  max-width: 800px;
}

.contact-page-form .section-title__tagline::before {
  left: 50%;
  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
--------------------------------------------------------------*/




.pt-60{
  padding-top: 60px;
}
/* about page */
.contact-style1 {
  background-color: #111330;
  padding: 50px 60px 45px 60px;
}
.contact-style1 .contact-title {
  color: white;
  border-bottom: 3px solid #FF741B;;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: -0.2em 0 30px 0;
}
.contact-style1 .contact-text {
  color: #E8E8E8;
  font-weight: 500;
  margin: 0 0 27px 0;
  max-width: 250px;
}
.contact-style1 .contact-info {
  color: #E8E8E8;
  font-weight: 500;
  margin-bottom: 17px;
  position: relative;
  padding: 0 0 0 45px;
}
.contact-style1 .contact-info:last-child {
  margin-bottom: 0;
}
.contact-style1 .contact-info {
  color: #E8E8E8;
  font-weight: 500;
  margin-bottom: 17px;
  position: relative;
  padding: 0 0 0 45px;
}
.contact-style1 .contact-info > img, .contact-style1 .contact-info > i {
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 0;
}
.contact-style1 .contact-info a {
  color: inherit;
}

.contact-style1 .contact-info:last-child {
  margin-bottom: 20px;
}




/* .mission-section {
  background-color: #f8f8f8;
} */
.mission-image {
  background-image: url(https://templates.envytheme.com/huruma/default/assets/img/mission.png);
  background-size: cover;
  background-position: center center;
  height: 100%;
}
.mission-tab {
  max-width: 620px;
  padding: 85px 0;
  margin-left: 50px !important;  
}
.mission-tab span {
  font-size: 18px;
  color: #7f345e !important;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
}
.mission-tab h2 {
  font-size: 36px;
  font-weight: 500;
  margin: 10px 0 0 0;
}
.mission-tab .mission-list-tab .tabs {
  border-bottom: 1px solid #eeeeee;
  padding-left: 0;
  margin-bottom: 20px;
  margin-top: 20px;
}
.mission-tab .mission-list-tab .tabs li.current {
  border-bottom: 2px solid #f3b42c !important;
}
.mission-tab .mission-list-tab .tabs li {
  padding: 0;
  margin-right: 30px;
  padding-bottom: 10px;
  display: inline-block;
}
.mission-tab .mission-list-tab .tabs li.current a {
  color: #7f345e !important;
}
.mission-tab .mission-list-tab .tabs li a {
  position: relative;
  font-size: 18px;
  font-weight: 500;
}
.team-one__sub-title{
  font-size: 18px;
  font-weight: 500;
}
.mission-tab .mission-list-tab .tabs li {
  padding: 0;
  margin-right: 30px;
  padding-bottom: 10px;
  display: inline-block;
}
/* .mission-image img {
  display: none;
} */
.mission-tab .mission-list-tab .tab_content .tabs_item .default-btn {
  margin-top: 12px;
}
.default-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  text-transform: capitalize;
  background-color: #f3b42c !important;
  transition: 0.5s;
  border-radius: 50px;
  font-weight: 400;
  font-size: 16px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.pb-100{
  padding-bottom: 100px;
}
.tab .tabs_item {
  display: none;
}
.tab .tabs_item:first-child {
  display: block;
  font-weight: 500;
}



/* loan */

.benefit-one {
  position: relative;
  background-image: url(../images/shapes/benefit-circle-1-1.png);
  background-repeat: no-repeat;
  background-position: top right;
  overflow: hidden;
  margin-top: 100px;
}

.benefit-one__shape-1 {
  width: 574px;
  height: 100%;
  background-color: var(--thm-base);
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: bottom center;
  clip-path: polygon(0 0, 100% 0, 64% 100%, 0% 100%);
}
/* .benefit-one__shape-1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e63a27;
  opacity: 0.9;
} */
/* .benefit-one__shape-2 {
  position: absolute;
  left: 604px;
  top: 0;
  width: 100px;
  height: 100%;
  background-color: #f2ede9;
  transform: skewX(-15deg);
  transform-origin: left top;
} */

.benefit-one .container {
  position: relative;
}
.pt-50{
  padding-top: 50px;
}
.mt-50{
  margin-top: 50px;
}
.benefit-one__image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background-image: linear-gradient(0deg, var(--thm-black) 0%, rgba(var(--thm-black-rgb), 0) 100%);
  z-index: 10;
}
.benefit-one__image img {
  position: relative;
  z-index: 9;
  max-width: 100%;
  height: auto;
}
.benefit-one__image__caption {
  position: absolute;
  z-index: 11;
  bottom: 0;
  left: 0;
  padding: 60px;
}
.benefit-one__image__title {
  font-size: 45px;
  color: var(--thm-base);
  font-weight: 600;
}
.benefit-one__image__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.66667em;
  color: #fff;
}







.benefit-one .container {
	position: relative;
}

.benefit-one__image {
	position: relative;
}

.benefit-one__image img {
	position: relative;
	z-index: 9;
	max-width: 100%;
}

.benefit-one__image::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	background-image: linear-gradient(0deg, var(--thm-black) 0%, rgba(var(--thm-black-rgb), 0) 100%);
	z-index: 10;
}

@media (min-width: 1200px) {
	.benefit-one__image {
		right: 70px;
	}
}

.benefit-one__image__caption {
	position: absolute;
	z-index: 11;
	bottom: 0;
	left: 0;
	padding: 60px;
}

.benefit-one__image__title {
	font-size: 45px;
	color: var(--thm-base);
	font-weight: 600;
}

.benefit-one__image__text {
	margin: 0;
	font-size: 18px;
	line-height: 1.66667em;
	color: #fff;
}

.benefit-one__text {
	margin: 0;
	margin-top: -10px;
	margin-bottom: 45px;
  font-weight: 500;
}

.benefit-one__box {
	position: relative;
	display: flex;
	align-items: flex-start;
}

.benefit-one__box__icon {
	position: relative;
	margin-right: 45px;
}

.benefit-one__box__icon::before {
	content: '';
	width: 61px;
	height: 61px;
	background-color: var(--thm-gray);
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 50%;
	transform: scale(1);
	transform-origin: right center;
	transition: transform 500ms ease;
}

.benefit-one__box__icon i {
	margin-left: 20px;
	margin-top: 20px;
	display: block;
	font-size: 60px;
	color: var(--thm-base);
  color: #f3b42c;
	position: relative;
	transition: all 500ms ease;
}

.benefit-one__box__title {
	margin: 0;
	font-size: 20px;
	line-height: 1.5em;
	color: #7f345e !important;
	font-weight: 700;
	margin-bottom: 11px;
}

.benefit-one__box__text {
	margin: 0;
  font-weight: 500;
}

.benefit-one__box:hover .benefit-one__box__icon::before {
	transform: scale(0.85);
}

.benefit-one__box + .benefit-one__box {
	margin-top: 20px;
}
@media (min-width: 992px) {
  .block-title__title {
      font-size: 45px;
  }
}
.block-title {
  margin-bottom: 50px;
}
.benefit-one__box__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.5em;
  color: black;
  font-weight: 700;
  margin-bottom: 11px;
}
.benefit-one__box__icon::before {
  content: '';
  width: 61px;
  height: 61px;
  background-color: #f2ede9;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: scale(1);
  transform-origin: right center;
  transition: transform 500ms ease;
}
.benefit-one__box__icon i {
  margin-left: 20px;
  margin-top: 20px;
  display: block;
  font-size: 60px;
  /* color: #e63a27; */
  position: relative;
  transition: all 500ms ease;
}
.icon-bank:before {
  content: "\e90c";
}
.benefit-one__box__icon {
  position: relative;
  margin-right: 45px;
}

.icon-payment:before {
  content: "\e90e";
}
.icon-smartphone-1:before {
  content: "\e90f";
}
.benefit-one__image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background-image: linear-gradient(0deg, #1c1c27 0%, rgba(28, 28, 39), 0) 100%;
  z-index: 10;
}
/* .benefit-one__shape-1 {
  width: 574px;
  height: 100%;
  background-color: #e63a27;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: bottom center;
  clip-path: polygon(0 0, 100% 0, 64% 100%, 0% 100%);
} */
.benefit-one {
  position: relative;
  background-image: url(https://thegenius.co/html/finlon_new1/assets/images/shapes/benefit-circle-1-1.png);
  background-repeat: no-repeat;
  background-position: top right;
  overflow: hidden;
}


.benefit-one__image__title {
  font-size: 45px;
  color: #e63a27;
  font-weight: 600;
}
.ptb-60{
  padding-top: 60px;
  padding-bottom: 60px;
}
.block-title__tagline {
  text-transform: uppercase;
  color: #e63a27;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  letter-spacing: .2em;
  position: relative;
  top: -1px;
}
.service-one {
  position: relative;
}
.pb-140 {
  padding-bottom: 140px;
}
.pt-120 {
  padding-top: 120px;
}
.block-title {
  margin-bottom: 50px;
}
.text-center {
  text-align: center !important;
}
@media (min-width: 992px) {
  .block-title__title {
      font-size: 45px;
  }
}
.service-card__image {
  position: relative;
  overflow: hidden;
}
.service-card__image > img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}
.service-card__image > a {
  display: flex
;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 28, 39), 0.4;
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}
.service-card__image > a::before, .service-card__image > a::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service-card__image > a::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.service-card__image > a::before, .service-card__image > a::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service-card__content {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  margin-top: -20px;
}
.service-card__content__inner {
  background-color: #fff;
  border-bottom: 2px solid #f2ede9;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  position: relative;
  margin-bottom: 45px;
  transition: all 500ms ease;
}
.service-card__icon {
  width: 92px;
  height: 92px;
  /* background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05); */
  font-size: 47px;
  display: flex
;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f3b42c;
  
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  top: -46px;
  margin-bottom: -46px;
  position: relative;
  z-index: 10;
  transition: all 500ms ease;
}
.icon-car:before {
  content: "\e90b";
}
.service-card__link {
  width: 40px;
  height: 40px;
  /* background-color:#f2ede9; */
  display: flex
;
  justify-content: center;
  align-items: center;
  color:#68686f;
  transition: all 500ms ease;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  bottom: -21px;
  margin-top: -21px;
  z-index: 11;
}
.service-card:hover .service-card__content__inner {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
  transform: translateY(-10px);
}

.service-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: black;
  /* margin-top: 25px; */
  margin-bottom: 5px;
}
/* .service-card:hover .service-card__link {
  color: #fff;
  background-color: #7f345e;
} */
.icon-diamond:before {
  content: "\e90a";
}
.icon-house:before {
  content: "\e90d";
}
@media (min-width: 992px) {
  .block-title__title {
      font-size: 45px;
  }
}

.block-title__title {
  margin: 0;
  
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2em;
  color: black;
  position: relative;
  bottom: -10px;
  margin-top: -3px;
}
.blog-area{
  margin-bottom: 100px;
}





.section-title span {
  color:#7f345e !important;
}

.section-title {
  /* text-align: center; */
  margin-bottom: 45px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 14px;
}
.section-title p {
  max-width: 570px;
  margin: auto;
}
.blog-item {
  transition: 0.5s;
  margin-bottom: 30px;
}

.blog-item .content {
  margin-top: 25px;
}
.blog-item .content span {
  font-size: 16px;
  color: #7f345e;
  font-family: "Rubik", sans-serif;
}
.blog-item .content h3 {
  font-size: 25px;
  line-height: 1.4;
  transition: 0.5s;
  margin-top: 12px;
  margin-bottom: 14px;
}
.blog-item .content .blog-btn {
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  color: #111111;
  display: inline-block;
  font-weight: 500;
  transition: 0.5s;
}
.content h3 a{
  color: #7f345e ;
  font-weight: 600;
}
.content h3 a:hover{
  color:white ;
}
.single-blog:hover span:before {
  background-color: #ffffff !important;
}
.single-blog h3 a:hover  {
  color: #ffffff;
}
.service-card__image > a {
  display: flex
;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 28, 39, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}
.service-card__image > a::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.service-card__image > a::before, .service-card__image > a::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}





@media (min-width: 992px) {
  .col-lg-6 {
      flex: 0 0 auto;
      width: 50%;
  }
}
.deserve-item h3 {
  font-size: 36px;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.4;
}
.ptb-100 {
  padding-top: 100px;
  
}
.deserve-item .deserve-content {
  position: relative;
  padding-left: 65px;
  margin-top: 30px;
}
.deserve-item .deserve-content::before {
  width: 1px;
  height: 140%;
  background-color: #e73c3e;
  content: "";
  z-index: -1;
  position: absolute;
  left: 20px;
  top: 0;
}
.deserve-item .deserve-content span {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background-color: #f9fafb;
  border: 1px solid #e73c3e;
  text-align: center;
  font-size: 24px;
  color: #e73c3e;
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 0;
}
.deserve-item .deserve-content h4 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}
.deserve-item .deserve-content p {
  margin-bottom: 0;
}
.deserve-item .deserve-btn {
  margin-top: 25px;
}
.default-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background-color: #e73c3e;
  color: #ffffff;
  transition: 0.5s;
  border-radius: 5px;
  opacity: 1;
  font-weight: 400;
  font-size: 16px;
  padding-left: 45px;
  padding-right: 45px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.default-btn span {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #111111;
  color: #ffffff;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 5px;
  opacity: 1;
}
.deserve-item .deserve-content {
  position: relative;
  padding-left: 65px;
  margin-top: 30px;
}


/* invest */
.choose-area {
  background-color: #f9fafb;
}
.pb-70 {
  padding-bottom: 70px;
}
.choose-title span {
  color: #e73c3e;
}
.choose-title h2 {
  font-size: 36px;
  margin-top: 10px;
  margin-bottom: 14px;
  font-weight: 500;
}
.choose-image {
  position: relative;
  margin-top: 30px;
}
.choose-image img{
  border-radius: 6px;
}
.choose-image .video-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 90px;
  background-color: #ffffff;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  left: 45px;
  right: 0;
  margin: auto;
  bottom: -40px;
  transform: translateY(-135%);
  text-align: center;
}
.choose-image .video-btn i {
  font-size: 55px;
  position: relative;
  top: 10px;
  left: 0;
  color: #e73c3e;
  transition: 0.5s;
}
.process-item.bg-top1 {
  margin-top: 30px;
}
.process-item {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
  margin-bottom: 30px;
}
.process-item::before {
  position: absolute;
  content: "";
  height: 65%;
  width: 90%;
  /* background-color: #fdebeb; */
  background-color:#fdd06c ;
  left: 0;
  right: 0;
  margin: auto;
  top: -110px;
  z-index: -1;
  border-radius: 50%;
  transition: 0.5s;
}
.process-item .icon {
  margin-bottom: 16px;
  position: relative;
}
.process-item .icon i {
  display: inline-block;
  height: 90px;
  width: 90px;
  line-height: 90px;
 background-color: white;
  /* background-color: #f3b42c; */
  text-align: center;
  font-size: 50px;
  color: #7f345e !important;
  /* color: white; */
  border: 2px solid #f3b42c;
  border-radius: 50px;
  transition: 0.5s;
}

.process-item.bg-top1 {
  margin-top: 30px;
}
.process-item:hover {
  transform: translateY(-10px);
}





/* tab */

.section-tab h2 {
  font-size: 36px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 14px;
}
.section-tab p {
  max-width: 570px;
  margin: auto;
}
.section-tab {
   text-align: center; 
  margin-bottom: 45px;
}
.tabs-list li {
  flex: 1 0 15.666667%;
  max-width: 20.666667%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  cursor: pointer;
  margin-right: 5px;
  margin-left: 5px;
}
.tabs-list {
  padding-left: 0;
  list-style-type: none;
  display: flex;
justify-content: center;
  margin-bottom: 45px;
}
.tabs-list li.current i {
  color: #e73c3e;
}

.tabs-list li i {
  font-size: 60px;
  line-height: 1;
  color: #111111;
  transition: 0.5s;
}
.services-list-tab .tabs_item .services-tab-content h3 {
  font-size: 25px;
  margin-bottom: 14px;
}
.services-list-tab .tabs_item .services-tab-content {
  margin-bottom: 20px;
}
.services-list-tab .tabs_item .services-tab-content p {
  margin-bottom: 0;
  font-weight: 500;
}
.services-list-tab .tabs_item .list {
  padding-left: 0;
  margin-bottom: 20px;
}

.services-list-tab .tabs_item .list h3 {
  font-size: 25px;
  margin-bottom: 20px;
  color: #7f345e !important;
}
.services-list-tab .tabs_item .list li {
  color: black;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  list-style-type: none;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}
.services-list-tab .tabs_item .list li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 0;
  top: 9px;
  border-radius: 30px;
  background-color:#f3b42c !important;
}
.services-list-tab .tabs_item .services-tab-content.left {
  margin-bottom: 0;
}
.services-list-tab .tabs_item .services-tab-content h3 {
  font-size: 25px;
  margin-bottom: 14px;
  color: #7f345e !important;
}
img {
  max-width: 100%;
  height: auto;
}
.tabs-list li.current span {
  color: white;
  background-color:#f3b42c ;
}
.tabs-list li span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  line-height: 46px;
  border: 2px solid #f3b42c !important;
  font-size: 18px;
  color: #111111;
  transition: 0.5s;
}
.pt-100{
  padding-top: 100px;
}




/* contact */
.contact-area .section-tab h2 {
  line-height: 1.4;
  margin-bottom: 0;
}
.section-tab h2 {
  font-size: 36px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 14px;
  color: black !important;
}
.contact-area .section-tab {
  max-width: 530px;
  margin: 0 auto 40px;
}
.section-tab{
  /* text-align: center; */
  margin-bottom: 45px;
}
.contact-form .title h3 {
  font-size: 25px;
  margin-bottom: 0;
}
.contact-form .title {
  margin-bottom: 30px;
}
.contact-form .form-group {
  margin-bottom: 15px;
}
.contact-form .form-group label {
  font-size: 16px;
  color: #606060;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
}
.contact-form .form-group .form-control {
  background-color: transparent;
  border: 1px solid #cfcfcf;
  box-shadow: unset;
  height: 60px;
  border-radius: 0;
  color: #111111;
  font-size: 16px;
}
.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.contact-form .form-group label {
  font-size: 16px;
  color: #606060;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
}
.contact-form .form-group .form-control {
  background-color: transparent;
  border: 1px solid #cfcfcf;
  box-shadow: unset;
  height: 60px;
  border-radius: 0;
  color: #111111;
  font-size: 16px;
}
.contact-form .form-group textarea {
  height: 150px !important;
}
textarea.form-control {
  min-height: calc(1.5em + .75rem + calc(1px * 2));
}
.contact-side-box .title h3 {
  font-size: 25px;
  margin-bottom: 0;
}
.contact-side-box .title {
  margin-bottom: 30px;
}
.contact-side-box .info-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.contact-side-box .info-box {
  position: relative;
  margin-bottom: 20px;
  padding-left: 50px;
}
.contact-side-box .info-box .list {
  padding-left: 0;
  margin-bottom: 0;
}
.contact-side-box .info-box .icon i {
  font-size: 30px;
  color: #7f345e !important;
}
.contact-side-box .info-box .list li {
  color: #606060;
  margin-bottom: 5px;
  list-style-type: none;
}
.contact-side-box .info-box .list li span {
  float: right;
}
.contact-side-box .info-box span {
  font-size: 16px;
  color: #606060;
}
.contact-side-box .info-box a {
  color: #606060;
  display: block;
}
.contact-form .form-group .form-select{
  background-color: transparent;
    border: 1px solid #cfcfcf;
    box-shadow: unset;
    height: 61px;
    border-radius: 0;
    color: #111111;
    font-size: 16px;
}
.contact-area{
  margin-bottom: 100px;
}
.contact-side-box .info-box .icon {
  position: absolute;
  left: 0;
  top: 0;
}
.site-footer {
  margin-top: 60px;
}

.active{
  color: #00224f;
}

.logo-box img{
  width: 55px;
}


/* blog-impact */
.block-title__tagline {
  text-transform: uppercase;
  color:#e63a27;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  letter-spacing: .2em;
  position: relative;
  top: -1px;
}
.block-title {
  margin-bottom: 50px;
}
.text-center {
  text-align: center !important;
}
.blog-card {
  position: relative;
  background-color: #fff;
}
.blog-card__image {
  position: relative;
  overflow: hidden;
}
.blog-card__date {
  width: 70px;
  height: 70px;
  background-color:#f3b42c ;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex
;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  color: #fff;
}
.blog-card__date span {
  display: block;
  letter-spacing: 0;
  font-size: 20px;
  margin-bottom: 1px;
}
.blog-card__image > img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}
.blog-card__image > a {
  display: flex
;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--thm-black-rgb), 0.4);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}

.blog-card__image > a::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.blog-card__content {
  background-color: #fff;
  position: relative;
  text-align: center;
  padding-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  border: 1px solid #f2ede9;
  border-top: 0;
  transition: all 500ms ease-out;
}
.blog-card__meta {
  display: flex;

  justify-content: center;
  align-items: center;
  margin-top: -6px;
}
.blog-card__meta a {
  display: flex;

  align-items: center;
  color: #68686f;
  font-size: 14px;
  transition: all 500ms ease;
  font-weight: 400;
}

.blog-card__meta a i {
  color: #e63a27;
  margin-right: 4px;
}
.blog-card__meta a:not(:last-child)::after {
  content: '/';
  margin-left: 9px;
  margin-right: 9px;
}
.blog-card__title {
  margin: 0;
  color: black;
  font-size: 24px;
  line-height: 1.5em;
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 11px;
}
.blog-card__title a {
  color: inherit;
  transition: all 500ms ease;
}
.blog-card__text {
  margin: 0;
  margin-bottom: 31px;
}
.blog-card__link {
  display: flex;
  width: 100%;
  color:black;
  background-color: #f2ede9;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.5s ease;
  padding: 13.75px 0;
  letter-spacing: .2em;
}
.blog-card:hover .blog-card__content {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
}
.blog-card:hover .blog-card__link {
  background-color: #7f345e !important;
  color: #fff;
}
.blog-card:hover .blog-card__image > a {
  opacity: 1;
  transform: translateY(0);
}
.blog-card__image > a {
  display: flex;

  width: 100%;
  height: 100%;
  background-color: rgba(28, 28, 39, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}





/* testi */
.testimonials-two {
  background-repeat: no-repeat;
  background-position: center left;
  background-image: url(https://thegenius.co/html/finlon_new1/assets/images/shapes/testi-bg-2-1.png);
  background-color:#f2ede9;
}
.pb-120 {
  padding-bottom: 120px;
}
.pt-120 {
  padding-top: 120px;
}
.testimonials-two .block-title {
  position: relative;
  z-index: 10;
}
.block-title {
  margin-bottom: 50px;
}
.block-title__tagline {
  text-transform: uppercase;
  color:#e63a27;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  letter-spacing: .2em;
  position: relative;
  top: -1px;
}
.block-title__tagline::before {
  margin-right: 6px;
}
.block-title__tagline::after, .block-title__tagline::before {
  position: relative;
  top: -1px;
  content: '||';
  font-size: 10px;
}
.block-title__title {
  font-size: 45px;
}

@media (min-width: 768px) {
.block-title__title {
  font-size: 40px;
}
}
.block-title__title {
  margin: 0;
  
  font-size: 35px;
  line-height: 1.2em;
  color: black;
  position: relative;
  font-weight: 500;
  bottom: -10px;
  margin-top: -3px;
}
@media (min-width: 1200px) {
  .testimonials-two__btn {
      display: flex;

  }
}
.testimonials-two__btn {
  position: relative;
  z-index: 10;
  align-items: center;
  display: none;
}
.testimonials-two__btn__left, .testimonials-two__btn__right {
  width: 51px;
  height: 51px;
  background-color: #fff !important;
  border-radius: 50%;
  display: flex;

  align-items: center;
  justify-content: center;
  font-size: 20px;
  color:black;
  opacity: 0.5;
  transition: all 0.5s ease;
  border: none;
  outline: none;
}
.testimonial-card {
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 50px;
  padding-bottom: 44px;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 0 0 0px red;
  transition: all 500ms ease;
}
@media (min-width: 768px) {
  .testimonial-card__info {
      flex-wrap: nowrap;
  }
}
.testimonial-card__info {
  display: flex;

  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 401px) {
  .testimonial-card__image {
      margin-bottom: 0;
      margin-right: 40px;
  }
}
@media (min-width: 321px) {
  .testimonial-card__image {
      margin-right: 30px;
  }
}
.testimonial-card__image {
  position: relative;
  width: 100px;
  margin-right: 0px;
  margin-bottom: 20px;
}

.testimonial-card__image::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px dashed #e63a27;
}

.testimonial-card__image img {
  position: relative;
}
.testimonial-card__stars {
  display: flex
;
  align-items: center;
  margin-bottom: 11px;
}

.testimonial-card__stars i {
  color:#e63a27;
  font-size: 12px;
}
.testimonial-card__name {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}
.testimonial-card__designation {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.testimonial-card__line {
  width: 100%;
  height: 42px;
  background-image: url(https://thegenius.co/html/finlon_new1/assets/images/shapes/testi-line-1-1.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  transition: 500ms ease;
  margin-top: 30px;
  margin-bottom: 20px;
}
.testimonial-card__text p {
  margin: 0;
}

.testimonials-two__carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}
/* .testimonials-two__carousel .owl-stage-outer {
  overflow: visible;
}
.testimonials-two__carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
} */
@media (min-width: 401px) {
  .testimonial-card__image {
      margin-bottom: 0;
      margin-right: 40px;
  }
}
@media (min-width: 321px) {
  .testimonial-card__image {
      margin-right: 30px;
  }
}
.owl-dots {
  display: none; 
 
}
.mt-70{
  margin-top: 70px;
}
.testimonial-card:hover .testimonial-card__line {
  background-image: url(https://thegenius.co/html/finlon_new1/assets/images/shapes/testi-line-1-1-h.png);
}


.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 0 0 0px red;
  transition: all 500ms ease;
}


a{
  text-decoration:none;
}
.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #e33c34;
  color: #fff;
  width: 50px;
  height: 50px;
  font-size:25px;
  border-radius: 50px;
  position: fixed;
  bottom: 30px;
  left: 25px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0#e33c34;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}



.swiper-slide{
  height: auto;
}

.main-slider .container{
  height: 720px;
}



.footer-logo img{
  width: 40%;
  border-radius: 4px;
  margin-bottom: 40px;
}



/* impact team */
.section {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
}
.team_construction {
  position: relative;
}
.team_construction .team_construction_inner {
  margin-bottom: 30px;
}
.team_construction .team_construction_inner > a {
  position: relative;
  display: block;
}.team_construction_inner > a > img {
  transition: all 0.4s ease;
}
.team_construction .team_construction_inner .team-box__info {
  padding: 28px 0 4px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  width: 80%;
  margin: -60px auto 0 auto;
}
.team_construction .team_construction_inner .team-box__info a {
  color: #042650;
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
.team_construction .team_construction_inner .team-box__info p {
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
}

.team_construction_inner > a > img {
  transition: all 0.4s ease;
}
.team_construction:hover .team_hover_content {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}
.team_hover_content {
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  transition-delay: 0.2s;
  width: 100%;
  padding: 40px 40px 60px 40px;
}
.speakers-social-lists-simple {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.speakers-social-lists-simple > li:not(:last-child) {
  margin-right: 5px;
}

.speakers-social-lists-simple > li {
  display: inline-block;
}
.speakers-social-lists-simple > li > a {
  color: #ffffff;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.team_construction:hover .team_construction_inner a::before {
  transform: scaleY(1);
}

.team_construction .team_construction_inner > a::before {
  content: "";
  position: absolute;
  background: #002A5C;
  opacity: .7;
  left: 0;
  top: 0;
  z-index: 1;
  transition: transform 0.5s ease-in;
  height: 100%;
  width: 100%;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}
.team_construction:hover .team_construction_inner .team-box__info {
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(0px);
}

.team_construction .team_construction_inner .team-box__info {
  padding: 28px 0 4px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin: -60px auto 0 auto;
}
.speaker-title-simple a{
  color: white;
}
.invest{
  color: white;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next:after, .swiper-rtl .swiper-button-next:after {
  content: 'next';
}
.swiper-button-next, .swiper-button-prev{
  color: white;
}
.odometer.odometer-auto-theme, .odometer.odometer-theme-default{
   color: #7f345e !important;
}

.list li span{
  font-weight: 600;
}

.mobile-nav__wrapper.mobile-nav__container .main-menu__list.current a{
  color: #7f345e !important;
}
.mobile-nav__content .main-menu__list.current>li>a{
  color: #7f345e !important;
}

.footer-bottom:hover{
  color: #f3b42d;
}
.help-block{
  color: red !important;
  padding-top: 5px;
}
.error{
  color: red !important;
  padding-top: 5px;
}
/* .with-errors{
  color: red !important;
  padding-top: 5px;
}

.has-error .form-control {
  border-color: #dc3545; 
}
.help-block.with-errors {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.has-error .form-control {
  border-color: red;
}
.help-block.with-errors {
  color: red;
  font-size: 0.9rem;
}
.contact-form .form-group .list-unstyled {
  color: red;
  margin-top: 5px;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
} */

/* contact-new */
.contact-info-item {
  margin-bottom: 30px;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.3411764706);
  text-align: center;
  position: relative;
  padding: 35px 30px 35px;
  transition: 0.5s all ease;
}
.contact-info-item img {
  position: absolute;
  top: 0;
  left: 0;
}
.contact-info-item i {
  color: #e93c05;
  display: inline-block;
  font-size: 40px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  /* font-weight: 400; */
}
.contact-info-item h3 {
  margin-bottom: 10px;
  font-size: 24px;
}
.contact-info-item a {
  display: block;
  color: black;
  font-size: 16px;
}
.contact-info-item ul li {
  list-style-type: none;
  display: block;
}
.contact-info-item:hover {
  transform: translate(0, -10px);
}

/* form-new */

.contact-one {
  background-image: url(../images/shapes/contact-shape.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.pb-120 {
  padding-bottom: 120px;
}
.pt-120 {
  padding-top: 120px;
}
@media (min-width: 992px) {
  .contact-one__content {
      margin-bottom: 0;
  }
}
.contact-one__content {
  margin-bottom: 60px;
}
.block-title {
  margin-bottom: 50px;
}
.block-title__tagline {
  text-transform: uppercase;
  color: var(--thm-base);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  letter-spacing: .2em;
  position: relative;
  top: -1px;
}
@media (min-width: 992px) {
  .block-title__title {
      font-size: 45px;
  }
}
@media (min-width: 768px) {
  .block-title__title {
      font-size: 40px;
  }
}
.block-title__title {
  margin: 0;
 
  font-size: 36px;
  line-height: 1.2em;
  color: var(--thm-black);
  position: relative;
  bottom: -10px;
  margin-top: -3px;
}
.contact-one__text {
  margin: 0;
  /* margin-top: -10px; */
  font-size: 17px;
}
.contact-one__social {
  display: flex
;
  align-items: center;
  margin-top: 30px;
}
.contact-one__social a {
  display: flex
;
  justify-content: center;
  align-items: center;
  width: 41px;
  height: 41px;
  background-color:#f2ede9;
  color: black;
  font-size: 12px;
  transition: all 500ms ease;
  border-radius: 50%;
}
.form-one input[type="text"], .form-one input[type="email"], .form-one input[type="number"], .form-one select, .form-one textarea {
  height: 60px;
  padding: 0 30px;
}
.form-control, .form-one input[type="text"], .form-one input[type="email"], .form-one input[type="number"], .form-one select, .form-one textarea {
  display: block;
  width: 100%;
  background-color: #f2ede9;
  color: black;
  font-size: 14px;
  font-weight: 400;
  border: none;
  outline: none;
  padding: 10px 30px;
}
.form-one textarea {
    height: 170px;
    padding-top: 20px;
}
.row-gutter-y-20 {
  --bs-gutter-y: 20px;
}
.row-gutter-x-20 {
  --bs-gutter-x: 20px;
}
.contact-one__social a + a {
  margin-left: 10px;
}

.contact-info-item {
  flex: 1; /* Equal width */
  margin-bottom: 30px;
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.34);
  text-align: center;
  position: relative;
  padding: 35px 30px;
  transition: 0.5s all ease;
  background: #fff; /* Optional, makes background clean */
  min-height: 250px; /* Optional: sets a minimum height */
}
.block-title-contact{
  margin-bottom: 35px !important;
}
.off-tym{
  font-size: 20px;
  font-weight: 500;
  color: #7f345e !important;
}
.benefit-one__box__icon img{
  margin-left: 20px;
  margin-top: 20px;
  display: block;
  font-size: 60px;
  /* color: #e63a27; */
  position: relative;
  transition: all 500ms ease;
}




/* success */
.single-blog {
  margin-bottom: 90px;
  transition: 0.5s;
}
.single-blog .content {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  background-color: #ffffff;
  padding: 30px;
  max-width: 380px;
  /* margin: -30px 5px; */
  position: relative;
  z-index: 1;
  border-radius: 5px;
  transition: 0.5s;
  position: relative;
  margin: -30px auto 0;
}
.single-blog .content::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: #7f345e;
  transition: 0.5s;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}
.single-blog .content i {
  position: absolute;
  top: -15px;
  right: 15px;
  width: 25px;
  height: 25px;
  background-color: #2f2c52;
  text-align: center;
  line-height: 25px;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.single-blog .content span {
  font-size: 15px;
  color: #7a7e9a;
  font-family: "Rubik", sans-serif;
  position: relative;
  padding-left: 15px;
  transition: 0.5s;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.single-blog .content i {
  position: absolute;
  top: -15px;
  right: 15px;
  width: 25px;
  height: 25px;
  background-color: #2f2c52;
  text-align: center;
  line-height: 25px;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.single-blog .content span {
  font-size: 15px;
  color: #7a7e9a;
  font-family: "Rubik", sans-serif;
  position: relative;
  padding-left: 15px;
  transition: 0.5s;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.single-blog .content span::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #7f345e;
  left: 0;
  top: 11px;
  border-radius: 30px;
  transition: 0.5s;
}
.single-blog .content h3 {
  font-size: 20px;
  margin: 5px 0 0 0;
  line-height: 30px;
  transition: 0.5s;
  position: relative;
  z-index: 1;
}
.single-blog .content .blog-btn {
  display: inline-block;
  font-size: 16px;
  color: #ff6015;
  font-family: "Rubik", sans-serif;
  margin-top: 5px;
  position: absolute;
  bottom: 16px;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}
.single-blog:hover .content {
  max-width: 100%;
}
.single-blog:hover .content::before {
  height: 100%;
}
.single-blog:hover h3 a {
  color: #ffffff;
}
.single-blog:hover span {
  transform: translateY(-16px);
  color: #ffffff;
}
.success-font{
  font-weight: 500;
}
.counter-one__icon i{
  transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.counter-one__single:hover .counter-one__icon i {
    transform: scale(.9);
}
/* .odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner{
  overflow: initial !important;
} */





.sotcox-section-heading {
    position: relative;
    z-index: 2;
}
.sotcox-section-heading .sub-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #266FF2;
    letter-spacing: 0.02em;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    line-height: 110%;
}
.title-area .sec-title {
    line-height: 1.1;
}
.title-area .sec-title {
    line-height: 1.2;
    margin-bottom: 22px;
}
.title-area .sec-title {
    line-height: 1.1;
}

.title-area .sec-title {
    line-height: 1.2;
    margin-bottom: 22px;
}
.sec-title {
    line-height: 1.2;
    margin-bottom: calc(var(--section-title-space) - 11px);
}
.overflow-hidden {
    overflow: hidden !important;
}
.story-box.inner-style {
    padding-bottom: 30px;
    margin-bottom: 0;
}

.story-box {
    position: relative;
    background: var(--smoke-color);
    border-radius: 30px;
    padding: 40px;
    margin: 0 30px 30px 0;
    z-index: 2;
}
.story-box.inner-style .story-box_icon {
    margin-bottom: 60px;
    display: inline-block;
}
.story-box.inner-style .box-title {
    line-height: 45px;
}
.story-box .box-title {
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 40px;
    line-height: 56px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: var(--title-color);
    margin-bottom: 15px;
    z-index: 2;
}
.box-title {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    margin-top: -0.32em;
}
.story-box_text {
    margin-bottom: 50px;
}
.title-area {
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.title-area {
    margin-bottom: calc(var(--section-title-space) - 11px);
    position: relative;
    z-index: 2;
}
.sub-title {
    display: block;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.02em;
    color: var(--theme-color);
    font-family: var(--style-font);
    position: relative;
    margin-top: -0.2em;
    margin-bottom: 5px;
}
.img-box2 {
    position: relative;
    left: -40px;
}
.img-box2 .img1 img {
    border-radius: 24px;
}
.img-box2 .img2 {
    position: absolute;
    bottom: -11.4%;
    right: 4.5%;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.img-box2 .img2 img {
    width: 100%;
    border-radius: 24px;
}
.img-box2 .img2 .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.play-btn {
    display: inline-block;
    position: relative;
    z-index: 1;
}
.play-btn:before{
  -webkit-animation-duration: var(--ripple-ani-duration);
    animation-duration: var(--ripple-ani-duration);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple;
}
.play-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white-color);
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.img-box2 .img2 .play-btn i {
    background-color: var(--theme-color);
    color: var(--white-color);
}

.play-btn>i {
    display: inline-block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    background: white;
    color: black;
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.play-btn:after{
      -webkit-animation-duration: var(--ripple-ani-duration);
    animation-duration: var(--ripple-ani-duration);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ripple;
    animation-name: ripple;
}
.play-btn:after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.play-btn:after{
  content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.mb-20 {
    margin-bottom: 20px;
}

.title-area {
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.title-area {
    margin-bottom: calc(var(--section-title-space) - 11px);
    position: relative;
    z-index: 2;
}
.sub-title {
    display: block;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.02em;
    color: white;
    position: relative;
    margin-top: -0.2em;
    margin-bottom: 5px;
}
.sub-title {
    display: block;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.02em;
    color: white;
    position: relative;
    margin-top: -0.2em;
    margin-bottom: 5px;
}
.title-area .sec-title {
    line-height: 1.1;
}
.about4-titlebox .sec-title {
    line-height: 1.2;
}
.title-area .sec-title {
    line-height: 1.2;
    margin-bottom: 22px;
}
.mb-30 {
    margin-bottom: 30px;
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.about-item-wrap {
    min-width: 386px;
}
.about-item:not(:last-child) {
    margin-bottom: 30px;
}
.about-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
;
    gap: 16px;
    max-width: 400px;
}
.about-item_img {
    min-width: 72px;
    height: 72px;
    line-height: 72px;
    border-radius: 20px;
    text-align: center;
    background-color: white;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.about-item_img img {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.about-item .box-title {
    font-weight: 500;
    margin-bottom: 7px;
}

.box-title {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    margin-top: -0.32em;
}
.about-item_text {
    margin-bottom: -0.3rem;
}
.about-item:not(:last-child) {
    margin-bottom: 30px;
}
.about-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
;
    gap: 16px;
    max-width: 400px;
}
.about-item_img {
    min-width: 72px;
    height: 72px;
    line-height: 72px;
    border-radius: 20px;
    text-align: center;
    background-color: white;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.about-item_img img {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.about-item .box-title {
    font-weight: 500;
    margin-bottom: 7px;
}

.box-title {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    margin-top: -0.32em;
}


/* mission */
.story-box.inner-style {
    padding-bottom: 30px;
    margin-bottom: 0;
}

.story-box {
    position: relative;
    background: #F2F5FA ;
    border-radius: 30px;
    padding: 40px;
    margin: 0 30px 30px 0;
    z-index: 2;
}
.story-box.inner-style .story-box_icon {
    margin-bottom: 60px;
    display: inline-block;
}
.story-box.inner-style .box-title {
    line-height: 45px;
}
.story-box .box-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 56px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: white;
    margin-bottom: 15px;
    z-index: 2;
}

.box-title {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    margin-top: -0.32em;
}
.story-box_text {
    margin-bottom: 50px;
}



.about-img img {
    width: 100%;
    border-radius: var(--wishon-bdr-radius);
}

.single{
  height: 100% !important;
}
.testimonial-one__single-inner-single {
    position: relative;
    display: block;
    padding: 50px 47px 45px;
    border-radius: var(--wishon-bdr-radius);
    overflow: hidden;
}




a.nav.active {
  color: #7f345e !important;
  font-weight: 600 !important;
}
