/*--------------------------------------------------------------

>>> TABLE OF CONTENTS:

----------------------------------------------------------------

# Utility

# Cards

# Common

# Form

# Navigations

# Animations

# Mobile Nav

# Search Popup

# Page Header

# Google Map

# Client Carousel

--------------------------------------------------------------*/

/*--------------------------------------------------------------

# Common

--------------------------------------------------------------*/

@font-face {

  font-family: 'Footlight_reg';

  src: url(../fonts/FootlightMTProRegular.otf);

}

@font-face {

  font-family: 'Footlight_light';

  src: url(../fonts/FootlightMTProLight.otf);

}

@font-face {

  font-family: 'Footlight_bold';

  src: url(../fonts/FootlightMTProBold.otf);

}

:root {

  --oxpins-font: "Manrope", sans-serif;

  --oxpins-font-two: "Nunito", sans-serif;

  --oxpins-font-three: "Footlight_light";

  --oxpins-font-four: "Footlight_bold";

  --oxpins-gray: #6f7775;

  --oxpins-gray-rgb: 111, 119, 117;

  --oxpins-white: #ffffff;

  --oxpins-white-rgb: 255, 255, 255;

  --oxpins-base: #303192;

  --oxpins-base-rgb: 48, 49, 146;

  --oxpins-black: #283734;

  --oxpins-black-rgb: 40, 55, 52;

  --oxpins-primary: #f7941d;

  --oxpins-primary-rgb: 247, 148, 29;

  --oxpins-extra: #f9f4e8;

  --oxpins-extra-rgb: 249, 244, 232;

  --oxpins-bdr-color: #eee9db;

  --oxpins-bdr-color-rgb: 238, 233, 219;

  --oxpins-bdr-radius: 20px;

}



.row {

  --bs-gutter-x: 30px;

}



.gutter-y-30 {

  --bs-gutter-y: 30px;

}



body {

  font-family: var(--oxpins-font);

  color: var(--oxpins-gray);

  font-size: 15px;

  line-height: 26px;

  font-weight: 500;

}



body.locked {

  overflow: hidden;

}



a {

  color: var(--oxpins-gray);

}



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(--oxpins-black);

  font-family: var(--oxpins-font-four);

  margin: 0;

}



p {

  margin: 0;
text-align: justify;
}



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;

}



@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(--oxpins-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;

}



/*--------------------------------------------------------------

# Custom Cursor

--------------------------------------------------------------*/

.custom-cursor__cursor {

  width: 25px;

  height: 25px;

  border-radius: 100%;

  border: 1px solid var(--oxpins-base, #a47c68);

  -webkit-transition: all 200ms ease-out;

  transition: all 200ms ease-out;

  position: fixed;

  pointer-events: none;

  left: 0;

  top: 0;

  -webkit-transform: translate(calc(-50% + 5px), -50%);

  transform: translate(calc(-50% + 5px), -50%);

  z-index: 999991;

}



.custom-cursor__cursor-two {

  width: 10px;

  height: 10px;

  border-radius: 100%;

  background-color: var(--oxpins-base);

  opacity: 0.3;

  position: fixed;

  -webkit-transform: translate(-50%, -50%);

  transform: translate(-50%, -50%);

  pointer-events: none;

  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;

  transition: width 0.3s, height 0.3s, opacity 0.3s;

  z-index: 999991;

}



.custom-cursor__hover {

  background-color: var(--oxpins-base);

  opacity: 0.4;

}



.custom-cursor__innerhover {

  width: 25px;

  height: 25px;

  opacity: 0.4;

}



.thm-btn {

  position: relative;

  display: inline-block;

  vertical-align: middle;

  -webkit-appearance: none;

  appearance: none;

  outline: none !important;

  background-color: var(--oxpins-primary);

  color: var(--oxpins-black);

  font-size: 14px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0;

  border-radius: 30px;

  padding: 15px 49px 15px;

  transition: all 0.5s linear;

  overflow: hidden;

  z-index: 1;

}



.thm-btn:before {

  transition-duration: 800ms;

  position: absolute;

  width: 200%;

  height: 200%;

  content: "";

  top: -230%;

  left: 50%;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  border-radius: 50%;

  z-index: -1;

  background-color: var(--oxpins-black);

}



.thm-btn:hover {

  color: var(--oxpins-white);

}



.thm-btn:hover:before {

  top: -40%;

}



.section-title {

  position: relative;

  display: block;

  margin-top: -4px;

  margin-bottom: 21px;

}



.section-title__tagline {

  font-size: 24px;

  color: var(--oxpins-base);

  font-weight: 700;

  line-height: 24px;

  margin-bottom: 10px;

  font-family: var(--oxpins-font-three);

}



.section-title__title {

    margin: 0;

    color: var(--oxpins-black);

    font-size: 50px;

    line-height: 60px;

    text-transform: capitalize;

    font-weight: 900;

    letter-spacing: -0.04em;

    margin-top: 6px;

}

.about-one__text{

    margin-bottom: 25px;

}

.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(--oxpins-primary);

  color: #fff;

}



.bootstrap-select .dropdown-menu > li > a {

  font-size: 16px;

  font-weight: 500;

  padding: 4px 20px;

  color: #ffffff;

  background: var(--oxpins-base);

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

  border-radius: var(--oxpins-bdr-radius);

}



.bootstrap-select .dropdown-menu > li > a:hover {

  background: var(--oxpins-black);

  color: var(--oxpins-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/loader.png);

  background-repeat: no-repeat;

  background-position: center center;

  background-size: 60px auto;

  width: 100%;

  height: 100%;

}



/* scroll to top */

.scroll-to-top {

  display: inline-block;

  width: 50px;

  height: 50px;

  background: var(--oxpins-primary);

  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%;

  transition: all 0.4s ease;

}



.scroll-to-top i {

  color: var(--oxpins-black);

  font-size: 18px;

  line-height: 50px;

}



.scroll-to-top:hover {

  background-color: var(--oxpins-base);

}



.scroll-to-top:hover i {

  color: #fff;

}



/*--------------------------------------------------------------

# Navigations One

--------------------------------------------------------------*/

.main-header {

  position: relative;

  display: block;

  width: 100%;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  z-index: 99;

  position: relative;

}



.main-menu {

  position: relative;

  display: block;

}



.main-menu__wrapper {

  position: relative;

  display: block;

  padding-left: 60px;

  padding-right: 50px;

}



.main-menu__wrapper-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

}



.main-menu__left {

  position: relative;

  display: block;

  width: 9%;

  margin-right: 157px;

}



.main-menu__logo {

  display: block;

}



.main-menu__logo img {

  image-rendering: -moz-crisp-edges;

  image-rendering: -o-crisp-edges;

  image-rendering: -webkit-optimize-contrast;

  image-rendering: crisp-edges;

  -ms-interpolation-mode: nearest-neighbor;

  -webkit-backface-visibility: hidden;

  backface-visibility: hidden;

  -ms-transform: translateZ(0);

  -webkit-transform: translateZ(0);

  transform: translateZ(0);

}



.main-menu__shape-1 {

  position: absolute;

  bottom: -5px;

  right: -140px;

}



.main-menu__shape-1 img {

  width: auto;

}



.main-menu__right {

  display: block;

  width: 91%;

}



.main-menu__right-top {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 6px 0;

}



.main-menu__right-top-left {

  display: block;

}



.main-menu__volunteers {

  display: flex;

  align-items: center;

}



.main-menu__volunteers-icon {

  position: relative;

  height: 44px;

  width: 44px;

  background-color: var(--oxpins-primary);

  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.08);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

}



.main-menu__volunteers-icon:hover img {

  animation: menuIconShake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;

  transform: translate3d(0, 0, 0);

  backface-visibility: hidden;

  perspective: 1000px;

}



@keyframes menuIconShake {

  10%, 90% {

    transform: translate3d(-1px, 0, 0);

  }

  20%, 80% {

    transform: translate3d(2px, 0, 0);

  }

  30%, 50%, 70% {

    transform: translate3d(-4px, 0, 0);

  }

  40%, 60% {

    transform: translate3d(4px, 0, 0);

  }

}

.main-menu__volunteers-icon:before {

  position: absolute;

  bottom: 0;

  left: 1px;

  width: 15px;

  height: 5px;

  content: "";

  background-image: url(../images/shapes/main-menu__volunteers-icon-shape.png);

  background-repeat: no-repeat;

  transform: rotate(220deg);

}



.main-menu__volunteers-text-box {

  margin-left: 10px;

}



.main-menu__volunteers-text {

  font-size: 24px;

  font-weight: 700;

  color: var(--oxpins-black);

  font-family: var(--oxpins-font-three);

}



.main-menu__volunteers-text a {

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.main-menu__volunteers-text a:hover {

  color: var(--oxpins-base);

}



.main-menu__volunteers-text span {

  position: relative;

  display: inline-block;

}



.main-menu__volunteers-text span:before {

  content: "";

  position: absolute;

  bottom: 2px;

  left: 0;

  right: 0;

  background-color: var(--oxpins-black);

  height: 1px;

}



.main-menu__right-top-right {

  display: flex;

  align-items: center;

}



.main-menu__right-top-address {

  display: block;

}



.main-menu__right-top-address-list {

  display: flex;

  align-items: center;

}



.main-menu__right-top-address-list li {

  position: relative;

  display: flex;

  align-items: center;

}



.main-menu__right-top-address-list li:before {

  content: "";

  position: absolute;

  top: 3px;

  bottom: 3px;

  right: -40px;

  background-color: var(--oxpins-bdr-color);

  width: 1px;

}



.main-menu__right-top-address-list li:last-child:before {

  display: none;

}



.main-menu__right-top-address-list li + li {

  margin-left: 80px;

}



.main-menu__right-top-address-list li .icon {

  position: relative;

  display: flex;

  align-items: center;

}



.main-menu__right-top-address-list li .icon span {

  position: relative;

  display: inline-block;

  font-size: 25px;

  color: var(--oxpins-base);

}



.main-menu__right-top-address-list li:last-child .icon span {

  font-size: 28px;

}



.main-menu__right-top-address-list li .content {

  margin-left: 15px;

}



.main-menu__right-top-address-list li .content p {

  font-size: 12px;

  font-weight: 600;

  line-height: 16px;

}



.main-menu__right-top-address-list li .content h5 {

  font-size: 14px;

  font-weight: 700;

  line-height: 20px;

  font-family: var(--oxpins-font);

}



.main-menu__right-top-address-list li .content h5 a {

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.main-menu__right-top-address-list li .content h5 a:hover {

  color: var(--oxpins-base);

}



.main-menu__right-top-social {

  display: flex;

  align-items: center;

  margin-left: 50px;

}



.main-menu__right-top-social a {

  position: relative;

  height: 40px;

  width: 40px;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: center;

  justify-content: center;

  text-align: center;

  color: var(--oxpins-black);

  font-size: 14px;

  background-color: var(--oxpins-extra);

  border-radius: 50%;

  overflow: hidden;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  z-index: 1;

}



.main-menu__right-top-social a:hover {

  color: var(--oxpins-white);

  background-color: var(--oxpins-base);

}



.main-menu__right-top-social a:after {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  right: 0;

  height: 100%;

  background-color: var(--oxpins-base);

  -webkit-transition-delay: 0.1s;

  transition-delay: 0.1s;

  -webkit-transition-timing-function: ease-in-out;

  transition-timing-function: ease-in-out;

  -webkit-transition-duration: 0.4s;

  transition-duration: 0.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;

}



.main-menu__right-top-social a:hover:after {

  opacity: 1;

  -webkit-transform: scaleY(1);

  transform: scaleY(1);

}



.main-menu__right-top-social a + a {

  margin-left: 10px;

}



.main-menu__right-bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  background-color: var(--oxpins-base);

  padding-left: 34px;

  border-top-left-radius: 15px;

}



.main-menu__main-menu-box {

  display: block;

}



.main-menu__main-menu-content-box {

  position: relative;

  display: block;

}



.main-menu__search-cat-btn-box {

  display: flex;

  align-items: center;

}



.main-menu__search-box {

  position: relative;

  display: flex;

  align-items: center;

}



.main-menu__search-box:before {

  content: "";

  position: absolute;

  top: -5px;

  bottom: -5px;

  left: -30px;

  width: 1px;

  background-color: rgba(var(--oxpins-white-rgb), 0.1);

}



.main-menu__search {

  font-size: 24px;

  color: var(--oxpins-white);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.main-menu__search:hover {

  color: var(--oxpins-primary);

}



.main-menu__cat-box {

  display: flex;

  align-items: center;

  margin-right: 30px;

  margin-left: 30px;

}



.main-menu__cart {

  font-size: 24px;

  color: var(--oxpins-white);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.main-menu__cart:hover {

  color: var(--oxpins-primary);

}



.main-menu__btn-box {

  position: relative;

  display: flex;

  align-items: center;

  z-index: 1;

}



.main-menu__btn {

  font-size: 17px;

  font-weight: 700;

  color: var(--oxpins-black);

  background-color: var(--oxpins-primary);

  padding-left: 28px;

  padding-top: 17px;

  padding-bottom: 17px;

  position: relative;

  display: flex;

  align-items: center;

  text-transform: uppercase;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.main-menu__btn:hover {

  background-color: var(--oxpins-black);

  color: var(--oxpins-white);

}



.main-menu__btn:before {

  content: "";

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: -10000000000000px;

  background-color: var(--oxpins-primary);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  z-index: -1;

}



.main-menu__btn:hover:before {

  background-color: var(--oxpins-black);

}



.main-menu__btn span {

    font-size: 26px;

    padding-right: 0px;

    position: relative;

}



.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: 17px;

  padding-bottom: 17px;

  position: relative;

}



.main-menu .main-menu__list > li + li,

.stricky-header .main-menu__list > li + li {

  margin-left: 34px;

}



.main-menu .main-menu__list > li > a,

.stricky-header .main-menu__list > li > a {

  font-size: 16px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  color: #ffffff;

  TEXT-TRANSFORM: uppercase;

  position: relative;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  font-weight: 600;

}



.main-menu .main-menu__list > li.current > a,

.main-menu .main-menu__list > li.current-menu-ancestor > a,

.main-menu .main-menu__list > li.current-menu-item > a,

.main-menu .main-menu__list > li.current-menu-page > a,

.main-menu .main-menu__list > li.current_page_item > a,

.main-menu .main-menu__list > li:hover > a,

.stricky-header .main-menu__list > li.current > a,

.stricky-header .main-menu__list > li.current_page_item > a,

.stricky-header .main-menu__list > li.current-menu-ancestor > a,

.stricky-header .main-menu__list > li.current-menu-item > a,

.stricky-header .main-menu__list > li.current-menu-page > a,

.stricky-header .main-menu__list > li:hover > a {

  color: var(--oxpins-white);

}



.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: 270px;

  -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;

  overflow: hidden;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 10px 39.2px 0.8px rgba(0, 0, 0, 0.1);

  padding: 31px 20px 31px;

  border-bottom-left-radius: 20px;

  border-bottom-right-radius: 20px;

}



.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: 16px;

  line-height: 30px;

  color: var(--oxpins-gray);

  letter-spacing: 0;

  font-weight: 500;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  padding: 5px 20px 5px;

  -webkit-transition: 500ms;

  transition: 500ms;

  background-color: var(--oxpins-white);

  border-radius: var(--oxpins-bdr-radius);

}



.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(--oxpins-extra);

  color: var(--oxpins-black);

}



.main-menu .main-menu__list > li > ul > li > a::before,

.main-menu .main-menu__list > li > ul > li > ul > li > a::before,

.stricky-header .main-menu__list > li > ul > li > a::before,

.stricky-header .main-menu__list > li > ul > li > ul > li > a::before {

  position: absolute;

  top: 50%;

  right: 20px;

  font-family: "Font Awesome 5 Free";

  font-weight: 900;

  content: "\f30b";

  font-size: 14px;

  color: var(--oxpins-base);

  transform: translateY(-50%) scale(0);

  -webkit-transition: 500ms;

  transition: 500ms;

}



.main-menu .main-menu__list > li > ul > li:hover > a::before,

.main-menu .main-menu__list > li > ul > li > ul > li:hover > a::before,

.stricky-header .main-menu__list > li > ul > li:hover > a::before,

.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a::before {

  transform: translateY(-50%) scale(1);

}



.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%;

}



.main-menu-three__main-menu-box .main-menu__list > .megamenu,

.main-menu-two__main-menu-box .main-menu__list > .megamenu,

.main-menu__wrapper .main-menu__list > .megamenu {

  position: static;

}



.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul,

.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul,

.main-menu__wrapper .main-menu__list > .megamenu > ul {

  top: 100% !important;

  left: 0 !important;

  right: 0 !important;

  background-color: transparent;

  -webkit-box-shadow: none;

  box-shadow: none;

}



.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul > li,

.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul > li,

.main-menu__wrapper .main-menu__list > .megamenu > ul > li {

  padding: 0 !important;

}



.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(--oxpins-base);

  cursor: pointer;

}



.mobile-nav__buttons a + a {

  margin-left: 10px;

}



.mobile-nav__buttons a:hover {

  color: var(--oxpins-base);

}



.main-menu .mobile-nav__toggler {

  font-size: 20px;

  color: var(--oxpins-base);

  cursor: pointer;

  -webkit-transition: 500ms;

  transition: 500ms;

}



.main-menu .mobile-nav__toggler:hover {

  color: var(--oxpins-black);

}



@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 3ms ease 3ms, -webkit-transform 3ms ease 3ms;

  transition: visibility 3ms ease 3ms, -webkit-transform 3ms ease 3ms;

  transition: transform 3ms ease 3ms, visibility 3ms ease 3ms;

  transition: transform 3ms ease 3ms, visibility 3ms ease 3ms, -webkit-transform 3ms ease 3ms;

  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 3ms ease 0ms, -webkit-transform 3ms ease 0ms;

  transition: visibility 3ms ease 0ms, -webkit-transform 3ms ease 0ms;

  transition: transform 3ms ease 0ms, visibility 3ms ease 0ms;

  transition: transform 3ms ease 0ms, visibility 3ms ease 0ms, -webkit-transform 3ms ease 0ms;

}



.mobile-nav__overlay {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-color: #000000;

  opacity: 0.5;

  cursor: pointer;

}



.mobile-nav__content {

  width: 300px;

  background-color: var(--oxpins-black);

  z-index: 10;

  position: relative;

  height: 100%;

  overflow-y: auto;

  padding-top: 30px;

  padding-bottom: 30px;

  padding-left: 15px;

  padding-right: 15px;

  opacity: 0;

  visibility: hidden;

  -webkit-transform: translateX(-100%);

  transform: translateX(-100%);

  -webkit-transition: opacity 3ms ease 0ms, visibility 3ms ease 0ms, -webkit-transform 3ms ease 0ms;

  transition: opacity 3ms ease 0ms, visibility 3ms ease 0ms, -webkit-transform 3ms ease 0ms;

  transition: opacity 3ms ease 0ms, visibility 3ms ease 0ms, transform 3ms ease 0ms;

  transition: opacity 3ms ease 0ms, visibility 3ms ease 0ms, transform 3ms ease 0ms, -webkit-transform 3ms ease 0ms;

}



.mobile-nav__wrapper.expanded .mobile-nav__content {

  opacity: 1;

  visibility: visible;

  -webkit-transform: translateX(0);

  transform: translateX(0);

  -webkit-transition: opacity 3ms ease 3ms, visibility 3ms ease 3ms, -webkit-transform 3ms ease 3ms;

  transition: opacity 3ms ease 3ms, visibility 3ms ease 3ms, -webkit-transform 3ms ease 3ms;

  transition: opacity 3ms ease 3ms, visibility 3ms ease 3ms, transform 3ms ease 3ms;

  transition: opacity 3ms ease 3ms, visibility 3ms ease 3ms, transform 3ms ease 3ms, -webkit-transform 3ms ease 3ms;

}



.mobile-nav__content .logo-box {

  margin-bottom: 40px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

}



.mobile-nav__close {

  position: absolute;

  top: 20px;

  right: 15px;

  font-size: 18px;

  color: var(--oxpins-white);

  cursor: pointer;

}



.mobile-nav__content .main-menu__list,

.mobile-nav__content .main-menu__list > li > ul,

.mobile-nav__content .main-menu__list > li > ul > li > ul {

  margin: 0;

  padding: 0;

  list-style-type: none;

}



.mobile-nav__content .main-menu__list > li > ul,

.mobile-nav__content .main-menu__list > li > ul > li > ul {

  display: none;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  margin-left: 0.5em;

}



.mobile-nav__content .main-menu__list > li:not(:last-child),

.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),

.mobile-nav__content .main-menu__list > li > ul > li > ul > li:not(:last-child) {

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}



.mobile-nav__content .main-menu__list > li > a > .main-menu-border {

  display: none !important;

}



.mobile-nav__content .main-menu__list > li > a,

.mobile-nav__content .main-menu__list > li > ul > li > a,

.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

  line-height: 30px;

  color: #ffffff;

  font-size: 14px;

  font-family: var(--oxpins-font, "Rubik", sans-serif);

  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(--oxpins-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(--oxpins-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(--oxpins-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(--oxpins-text-dark);

}



.mobile-nav__container {

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}



.mobile-nav__social {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

}



.mobile-nav__social a {

  font-size: 16px;

  color: var(--oxpins-white);

  -webkit-transition: 500ms;

  transition: 500ms;

}



.mobile-nav__social a + a {

  margin-left: 30px;

}



.mobile-nav__social a:hover {

  color: var(--oxpins-base);

}



.mobile-nav__contact {

  margin-bottom: 0;

  margin-top: 20px;

  margin-bottom: 20px;

}



.mobile-nav__contact li {

  color: var(--oxpins-text-dark);

  font-size: 14px;

  font-weight: 500;

  position: relative;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

}



.mobile-nav__contact li + li {

  margin-top: 15px;

}



.mobile-nav__contact li a {

  color: #ffffff;

  -webkit-transition: 500ms;

  transition: 500ms;

}



.mobile-nav__contact li a:hover {

  color: var(--oxpins-base);

}



.mobile-nav__contact li > i {

  width: 30px;

  height: 30px;

  border-radius: 50%;

  background-color: var(--oxpins-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;

}



/*--------------------------------------------------------------

# Home Showcase

--------------------------------------------------------------*/

.home-showcase {

  margin-top: -31px;

  margin-bottom: -31px;

}



.home-showcase__inner {

  padding: 40px 40px 40px;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);

  border-bottom-left-radius: 20px;

  border-bottom-right-radius: 20px;

}



.home-showcase .row {

  --bs-gutter-x: 42px;

  --bs-gutter-y: 20px;

}



.home-showcase__image {

  position: relative;

  background-color: var(--oxpins-base);

  overflow: hidden;

  border-radius: 10px;

}



.home-showcase__image > img {

  width: 100%;

  border-radius: 10px;

  -webkit-transition: 500ms ease;

  transition: 500ms ease;

  -webkit-transform: scale(1);

  transform: scale(1);

}



.home-showcase__image:hover > img {

  opacity: 0.75;

}



.home-showcase__image:hover .home-showcase__buttons {

  -webkit-transform: scale(1, 1);

  transform: scale(1, 1);

  opacity: 1;

  visibility: visible;

}



.home-showcase__buttons {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  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-box-orient: vertical;

  -webkit-box-direction: normal;

  -ms-flex-direction: column;

  flex-direction: column;

  -webkit-transform: scale(1, 0);

  transform: scale(1, 0);

  opacity: 0;

  visibility: hidden;

  -webkit-transform-origin: bottom center;

  transform-origin: bottom center;

  -webkit-transition: 500ms ease;

  transition: 500ms ease;

}



.home-showcase__buttons__item {

  padding: 10px 20px;

  width: 150px;

  text-align: center;

}



.home-showcase__buttons__item + .home-showcase__buttons__item {

  margin-top: 10px;

}



.home-showcase__title {

  margin: 0;

  text-align: center;

  font-size: 16px;

  font-weight: 700;

  color: var(--oxpins-black);

  margin-top: 17px;

  font-family: var(--oxpins-font);

}



.mobile-nav__wrapper .home-showcase .row [class*=col-] {

  -webkit-box-flex: 0;

  -ms-flex: 0 0 100%;

  flex: 0 0 100%;

}



.mobile-nav__wrapper .home-showcase__inner {

  padding: 15px 0px;

  background-color: rgba(0, 0, 0, 0);

}



.mobile-nav__wrapper .home-showcase__title {

  color: var(--oxpins-white, #ffffff);

}



/*--------------------------------------------------------------

# Navigations Two

--------------------------------------------------------------*/

.main-header-two {

  width: 100%;

  background: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  z-index: 99;

  position: relative;

}



.stricky-header.main-menu-two {

  background-color: var(--oxpins-black);

}



.main-menu-two__wrapper {

  position: relative;

  display: block;

}



.main-menu-two__wrapper:before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 6px;

  background-color: var(--oxpins-primary);

  z-index: 1;

}



.main-menu-two__wrapper-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

}



.main-menu-two__left {

  position: relative;

  display: block;

  padding-left: 325px;

}



.main-menu-two__logo {

  display: block;

}



.main-menu-two__logo img {

  image-rendering: -moz-crisp-edges;

  image-rendering: -o-crisp-edges;

  image-rendering: -webkit-optimize-contrast;

  image-rendering: crisp-edges;

  -ms-interpolation-mode: nearest-neighbor;

  -webkit-backface-visibility: hidden;

  backface-visibility: hidden;

  -ms-transform: translateZ(0);

  -webkit-transform: translateZ(0);

  transform: translateZ(0);

}



.main-menu-two__shape-1 {

  position: absolute;

  right: -127px;

  bottom: -5px;

  z-index: 2;

}



.main-menu-two__shape-1 img {

  width: auto;

}



.main-menu-two__right {

  display: block;

}



.main-menu-two__right-top {

  display: flex;

  align-items: center;

  padding-top: 21px;

  padding-bottom: 21px;

  padding-left: 70px;

  padding-right: 265px;

  background-color: var(--oxpins-extra);

  position: relative;

}



.main-menu-two__right-top-left {

  display: block;

}



.main-menu-two__volunteers {

  display: flex;

  align-items: center;

}



.main-menu-two__volunteers-icon {

  position: relative;

  height: 44px;

  width: 44px;

  background-color: var(--oxpins-primary);

  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.08);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

}



.main-menu-two__volunteers-icon:hover img {

  animation: menuIconShake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;

  transform: translate3d(0, 0, 0);

  backface-visibility: hidden;

  perspective: 1000px;

}



.main-menu-two__volunteers-icon:before {

  position: absolute;

  bottom: 0;

  left: 1px;

  width: 15px;

  height: 5px;

  content: "";

  background-image: url(../images/shapes/main-menu__volunteers-icon-shape.png);

  background-repeat: no-repeat;

  transform: rotate(220deg);

}



.main-menu-two__volunteers-text-box {

  margin-left: 10px;

}



.main-menu-two__volunteers-text {

  font-size: 24px;

  font-weight: 700;

  color: var(--oxpins-black);

  font-family: var(--oxpins-font-three);

}



.main-menu-two__volunteers-text a {

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.main-menu-two__volunteers-text a:hover {

  color: var(--oxpins-base);

}



.main-menu-two__volunteers-text span {

  position: relative;

  display: inline-block;

}



.main-menu-two__volunteers-text span:before {

  content: "";

  position: absolute;

  bottom: 2px;

  left: 0;

  right: 0;

  background-color: var(--oxpins-black);

  height: 1px;

}



.main-menu-two__right-top-right {

  display: flex;

  align-items: center;

  margin-left: 90px;

}



.main-menu-two__right-top-address {

  display: block;

}



.main-menu-two__right-top-address-list {

  display: flex;

  align-items: center;

}



.main-menu-two__right-top-address-list li {

  position: relative;

  display: flex;

  align-items: center;

}



.main-menu-two__right-top-address-list li:before {

  content: "";

  position: absolute;

  top: 3px;

  bottom: 3px;

  right: -40px;

  background-color: var(--oxpins-bdr-color);

  width: 1px;

}



.main-menu-two__right-top-address-list li:last-child:before {

  display: none;

}



.main-menu-two__right-top-address-list li + li {

  margin-left: 80px;

}



.main-menu-two__right-top-address-list li .icon {

  position: relative;

  display: flex;

  align-items: center;

}



.main-menu-two__right-top-address-list li .icon span {

  position: relative;

  display: inline-block;

  font-size: 25px;

  color: var(--oxpins-base);

}



.main-menu-two__right-top-address-list li:last-child .icon span {

  font-size: 35px;

}



.main-menu-two__right-top-address-list li .content {

  margin-left: 15px;

}



.main-menu-two__right-top-address-list li .content p {

  font-size: 12px;

  font-weight: 600;

  line-height: 16px;

}



.main-menu-two__right-top-address-list li .content h5 {

  font-size: 14px;

  font-weight: 700;

  line-height: 20px;

  font-family: var(--oxpins-font);

}



.main-menu-two__right-top-address-list li .content h5 a {

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.main-menu-two__right-top-address-list li .content h5 a:hover {

  color: var(--oxpins-base);

}



.main-menu-two__right-bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  background-color: var(--oxpins-white);

  padding-left: 70px;

  padding-right: 40px;

}



.main-menu-two__main-menu-box {

  display: block;

}



.main-menu-two__main-menu-content-box {

  position: relative;

  display: block;

}



.main-menu-two__search-cat-btn-box {

  display: flex;

  align-items: center;

}



.main-menu-two__search-box {

  position: relative;

  display: flex;

  align-items: center;

}



.main-menu-two__search-box:before {

  content: "";

  position: absolute;

  top: -4px;

  bottom: -4px;

  left: -30px;

  width: 1px;

  background-color: var(--oxpins-bdr-color);

}



.main-menu-two__search {

  font-size: 24px;

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.main-menu-two__search:hover {

  color: var(--oxpins-base);

}



.main-menu-two__cat-box {

  display: flex;

  align-items: center;

  margin-right: 30px;

  margin-left: 30px;

}



.main-menu-two__cart {

  font-size: 24px;

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.main-menu-two__cart:hover {

  color: var(--oxpins-base);

}



.main-menu-two__btn-box {

  position: relative;

  display: flex;

  align-items: center;

}



.main-menu-two__btn {

  font-size: 16px;

  font-weight: 700;

  color: var(--oxpins-white);

  background-color: var(--oxpins-primary);

  padding-top: 4px;

  padding-bottom: 4px;

  padding-left: 30px;

  padding-right: 30px;

  border-radius: 19px;

  position: relative;

  display: flex;

  align-items: center;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.main-menu-two__btn:hover img{

   filter: brightness(0) invert(1);

}

.main-menu-two__btn:hover {

  background-color: #303192;

  color: var(--oxpins-white);

}



.main-menu-two__btn span {

  font-size: 13px;

  padding-right: 10px;

  position: relative;

}



.main-menu-two .main-menu__list > li > a,

.stricky-header.main-menu-two .main-menu__list > li > a {

  color: var(--oxpins-gray);

}



.main-menu-two .main-menu__list > li.current > a,

.main-menu-two .main-menu__list > li.current_page_item > a,

.main-menu-two .main-menu__list > li.current-menu-ancestor > a,

.main-menu-two .main-menu__list > li.current-menu-item > a,

.main-menu-two .main-menu__list > li.current-menu-page > 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.current_page_item > a,

.stricky-header.main-menu-two .main-menu__list > li.current-menu-ancestor > a,

.stricky-header.main-menu-two .main-menu__list > li.current-menu-item > a,

.stricky-header.main-menu-two .main-menu__list > li.current-menu-page > a,

.stricky-header.main-menu-two .main-menu__list > li:hover > a {

  color: var(--oxpins-black);

}



.main-menu-two .main-menu__list > li,

.stricky-header.main-menu-two .main-menu__list > li {

  padding-top: 15px;

  padding-bottom: 15px;

}



/*--------------------------------------------------------------

# Navigations Three

--------------------------------------------------------------*/

.main-header-three {

  background: transparent;

  position: absolute;

  left: 0px;

  top: 0px;

  width: 100%;

  transition: all 500ms ease;

  z-index: 999;

}



.stricky-header.main-menu-three {

  background-color: var(--oxpins-black);

}



.main-menu-three__wrapper {

  position: relative;

  display: block;

  padding: 0 60px;

}



.main-menu-three__wrapper-inner {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

}



.main-menu-three__left {

  display: block;

}



.main-menu-three__logo {

  display: block;

}



.main-menu-three__logo img {

  image-rendering: -moz-crisp-edges;

  image-rendering: -o-crisp-edges;

  image-rendering: -webkit-optimize-contrast;

  image-rendering: crisp-edges;

  -ms-interpolation-mode: nearest-neighbor;

  -webkit-backface-visibility: hidden;

  backface-visibility: hidden;

  -ms-transform: translateZ(0);

  -webkit-transform: translateZ(0);

  transform: translateZ(0);

}



.main-menu-three__right {

  display: block;

}



.main-menu-three__right-inner {

  display: flex;

  align-items: center;

}



.main-menu-three__right-content-box {

  display: block;

}



.main-menu-three__right-top {

  display: flex;

  align-items: center;

  justify-content: space-between;

  position: relative;

  padding: 21.5px 60px;

  border-bottom: 1px solid rgba(var(--oxpins-white-rgb), 0.1);

}



.main-menu-three__volunteers {

  display: flex;

  align-items: center;

}



.main-menu-three__volunteers-icon {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  height: 36px;

  width: 36px;

  background-color: var(--oxpins-primary);

  border-radius: 50%;

}



.main-menu-three__volunteers-icon:hover img {

  animation: menuIconShake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;

  transform: translate3d(0, 0, 0);

  backface-visibility: hidden;

  perspective: 1000px;

}



.main-menu-three__volunteers-text-box {

  margin-left: 10px;

}



.main-menu-three__volunteers-text {

  font-size: 20px;

  font-weight: 700;

  line-height: 20px;

  font-family: var(--oxpins-font-three);

}



.main-menu-three__volunteers-text a {

  color: var(--oxpins-white);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.main-menu-three__volunteers-text a:hover {

  color: var(--oxpins-primary);

}



.main-menu-three__volunteers-text span {

  position: relative;

  display: inline-block;

}



.main-menu-three__volunteers-text span:before {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 1px;

  background-color: var(--oxpins-white);

  content: "";

}



.main-menu-three__call {

  display: flex;

  align-items: center;

}



.main-menu-three__icon {

  height: 36px;

  width: 36px;

  background-color: var(--oxpins-primary);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 17px;

  color: var(--oxpins-black);

}



.main-menu-three__number {

  margin-left: 10px;

}



.main-menu-three__number a {

  font-size: 20px;

  color: var(--oxpins-white);

  font-weight: 700;

  font-family: var(--oxpins-font-three);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.main-menu-three__number a:hover {

  color: var(--oxpins-primary);

}



.main-menu-three__right-bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0 53px;

}



.main-menu-three__main-menu-box {

  display: block;

}



.main-menu-three__search-cat {

  display: flex;

  align-items: center;

  margin-left: 500px;

}



.main-menu-three__search-box {

  position: relative;

  display: flex;

  align-items: center;

}



.main-menu-three__search {

  font-size: 24px;

  color: var(--oxpins-white);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.main-menu-three__search:hover {

  color: var(--oxpins-primary);

}



.main-menu-three__cat-box {

  position: relative;

  display: flex;

  align-items: center;

  margin-left: 30px;

}



.main-menu-three__cart {

  font-size: 24px;

  color: var(--oxpins-white);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.main-menu-three__cart:hover {

  color: var(--oxpins-primary);

}



.main-menu-three__btn-box {

  position: relative;

  display: flex;

  align-items: center;

  margin-left: 95px;

}



.main-menu-three__btn-box a {

  font-size: 12px;

  font-weight: 700;

  color: var(--oxpins-black);

  background-color: var(--oxpins-white);

  padding-top: 4px;

  padding-bottom: 4px;

  padding-left: 30px;

  padding-right: 30px;

  border-radius: 19px;

  position: relative;

  display: flex;

  align-items: center;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.main-menu-three__btn-box span {

  font-size: 13px;

  padding-right: 10px;

  position: relative;

}



.main-menu-three__btn-box a:hover {

  background-color: var(--oxpins-primary);

}



.main-menu-three .main-menu__list > li > a,

.stricky-header.main-menu-three .main-menu__list > li > a {

  color: #8c9c99;

}



.main-menu-three .main-menu__list > li.current > a,

.main-menu-three .main-menu__list > li.current-menu-ancestor > a,

.main-menu-three .main-menu__list > li.current-menu-item > a,

.main-menu-three .main-menu__list > li.current-menu-page > a,

.main-menu-three .main-menu__list > li.current_page_item > 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.current-menu-ancestor > a,

.stricky-header.main-menu-three .main-menu__list > li.current-menu-item > a,

.stricky-header.main-menu-three .main-menu__list > li.current-menu-page > a,

.stricky-header.main-menu-three .main-menu__list > li.current_page_item > a,

.stricky-header.main-menu-three .main-menu__list > li:hover > a {

  color: var(--oxpins-white);

}



.main-menu-three .main-menu__list > li,

.stricky-header.main-menu-three .main-menu__list > li {

  padding-top: 13px;

  padding-bottom: 13px;

}



/*--------------------------------------------------------------

# 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: #000000;

  opacity: 0.75;

  cursor: pointer;

}



body.locked .page-wrapper {

  filter: blur(6px);

}



.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: 66px;

  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: 0;

  background-color: var(--oxpins-base);

  border: 0;

  border-top-right-radius: 10px;

  border-bottom-right-radius: 10px;

}



.search-popup__content .thm-btn i {

  height: auto;

  width: auto;

  background-color: transparent;

  border-radius: 50%;

  color: var(--oxpins-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;

}



/*--------------------------------------------------------------

# Main Slider

--------------------------------------------------------------*/

.main-slider {

  position: relative;

  display: block;

  z-index: 91;

}



.main-slider .swiper-slide {

  position: relative;

  background-color: var(--oxpins-black);

}



.main-slider .container {

  position: relative;

  padding-top: 170px;

  padding-bottom: 175px;

  z-index: 30;

}



.main-slider .image-layer {

  position: absolute;

  top: 0;

  right: -20px;

  bottom: 0;

  width: 50%;

  mix-blend-mode: luminosity;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: left 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);

}



.main-slider-shape-1 {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 58%;

  opacity: 0.02;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  z-index: -1;

}



.main-slider-shape-2 {

  position: absolute;

  bottom: -68px;

  left: 30px;

  opacity: 0.07;

  z-index: -1;

}



.main-slider-shape-2 img {

  width: auto;

}



.main-slider__content {

  position: relative;

  display: block;

  text-align: left;

}



.main-slider__sub-title {

  font-size: 40px;

  color: var(--oxpins-primary);

  font-weight: 700;

  line-height: 40px;

  font-family: var(--oxpins-font-three);

  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 {

  position: relative;

  font-size: 80px;

  color: var(--oxpins-white);

  font-weight: 900;

  line-height: 83px;

  letter-spacing: -0.04em;

  margin-top: 24px;

  margin-bottom: 26px;

  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: block;

  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:hover {

  color: var(--oxpins-base);

}



.main-slider__btn:before {

  background-color: var(--oxpins-white);

}



.main-slider .swiper-slide-active .main-slider__title,

.main-slider .swiper-slide-active .main-slider__sub-title,

.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: 42%;

  left: 45px;

  z-index: 100;

  transform: translateY(-50%) translateX(0%);

  display: flex;

  align-items: flex-start;

  flex-direction: column;

  max-width: 1200px;

  width: 100%;

  padding: 0 15px;

  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: 50px;

  height: 50px;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 18px;

  color: rgba(var(--oxpins-white-rgb), 0.2);

  border: 2px solid rgba(var(--oxpins-white-rgb), 0.2);

  border-radius: 50%;

  margin: 0;

  text-align: center;

  transition: all 500ms ease;

  padding: 23px 0;

}



.main-slider__nav .swiper-button-next:hover,

.main-slider__nav .swiper-button-prev:hover {

  color: rgba(var(--oxpins-white-rgb), 1);

  border: 2px solid rgba(var(--oxpins-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 {

  margin-bottom: 10px;

}



/*--------------------------------------------------------------

# Main Slider Two

--------------------------------------------------------------*/

.main-slider-two {

  position: relative;

  display: block;

  z-index: 91;

}



.main-slider-two .swiper-slide {

  position: relative;

  background-color: var(--oxpins-black);

}



.main-slider-two .container {

  position: relative;

  padding-top: 185px;

  padding-bottom: 190px;

  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: left 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:before {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  content: "";

}



.main-slider-two-shape-1 {

  position: absolute;

  top: 0;

  right: 0;

  mix-blend-mode: color-dodge;

  opacity: 0.5;

  z-index: 1;

}



.main-slider-two-shape-1 img {

  width: auto;

}



.main-slider-two-shape-2 {

  position: absolute;

  top: 0;

  right: 0;

  z-index: -1;

}



.main-slider-two-shape-2 img {

  width: auto;

}



.main-slider-two__content {

  position: relative;

  display: block;

  text-align: center;

}



.main-slider-two__sub-title {

  font-size: 30px;

  color: var(--oxpins-primary);

  font-weight: 700;

  line-height: 30px;

  font-family: var(--oxpins-font-three);

  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: 90px;

  color: var(--oxpins-white);

  font-weight: 900;

  line-height: 110px;

  letter-spacing: -0.04em;

  text-transform: uppercase;

  margin-top: 18px;

  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__btn-box {

  position: relative;

  display: block;

  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__btn {

  font-weight: 800;

}



.main-slider-two__btn:hover {

  color: var(--oxpins-base);

}



.main-slider-two__btn:before {

  background-color: var(--oxpins-white);

}



.main-slider-two .swiper-slide-active .main-slider-two__sub-title,

.main-slider-two .swiper-slide-active .main-slider-two__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__nav {

  width: 100%;

  max-width: 100%;

  padding-left: 60px;

  padding-right: 60px;

  position: absolute;

  top: 50%;

  left: 50%;

  z-index: 100;

  transform: translateY(-50%) translateX(-50%);

  display: flex;

  align-items: center;

  justify-content: space-between;

  height: 0;

  line-height: 0;

}



.main-slider-two__nav .swiper-button-next,

.main-slider-two__nav .swiper-button-prev {

  position: relative;

  top: auto;

  left: auto;

  right: auto;

  bottom: auto;

  z-index: 100;

  width: 50px;

  height: 50px;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 18px;

  color: rgba(var(--oxpins-white-rgb), 0.2);

  border: 2px solid rgba(var(--oxpins-white-rgb), 0.2);

  border-radius: 50%;

  margin: 0;

  text-align: center;

  transition: all 500ms ease;

}



.main-slider-two__nav .swiper-button-next:hover,

.main-slider-two__nav .swiper-button-prev:hover {

  color: rgba(var(--oxpins-white-rgb), 1);

  border: 2px solid rgba(var(--oxpins-white-rgb), 1);

}



.main-slider-two__nav .swiper-button-next:hover,

.main-slider-two__nav .swiper-button-prev:hover {

  opacity: 1;

}



.main-slider-two__nav .swiper-button-next::after,

.main-slider-two__nav .swiper-button-prev::after {

  display: none;

}



/*--------------------------------------------------------------

# Main Slider Two

--------------------------------------------------------------*/

.main-slider-three {

  position: relative;

  display: block;

  z-index: 91;

}



.main-slider-three .swiper-slide {

  position: relative;

  background-color: #212d2b;

}



.main-slider-three .container {

  position: relative;

  padding-top: 297px;

  padding-bottom: 160px;

  z-index: 30;

}



.image-layer-three {

  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  mix-blend-mode: luminosity;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: left 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-three .swiper-slide-active .image-layer-three {

  -webkit-transform: scale(1.15);

  transform: scale(1.15);

}



.image-layer-three:before {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  content: "";

  background-color: rgba(33, 45, 43, 0.6);

}



.main-slider-three-color {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 420px;

  background: rgb(33, 45, 43);

  background: linear-gradient(180deg, rgba(33, 45, 43, 0.9696253501) 7%, rgba(33, 45, 43, 0) 100%);

  z-index: 1;

}



.main-slider-three__content {

  position: relative;

  display: block;

  text-align: center;

}



.main-slider-three__sub-title {

  font-size: 20px;

  color: var(--oxpins-primary);

  font-weight: 600;

  line-height: 30px;

  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__title {

  position: relative;

  font-size: 90px;

  color: var(--oxpins-white);

  font-weight: 900;

  line-height: 110px;

  letter-spacing: -0.04em;

  margin-top: 14px;

  margin-bottom: 25px;

  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: block;

  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 {

  font-weight: 800;

}



.main-slider-three__btn:hover {

  color: var(--oxpins-base);

}



.main-slider-three__btn:before {

  background-color: var(--oxpins-white);

}



.main-slider-three .swiper-slide-active .main-slider-three__sub-title,

.main-slider-three .swiper-slide-active .main-slider-three__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);

}



/*--------------------------------------------------------------

# About One

--------------------------------------------------------------*/

.about-one {

  position: relative;

  display: block;

  padding: 80px 0 60px;

  z-index: 1;

}



.about-one__shape-box-1 {

  position: absolute;

  top: 0;

  left: 0;

  height: 690px;

  width: 625px;

  background-color: var(--oxpins-extra);

  z-index: -1;

}



.about-one__shape-1 {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-repeat: no-repeat;

  background-position: center;

  mix-blend-mode: luminosity;

  opacity: 0.15;

}



.about-one__left {

  position: relative;

  display: block;

  margin-right: 100px;

}



.about-one__img-box {

  position: relative;

  display: block;

}



.about-one__img {

  position: relative;

  display: block;

}



.about-one__img img {

  width: 100%;

  border-top-right-radius: 100px;

  border-bottom-left-radius: 335px;

  border-bottom-right-radius: 335px;

}



.about-one__img-border {

  position: absolute;

  top: -30px;

  left: -30px;

  height: 600px;

  width: 430px;

  border: 6px solid var(--oxpins-primary);

  border-bottom-left-radius: 300px;

  border-bottom-right-radius: 300px;

}



.about-one__curved-circle-box {

  position: absolute;

  bottom: 0;

  right: 0;

  height: 200px;

  width: 200px;

  border-radius: 50%;

  background-color: rgb(241, 241, 241);

  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1), inset 0px 0px 16px 0px rgba(0, 0, 0, 0.13);

}



.about-one__curved-circle-box .curved-circle {

  position: absolute;

  top: 18px;

  right: 18px;

  bottom: 18px;

  left: 18px;

  font-size: 16px;

  font-weight: 500;

  color: var(--oxpins-black);

  text-transform: uppercase;

  display: flex;

  justify-content: center;

  align-items: center;

  letter-spacing: 0.005em;

}



.about-one__curved-circle-icon {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  display: flex;

  align-items: center;

  justify-content: center;

}



.about-one__curved-circle-icon img {

  width: auto;

}



.about-one__shape-2 {

  position: absolute;

  top: 280px;

  left: -120px;

}



.about-one__shape-2 img {

  width: auto;

}



.about-one__shape-3 {

  position: absolute;

  bottom: 125px;

  left: -55px;

}



.about-one__shape-3 img {

  width: auto;

}



.about-one__shape-4 {

  position: absolute;

  bottom: 265px;

  right: -70px;

}



.about-one__shape-4 img {

  width: auto;

}



.about-one__right {

  position: relative;

  display: block;

}



.about-one__right .section-title {

  margin-bottom: 28px;

}



.about-one__fund {

  position: relative;

  display: block;

  padding-left: 25px;

  margin-top: 34px;

  margin-bottom: 43px;

}



.about-one__fund:before {

  content: "";

  position: absolute;

  top: 8px;

  bottom: 7px;

  left: 0;

  width: 6px;

  background-color: var(--oxpins-base);

}



.about-one__fund-text {

  font-size: 18px;

  font-weight: 500;

  color: var(--oxpins-black);

  line-height: 34px;

}



.about-one__fund-text span {

  color: var(--oxpins-primary);

  font-weight: 800;

}



.about-one__points {

  position: relative;

  display: flex;

  align-items: center;

  margin-bottom: 41px;

}



.about-one__points li {

  position: relative;

  display: flex;

}



.about-one__points li + li {

  margin-left: 19px;

}



.about-one__points li .icon {

  position: relative;

  display: inline-block;

  z-index: 1;

}



.about-one__points li .icon:before {

  content: "";

  position: absolute;

  top: -10px;

  left: -10px;

  height: 43px;

  width: 43px;

  background-color: var(--oxpins-extra);

  border-radius: 50%;

  transition: all 500ms linear;

  transition-delay: 0.1s;

  transform: scale(1);

  z-index: -1;

}



.about-one__points li:hover .icon:before {

  transform: scale(1.2);

}



.about-one__points li .icon span {

  position: relative;

  display: inline-block;

  font-size: 65px;

  color: var(--oxpins-base);

  transition: all 500ms linear;

  transition-delay: 0.1s;

  transform: scale(1);

}



.about-one__points li:hover .icon span {

  transform: scale(0.9);

}



.about-one__points li .text {

  margin-left: 20px;

  margin-top: -5px;

}



.about-one__points li .text h5 {

  font-size: 20px;

  line-height: 30px;

  font-weight: 900;

  margin-bottom: 7px;

}



.about-one__points li .text h5 a {

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.about-one__points li:hover .text h5 a {

  color: var(--oxpins-base);

}



.about-one__points li .text p {

  font-size: 16px;

}



/*--------------------------------------------------------------

# Causes One

--------------------------------------------------------------*/

.causes-one {

  position: relative;

  display: block;

  padding: 0 0 40px;

}



.causes-one__single {

  position: relative;

  display: block;

  margin-bottom: 30px;

}



.causes-one__img {

  position: relative;

  display: block;

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-top-right-radius: var(--oxpins-bdr-radius);

  overflow: hidden;

  z-index: 1;

}



.causes-one__img:before {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  content: "";

  background-color: rgba(var(--oxpins-black-rgb), 0.3);

  opacity: 1;

  -webkit-transition: 0.5s;

  -o-transition: 0.5s;

  transition: 0.5s;

  -webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);

  -ms-transform: perspective(400px) rotateX(-90deg) scale(0.2);

  transform: perspective(400px) rotateX(-90deg) scale(0.2);

  -webkit-transform-origin: top;

  -ms-transform-origin: top;

  transform-origin: top;

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-top-right-radius: var(--oxpins-bdr-radius);

  z-index: 1;

}



.causes-one__single:hover .causes-one__img:before {

  opacity: 1;

  -webkit-transform: perspective(400px) rotateX(0deg) scale(1);

  -ms-transform: perspective(400px) rotateX(0deg) scale(1);

  transform: perspective(400px) rotateX(0deg) scale(1);

}



.causes-one__img img {

  width: 100%;

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-top-right-radius: var(--oxpins-bdr-radius);

  transition-delay: 0.1s;

  transition-timing-function: ease-in-out;

  transition-duration: 0.7s;

  transition-property: all;

}



.causes-one__single:hover .causes-one__img img {

  transform: scale(1.1) rotate(2deg);

}



.causes-one__cat {

  position: absolute;

  bottom: 30px;

  left: 30px;

  background-color: var(--oxpins-primary);

  padding: 6px 25px;

  border-radius: 15px;

  z-index: 2;

}



.causes-one__cat p {

  font-size: 18px;

  color: var(--oxpins-black);

  line-height: 18px;

  font-family: var(--oxpins-font-three);

  font-weight: 700;

}



.causes-one__content {

  position: relative;

  display: block;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);

  border-bottom-left-radius: var(--oxpins-bdr-radius);

  border-bottom-right-radius: var(--oxpins-bdr-radius);

  border: 1px solid var(--oxpins-bdr-color);

  padding: 22px 30px 30px;

  border-top: 0;

}



.causes-one__title {

  font-size: 26px;

  line-height: 29px;

  font-weight: 800;

    text-align: center;

  letter-spacing: -0.04em;

}



.causes-one__title a {

  color: var(--oxpins-base);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.causes-one__title a:hover {

  color: var(--oxpins-primary);

}



.causes-one__text {

  padding-top: 11px;

  padding-bottom: 0;

}



.causes-one__progress {

  position: relative;

  display: block;

  width: 100%;

  padding: 49px 29px 20px;

  background-color: var(--oxpins-extra);

  border-radius: var(--oxpins-bdr-radius);

  border: 1px solid var(--oxpins-bdr-color);

  z-index: 1;

}



.causes-one__progress-shape {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  mix-blend-mode: luminosity;

  opacity: 0.2;

  z-index: -1;

}



.causes-one__progress .bar {

  position: relative;

  width: 100%;

  height: 7px;

  background: var(--oxpins-white);

  border-radius: 5px;

  margin-bottom: 3px;

}



.causes-one__progress .bar-inner {

  position: relative;

  display: block;

  width: 0px;

  height: 7px;

  border-radius: 5px;

  background: var(--oxpins-base);

  -webkit-transition: all 1500ms ease;

  -ms-transition: all 1500ms ease;

  -o-transition: all 1500ms ease;

  -moz-transition: all 1500ms ease;

  transition: all 1500ms ease;

}



.causes-one__progress .count-text {

  position: absolute;

  right: 0;

  bottom: 11px;

  color: var(--oxpins-base);

  line-height: 20px;

  font-size: 12px;

  text-align: center;

  font-weight: 700;

  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;

}



.causes-one__progress .bar-inner.counted .count-text {

  opacity: 1;

}



.causes-one__progress .count-text:after {

  content: "";

  position: absolute;

  left: 5px;

  top: 17px;

  height: 20px;

  width: 20px;

  background-color: var(--oxpins-base);

  border-radius: 50%;

}



.causes-one__progress .count-text:before {

  content: "";

  position: absolute;

  left: 12px;

  top: 24px;

  height: 6px;

  width: 6px;

  background-color: var(--oxpins-white);

  border-radius: 50%;

  z-index: 1;

}



.causes-one__goals {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

}



.causes-one__goals > p {

  font-size: 14px;

  color: #707876;

  font-weight: 400;

  margin: 0;

}



.causes-one__goals > p > span {

  font-size: 14px;

  color: var(--oxpins-black);

  font-weight: 700;

  line-height: 28px;

}



/*--------------------------------------------------------------

# Become Volunteer One

--------------------------------------------------------------*/

.become-volunteer-one {

  position: relative;

  display: block;

  z-index: 1;

  padding: 113px 0 120px;

}



.become-volunteer-one__bg-box {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-color: var(--oxpins-base);

  z-index: -1;

}



.become-volunteer-one__bg {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  mix-blend-mode: luminosity;

  opacity: 0.6;

}



.become-volunteer-one__shape-1 {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 106px;

  background-repeat: no-repeat;

  background-position: bottom center;

  background-size: cover;

  z-index: -1;

}



.become-volunteer-one__inner {

  position: relative;

  display: block;

  text-align: center;

}



.become-volunteer-one__sub-title {

  font-size: 24px;

  color: var(--oxpins-primary);

  font-weight: 700;

  font-family: var(--oxpins-font-three);

}



.become-volunteer-one__title {

  font-size: 50px;

  color: var(--oxpins-white);

  font-weight: 900;

  letter-spacing: -0.04em;

  line-height: 62px;

  margin-top: 9px;

  margin-bottom: 36px;

}



.become-volunteer-one__btn {

  font-weight: 800;

}



/*--------------------------------------------------------------

# Events One

--------------------------------------------------------------*/

.events-one {

  position: relative;

  display: block;

  background-color: var(--oxpins-extra);

  padding: 60px 0 100px;

  z-index: 1;

}



.events-one-shape-1 {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  mix-blend-mode: luminosity;

  opacity: 0.15;

  z-index: -1;

}



.events-one__left {

  position: relative;

  display: block;

  z-index: 3;

}



.events-one__left .section-title {

  margin-bottom: 28px;

}



.events-one__text-1 {

  font-size: 16px;

  margin-right: 83px;

  color: #707876;

}



.events-one__btn {

  margin-top: 41px;

}



.events-one__right {

  position: relative;

  display: block;

  margin-left: -30px;

  margin-right: -50px;

}



.events-one__carousel {

  position: relative;

  display: block;

}



.events-one__single {

  position: relative;

  display: block;

  -webkit-box-shadow: 0px 12px 15px 0px rgba(0, 0, 0, 0.2);

  box-shadow: 0px 12px 15px 0px rgba(0, 0, 0, 0.2);

  border-radius: var(--oxpins-bdr-radius);

}



.events-one__img {

  position: relative;

  display: block;

  overflow: hidden;

  border-radius: var(--oxpins-bdr-radius);

  z-index: 1;

}



.events-one__img:before {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  content: "";

  background: rgb(33, 45, 43);

  background: linear-gradient(180deg, rgba(33, 45, 43, 0.0088410364) 17%, rgb(33, 45, 43) 97%);

  z-index: 1;

}



.events-one__img:after {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  content: "";

  background-color: rgba(var(--oxpins-black-rgb), 0.3);

  transform: scale(1, 0);

  transition: transform 500ms ease;

  transform-origin: top center;

  border-radius: var(--oxpins-bdr-radius);

  z-index: 1;

}



.events-one__single:hover .events-one__img:after {

  transform: scale(1, 1);

  transform-origin: bottom center;

}



.events-one__img img {

  width: 100%;

  border-radius: var(--oxpins-bdr-radius);

  transform: scale(1);

  transition: transform 500ms ease;

}



.events-one__single:hover .events-one__img img {

  transform: scale(1.05);

}



.events-one__date {

  position: absolute;

  top: 20px;

  right: 20px;

  background-color: var(--oxpins-primary);

  padding: 6px 25px;

  border-radius: 15px;

  z-index: 2;

}



.events-one__date p {

  font-size: 18px;

  color: var(--oxpins-black);

  line-height: 18px;

  font-family: var(--oxpins-font-three);

  font-weight: 700;

}



.events-one__content {

  position: absolute;

  bottom: 24px;

  left: 30px;

  z-index: 2;

}



.events-one__meta {

  position: relative;

  display: flex;

  align-items: center;

}



.events-one__meta li {

  position: relative;

  display: flex;

  align-items: center;

  font-size: 14px;

  color: var(--oxpins-white);

  font-weight: 600;

}



.events-one__meta li + li {

  margin-left: 6px;

}



.events-one__meta li i {

  padding-right: 5px;

  color: var(--oxpins-primary);

}



.events-one__title {

  font-size: 24px;
color: #fff;
  font-weight: 900;

  letter-spacing: -0.04em;

  line-height: 28px;

}



.events-one__title a {

  color: var(--oxpins-white);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.events-one__single:hover .events-one__title a {

  color: var(--oxpins-primary);

}



.events-one__carousel.owl-carousel .owl-stage-outer {

  overflow: visible;

}



.events-one__carousel.owl-carousel .owl-item {

  opacity: 0;

  visibility: hidden;

  transition: opacity 500ms ease, visibility 500ms ease;

}



.events-one__carousel.owl-carousel .owl-item.active {

  opacity: 1;

  visibility: visible;

}



.events-one__carousel.owl-theme .owl-nav {

  position: absolute;

  bottom: -70px;

  right: 0px;

  margin: 0;

}



.events-one__carousel.owl-theme .owl-nav .owl-next {

  height: 50px;

  width: 50px;

  line-height: 50px;

  border-radius: 50%;

  color: var(--oxpins-black);

  border: 2px solid var(--oxpins-black);

  font-size: 15px;

  margin: 0;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.events-one__carousel.owl-theme .owl-nav .owl-prev {

  height: 50px;

  width: 50px;

  line-height: 50px;

  border-radius: 50%;

  color: var(--oxpins-black);

  border: 2px solid var(--oxpins-black);

  font-size: 15px;

  margin: 0;

  text-align: center;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.events-one__carousel.owl-theme .owl-nav .owl-next {

  margin-left: 5px;

}



.events-one__carousel.owl-theme .owl-nav .owl-prev {

  margin-right: 5px;

}



.events-one__carousel.owl-theme .owl-nav .owl-next:hover,

.events-one__carousel.owl-theme .owl-nav .owl-prev:hover {

  background-color: var(--oxpins-base);

  color: var(--oxpins-white);

  border: 2px solid var(--oxpins-base);

}



/*--------------------------------------------------------------

# Feature One

--------------------------------------------------------------*/

.feature-one {

  position: relative;

  display: block;

  padding: 60px 0 40px;

}



.feature-one .container {

  max-width: 1120px;

}



.feature-one__single {

  position: relative;

  display: block;

  background-color: var(--oxpins-base);

  border-radius: var(--oxpins-bdr-radius);

  padding: 50px 50px 50px;

  margin-bottom: 30px;

  z-index: 1;

}



.feature-one__single-bg {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  border-radius: var(--oxpins-bdr-radius);

  z-index: -1;

}



.feature-one__top {

  position: relative;

  display: block;

}



.feature-one__top-inner {

  position: relative;

  display: flex;

  align-items: center;

}



.feature-one__top-icon {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  height: 117px;

  width: 117px;

  background-color: var(--oxpins-base);

  border-radius: 50%;

  font-size: 65px;

  color: var(--oxpins-white);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.feature-one__top-icon:hover {

  background-color: var(--oxpins-primary);

  color: var(--oxpins-black);

}



.feature-one__top-title-box {

  margin-left: 30px;

}



.feature-one__top-title {

  font-size: 34px;

  font-weight: 900;

  line-height: 40px;

  letter-spacing: -0.04em;

}



.feature-one__top-title a {

  color: var(--oxpins-white);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.feature-one__top-title a:hover {

  color: var(--oxpins-primary);

}



.feature-one__text {

    font-size: 23px;

    color: #ffffff;

    font-family: var(--oxpins-font-three);

    font-weight: 700;

    line-height: 34px;

    padding-top: 21px;

    padding-bottom: 14px;

}



.feature-one__point {

  position: relative;

  display: block;

  margin-bottom: 43px;

}



.feature-one__point li {

  position: relative;

  display: flex;

  align-items: center;

}



.feature-one__point li + li {

  margin-top: 5px;

}



.feature-one__point li .icon {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  height: 16px;

  width: 16px;

  border-radius: 50%;

  background-color: var(--oxpins-white);

}



.feature-one__point li .icon span {

  color: var(--oxpins-black);

  font-size: 10px;

}



.feature-one__point li .text {

  margin-left: 15px;

}



.feature-one__point li .text p {

  font-size: 16px;

  color: var(--oxpins-white);

  font-weight: 600;

}



.feature-one__btn {

  font-weight: 800;

  background-color: var(--oxpins-white);

  padding: 8px 50px 8px;

}



.feature-one__btn:hover {

  color: var(--oxpins-black);

}



.feature-one__btn:before {

  background-color: var(--oxpins-primary);

}



.feature-one__single--two {

  background-color: var(--oxpins-primary);

}



.feature-one__top-icon--two {

  background-color: var(--oxpins-primary);

  color: var(--oxpins-black);

}



.feature-one__top-icon--two:hover {

  background-color: var(--oxpins-base);

  color: var(--oxpins-white);

}



.feature-one__single--two .feature-one__btn:hover {

  color: var(--oxpins-white);

}



.feature-one__single--two .feature-one__btn:before {

  background-color: var(--oxpins-base);

}



/*--------------------------------------------------------------

# Brand One

--------------------------------------------------------------*/

.brand-one {

  position: relative;

  display: block;

  border-top: 1px solid var(--oxpins-bdr-color);

  padding: 60px 0 60px;

}



.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: 1;

  max-width: 100%;

}



.brand-one .swiper-slide img:hover {

  opacity: 1;

}



/*--------------------------------------------------------------

# Site Footer

--------------------------------------------------------------*/

.testimonial-one {

  position: relative;

  display: block;

  background-color: var(--oxpins-black);

  padding: 120px 0 130px;

  z-index: 1;

}



.testimonial-one-bg {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  mix-blend-mode: luminosity;

  opacity: 0.1;

  z-index: -1;

}



.testimonial-one__left {

  position: relative;

  display: block;

  margin-right: 100px;

  z-index: 3;

}



.testimonial-one__left .section-title {

  margin-bottom: 28px;

}



.testimonial-one__left .section-title__tagline {

  color: var(--oxpins-primary);

}



.testimonial-one__left .section-title__title {

  color: var(--oxpins-white);

}



.testimonial-one__text-1 {

  font-size: 16px;

  color: #98a8a5;

  padding-bottom: 41px;

}



.testimonial-one__btn:hover {

  color: var(--oxpins-black);

}



.testimonial-one__btn:before {

  background-color: var(--oxpins-white);

}



.testimonial-one__right {

  position: relative;

  display: block;

  margin-top: 100px;

}



.testimonial-one__img-1 {

  position: absolute;

  top: -158px;

  left: -168px;

}



.testimonial-one__img-1 img {

  height: 108px;

  width: 108px;

  border: 5px solid var(--oxpins-primary);

  border-radius: 50%;

  opacity: 0.3;

}



.testimonial-one__img-2 {

  position: absolute;

  top: inherit;

  left: -132px;

  bottom: -65px;

}



.testimonial-one__img-2 img {

  height: 92px;

  width: 92px;

}



.testimonial-one__img-3 {

  position: absolute;

  top: -92px;

  right: -137px;

  left: inherit;

}



.testimonial-one__img-3 img {

  height: 92px;

  width: 92px;

}



.testimonial-one__img-4 {

  position: absolute;

  bottom: -76px;

  right: -239px;

  top: inherit;

  left: inherit;

}



.testimonial-one__img-4 img {

  height: 130px;

  width: 130px;

}



.testimonial-one__carousel {

  position: relative;

  display: block;

}



.testimonial-one__single {

  position: relative;

  display: block;

  padding: 72px 50px 44px;

  background-color: var(--oxpins-white);

  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);

  border-radius: 20px;

  border: 5px solid var(--oxpins-primary);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  z-index: 1;

}



.testimonial-one__single:hover {

  transform: translateY(-10px);

}



.testimonial-one__shape-1 {

  position: absolute;

  top: -47px;

  left: 171px;

  width: 44px;

  height: 47px;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  z-index: -1;

}



.testimonial-one__client-img {

  position: absolute;

  top: -95px;

  left: 50px;

}



.testimonial-one__client-img img {

  width: 150px !important;

  height: 150px !important;

  border-radius: 50%;

  border: 5px solid var(--oxpins-primary);

}



.testimonial-one__client-info {

  position: absolute;

  top: -87px;

  left: 225px;

}



.testimonial-one__client-name {

  font-size: 30px;

  font-weight: 900;

  line-height: 36px;

  letter-spacing: -0.04em;

  color: var(--oxpins-white);

}



.testimonial-one__client-sub-title {

  font-size: 24px;

  color: var(--oxpins-primary);

  font-weight: 700;

  font-family: var(--oxpins-font-three);

  line-height: 24px;

}



.testimonial-one__quote {

  height: 70px;

  width: 70px;

  background-color: var(--oxpins-base);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  position: absolute;

  top: -35px;

  right: 50px;

}



.testimonial-one__quote span {

  font-size: 30px;

  color: var(--oxpins-white);

}



.testimonial-one__text-2 {

  font-size: 20px;

  color: #6f7775;

  line-height: 36px;

}



.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-theme .owl-nav {

  position: absolute;

  bottom: -20px;

  right: 40px;

  margin: 0;

}



.testimonial-one__carousel.owl-theme .owl-nav .owl-next {

  height: 50px;

  width: 50px;

  line-height: 50px;

  border-radius: 50%;

  color: var(--oxpins-black);

  background-color: var(--oxpins-white);

  font-size: 15px;

  margin: 0;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.testimonial-one__carousel.owl-theme .owl-nav .owl-prev {

  height: 50px;

  width: 50px;

  line-height: 50px;

  border-radius: 50%;

  color: var(--oxpins-black);

  background-color: var(--oxpins-white);

  font-size: 15px;

  margin: 0;

  text-align: center;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.testimonial-one__carousel.owl-theme .owl-nav .owl-next {

  margin-left: 5px;

}



.testimonial-one__carousel.owl-theme .owl-nav .owl-prev {

  margin-right: 5px;

}



.testimonial-one__carousel.owl-theme .owl-nav .owl-next:hover,

.testimonial-one__carousel.owl-theme .owl-nav .owl-prev:hover {

  background-color: var(--oxpins-base);

  color: var(--oxpins-white);

}



/*--------------------------------------------------------------

# Gallery One

--------------------------------------------------------------*/

.gallery-one {

  position: relative;

  display: block;

}



.gallery-one__top {

  position: relative;

  display: block;

  background-color: var(--oxpins-primary);

  text-align: center;

  padding: 58px 0;

}



.gallery-one__top:before {

  content: "";

  position: absolute;

  bottom: -10px;

  left: 50%;

  transform: translateX(-50%);

  border-left: 18px solid transparent;

  border-right: 18px solid transparent;

  border-top: 10px solid var(--oxpins-primary);

}



.gallery-one__top-title {

  font-size: 40px;

  font-weight: 900;

  line-height: 40px;

  letter-spacing: -0.04em;

}



.gallery-one__bottom {

  position: relative;

  display: block;

  padding-top: 70px;

  padding-bottom: 40px;

}



.gallery-one__container {

  position: relative;

  display: block;

  max-width: 1670px;

  width: 100%;

  margin: 0 auto;

  padding: 0 15px;

}



.gallery-one__list {

  position: relative;

  display: block;

  margin-right: -5px;

  margin-left: -5px;

  overflow: hidden;

}



.gallery-one__single {

  position: relative;

  display: block;

  float: left;

  width: 20%;

  padding: 0 5px 0;

  overflow: hidden;

  margin-bottom: 30px;

}



.gallery-one__img {

  position: relative;

  display: block;

  overflow: hidden;

  border-radius: var(--oxpins-bdr-radius);

  z-index: 1;

}



.gallery-one__img:before {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  border-radius: var(--oxpins-bdr-radius);

  content: "";

  background: rgb(250, 211, 91);

  background: linear-gradient(180deg, rgb(244 197 54 / 44%) 40%, rgb(250, 211, 90) 100%);

  -webkit-transition: all 700ms ease;

  -ms-transition: all 700ms ease;

  -o-transition: all 700ms ease;

  transition: all 700ms ease;

  -webkit-transform: translateY(100%);

  -ms-transform: translateY(100%);

  -o-transform: translateY(100%);

  -moz-transform: translateY(100%);

  transform: translateY(100%);

}



.gallery-one__single:hover .gallery-one__img:before {

  -webkit-transform: translateY(0%);

  -ms-transform: translateY(0%);

  -o-transform: translateY(0%);

  -moz-transform: translateY(0%);

  transform: translateY(0%);

}



.gallery-one__img img {

  width: 100%;

  border-radius: var(--oxpins-bdr-radius);

}



.gallery-one__content {

  position: absolute;

  left: 0;

  right: 0;

  bottom: 44px;

  text-align: center;

  transform: translateY(-100px);

  opacity: 0;

  -webkit-transition: all 700ms ease;

  -ms-transition: all 700ms ease;

  -o-transition: all 700ms ease;

  transition: all 700ms ease;

}



.gallery-one__single:hover .gallery-one__content {

  -webkit-transform: translateY(0%);

  -ms-transform: translateY(0%);

  -o-transform: translateY(0%);

  -moz-transform: translateY(0%);

  transform: translateY(0%);

  opacity: 1;

}



.gallery-one__single .img-popup {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 10;

}



.gallery-one__sub-title {

  font-size: 24px;

  color: #303192;

  font-weight: 700;

  line-height: 24px;

  font-family: var(--oxpins-font-three);

  padding-bottom: 8px;

}



.gallery-one__title {

  font-size: 34px;

  font-weight: 900;

  letter-spacing: -0.04em;

  line-height: 34px;

}



.gallery-one__title a {

  color: #303192;

}



/*--------------------------------------------------------------

# FAQ One

--------------------------------------------------------------*/

.faq-one {

  position: relative;

  display: block;

  background-color: var(--oxpins-extra);

  padding: 120px 0 160px;

  z-index: 1;

}



.faq-one-shape-1 {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-position: center;

  background-size: cover;

  background-repeat: no-repeat;

  mix-blend-mode: luminosity;

  opacity: 0.15;

  z-index: -1;

}



.faq-one-bg {

  position: absolute;

  top: 0;

  left: 0;

  width: 807px;

  height: 626px;

  opacity: 0.08;

  z-index: -1;

}



.faq-one__left {

  position: relative;

  display: block;

}



.faq-one__left .section-title {

  margin-bottom: 28px;

}



.faq-one__text-1 {

  font-size: 16px;

  padding-bottom: 41px;

  margin-right: 70px;

}



.faq-one__btn {

  font-weight: 800;

}



.faq-one-accrodion .accrodion {

  position: relative;

  display: block;

  border: 2px solid var(--oxpins-bdr-color);

  border-radius: 35px;

  background-color: var(--oxpins-white);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.faq-one-accrodion .accrodion.active {

  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.05);

}



.faq-one-accrodion .accrodion-title {

  position: relative;

  display: block;

  cursor: pointer;

  padding: 21px 40px 21px;

  transition: all 200ms linear;

  transition-delay: 0.1s;

  border-radius: 35px;

}



.faq-one-accrodion .accrodion-title h4 {

  margin: 0;

  font-size: 16px;

  font-weight: 800;

  line-height: 28px;

  color: var(--oxpins-black);

  letter-spacing: -0.02em;

  position: relative;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  z-index: 1;

}



.faq-one-accrodion .accrodion + .accrodion {

  margin-top: 20px;

}



.faq-one-accrodion .accrodion.active .accrodion-title {

  color: var(--oxpins-base);

}



.faq-one-accrodion .accrodion.active .accrodion-title h4 {

  color: var(--oxpins-base);

}



.faq-one-accrodion .accrodion-title h4::before {

  content: "\f067";

  font-family: "Font Awesome 5 Free";

  font-weight: 900;

  font-size: 8px;

  color: var(--oxpins-extra);

  background-color: var(--oxpins-black);

  position: absolute;

  top: 50%;

  right: -13px;

  height: 15px;

  width: 15px;

  line-height: 15px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  -webkit-transform: translateY(-50%);

  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: "\f068";

  color: var(--oxpins-primary);

  background-color: var(--oxpins-black);

  height: 15px;

  width: 15px;

  border-radius: 50%;

  text-align: center;

  display: flex;

  justify-content: center;

  align-items: center;

}



.faq-one-accrodion .accrodion .accrodion-title h4::after {

  content: "";

  position: absolute;

  top: 50%;

  right: -30px;

  transform: translateY(-50%);

  height: 50px;

  width: 50px;

  background-color: var(--oxpins-extra);

  border-radius: 50%;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  z-index: -1;

}



.faq-one-accrodion .accrodion.active .accrodion-title h4::after {

  background-color: var(--oxpins-primary);

}



.faq-one-accrodion .accrodion-content {

  position: relative;

  padding: 0px 40px 21px;

  margin-top: -9px;

}



.faq-one-accrodion .accrodion-content p {

  margin: 0;

  font-size: 16px;

}



/*--------------------------------------------------------------

# Counter One

--------------------------------------------------------------*/

.counter-one {

  position: relative;

  display: block;

  margin-top: -40px;

}



.counter-one__inner {

  position: relative;

  display: block;

  background-color: var(--oxpins-base);

  padding: 55px 0 29px;

  border-radius: var(--oxpins-bdr-radius);

  overflow: hidden;

  z-index: 1;

}



.counter-one-bg {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  border-radius: var(--oxpins-bdr-radius);

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  mix-blend-mode: luminosity;

  opacity: 0.08;

  z-index: -1;

}



.counter-one__list {

  position: relative;

  display: flex;

  align-items: center;

  flex-wrap: wrap;

}



.counter-one__single {

  position: relative;

  flex: 0 0 25%;

  max-width: 25%;

  width: 100%;

  text-align: center;

  margin-bottom: 33px;

}



.counter-one__single:before {

  position: absolute;

  top: 5px;

  bottom: -2px;

  left: 0;

  content: "";

  width: 1px;

  background-color: rgba(var(--oxpins-white-rgb), 0.1);

}



.counter-one__single:first-child:before {

  display: none;

}



.counter-one__count-box {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 7px;

}



.counter-one__count-box h3 {

  font-size: 60px;

  color: var(--oxpins-white);

  font-weight: 900;

  font-family: var(--oxpins-font-two) !important;

  letter-spacing: -0.04em;

  line-height: 60px !important;

}



.counter-one__letter {

  font-size: 60px;

  color: var(--oxpins-white);

  font-weight: 900;

  font-family: var(--oxpins-font-two);

  letter-spacing: -0.04em;

  line-height: 60px;

  position: relative;

  top: -4px;

}



.counter-one__text {

  position: relative;

  display: inline-block;

  font-size: 24px;

  color: #89d3c6;

  font-weight: 700;

  font-family: var(--oxpins-font-three);

  line-height: 24px;

}



.counter-one__text:before {

  position: absolute;

  bottom: -7px;

  left: 0;

  right: 0;

  content: "";

  height: 2px;

  background-color: var(--oxpins-primary);

  transition: transform 500ms ease;

  transform: scale(0, 1);

  transform-origin: right center;

}



.counter-one__single:hover .counter-one__text:before {

  transform: scale(1, 1);

  transform-origin: left center;

}



/*--------------------------------------------------------------

# News One

--------------------------------------------------------------*/

.news-one {

  position: relative;

  display: block;

  padding: 120px 0 90px;

}



.news-one__single {

  position: relative;

  display: block;

  margin-bottom: 30px;

}



.news-one__img {

  position: relative;

  display: block;

  overflow: hidden;

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-top-right-radius: var(--oxpins-bdr-radius);

  z-index: 1;

}



.news-one__img:before {

  position: absolute;

  content: "";

  left: 0px;

  bottom: 0px;

  width: 100%;

  height: 0px;

  background-color: rgba(var(--oxpins-black-rgb), 0.3);

  visibility: hidden;

  opacity: 0;

  transform-style: preserve-3d;

  transform: perspective(370px) rotateY(90deg) translate(0px, 50px);

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-top-right-radius: var(--oxpins-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;

}



.news-one__single:hover .news-one__img:before {

  visibility: visible;

  opacity: 1;

  transform: perspective(370px) rotateY(0deg) translate(0px, 0px);

  height: 100%;

}



.news-one__img img {

  width: 100%;

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-top-right-radius: var(--oxpins-bdr-radius);

  -webkit-transform: scale(1);

  transform: scale(1);

  -webkit-transition: -webkit-transform 0.4s ease;

  transition: -webkit-transform 0.4s ease;

  transition: transform 0.4s ease;

  transition: transform 0.4s ease, -webkit-transform 0.4s ease;

}



.news-one__single:hover .news-one__img img {

  -webkit-transform: scale(1.05);

  transform: scale(1.05);

}



.news-one__date {

  position: absolute;

  left: 30px;

  top: -15px;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);

  padding: 6px 25px 6px;

  border-radius: 15px;

  z-index: 2;

}



.news-one__date p {

  font-size: 18px;

  color: var(--oxpins-base);

  font-family: var(--oxpins-font-three);

  font-weight: 700;

  line-height: 18px;

}



.news-one__content-box {

  position: relative;

  display: block;

  border: 1px solid var(--oxpins-bdr-color);

  border-bottom-left-radius: var(--oxpins-bdr-radius);

  border-bottom-right-radius: var(--oxpins-bdr-radius);

  border-top: 0;

  background-color: rgb(255, 255, 255);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.news-one__single:hover .news-one__content-box {

  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);

}



.news-one__content-inner {

  position: relative;

  display: block;

  overflow: hidden;

}



.news-one__content {

  position: relative;

  display: block;

  padding: 37px 25px 23px;

}



.news-one__meta {

  position: relative;

  display: flex;

  align-items: center;

}



.news-one__meta li + li {

  margin-left: 15px;

}



.news-one__meta li a {

  font-size: 14px;

  color: var(--oxpins-gray);

  font-weight: 600;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.news-one__meta li a:hover {

  color: var(--oxpins-base);

}



.news-one__meta li a i {

  color: var(--oxpins-primary);

  padding-right: 3px;

}



.news-one__title {

  font-size: 26px;

  font-weight: 900;

  line-height: 31px;

  letter-spacing: -0.04em;

  margin-top: 3px;

}



.news-one__title a {

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.news-one__title a:hover {

  color: var(--oxpins-base);

}



.news-one__bottom {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 19px 27px 19px;

  border-top: 1px solid var(--oxpins-bdr-color);

}



.news-one__read-more {

  position: relative;

  display: block;

}



.news-one__read-more a {

  font-size: 14px;

  font-weight: 700;

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.news-one__read-more a:hover {

  color: var(--oxpins-base);

}



.news-one__read-more a span {

  font-size: 16px;

  position: relative;

  top: 2px;

  padding-right: 6px;

}



.news-one__share {

  position: relative;

  display: block;

}



.news-one__share a {

  font-size: 15px;

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.news-one__share a:hover {

  color: var(--oxpins-base);

}



.news-one__social-box {

  position: absolute;

  bottom: 50px;

  right: 20px;

  background-color: var(--oxpins-primary);

  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);

  padding: 15px 7px;

  border-radius: 15px;

  transform: translateX(175%);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  z-index: 2;

}



.news-one__social-box.active {

  transform: translateX(0%);

}



.news-one__social {

  position: relative;

  display: block;

}



.news-one__social li {

  position: relative;

  display: block;

}



.news-one__social li + li {

  margin-top: 15px;

}



.news-one__social li a {

  position: relative;

  display: flex;

  font-size: 16px;

  color: var(--oxpins-black);

  align-items: center;

  justify-content: center;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.news-one__social li a:hover {

  color: var(--oxpins-base);

}



/*--------------------------------------------------------------

# Site Footer

--------------------------------------------------------------*/
.home_page .site-footer{
    margin-top: -46px;
}

.site-footer {

  position: relative;

  display: block;

  background-color: #303192;

  z-index: 1;
    
}



.site-footer-bg {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  mix-blend-mode: luminosity;

  opacity: 0.03;

  z-index: -1;

}



.footer-widget__title {

  font-size: 20px;

  color: var(--oxpins-white);

  font-weight: 800;

  line-height: 20px;

  margin-bottom: 27px;

  letter-spacing: -0.02em;

}



.site-footer__top {

  position: relative;

  display: block;

  padding: 80px 0 60px;

}



.footer-widget__about {

  position: relative;

  display: block;

  margin-right: 84px;

}



.footer-widget__about-logo {

  position: relative;

  display: block;

}



.footer-widget__about-text-box {

  position: relative;

  display: block;

  padding-top: 16px;

  padding-bottom: 20px;

}



.footer-widget__about-text {

  color: #fff;

  font-weight: 400;

}



.footer-widget__btn {

  position: relative;

  display: block;

}



.footer-widget__btn a {

  position: relative;

  display: inline-block;

  font-size: 14px;

  font-weight: 800;

  color: var(--oxpins-black);

  background-color: var(--oxpins-primary);

  padding: 10px 40px 10px;

  text-transform: uppercase;

  border-radius: 25px;

  transition: all 500ms ease;

}



.footer-widget__btn a span {

  position: relative;

  top: 1px;

  padding-right: 9px;

}



.footer-widget__btn a:hover {

  background-color: var(--oxpins-white);

  color: var(--oxpins-base);

}



.footer-widget__links {

  position: relative;

  display: block;

}



.footer-widget__links-list {

  position: relative;

  display: block;

}



.footer-widget__links-list li {

  position: relative;

  display: block;

}



.footer-widget__links-list li + li {

  margin-top: 6px;

}



.footer-widget__links-list li a {

  position: relative;

  display: inline-block;
padding-left: 15px;
  font-size: 15px;

  color: #fff;

  font-weight: 400;

  transition: all 500ms ease;

}



.footer-widget__links-list li a:hover {

  padding-left: 15px;

  color: var(--oxpins-primary);

}



.footer-widget__links-list li a:before {

  position: absolute;

  top: 36%;

  left: 0;

  bottom: 0;

  content: "\f105";

  font-family: "Font Awesome 5 Free";

  font-weight: 900;

  transform: translateY(-50%);

  opacity: 1;

  transition: all 500ms ease;

  font-size: 15px;

  color: var(--oxpins-primary);

}



.footer-widget__links-list li a:hover:before {

  opacity: 1;

}



.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: 11px;

}



.footer-widget__non-profit-list li a {

  position: relative;

  display: inline-block;

  font-size: 15px;

  color: #98a8a5;

  font-weight: 400;

  transition: all 500ms ease;

}



.footer-widget__non-profit-list li a:hover {

  padding-left: 15px;

  color: var(--oxpins-white);

}



.footer-widget__non-profit-list li a:before {

  position: absolute;

  top: 36%;

  left: 0;

  bottom: 0;

  content: "\f105";

  font-family: "Font Awesome 5 Free";

  font-weight: 900;

  transform: translateY(-50%);

  opacity: 0;

  transition: all 500ms ease;

  font-size: 15px;

  color: var(--oxpins-primary);

}



.footer-widget__non-profit-list li a:hover:before {

  opacity: 1;

}



.footer-widget__contact {

  position: relative;

  display: block;

  margin-left: 50px;

}



.footer-widget__contact-text {

  color: #98a8a5;

  font-weight: 400;

  padding-bottom: 10px;

}



.footer-widget__contact-list {

  position: relative;

  display: block;

}



.footer-widget__contact-list li {

  position: relative;
margin-bottom: 15px;
  display: flex;

  align-items: baseline;

}



.footer-widget__contact-list li .icon {

  position: relative;

  display: flex;

  align-items: center;

}



.footer-widget__contact-list li .icon i {

  position: relative;

  display: inline-block;

  font-size: 15px;

  color: var(--oxpins-primary);

}



.footer-widget__contact-list li .text {

  margin-left: 15px;

}



.footer-widget__contact-list li .text p {

  font-weight: 700;
    font-size: 18px;
	text-align: left;
}



.footer-widget__contact-list li .text p a {

  color: var(--oxpins-white);

  transition: all 500ms ease;

}



.footer-widget__contact-list li .text p a:hover {

  color: var(--oxpins-primary);

}



.site-footer__social {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  margin-top: 22px;

}



.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(--oxpins-white);

  background-color: var(--oxpins-primary);

  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(--oxpins-base);

  background-color: var(--oxpins-white);

}



.site-footer__social a:after {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  right: 0;

  height: 100%;

  background-color: var(--oxpins-white);

  -webkit-transition-delay: 0.1s;

  transition-delay: 0.1s;

  -webkit-transition-timing-function: ease-in-out;

  transition-timing-function: ease-in-out;

  -webkit-transition-duration: 0.4s;

  transition-duration: 0.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;

}



.site-footer__bottom {

  position: relative;

  display: block;

  background-color: #05064f;

}



.site-footer__bottom-inner {

  position: relative;

  display: block;

  text-align: left;

  padding: 5px 0;

}



.site-footer__bottom-text {

  font-size: 15px;

  color: #fff;

  font-weight: 400;

}



.site-footer__bottom-text a {

  color: #98a8a5;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.site-footer__bottom-text a:hover {

  color: var(--oxpins-white);

}



/*--------------------------------------------------------------

# Feature Two

--------------------------------------------------------------*/

.feature-two {

  position: relative;

  display: block;

  padding: 40px 0 40px;

}



.feature-two__single {

  position: relative;

  display: block;

  margin-bottom: 30px;

  z-index: 1;

}



.feature-two__single-inner {

  position: relative;

  display: block;

  background-color: var(--oxpins-base);

  padding: 47px 50px 45px;

  border-radius: var(--oxpins-bdr-radius);

  overflow: hidden;

  z-index: 1;

}



.feature-two-shape-1 {

  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  width: 235px;

  z-index: -1;

  background-repeat: no-repeat;

}



.feature-two__content-box {

  position: relative;

  display: flex;

  justify-content: space-between;

}



.feature-two__content-left {

  position: relative;

  display: block;

}



.feature-two__tagline {

  font-size: 20px;
color: #ffffff;

  font-family: var(--oxpins-font-three);

  font-weight: 700;

  line-height: 24px;

}



.feature-two__title {

  font-size: 36px;

  font-weight: 900;

  line-height: 70px;

  letter-spacing: -0.04em;

}



.feature-two__title a {

  color: var(--oxpins-primary);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.feature-two__title a:hover {

  color: var(--oxpins-primary);

}



.feature-two__icon {

  position: relative;

  display: flex;

  top: 3px;

}



.feature-two__icon span {

  position: relative;

  display: inline-block;

  font-size: 65px;

  color: var(--oxpins-primary);

  transition: all 500ms linear;

  transition-delay: 0.1s;

  transform: scale(1);

}



.feature-two__single:hover .feature-two__icon span {

  transform: scale(1.2);

}



.feature-two__arrow {

  position: absolute;

  right: 50px;

  bottom: -25px;

  z-index: 2;

}



.feature-two__arrow a {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  height: 50px;

  width: 50px;

  border-radius: 50%;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);

  font-size: 15px;

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.feature-two__single:hover .feature-two__arrow a {

  background-color: var(--oxpins-primary);

  color: var(--oxpins-base);

}



/*--------------------------------------------------------------

# About Two

--------------------------------------------------------------*/

.about-two {

  position: relative;

  display: block;

  padding: 0 0 130px;

}



.about-two__left {

  position: relative;

  display: block;

  margin-right: 40px;

}



.about-two__img-box {

  position: relative;

  display: block;

}



.about-two__img-box:before {

  position: absolute;

  top: 0;

  left: -60px;

  content: "";

  height: 330px;

  width: 30px;

  border-radius: 15px;

  background-image: -moz-linear-gradient(90deg, rgb(247 148 29) 0%, rgb(48 49 146) 100%);

  background-image: -webkit-linear-gradient(90deg, rgb(247 148 29) 0%, rgb(48 49 146) 100%);

  background-image: -ms-linear-gradient(90deg, rgb(247 148 29) 0%, rgb(48 49 146) 100%);

}



.about-two__img {

  position: relative;

  display: block;

}



.about-two__img img {

  width: 100%;

  border-radius: var(--oxpins-bdr-radius);

}



.about-two__img-two {

  position: absolute;

  bottom: -30px;

  left: -60px;

}



.about-two__img-two img {

  width: auto;

  border-radius: var(--oxpins-bdr-radius);

}



.about-two__left-title-box {

  position: absolute;

  left: 90px;

  bottom: -38px;

}



.about-two__left-title {

  font-size: 60px;

  color: var(--oxpins-primary);

  font-weight: 700;

  font-family: var(--oxpins-font-three);

  line-height: 60px;

}



.about-two__shape-1 {

  position: absolute;

  left: -130px;

  bottom: 295px;

}



.about-two__shape-1 img {

  width: auto;

}



.about-two__shape-2 {

  position: absolute;

  bottom: 325px;

  left: 195px;

}



.about-two__shape-2 img {

  width: auto;

}



.about-two__shape-3 {

  position: absolute;

  right: 35px;

  bottom: -55px;

}



.about-two__shape-3 img {

  width: auto;

}



.about-two__right {

  position: relative;

  display: block;

}



.about-two__right .section-title {

  margin-bottom: 28px;

}



.about-two__text-1 {

  font-size: 16px;

}



.about-two__points {

  position: relative;

  display: flex;

  align-items: center;

  margin-top: 35px;

  margin-bottom: 36px;

}



.about-two__points li {

  position: relative;

  display: flex;

}



.about-two__points li + li {

  margin-left: 23px;

}



.about-two__points li .icon {

  position: relative;

  display: block;

  top: 7px;

}



.about-two__points li .icon span {

  position: relative;

  display: inline-block;

  font-size: 35px;

  color: var(--oxpins-base);

}



.about-two__points li .text {

  margin-left: 20px;

}



.about-two__points li .text h4 {

  font-size: 20px;

  font-weight: 900;

  line-height: 30px;

  letter-spacing: -0.04em;

}



.about-two__points li .text p {

  font-size: 16px;

}



.about-two__progress {

  position: relative;

  display: block;

  width: 100%;

  margin-bottom: 50px;

}



.about-two__progress-single {

  position: relative;

  display: block;

}



.about-two__progress-title {

  font-size: 20px;

  font-weight: 900;

  line-height: 28px;

  color: var(--oxpins-black);

  margin-bottom: 6px;

}



.about-two__progress .bar {

  position: relative;

  width: 100%;

  height: 13px;

  background-color: #f8f3e7;

  border-radius: 7px;

  margin-bottom: 14px;

}



.about-two__progress .bar-inner {

  position: relative;

  display: block;

  width: 0px;

  height: 13px;

  border-radius: 7px;

  background-color: var(--oxpins-primary);

  -webkit-transition: all 1500ms ease;

  transition: all 1500ms ease;

}



.about-two__progress .count-text {

  position: absolute;

  right: 0px;

  bottom: 21px;

  color: #707876;

  line-height: 24px;

  font-size: 16px;

  text-align: center;

  font-weight: 500;

  opacity: 0;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.about-two__progress .bar-inner.counted .count-text {

  opacity: 1;

}



.about-two__progress .bar.marb-0 {

  margin-bottom: 0;

}



.about-two__btn {

  font-weight: 800;

  background-color: var(--oxpins-base);

  color: var(--oxpins-white);

}



/*--------------------------------------------------------------

# Causes Two

--------------------------------------------------------------*/

.causes-two {

  position: relative;

  display: block;

  padding: 120px 0 120px;

  background-color: var(--oxpins-extra);

  z-index: 1;

}



.causes-two-shape-1 {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  mix-blend-mode: luminosity;

  opacity: 0.15;

  z-index: -1;

}



.causes-two__top {

  position: relative;

  display: block;

  margin-bottom: 46px;

}



.causes-two-top__left {

  position: relative;

  display: block;

  margin-right: 155px;

}



.causes-two-top__left .section-title {

  margin-bottom: 0;

}



.causes-two-top__right {

  position: relative;

  display: block;

  margin-top: 21px;

}



.causes-two-top__text {

  font-size: 16px;

}



.causes-two__tab {

  position: relative;

  display: block;

  z-index: 2;

}



.causes-two__tab-box {

  position: relative;

  display: block;

  z-index: 2;

}



.causes-two__tab-btn-box {

  position: relative;

  display: block;

  z-index: 999;

}



.causes-two__tab-box .tab-buttons {

  position: relative;

  display: block;

  z-index: 1;

}



.causes-two__tab-box .tab-buttons:before {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  content: "";

  width: 4px;

  background-color: var(--oxpins-bdr-color);

  z-index: -1;

}



.causes-two__tab-box .tab-buttons .tab-btn {

  position: relative;

  display: block;

}



.causes-two__tab-box .tab-buttons .tab-btn + .tab-btn {

  margin-left: 0px;

}



.causes-two__tab-box .tab-buttons .tab-btn span {

  position: relative;

  display: inline-block;

  -webkit-transition: all 200ms linear;

  transition: all 200ms linear;

  -webkit-transition-delay: 0.1s;

  transition-delay: 0.1s;

  font-size: 18px;

  color: var(--oxpins-gray);

  font-weight: 400;

  cursor: pointer;

  -webkit-transition: all 0.3s ease;

  transition: all 0.3s ease;

  z-index: 1;

  padding-left: 47px;

  padding-top: 10px;

  padding-bottom: 10px;

  z-index: 1;

}



.causes-two__tab-box .tab-buttons .tab-btn.active-btn span {

  color: var(--oxpins-black);

  font-weight: 800;

}



.causes-two__tab-box .tab-buttons .tab-btn span:before {

  position: absolute;

  left: 47px;

  right: 0;

  bottom: 16px;

  height: 4px;

  transform: scaleX(0);

  content: "";

  background-color: var(--oxpins-primary);

  -webkit-transition: all 0.3s ease;

  transition: all 0.3s ease;

  z-index: -1;

}



.causes-two__tab-box .tab-buttons .tab-btn.active-btn span:before {

  transform: scaleX(1);

}



.causes-two__tab-box .tab-buttons .tab-btn span:after {

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  width: 4px;

  content: "";

  background-color: var(--oxpins-base);

  -webkit-transition: all 0.3s ease;

  transition: all 0.3s ease;

  transform: scaleY(0);

  z-index: -1;

}



.causes-two__tab-box .tab-buttons .tab-btn.active-btn span:after {

  transform: scaleY(1);

}



.causes-two__tab-main-content {

  position: relative;

  display: block;

  margin-right: -375px;

}



.causes-two__tab-box .tabs-content {

  position: relative;

  display: block;

}



.causes-two__tab-box .tabs-content .tab {

  position: relative;

  display: none;

  -webkit-transform: translateY(35px);

  transform: translateY(35px);

  -webkit-transition: all 600ms ease;

  transition: all 600ms ease;

  z-index: 10;

}



.causes-two__tab-box .tabs-content .tab.active-tab {

  display: block;

  margin-top: 0px;

  -webkit-transform: translateY(0px);

  transform: translateY(0px);

}



.causes-two__inner-content {

  position: relative;

  display: block;

}



.causes-two__carousel {

  position: relative;

  display: block;

}



.causes-two__carousel .causes-one__single {

  margin-bottom: 0;

}



.causes-two__carousel.owl-carousel .owl-stage-outer {

  overflow: visible;

}



.causes-two__carousel.owl-carousel .owl-item {

  opacity: 0;

  visibility: hidden;

  transition: opacity 500ms ease, visibility 500ms ease;

}



.causes-two__carousel.owl-carousel .owl-item.active {

  opacity: 1;

  visibility: visible;

}



.causes-two__carousel.owl-theme .owl-nav {

  position: absolute;

  bottom: 0;

  left: -312px;

  margin: 0;

}



.causes-two__carousel.owl-theme .owl-nav .owl-prev span {

  position: relative;

  display: flex;

  align-items: center;

  font-size: 15px;

  color: var(--oxpins-black);

  padding: 0 30px;

  background-color: var(--oxpins-primary);

  height: 60px;

  line-height: 60px;

  border-top-left-radius: 30px;

  border-bottom-left-radius: 30px;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.causes-two__carousel.owl-theme .owl-nav .owl-next span {

  position: relative;

  display: flex;

  align-items: center;

  font-size: 15px;

  color: var(--oxpins-black);

  padding-left: 30px;

  padding-right: 45px;

  background-color: var(--oxpins-primary);

  height: 60px;

  line-height: 60px;

  border-top-right-radius: 30px;

  border-bottom-right-radius: 30px;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.causes-two__carousel.owl-theme .owl-nav .owl-prev p {

  font-size: 14px;

  color: var(--oxpins-black);

  text-transform: uppercase;

  font-weight: 800;

  margin-left: 10px;

  font-family: var(--oxpins-font);

}



.causes-two__carousel.owl-theme .owl-nav .owl-next p {

  font-size: 14px;

  color: var(--oxpins-black);

  text-transform: uppercase;

  font-weight: 800;

  font-family: var(--oxpins-font);

}



.causes-two__carousel.owl-theme .owl-nav .owl-next .fa-angle-right:before {

  position: absolute;

  right: 30px;

}



.causes-two__carousel.owl-theme .owl-nav .owl-next,

.causes-two__carousel.owl-theme .owl-nav .owl-prev {

  margin: 0;

}



.causes-two__carousel.owl-theme .owl-nav .owl-next:hover span,

.causes-two__carousel.owl-theme .owl-nav .owl-prev:hover span {

  background-color: var(--oxpins-white);

}



.causes-two__carousel.owl-theme .owl-nav [class*=owl-]:hover {

  background: transparent;

  color: inherit;

  text-decoration: none;

}



/*--------------------------------------------------------------

# Testimonial Two

--------------------------------------------------------------*/

.testimonial-two {

  position: relative;

  display: block;

  padding: 120px 0 140px;

}



.testimonial-two__carousel {

  position: relative;

  display: block;

}



.testimonial-two__single {

  position: relative;

  display: block;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.testimonial-two__single:hover {

  transform: translateY(-10px);

}



.testimonial-two__img {

  position: relative;

  display: block;

  height: 230px;

  width: 230px;

  border-radius: 50%;

  margin: 0 auto;

}



.testimonial-two__img img {

  width: 100%;

  height: 100%;

  border-radius: 50%;

}



.testimonial-two__content {

  position: relative;

  display: block;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);

  border-radius: var(--oxpins-bdr-radius);

  text-align: center;

  padding: 36px 45px 67px;

  z-index: 1;

  margin: 40px 0px 0px;

  border: 5px solid var(--oxpins-bdr-color);

}



.testimonial-two__shape-1 {

  position: absolute;

  top: -26px;

  left: 50%;

  right: 0;

  transform: translateX(-50%);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  z-index: 1;

  width: 75px;

  height: 26px;

}



.testimonial-two__text {

  font-size: 18px;

  line-height: 40px;

}



.testimonial-two__client-info {

  position: relative;

  display: block;

  margin-top: 24px;

}



.testimonial-two__client-name {

  font-size: 24px;

  font-weight: 900;

  line-height: 24px;

  letter-spacing: -0.04em;

  margin-bottom: 4px;

}



.testimonial-two__client-sub-title {

  font-size: 20px;

  color: var(--oxpins-base);

  line-height: 20px;

  font-family: var(--oxpins-font-three);

  font-weight: 700;

}



.testimonial-two__rating {

  display: flex;

  align-items: center;

  background-color: var(--oxpins-primary);

  position: absolute;

  bottom: -23px;

  left: 50%;

  transform: translateX(-50%);

  padding: 16.5px 25px;

  border-radius: 25px;

}



.testimonial-two__rating i {

  font-size: 17px;

  color: var(--oxpins-black);

}



.testimonial-two__rating i + i {

  margin-left: 3px;

}



.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;

}



/*--------------------------------------------------------------

# Gallery Two

--------------------------------------------------------------*/

.gallery-two {

  position: relative;

  display: block;

}



.gallery-two .gallery-one__bottom {

  padding-top: 0;

}



/*--------------------------------------------------------------

# Help

--------------------------------------------------------------*/

.help {

  position: relative;

  display: block;

  background-color: var(--oxpins-base);

  padding: 120px 0 246px;

  z-index: 1;

}



.help-bg {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  left: 0;

  background-position: center;

  background-size: cover;

  background-repeat: no-repeat;

  mix-blend-mode: luminosity;

  opacity: 0.1;

  z-index: -1;

}



.help-shape-1 {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 106px;

  background-repeat: no-repeat;

  background-position: bottom center;

  background-size: cover;

  z-index: -1;

}



.help__single {

  position: relative;

  display: block;

  margin-bottom: 19px;

}



.help__single-inner {

  position: relative;

  display: flex;

}



.help__icon {

  position: relative;

  display: block;

}



.help__icon span {

  position: relative;

  display: inline-block;

  font-size: 65px;

  color: var(--oxpins-primary);

  transition: all 500ms linear;

  transition-delay: 0.1s;

  transform: scale(1);

}



.help__single:hover .help__icon span {

  transform: scale(1.2);

}



.help__content {

  position: relative;

  display: block;

  top: -2px;

  margin-left: 30px;

}



.help__title {

  font-size: 20px;

  font-weight: 900;

  line-height: 20px;

  letter-spacing: -0.04em;

  margin-bottom: 17px;

}



.help__title a {

  color: var(--oxpins-white);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.help__title a:hover {

  color: var(--oxpins-primary);

}



.help__text {

  font-size: 16px;

  color: var(--oxpins-white);

  opacity: 0.6;

}



/*--------------------------------------------------------------

# Urgent Cause

--------------------------------------------------------------*/

.urgent-cause {

  position: relative;

  display: block;

  margin-top: -155px;

  z-index: 1;

}



.urgent-cause__inner {

  position: relative;

  display: block;

  background-color: var(--oxpins-black);

  padding: 100px 100px 94px;

  border-radius: 30px;

  z-index: 1;

}



.urgent-cause-bg {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  border-radius: 30px;

  opacity: 0.1;

  z-index: -1;

}



.urgent-cause__top {

  position: relative;

  display: block;

  overflow: hidden;

  margin-bottom: 37px;

}



.urgent-cause__top-left {

  position: relative;

  display: block;

  float: left;

}



.urgent-cause__top-left .section-title {

  margin-bottom: 0;

}



.urgent-cause__top-left .section-title__tagline {

  color: var(--oxpins-primary);

}



.urgent-cause__top-left .section-title__title {

  color: var(--oxpins-white);

}



.urgent-cause__top-right {

  position: relative;

  display: block;

  float: right;

  text-align: right;

  margin-top: -9px;

}



.urgent-cause__top-text {

  font-size: 16px;

  color: #98a8a5;

}



.urgent-cause__btn {

  position: relative;

  display: block;

  margin-top: 21px;

  margin-bottom: 19px;

}



.urgent-cause__btn a {

  position: relative;

  display: inline-block;

  font-size: 14px;

  font-weight: 800;

  color: var(--oxpins-black);

  background-color: var(--oxpins-primary);

  padding: 10px 40px 10px;

  text-transform: uppercase;

  border-radius: 25px;

  transition: all 500ms ease;

}



.urgent-cause__btn a span {

  position: relative;

  top: 1px;

  padding-right: 9px;

}



.urgent-cause__btn a:hover {

  background-color: var(--oxpins-white);

}



.urgent-cause__date {

  font-size: 24px;

  color: var(--oxpins-white);

  font-weight: 700;

  font-family: var(--oxpins-font-three);

  line-height: 24px;

}



.urgent-cause__progress {

  position: relative;

  display: block;

  width: 100%;

  z-index: 1;

}



.urgent-cause__progress .bar {

  position: relative;

  width: 100%;

  height: 20px;

  background: var(--oxpins-base);

  border-radius: 10px;

  margin-bottom: 13px;

}



.urgent-cause__progress .bar-inner {

  position: relative;

  display: block;

  width: 0px;

  height: 12px;

  border-radius: 6px;

  background: var(--oxpins-white);

  top: 4px;

  left: 5px;

  -webkit-transition: all 1500ms ease;

  -ms-transition: all 1500ms ease;

  -o-transition: all 1500ms ease;

  -moz-transition: all 1500ms ease;

  transition: all 1500ms ease;

}



.urgent-cause__progress .count-text {

  position: absolute;

  right: 0;

  bottom: 25px;

  color: var(--oxpins-white);

  line-height: 18px;

  font-size: 18px;

  text-align: center;

  font-weight: 500;

  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;

}



.urgent-cause__progress .bar-inner.counted .count-text {

  opacity: 1;

}



.urgent-cause__goals {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

}



.urgent-cause__goals > p {

  font-size: 20px;

  color: var(--oxpins-primary);

  font-weight: 500;

  margin: 0;

}



.urgent-cause__goals > p > span {

  font-size: 20px;

  color: var(--oxpins-white);

  font-weight: 500;

  line-height: 28px;

}



/*--------------------------------------------------------------

# Team One

--------------------------------------------------------------*/

.team-one {

  position: relative;
background-color: #f1f1f1;
  display: block;

  padding: 40px 0 40px;

}



.team-one__single {

  position: relative;

  display: block;

  margin-bottom: 30px;

}



.team-one__img {

  position: relative;

  display: block;

  border-radius: var(--oxpins-bdr-radius);

  overflow: hidden;

  z-index: 1;

}



.team-one__img:before {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  content: "";

  background-color: rgba(var(--oxpins-black-rgb), 0.3);

  width: 0%;

  transform: translateY(100%);

  border-radius: var(--oxpins-bdr-radius);

  transition: all 500ms ease;

  z-index: 1;

}



.team-one__single:hover .team-one__img:before {

  transform: translateY(0);

  width: 100%;

}



.team-one__img img {

  width: 100%;

  border-radius: var(--oxpins-bdr-radius);

  transition-delay: 0.1s;

  transition-timing-function: ease-in-out;

  transition-duration: 0.7s;

  transition-property: all;

}



.team-one__single:hover .team-one__img img {

  transform: scale(1.1) rotate(2deg);

}



.team-one__content {

  position: relative;

  display: block;

  background-color: var(--oxpins-black);

  text-align: center;

  margin-left: 20px;

  margin-right: 20px;

  border-bottom-left-radius: var(--oxpins-bdr-radius);

  border-bottom-right-radius: var(--oxpins-bdr-radius);

  padding: 27px 0 28px;

}



.team-one__name {

  font-size: 24px;

  font-weight: 700;

  line-height: 24px;

  letter-spacing: -0.04em;

}



.team-one__name a {

  color: var(--oxpins-white);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.team-one__name a:hover {

  color: var(--oxpins-primary);

}



.team-one__sub-title {

  font-size: 16px;

  color: var(--oxpins-primary);

  font-weight: 700;

  font-family: var(--oxpins-font-three);

  line-height: 16px;

}



.team-one__social {

  display: flex;

  align-items: center;

  justify-content: center;

  position: absolute;

  bottom: 0;

  left: 50%;

  background-color: var(--oxpins-primary);

  padding: 10px 22px;

  border-top-left-radius: 10px;

  border-top-right-radius: 10px;

  transform: scaleY(0) translateX(-50%);

  transform-origin: center;

  transform-style: preserve-3d;

  -webkit-transition: all 0.4s linear;

  -o-transition: all 0.4s linear;

  transition: all 0.4s linear;

  transform-origin: bottom center;

  z-index: 2;

}



.team-one__single:hover .team-one__social {

  transform: scaleY(1) translateX(-50%);

  -webkit-transition-delay: 500ms;

  -moz-transition-delay: 500ms;

  -ms-transition-delay: 500ms;

  -o-transition-delay: 500ms;

  transition-delay: 500ms;

}



.team-one__social a {

  position: relative;

  display: flex;

  align-items: center;

  font-size: 15px;

  color: var(--oxpins-black);

}



.team-one__social a + a {

  margin-left: 15px;

}



/*--------------------------------------------------------------

# Google Map

--------------------------------------------------------------*/

.google-map {

  position: relative;

  display: block;

  background-color: var(--oxpins-extra);

}



.google-map__one {

  position: relative;

  display: block;

  border: none;

  height: 475px;

  width: 100%;

  mix-blend-mode: luminosity;

}



/*--------------------------------------------------------------

# Contact One

--------------------------------------------------------------*/

.contact-one {

  position: relative;

  display: block;

  margin-top: -70px;

  z-index: 1;

}



.contact-one__inne {

  position: relative;

  display: block;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);

  padding: 42px 33px 43px;

  border-radius: var(--oxpins-bdr-radius);

}



.contact-one__list {

  position: relative;

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  justify-content: space-between;

}



.contact-one__single {

  position: relative;

  display: inline-flex;
align-items: center;
  padding-left: 65px;
width: 33.33%;
}



.contact-one__single:before {

  content: "";

  position: absolute;

  top: -2px;

  bottom: -3px;

  right: 21px;

  width: 1px;

  background-color: var(--oxpins-bdr-color);

}



.contact-one__single:last-child:before {

  display: none;

}



.contact-one__icon {

  display: flex;

  align-items: center;

  justify-content: center;

  height: 55px;

  width: 55px;

  background-color: var(--oxpins-primary);

  border-radius: 50%;

  position: absolute;


  left: 0;

  transition: all 500ms ease;

}



.contact-one__single:hover .contact-one__icon {

  background-color: var(--oxpins-base);

}



.contact-one__icon span {

  position: relative;

  display: inline-block;

  font-size: 25px;

  color: var(--oxpins-black);

  transition: all 500ms ease;

}



.contact-one__single:hover .contact-one__icon span {

  color: var(--oxpins-white);

}



.contact-one__single:last-child .contact-one__icon span {

  font-size: 35px;

}



.contact-one__content {

  position: relative;

  display: block;

}



.contact-one__sub-title {

  font-size: 14px;

  font-weight: 600;

  line-height: 25px;

}



.contact-one__number {

  font-size: 16px;

  font-weight: 700;

  font-family: var(--oxpins-font);

  line-height: 25px;

}



.contact-one__number a {

  color: var(--oxpins-black);

  transition: all 500ms ease;

}



.contact-one__number a:hover {

  color: var(--oxpins-base);

}



/*--------------------------------------------------------------

# Site Footer

--------------------------------------------------------------*/

.news-two {

  position: relative;

  display: block;

  padding: 60px 0 30px;

}



.news-two__single {

  position: relative;

  display: block;

  margin-bottom: 30px;

}



.news-two__img-one {

  position: relative;

  display: block;

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-top-right-radius: var(--oxpins-bdr-radius);

  overflow: hidden;

  z-index: 1;

}



.news-two__img-one:before {

  position: absolute;

  content: "";

  left: 0px;

  bottom: 0px;

  width: 100%;

  height: 0px;

  background-color: rgba(var(--oxpins-black-rgb), 0.3);

  visibility: hidden;

  opacity: 0;

  transform-style: preserve-3d;

  transform: perspective(370px) rotateY(90deg) translate(0px, 50px);

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-top-right-radius: var(--oxpins-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;

}



.news-two__single:hover .news-two__img-one:before {

  visibility: visible;

  opacity: 1;

  transform: perspective(370px) rotateY(0deg) translate(0px, 0px);

  height: 100%;

}



.news-two__img-one img {

  width: 100%;

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-top-right-radius: var(--oxpins-bdr-radius);

  -webkit-transform: scale(1);

  transform: scale(1);

  -webkit-transition: -webkit-transform 0.4s ease;

  transition: -webkit-transform 0.4s ease;

  transition: transform 0.4s ease;

  transition: transform 0.4s ease, -webkit-transform 0.4s ease;

}



.news-two__single:hover .news-two__img-one img {

  -webkit-transform: scale(1.05);

  transform: scale(1.05);

}



.news-two__date-one {

  position: absolute;

  right: 30px;

  bottom: 30px;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);

  padding: 6px 25px 6px;

  border-radius: 15px;

  z-index: 2;

}



.news-two__date-one p {

  font-size: 18px;

  color: var(--oxpins-base);

  font-family: var(--oxpins-font-three);

  font-weight: 700;

  line-height: 18px;

}



.news-two__content-one {

  position: relative;

  display: block;

  background-color: var(--oxpins-base);

  border-bottom-left-radius: var(--oxpins-bdr-radius);

  border-bottom-right-radius: var(--oxpins-bdr-radius);

  padding: 42px 50px 41px;

}



.news-two__meta-one {

  position: relative;

  display: flex;

  align-items: center;

}



.news-two__meta-one li + li {

  margin-left: 15px;

}



.news-two__meta-one li a {

  font-size: 14px;

  color: #90c8be;

  font-weight: 600;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.news-two__meta-one li a:hover {

  color: var(--oxpins-primary);

}



.news-two__meta-one li a i {

  color: var(--oxpins-primary);

  padding-right: 3px;

}



.news-two__title-one {

  font-size: 34px;

  font-weight: 900;

  line-height: 42px;

  letter-spacing: -0.04em;

}



.news-two__title-one a {

  color: var(--oxpins-white);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.news-two__title-one a:hover {

  color: var(--oxpins-primary);

}



.news-two__list {

  position: relative;

  display: block;

}



.news-two__list-single {

  position: relative;

  display: flex;

  align-items: center;

  margin-bottom: 30px;

}



.news-two__list-single:last-child {

  margin-bottom: 0;

}



.news-two__img-two {

  position: relative;

  display: inline-block;

  max-width: 270px;

  width: 100%;

  min-height: 161px;

  overflow: hidden;

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-bottom-left-radius: var(--oxpins-bdr-radius);

}



.news-two__img-two:before {

  position: absolute;

  content: "";

  left: 0px;

  bottom: 0px;

  width: 100%;

  height: 0px;

  background-color: rgba(var(--oxpins-black-rgb), 0.3);

  visibility: hidden;

  opacity: 0;

  transform-style: preserve-3d;

  transform: perspective(370px) rotateY(90deg) translate(0px, 50px);

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-bottom-left-radius: var(--oxpins-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;

}



.news-two__list-single:hover .news-two__img-two:before {

  visibility: visible;

  opacity: 1;

  transform: perspective(370px) rotateY(0deg) translate(0px, 0px);

  height: 100%;

}



.news-two__img-two img {

  width: 100%;

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-bottom-left-radius: var(--oxpins-bdr-radius);

  -webkit-transform: scale(1);

  transform: scale(1);

  -webkit-transition: -webkit-transform 0.4s ease;

  transition: -webkit-transform 0.4s ease;

  transition: transform 0.4s ease;

  transition: transform 0.4s ease, -webkit-transform 0.4s ease;

}



.news-two__list-single:hover .news-two__img-two img {

  -webkit-transform: scale(1.05);

  transform: scale(1.05);

}



.news-two__date-two {

  position: absolute;

  right: 20px;

  bottom: 20px;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);

  padding: 6px 25px 6px;

  border-radius: 15px;

  z-index: 2;

}



.news-two__date-two p {

  font-size: 18px;

  color: var(--oxpins-base);

  font-family: var(--oxpins-font-three);

  font-weight: 700;

  line-height: 18px;

}



.news-two__content-two {

  position: relative;

  display: block;

  border: 1px solid var(--oxpins-bdr-color);

  border-top-right-radius: var(--oxpins-bdr-radius);

  border-bottom-right-radius: var(--oxpins-bdr-radius);

  border-left: 0;

  padding: 20px 30px 20px;

  min-height: 161px;

}



.news-two__meta-two {

  position: relative;

  display: flex;

  align-items: center;

}



.news-two__meta-two li + li {

  margin-left: 15px;

}



.news-two__meta-two li a {

  font-size: 14px;

  color: var(--oxpins-gray);

  font-weight: 600;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.news-two__meta-two li a:hover {

  color: var(--oxpins-base);

}



.news-two__meta-two li a i {

  color: var(--oxpins-primary);

  padding-right: 3px;

}



.news-two__title-two {

  font-size: 26px;

  font-weight: 900;

  line-height: 33px;

  letter-spacing: -0.04em;

}



.news-two__title-two a {

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.news-two__title-two a:hover {

  color: var(--oxpins-base);

}



/*--------------------------------------------------------------

# Brand Two

--------------------------------------------------------------*/

.brand-two {

  background-color: var(--oxpins-extra);

  border-top: 0;

  z-index: 1;

}



.brand-two-shape-1 {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  mix-blend-mode: luminosity;

  opacity: 0.15;

  z-index: -1;

}



/*--------------------------------------------------------------

# Make Donation

--------------------------------------------------------------*/

.make-donation {

  position: relative;

  display: block;

}



.make-donation__inner {

  position: relative;

  display: block;

}



.make-donation__left {

  position: relative;

  display: block;

}



.make-donation__img {

  position: relative;

  display: block;

}



.make-donation__img img {

  width: 100%;

  border-bottom-left-radius: 85px;

}



.make-donation__right {

  position: relative;

  display: block;

  margin-left: -30px;

}



.make-donation__content {

  position: relative;

  display: block;

  background-color: var(--oxpins-base);

  padding-left: 60px;

  padding-top: 51px;

  padding-bottom: 50px;

  z-index: 1;

}



.make-donation__content:before {

  position: absolute;

  bottom: 0;

  top: 0;

  right: -1000000000px;

  left: 0;

  content: "";

  background-color: var(--oxpins-base);

  z-index: -1;

}



.make-donation__btn-box {

  position: absolute;

  bottom: 50px;

  right: 0;

}



.make-donation__btn {

  font-weight: 800;

}



.make-donation__meta {

  position: relative;

  display: flex;

  align-items: center;

}



.make-donation__meta li + li {

  margin-left: 10px;

}



.make-donation__meta li a {

  font-size: 14px;

  color: var(--oxpins-white);

  font-weight: 600;

}



.make-donation__meta li a i {

  font-size: 15px;

  color: var(--oxpins-primary);

  padding-right: 3px;

}



.make-donation__title {

  font-size: 36px;

  font-weight: 900;

  color: var(--oxpins-white);

  line-height: 46px;

  letter-spacing: -0.04em;

}



.make-donation__text {

  font-size: 16px;

  color: #89d3c6;

  padding-top: 10px;

  padding-bottom: 31px;

}



.make-donation__raised-goal {

  position: relative;

  display: flex;

  align-items: center;

}



.make-donation__raised-goal li {

  position: relative;

  display: flex;

  align-items: center;

}



.make-donation__raised-goal li + li {

  margin-left: 40px;

}



.make-donation__raised-goal li .icon {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  height: 60px;

  width: 60px;

  background-color: var(--oxpins-black);

  border-radius: 50%;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.make-donation__raised-goal li:hover .icon {

  background-color: var(--oxpins-primary);

}



.make-donation__raised-goal li .icon i {

  font-size: 25px;

  color: var(--oxpins-white);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.make-donation__raised-goal li .icon i.dolar-icon-style {

  font-family: var(--oxpins-font-three);

  font-weight: 700;

  font-style: normal;

  font-size: 40px;

  padding-right: 6px;

}



.make-donation__raised-goal li .content {

  margin-left: 20px;

}



.make-donation__raised-goal li .content p {

  font-size: 24px;

  color: var(--oxpins-primary);

  font-family: var(--oxpins-font-three);

  font-weight: 700;

  line-height: 24px;

}



.make-donation__raised-goal li .content h4 {

  font-size: 24px;

  color: var(--oxpins-white);

  font-weight: 900;

  line-height: 24px;

  letter-spacing: -0.04em;

  margin-top: 6px;

}



/*--------------------------------------------------------------

# About Three

--------------------------------------------------------------*/

.about-three {

  position: relative;

  display: block;

  padding: 120px 0 179px;

}



.about-three__left {

  position: relative;

  display: block;

  margin-top: 45px;

}



.about-three__left .section-title {

  margin-bottom: 28px;

}



.about-three__text-1 {

  font-size: 16px;

  margin-right: 5px;

}



.about-three__text-2 {

  font-size: 16px;

  padding-top: 32px;

  padding-bottom: 41px;

}



.about-three__btn {

  font-weight: 800;

}



.about-three__right {

  position: relative;

  display: block;

  margin-right: 40px;

}



.about-three__img-box {

  position: relative;

  display: block;

}



.about-three__img {

  position: relative;

  display: block;

}



.about-three__img img {

  width: 100%;

  border-radius: 50%;

}



.about-three__img-two {

  position: absolute;

  bottom: -75px;

  right: -95px;

}



.about-three__img-two img {

  width: auto;

  border-radius: 50%;

}



.about-three__help {

  position: absolute;

  bottom: -118px;

  left: 92px;

  height: 205px;

  width: 290px;

  z-index: 1;

}



.about-three__help-shape {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

}



.about-three__help-conten-box {

  position: absolute;

  top: 43px;

  left: 47px;

}



.about-three__help-count {

  position: relative;

  display: flex;

  align-items: center;

}



.about-three__help-count h3 {

  font-size: 50px;

  color: var(--oxpins-white);

  font-weight: 900;

  line-height: 50px !important;

  font-family: var(--oxpins-font-two) !important;

  letter-spacing: -0.04em;

}



.about-three__help-letter {

  position: relative;

  font-size: 50px;

  color: var(--oxpins-white);

  font-weight: 900;

  line-height: 50px;

  font-family: var(--oxpins-font-two);

  letter-spacing: -0.04em;

}



.about-three__help-text {

  font-size: 20px;

  color: var(--oxpins-white);

  font-weight: 700;

  line-height: 25px;

}



.about-three__border {

  position: absolute;

  top: 3px;

  left: -8px;

  width: 604px;

  height: 604px;

  border-width: 2px;

  border-color: rgb(238, 233, 219);

  border-style: solid;

  border-radius: 50%;

  z-index: -1;

}



/*--------------------------------------------------------------

# Feature Three

--------------------------------------------------------------*/

.feature-three {

  position: relative;

  display: block;

  z-index: 2;

}



.feature-three__single {

  position: relative;

  display: block;

  min-height: 447px;

  z-index: 2;

}



.feature-three__img {

  position: absolute;

  top: 0;

  left: -29px;

  right: -28px;

  bottom: 0;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  z-index: 2;

  transform: translate(0px, 0px);

  transition: transform 500ms ease;

}



.feature-three__single:hover .feature-three__img {

  transform: translate(10px, 10px);

}



.feature-three__title-box {

  position: absolute;

  bottom: 110px;

  left: 90px;

  transform: rotate(-16deg);

  z-index: 2;

}



.feature-three__title {

  font-size: 60px;

  font-weight: 900;

  letter-spacing: -0.04em;

  line-height: 60px;

  color: transparent;

  -webkit-text-stroke: 2px #fff;

}



.feature-three__btn {

  position: absolute;

  bottom: 42px;

  left: 135px;

  z-index: 2;

  transform: rotate(-13deg);

}



.feature-three__btn a {

  position: relative;

  font-size: 18px;

  color: var(--oxpins-white);

  line-height: 18px;

  font-weight: 500;

  bottom: 0;

  left: 0;

  background-color: var(--oxpins-base);

  padding: 3px 40px 3px;

  border-top-left-radius: 5px;

  border-bottom-left-radius: 25px;

  border-bottom-right-radius: 25px;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.feature-three__btn a:hover {

  background-color: var(--oxpins-primary);

  color: var(--oxpins-black);

}



.feature-three__btn-two {

  bottom: 44px;

  transform: rotate(-13deg);

}



/*--------------------------------------------------------------

# Causes Three

--------------------------------------------------------------*/

.causes-three {

  position: relative;

  display: block;

  padding: 270px 0 90px;

  margin-top: -176px;

}



.causes-three .container {

  max-width: 1600px;

}



.causes-three .section-title__tagline {

  color: var(--oxpins-primary);

}



.causes-three .section-title__title {

  color: var(--oxpins-white);

}



.causes-three-bg-box {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 645px;

  background-color: var(--oxpins-black);

  z-index: -1;

}



.causes-three-bg {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  mix-blend-mode: luminosity;

  opacity: 0.15;

}



.causes-three-shape-1 {

  position: absolute;

  bottom: -1px;

  left: 0;

  right: 0;

  height: 106px;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: bottom center;

}



/*--------------------------------------------------------------

# Testimonial Three

--------------------------------------------------------------*/

.testimonial-three {

  position: relative;

  display: block;

  padding: 0 0 140px;

}



.testimonial-three .section-title {

  margin-bottom: 136px;

}



.testimonial-three__carousel {

  position: relative;

  display: block;

}



.testimonial-three__single {

  position: relative;

  display: block;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);

  border: 5px solid var(--oxpins-bdr-color);

  padding: 65px 48px 40px;

  border-radius: var(--oxpins-bdr-radius);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  z-index: 1;

}



.testimonial-three__single:hover {

  transform: translateY(-10px);

}



.testimonial-three__client-img {

  position: absolute;

  top: -95px;

  left: 50px;

  z-index: 2;

}



.testimonial-three__client-img img {

  width: 150px !important;

  height: 150px !important;

  border-radius: 50%;

  border: 5px solid var(--oxpins-bdr-color);

}



.testimonial-three__client-info {

  position: absolute;

  top: -90px;

  left: 228px;

}



.testimonial-three__client-name {

  font-size: 30px;

  font-weight: 900;

  line-height: 36px;

  letter-spacing: -0.04em;

  color: var(--oxpins-black);

}



.testimonial-three__client-sub-title {

  font-size: 24px;

  color: var(--oxpins-base);

  font-weight: 700;

  font-family: var(--oxpins-font-three);

  line-height: 24px;

}



.testimonial-three__quote {

  height: 70px;

  width: 70px;

  background-color: var(--oxpins-base);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  position: absolute;

  top: -35px;

  right: 45px;

}



.testimonial-three__quote span {

  font-size: 30px;

  color: var(--oxpins-white);

}



.testimonial-three__rating {

  display: flex;

  align-items: center;

  background-color: var(--oxpins-primary);

  position: absolute;

  bottom: -23px;

  right: 35px;

  padding: 16.5px 25px;

  border-radius: 25px;

}



.testimonial-three__rating i {

  font-size: 17px;

  color: var(--oxpins-black);

}



.testimonial-three__rating i + i {

  margin-left: 3px;

}



.testimonial-three__shape-1 {

  position: absolute;

  top: -46px;

  left: 172px;

  height: 46px;

  width: 42px;

}



.testimonial-three__text-2 {

  font-size: 20px;

  line-height: 36px;

}



.testimonial-three__carousel.owl-carousel .owl-stage-outer {

  overflow: visible;

}



.testimonial-three__carousel.owl-carousel .owl-item {

  opacity: 0;

  visibility: hidden;

  transition: opacity 500ms ease, visibility 500ms ease;

}



.testimonial-three__carousel.owl-carousel .owl-item.active {

  opacity: 1;

  visibility: visible;

}



/*--------------------------------------------------------------

# Brand Two

--------------------------------------------------------------*/

.brand-three {

  background-color: var(--oxpins-primary);

  border-top: 0;

  z-index: 1;

}



.brand-two-shape-1 {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  mix-blend-mode: luminosity;

  opacity: 0.15;

  z-index: -1;

}



/*--------------------------------------------------------------

# Events Two

--------------------------------------------------------------*/

.events-two {

  position: relative;

  display: block;

  padding: 120px 0 90px;

  background-color: var(--oxpins-extra);

  z-index: 1;

}



.events-two-shape-1 {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  mix-blend-mode: luminosity;

  opacity: 0.15;

  z-index: -1;

}



.events-two-bg {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  width: 807px;

  opacity: 0.08;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: top center;

  z-index: -1;

}



.events-two__left {

  position: relative;

  display: block;

}



.events-two__left .section-title {

  margin-bottom: 28px;

}



.events-two__text {

  font-size: 16px;

  padding-bottom: 41px;

}



.events-two__btn {

  font-weight: 800;

}



.events-two__right {

  position: relative;

  display: block;

  z-index: 1;

}



.events-two__right-bg-box {

  position: absolute;

  top: -120px;

  bottom: -121px;

  left: 239px;

  right: -10000000px;

  background-color: var(--oxpins-black);

  z-index: -1;

}



.events-two-shape-2 {

  position: absolute;

  top: 0;

  left: 0;

  height: 546px;

  width: 708px;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: top center;

  z-index: -1;

}



.events-two__list {

  position: relative;

  display: block;

}



.events-two__list > li {

  position: relative;

  display: flex;

  align-items: center;

  margin-bottom: 30px;

}



.events-two__img {

  position: relative;

  display: inline-block;

  max-width: 239px;

  width: 100%;

  min-height: 184px;

  overflow: hidden;

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-bottom-left-radius: var(--oxpins-bdr-radius);

}



.events-two__img img {

  width: 100%;

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-bottom-left-radius: var(--oxpins-bdr-radius);

  transform: scale(1);

  transition: transform 500ms ease;

}



.events-two__list > li:hover .events-two__img img {

  transform: scale(1.05);

}



.events-two__img:after {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  content: "";

  background-color: rgba(var(--oxpins-black-rgb), 0.3);

  transform: scale(1, 0);

  transition: transform 500ms ease;

  transform-origin: top center;

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-bottom-left-radius: var(--oxpins-bdr-radius);

  z-index: 1;

}



.events-two__list > li:hover .events-two__img:after {

  transform: scale(1, 1);

  transform-origin: bottom center;

}



.events-two__date {

  position: absolute;

  bottom: 44px;

  right: -25px;

  background-color: var(--oxpins-primary);

  padding: 7px 20px;

  border-top-right-radius: 15px;

  border-bottom-right-radius: 15px;

  z-index: 2;

  transform: rotate(-90deg);

}



.events-two__date p {

  font-size: 16px;

  color: var(--oxpins-black);

  line-height: 16px;

  font-family: var(--oxpins-font-three);

  font-weight: 700;

}



.events-two__content {

  position: relative;

  display: block;

  min-height: 184px;

  background-color: var(--oxpins-white);

  padding: 23px 30px 21px;

  border-top-right-radius: var(--oxpins-bdr-radius);

  border-bottom-right-radius: var(--oxpins-bdr-radius);

}



.events-two__meta {

  position: relative;

  display: flex;

  align-items: center;

}



.events-two__meta > li {

  font-size: 14px;

  font-weight: 600;

}



.events-two__meta > li + li {

  margin-left: 5px;

}



.events-two__meta > li > i {

  font-size: 15px;

  color: var(--oxpins-primary);

  padding-right: 5px;

}



.events-two__title {

  font-size: 26px;

  font-weight: 900;

  line-height: 30px;

  letter-spacing: -0.04em;

  margin-top: 7px;

  margin-bottom: 13px;

}



.events-two__title a {

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.events-two__title a:hover {

  color: var(--oxpins-base);

}



.events-two__read-more {

  position: relative;

  display: block;

}



.events-two__read-more a {

  font-size: 14px;

  font-weight: 700;

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.events-two__read-more a span {

  font-size: 15px;

  top: 2px;

  position: relative;

  padding-right: 8px;

}



.events-two__read-more a:hover {

  color: var(--oxpins-base);

}



/*--------------------------------------------------------------

# Become Volunteer

--------------------------------------------------------------*/

.become-volunteer {

  position: relative;

  display: block;

  background-color: var(--oxpins-base);

  padding: 80px 0 68px;

}



.become-volunteer__inner {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

}



.become-volunteer__left {

  position: relative;

  display: block;

}



.become-volunteer__left .section-title {

  margin-bottom: 0;

}



.become-volunteer__left .section-title__tagline {

  color: var(--oxpins-primary);

}



.become-volunteer__left .section-title__title {

  font-size: 40px;

  line-height: 50px;

  margin-top: 1px;

  color: var(--oxpins-white);

}



.become-volunteer__right {

  position: relative;

  display: block;

}



.become-volunteer__btn {

  font-weight: 800;

}



/*--------------------------------------------------------------

# News Page

--------------------------------------------------------------*/

.news-page {

  position: relative;

  display: block;

  padding: 120px 0 90px;

}



/*--------------------------------------------------------------

# Page Header

--------------------------------------------------------------*/

.page-header {

  position: relative;

  display: block;

  padding: 70px 0 70px;

  background-color: var(--oxpins-black);

  z-index: 1;

}



.page-header-bg {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  background-color: var(--oxpins-black);

  background-blend-mode: luminosity;

  opacity: 0.7;

  z-index: -1;

}



.page-header__inner {

  position: relative;

  display: block;

  text-align: center;

  z-index: 15;

}



.page-header__inner h2 {

  font-size: 40px;

  color: var(--oxpins-white);

  line-height: 50px;

  margin-bottom: 6px;

  font-weight: 900;

  letter-spacing: -0.04em;

}



.thm-breadcrumb {

  position: relative;

  display: block;

}



.thm-breadcrumb li {

  position: relative;

  display: inline-block;

  color: var(--oxpins-white);

  font-size: 16px;

  font-weight: 600;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.thm-breadcrumb li + li {

  margin-left: 10px;

}



.thm-breadcrumb li a {

  position: relative;

  display: inline-block;

  color: var(--oxpins-white);

  font-size: 16px;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.thm-breadcrumb li:hover a {

  color: var(--oxpins-primary);

}



.thm-breadcrumb li.active {

  color: var(--oxpins-primary);

}



/*--------------------------------------------------------------

# News Sidebar

--------------------------------------------------------------*/

.news-sidebar {

  position: relative;

  display: block;

  padding: 120px 0 120px;

}



.news-sidebar__left {

  position: relative;

  display: block;

}



.news-sidebar__content {

  position: relative;

  display: block;

}



.news-sidebar__single {

  position: relative;

  display: block;

}



.news-sidebar__single + .news-sidebar__single {

  margin-top: 20px;

}



.news-sidebar__img {

  position: relative;

  display: block;

  border-radius: var(--oxpins-bdr-radius);

}



.news-sidebar__img img {

  width: 100%;

  border-radius: var(--oxpins-bdr-radius);

}



.news-sidebar__date {

  position: absolute;

  left: 30px;

  bottom: 30px;

  background-color: var(--oxpins-primary);

  padding: 6px 25px 6px;

  border-radius: 15px;

  z-index: 2;

}



.news-sidebar__date p {

  font-size: 18px;

  color: var(--oxpins-black);

  font-family: var(--oxpins-font-three);

  font-weight: 700;

  line-height: 18px;

}



.news-sidebar__content-box {

  position: relative;

  display: block;

  margin-top: 22px;

}



.news-sidebar__meta {

  display: flex;

  align-items: center;

}



.news-sidebar__meta li + li {

  margin-left: 15px;

}



.news-sidebar__meta li a {

  font-size: 14px;

  color: var(--oxpins-gray);

  font-weight: 600;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.news-sidebar__meta li a:hover {

  color: var(--oxpins-base);

}



.news-sidebar__meta li a i {

  color: var(--oxpins-primary);

  padding-right: 3px;

}



.news-sidebar__title {

  font-size: 30px;

  line-height: 40px;

  font-weight: 900;

  letter-spacing: -0.04em;

}



.news-sidebar__title a {

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.news-sidebar__title a:hover {

  color: var(--oxpins-base);

}



.news-sidebar__text {

  margin: 0;

  padding-top: 10px;

  padding-bottom: 11px;

  font-size: 16px;

}



.news-sidebar__bottom {

  display: flex;

  align-items: center;

}



.news-sidebar__read-more {

  font-size: 14px;

  color: var(--oxpins-black);

  font-weight: 700;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.news-sidebar__read-more:hover {

  color: var(--oxpins-base);

}



.news-sidebar__arrow {

  display: flex;

  align-items: center;

  font-size: 15px;

  color: var(--oxpins-black);

  margin-right: 10px;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.news-sidebar__arrow:hover {

  color: var(--oxpins-base);

}



.news-sidebar__bottom-box {

  position: relative;

  display: block;

  background-color: var(--oxpins-extra);

  padding: 60px 60px 56px;

  margin-top: 20px;

  border-radius: var(--oxpins-bdr-radius);

  overflow: hidden;

  z-index: 1;

}



.news-sidebar__bottom-box-icon {

  margin-bottom: 21px;

}



.news-sidebar__bottom-box-text {

  font-size: 16px;

}



.news-sidebar__delivering-services {

  position: relative;

  display: block;

  background-color: var(--oxpins-extra);

  padding: 60px 60px 56px;

  margin-top: 30px;

  margin-bottom: 30px;

  border-radius: var(--oxpins-bdr-radius);

  overflow: hidden;

  z-index: 1;

}



.news-sidebar__delivering-services-icon {

  margin-bottom: 22px;

}



.news-sidebar__delivering-services-title {

  font-size: 24px;

  line-height: 34px;

  font-weight: 900;

  letter-spacing: -0.04em;

}



.news-sidebar__delivering-services-title a {

  color: var(--oxpins-black);

  transition: all 500ms ease;

}



.news-sidebar__delivering-services-title a:hover {

  color: var(--oxpins-base);

}



.news-sidebar__shape-1 {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  mix-blend-mode: luminosity;

  opacity: 0.3;

  z-index: -1;

}



/*--------------------------------------------------------------

# 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: 4px;

  font-weight: 900;

  letter-spacing: -0.04em;

}



.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(--oxpins-base);

  color: var(--oxpins-white);

  font-size: 16px;

  font-weight: 400;

  padding-left: 50px;

  height: 70px;

  width: 100%;

  padding-right: 80px;

  border-radius: var(--oxpins-bdr-radius);

}



.sidebar__search-form ::-webkit-input-placeholder {

  color: var(--oxpins-white);

  opacity: 1;

}



.sidebar__search-form :-ms-input-placeholder {

  color: var(--oxpins-white);

  opacity: 1;

}



.sidebar__search-form ::-ms-input-placeholder {

  color: var(--oxpins-white);

  opacity: 1;

}



.sidebar__search-form ::placeholder {

  color: var(--oxpins-white);

  opacity: 1;

}



.sidebar__search-form :-ms-input-placeholder {

  color: var(--oxpins-white);

}



.sidebar__search-form ::-ms-input-placeholder {

  color: var(--oxpins-white);

}



.sidebar__search-form button[type=submit] {

  background-color: transparent;

  color: var(--oxpins-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 20px 30px;

  background-color: var(--oxpins-extra);

  border-radius: var(--oxpins-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 15px;

  padding-right: 18px;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  border-radius: var(--oxpins-bdr-radius);

}



.sidebar__post-list li:hover {

  background-color: var(--oxpins-white);

}



.sidebar__post-list li + li {

  margin-top: 10px;

}



.sidebar__post-image {

  margin-right: 20px;

}



.sidebar__post-image > img {

  width: 70px;

  border-radius: 7px;

}



.sidebar__post-content {

  position: relative;

  top: -1px;

}



.sidebar__post-content h3 {

  font-size: 18px;

  margin: 0;

  line-height: 26px;

}



.sidebar__post-content-meta {

  font-size: 14px;

  font-weight: 600;

  color: var(--oxpins-gray) !important;

  font-family: var(--oxpins-font);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.sidebar__post-content-meta i {

  color: var(--oxpins-primary);

  font-size: 14px;

  padding-right: 1px;

}



.sidebar__post-content h3 a {

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  display: block;

  font-size: 18px;

  font-weight: 900;

  letter-spacing: -0.04em;

}



.sidebar__category {

  position: relative;

  display: block;

  background-color: var(--oxpins-extra);

  padding: 46px 20px 36px;

  border-radius: var(--oxpins-bdr-radius);

  overflow: hidden;

  z-index: 1;

}



.sidebar__category .sidebar__title {

  padding-left: 30px;

  margin-bottom: 10px;

}



.sidebar__category-list {

  margin: 0;

}



.sidebar__category-list li + li {

  margin-top: 6px;

}



.sidebar__category-list li a {

  color: #7b8381;

  font-size: 16px;

  position: relative;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  display: block;

  background: none;

  padding: 5px 30px 5px;

  border-radius: var(--oxpins-bdr-radius);

  font-weight: 500;

}



.sidebar__category-list li a:hover {

  background-color: white;

  color: var(--oxpins-black);

}



.sidebar__category-list li.active a {

  background-color: white;

  color: var(--oxpins-black);

}



.sidebar__category-list li a span {

  position: absolute;

  top: 50%;

  right: 30px;

  -webkit-transform: translateY(-50%) scale(0);

  transform: translateY(-50%) scale(0);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  color: var(--oxpins-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: 15px;

}



.sidebar__category-list li a:hover span {

  color: var(--oxpins-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(--oxpins-base);

}



.sidebar__tags {

  position: relative;

  display: block;

  background: var(--oxpins-extra);

  padding: 46px 45px 50px;

  border-radius: var(--oxpins-bdr-radius);

  overflow: hidden;

  z-index: 1;

}



.sidebar__tags .sidebar__title {

  margin-left: 5px;

  margin-bottom: 24px;

}



.sidebar__tags-list {

  margin-top: -10px;

}



.sidebar__tags-list a {

  font-size: 10px;

  color: var(--oxpins-black);

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

  background: var(--oxpins-white);

  display: inline-block;

  padding: 2px 20px 2px;

  margin-left: 5px;

  font-weight: 800;

  border-radius: 17px;

  text-transform: uppercase;

}



.sidebar__tags-list a + a {

  margin-left: 5px;

  margin-top: 10px;

}



.sidebar__tags-list a:hover {

  color: var(--oxpins-black);

  background: var(--oxpins-primary);

}



.sidebar__comments {

  position: relative;

  display: block;

  background-color: var(--oxpins-extra);

  padding: 46px 50px 43px;

  border-radius: var(--oxpins-bdr-radius);

  overflow: hidden;

  z-index: 1;

}



.sidebar__comments .sidebar__title {

  margin-bottom: 23px;

}



.sidebar__comments-list {

  position: relative;

  display: block;

}



.sidebar__comments-list li {

  position: relative;

  display: block;

  padding-left: 65px;

}



.sidebar__comments-list li + li {

  margin-top: 23px;

}



.sidebar__comments-icon {

  height: 45px;

  width: 45px;

  background-color: var(--oxpins-white);

  border-radius: 50%;

  font-size: 15px;

  color: var(--oxpins-black);

  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;

  position: absolute;

  top: 0;

  left: 0;

  -webkit-transition: all 0.4s ease;

  transition: all 0.4s ease;

}



.sidebar__comments-list li:hover .sidebar__comments-icon {

  background-color: var(--oxpins-primary);

  color: var(--oxpins-black);

}



.sidebar__comments-text-box p {

  font-size: 16px;

  margin: 0;

  line-height: 26px;

  font-weight: 500;

}



.sidebar__comments-text-box h5 {

  font-size: 16px;

  margin: 0;

  line-height: 26px;

  color: var(--oxpins-black);

  font-weight: 500;

  font-family: var(--oxpins-font);

}



.sidebar-shape-1 {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  mix-blend-mode: luminosity;

  opacity: 0.3;

  z-index: -1;

}



/*--------------------------------------------------------------

# Blog Details

--------------------------------------------------------------*/

.news-details {

  position: relative;

  display: block;

  padding: 60px 0 30px;

}



.news-details__left {

  position: relative;

  display: block;

}



.news-details__img {

  position: relative;

  display: block;

  border-radius: var(--oxpins-bdr-radius);

}



.news-details__img img {

  width: 100%;

  border-radius: var(--oxpins-bdr-radius);

}



.news-details__date {

  position: absolute;

  left: 30px;

  bottom: 30px;

  background-color: var(--oxpins-primary);

  padding: 6px 25px 6px;

  border-radius: 15px;

  z-index: 2;

}



.news-details__date p {

  font-size: 18px;

  color: var(--oxpins-black);

  font-family: var(--oxpins-font-three);

  font-weight: 700;

  line-height: 18px;

}



.news-details__content {

  position: relative;

  display: block;

  margin-top: 22px;

}



.news-details__meta {

  position: relative;

  display: flex;

  align-items: center;

}



.news-details__meta li + li {

  margin-left: 15px;

}



.news-details__meta li a {

  font-size: 14px;

  color: var(--oxpins-gray);

  font-weight: 600;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.news-details__meta li a:hover {

  color: var(--oxpins-base);

}



.news-details__meta li a i {

  color: var(--oxpins-primary);

  padding-right: 3px;

}



.news-details__title {

  font-size: 30px;

  line-height: 40px;

  margin-bottom: 10px;

  font-weight: 900;

  letter-spacing: -0.04em;

}



.news-details__text-1 {

  font-size: 16px;

}

.news-details__text-1 p{
    margin-bottom: 20px;
}

.news-details__text-2 {

  font-size: 16px;

  padding-top: 31px;

}



.news-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: 41px;

  border-top: 1px solid var(--oxpins-extra);

}



.news-details__bottom p {

  margin: 0;

}



.news-details__tags span {

  color: var(--oxpins-black);

  font-size: 20px;

  margin-right: 8px;

  font-weight: 900;

  font-family: var(--oxpins-font-two);

  letter-spacing: -0.04em;

}



.news-details__tags a {

  position: relative;

  color: var(--oxpins-black);

  font-size: 10px;

  background-color: var(--oxpins-extra);

  display: inline-block;

  padding: 2px 20px 2px;

  font-weight: 800;

  text-transform: uppercase;

  border-radius: 17px;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.news-details__tags a:hover {

  background-color: var(--oxpins-primary);

  color: var(--oxpins-black);

}



.news-details__tags a + a {

  margin-left: 6px;

}



.news-details__social-list {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

}



.news-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(--oxpins-black);

  background-color: var(--oxpins-extra);

  font-size: 15px;

  border-radius: 50%;

  overflow: hidden;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  z-index: 1;

}



.news-details__social-list a:hover {

  color: var(--oxpins-white);

}



.news-details__social-list a:after {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  right: 0;

  height: 100%;

  background-color: var(--oxpins-base);

  -webkit-transition-delay: 0.1s;

  transition-delay: 0.1s;

  -webkit-transition-timing-function: ease-in-out;

  transition-timing-function: ease-in-out;

  -webkit-transition-duration: 0.4s;

  transition-duration: 0.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;

}



.news-details__social-list a:hover:after {

  opacity: 1;

  -webkit-transform: scaleY(1);

  transform: scaleY(1);

}



.news-details__social-list a + a {

  margin-left: 10px;

}



.news-details__pagenation-box {

  position: relative;

  display: block;

  overflow: hidden;

  margin-bottom: 54px;

}



.news-details__pagenation {

  position: relative;

  display: block;

}



.news-details__pagenation li {

  position: relative;

  float: left;

  font-size: 24px;

  color: var(--oxpins-black);

  font-weight: 900;

  background-color: var(--oxpins-extra);

  line-height: 36px;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  max-width: 370px;

  width: 100%;

  padding-left: 60px;

  padding-right: 60px;

  padding-top: 51px;

  padding-bottom: 50px;

  border-radius: var(--oxpins-bdr-radius);

  font-family: var(--oxpins-font-two);

  letter-spacing: -0.04em;

}



.news-details__pagenation li + li {

  margin-left: 30px;

}



.news-details__pagenation li:hover {

  background-color: var(--oxpins-base);

  color: var(--oxpins-white);

}



/*--------------------------------------------------------------

## Comments

--------------------------------------------------------------*/

.comment-one__title,

.comment-form__title {

  margin: 0;

  color: var(--oxpins-black);

  font-size: 30px;

  margin-bottom: 51px;

  font-weight: 900;

  letter-spacing: -0.04em;

}



.comment-one__single {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  border-bottom: 1px solid var(--oxpins-bdr-color);

  padding-bottom: 60px;

  margin-bottom: 60px;

}



.comment-one__content {

  position: relative;

  margin-left: 45px;

}



.comment-one__content h3 {

  margin: 0;

  font-size: 22px;

  color: var(--oxpins-black);

  margin-bottom: 26px;

  font-weight: 900;

  letter-spacing: -0.04em;

}



.comment-one__content p {

  font-size: 16px;

  font-weight: 400;

}



.comment-one__btn {

  padding: 2px 20px;

  position: absolute;

  top: 0;

  right: 0;

  font-size: 10px;

  font-weight: 800;

  color: var(--oxpins-black);

  letter-spacing: 0.1em;

  border-radius: 17px;

  text-transform: uppercase;

}



.comment-one__btn:hover {

  color: var(--oxpins-white);

}



.comment-one__btn:before {

  background-color: var(--oxpins-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: -6px;

}



.comment-one__form .row {

  --bs-gutter-x: 20px;

}



.comment-form__input-box {

  position: relative;

  display: block;

  margin-bottom: 20px;

}



.comment-form__input-box input[type=text],

.comment-form__input-box input[type=email] {

  height: 60px;

  width: 100%;

  border: none;

  background-color: var(--oxpins-extra);

  padding-left: 30px;

  padding-right: 30px;

  outline: none;

  font-size: 14px;

  color: #707876;

  display: block;

  border-radius: var(--oxpins-bdr-radius);

  font-weight: 500;

  letter-spacing: 0.01em;

}



.comment-form__input-box textarea {

  font-size: 14px;

  color: #707876;

  height: 150px;

  width: 100%;

  background-color: var(--oxpins-extra);

  padding: 15px 30px 30px;

  border: none;

  border-radius: var(--oxpins-bdr-radius);

  outline: none;

  margin-bottom: 0px;

  font-weight: 500;

}



.comment-form__btn {

  border: none;

}



.comment-form__input-box.text-message-box {

  height: 150px;

}



/*--------------------------------------------------------------

# Events Page

--------------------------------------------------------------*/

.events-page {

  position: relative;

  display: block;

  padding: 120px 0 90px;

}



.events-page .events-one__single {

  margin-bottom: 30px;

  box-shadow: none;

}



.events-page .events-one__content {

  bottom: 32px;

  left: 40px;

  right: 40px;

}



.events-page .events-one__title {

  font-size: 30px;

  line-height: 36px;

}



.events-page .events-one__date {

  top: 40px;

  right: 40px;

}



/*--------------------------------------------------------------

# Event Details

--------------------------------------------------------------*/

.event-details {

  position: relative;

  display: block;

  padding: 40px 0 40px;

}



.event-details__left {

  position: relative;

  display: block;

}



.event-details__top {

  position: relative;

  display: block;

}

.event-details__top  ul li::marker {
    content: "\f058"; /* FontAwesome Unicode */
    font-family: FontAwesome;
    font-size: 16px;
    color: var(--oxpins-primary);
    
}

.event-details__top  ul li{
    font-size: 18px;
    color: var(--oxpins-black);
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 10px;
}
.event-details__top  ul li ul li{ 
     margin-top: 8px;
    margin-bottom: 0;
}
.event-details__top  ul li ul li::marker {
    content: "\f138"; /* FontAwesome Unicode */
    font-family: FontAwesome;
    font-size: 16px;
    color: var(--oxpins-base);
    
}
.event-details__date {

  position: relative;

  display: inline-block;

  background-color: var(--oxpins-primary);

  padding: 6px 25px;

  border-radius: 15px;

}



.event-details__date p {

  font-size: 18px;

  color: var(--oxpins-black);

  line-height: 18px;

  font-family: var(--oxpins-font-three);

  font-weight: 700;

}



.event-details__title {

  font-size: 36px;

  font-weight: 900;

  letter-spacing: -0.04em;

  line-height: 40px;

  margin-top: 14px;

  margin-bottom: 22px;

}



.event-details__text-1 {

  font-size: 16px;

  font-weight: 400;

}



.event-details__text-2 {

  font-size: 16px;

  font-weight: 800;

  color: var(--oxpins-base);

  padding-top: 32px;

  padding-bottom: 32px;

}



.event-details__text-3 {

  font-size: 16px;

  font-weight: 400;

}



.event-details__img-box {

  position: relative;

  display: block;

  padding-top: 51px;

  padding-bottom: 21px;

}



.event-details__img-single {

  position: relative;

  display: block;

  margin-bottom: 30px;

}



.event-details__img-single img {

  width: 100%;

  border-radius: var(--oxpins-bdr-radius);

}



.event-details__bottom {

  position: relative;

  display: block;

}



.event-details__text-4 {

  font-size: 16px;

  font-weight: 400;

}



.event-details__text-5 {

  font-size: 16px;

  font-weight: 800;

  color: var(--oxpins-base);

  padding-top: 32px;

  padding-bottom: 32px;

}



.event-details__text-6 {

  font-size: 16px;

  font-weight: 400;

}



.event-details__btn-box {

  position: relative;

  display: block;

  margin-top: 36px;

}



.event-details__right {

  position: relative;

  display: block;

}



.event-details__info {

  position: relative;

  display: block;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1), inset 0px 4px 0px 0px rgba(0, 113, 93, 0.004);

  border-radius: var(--oxpins-bdr-radius);

  padding: 36px 60px 40px;

  border-top: 4px solid var(--oxpins-base);

}



.event-details__info-list {

  position: relative;

  display: block;

}



.event-details__info-list li + li {

  margin-top: 27px;

}



.event-details__info-list li span {

  font-size: 14px;

  font-weight: 600;

  line-height: 14px;

}



.event-details__info-list li p {

  font-size: 16px;

  color: var(--oxpins-black);

  font-weight: 800;

  line-height: 19px;

}



.event-details__social {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  margin-top: 27px;

}



.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(--oxpins-black);

  background-color: var(--oxpins-extra);

  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(--oxpins-white);

  background-color: var(--oxpins-base);

}



.event-details__social a:after {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  right: 0;

  height: 100%;

  background-color: var(--oxpins-base);

  -webkit-transition-delay: 0.1s;

  transition-delay: 0.1s;

  -webkit-transition-timing-function: ease-in-out;

  transition-timing-function: ease-in-out;

  -webkit-transition-duration: 0.4s;

  transition-duration: 0.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__map {

  position: relative;

  display: block;

  background-color: var(--oxpins-extra);

  border-radius: var(--oxpins-bdr-radius);

  margin-top: 30px;

}



.event-details-map__one {

  position: relative;

  display: block;

  border: none;

  height: 430px;

  width: 100%;

  mix-blend-mode: luminosity;

  border-radius: var(--oxpins-bdr-radius);

}



/*--------------------------------------------------------------

# Donation

--------------------------------------------------------------*/

.donation {

  position: relative;

  display: block;

  padding: 120px 0 90px;

}



/*--------------------------------------------------------------

## Donations List

--------------------------------------------------------------*/

.donations-list {

  position: relative;

  display: block;

  padding: 120px 0 120px;

}



.donations-list__inner {

  position: relative;

  display: block;

}



.donations-list__single {

  position: relative;

  display: block;

}



.donations-list__single + .donations-list__single {

  margin-top: 30px;

}



.donations-list__single .row {

  --bs-gutter-x: 0px;

}



.donations-list__img {

  position: relative;

  display: block;

}



.donations-list__img img {

  width: 100%;

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-bottom-left-radius: var(--oxpins-bdr-radius);

}



.donations-list__right {

  position: relative;

  display: block;

}



.donations-list__content {

  position: relative;

  display: block;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);

  border-top-right-radius: var(--oxpins-bdr-radius);

  border-bottom-right-radius: var(--oxpins-bdr-radius);

  padding: 50px 50px 50px;

  border: 1px solid var(--oxpins-bdr-color);

  border-left: 0;

}



.donations-list__category {

  position: relative;

  display: inline-block;

  background-color: var(--oxpins-primary);

  padding: 6px 25px;

  border-radius: 15px;

}



.donations-list__category p {

  font-size: 18px;

  color: var(--oxpins-black);

  line-height: 18px;

  font-family: var(--oxpins-font-three);

  font-weight: 700;

}



.donations-list__title {

  font-size: 34px;

  line-height: 41px;

  margin-top: 12px;

  margin-bottom: 18px;

  font-weight: 800;

  letter-spacing: -0.04em;

}



.donations-list__title a {

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.donations-list__title a:hover {

  color: var(--oxpins-base);

}



.donations-list__progress {

  position: relative;

  display: block;

  width: 100%;

  padding: 49px 29px 20px;

  background-color: var(--oxpins-extra);

  border-radius: var(--oxpins-bdr-radius);

  border: 1px solid var(--oxpins-bdr-color);

  overflow: hidden;

  margin-top: 21px;

  z-index: 1;

}



.donations-list__progress-shape {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  mix-blend-mode: luminosity;

  opacity: 0.2;

  z-index: -1;

}



.donations-list__progress .bar {

  position: relative;

  width: 100%;

  height: 7px;

  background: var(--oxpins-white);

  border-radius: 5px;

  margin-bottom: 3px;

}



.donations-list__progress .bar-inner {

  position: relative;

  display: block;

  width: 0px;

  height: 7px;

  border-radius: 5px;

  background: var(--oxpins-base);

  -webkit-transition: all 1500ms ease;

  -ms-transition: all 1500ms ease;

  -o-transition: all 1500ms ease;

  -moz-transition: all 1500ms ease;

  transition: all 1500ms ease;

}



.donations-list__progress .count-text {

  position: absolute;

  right: 0;

  bottom: 11px;

  color: var(--oxpins-base);

  line-height: 20px;

  font-size: 12px;

  text-align: center;

  font-weight: 700;

  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;

}



.donations-list__progress .bar-inner.counted .count-text {

  opacity: 1;

}



.donations-list__progress .count-text:after {

  content: "";

  position: absolute;

  left: 5px;

  top: 17px;

  height: 20px;

  width: 20px;

  background-color: var(--oxpins-base);

  border-radius: 50%;

}



.donations-list__progress .count-text:before {

  content: "";

  position: absolute;

  left: 12px;

  top: 24px;

  height: 6px;

  width: 6px;

  background-color: var(--oxpins-white);

  border-radius: 50%;

  z-index: 1;

}



.donations-list__goals {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

}



.donations-list__goals > p {

  font-size: 14px;

  color: #707876;

  font-weight: 400;

  margin: 0;

}



.donations-list__goals > p > span {

  font-size: 14px;

  color: var(--oxpins-black);

  font-weight: 700;

  line-height: 28px;

}



/*--------------------------------------------------------------

# Donation Details

--------------------------------------------------------------*/

.donation-details {

  position: relative;

  display: block;

  padding: 120px 0 120px;

}



.donation-details__left {

  position: relative;

  display: block;

}



.donation-details__top {

  position: relative;

  display: block;

}



.donation-details__img {

  position: relative;

  display: block;

}



.donation-details__img img {

  width: 100%;

  border-radius: var(--oxpins-bdr-radius);

}



.donation-details__date {

  position: absolute;

  bottom: 30px;

  left: 30px;

  background-color: var(--oxpins-primary);

  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);

  padding: 6px 25px;

  border-radius: 15px;

  z-index: 2;

}



.donation-details__date p {

  font-size: 18px;

  color: var(--oxpins-black);

  line-height: 18px;

  font-family: var(--oxpins-font-three);

  font-weight: 700;

}



.donation-details__content {

  position: relative;

  display: block;

  margin-top: 32px;

}



.donation-details__title {

  font-size: 36px;

  font-weight: 900;

  line-height: 46px;

  letter-spacing: -0.04em;

  margin-bottom: 19px;

}



.donation-details__text {

  font-size: 16px;

}



.donation-details__donate {

  position: relative;

  display: flex;

  background-color: var(--oxpins-extra);

  border: 1px solid var(--oxpins-bdr-color);

  border-radius: var(--oxpins-bdr-radius);

  align-items: center;

  justify-content: space-between;

  padding: 36px 39px 36px;

  overflow: hidden;

  margin-top: 51px;

  margin-bottom: 52px;

  z-index: 1;

}



.donation-details__donate-shape {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 270px;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  mix-blend-mode: luminosity;

  opacity: 0.2;

  z-index: -1;

}



.donation-details__donate-left {

  position: relative;

  display: block;

}



.donation-details__donate-list {

  position: relative;

  display: flex;

  align-items: center;

}



.donation-details__donate-list li {

  position: relative;

  display: flex;

  align-items: center;

}



.donation-details__donate-list li + li {

  margin-left: 50px;

}



.donation-details__donate-list li .icon {

  position: relative;

  display: flex;

  align-items: center;

}



.donation-details__donate-list li .icon span {

  position: relative;

  display: inline-block;

  font-size: 55px;

  color: var(--oxpins-base);

}



.donation-details__donate-list li .text {

  margin-left: 20px;

}



.donation-details__donate-list li .text span {

  font-size: 20px;

  font-weight: 400;

}



.donation-details__donate-list li .text p {

  font-size: 20px;

  color: var(--oxpins-black);

  font-weight: 700;

  line-height: 25px;

}



.donation-details__summary {

  position: relative;

  display: block;

}



.donation-details__summary-title {

  font-size: 36px;

  font-weight: 900;

  line-height: 46px;

  letter-spacing: -0.04em;

  margin-bottom: 19px;

}



.donation-details__summary-text-1 {

  font-size: 16px;

}



.donation-details__summary-list {

  position: relative;

  display: block;

  margin-top: 33px;

  margin-bottom: 29px;

}



.donation-details__summary-list li {

  position: relative;

  display: flex;

  align-items: center;

}



.donation-details__summary-list li .icon {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  height: 16px;

  width: 16px;

  background-color: var(--oxpins-primary);

  border-radius: 50%;

  font-size: 10px;

  color: var(--oxpins-white);

}



.donation-details__summary-list li .text {

  margin-left: 10px;

}



.donation-details__summary-list li .text p {

  font-size: 16px;

  color: var(--oxpins-black);

  font-weight: 700;

}



.donation-details__summary-text-2 {

  font-size: 16px;

}



.donation-details__recent-donation {

  position: relative;

  display: block;

  margin-top: 44px;

  margin-bottom: 54px;

}



.donation-details__recent-donation-inner {

  position: relative;

  display: block;

  background-color: var(--oxpins-extra);

  border-radius: var(--oxpins-bdr-radius);

  padding: 40px 40px 32px;

  overflow: hidden;

  z-index: 1;

}



.donation-details__recent-donation-shape {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  opacity: 0.2;

  mix-blend-mode: luminosity;

  z-index: -1;

}



.donation-details__recent-donation-title {

  font-size: 30px;

  font-weight: 900;

  letter-spacing: -0.04em;

  line-height: 40px;

  margin-bottom: 49px;

}



.donation-details__recent-donation-list {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

}



.donation-details__recent-donation-list li {

  position: relative;

  display: block;

}



.donation-details__recent-donation-img {

  position: relative;

  display: block;

  width: 90px;

  border-radius: 10px;

}



.donation-details__recent-donation-img img {

  width: 100%;

  border-radius: 10px;

}



.donation-details__recent-donation-content {

  position: relative;

  display: block;

  margin-top: 18px;

}



.donation-details__recent-donation-content p {

  font-size: 16px;

  font-weight: 700;

  color: var(--oxpins-black);

  line-height: 16px;

  padding-bottom: 3px;

}



.donation-details__recent-donation-content span {

  font-size: 16px;

  font-weight: 700;

  color: var(--oxpins-base);

}



.donation-details__sidebar {

  position: relative;

  display: block;

}



.donation-details__organizer {

  position: relative;

  display: flex;

  background-color: var(--oxpins-extra);

  border-radius: var(--oxpins-bdr-radius);

  padding: 50px 50px 41px;

  margin-bottom: 30px;

  overflow: hidden;

  z-index: 1;

}



.donation-details__organizer-img {

  position: relative;

  display: block;

}



.donation-details__organizer-img img {

  width: 70px;

  border-radius: 50%;

}



.donation-details__organizer-content {

  margin-left: 20px;

  margin-top: -4px;

}



.donation-details__organizer-date {

  font-size: 16px;

  margin: 0;

  line-height: 22px;

  font-weight: 700;

  font-family: var(--oxpins-font-three);

}



.donation-details__organizer-title {

  color: var(--oxpins-black);

  font-weight: 600;

  line-height: 28px;

  margin: 0;

  font-size: 18px;

  margin-top: 2px;

}



.donation-details__organizer-name {

  color: var(--oxpins-base);

  font-weight: 800;

  line-height: 28px;

  margin: 0;

  font-size: 18px;

}



.donation-details__organizer-list {

  position: relative;

  display: block;

  margin-top: 11px;

}



.donation-details__organizer-list li {

  position: relative;

  display: flex;

  align-items: center;

}



.donation-details__organizer-list li .icon span {

  font-size: 15px;

  color: var(--oxpins-primary);

}



.donation-details__organizer-list li .text {

  margin-left: 10px;

}



.donation-details__organizer-list li .text p {

  font-size: 16px;

  font-weight: 600;

  margin: 0;

}



.donation-details__sidebar-shaare-cause {

  position: relative;

  display: block;

  background-color: var(--oxpins-extra);

  border-radius: var(--oxpins-bdr-radius);

  padding: 43px 50px 50px;

  margin-top: 30px;

  overflow: hidden;

  z-index: 1;

}



.donation-details__sidebar-shaare-cause-title {

  font-size: 20px;

  font-weight: 900;

  letter-spacing: -0.04em;

  line-height: 30px;

  margin-bottom: 21px;

}



.donation-details__sidebar-shaare-cause-social {

  display: flex;

  -webkit-box-align: center;

  align-items: center;

}



.donation-details__sidebar-shaare-cause-social a {

  position: relative;

  height: 40px;

  width: 40px;

  display: -webkit-box;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  -webkit-box-pack: center;

  justify-content: center;

  text-align: center;

  color: var(--oxpins-black);

  font-size: 15px;

  background-color: var(--oxpins-white);

  border-radius: 50%;

  overflow: hidden;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  z-index: 1;

}



.donation-details__sidebar-shaare-cause-social a:hover {

  color: var(--oxpins-white);

  background-color: var(--oxpins-base);

}



.donation-details__sidebar-shaare-cause-social a::before {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  right: 0;

  height: 100%;

  background-color: var(--oxpins-base);

  -webkit-transition-delay: 0.1s;

  transition-delay: 0.1s;

  -webkit-transition-timing-function: ease-in-out;

  transition-timing-function: ease-in-out;

  -webkit-transition-duration: 0.4s;

  transition-duration: 0.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;

}



.donation-details__sidebar-shaare-cause-social a:hover::before {

  opacity: 1;

  -webkit-transform: scaleY(1);

  transform: scaleY(1);

}



.donation-details__sidebar-shaare-cause-social a + a {

  margin-left: 10px;

}



/*--------------------------------------------------------------

## Donate Now

--------------------------------------------------------------*/

.donate-now {

  position: relative;

  display: block;

  padding: 60px 0 60px;

}



.donate-now__left {

  position: relative;

  display: block;

  margin-top: -8px;

}



.donate-now__enter-donation {

  position: relative;

  display: block;

}



.donate-now__title {

  font-size: 30px;

  line-height: 40px;

  margin-bottom: 29px;

  font-weight: 900;

  letter-spacing: -0.04em;

}



.donate-now__enter-donation-input {

  position: relative;

  display: block;

}



.donate-now__enter-donation-input input[type=text] {

  height: 130px;

  width: 100%;

  border: none;

  outline: none;

  background-color: var(--oxpins-base);

  border-radius: var(--oxpins-bdr-radius);

  padding-left: 150px;

  padding-right: 50px;

  font-size: 50px;

  color: var(--oxpins-white);

  font-family: var(--oxpins-font-two);

  text-align: right;

  font-weight: 900;

  letter-spacing: -0.04em;

}



.donate-now__enter-donation-input .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {

  position: absolute;

  width: auto !important;

  left: 0;

  top: 0;

  margin-top: 0;

}



.donate-now__enter-donation-input .bootstrap-select > .dropdown-toggle::after {

  display: none;

}



.donate-now__enter-donation-input .bootstrap-select > .dropdown-toggle {

  position: relative;

  height: 130px;

  width: 145px;

  outline: none;

  border-radius: var(--oxpins-bdr-radius);

  border: 0;

  background-color: var(--oxpins-base);

  margin: 0;

  padding: 0;

  color: var(--oxpins-white);

  font-size: 50px;

  line-height: 135px;

  font-weight: 900;

  box-shadow: none;

  background-repeat: no-repeat;

  font-family: var(--oxpins-font-two);

  text-align: center;

  letter-spacing: -0.04em;

}



.donate-now__enter-donation-input .bootstrap-select .dropdown-toggle .filter-option {

  text-align: center;

}



.donate-now__personal-info-box {

  position: relative;

  display: block;

  margin-top: 51px;

  margin-bottom: 51px;

}



.donate-now__personal-info-form {

  position: relative;

  display: block;

}



.donate-now__personal-info-input {

  position: relative;

  display: block;

  margin-bottom: 30px;

}



.donate-now__personal-info-input input[type=text],

.donate-now__personal-info-input input[type=email] {

  height: 60px;

  width: 100%;

  border: none;

  outline: none;

  background-color: var(--oxpins-extra);

  color: var(--oxpins-gray);

  font-size: 14px;

  padding: 0 30px;

  border-radius: var(--oxpins-bdr-radius);

  font-weight: 500;

}



.donate-now__personal-info-input textarea {

  height: 180px;

  width: 100%;

  border: none;

  outline: none;

  background-color: var(--oxpins-extra);

  color: var(--oxpins-gray);

  font-size: 14px;

  padding: 18px 30px 30px;

  border-radius: var(--oxpins-bdr-radius);

  font-weight: 500;

}



.donate-now__personal-info-input.donate-now__personal-info-message-box {

  height: 180px;

  margin-bottom: 0;

}



.donate-now__personal-info-form .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {

  position: relative;

  display: block;

  width: 100% !important;

}



.donate-now__personal-info-form .bootstrap-select > .dropdown-toggle::after {

  display: none;

}



.donate-now__personal-info-form .bootstrap-select > .dropdown-toggle {

  position: relative;

  height: 60px;

  outline: none !important;

  border-radius: var(--oxpins-bdr-radius);

  border: 0;

  background-color: var(--oxpins-extra) !important;

  margin: 0;

  padding: 0;

  padding-left: 30px;

  padding-right: 30px;

  color: var(--oxpins-gray) !important;

  font-size: 14px;

  line-height: 60px;

  font-weight: 500;

  box-shadow: none !important;

  background-repeat: no-repeat;

  background-size: 14px 12px;

  background-position: right 25.75px center;

}



.donate-now__personal-info-form .bootstrap-select > .dropdown-toggle:before {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 26px;

  font-family: "Font Awesome 5 Free";

  content: "\f107";

  font-weight: 900;

  font-size: 14px;

  color: var(--oxpins-gray);

}



.donate-now__payment-info {

  position: relative;

  display: block;

}



.donate-now__payment-info-form {

  position: relative;

  display: block;

}



.donate-now__payment-info-input {

  position: relative;

  display: block;

  margin-bottom: 30px;

}



.donate-now__payment-info-input input[type=text] {

  height: 60px;

  width: 100%;

  border: none;

  outline: none;

  background-color: var(--oxpins-extra);

  color: var(--oxpins-gray);

  font-size: 14px;

  padding: 0 30px;

  border-radius: var(--oxpins-bdr-radius);

  font-weight: 500;

}



.donate-now__payment-info-form .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {

  position: relative;

  display: block;

  width: 100% !important;

}



.donate-now__payment-info-form .bootstrap-select > .dropdown-toggle::after {

  display: none;

}



.donate-now__payment-info-form .bootstrap-select > .dropdown-toggle {

  position: relative;

  height: 60px;

  outline: none !important;

  border-radius: var(--oxpins-bdr-radius);

  border: 0;

  background-color: var(--oxpins-extra) !important;

  margin: 0;

  padding: 0;

  padding-left: 30px;

  padding-right: 30px;

  color: var(--oxpins-gray) !important;

  font-size: 14px;

  line-height: 60px;

  font-weight: 500;

  box-shadow: none !important;

  background-repeat: no-repeat;

  background-size: 14px 12px;

  background-position: right 25.75px center;

}



.donate-now__payment-info-form .bootstrap-select > .dropdown-toggle:before {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 26px;

  font-family: "Font Awesome 5 Free";

  content: "\f107";

  font-weight: 900;

  font-size: 14px;

  color: var(--oxpins-gray);

}



.donate-now__payment-info-btn {

  border: none;

}



.donate-now__right {

  position: relative;

  display: block;

}



/*--------------------------------------------------------------

# Become Volunteer Page

--------------------------------------------------------------*/

.become-volunteer-page {

  position: relative;

  display: block;

  padding: 60px 0;

}



.become-volunteer-page .row {

  --bs-gutter-x: 0px;

}



.become-volunteer-page__left {

  position: relative;

  display: block;

  background-color: var(--oxpins-extra);

  border-top-left-radius: var(--oxpins-bdr-radius);

  border-bottom-left-radius: var(--oxpins-bdr-radius);

  padding: 60px 60px 60px;

}



.become-volunteer-page__img {

  position: relative;

  display: block;

}



.become-volunteer-page__img img {

  width: 100%;

  border-radius: var(--oxpins-bdr-radius);

}



.become-volunteer-page__content {

  position: relative;

  display: block;

  margin-top: 32px;

}



.become-volunteer-page__title {

  font-size: 30px;

  font-weight: 900;

  line-height: 40px;

  letter-spacing: -0.04em;

}



.become-volunteer-page__text {

  font-size: 16px;

  padding-top: 10px;

  padding-bottom: 33px;

}



.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 {

  height: 15px;

  width: 15px;

  background-color: var(--oxpins-base);

  font-size: 9px;

  border-radius: 50%;

  color: var(--oxpins-white);

  display: flex;

  align-items: center;

  justify-content: center;

}



.become-volunteer__points li .text {

  margin-left: 10px;

}



.become-volunteer__points li .text p {

  font-size: 16px;

  color: var(--oxpins-black);

  font-weight: 700;

}



.become-volunteer__call {

  position: relative;

  display: flex;

  align-items: center;

  border-top: 1px solid var(--oxpins-bdr-color);

      padding-top: 16px;
    margin-top: 21px;

}



.become-volunteer__call-icon {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  height: 65px;

  width: 65px;

  background-color: var(--oxpins-primary);

  border-radius: 50%;

  font-size: 35px;

  color: var(--oxpins-black);

}



.become-volunteer__call-content {

  margin-left: 20px;

  position: relative;

  top: -2px;
	width: 75%;

}



.become-volunteer__call-content span {

  font-size: 18px;

  color: var(--oxpins-base);

  font-weight: 700;

  font-family: var(--oxpins-font-three);

  line-height: 18px;

}



.become-volunteer__call-content p {

  font-size: 20px;

  font-weight: 800;

  line-height: 20px;

}



.become-volunteer__call-content p a {

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.become-volunteer__call-content p a:hover {

  color: var(--oxpins-base);

}



.become-volunteer-page__right {

  position: relative;

  display: block;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);

  border: 1px solid var(--oxpins-bdr-color);

  border-top-right-radius: var(--oxpins-bdr-radius);

  border-bottom-right-radius: var(--oxpins-bdr-radius);

  padding: 20px 60px 60px;

}



.become-volunteer-page__form {

  position: relative;

  display: block;

}



.become-volunteer-page__form .row {

  --bs-gutter-x: 20px;

}



.become-volunteer-page__input {

  position: relative;

  display: block;
  margin-bottom: 20px;

}



.become-volunteer-page__input input[type=text], .become-volunteer-page__input input[type=tel],

.become-volunteer-page__input input[type=email] {

  height: 58px;

  width: 100%;

  border: none;
 
  outline: none;

  background-color: var(--oxpins-extra);

  color: #707876;

  font-size: 14px;

  padding: 0 30px;

  border-radius: var(--oxpins-bdr-radius);
  font-weight: 400;

}



.become-volunteer-page__input textarea {

  height: 150px;

  width: 100%;

  border: none;

  outline: none;

  background-color: var(--oxpins-extra);

  color: #707876;

  font-size: 14px;

  padding: 18px 30px 30px;

  border-radius: var(--oxpins-bdr-radius);

  font-weight: 400;

}



.become-volunteer-page__input.become-volunteer__message-box {

  height: 150px;

}



.become-volunteer-page__btn {

  border: none;

}



#ui-datepicker-div.ui-widget-content {

  background: #fff none repeat scroll 0 0;

  border: 1px solid var(--oxpins-black);

  color: #252525;

  font-size: 14px;

  border-radius: 0px;

  width: 270px;

  padding: 5px;

}



#ui-datepicker-div.ui-datepicker .ui-datepicker-header {

  background: var(--oxpins-base) none repeat scroll 0 0;

  border: 2px solid var(--oxpins-base);

  border-radius: 0;

  color: var(--oxpins-white);

  font-weight: 700;

  padding: 5px 0;

  position: relative;

}



.ui-datepicker td a {

  color: var(--oxpins-black) !important;

  text-align: center;

  background-image: none !important;

  background: #f5f5f5 !important;

  border: 1px solid #f9f9f9 !important;

}



.ui-state-highlight,

.ui-widget-content .ui-state-highlight,

.ui-widget-header .ui-state-highlight {

  border: 1px solid var(--oxpins-black) !important;

  background: var(--oxpins-black) !important;

  color: var(--oxpins-white) !important;

}



.ui-datepicker .ui-datepicker-prev {

  left: 5px;

}



.ui-datepicker .ui-datepicker-prev,

.ui-datepicker .ui-datepicker-next {

  border-radius: 30%;

  height: 20px;

  position: absolute;

  top: 7px;

  width: 20px;

  transition: all 500ms ease;

  cursor: pointer;

}



.ui-datepicker .ui-datepicker-next {

  right: 5px;

}



.ui-datepicker .ui-datepicker-prev:hover,

.ui-datepicker .ui-datepicker-next:hover {

  top: 7px;

  background: var(--oxpins-white);

  border: none;

}



.ui-datepicker table {

  border-collapse: collapse;

  font-size: 13px;

  margin: 0 0 0.4em;

  width: 100%;

}



.ui-datepicker th {

  border: medium none;

  font-weight: 600;

  padding: 2px 3px;

  text-align: center;

}



.ui-datepicker-calendar .ui-state-default:hover,

.ui-datepicker-calendar .ui-state-default:active {

  background: var(--oxpins-black);

  color: var(--oxpins-white);

  border-color: var(--oxpins-black);

}



#ui-datepicker-div.ui-widget {

  font-family: var(--oxpins-font);

}



/*--------------------------------------------------------------

# Gallery Page

--------------------------------------------------------------*/

.gallery-page {

  position: relative;

  display: block;

  padding: 60px 0 30px;

}



.gallery-page__single {

  position: relative;

  display: block;

  margin-bottom: 30px;

}



.gallery-page__img {

  position: relative;

  display: block;

  overflow: hidden;

  border-radius: var(--oxpins-bdr-radius);

  z-index: 1;

}



.gallery-page__img:before {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  border-radius: var(--oxpins-bdr-radius);

  content: "";

  background: rgb(250, 211, 91);

  background: linear-gradient(180deg, rgba(250, 211, 91, 0.0928746499) 53%, rgb(250, 211, 91) 100%);

  -webkit-transition: all 700ms ease;

  -ms-transition: all 700ms ease;

  -o-transition: all 700ms ease;

  transition: all 700ms ease;

  -webkit-transform: translateY(100%);

  -ms-transform: translateY(100%);

  -o-transform: translateY(100%);

  -moz-transform: translateY(100%);

  transform: translateY(100%);

}



.gallery-page__single:hover .gallery-page__img:before {

  -webkit-transform: translateY(0%);

  -ms-transform: translateY(0%);

  -o-transform: translateY(0%);

  -moz-transform: translateY(0%);

  transform: translateY(0%);

}



.gallery-page__single .img-popup {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 10;

}



.gallery-page__img img {

    width: 100%;
    height: 275px;
    object-fit: cover;
    border-radius: var(--oxpins-bdr-radius);

}



.gallery-page__content {

  position: absolute;

  left: 0;

  right: 0;

  bottom: 44px;

  text-align: center;

  transform: translateY(-100px);

  opacity: 0;

  -webkit-transition: all 700ms ease;

  -ms-transition: all 700ms ease;

  -o-transition: all 700ms ease;

  transition: all 700ms ease;

}



.gallery-page__single:hover .gallery-page__content {

  -webkit-transform: translateY(0%);

  -ms-transform: translateY(0%);

  -o-transform: translateY(0%);

  -moz-transform: translateY(0%);

  transform: translateY(0%);

  opacity: 1;

}



.gallery-page__sub-title {

  font-size: 24px;

  color: var(--oxpins-black);

  font-weight: 700;

  line-height: 24px;

  font-family: var(--oxpins-font-three);

  padding-bottom: 8px;

}



.gallery-page__title {

  font-size: 34px;

  font-weight: 900;

  letter-spacing: -0.04em;

  line-height: 34px;

}



.gallery-page__title a {

  color: var(--oxpins-black);

}



/*--------------------------------------------------------------

# Feature Four

--------------------------------------------------------------*/

.feature-four {

  position: relative;

  display: block;

  background-color: var(--oxpins-extra);

  padding: 120px 0 110px;

  z-index: 1;

}



.feature-four-shape {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  mix-blend-mode: luminosity;

  opacity: 0.1;

  z-index: -1;

}



.feature-four__inner {

  position: relative;

  display: block;

}



.feature-four__single {

  position: relative;

  display: flex;

  align-items: center;

  background-color: var(--oxpins-base);

  border-radius: var(--oxpins-bdr-radius);

  padding: 37px 60px 37px;

  margin-bottom: 30px;

}



.feature-four__icon {

  position: relative;

  display: flex;

  align-items: center;

}



.feature-four__icon span {

  position: relative;

  display: inline-block;

  font-size: 65px;

  color: var(--oxpins-primary);

  transition: all 500ms linear;

  transition-delay: 0.1s;

  transform: scale(1);

}



.feature-four__single:hover .feature-four__icon span {

  transform: scale(1.2);

}



.feature-four__content {

  margin-left: 20px;

}



.feature-four__title {

  font-size: 24px;

  color: var(--oxpins-white);

  font-weight: 900;

  line-height: 28px;

  letter-spacing: -0.04em;

}



.feature-four__search-box {

  position: absolute;

  bottom: -152px;

  left: 0;

  right: 0;

}



.feature-four__form {

  position: relative;

  display: block;

}



.feature-four__form-input {

  position: relative;

  display: block;

  max-width: 770px;

  width: 100%;

  margin: 0 auto;

}



.feature-four__form input[type=search] {

  height: 84px;

  width: 100%;

  border: none;

  outline: none;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.03);

  font-size: 18px;

  color: var(--oxpins-gray);

  font-weight: 400;

  padding-left: 50px;

  padding-right: 75px;

  border-radius: var(--oxpins-bdr-radius);

}



.feature-four__form button[type=submit] {

  background-color: transparent;

  color: var(--oxpins-base);

  font-size: 22px;

  position: absolute;

  top: 0;

  right: 0px;

  bottom: 0;

  width: 72px;

  outline: none;

  border: none;

  display: flex;

  align-items: center;

  padding: 0;

}



/*--------------------------------------------------------------

# FAQ Page

--------------------------------------------------------------*/

.faq-page {

  position: relative;

  display: block;

  padding: 160px 0 90px;

}



.faq-page__single {

  position: relative;

  display: block;

  margin-bottom: 30px;

}



/*--------------------------------------------------------------

## Error Page

--------------------------------------------------------------*/

.error-page {

  position: relative;

  display: block;

  padding: 28px 0 120px;

  background-color: var(--oxpins-extra);

  z-index: 1;

}



.error-page-shape {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  mix-blend-mode: luminosity;

  opacity: 0.1;

  z-index: -1;

}



.error-page__inner {

  position: relative;

  display: block;

  text-align: center;

}



.error-page__title-box {

  position: relative;

  display: block;

  z-index: 2;

}



.error-page__title {

  position: relative;

  display: inline-block;

  font-size: 350px;

  line-height: 350px;

  font-weight: 700;

  margin-bottom: 2px;

  color: var(--oxpins-base);

  font-family: var(--oxpins-font-three);

  z-index: 2;

}



.error-page__title-2 {

  position: absolute;

  font-size: 350px;

  line-height: 350px;

  font-weight: 700;

  color: var(--oxpins-primary);

  top: 5px;

  left: 0;

  right: 0;

  bottom: 0;

  font-family: var(--oxpins-font-three);

  z-index: 1;

}



.error-page__tagline {

  font-size: 40px;

  line-height: 49px;

  font-weight: 900;

  color: var(--oxpins-black);

  letter-spacing: -0.04em;

}



.error-page__form {

  position: relative;

  display: block;

  margin: 36px auto 20px;

}



.error-page__form-input {

  position: relative;

  display: block;

  max-width: 550px;

  width: 100%;

  margin: 0 auto;

}



.error-page__form input[type=search] {

  height: 60px;

  width: 100%;

  border: none;

  outline: none;

  background-color: rgb(255, 255, 255);

  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);

  border: 1px solid var(--oxpins-bdr-color);

  font-size: 14px;

  color: #707876;

  font-weight: 400;

  padding-left: 50px;

  padding-right: 75px;

  border-radius: var(--oxpins-bdr-radius);

}



.error-page__form button[type=submit] {

  background-color: transparent;

  color: var(--oxpins-base);

  font-size: 22px;

  position: absolute;

  top: 0;

  right: 0px;

  bottom: 0;

  width: 72px;

  outline: none;

  border: none;

  display: flex;

  align-items: center;

  padding: 0;

}



/*--------------------------------------------------------------

# Contact Three

--------------------------------------------------------------*/

.contact-three {

  position: relative;

  display: block;

  background-color: var(--oxpins-extra);

  padding: 60px 0 40px;

  z-index: 1;

}



.contact-three-shape {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  mix-blend-mode: luminosity;

  opacity: 0.1;

  z-index: -1;

}



.contact-three .container {

  max-width: 770px;

}



.contact-page__form-box {

  position: relative;

  display: block;

}



.contact-page__form {

  position: relative;

  display: block;

}



.contact-page__form .row {

  --bs-gutter-x: 20px;

}



.contact-form__input-box {

  position: relative;

  display: block;

  margin-bottom: 20px;

}



.contact-form__input-box input[type=text],
.contact-form__input-box input[type=file],
.contact-form__input-box input[type=date],

.contact-form__input-box input[type=email] {

  height: 60px;

  width: 100%;

  border: none;

  background-color: var(--oxpins-white);

  padding-left: 30px;

  padding-right: 30px;

  outline: none;

  font-size: 14px;

  color: #707876;

  display: block;

  border-radius: var(--oxpins-bdr-radius);

  font-weight: 500;
padding: 15px;
}



.contact-form__input-box textarea {

  font-size: 14px;

  color: #707876;

  height: 150px;

  width: 100%;

  background-color: var(--oxpins-white);

  padding: 15px 30px 30px;

  border: none;

  border-radius: var(--oxpins-bdr-radius);

  outline: none;

  margin-bottom: 0px;

  font-weight: 500;

}



.contact-form__btn {

  border: none;

}



.contact-form__input-box.text-message-box {

  height: 150px;

}



.contact-form__btn {

  display: block;

  margin: 0 auto;

}



/*--------------------------------------------------------------

# Google Map Two

--------------------------------------------------------------*/

.google-map-two {

  margin-top: -65px;

}



/*--------------------------------------------------------------

# About Four

--------------------------------------------------------------*/

.about-four {

  position: relative;

  display: block;

  padding: 60px 0 40px;

}



.about-four__left {

  position: relative;

  display: block;

  margin-right: 140px;

}



.about-four__img-box {

  position: relative;

  display: block;

}



.about-four__img {

  position: relative;

  display: block;

  z-index: 2;

}



.about-four__img img {

  width: 100%;

  border-radius: var(--oxpins-bdr-radius);

}



.about-four__img-two {

  position: absolute;

  bottom: -160px;

  right: -140px;

  z-index: 1;

}



.about-four__img-two img {

  width: auto;

  border-radius: var(--oxpins-bdr-radius);

}



.about-four__border {

  position: absolute;

  top: 60px;

  left: 70px;

  border-width: 5px;

  border-color: rgb(251, 212, 90);

  border-style: solid;

  border-radius: 20px;

  background-color: rgba(40, 55, 52, 0);

  width: 420px;

  height: 415px;

  z-index: -1;

}



.about-four__right {

  position: relative;

  display: block;

  margin-left: 15px;

}



.about-four__right .section-title {

  margin-bottom: 28px;

}



.about-four__text {

  font-size: 16px;

}



.about-four__points {

  position: relative;

  display: block;

  margin-top: 31px;

  margin-bottom: 38px;

}



.about-four__points li {

  position: relative;

  display: flex;

  align-items: center;

}



.about-four__points li + li {

  margin-top: 8px;

}



.about-four__points li .icon {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  height: 16px;

  width: 16px;

  background-color: var(--oxpins-primary);

  border-radius: 50%;

  font-size: 10px;

  color: var(--oxpins-white);

}



.about-four__points li .text {

  margin-left: 10px;
    width: 94%;
}



.about-four__points li .text p {

  font-size: 18px;

  color: var(--oxpins-black);

  font-weight: 600;

}



/*--------------------------------------------------------------

# FAQ Two

--------------------------------------------------------------*/

.faq-two {

  padding: 120px 0 120px;

}



/*--------------------------------------------------------------

# News Carousel Page

--------------------------------------------------------------*/

.news-carousel-page {

  position: relative;

  display: block;

  padding: 120px 0 165px;

}



.news-carousel-page .news-one__single {

  margin-bottom: 0;

}



.carousel-dot-style.owl-carousel .owl-stage-outer {

  overflow: visible;

}



.carousel-dot-style.owl-carousel .owl-item {

  opacity: 0;

  visibility: hidden;

  transition: opacity 500ms ease, visibility 500ms ease;

}



.carousel-dot-style.owl-carousel .owl-item.active {

  opacity: 1;

  visibility: visible;

}



.carousel-dot-style.owl-carousel .owl-dots {

  position: absolute;

  bottom: -48px;

  left: 0px;

  right: 0;

  text-align: center;

  margin: 0 !important;

  display: flex;

  align-items: center;

  justify-content: center;

}



.carousel-dot-style.owl-carousel .owl-dots .owl-dot {

  position: relative;

  display: inline-block;

  width: 10px;

  height: 10px;

  border-radius: 50%;

  background-color: var(--oxpins-extra);

  margin: 0px 5px;

  padding: 0px;

  transition: all 100ms linear;

  transition-delay: 0.1s;

}



.carousel-dot-style.owl-carousel .owl-dot.active {

  width: 16px;

  height: 16px;

  background-color: var(--oxpins-base);

}



.carousel-dot-style.owl-carousel .owl-dot:focus {

  outline: none;

}



.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {

  display: none;

}



/*--------------------------------------------------------------

# Team Carousel

--------------------------------------------------------------*/

.team-carousel-page {

  position: relative;

  display: block;

  padding: 120px 0 165px;

}



.team-carousel-page .team-one__single {

  margin-bottom: 0;

}



/*--------------------------------------------------------------

# Gallery Carousel

--------------------------------------------------------------*/

.gallery-carousel-page {

  position: relative;

  display: block;

  padding: 120px 0 165px;

}



.gallery-carousel-page .gallery-page__single {

  margin-bottom: 0;

}



/*--------------------------------------------------------------

# Events Carousel Page

--------------------------------------------------------------*/

.events-carousel-page {

  position: relative;

  display: block;

  padding: 120px 0 165px;

}



/*--------------------------------------------------------------

# Donation Carousel Page

--------------------------------------------------------------*/

.donation-carousel-page {

  position: relative;

  display: block;

  padding: 120px 0 165px;

}



.donation-carousel-page .causes-one__single {

  margin-bottom: 0;

}



/*--------------------------------------------------------------

# Boxed Version

--------------------------------------------------------------*/

body.boxed-wrapper {

  background-color: #f9f4e8;

}



.boxed-wrapper .page-wrapper {

  max-width: 1530px;

  margin-left: auto;

  margin-right: auto;

  background-color: #fff;

  -webkit-box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);

  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);

}



.boxed-wrapper .main-menu__volunteers {

  display: none;

}



/*--------------------------------------------------------------

# Update 05-03-2023

--------------------------------------------------------------*/

/*--------------------------------------------------------------

# Product

--------------------------------------------------------------*/

.product {

  position: relative;

  display: block;

  padding: 120px 0 90px;

}



.product__sidebar {

  position: relative;

  display: block;

}



.product__sidebar-single + .product__sidebar-single {

  margin-top: 30px;

}



.product__sidebar-title {

  font-size: 20px;

  font-weight: 900;

  line-height: 20px;

  margin: 0;

  margin-bottom: 22px;

  letter-spacing: -0.04em;

}



.shop-search {

  position: relative;

  display: block;

}



.shop-search form {

  border-radius: var(--oxpins-bdr-radius);

  position: relative;

}



.shop-search form input[type=search],

.shop-search form input[type=text] {

  width: 100%;

  height: 70px;

  background-color: var(--oxpins-base);

  padding-left: 30px;

  padding-right: 30px;

  font-size: 16px;

  color: var(--oxpins-white);

  font-family: var(--oxpins-font);

  border: none;

  outline: none;

  font-weight: 500;

  border-radius: var(--oxpins-bdr-radius);

}



.shop-search form ::placeholder {

  color: inherit;

  opacity: 1;

}



.product__price-ranger {

  position: relative;

  padding: 27px 30px 25px;

  margin: 0;

  border: 1px solid var(--oxpins-bdr-color);

  border-radius: var(--oxpins-bdr-radius);

}



.product__price-ranger.price-ranger {

  margin-top: 7px;

  margin-bottom: 0px;

}



.product__price-ranger .price-ranger .ui-widget-content {

  background: var(--oxpins-extra);

  border: none;

  height: 5px;

  border-radius: 2.5px;

}



.product__price-ranger .price-ranger .ui-slider-handle {

  position: absolute;

  top: -5px;

  background: var(--oxpins-base);

  border: 0;

  height: 14px;

  width: 14px !important;

  border-radius: 50%;

  margin-left: -2px;

  outline: medium none;

  cursor: pointer;

  z-index: 2;

}



.product__price-ranger .price-ranger .ui-slider .ui-slider-range {

  background: var(--oxpins-base);

}



.product__price-ranger .price-ranger #slider-range {

  margin-left: 3px;

  margin-right: 0;

  margin-top: 0;

}



.product__price-ranger .price-ranger .ranger-min-max-block {

  position: relative;

  display: block;

  margin-top: 17px;

}



.product__price-ranger .price-ranger .ranger-min-max-block input {

  display: inline-block;

}



.product__price-ranger .price-ranger .ranger-min-max-block input[type=submit] {

  position: relative;

  display: block;

  background: var(--oxpins-primary);

  float: right;

  text-align: center;

  border: none;

  color: var(--oxpins-black);

  font-size: 10px;

  font-weight: 700;

  text-shadow: 0 0 1px currentColor;

  margin-top: 3px;

  cursor: pointer;

  padding: 1px 20px 2px;

  border-radius: 20px;

  text-transform: uppercase;

}



.product__price-ranger .price-ranger .ranger-min-max-block input[type=text] {

  position: relative;

  display: inline-block;

  color: #707876;

  font-size: 14px;

  font-weight: 600;

  width: 40px;

  line-height: 30px;

  border: none;

  padding: 0;

  text-align: center;

  background-color: transparent;

}



.product__price-ranger .price-ranger .ranger-min-max-block span {

  position: relative;

  display: inline-block;

  color: var(--oxpins-gray);

  font-size: 14px;

  font-weight: 400;

  line-height: 40px;

  left: -2px;

}



.shop-category {

  position: relative;

  display: block;

  border: 1px solid var(--oxpins-bdr-color);

  padding: 27px 15px 13px;

  border-radius: var(--oxpins-bdr-radius);

}



.shop-category .product__sidebar-title {

  margin-left: 15px;

  margin-bottom: 13px;

}



.shop-category ul {

  position: relative;

  display: block;

}



.shop-category ul li {

  position: relative;

  line-height: 24px;

  font-size: 16px;

  text-transform: capitalize;

  color: var(--oxpins-gray);

  margin-bottom: 7px;

}



.shop-category ul li:last-child {

  margin-bottom: 0;

}



.shop-category ul li a {

  position: relative;

  display: block;

  line-height: 24px;

  font-size: 16px;

  text-transform: capitalize;

  color: #707876;

  font-weight: 500;

  transition: all 0.3s ease;

  z-index: 1;

  padding: 7px 15px 10px;

  border-radius: var(--oxpins-bdr-radius);

}



.shop-category ul li a::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  bottom: 0;

  width: 100%;

  background: var(--oxpins-extra);

  border-radius: var(--oxpins-bdr-radius);

  z-index: -1;

  transform: scaleY(0);

  transform-origin: left;

  transform-style: preserve-3d;

  transition: all 200ms linear;

  transition-delay: 0.1s;

}



.shop-category ul li a:hover:before {

  transform: scaleY(1);

}



.shop-category ul li:hover a,

.shop-category ul li.active a {

  color: var(--oxpins-black);

  text-shadow: 1px 0 0 rgba(14, 34, 7, 0.5);

  background: var(--oxpins-extra);

}



.shop-category ul li a:after {

  position: absolute;

  right: 20px;

  top: 5px;

  font-family: "icomoon" !important;

  content: "\e906";

  opacity: 1;

  font-size: 15px;

  color: var(--oxpins-primary);

  line-height: 30px;

  transform: scale(0);

  transition: all 200ms linear;

  transition-delay: 0.1s;

  z-index: 1;

}



.shop-category ul li a:hover:after,

.shop-category ul li.active a:after {

  color: var(--oxpins-base);

  transform: scale(1);

}



.product__items {

  position: relative;

  display: block;

}



.product__showing-result {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 30px;

}



.product__showing-text-box {

  position: relative;

  display: block;

}



.product__showing-text {

  font-size: 18px;

  font-weight: 500;

}



.product__showing-sort {

  position: relative;

  display: block;

  max-width: 340px;

  width: 100%;

}



.product__showing-sort .select-box .nice-select {

  background-color: var(--oxpins-extra);

  border-radius: var(--oxpins-bdr-radius);

  color: var(--oxpins-gray);

  font-size: 14px;

  font-weight: 500;

  height: 70px;

  line-height: 70px;

  padding-left: 30px;

  padding-right: 30px;

  width: 100%;

  margin-bottom: 0px;

}



.product__showing-sort .select-box .nice-select:after {

  position: absolute;

  right: 30px;

}



.product__all {

  position: relative;

  display: block;

}



.product__all-single {

  position: relative;

  display: block;

  margin-bottom: 30px;

  text-align: center;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

  z-index: 1;

}



.product__all-single-inner {

  position: relative;

  display: block;

  border-radius: var(--oxpins-bdr-radius);

  overflow: hidden;

  z-index: 1;

}



.product__all-img {

  position: relative;

  display: block;

  overflow: hidden;

  background-color: var(--oxpins-white);

  z-index: 1;

}



.product__all-img:before {

  position: absolute;

  content: "";

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  background-color: rgba(var(--oxpins-black-rgb), 0.1);

  -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;

}



.product__all-single:hover .product__all-img:before {

  visibility: visible;

  -webkit-transform: translateY(0%);

  transform: translateY(0%);

  opacity: 1;

}



.product__all-img img {

  width: 100%;

  mix-blend-mode: darken;

  transition: all 500ms ease;

}



.product__all-single:hover .product__all-img img {

  transform: scale(1.05);

}



.product__all-content {

  position: relative;

  display: block;

  text-align: center;

  padding-top: 20px;

  padding-bottom: 30px;

  border: 1px solid var(--oxpins-bdr-color);

  border-top: 0;

  border-bottom-left-radius: var(--oxpins-bdr-radius);

  border-bottom-right-radius: var(--oxpins-bdr-radius);

  background-color: var(--oxpins-white);

  transition: all 500ms ease;

}



.product__all-single:hover .product__all-content {

  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);

}



.product__all-review {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

}



.product__all-review i {

  color: var(--oxpins-primary);

  font-size: 15px;

}



.product__all-review i + i {

  margin-left: 6px;

}



.product__all-title {

  font-size: 20px;

  font-weight: 900;

  line-height: 30px;

  margin-top: 3px;

  letter-spacing: -0.04em;

}



.product__all-title a {

  color: var(--oxpins-black);

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.product__all-title a:hover {

  color: var(--oxpins-base);

}



.product__all-price {

  font-weight: 600;

  line-height: 25px;

  font-size: 16px;

}



.product__all-btn-box {

  position: relative;

  display: block;

  margin-top: 15px;

  z-index: 2;

}



.product__all-btn {

  font-weight: 700;

  text-shadow: 0 0 1px currentColor;

  padding: 2px 20px 2px;

  font-size: 10px;

  text-transform: uppercase;

  background-color: var(--oxpins-extra);

  border-radius: 17px;

}



.product__all-btn:hover {

  color: var(--oxpins-black);

}



.product__all-btn:before {

  background-color: var(--oxpins-primary);

}



.products__all-icon-boxes {

  position: absolute;

  top: 20px;

  right: 20px;

  z-index: 2;

  display: flex;

  align-items: center;

  flex-direction: column;

  opacity: 0;

  -webkit-transform: perspective(400px) rotateX(20deg) translateX(100%);

  -ms-transform: perspective(400px) rotateX(20deg) translateX(100%);

  transform: perspective(400px) rotateX(20deg) translateX(100%);

  -webkit-transform-origin: bottom;

  -ms-transform-origin: bottom;

  transform-origin: bottom;

  transition-delay: 0.1s;

  transition-timing-function: ease-in-out;

  transition-duration: 0.5s;

  transition-property: all;

  z-index: 1;

}



.product__all-single:hover .products__all-icon-boxes {

  opacity: 1;

  -webkit-transform: perspective(400px) rotateX(0deg) translateX(0%);

  -ms-transform: perspective(400px) rotateX(0deg) translateX(0%);

  transform: perspective(400px) rotateX(0deg) translateX(0%);

  transition-delay: 0.3s;

  transition-timing-function: ease-in-out;

  transition-duration: 0.5s;

  transition-property: all;

}



.products__all-icon-boxes a {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  height: 40px;

  width: 40px;

  background-color: var(--oxpins-white);

  border-radius: 50%;

  font-size: 14px;

  color: var(--oxpins-black);

  transition: all 200ms linear;

  transition-delay: 0.1s;

}



.products__all-icon-boxes a:hover {

  background-color: var(--oxpins-base);

  color: var(--oxpins-white);

}



.products__all-icon-boxes a + a {

  margin-top: 10px;

}



/*--------------------------------------------------------------

# Product Details

--------------------------------------------------------------*/

.product-details {

  position: relative;

  display: block;

  padding: 112px 0px 56px;

}



.product-details__img {

  position: relative;

  display: block;

  overflow: hidden;

}



.product-details__img img {

  width: 100%;

  border-radius: var(--oxpins-bdr-radius);

}



.product-details__top {

  position: relative;

  display: block;

  margin-top: -8px;

}



.product-details__title {

  font-size: 34px;

  line-height: 44px;

  font-weight: 900;

  margin: 0;

  letter-spacing: -0.04em;

}



.product-details__title span {

  position: relative;

  display: inline-block;

  color: var(--oxpins-base);

  font-size: 20px;

  line-height: 24px;

  font-weight: 900;

  margin-left: 32px;

  letter-spacing: 0;

}



.product-details__reveiw {

  display: flex;

  align-items: center;

  margin-top: 19px;

  padding-bottom: 30px;

  margin-bottom: 21px;

  border-bottom: 1px solid var(--oxpins-bdr-color);

}



.product-details__reveiw i {

  font-size: 16px;

  color: var(--oxpins-primary);

}



.product-details__reveiw i + i {

  margin-left: 4px;

}



.product-details__reveiw span {

  position: relative;

  top: 1px;

  line-height: 1;

  font-size: 16px;

  color: var(--oxpins-gray);

  margin-left: 20px;

}



.product-details__content {

  position: relative;

  display: block;

}



.product-details__content-text1 {

  font-size: 16px;

  line-height: 30px;

  margin: 0;

  margin-bottom: 31px;

}



.product-details__content-text2 {

  font-size: 16px;

  line-height: 30px;

  margin: 0;

}



.product-details__quantity {

  position: relative;

  display: flex;

  align-items: center;

  margin-top: 21px;

}



.product-details__quantity-title {

  margin: 0;

  color: var(--oxpins-black);

  font-size: 18px;

  line-height: 30px;

  font-weight: 900;

  margin-right: 30px;

}



.product-details__quantity .quantity-box {

  position: relative;

  width: 98px;

  border-radius: var(--oxpins-bdr-radius);

  height: 50px;

}



.product-details__quantity .quantity-box input {

  width: 98px;

  border-radius: var(--oxpins-bdr-radius);

  height: 50px;

  border: 1px solid var(--oxpins-bdr-color);

  -webkit-appearance: textfield;

  -moz-appearance: textfield;

  appearance: textfield;

  font-family: var(--oxpins-font);

  padding-left: 30px;

  outline: none;

  font-size: 18px;

  font-weight: 500;

  color: var(--oxpins-gray);

  background-color: transparent;

}



.product-details__quantity .quantity-box button {

  width: 24px;

  height: 24px;

  background-color: transparent;

  color: var(--oxpins-gray);

  font-size: 8px;

  position: absolute;

  top: 1px;

  right: 1px;

  background-color: transparent;

  border: none;

  border-left: 1px solid var(--oxpins-bdr-color);

  display: flex;

  align-items: center;

  justify-content: center;

  outline: none;

}



.product-details__quantity .quantity-box button.sub {

  bottom: 1px;

  top: auto;

  border-top: 1px solid var(--oxpins-bdr-color);

  border-top-right-radius: 0px;

  border-bottom-right-radius: 0px;

}



.product-details__buttons {

  position: relative;

  display: flex;

  align-items: center;

  margin-bottom: 30px;

  margin-top: 30px;

}



.product-details__buttons-1 {

  position: relative;

  display: block;

}



.product-details__buttons-1 .thm-btn {

  background-color: var(--oxpins-base);

  color: var(--oxpins-white);

}



.product-details__buttons-1 .thm-btn:hover {

  color: var(--oxpins-black);

}



.product-details__buttons-1 .thm-btn::before {

  background-color: var(--oxpins-primary);

}



.product-details__buttons-2 {

  position: relative;

  display: block;

  margin-left: 10px;

}



.product-details__buttons-2 .thm-btn {

  background-color: var(--oxpins-primary);

}



.product-details__social {

  position: relative;

  display: flex;

  align-items: center;

}



.product-details__social .title {

  position: relative;

  display: block;

}



.product-details__social .title h3 {

  color: var(--oxpins-black);

  font-size: 18px;

  line-height: 18px;

  font-weight: 900;

  letter-spacing: -0.02em;

}



.product-details__social-link {

  position: relative;

  display: flex;

  align-items: center;

  margin-left: 30px;

}



.product-details__social-link a {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--oxpins-black);

  font-size: 15px;

  transition: all 200ms linear;

  transition-delay: 0.1s;

  background-color: var(--oxpins-extra);

  border-radius: 50%;

  height: 40px;

  width: 40px;

}



.product-details__social-link a + a {

  margin-left: 10px;

}



.product-details__social-link a:hover {

  color: var(--oxpins-white);

  background-color: var(--oxpins-base);

}



/*--------------------------------------------------------------

# Product Description

--------------------------------------------------------------*/

.product-description {

  position: relative;

  display: block;

  background: #ffffff;

  padding: 0px 0px 50px;

}



.product-description__title {

  font-size: 30px;

  line-height: 30px;

  font-weight: 900;

  margin-bottom: 25px;

  letter-spacing: -0.04em;

}



.product-description__text1 {

  font-size: 16px;

  line-height: 30px;

  margin: 0;

}



.product-description__list {

  position: relative;

  display: block;

  margin-top: 30px;

  margin-bottom: 30px;

}



.product-description__list ul {

  position: relative;

  display: block;

}



.product-description__list ul li {

  position: relative;

  display: block;

  margin-bottom: 2px;

}



.product-description__list ul li:last-child {

  margin-bottom: 0px;

}



.product-description__list ul li p {

  color: var(--oxpins-black);

  margin: 0;

  font-weight: 600;

  font-size: 16px;

}



.product-description__list ul li p span:before {

  position: relative;

  display: inline-block;

  color: var(--oxpins-primary);

  font-size: 17px;

  line-height: 17px;

  margin-right: 11px;

  top: 2px;

}



.product-description__tex2 {

  font-size: 16px;

  line-height: 30px;

  margin: 0;

}



/*--------------------------------------------------------------

# Review One

--------------------------------------------------------------*/

.review-one {

  position: relative;

  display: block;

}



.comments-area {

  position: relative;

  display: block;

  border-top: 1px solid var(--oxpins-bdr-color);

  padding-top: 56px;

}



.review-one__title {

  position: relative;

  display: block;

  margin-bottom: 34px;

}



.review-one__title h3 {

  font-size: 30px;

  line-height: 30px;

  font-weight: 900;

  margin: 0;

  letter-spacing: -0.04em;

}



.comments-area .comment-box {

  position: relative;

  display: block;

  margin-bottom: 40px;

  padding-bottom: 40px;

  border-bottom: 1px solid var(--oxpins-bdr-color);

}



.comments-area .comment {

  position: relative;

  display: flex;

  align-items: center;

}



.comments-area .comment-box .author-thumb {

  position: relative;

  display: block;

  width: 165px;

  height: 165px;

  border-radius: 50%;

  overflow: hidden;

}



.comments-area .comment-box .author-thumb img {

  width: 100%;

}



.comments-area .comment-box .author-thumb figure {

  margin: 0;

}



.review-one__content {

  position: relative;

  display: block;

  padding-left: 45px;

  flex: 1;

}



.review-one__content-top {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 28px;

}



.review-one__content-top .info {

  position: relative;

  display: block;

}



.review-one__content-top .info h2 {

  font-size: 22px;

  line-height: 32px;

  font-weight: 900;

  letter-spacing: -0.04em;

}



.review-one__content-top .info h2 span {

  color: var(--oxpins-base);

  font-size: 16px;

  font-weight: 600;

  letter-spacing: 0;

  text-transform: capitalize;

}



.review-one__content-top .reply-btn {

  position: relative;

  display: block;

}



.review-one__content-top .reply-btn i:before {

  color: var(--oxpins-primary);

  font-size: 15px;

}



.review-one__content-bottom {

  position: relative;

  display: block;

}



.review-one__content-bottom p {

  font-size: 16px;

  line-height: 30px;

  margin: 0px;

}



/*--------------------------------------------------------------

# Review Form One

--------------------------------------------------------------*/

.review-form-one {

  position: relative;

  display: block;

  padding: 18px 0 120px;

}



.review-form-one__inner {

  position: relative;

  display: block;

}



.review-form-one__title {

  font-size: 30px;

  font-weight: 900;

  line-height: 30px;

  letter-spacing: -0.04em;

}



.review-form-one__rate-box {

  position: relative;

  display: flex;

  align-items: center;

  margin-top: 15px;

  margin-bottom: 22px;

}



.review-form-one__rate-text {

  font-size: 18px;

  font-weight: 500;

}



.review-form-one__rate {

  position: relative;

  display: flex;

  align-items: center;

  margin-left: 17px;

}



.review-form-one__rate i {

  font-size: 16px;

  color: var(--oxpins-primary);

}



.review-form-one__rate i + i {

  margin-left: 5px;

}



.review-form-one__form {

  position: relative;

  display: block;

}



.review-form-one__form .row {

  --bs-gutter-x: 20px;

}



.review-form-one__input-box textarea {

  font-size: 14px;

  color: var(--oxpins-gray);

  height: 150px;

  width: 100%;

  background-color: var(--oxpins-extra);

  padding: 20px 30px 30px;

  border: none;

  outline: none;

  margin-bottom: 0px;

  font-weight: 500;

  border-radius: var(--oxpins-bdr-radius);

}



.review-form-one__input-box.text-message-box {

  height: 150px;

}



.review-form-one__input-box {

  position: relative;

  display: block;

  margin-bottom: 20px;

}



.review-form-one__input-box input[type=text],

.review-form-one__input-box input[type=email] {

  height: 58px;

  width: 100%;

  border: none;

  background-color: var(--oxpins-extra);

  padding: 0 0;

  padding-left: 30px;

  padding-right: 30px;

  outline: none;

  font-size: 14px;

  color: var(--oxpins-gray);

  display: block;

  font-weight: 500;

  border-radius: 20px;

}



.review-form-one__btn {

  border: none;

}



/*--------------------------------------------------------------

# Cart Page

--------------------------------------------------------------*/

.cart-page {

  position: relative;

  display: block;

  background: var(--oxpins-white);

  padding: 110px 0px 120px;

}



.cart-page .table-responsive {

  position: relative;

  display: block;

  width: 100%;

  overflow-x: auto;

  -webkit-overflow-scrolling: touch;

}



@media (max-width: 1199px) {

  .cart-table {

    min-width: 1170px;

  }

}

.cart-table {

  margin-bottom: 60px;

}



.cart-table thead th {

  color: var(--oxpins-black);

  font-size: 20px;

  line-height: 30px;

  font-weight: 900;

  font-family: var(--oxpins-font-two);

  padding: 0;

  border: none;

  padding-bottom: 21px;

  letter-spacing: -0.02em;

}



.cart-table thead th:last-child {

  text-align: right;

}



.cart-table tbody tr {

  vertical-align: middle;

}



.cart-table tbody tr:last-child {

  border-bottom: 1px solid #eeede5;

}



.cart-table tbody td {

  font-size: 18px;

  font-weight: 500;

  color: var(--oxpins-gray);

  vertical-align: middle;

  border-top: 1px solid var(--oxpins-bdr-color);

  border-bottom: 1px solid var(--oxpins-bdr-color);

  padding-top: 30px;

  padding-bottom: 30px;

  padding-left: 0;

  padding-right: 0;

  letter-spacing: 0;

}



.cart-table tbody td:last-child {

  text-align: right;

}



.cart-table .product-box {

  display: flex;

  align-items: center;

}



.cart-table .product-box .img-box {

  position: relative;

  display: block;

  width: 120px;

  border-radius: var(--oxpins-bdr-radius);

  overflow: hidden;

  margin-right: 35px;

}



.cart-table .product-box .img-box img {

  width: 100%;

  border-radius: var(--oxpins-bdr-radius);

}



.cart-table h3 {

  color: var(--oxpins-black);

  font-size: 20px;

  font-weight: 900;

  margin: 0;

  text-transform: none;

  letter-spacing: -0.02em;

}



.cart-table h3 a {

  color: var(--oxpins-black);

  transition: all 200ms linear;

  transition-delay: 0.1s;

}



.cart-table h3 a:hover {

  color: var(--oxpins-base);

}



.cart-table .quantity-box {

  position: relative;

  width: 98px;

  border-radius: var(--oxpins-bdr-radius);

  height: 50px;

}



.cart-table .quantity-box input {

  width: 98px;

  border-radius: var(--oxpins-bdr-radius);

  height: 50px;

  border: 1px solid var(--oxpins-bdr-color);

  -webkit-appearance: textfield;

  -moz-appearance: textfield;

  appearance: textfield;

  font-family: var(--oxpins-font);

  padding-left: 30px;

  outline: none;

  font-size: 18px;

  font-weight: 500;

  color: var(--oxpins-gray);

  background-color: transparent;

}



.cart-table .quantity-box button {

  width: 24px;

  height: 24px;

  background-color: transparent;

  color: var(--oxpins-gray);

  font-size: 8px;

  position: absolute;

  top: 1px;

  right: 1px;

  background-color: transparent;

  border: none;

  border-left: 1px solid var(--oxpins-bdr-color);

  display: flex;

  align-items: center;

  justify-content: center;

  outline: none;

}



.cart-table .quantity-box button.sub {

  bottom: 1px;

  top: auto;

  border-top: 1px solid var(--oxpins-bdr-color);

  border-top-right-radius: 0px;

  border-bottom-right-radius: 0px;

}



.cart-table .cross-icon {

  position: relative;

  display: block;

}



.cart-table .cross-icon i:before {

  position: relative;

  display: inline-block;

  color: var(--oxpins-black);

  font-size: 16px;

}



.cart-cupon__form {

  position: relative;

  display: block;

  margin-bottom: 30px;

}



.cart-cupon__input {

  width: 100%;

  max-width: 335px;

  border-radius: var(--oxpins-bdr-radius);

  background-color: var(--oxpins-extra);

  padding-left: 30px;

  padding-right: 30px;

  margin-right: 20px;

  font-family: var(--oxpins-font);

  font-size: 14px;

  color: var(--oxpins-gray);

  height: 60px;

  margin-bottom: 20px;

  border: none;

  outline: none;

  font-weight: 500;

}



.cart-cupon__form ::placeholder {

  color: var(--oxpins-gray);

  opacity: 1;

}



.cart-cupon__form button {

  top: -1px;

  border: none;

  outline: none !important;

}



.cart-total {

  position: relative;

  display: block;

  margin-bottom: 21px;

  margin-top: -7px;

}



.cart-total li {

  display: flex;

  justify-content: flex-end;

  align-items: center;

  color: var(--oxpins-gray);

  font-size: 18px;

  font-weight: 500;

  letter-spacing: 0;

}



.cart-total li + li {

  margin-top: 15px;

}



.cart-total li span:first-child {

  display: block;

  color: var(--oxpins-black);

  font-size: 20px;

  margin-right: 75px;

  font-weight: 900;

  width: 135px;

  text-align: right;

  letter-spacing: -0.04em;

  font-family: var(--oxpins-font-two);

}



.cart-total li:nth-child(2) span:first-child {

  position: relative;

  right: 6px;

}



.cart-total-amount {

  color: var(--oxpins-base);

  font-weight: 700;

}



.cart-page__buttons {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: flex-end;

}



.cart-page__buttons-1 {

  position: relative;

  display: block;

}



.cart-page__buttons-1 .thm-btn {

  background: var(--oxpins-base);

  color: var(--oxpins-white);

}



.cart-page__buttons-2 {

  position: relative;

  display: block;

  margin-left: 10px;

}



.cart-page__buttons-2 .thm-btn {

  background-color: var(--oxpins-primary);

}



/*--------------------------------------------------------------

# Checkout

--------------------------------------------------------------*/

.checkout-page {

  position: relative;

  display: block;

  padding: 110px 0 120px;

}



.checkout-page .billing_details {

  position: relative;

  display: block;

}



.billing_title {

  position: relative;

  display: block;

  margin-bottom: 33px;

}



.billing_title p {

  font-size: 16px;

  margin: 0;

}



.billing_title a,

.billing_title span {

  color: var(--oxpins-base);

  text-shadow: 0 0 1px currentColor;

  transition: all 500ms ease;

}



.billing_title a:hover {

  color: var(--oxpins-primary);

}



.billing_title h2 {

  font-size: 40px;

  line-height: 40px;

  margin: 0;

  font-weight: 900;

  margin-top: 6px;

  letter-spacing: -0.04em;

}



.billing_details_form {

  position: relative;

  display: block;

}



.billing_details_form .bs-gutter-x-20 {

  --bs-gutter-x: 20px;

}



.billing_details_form .btn-light {

  border: none;

}



.billing_details_form .btn-light:hover {

  border: none;

}



.billing_input_box {

  position: relative;

  display: block;

  margin-bottom: 20px;

}



.billing_input_box input[type=text],

.billing_input_box input[type=email],

.billing_input_box input[type=tel] {

  height: 60px;

  width: 100%;

  border: none;

  background-color: var(--oxpins-extra);

  padding-left: 30px;

  padding-right: 30px;

  border-radius: var(--oxpins-bdr-radius);

  outline: none;

  font-size: 14px;

  color: var(--oxpins-gray);

  display: block;

  font-weight: 500;

}



.billing_details .checked-box {

  position: relative;

  display: block;

  margin-top: -6px;

}



.billing_details .checked-box label {

  position: relative;

  display: inline-block;

  padding-left: 30px;

  margin-right: 0px;

  margin-bottom: 0;

  color: var(--oxpins-gray);

  font-size: 16px;

  line-height: 24px;

  font-weight: 500;

  text-transform: none;

  cursor: pointer;

  font-family: var(--oxpins-font);

}



.billing_details .checked-box input[type=checkbox] {

  display: none;

}



.billing_details .checked-box input[type=checkbox] + label span {

  position: absolute;

  top: 2px;

  left: 0;

  width: 20px;

  height: 20px;

  border-radius: 50%;

  vertical-align: middle;

  background-color: transparent;

  background: var(--oxpins-primary);

  cursor: pointer;

  -webkit-transition: all 300ms ease;

  -moz-transition: all 300ms ease;

  -ms-transition: all 300ms ease;

  -o-transition: all 300ms ease;

  transition: all 300ms ease;

  border: 0;

}



.billing_details .checked-box label span:before {

  position: absolute;

  top: 4px;

  left: 6px;

  display: block;

  border-bottom: 2px solid #283734;

  border-right: 2px solid #283734;

  content: "";

  width: 6px;

  height: 9px;

  pointer-events: none;

  -webkit-transform-origin: 66% 66%;

  -ms-transform-origin: 66% 66%;

  transform-origin: 66% 66%;

  -webkit-transform: rotate(45deg);

  -ms-transform: rotate(45deg);

  transform: rotate(45deg);

  -webkit-transition: all 0.15s ease-in-out;

  transition: all 0.15s ease-in-out;

  opacity: 0;

}



.billing_details.checked-box input[type=checkbox]:checked + label span {

  border-color: #ffffff;

}



.billing_details .checked-box input[type=checkbox]:checked + label span:before {

  opacity: 1;

}



.ship_different_address_title {

  margin-top: 34px;

}



.ship_different_address_title h2 span::before {

  position: relative;

  display: inline-block;

  color: var(--oxpins-black);

  font-size: 11px;

  top: -5px;

  left: 2px;

  height: 20px;

  width: 20px;

  background-color: var(--oxpins-primary);

  border-radius: 50%;

  text-align: center;

  line-height: 20px;

}



.ship_different_address_form .ship_different_input {

  position: relative;

  display: block;

  height: 130px;

}



.ship_different_address_form .ship_different_input textarea {

  font-size: 14px;

  color: var(--oxpins-gray);

  height: 130px;

  width: 100%;

  background-color: var(--oxpins-extra);

  padding: 15px 30px 20px;

  border: none;

  outline: none;

  margin-bottom: 0px;

  border-radius: var(--oxpins-bdr-radius);

  font-weight: 500;

}



.billing_details_form .select-box .nice-select {

  background-color: var(--oxpins-extra);

  border-radius: var(--oxpins-bdr-radius);

  color: var(--oxpins-gray);

  font-size: 14px;

  font-weight: 500;

  height: 60px;

  line-height: 60px;

  padding-left: 30px;

  padding-right: 30px;

  width: 100%;

  margin-bottom: 20px;

}



.billing_details_form .select-box .nice-select:after {

  position: absolute;

  right: 30px;

}



.your_order {

  position: relative;

  display: block;

  padding-top: 56px;

}



.your_order h2 {

  font-size: 40px;

  line-height: 40px;

  font-weight: 900;

  margin: 0;

  margin-bottom: 53px;

  letter-spacing: -0.04em;

}



.order_table_box {

  position: relative;

  width: 100%;

  border-bottom: 1px solid var(--oxpins-bdr-color);

  padding-bottom: 24px;

}



.order_table_detail {

  position: relative;

  width: 100%;

}



.order_table_head {

  position: relative;

  width: 100%;

  border-bottom: 1px solid var(--oxpins-bdr-color);

  border-top: 1px solid var(--oxpins-bdr-color);

}



.order_table_head th {

  font-size: 20px;

  color: var(--oxpins-black);

  font-weight: 900;

  letter-spacing: -0.02em;

  margin: 0;

  padding: 22px 0 22px;

}



.order_table_head th.right {

  float: right;

}



.order_table_detail tbody td {

  padding: 29px 0 2px;

}



.order_table_detail tbody td.pro__title {

  color: var(--oxpins-gray);

  font-size: 16px;

  line-height: 18px;

  font-weight: 500;

}



.order_table_detail tbody td.pro__price {

  color: var(--oxpins-gray);

  font-size: 16px;

  line-height: 18px;

  text-align: right;

  font-weight: 500;

  letter-spacing: 0;

  -webkit-transition: all 500ms ease;

  transition: all 500ms ease;

}



.checkout__payment {

  background-color: var(--oxpins-extra);

  border-radius: var(--oxpins-bdr-radius);

  padding: 49px 50px 18px;

  margin-bottom: 20px;

}



.checkout__payment__item + .checkout__payment__item {

  margin-top: 44px;

}



.checkout__payment__title {

  display: flex;

  color: var(--oxpins-black);

  font-size: 18px;

  font-weight: 800;

  margin: 0;

  align-items: center;

  margin-bottom: 23px;

  cursor: pointer;

  letter-spacing: -0.02em;

}



.checkout__payment__title::before {

  content: "";

  width: 23px;

  height: 23px;

  background-color: #ffffff;

  border: 2px solid #eee9db;

  border-radius: 50%;

  margin-right: 10px;

  font-family: "Font Awesome 5 Free";

  font-weight: 900;

  font-size: 10px;

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  margin-right: 15px;

  position: relative;

  top: -2px;

  transition: all 500ms ease;

}



.checkout__payment__title img {

  margin-left: 15px;

}



.checkout__payment__item--active .checkout__payment__title::before {

  background-color: var(--oxpins-primary);

  border-color: var(--oxpins-primary);

  content: "\f00c";

  color: var(--oxpins-black);

}



.checkout__payment__content {

  font-size: 16px;

  line-height: 30px;

  color: var(--oxpins-gray);

  font-weight: 500;

  margin-left: 39px;

}



/*--------------------------------------------------------------

# 24-12-2023

--------------------------------------------------------------*/

.main-menu .main-menu__list > li > ul > li > ul,

.stricky-header .main-menu__list > li > ul > li > ul {

  top: 0;

  left: calc(100% + 20px);

}



.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 {

  overflow: visible;

}



.home-showcase__item .home-showcase__buttons__item {

  padding: 6px 15px;

  width: 125px;

  font-size: 12px;

}



@media (min-width: 1400px) {

  .main-menu-three__right-content-box {

    max-width: 1280px;

    position: relative;

    margin: 0 auto;

  }

  .main-menu-three__search-cat {

    margin-left: 390px;

  }

  .main-menu-three__right-bottom {

    padding: 0 60px;

  }

}

@media (min-width: 1400px) and (max-width: 1599px) {

  .main-menu-three__wrapper {

    padding: 0 20px;

  }

  .main-menu-three__btn-box {

    margin-left: 45px;

  }

}

/*--- # Megamenu Popup --*/

.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul,

.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul,

.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul {

  position: fixed;

  top: 0 !important;

  left: 0 !important;

  width: 100vw;

  height: 100vh;

  visibility: visible;

  overflow-y: scroll;

  visibility: hidden;

  opacity: 0;

  -webkit-transform: scale(1, 0);

  transform: scale(1, 0);

  -webkit-transform-origin: bottom center;

  transform-origin: bottom center;

  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;

  z-index: 999999;

  -ms-overflow-style: none;

  scrollbar-width: none;

  overflow-y: scroll;

  padding: 0;

  background-color: var(--oxpins-white);

  display: block !important;

  margin: 0;

}



.main-menu__list > li.megamenu-clickable > ul::-webkit-scrollbar {

  display: none;

}



.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,

.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,

.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active {

  -webkit-transform-origin: top center;

  transform-origin: top center;

  -webkit-transform: scale(1, 1);

  transform: scale(1, 1);

  opacity: 1;

  visibility: visible;

  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;

}



body.megamenu-popup-active {

  overflow: hidden;

}



body.megamenu-popup-active .stricky-header {

  bottom: 0;

}



body.megamenu-popup-active .mobile-nav__content {

  overflow: unset;

}



.mobile-nav__content .demo-one .container {

  padding-left: 15px;

  padding-right: 15px;

}



.megamenu-popup {

  position: relative;

}

.megamenu-popup .megamenu-clickable--close {

  position: absolute;

  top: 18px;

  right: 20px;

  display: block;

  color: var(--oxpins-black);

}

@media (min-width: 1300px) {

  .megamenu-popup .megamenu-clickable--close {

    top: 38px;

    right: 40px;

  }

}

.megamenu-popup .megamenu-clickable--close:hover {

  color: var(--oxpins-base);

}

.megamenu-popup .megamenu-clickable--close span {

  width: 24px;

  height: 24px;

  display: block;

  position: relative;

  color: currentColor;

  transition: all 500ms ease;

}

.megamenu-popup .megamenu-clickable--close span::before, .megamenu-popup .megamenu-clickable--close span::after {

  content: "";

  width: 100%;

  height: 2px;

  background-color: currentColor;

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%) rotate(-45deg);

}

.megamenu-popup .megamenu-clickable--close span::after {

  transform: translate(-50%, -50%) rotate(45deg);

}



.demo-one {

  padding-top: 120px;

  padding-bottom: 120px;

}

.demo-one .row {

  --bs-gutter-y: 30px;

}

.demo-one__card {

  background-color: var(--oxpins-white);

  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);

  text-align: center;

  transition: 500ms ease;

  transform: translateY(0px);

}

.demo-one__card:hover {

  transform: translateY(-10px);

}

.demo-one__title {

  margin: 0;

  font-size: 18px;

  font-weight: 800;

  color: var(--oxpins-black);

}

.demo-one__title a {

  color: inherit;

  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;

  transition: all 500ms ease;

}

.demo-one__title a:hover {

  color: var(--oxpins-base);

  background-size: 100% 1px;

}

.demo-one__image {

  position: relative;

  overflow: hidden;

}

.demo-one__image img {

  max-width: 100%;

  transition: filter 500ms ease;

  filter: blur(0px);

}

.demo-one__image__new {

  position: absolute;

  top: 0px;

  right: 0px;

  background-color: var(--oxpins-base);

  border-radius: 8px;

  border-top-left-radius: 8px;

  border-bottom-right-radius: 8px;

  text-transform: uppercase;

  display: flex;

  z-index: 10;

  color: var(--oxpins-black);

  line-height: 1;

  padding: 10px 15px;

  font-size: 14px;

  font-weight: 800;

  font-family: var(--oxpins-font);

  border-radius: 0;

  transition: all 500ms ease;

}

.demo-one__card:hover .demo-one__image img {

  filter: blur(2px);

}

.demo-one__btns {

  background-color: rgba(0, 0, 0, 0.7);

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-direction: column;

  gap: 10px;

  transform: scale(1, 0);

  transition: transform 500ms ease, opacity 600ms linear;

  transform-origin: bottom center;

  opacity: 0;

}

.demo-one__card:hover .demo-one__btns {

  transform: scale(1, 1);

  opacity: 1;

  transform-origin: top center;

}

.demo-one .thm-btn {

  font-size: 13px;

  padding: 5px 20px;

  min-width: 130px;

  text-align: center;

  justify-content: center;

}

.demo-one__title {

  padding-top: 30.5px;

  padding-bottom: 30.5px;

}



.main-header-five .demo-one .thm-btn,

.main-header-four .demo-one .thm-btn {

  color: var(--oxpins-white);

}



/* Medium screen  */

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .causes-one__content {

    padding: 22px 25px 30px;

  }

  .events-one__left .section-title__title {

    font-size: 40px;

    line-height: 50px;

  }

  .events-one__right {

    margin-right: 0;

  }

  .events-one__text-1 {

    margin-right: 35px;

  }

  .events-one {

    padding: 120px 0 190px;

  }

  .feature-one__top-title {

    font-size: 28px;

  }

  .testimonial-one__left {

    margin-right: 0;

  }

  .testimonial-one__left .section-title__title {

    font-size: 48px;

  }

  .testimonial-one {

    padding: 120px 0 140px;

  }

  .gallery-one__single {

    width: 50%;

  }

  .gallery-one__single:last-child {

    float: none;

    margin: 0 auto;

  }

  .faq-one__left .section-title__title {

    font-size: 45px;

  }

  .footer-widget__contact {

    margin-left: 0;

    margin-top: 32px;

  }

  .footer-widget__non-profit {

    margin-top: 32px;

  }

  .feature-two__single-inner {

    padding: 47px 30px 45px;

  }

  .about-two__left {

    max-width: 600px;

    margin: 0 auto 0;

  }

  .about-two__right {

    max-width: 600px;

    margin: 90px auto 0;

  }

  .causes-two-top__left {

    margin-right: 0;

  }

  .causes-two__carousel.owl-theme .owl-nav {

    left: -265px;

  }

  .urgent-cause__top-left {

    float: none;

  }

  .urgent-cause__top-right {

    float: none;

    text-align: left;

    margin-top: 23px;

    margin-bottom: 8px;

  }

  .news-two__content-one {

    padding: 42px 25px 41px;

  }

  .make-donation__btn-box {

    bottom: 124px;

  }

  .about-three__left {

    max-width: 600px;

    margin: 0 auto;

  }

  .about-three__right {

    max-width: 600px;

    margin: 50px auto 0;

  }

  .events-two__left .section-title__title {

    font-size: 43px;

  }

  .events-two__text {

    font-size: 14px;

  }

  .events-two__content {

    padding: 23px 15px 21px;

  }

  .events-two__title {

    font-size: 20px;

  }

  .about-one__left {

    max-width: 600px;

    margin: 0 auto 0;

  }

  .about-one__right {

    max-width: 600px;

    margin: 60px auto 0;

  }

  .about-four__left {

    max-width: 600px;

    margin: 0 auto 0;

  }

  .about-four__right {

    max-width: 600px;

    margin: 220px auto 0;

  }

  .become-volunteer-page__right {

    padding: 25px 60px 25px;

  }

  .donation-details__donate {

    flex-direction: column;

  }

  .donation-details__donate-left {

    margin-bottom: 20px;

  }

  .feature-four__single {

    padding: 37px 30px 37px;

  }

  .news-details__pagenation li + li {

    margin-left: 0;

    margin-top: 30px;

  }

  .feature-three__single {

    min-height: 447px;

    max-width: 427px;

    margin: 0 auto 10px;

  }

  .feature-three__img {

    top: 0;

    left: 0px;

    right: 0px;

    bottom: 0;

    background-size: auto;

  }

  .feature-three__btn {

    bottom: 45px;

  }

  .feature-three__btn-two {

    bottom: 48px;

  }

}

/* Tablet Layout: 768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .events-one__left {

    margin-bottom: 50px;

  }

  .events-one__right {

    margin-left: 0;

    margin-right: 0;

  }

  .events-one {

    padding: 120px 0 190px;

  }

  .testimonial-one {

    padding: 120px 0 140px;

  }

  .testimonial-one__left {

    margin-bottom: 40px;

  }

  .gallery-one__single {

    width: 50%;

  }

  .gallery-one__single:last-child {

    float: none;

    margin: 0 auto;

  }

  .faq-one__left {

    margin-bottom: 50px;

  }

  .footer-widget__contact {

    margin-left: 0;

    margin-top: 32px;

  }

  .footer-widget__non-profit {

    margin-top: 32px;

  }

  .about-two__left {

    max-width: 600px;

    margin: 0 auto 0;

  }

  .about-two__right {

    max-width: 600px;

    margin: 90px auto 0;

  }

  .causes-two-top__right {

    margin-top: 23px;

  }

  .causes-two__tab-main-content {

    margin-right: 0;

    margin-top: 60px;

  }

  .causes-two__carousel.owl-theme .owl-nav {

    bottom: -90px;

    left: 0;

  }

  .causes-two {

    padding: 120px 0 210px;

  }

  .help__single {

    max-width: 500px;

  }

  .urgent-cause__top-left {

    float: none;

  }

  .urgent-cause__top-right {

    float: none;

    text-align: left;

    margin-top: 23px;

    margin-bottom: 8px;

  }

  .urgent-cause__inner {

    padding: 100px 65px 94px;

  }

  .contact-one__list {

    align-items: baseline;

    justify-content: inherit;

    flex-direction: column;

  }

  .contact-one__single + .contact-one__single {

    margin-top: 30px;

  }

  .news-two__content-one {

    padding: 42px 20px 41px;

  }

  .make-donation__right {

    margin-left: 0;

  }

  .make-donation__img img {

    border-bottom-left-radius: 0;

  }

  .about-three__left {

    max-width: 600px;

    margin: 0 auto;

  }

  .about-three__right {

    max-width: 600px;

    margin: 50px auto 0;

  }

  .events-two__left {

    margin-bottom: 60px;

  }

  .become-volunteer__inner {

    justify-content: center;

    flex-direction: column;

    text-align: center;

  }

  .become-volunteer__right {

    margin-top: 25px;

  }

  .contact-one__single:before {

    display: none;

  }

  .about-one__left {

    max-width: 600px;

    margin: 0 auto 0;

  }

  .about-one__right {

    max-width: 600px;

    margin: 60px auto 0;

  }

  .about-four__left {

    max-width: 600px;

    margin: 0 auto 0;

  }

  .about-four__right {

    max-width: 600px;

    margin: 220px auto 0;

  }

  .become-volunteer-page__left {

    border-radius: var(--oxpins-bdr-radius);

    margin-bottom: 30px;

  }

  .become-volunteer-page__right {

    border-radius: var(--oxpins-bdr-radius);

  }

  .donate-now__right {

    margin-top: 30px;

  }

  .donation-details__sidebar {

    margin-top: 60px;

  }

  .donations-list__img img {

    border-bottom-left-radius: 0;

    border-top-right-radius: var(--oxpins-bdr-radius);

  }

  .donations-list__content {

    border-top-right-radius: 0;

    border-bottom-left-radius: var(--oxpins-bdr-radius);

  }

  .event-details__right {

    margin-top: 60px;

  }

  .news-page .news-one__title {

    font-size: 23px;

  }

  .news-details__pagenation li + li {

    margin-left: 0;

    margin-top: 30px;

  }

  .feature-three__single {

    min-height: 447px;

    max-width: 427px;

    margin: 0 auto 10px;

  }

  .feature-three__img {

    top: 0;

    left: 0px;

    right: 0px;

    bottom: 0;

    background-size: auto;

  }

  .feature-three__btn {

    bottom: 47px;

  }

  .feature-three__btn-two {

    bottom: 48px;

  }

}

/* Mobile Layout: 320px. */

@media only screen and (max-width: 767px) {

  .section-title__title {

    font-size: 35px;

    line-height: 45px;

  }

  .section-title__title br {

    display: none;

  }

  .causes-one__content {

    padding: 22px 25px 30px;

  }

  .become-volunteer-one__title br {

    display: none;

  }

  .events-one__left {

    margin-bottom: 50px;
              text-align: center;

  }

  .events-one__right {

    margin-left: 0;

    margin-right: 0;

  }

  .events-one__text-1 {

    margin-right: 0px;

  }

  .events-one {

    padding: 40px 0 50px;

  }

  .feature-one__single {

    padding: 50px 20px 50px;
    TEXT-ALIGN: CENTER;

  }
    .feature-one__top-icon{
        margin: auto;
    }
  .feature-one__top-inner {

    margin: 0 auto;
    display: block;
    text-align: center;

  }

  .feature-one__top-title-box {

    margin-left: 0;

    margin-top: 20px;

  }

  .feature-one__top-title {

    font-size: 30px;

  }

  .testimonial-one {

    padding: 120px 0 140px;

  }

  .testimonial-one__left {

    margin-bottom: 40px;

    margin-right: 0;

  }

  .testimonial-one__client-img {

    left: 10px;

  }

  .testimonial-one__client-info {

    top: -95px;

    left: 155px;

  }

  .testimonial-one__client-name {

    font-size: 18px;

    line-height: 28px;

  }

  .testimonial-one__quote {

    right: 10px;

  }

  .testimonial-one__single {

    padding: 72px 20px 44px;

  }

  .gallery-one__single {

    width: 100%;

  }

  .faq-one__left {

    margin-bottom: 50px;

  }

  .faq-one__text-1 {

    margin-right: 0;

  }

  .counter-one__single {

    flex: 0 0 100%;

    max-width: 100%;

  }

  .counter-one__single:before {

    display: none;

  }
    .site-footer__top{
        padding: 74px 0 30px;
    }
    .footer-widget__about{
        width: 100%;
        text-align: center;
    }
  .footer-widget__links {

    margin-top: 35px;
        margin-bottom: 32px;

  }
    .footer-widget__title{
        margin-bottom: 18px;
    }
    .site-footer__bottom-text{
        font-size: 12px;
    }
  .footer-widget__contact {

    margin-left: 0;

    margin-top: 0;

  }

  .feature-two__single-inner {

    padding: 47px 30px 45px;

  }

  .about-two__left {

    margin-right: 0;

  }

  .about-two__img-two {

    display: none;

  }

  .about-two__left-title-box {

    left: 0;

    bottom: 45px;

  }

  .about-two__shape-3 {

    display: none;

  }

  .about-two__right {

    margin-top: 60px;

  }

  .about-two__points {

    flex-direction: column;

    align-items: baseline;

  }

  .about-two__points li + li {

    margin-left: 0;

    margin-top: 25px;

  }

  .causes-two-top__right {

    margin-top: 23px;

  }

  .causes-two__tab-main-content {

    margin-right: 0;

    margin-top: 60px;

  }

  .causes-two__carousel.owl-theme .owl-nav {

    bottom: -90px;

    left: 0;

  }

  .causes-two {

    padding: 120px 0 210px;

  }

  .causes-two-top__left {

    margin-right: 0;

  }

  .testimonial-two__content {

    padding: 36px 20px 67px;

  }

  .urgent-cause__top-left {

    float: none;

  }

  .urgent-cause__top-right {

    float: none;

    text-align: left;

    margin-top: 23px;

    margin-bottom: 8px;

  }

  .urgent-cause__inner {

    padding: 100px 20px 94px;

  }

  .contact-one__list {

    align-items: baseline;

    justify-content: inherit;

    flex-direction: column;

  }

  .contact-one__single + .contact-one__single {

    margin-top: 30px;

  }

  .contact-one__inne {

    padding: 42px 20px 43px;

  }

  .news-two__list-single {

    flex-direction: column;

  }

  .news-two__img-two {

    max-width: 100%;

    border-bottom-left-radius: 0;

    border-top-left-radius: var(--oxpins-bdr-radius);

    border-top-right-radius: var(--oxpins-bdr-radius);

  }

  .news-two__img-two img {

    width: 100%;

    border-top-left-radius: var(--oxpins-bdr-radius);

    border-top-right-radius: var(--oxpins-bdr-radius);

    border-bottom-left-radius: 0;

  }

  .news-two__content-two {

    border-left: 1px solid var(--oxpins-bdr-color);

    border-top-right-radius: 0;

    border-bottom-left-radius: var(--oxpins-bdr-radius);

  }

  .news-two__content-one {

    padding: 42px 25px 41px;

  }

  .make-donation__right {

    margin-left: 0;

  }

  .make-donation__img img {

    border-bottom-left-radius: 0;

  }

  .make-donation__content {

    padding-left: 15px;

    padding-bottom: 160px;

  }

  .make-donation__text br {

    display: none;

  }

  .make-donation__btn-box {

    position: absolute;

    bottom: 50px;

    right: inherit;

  }

  .make-donation__raised-goal {

    flex-direction: column;

    align-items: baseline;

  }

  .make-donation__raised-goal li + li {

    margin-left: 0;

    margin-top: 40px;

  }

  .about-three__right {

    margin-right: 0;

    margin-top: 50px;

  }

  .about-three__img-two {

    display: none;

  }

  .about-three__border {

    display: none;

  }

  .about-three__help {

    left: 5px;

  }

  .testimonial-three__client-img {

    left: 10px;

  }

  .testimonial-three__client-info {

    left: 160px;

  }

  .testimonial-three__client-name {

    font-size: 19px;

    line-height: 25px;

  }

  .testimonial-three__quote {

    height: 50px;

    width: 50px;

    top: -30px;

    right: 0;

  }

  .testimonial-three__single {

    padding: 65px 20px 40px;

  }

  .events-two__list > li {

    flex-direction: column;

    align-items: baseline;

  }

  .events-two__img {

    max-width: 100%;

    border-top-left-radius: var(--oxpins-bdr-radius);

    border-bottom-left-radius: 0;

    border-top-right-radius: var(--oxpins-bdr-radius);

  }

  .events-two__img img {

    border-top-left-radius: var(--oxpins-bdr-radius);

    border-bottom-left-radius: 0;

    border-top-right-radius: var(--oxpins-bdr-radius);

  }

  .events-two__content {

    border-top-right-radius: 0;

    border-bottom-right-radius: var(--oxpins-bdr-radius);

    border-bottom-left-radius: var(--oxpins-bdr-radius);

    width: 100%;

  }

  .events-two__right-bg-box {

    display: none;

  }

  .events-two__left {

    margin-bottom: 60px;

  }

  .become-volunteer__inner {

    justify-content: center;

    flex-direction: column;

    text-align: center;

  }

  .become-volunteer__right {

    margin-top: 25px;

  }

  .contact-one__single:before {

    display: none;

  }

  .about-one__left {

    margin-right: 0;

  }

  .about-one__img-border {

    display: none;

  }

  .about-one__right {

    margin-top: 0px;
      margin-bottom: 30px;

  }

  .about-one__points {

    flex-direction: column;

    align-items: baseline;

  }

  .about-one__points li + li {

    margin-left: 0;

    margin-top: 25px;

  }

  .about-one__fund-text br {

    display: none;

  }

  .error-page__title {

    font-size: 170px;

    line-height: 170px;

  }

  .error-page__title-2 {

    font-size: 170px;

    line-height: 170px;

  }

  .error-page__tagline br {

    display: none;

  }

  .error-page {

    padding: 75px 0 120px;

  }

  .about-four__left {

    margin-right: 0;

  }

  .about-four__img-two {

    display: none;

  }

  .about-four__right {

    margin-left: 0;

    margin-top: 60px;

  }

  .become-volunteer-page__left {

    border-radius: var(--oxpins-bdr-radius);

    margin-bottom: 30px;

    padding: 30px 20px 30px;

  }

  .become-volunteer-page__right {

    border-radius: var(--oxpins-bdr-radius);

    padding: 30px 20px 30px;

  }

  .become-volunteer__call-content p {

    font-size: 15px;

  }

  .donate-now__right {

    margin-top: 30px;

  }

  .donation-details__organizer {

    padding: 50px 25px 41px;

  }

  .donation-details__sidebar {

    margin-top: 60px;

  }

  .donation-details__donate {

    flex-direction: column;

  }

  .donation-details__donate-list {

    flex-direction: column;

  }

  .donation-details__donate-list li + li {

    margin-left: 0;

    margin-top: 20px;

  }

  .donation-details__donate-list {

    margin-bottom: 20px;

  }

  .donation-details__recent-donation-list {

    flex-direction: column;

    align-items: baseline;

  }

  .donation-details__recent-donation-list li + li {

    margin-top: 20px;

  }

  .comment-one__single {

    flex-direction: column;

    align-items: baseline;

  }

  .comment-one__content {

    margin-left: 0;

    margin-top: 20px;

  }

  .donations-list__img img {

    border-bottom-left-radius: 0;

    border-top-right-radius: var(--oxpins-bdr-radius);

  }

  .donations-list__content {

    border-top-right-radius: 0;

    border-bottom-left-radius: var(--oxpins-bdr-radius);

    padding: 50px 20px 50px;

  }

  .event-details__right {

    margin-top: 60px;

  }

  .feature-four__single {

    padding: 37px 30px 37px;

  }

  .news-details__pagenation li + li {

    margin-left: 0;

    margin-top: 30px;

  }

  .news-details__pagenation li {

    padding-left: 30px;

    padding-right: 30px;

  }

  .news-details__bottom {

    flex-direction: column;

  }

  .news-details__social-list {

    margin-top: 20px;

  }

  .sidebar__tags {

    padding: 46px 15px 50px;

  }

  .sidebar__comments {

    padding: 46px 20px 43px;

  }

  .news-sidebar__bottom-box {

    padding: 60px 30px 56px;

  }

  .news-sidebar__delivering-services {

    padding: 60px 30px 56px;

  }

  .about-four__border {

    display: none;

  }

  .feature-three__single {

    min-height: 447px;

    width: 320px;

    margin: 0 auto 10px;

  }

  .feature-three__img {

    top: 0;

    left: -53px;

    right: -54px;

    bottom: 0;

    background-size: auto;

  }

  .feature-three__title-box {

    left: 40px;

  }

  .feature-three__btn {

    bottom: 46px;

    left: 75px;

  }

}

@media only screen and (min-width: 1200px) and (max-width: 1385px) {

  .causes-one__content {

    padding: 22px 15px 30px;

  }

  .causes-one__title {

    font-size: 24px;

  }

}

/*--------------------------------------------------------------

# Slider All Responsice Css

--------------------------------------------------------------*/

@media only screen and (min-width: 1200px) and (max-width: 1425px) {

  .main-slider__nav {

    left: 50%;

    transform: translateY(-50%) translateX(-50%);

    align-items: flex-end;

  }

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .main-slider__nav {

    left: 50%;

    transform: translateY(-50%) translateX(-50%);

    align-items: flex-end;

  }

  .main-slider-two__title {

    font-size: 75px;

    line-height: 80px;

    margin-top: 16px;

    margin-bottom: 25px;

  }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .main-slider__nav {

    left: 50%;

    transform: translateY(-50%) translateX(-50%);

    align-items: flex-end;

  }

  .main-slider-two__title {

    font-size: 65px;

    line-height: 75px;

    margin-top: 16px;

    margin-bottom: 25px;

  }

  .main-slider-two__title br {

    display: none;

  }

}

@media only screen and (max-width: 767px) {

  .main-slider .image-layer {

    display: none;

  }

  .main-slider__title {

    font-size: 42px;

    line-height: 52px;

  }

  .main-slider__nav {

    display: none;

  }

  .main-slider-two__nav {

    display: none;

  }

  .main-slider-two__title {

    font-size: 45px;

    line-height: 60px;

    margin-top: 14px;

    margin-bottom: 25px;

  }

  .main-slider-two__title br {

    display: none;

  }

  .main-slider-three__title {

    font-size: 42px;

    line-height: 52px;

    margin-bottom: 28px;

  }

  .main-slider-three__title br {

    display: none;

  }

  .main-slider-three .container {

    padding-top: 214px;

  }

}

/*--------------------------------------------------------------

# Main Menu All Responsice Css

--------------------------------------------------------------*/

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .main-menu__right-top-address {

    display: none;

  }

  .main-menu .mobile-nav__toggler {

    color: var(--oxpins-white);

    display: inline-block;

    padding: 17px 0;

  }

  .main-menu .mobile-nav__toggler:hover {

    color: var(--oxpins-primary);

  }

  .main-menu-two__left {

    padding-left: 30px;

  }

  .main-menu-two__right-top {

    display: none;

  }

  .main-menu-two__shape-1 {

    display: none;

  }

  .main-menu-two__right-bottom {

    background-color: var(--oxpins-black);

    padding-left: 0;

    padding-right: 30px;

  }

  .main-menu-two__search {

    color: var(--oxpins-white);

  }

  .main-menu-two__cart {

    color: var(--oxpins-white);

  }

  .main-menu-two .mobile-nav__toggler {

    padding: 17px 0;

    margin-right: 60px;

  }

  .main-menu-two__wrapper-inner {

    padding: 8px 0;

  }

  .main-menu-two__btn:hover {

    background-color: var(--oxpins-white);

    color: var(--oxpins-base);

  }

  .main-menu-three__btn-box {

    display: none;

  }

  .main-menu-three__search-cat {

    margin-left: 400px;

  }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .main-menu__right-top-address {

    display: none;

  }

  .main-menu .mobile-nav__toggler {

    color: var(--oxpins-white);

    display: inline-block;

    padding: 17px 0;

  }

  .main-menu .mobile-nav__toggler:hover {

    color: var(--oxpins-primary);

  }

  .main-menu__wrapper {

    padding-left: 30px;

    padding-right: 30px;

  }

  .main-menu__shape-1 {

    display: none;

  }

  .main-menu-two__left {

    padding-left: 30px;

  }

  .main-menu-two__right-top {

    display: none;

  }

  .main-menu-two__shape-1 {

    display: none;

  }

  .main-menu-two__right-bottom {

    background-color: var(--oxpins-black);

    padding-left: 0;

    padding-right: 30px;

  }

  .main-menu-two__search {

    color: var(--oxpins-white);

  }

  .main-menu-two__cart {

    color: var(--oxpins-white);

  }

  .main-menu-two .mobile-nav__toggler {

    padding: 17px 0;

    margin-right: 60px;

    color: var(--oxpins-white);

  }

  .main-menu-two__wrapper-inner {

    padding: 8px 0;

  }

  .main-menu-two__btn:hover {

    background-color: var(--oxpins-white);

    color: var(--oxpins-base);

  }

  .main-menu-three__btn-box {

    display: none;

  }

  .main-menu-three__search-cat {

    margin-left: 270px;

  }

  .main-menu-three__right-top {

    padding: 21.5px 30px;

  }

  .main-menu-three__right-bottom {

    padding: 0 30px;

  }

}

@media (max-width: 767px) {
    .main-slider-two .container {
        position: relative;
        padding-top: 29px;
        padding-bottom: 150px;
        z-index: 30;
    }
    .section-title{
        text-align: center;
    }
    .thm-btn.about-one__btn{
        margin: 0 auto;
        justify-content: center;
        display: table;
    }
  .main-menu__wrapper {

    padding-left: 30px;

    padding-right: 30px;

  }

  .main-menu__shape-1 {

    display: none;

  }

  .main-menu__right-top {

    display: none;

  }

  .main-menu .mobile-nav__toggler {

    color: var(--oxpins-base);

    display: inline-block;

    padding: 17px 0;

  }

  .main-menu .mobile-nav__toggler:hover {

    color: var(--oxpins-black);

  }

  .main-menu__main-menu-content-box {

    display: none;

  }

  .main-menu__right-bottom {

    background-color: var(--oxpins-white);

    padding-left: 0;

  }

  .main-menu__left {

    width: auto;

    margin-right: 0;

    float: left;

  }

  .main-menu__right {

    width: auto;

    float: right;

  }

  .main-menu__wrapper-inner {

    padding: 8px 0;

  }

  .main-menu-two__left {

    padding-left: 30px;

  }

  .main-menu-two__right-top {

    display: none;

  }

  .main-menu-two__shape-1 {

    display: none;

  }

  .main-menu-two__right-bottom {

    background-color: var(--oxpins-black);

    padding-left: 0;

    padding-right: 30px;

  }

  .main-menu-two__main-menu-content-box {

    display: none;

  }

  .main-menu-two .mobile-nav__toggler {

    padding: 17px 0;

    margin-right: 0px;

    color: var(--oxpins-white);

  }

  .main-menu-two .mobile-nav__toggler:hover {

    color: var(--oxpins-primary);

  }

  .main-menu-two__wrapper-inner {

    padding: 8px 0;

  }

  .main-menu-three__wrapper {

    padding: 8px 30px;

  }

  .main-menu-three__right-top {

    display: none;

  }

  .main-menu-three__right-bottom {

    padding: 0;

  }

  .main-menu-three .mobile-nav__toggler {

    color: var(--oxpins-white);

  }

  .main-menu-three__btn-box {

    display: none;

  }

  .main-menu-three__search-cat {

    display: none;

  }
	

}

@media only screen and (min-width: 1841px) and (max-width: 1900px) {

  .main-menu-two__shape-1 {

    display: none;

  }

}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {

  .main-menu-two__left {

    padding-left: 60px;

  }

  .main-menu-two__shape-1 {

    display: none;

  }

  .main-menu-two__right-top {

    padding-right: 40px;

  }

}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

  .main-menu-two__left {

    padding-left: 30px;

  }

  .main-menu-two__shape-1 {

    display: none;

  }

  .main-menu-two__right-top {

    padding-right: 30px;

  }

  .main-menu-two__right-top {

    padding-right: 30px;

    padding-left: 30px;

  }

  .main-menu-two__right-top-address-list li + li {

    margin-left: 30px;

  }

  .main-menu-two__right-top-address-list li:before {

    display: none;

  }

  .main-menu-two__right-bottom {

    padding-left: 30px;

    padding-right: 30px;

  }

  .main-menu-two__search-box:before {

    display: none;

  }

}

@media only screen and (min-width: 1600px) and (max-width: 1840px) {

  .main-menu-two__left {

    padding-left: 60px;

  }

  .main-menu-two__shape-1 {

    right: -105px;

  }

  .main-menu-three__search-cat {

    margin-left: 230px;

  }

}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {

  .main-menu__right-top-social {

    display: none;

  }

  .main-menu-three__search-cat {

    margin-left: 40px;

  }

}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

  .main-menu__right-top-social {

    display: none;

  }

  .main-menu__right-top {

    justify-content: inherit;

  }

  .main-menu__right-top-address-list li + li {

    margin-left: 14px;

  }

  .main-menu__right-top-address-list li:before {

    display: none;

  }

  .main-menu__volunteers {

    margin-right: 20px;

  }

  .main-menu__search-box {

    display: none;

  }

  .main-menu__cat-box {

    display: none;

  }

  .main-menu-three__search-cat {

    margin-left: 40px;

  }

  .main-menu-three__btn-box {

    display: none;

  }

}

/*--------------------------------------------------------------

# 05/03/2023 All Responsice Css

--------------------------------------------------------------*/

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .cart-page .table-responsive {

    margin-bottom: 30px;

  }

  .billing_title h2 {

    font-size: 35px;

  }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .product__sidebar {

    margin-bottom: 60px;

  }

  .product-details__top {

    margin-top: 52px;

  }

  .cart-page .table-responsive {

    margin-bottom: 30px;

  }

  .cart-total li {

    justify-content: flex-start;

  }

  .cart-total li span:first-child {

    text-align: left;

  }

  .cart-page__buttons {

    justify-content: start;

  }

  .checkout__payment {

    margin-top: 50px;

  }

  .news-carousel-page .news-one__content-box {

    padding: 21px 20px 12px;

  }

}

@media (max-width: 767px) {

  .product__sidebar {

    margin-bottom: 60px;

  }

  .product__showing-result {

    flex-direction: column;

  }

  .product__showing-text-box {

    margin-bottom: 20px;

  }

  .product-details__top {

    margin-top: 52px;

  }

  .product-details__buttons {

    flex-direction: column;

    align-items: baseline;

  }

  .product-details__buttons-2 {

    margin-left: 0;

    margin-top: 10px;

  }

  .product-details__social {

    flex-direction: column;

    align-items: baseline;

  }

  .product-details__social-link {

    margin-left: 0;

    margin-top: 15px;

  }

  .comments-area .comment {

    flex-direction: column;

    align-items: baseline;

  }

  .review-one__content {

    padding-left: 0;

    margin-top: 20px;

  }

  .review-one__content-top {

    flex-direction: column;

    align-items: baseline;

  }

  .cart-page .table-responsive {

    margin-bottom: 30px;

  }

  .cart-total li {

    justify-content: flex-start;

  }

  .cart-total li span:first-child {

    text-align: left;

  }

  .cart-page__buttons {

    justify-content: start;

    flex-direction: column;

    align-items: baseline;

  }

  .cart-page__buttons-2 {

    margin-left: 0;

    margin-top: 10px;

  }

  .checkout__payment {

    margin-top: 50px;

    padding: 49px 30px 18px;

  }

  .cart-total li span:first-child {

    margin-right: 45px;

  }

}

.main-menu-two__btn img{

    width: 44px;

    margin-right: 15px;

}
.topbar-five {
  position: relative;
  z-index: 2;
  background-color: #303192;
  padding: 10px 0;
    display: none
}
@media (max-width: 767px) {
  .topbar-five {
    display: block;
  }
    .about-one__shape-box-1{
        display: none;
    }
    .about-one__shape-1{
        opacity: 0;
    }
    .about-one{
        padding-top: 50px;
        padding-bottom: 20px;
        
    }
}
.topbar-five__info {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  width: 100%;
}
.topbar-five__info li {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: var(--oxpins-gray);
}
.topbar-five__info li i {
  font-size: 16px;
    color: #ffffff;
    margin-right: 5px;
}
.topbar-five__info li i.oxpins-icon-two-envelop {
  position: relative;
  top: 1px;
}
.topbar-five__info li a {
  color: #fff;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-five__info li a:hover {
  color: var(--oxpins-base);
  background-size: 100% 1px;
}
/*--------------------------------------------------------------
#  Become Volunter
--------------------------------------------------------------*/
.become-volunteer-two {
  position: relative;
        background-color: #f9f4e8;
}
.become-volunteer-two__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f7941d;
  border-radius: 30px;
  padding: 38px 60px;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: 2;
}
@media (max-width: 767px) {
  .become-volunteer-two__inner {
    display: block;
    padding: 50px 20px;
  }
}
.become-volunteer-two__title {
  color: var(--oxpins-white);
  font-size: 36px;
  line-height: 44px;
  font-weight: 900;
  letter-spacing: -1.08px;
  margin: 0;
}
@media (max-width: 767px) {
  .become-volunteer-two__title {
    margin: 0 0 25px;
      font-size: 26px;
      line-height: 35px;
      text-align: center;
  }
}
.become-volunteer-two .thm-btn-two {
  background-color: var(--oxpins-white);
  color: var(--oxpins-black);
  padding: 13px 24px;
}
.become-volunteer-two .thm-btn-two::before {
  background-color: var(--oxpins-base);
}
.become-volunteer-two .thm-btn-two:hover {
  color: var(--oxpins-white);
}

.become-volunteer-three {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .become-volunteer-three {
    padding: 80px 0;
  }
}
.become-volunteer-three__inner {
  position: relative;
  background-color: var(--oxpins-base);
  border-radius: 6px;
  padding: 0;
  background-position: top left;
  background-repeat: no-repeat;
  background-blend-mode: luminosity;
  z-index: 2;
  padding: 54px 0 60px 65px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .become-volunteer-three__inner {
    padding: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .become-volunteer-three__inner {
    padding: 50px 30px 0;
  }
}
.become-volunteer-three__inner__shape {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.become-volunteer-three__inner__shape::after {
  position: absolute;
  right: -15px;
  top: 50px;
  content: "";
  width: 258.483px;
  height: 259.006px;
  transform: rotate(-45deg);
  border-radius: 6px;
  background: linear-gradient(180deg, #272727 0%, rgba(39, 39, 39, 0) 100%);
  opacity: 0.3;
  mix-blend-mode: luminosity;
}
@media (max-width: 991px) {
  .become-volunteer-three__inner__shape::after {
    right: 0;
    left: 0;
    top: auto;
    bottom: 0;
    margin: auto;
  }
}
.become-volunteer-three__content {
  position: relative;
}
.become-volunteer-three__title {
  color: var(--oxpins-white);
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  letter-spacing: -1.2px;
  margin: 0 0 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .become-volunteer-three__title {
    font-size: 36px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .become-volunteer-three__title {
    font-size: 30px;
    line-height: 40px;
  }
}
.become-volunteer-three__text {
  color: var(--oxpins-white);
  opacity: 0.7;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.48px;
  margin: 0 0 31px;
}
.become-volunteer-three .thm-btn-two {
  background-color: var(--oxpins-white);
  color: var(--oxpins-black);
  padding: 13px 40px;
  border-radius: 6px;
}
.become-volunteer-three .thm-btn-two::before {
  background-color: var(--oxpins-black);
}
.become-volunteer-three .thm-btn-two:hover {
  color: var(--oxpins-white);
}
.become-volunteer-three__image {
  position: absolute;
  right: -67px;
  bottom: 0;
  animation: messageMove 3s linear 0s infinite;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .become-volunteer-three__image {
    text-align: right;
    right: -35px;
  }
  .become-volunteer-three__image img {
    max-width: 82%;
  }
}
@media (max-width: 991px) {
  .become-volunteer-three__image {
    position: relative;
    right: 0;
    text-align: center;
    margin-top: 20px;
  }
  .become-volunteer-three__image img {
    max-width: 100%;
  }
}
@keyframes messageMove {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
.footer-widget__form {
  position: relative;
  width: 42%;
  margin: 12px 0 0;
}
.footer-widget__form input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 56px;
  background-color: var(--oxpins-white);
  color: var(--oxpins-gray4);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  padding-left: 21px;
  padding-right: 70px;
  transition: all 500ms ease;
}
.footer-widget__form button {
  background-color: transparent;
  position: absolute;
  right: 15px;
  top: 0;
  line-height: 55px;
  color: var(--oxpins-base);
  font-size: 14px;
  transition: all 500ms ease;
  border: none;
  outline: none;
  box-shadow: none;
}
.footer-widget__form button:hover {
  color: var(--oxpins-primary);
}
@media (max-width: 767px) {
  .footer-widget__form  {
    width:100%;
  }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-one {
  position: relative;
  background-color: #1b1b5d;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service-one {
    padding: 80px 0;
  }
}
.service-one__shape {
  position: absolute;
  left: 0;
  top: 0;
    opacity: 0.3;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 362px;
  height: 318px;
  animation: br-translate 3s ease infinite;
}
@media (max-width: 1300px) {
  .service-one__shape {
    display: none;
  }
}
@keyframes br-translate {
  0% {
    transform: translateX(0px) translateY(0px);
  }
  50% {
    transform: translateX(-5px) translateY(-5px);
  }
  100% {
    transform: translateX(0px) translateY(0px);
  }
}
.service-one .section-title--home-five .section-title__tagline {
  color: var(--oxpins-bdr-color);
}
.service-one .section-title--home-five .section-title__title {
  color: var(--oxpins-white);
}
.service-one__item {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border-radius: 6px;
}
.service-one__item__normal {
  position: relative;
  background-color: var(--oxpins-white);
  perspective: 300px;
}
.service-one__item__normal__icon {
  font-size: 50px;
  line-height: 50px;
  display: block;
  color: var(--oxpins-black);
  padding: 29px 30px 0;
  margin: 0 0 24px;
}
.service-one__item__normal__title {
  font-size: 24px;
  font-weight: 400;
  padding: 0 30px;
  margin: 0 0 2px;
}
.service-one__item__normal__text {
  font-size: 16px;
  font-weight: 600;
  padding: 0 30px;
  margin: 0 0 24px;
}
.service-one__item__normal__thumb {
  max-height: 119px;
  position: relative;
  overflow: hidden;
}
.service-one__item__normal__thumb img {
  width: 100%;
  height: 119px;
  object-fit: cover;
}
.service-one__item:hover .service-one__item__hover {
  transition: transform 500ms ease, top 500ms ease;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}
.service-one__item__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 700ms ease, top 700ms ease;
  background-color: var(--oxpins-base);
  transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
  perspective: 300px;
  transform-origin: center center;
  padding: 30px 30px;
}
.service-one__item__hover::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--oxpins-base);
  opacity: 0.8;
}
.service-one__item__hover__icon {
  font-size: 50px;
  line-height: 50px;
  display: block;
  color: var(--oxpins-white);
  margin: 0 0 24px;
  position: relative;
  z-index: 2;
}
.service-one__item__hover__title {
  font-size: 24px;
  font-weight: 400;
  color: var(--oxpins-white);
  margin: 0 0 2px;
  position: relative;
  z-index: 2;
}
.service-one__item__hover__text {
  font-size: 16px;
  font-weight: 600;
  color: var(--oxpins-white);
  position: relative;
  z-index: 2;
  margin: 0 0 27px;
}
.service-one__item__hover__btn {
  position: relative;
  z-index: 2;
  display: block;
  width: 76px;
  height: 76px;
}
.service-one__item__hover__btn a {
  width: 76px;
  height: 76px;
  background-color: var(--oxpins-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  color: var(--oxpins-base);
  transition: all 300ms ease;
}
.service-one__item__hover__btn a:hover {
  background-color: var(--oxpins-black);
  color: var(--oxpins-white);
  transform: rotate(30deg);
}
.service-one .about-two__text-1{
    color: #fff;
}
.thm-btn.active{
    background-color: var(--oxpins-base);
    color: #fff;
}
.video_overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    transition: .3s ease;
    background-color: transparent;
    top: 40%;
    bottom: 0;
    left: 0;
    right: 0;
    text-align:center;
}
.video_overlay i{
    font-size: 26px;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 12px 15px;
    color: #fff;
}
.privacy_policy h1{
    margin-bottom: 20px;
}
.privacy_policy h2{
    margin-bottom: 15px;
    margin-top: 15px;
}
.privacy_policy h3{
    margin-bottom: 10px;
    margin-top: 10px;
}
.privacy_policy h4{
    margin-top: 8px;
}
.privacy_policy p{
    margin-bottom: 5px;
}
.donors img{
    width: 100%;
    margin-top: 25px;
}
.gallery-page .about-three__btn {
	margin-bottom: 10px;
}
@media (max-width: 767px) {
	.page-header{
		padding: 40px 0;
	}
	.about-us_page .about-four{
		padding-bottom: 0;
	}
	.about-us_page .about-two .about-two__right {
		margin-top: 0px;	
		padding-bottom: 40px;
	}
	.about-us_page .about-two{
		padding-bottom: 40px
	}
	.about-four__left img{
		width: 100%;
	}
	.events-page, .news-page{
		padding: 40px 0;
	}
	.contact-one__single{
		width: 100%;
	}
	.privacy_policy .about-four__right{
		margin-top: 0px;
	}
}





