/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --oxpins-font: "Manrope", sans-serif;
  --oxpins-font-two: "Nunito", sans-serif;
  --oxpins-font-three: "Caveat", cursive;
  --oxpins-gray: #6f7775;
  --oxpins-gray-rgb: 111, 119, 117;
  --oxpins-white: #ffffff;
  --oxpins-white-rgb: 255, 255, 255;
  --oxpins-base: #78b928;
  --oxpins-base-rgb: 120, 185, 40;
  --oxpins-black: #221f20;
  --oxpins-black-rgb: 34, 31, 32;
  --oxpins-primary: #f09436;
  --oxpins-primary-rgb: 240, 148, 54;
  --oxpins-extra: #f9f4e8;
  --oxpins-extra-rgb: 249, 244, 232;
  --oxpins-bdr-color: #eee9db;
  --oxpins-bdr-color-rgb: 238, 233, 219;
  --oxpins-bdr-radius: 20px;
}


/*--------------------------------------------------------------
# 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: 90px;
}

.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,
      rgba(250, 211, 91, 0.09287464985994398) 53%,
      rgba(250, 211, 91, 1) 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: var(--oxpins-black);
  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: var(--oxpins-black);
}

/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--oxpins-black);
  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: 100px 0 98px;
}

.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: #98a8a5;
  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: 11px;
}

.footer-widget__links-list li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #98a8a5;
  font-weight: 400;
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
  padding-left: 15px;
  color: var(--oxpins-white);
}

.list-group.footer-widget__links-list li a.active-link {
  padding-left: 15px;
}

.list-group.footer-widget__links-list li a.active-link::before {
  opacity: 1 !important;
}

.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: 0;
  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: 100px;
}

.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;
  display: flex;
  align-items: center;
}

.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;
}

.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-base);
  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: var(--oxpins-base);
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 25px 0;
}

.site-footer__bottom-text {
  font-size: 15px;
  color: #98a8a5;
  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: 60px 0 115px;
}

.feature-two .container {
  max-width: 1440px;
}

.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-black);
  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: 24px;
  color: var(--oxpins-primary);
  font-family: var(--oxpins-font-three);
  font-weight: 700;
  line-height: 24px;
}

.feature-two__title {
  font-size: 36px;
  font-weight: 900;
  line-height: 46px;
  letter-spacing: -0.04em;
  margin-top: 8px;
}

.feature-two__title a {
  color: var(--oxpins-white);
  -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(251, 212, 90) 0%,
      rgb(0, 113, 93) 100%);
  background-image: -webkit-linear-gradient(90deg,
      rgb(251, 212, 90) 0%,
      rgb(0, 113, 93) 100%);
  background-image: -ms-linear-gradient(90deg,
      rgb(251, 212, 90) 0%,
      rgb(0, 113, 93) 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;
}

.o_nadaci .about-two__progress-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.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;
}

.filters .causes-two__tab-box .tab-buttons:before {
  display: none !important;
}

.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;
}

.filters .causes-two__tab-box .tab-buttons .tab-btn span:before {
  left: 35px !important;
}

.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 span.border-0:after {
  display: none !important;
}

.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;
  margin-top: 0;
  width: 100%;
  top: 50%;
  text-align: end;
}

.causes-two__carousel.owl-theme .owl-nav .owl-prev span {
  position: absolute;
  left: 0;
  top:0;
  z-index: 2;
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-left: -70px;
  color: var(--oxpins-black);
  padding: 0 20px;
  background-color: var(--oxpins-primary);
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.causes-two__carousel.owl-theme .owl-nav .owl-next span {
  position: absolute;
  right: 0;
  top:0;
  z-index: 2;
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-right: -55px;
  color: var(--oxpins-black);
  padding: 0 20px;
  background-color: var(--oxpins-primary);
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media only screen and (max-width: 1500px){
  .causes-two__carousel.owl-theme .owl-nav {
    position: relative;
    margin-top: 10px;
    width: 87%;
  }

  .causes-two__carousel.owl-theme .owl-nav button{
    position: relative;
  }
}

.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;
  left: 50%;
  transform: translateX(-50%);
}

.causes-two__carousel.owl-theme .owl-nav .owl-prev .fa-angle-left:before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.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-black);
  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-shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 106px;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  z-index: 0;
  transform: rotate(180deg);
}

.help__single {
  position: relative;
  display: block;
  margin-bottom: -35px;
}

.help__single-inner {
  position: relative;
  display: flex;
}

.help__icon {
  position: relative;
  display: block;
}

.help__icon img {
  transition: 1s;
}

.help__icon img:hover {
  transform: scale(1.2);
}

.help__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: white;
  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-extra);
  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: var(--oxpins-bdr-radius);
  opacity: 0.25;
  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;
  display: block;
  padding: 120px 0 90px;
}

.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__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: 8px;
  margin-right: 8px;
  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 80px 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: block;
  padding-left: 65px;
}

.contact-one__single:before {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -3px;
  right: -20px;
  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;
  top: -2px;
  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: 120px 0 90px;
}

.news-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.news-two__img-one {
  position: relative;
  display: grid;
  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%;
  height: 100%;
  object-fit: cover;
  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-black);
}

.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: grid;
  max-width: 270px;
  width: 100%;
  min-height: 171px;
  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%;
  height: 100%;
  object-fit: cover;
  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;
  width: 100%;
  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: 171px;
}

.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 .news-two__title-one {
  transition: 0.8s;
}

#news .news-two__title-one:hover {
  color: var(--oxpins-black);
}

#news .news-two__title-two {
  transition: 0.8s;
}

#news .news-two__title-two:hover {
  color: var(--oxpins-base);
}

.news-two__title-two {
  font-size: 26px;
  font-weight: 900;
  line-height: 33px;
  letter-spacing: -0.04em;
  position: absolute;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.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: "";
  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;
}

.project-new .events-two__img:after {
  background-color: transparent !important;
}

.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;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.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: 50px 0 50px;
  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.3;
  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;
  }
  .main-slider{
    max-height: 600px;
    overflow: hidden;
  }
}

.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;
  height: 70px;
  width: 70px;
  overflow: hidden;
}

.sidebar__post-image>img {
  /* width: 70px; */
  height: 100%;
  border-radius: 7px;
}

.sidebar__post-content {
  position: relative;
  top: -1px;
}

.sidebar__post-content h3 {
  font-size: 18px;
  margin: 0;
  line-height: 26px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.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: 120px 0 120px;
}

.news-details__left {
  position: relative;
  display: block;
}

.news-details__img {
  max-height: 350px;
  position: relative;
  display: flex;
  border-radius: var(--oxpins-bdr-radius);
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.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-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: 120px 0 120px;
}

.event-details__left {
  position: relative;
  display: block;
}

.event-details__top {
  position: relative;
  display: block;
}

.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: 120px 0 120px;
}

.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: 120px 0 120px;
}

.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: 30px;
  margin-top: 50px;
}

.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;
}

.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: 60px 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="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: 120px 0 90px;
}

.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.09287464985994398) 53%,
      rgba(250, 211, 91, 1) 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{
  transition: 1s;
}

.gallery-page__single:hover img.hover-blur {
  filter: blur(3px) grayscale(90%);
}

.gallery-page__single:hover .gallery-page__delete-btn {
  top: 0;
}

.gallery-page__single .img-popup {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.gallery-page__img img {
  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: 120px 0 180px;
  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,
.contact-form__input-box input,
.contact-form__input-box select {
  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;
}

.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: 120px 0 0;
}

.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: 60px;
}

.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;
}

.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;
}

.causes-two__carousel.owl-theme .owl-nav p{
  display: none !important;
}

.lide-v-nadaci-pozadi{
  height: 850px;
}

.lide-v-nadaci-pozadi #jarallax-container-0 div{
  background-position: 68% 50% !important;
  width: 100% !important;
  top: 100px !important;
}

.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;
}