/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --gifall-font: 'Outfit', sans-serif;
  --gifall-font-2: 'Amita', cursive;
  --gifall-reey-font: 'reeyregular';
  --gifall-gray: #131216;
  --gifall-gray-rgb: 19, 18, 22;
  --gifall-base: #07bde7;
  --gifall-base-rgb: 62, 143, 117;
  --gifall-black: #141212;
  --gifall-black-rgb: 20, 18, 18;
  --gifall-primary: #ee104f;
  --gifall-primary-rgb: 255, 255, 50;
}

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

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  color: rgba(var(--gifall-gray-rgb), 0.8);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--gifall-font);
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--gifall-black);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

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

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

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

::placeholder {
  color: inherit;
  opacity: 1;
}


p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

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

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

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

::placeholder {
  color: inherit;
  opacity: 1;
}


/***
=============================================
    Form Validation Styles
=============================================
***/
input:focus,
textarea:focus,
select:focus {
  border-color: var(--gifall-base);
  outline: none;
}

#contact-form input[type="text"].error {
  border-color: red;
}

#contact-form input[type="email"].error {
  border-color: red;
}

#contact-form select.error {
  border-color: red;
}

#contact-form textarea.error {
  border-color: red;
}

#contact-form label.error {
  display: none !important;
}


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

.container {
  padding-left: 15px;
  padding-right: 15px;
}

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

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

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

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

::placeholder {
  color: inherit;
  opacity: 1;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}


ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol,
li {
  margin: 0;
  padding: 0;
}


/***
=============================================
    Rating Box
=============================================
***/
.rating-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.rating-box ul {
  overflow: hidden;
}

.rating-box ul li {
  position: relative;
  display: inline-block;
  margin-right: 0px;
  line-height: 0;
}

.rating-box ul li:last-child {
  margin-right: 0;
}

.rating-box ul li span {
  position: relative;
  display: inline-block;
  color: var(--gifall-base);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}


/***
=============================================
   Sec Title
=============================================
***/
.sec-title {
  position: relative;
  display: block;
  margin-top: -2px;
  padding-bottom: 56px;
}

.sec-title__tagline {
  position: relative;
  display: block;
  margin-bottom: 6px;
}

.sec-title__tagline h6 {
  color: var(--gifall-base);
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.1em;
  font-family: var(--gifall-font-2);
}

.sec-title__title {
  color: var(--gifall-black);
  font-size: 60px;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
}


/***
=============================================
   Thm Btn
=============================================
***/
.thm-btn {
  position: relative;
  display: inline-block;
  border-radius: 30px;
  padding: 0px 55px 0px;
  line-height: 65px;
  color: var(--gifall-black);
  font-size: 16px;
  font-weight: 500;
  background: var(--gifall-primary);
  overflow: hidden;
  font-family: var(--gifall-font);
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 1;
}

.thm-btn::before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 91%;
  background: var(--gifall-base);
  content: "";
  z-index: -1;
  clip-path: polygon(0 0, 100% 0%, -8% 100%, 0% 100%);
}

.thm-btn::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--gifall-base);
  z-index: -1;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.thm-btn:hover:after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.thm-btn .txt {
  position: relative;
  z-index: 1;
}

.thm-btn:hover,
.thm-btn:focus {
  color: #ffffff;
}



/***
=============================================
   Owl Dot Style1
=============================================
***/
.owl-carousel.owl-dot-style1 .owl-dots {
  position: relative;
  text-align: center;
  line-height: 0;
  margin-top: 50px !important;
  display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 5px;
  background-color: #e7e7e7;
  border: 0px solid #a5a5a5;
  margin: 0px 10px;
  padding: 0px;
  border-radius: 0%;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--gifall-base);
  border-radius: 0%;
  transform: scale(0);
  transition: all 500ms ease;
}


.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active:before {
  transform: scale(1.0);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot span {
  display: none;
}


img {
  max-width: 100%;
  height: auto;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

/***
=============================================
   Scroll To Top
=============================================
***/
.scroll-to-top {
  position: fixed;
  right: 15px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--gifall-base);
  border: 2px solid var(--gifall-base);
  color: #ffffff;
  font-size: 20px;
  line-height: 56px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  display: none;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 999999999;
}

.scroll-to-top:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  z-index: -1;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-to-top:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.scroll-to-top:hover {
  color: #ffffff;
  background-color: var(--gifall-black);
  border-color: var(--gifall-black);
}

.scroll-to-top i::before {
  position: relative;
  display: inline-block;
  transform: rotate(180deg);
}


/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 20px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 8px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  background: #ededed;
  border-radius: 20px;
  color: var(--gifall-black);
  font-size: 18px;
  line-height: 45px;
  font-weight: 400;
  border: 0px solid #dee0e2;
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--gifall-font);
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: #ffffff;
  background: var(--gifall-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 20px;
  color: var(--gifall-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: #ffffff;
}

.styled-pagination li a span:before {
  position: relative;
  top: 1px;
  color: var(--gifall-black);
  font-size: 15px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: #ffffff;
}


.checked-box1 {
  position: relative;
  display: block;
  min-height: 20px;
}

.checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--gifall-gray);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  min-height: 20px;
  font-family: var(--gifall-font);
}

.checked-box1 input[type="checkbox"] {
  display: none;
}

.checked-box1 input[type="checkbox"]+label span {
  position: absolute;
  top: 0px;
  left: 0;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid #80868d;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.checked-box1 label span:before {
  font-family: 'icomoon' !important;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "\e922";
  font-size: 10px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  margin: 0px;
  opacity: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checked-box1 input[type="checkbox"]:checked+label span {
  border-color: #80868d;
}

.checked-box1 input[type="checkbox"]:checked+label span:before {
  opacity: 1.0;
}

/*--------------------------------------------------------------
  # Mobile Nav
  --------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

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

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

.mobile-nav__content {
  position: relative;
  width: 300px;
  background-color: #000000;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  z-index: 10;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.mobile-nav__close:hover {
  background-color: var(--gifall-black);
}

.mobile-nav__close i:before {
  position: relative;
  display: inline-block;
  transform: rotate(45deg);
}

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

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 20px;
}

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

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  line-height: 30px;
  color: #ffffff;
  font-size: 15px;
  font-family: var(--gifall-font);
  font-weight: 500;
  height: 46px;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>ul>li>a {
  font-size: 14px;
  font-weight: 400;
}

.mobile-nav__content .main-menu__list>li>a.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--gifall-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--gifall-base);
  border: none;
  outline: none;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--gifall-base);
}


.mobile-nav__content .home-showcase__title {
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: 0px;
}

.mobile-nav__contact {
  position: relative;
  display: block;
  margin-top: 40px;
  margin-bottom: 30px;
}

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

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

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--gifall-base);
}

.mobile-nav__contact li>i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 0%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
  margin-right: 10px;
}


.mobile-nav__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  transition: 500ms;
}

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

.mobile-nav__social a:hover {
  color: var(--gifall-black);
  background-color: #ffffff;
}



/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}


/***
=============================================
Main Slider One
=============================================
***/
.main-slider-one {
  position: relative;
  display: block;
  margin-top: -68px;
  z-index: 1;
}

.main-slider-one__inner {
  position: relative;
  display: block;
}

.main-slider-one__single {
  position: relative;
  display: block;
}

.main-slider-one .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  background-position: center center;
  background-attachment: scroll;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.main-slider-one .active .image-layer {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.main-slider-one .shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
  mix-blend-mode: overlay;
  opacity: 0;
  transform: translateX(-100%);
  z-index: 1;
}

.main-slider-one .active .shape1 {
  opacity: 1;
  transform: translateX(0);
  transition: all 1400ms ease;
  transition-delay: 1600ms;
}

.main-slider-one .shape2 {
  position: absolute;
  right: 0;
  bottom: 0;
  mix-blend-mode: overlay;
  opacity: 0;
  transform: translateY(100%);
  z-index: 1;
}

.main-slider-one .active .shape2 {
  opacity: 1;
  transform: translateY(0);
  transition: all 1600ms ease;
  transition-delay: 1800ms;
}

.main-slider-one__content {
  position: relative;
  display: block;
  padding: 249px 0px 220px;
  z-index: 5;
}

.main-slider-one__content .tagline {
  position: relative;
  display: block;
  margin-bottom: 17px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
  transform: perspective(400px) rotateY(0deg) translateY(-80px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 1300ms ease;
  -moz-transition: all 1300ms ease;
  -ms-transition: all 1300ms ease;
  -o-transition: all 1300ms ease;
  transition: all 1300ms ease;
  z-index: 10;
}

.main-slider .active .main-slider-one__content .tagline {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.main-slider-one__content .tagline span {
  color: var(--gifall-primary);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--gifall-font-2);
}

.main-slider-one__content .title {
  position: relative;
  display: block;
  margin-bottom: 32px;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
  transform: perspective(400px) rotateY(0deg) translateX(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider .active .main-slider-one__content .title {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-one__content .title h2 {
  color: #ffffff;
  font-size: 90px;
  line-height: 1em;
  font-weight: 700;
}

.main-slider-one__content .text {
  position: relative;
  display: block;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
  transform: perspective(400px) rotateY(0deg) translateX(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  z-index: 10;
}

.main-slider .active .main-slider-one__content .text {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-one__content .text p {
  color: #ffffff;
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
}

.main-slider-one__content .btn-box {
  position: relative;
  display: block;
  margin-top: 49px;
  line-height: 0;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 1300ms ease;
  -moz-transition: all 1300ms ease;
  -ms-transition: all 1300ms ease;
  -o-transition: all 1300ms ease;
  transition: all 1300ms ease;
  z-index: 10;
}

.main-slider-one__content .btn-box .thm-btn {
  background: var(--gifall-base);
}

.main-slider-one__content .btn-box .thm-btn .txt {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider-one__content .btn-box .thm-btn:hover .txt {
  color: var(--gifall-black);
}

.main-slider-one__content .btn-box .thm-btn::before {
  background: var(--gifall-primary);
}

.main-slider-one__content .btn-box .thm-btn::after {
  background: var(--gifall-primary);
}

.main-slider .active .main-slider-one__content .btn-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.nav-style1.owl-theme .owl-nav {
  position: absolute;
  top: 41%;
  left: 59%;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 1500px;
  width: 100%;
  padding: 0 15px;
  height: 0;
  line-height: 0;
  z-index: 100;
}

.nav-style1.owl-carousel .owl-nav button.owl-next,
.nav-style1.owl-carousel .owl-nav button.owl-prev {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  width: 60px;
  background: rgba(21, 21, 21, 0.4);
  border-radius: 25px;
  color: #ffffff;
  font-size: 25px;
  line-height: 75px;
  text-align: center;
  opacity: 1;
  margin: 0;
  transition: all 500ms ease;
  z-index: 100;
}

.nav-style1.owl-carousel .owl-nav button.owl-prev {
  float: left;
  left: 0;
  margin-bottom: 10px;
}

.nav-style1.owl-carousel .owl-nav button.owl-next {
  float: right;
  right: 0;
}

.nav-style1.owl-carousel .owl-nav button.owl-next:hover,
.nav-style1.owl-carousel .owl-nav button.owl-prev:hover {
  color: #ffffff;
  background: rgba(var(--gifall-base-rgb), 0.3);
}

.nav-style1.owl-carousel .owl-nav button.owl-prev span::before {
  position: relative;
  display: inline-block;
  font-size: 25px;
  line-height: 75px;
  font-weight: 400;
}

.nav-style1.owl-carousel .owl-nav button.owl-next span::before {
  position: relative;
  display: inline-block;
  font-size: 25px;
  line-height: 75px;
  font-weight: 400;
}

.dot-style1.owl-theme .owl-dots {
  position: absolute;
  top: 46%;
  left: 43px;
  width: 26px;
  z-index: 10;
}

.dot-style1.owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 9px;
  height: 9px;
  margin: 8px 5px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 1;
}

.dot-style1.owl-theme .owl-dots .owl-dot span::before {
  position: absolute;
  top: -12px;
  left: -12px;
  bottom: -12px;
  right: -12px;
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 50%;
  transform: scale(0.5);
  opacity: 0;
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.dot-style1.owl-theme .owl-dots .owl-dot.active span::before {
  transform: scale(1.0);
  opacity: 1;
}


/***
=============================================
  Page Header
=============================================
***/
.page-header {
  position: relative;
  display: block;
  padding: 133px 0px 141px;
  overflow: hidden;
  z-index: 1;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.page-header__inner {
  position: relative;
  display: block;
}

.page-header__inner h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 75px;
  line-height: 85px;
  margin-bottom: 0px;
}

.page-header__inner .thm-breadcrumb {
  position: relative;
  display: block;
  margin-top: 9px;
}

.page-header__inner .thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: var(--gifall-primary);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--gifall-font-2);
}

.page-header__inner .thm-breadcrumb li a {
  color: var(--gifall-primary);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--gifall-font-2);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.page-header__inner .thm-breadcrumb li a:hover {
  color: var(--gifall-base);
}


/***
=============================================
Feature One
=============================================
***/
.feature-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
}

.feature-one__single {
  position: relative;
  display: block;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 50px 10px 40px;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 1;
}

.feature-one__single .shape2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.feature-one__single .shape3 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.feature-one__single-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  z-index: 1;
}

.feature-one__single-icon .shape1 {
  position: absolute;
  top: 6px;
  left: 7px;
  width: 45px;
  height: 45px;
  background: var(--gifall-primary);
  border-radius: 50%;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(0.9);
  z-index: -1;
}

.feature-one__single:hover .feature-one__single-icon .shape1 {
  transform: scale(1.0);
}

.feature-one__single-icon .shape1.l12 {
  left: 12px;
}

.feature-one__single-icon .shape1.style3 {
  top: auto;
  left: auto;
  right: 9px;
  bottom: 2px;
}

.feature-one__single-icon span:before {
  position: relative;
  display: inline-block;
  color: var(--gifall-base);
  font-size: 70px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.feature-one__single:hover .feature-one__single-icon span:before {
  transform: scale(0.9);
}

.feature-one__single-content {
  position: relative;
  display: block;
}

.feature-one__single-content h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--gifall-font-2);
  margin-bottom: 9px;
}

.feature-one__single-content h2 a {
  color: var(--gifall-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-one__single-content h2 a:hover {
  color: var(--gifall-base);
}

.feature-one__single-content p {
  line-height: 32px;
  margin: 0;
}

/***
=============================================
Counter One
=============================================
***/
.counter-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 82px;
  z-index: 1;
}

.counter-one .shape1 {
  position: absolute;
  right: 85px;
  bottom: 60px;
  z-index: -1;
}

.counter-one__single {
  position: relative;
  display: block;
  z-index: 1;
  margin-bottom: 30px;
}

.counter-one__single-top {
  position: relative;
  display: flex;
  align-items: center;
}

.counter-one__single-top .img-box {
  position: relative;
  display: block;
}

.counter-one__single-top .img-box img {
  width: 100%;
}

.counter-one__single-top .text-box {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 14px;
}

.counter-one__single-top .text-box h2 {
  font-size: 60px;
  line-height: 0.9em;
  font-weight: 700;
  font-family: var(--gifall-font-2);
}

.counter-one__single-top .text-box h2 .dollar {
  position: relative;
  display: inline-block;
  top: 4px;
  right: -11px;
}

.counter-one__single-top .text-box h2 .m {
  position: relative;
  display: inline-block;
  right: 15px;
}

.counter-one .odometer.odometer-auto-theme,
.counter-one .odometer.odometer-theme-default {
  font-family: var(--gifall-font-2);
  line-height: 0.9em;
}

.counter-one__single-bottom {
  position: relative;
  display: block;
  margin-top: 11px;
  margin-left: 20px;
}

.counter-one__single-bottom p {
  color: var(--gifall-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
}

/***
=============================================
Feature Two
=============================================
***/
.feature-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 0px 0px 120px;
  z-index: 1;
}

.feature-two__img {
  position: relative;
  display: block;
  margin-right: 30px;
  z-index: 1;
}

.feature-two__img .shape2 {
  position: absolute;
  bottom: -95px;
  left: 108px;
  z-index: -1;
}

.feature-two__img1 {
  position: relative;
  display: block;
  margin-right: 65px;
  z-index: 1;
}

.feature-two__img1 .shape1 {
  position: absolute;
  top: -95px;
  right: 0;
  z-index: 1;
}

.feature-two__img1 img {
  max-width: none;
  float: right;
  border-radius: 5px;
  overflow: hidden;
}

.feature-two__img2 {
  position: absolute;
  right: 0;
  bottom: -60px;
  z-index: 5;
}

.feature-two__img2 .inner {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.feature-two__img2 .inner::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.feature-two__img2 .inner:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.feature-two__img2 .inner img {
  width: auto;
  transition: .5s ease;
  transform: scale(1.05);
}

.feature-two__img2 .inner:hover img {
  transform: scale(1);
}


.feature-two__content {
  position: relative;
  display: block;
  margin-left: 10px;
}

.feature-two__content .sec-title {
  padding-bottom: 21px;
}

.feature-two__content .sec-title__title {
  text-transform: none;
}

.feature-two__content-text1 {
  position: relative;
  display: block;
  margin-bottom: 19px;
}

.feature-two__content-text1 p {
  font-size: 18px;
  line-height: 34px;
}

.feature-two__content-text2 {
  position: relative;
  display: block;
  border-bottom: 1px solid #e7e9eb;
  padding-bottom: 34px;
}

.feature-two__content-text2 p {
  font-size: 18px;
  line-height: 34px;
}


.feature-two__content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.feature-two__content-bottom-content {
  position: relative;
  display: block;
}

.feature-two__content-bottom-content .top-content {
  position: relative;
  display: flex;
  align-items: center;
}

.feature-two__content-bottom-content .top-content .icon-box {
  position: relative;
  display: block;
  z-index: 1;
}

.feature-two__content-bottom-content .top-content .icon-box .shape3 {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 50px;
  height: 50px;
  background: var(--gifall-primary);
  border-radius: 50%;
  z-index: -1;
}

.feature-two__content-bottom-content .top-content .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--gifall-base);
  font-size: 60px;
}

.feature-two__content-bottom-content .top-content .text-box {
  position: relative;
  display: block;
  margin-left: 17px;
}

.feature-two__content-bottom-content .top-content .text-box h2 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  font-family: var(--gifall-font-2);
}

.feature-two__content-bottom-content .top-content .text-box h2 .dollar {
  position: relative;
  display: inline-block;
  right: -12px;
  top: 5px;
}

.feature-two__content-bottom-content .top-content .text-box h2 .plus {
  position: relative;
  display: inline-block;
  right: 8px;
  top: 4px;
}

.feature-two .odometer.odometer-auto-theme,
.feature-two .odometer.odometer-theme-default {
  font-family: var(--gifall-font-2);
  line-height: 40px;
}

.feature-two__content-bottom-content .top-content .text-box p {
  font-weight: 500;
  line-height: 26px;
  margin-left: 13px;
}

.feature-two__content-bottom-content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 64px;
}

.feature-two__content-bottom-img {
  position: relative;
  display: block;
  max-width: 230px;
  width: 100%;
  margin-left: 70px;
}

.feature-two__content-bottom-img-inner {
  position: relative;
  display: block;
  border-radius: 3px;
  overflow: hidden;
  background: #387e67;
}

.feature-two__content-bottom-img-inner img {
  width: 100%;
  mix-blend-mode: overlay;
}

.feature-two__content-bottom-img-inner .content-box {
  position: absolute;
  left: 25px;
  bottom: 10px;
  z-index: 5;
}

.feature-two__content-bottom-img-inner .content-box p {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  font-family: var(--gifall-font-2);
}

.feature-two__content-bottom-img-inner .content-box h2 {
  color: #ffffff;
  font-size: 42px;
  line-height: 52px;
  font-weight: 700;
}

/***
=============================================
Testimonial One
=============================================
***/
.testimonial-one {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
  z-index: 1;
}

.testimonial-one .auto-container {
  max-width: 1800px;
  width: 100%;
}

.testimonial-one__inner {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
  background: #d3e5df;
  overflow: hidden;
  border-radius: 3px;
  padding: 40px 45px 60px;
  z-index: 1;
}

.testimonial-one__single .shape1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.testimonial-one__single .shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.testimonial-one__single .icon-box {
  position: absolute;
  top: 45px;
  right: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: var(--gifall-primary);
  border-radius: 50%;
  z-index: 2;
}

.testimonial-one__single .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #000000;
  font-size: 45px;
}

.testimonial-one__single-img {
  position: relative;
  display: block;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
}

.testimonial-one__single-img img {
  width: 100%;
}

.testimonial-one__single .author-info {
  position: relative;
  display: block;
  margin-bottom: 21px;
}

.testimonial-one__single .author-info h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
  font-family: var(--gifall-font-2);
}

.testimonial-one__single .author-info p {
  color: var(--gifall-base);
  margin: 0;
}

.testimonial-one__single .text-box {
  position: relative;
  display: block;
}

.testimonial-one__single .text-box p {
  color: var(--gifall-black);
  font-size: 20px;
  line-height: 34px;
}


/***
=============================================
Team One
=============================================
***/
.team-one {
  position: relative;
  display: block;
  z-index: 1;
}

.team-one .auto-container {
  max-width: 1800px;
  width: 100%;
}

.team-one__inner {
  position: relative;
  display: block;
  padding: 120px 0px 81px;
  z-index: 1;
}

.team-one__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 56px;
}

.team-one__top .sec-title {
  padding-bottom: 0px;
}

.team-one__top .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.team-one__top .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--gifall-base);
  font-size: 16px;
  font-weight: 500;
  line-height: 60px;
  border: 2px solid var(--gifall-base);
  border-radius: 30px;
  padding: 0px 50px 0px;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-one__top .btn-box a:hover {
  color: #ffffff;
  background: var(--gifall-base);
}

.team-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.team-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-one__single-img {
  position: relative;
  display: block;
  z-index: 1;
}

.team-one__single-img-bg {
  position: absolute;
  top: 10px;
  left: 0;
  bottom: -5px;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

.team-one__single-img .inner {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
}

.team-one__single-img .inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--gifall-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.team-one__single:hover .team-one__single-img .inner::before {
  opacity: 1;
}

.team-one__single-img .inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.team-one__single:hover .team-one__single-img .inner img {
  transform: scale(1);
}

.team-one__single-content {
  position: relative;
  display: block;
  padding-top: 24px;
}

.team-one__single-content h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--gifall-font-2);
}

.team-one__single-content h2 a {
  color: var(--gifall-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.team-one__single-content h2 a:hover {
  color: var(--gifall-base);
}

.team-one__single-content p {
  margin: 0;
}


/***
=============================================
Blog One
=============================================
***/
.blog-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 90px;
  z-index: 1;
}

.blog-one__single {
  position: relative;
  display: block;
  margin-bottom: 35px;
}

.blog-one__single-img {
  position: relative;
  display: block;
}

.blog-one__single-img .overlay-text {
  position: absolute;
  left: 35px;
  bottom: -15px;
  z-index: 5;
}

.blog-one__single-img .overlay-text li {
  position: relative;
  display: inline-block;
  margin-right: 3px;
}

.blog-one__single-img .overlay-text li:last-child {
  margin-right: 0;
}

.blog-one__single-img .overlay-text li p {
  position: relative;
  display: block;
  background: var(--gifall-primary);
  color: var(--gifall-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 13px;
  padding: 1px 15px 2px;
}

.blog-one__single-img .overlay-text li.style2 p {
  color: #ffffff;
  background: var(--gifall-base);
}

.blog-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  z-index: 1;
}

.blog-one__single-img .inner::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(var(--gifall-black-rgb), 0.5);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 1;
}

.blog-one__single:hover .blog-one__single-img .inner::before {
  transform: scaleY(1.0);
}

.blog-one__single-img .inner img {
  width: 100%;
  transform: scale(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
}

.blog-one__single:hover .blog-one__single-img .inner img {
  transform: scale(1.2) rotate(1deg);
}

.blog-one__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 35px 0px rgb(209, 210, 212, 0.35);
  padding: 45px 35px 31px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  z-index: 1;
}

.blog-one__single-content .white-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  content: "";
  z-index: -1;
}

.blog-one__single-content .left-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: -5px;
  width: 43%;
  background: #07bde7;
  border-bottom-left-radius: 30px;
  z-index: -3;
}

.blog-one__single-content .right-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -5px;
  width: 65%;
  background: var(--gifall-primary);
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  z-index: -2;
}

.blog-one__single-content .meta-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 12px;
}

.blog-one__single-content .meta-box li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 25px;
  line-height: 0;
}

.blog-one__single-content .meta-box li:last-child {
  margin-right: 0px;
}

.blog-one__single-content .meta-box li .icon {
  position: relative;
  display: block;
}

.blog-one__single-content .meta-box li .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--gifall-black);
  font-size: 16px;
}

.blog-one__single-content .meta-box li .text {
  position: relative;
  display: block;
  margin-left: 8px;
  margin-top: 0;
}

.blog-one__single-content .meta-box li .text p {
  color: rgba(var(--gifall-gray-rgb), 0.7);
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}

.blog-one__single-content .meta-box li .text p a {
  color: rgba(var(--gifall-gray-rgb), 0.7);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content .meta-box li .text p a:hover {
  color: var(--gifall-base);
}

.blog-one__single-content h2 {
  font-size: 22px;
  line-height: 34px;
  font-weight: 600;
}

.blog-one__single-content h2 a {
  color: var(--gifall-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.blog-one__single-content h2 a:hover {
  color: var(--gifall-base);
}

.blog-one__single-content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 23px;
}

.blog-one__single-content-bottom .btn-box {
  position: relative;
  display: block;
}

.blog-one__single-content-bottom .btn-box a {
  color: var(--gifall-base);
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content-bottom .btn-box a:hover {
  color: var(--gifall-black);
}

.blog-one__single-content-bottom .btn-box a span:before {
  position: relative;
  display: inline-block;
  color: var(--gifall-base);
  font-size: 14px;
  top: 2px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-one__single-content-bottom .btn-box a:hover span:before {
  color: var(--gifall-black);
}

.blog-one__single-content-bottom .icon-box {
  position: relative;
  display: block;
}

.blog-one__single-content-bottom .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #74727f;
  font-size: 18px;
  font-weight: 700;
}

/***
============================================
About Two
============================================
***/
.about-two {
  position: relative;
  display: block;
  padding: 120px 0px 0px;
  overflow: hidden;
  z-index: 4;
}

.about-two .shape6 {
  position: absolute;
  top: -5px;
  right: 0;
  z-index: -1;
}

.about-two__img {
  position: relative;
  display: block;
  margin-right: 20px;
}

.about-two__img-inner {
  position: relative;
  display: block;
  z-index: 1;
}

.about-two__img-inner .shape1 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.about-two__img-inner img {
  max-width: none;
  float: right;
}


.about-two__content {
  position: relative;
  display: block;
  margin-left: 40px;
  z-index: 1;
}

.about-two__content .shape5 {
  position: absolute;
  top: 90px;
  right: 25px;
  width: 30px;
  height: 30px;
  background: var(--gifall-primary);
  z-index: -1;
}

.about-two__content .sec-title {
  padding-bottom: 26px;
}

.about-two__content-text1 {
  position: relative;
  display: block;
}

.about-two__content-text1 p {
  font-size: 18px;
  line-height: 34px;
}



.about-two__content-text2 {
  position: relative;
  display: block;
  margin-top: 40px;
}

.about-two__content-text2-single {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.about-two__content-text2-single .icon-box {
  position: relative;
  display: block;
  z-index: 1;
}

.about-two__content-text2-single .icon-box .shape2 {
  position: absolute;
  left: 14px;
  bottom: -21px;
  width: 45px;
  height: 45px;
  background: var(--gifall-primary);
  border-radius: 50%;
  z-index: -1;
}

.about-two__content-text2-single .icon-box .shape3 {
  position: absolute;
  top: 16px;
  left: 7px;
  width: 45px;
  height: 45px;
  background: var(--gifall-primary);
  border-radius: 50%;
  z-index: -1;
}

.about-two__content-text2-single .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--gifall-base);
  font-size: 70px;
  top: 9px;
  transition-delay: 0.1s;
  transition: all 500ms ease;
}

.about-two__content-text2-single:hover .icon-box span:before {
  transform: rotateY(180deg);
  transition-delay: 0.1s;
}

.about-two__content-text2-single .content-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.about-two__content-text2-single .content-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.about-two__content-text2-single .content-box p {
  margin: 0;
}


.about-two__content-text3 {
  position: relative;
  display: block;
  margin-top: 11px;
}

.about-two__content-text3-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  border: 1px solid var(--gifall-base);
  background: #f8f8f7;
  padding: 15px 20px 15px;
  z-index: 1;
}

.about-two__content-text3-inner .img-box {
  position: relative;
  display: block;
  width: 90px;
}

.about-two__content-text3-inner .img-box .shape4 {
  position: absolute;
  top: 22px;
  right: -10px;
  z-index: 1;
}

.about-two__content-text3-inner .img-box .inner {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
}

.about-two__content-text3-inner .img-box .inner img {
  width: 100%;
}

.about-two__content-text3-inner .content-box {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__content-text3-inner .content-box .text1 {
  position: relative;
  display: block;
}

.about-two__content-text3-inner .content-box .text1 p {
  margin: 0;
}

.about-two__content-text3-inner .content-box .text2 {
  position: relative;
  display: block;
  margin-left: 70px;
}

.about-two__content-text3-inner .content-box .text2 h2 {
  color: var(--gifall-base);
  font-size: 30px;
  line-height: 32px;
  font-weight: 700;
}

.about-two__content-text3-inner .content-box .text2 p {
  color: var(--gifall-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-transform: capitalize;
}


.about-two__content-text4 {
  position: relative;
  display: block;
  margin-top: 38px;
}

.about-two__content-text4-single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.about-two__content-text4-single ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.about-two__content-text4-single ul li {
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.about-two__content-text4-single ul li:last-child {
  margin-bottom: 0;
}

.about-two__content-text4-single ul li p {
  color: var(--gifall-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.about-two__content-text4-single ul li p span:before {
  position: relative;
  display: inline-block;
  color: var(--gifall-black);
  font-size: 18px;
  font-weight: 700;
  padding-right: 3px;
  top: 1px;
}

.about-two .about-one__bottom {
  z-index: 2;
}


/***
============================================
Feature Three
============================================
***/
.counter-one--two {
  position: relative;
  display: block;
  padding-bottom: 0px;
}

.counter-one--two .counter-one__single {
  margin-left: 45px;
}


/***
============================================
Feature Three
============================================
***/
.feature-three {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 82px 0px 120px;
  z-index: 1;
}

.feature-three .shape3 {
  position: absolute;
  top: 25px;
  left: 40px;
  opacity: 0.1;
  z-index: -1;
}

.feature-three .shape4 {
  position: absolute;
  left: 150px;
  bottom: 170px;
  z-index: -1;
}

.feature-three__content {
  position: relative;
  display: block;
  margin-right: -40px;
}

.feature-three__content .sec-title__title {
  text-transform: none;
}

.feature-three__content .sec-title {
  padding-bottom: 26px;
}

.feature-three__content-text {
  position: relative;
  display: block;
}

.feature-three__content-text p {
  font-size: 18px;
  line-height: 34px;
  margin: 0;
}

.feature-three__progress {
  position: relative;
  display: block;
  margin-top: 35px;
}

.feature-three__progress-single {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.feature-three__progress-single.mb0 {
  margin-bottom: 0;
}

.feature-three__progress-single .title-box {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.feature-three__progress-single .title-box h3 {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  text-transform: capitalize;
}


.feature-three__progress-single .bar {
  position: relative;
  width: 100%;
  height: 12px;
  background: #eaeaea;
  border-radius: 5px;
}

.feature-three__progress-single .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 12px;
  background: var(--gifall-base);
  border-radius: 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;
}

.feature-three__progress-single .bar-inner::before {
  position: absolute;
  top: -1px;
  right: 0;
  width: 14px;
  height: 14px;
  background: var(--gifall-primary);
  border: 3px solid #407d69;
  border-radius: 50%;
  content: "";
}

.feature-three__progress-single .count-text {
  position: absolute;
  top: -37px;
  right: 0px;
  color: var(--gifall-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-align: center;
  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;
  opacity: 1;
}

.feature-three__content-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 69px;
}

.feature-three__content-bottom .img-box {
  position: relative;
  display: block;
  background: #387e67;
  border-radius: 3px;
  overflow: hidden;
  max-width: 230px;
  width: 100%;
}

.feature-three__content-bottom .img-box .content-box {
  position: absolute;
  left: 0;
  bottom: 9px;
  right: 0;
  text-align: center;
  z-index: 2;
}

.feature-three__content-bottom .img-box .content-box p {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  font-family: var(--gifall-font-2);
}

.feature-three__content-bottom .img-box .content-box h2 {
  color: #ffffff;
  font-size: 42px;
  line-height: 52px;
  font-weight: 700;
}

.feature-three__content-bottom .img-box img {
  width: 100%;
  mix-blend-mode: overlay;
}


.feature-three__content-bottom .content-box {
  position: relative;
  display: block;
}

.feature-three__content-bottom .content-box ul {
  position: relative;
  display: block;
  padding-left: 15px;
}

.feature-three__content-bottom .content-box ul::before {
  position: absolute;
  top: 7px;
  left: 0;
  bottom: 8px;
  width: 3px;
  background: var(--gifall-base);
  content: "";
}

.feature-three__content-bottom .content-box ul::after {
  position: absolute;
  top: 33px;
  left: 0;
  width: 3px;
  height: 24px;
  background: var(--gifall-primary);
  content: "";
}

.feature-three__content-bottom .content-box ul li {
  position: relative;
  display: block;
  color: var(--gifall-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 4px;
}

.feature-three__content-bottom .content-box ul li:last-child {
  margin-bottom: 0;
}

.feature-three__content-bottom .content-box .btn-box {
  position: relative;
  display: block;
  margin-top: 42px;
}

.feature-three__img {
  position: relative;
  display: block;
  margin-left: 65px;
}

.feature-three__img1 {
  position: relative;
  display: block;
  margin-left: 70px;
  z-index: 1;
}

.feature-three__img1 .shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.feature-three__img1 img {
  max-width: none;
  float: left;
}

.feature-three__img2 {
  position: absolute;
  left: 0;
  bottom: -55px;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(52, 72, 59, 0.6);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
  z-index: 2;
}

.feature-three__img2 img {
  width: 100%;
  mix-blend-mode: overlay;
}

.feature-three__img .content-box {
  position: absolute;
  left: 0;
  bottom: -65px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 245px;
  height: 245px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0px 14px 24px 0px rgb(197, 203, 201, 0.35);
  text-align: center;
  z-index: 5;
}

.feature-three__img .content-box .icon-box {
  position: relative;
  display: block;
  margin-bottom: 16px;
  z-index: 1;
}

.feature-three__img .content-box .icon-box .shape2 {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 50px;
  height: 50px;
  background: var(--gifall-primary);
  border-radius: 50%;
  z-index: -1;
}

.feature-three__img .content-box .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--gifall-base);
  font-size: 60px;
}

.feature-three__img .content-box .text-box {
  position: relative;
  display: block;
}

.feature-three__img .content-box .text-box h2 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  font-family: var(--gifall-font-2);
}

.feature-three__img .content-box .text-box h2 .dollar {
  position: relative;
  display: inline-block;
  right: -12px;
  top: 5px;
}

.feature-three__img .content-box .text-box h2 .plus {
  position: relative;
  display: inline-block;
  right: 8px;
  top: 4px;
}

.feature-three .odometer.odometer-auto-theme,
.feature-three .odometer.odometer-theme-default {
  font-family: var(--gifall-font-2);
  line-height: 40px;
}

.feature-three__img .content-box .text-box p {
  font-weight: 500;
  line-height: 26px;
}



/***
============================================
Events One
============================================
***/
.events-one {
  position: relative;
  display: block;
  z-index: 5;
}

.events-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.events-one__single-img {
  position: relative;
  display: block;
}

.events-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  z-index: 1;
}

.events-one__single-img .inner::before {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.events-one__single:hover .events-one__single-img .inner::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.events-one__single-img .inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.events-one__single:hover .events-one__single-img .inner img {
  transform: scale(1);
}

.events-one__single-img .content-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  left: 0;
  bottom: -15px;
  right: 0;
  z-index: 5;
}

.events-one__single-img .content-box .top-contant {
  position: relative;
  display: inline-block;
  color: var(--gifall-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  background: var(--gifall-primary);
  padding: 2px 18px 3px;
  text-align: center;
  margin: 0 auto;
  border-radius: 13px;
  margin-bottom: 10px;
}

.events-one__single-img .bottom-content {
  position: relative;
  display: block;
}

.events-one__single-img .bottom-content ul {
  position: relative;
  display: flex;
  align-items: center;
  background: #49665d;
  padding: 3px 20px 3px;
  border-radius: 13px;
  overflow: hidden;
}

.events-one__single-img .bottom-content ul li {
  position: relative;
  display: block;
  margin-right: 15px;
}

.events-one__single-img .bottom-content ul li:last-child {
  margin-right: 0;
}

.events-one__single-img .bottom-content ul li p {
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
}

.events-one__single-img .bottom-content ul li p span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  top: 2px;
  padding-right: 4px;
}

.events-one__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 35px 0px rgb(209, 210, 212, 0.35);
  padding: 36px 15px 31px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  z-index: 1;
}

.events-one__single-content .white-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  content: "";
  z-index: -1;
}

.events-one__single-content .left-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: -5px;
  width: 43%;
  background: #ee104f;
  border-bottom-left-radius: 30px;
  z-index: -3;
}

.events-one__single-content .right-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -5px;
  width: 65%;
  background: var(--gifall-primary);
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  z-index: -2;
}

.events-one__single-content h2 {
  font-size: 22px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 12px;
}

.events-one__single-content h2 a {
  color: var(--gifall-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.events-one__single-content h2 a:hover {
  color: var(--gifall-base);
}

.events-one__single-content .btn-box {
  position: relative;
  display: block;
}

.events-one__single-content .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--gifall-base);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.events-one__single-content .btn-box a:hover {
  color: var(--gifall-black);
}

.events-one__single-content .btn-box a span::before {
  position: relative;
  display: inline-block;
  color: var(--gifall-base);
  font-size: 13px;
  top: 1px;
  transition: all 200ms linear;
  transition-delay: 0.1s;

}

.events-one__single-content .btn-box a:hover span::before {
  color: var(--gifall-black);
}


/***
============================================
Gallery Two
============================================
***/
.gallery-one--two {
  position: relative;
  display: block;
  margin-top: -160px;
}

.gallery-one--two .gallery-one__top-inner {
  padding: 221px 0px 230px;
}

.gallery-one--two .gallery-one__top__bg {
  background: #374f46;
}


/***
============================================
Testimonial Two
============================================
***/
.testimonial-two {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.testimonial-two__inner {
  position: relative;
  display: block;
}

.testimonial-two__single {
  position: relative;
  display: block;
  padding: 20px 0px 10px;
  z-index: 1;
}

.testimonial-two__single .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.testimonial-two__single .shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.testimonial-two__single-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.testimonial-two__single-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 25px;
  z-index: 5;
}

.testimonial-two__single-top-left {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-two__single-top-left .img-box {
  position: relative;
  display: block;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-two__single-top-left .img-box img {
  width: 100%;
}

.testimonial-two__single-top-left .text-box {
  position: relative;
  display: block;
  margin-left: 20px;
  flex: 1;
}

.testimonial-two__single-top-left .text-box h2 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
  font-family: var(--gifall-font-2);
}

.testimonial-two__single-top-left .text-box p {
  color: var(--gifall-base);
}


.testimonial-two__single-top-right {
  position: relative;
  display: block;
}

.testimonial-two__single-top-right .rating-box {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 15px 20px 7px;
  padding-right: 10px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.testimonial-two__single-top-right .rating-box ul li {
  margin-right: 2px;
}

.testimonial-two__single-top-right .rating-box ul li:last-child {
  margin-right: 0;
}

.testimonial-two__single-top-right .rating-box ul li span {
  color: #f9a52c;
  font-size: 25px;
  line-height: 25px;
}

.testimonial-two__single-inner {
  position: relative;
  display: block;
  padding: 20px 40px 40px;
  z-index: 5;
}

.testimonial-two__single-inner p {
  font-size: 20px;
  line-height: 34px;
}

.testimonial-two__single .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: var(--gifall-primary);
  border-radius: 50%;
  margin: 0 auto;
  z-index: 5;
}

.testimonial-two__single .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #000000;
  font-size: 45px;
}


/***
=============================================
Brand One
=============================================
***/
.brand-one {
  position: relative;
  display: block;
  padding: 54px 0 55px;
  z-index: 1;
}

.brand-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--gifall-primary);
  background-blend-mode: overlay;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: repeat;
  background-position: center center;
  z-index: -1;
}

.brand-one .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: .5s ease;
  overflow: hidden;
  cursor: pointer;
}

.brand-one .swiper-slide .img-box {
  position: relative;
  display: block;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.brand-one .swiper-slide:hover .img-box {
  transform: translateY(-100%);
}

.brand-one .swiper-slide .img-box img {
  opacity: 1.0;
  width: auto;
}

.brand-one .swiper-slide .img-box2 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(100%);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.brand-one .swiper-slide:hover .img-box2 {
  transform: translateY(0);
}


/***
=============================================
Feature Four
=============================================
***/
.feature-one--four {
  position: relative;
  display: block;
  padding: 0px 0px 20px;
  margin-top: -110px;
  background: transparent;
  z-index: 2;
}

.feature-one--four .auto-container {
  max-width: 1600px;
  width: 100%;
}

.feature-one--four .feature-one__single {
  padding: 40px 10px 30px;
}

.feature-one--four .feature-one__single .shape2 {
  top: -15px;
}

.feature-one--four .feature-one__single .shape3 {
  bottom: -70px;
}

/***
=============================================
About Three
=============================================
***/
.about-two--three {
  position: relative;
  display: block;
  padding: 70px 0px 120px;
  z-index: 1;
}

.about-two--three .shape8 {
  position: absolute;
  top: 250px;
  right: 35px;
  z-index: -1;
}

.about-two--three .about-two__img-inner {
  border-radius: 30px;
  overflow: hidden;
  z-index: 1;
}

.about-two--three .about-two__img-inner::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(20deg);
  z-index: 1;
}

.about-two--three .about-two__img-inner:hover::before {
  -webkit-animation: shine 1.9s;
  animation: shine 1.9s;
}

.about-two--three .about-two__img-inner img {
  float: none;
  width: 100%;
}

.about-two--three .about-two__content-text2-single {
  align-items: center;
}

.about-two--three .about-two__content-text2-single .icon-box span:before {
  top: 0px;
}

.about-two--three .about-two__content-text2-single .content-box h2 {
  margin-bottom: 0px;
}

.about-two--three .about-two__content-text2-single .icon-box .shape2 {
  left: 10px;
  bottom: auto;
  top: 6px;
}

.about-two--three .about-two__content-text2 {
  border-bottom: 1px solid #e7e7e7
}

.about-two--three .about-two__content-text4 {
  margin-top: 28px;
}

.about-two--three .about-two__content .shape5 {
  top: -25px;
  right: -25px;
}

.about-two__content-text5 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
}

.about-two__content-text5 .left-content {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 380px;
  width: 100%;
  border-radius: 5px;
  background: #f8f8f7;
  border: 1px solid #edecec;
  padding: 25px 25px 25px;
  padding-right: 50px;
}

.about-two__content-text5 .left-content .icon-box {
  position: absolute;
  bottom: 5px;
  right: 9px;
}

.about-two__content-text5 .left-content .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #bdbdbb;
  font-size: 30px;
}

.about-two__content-text5 .left-content .img-box {
  position: relative;
  display: block;
  width: 90px;
}

.about-two__content-text5 .left-content .img-box .shape7 {
  position: absolute;
  top: 23px;
  left: -10px;
  z-index: 1;
}

.about-two__content-text5 .left-content .img-box .inner {
  position: relative;
  display: block;
  overflow: hidden;
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.about-two__content-text5 .left-content .img-box .inner img {
  width: 100%;
}

.about-two__content-text5 .left-content .text-box {
  position: relative;
  display: block;
  margin-left: 25px;
  flex: 1;
}

.about-two__content-text5 .left-content .text-box p {
  margin: 0;
}


.about-two__content-text5 .right-content {
  position: relative;
  display: block;
  background: #fffbe6;
  padding: 28px 30px 35px;
  border-radius: 5px;
}

.about-two__content-text5 .right-content h2 {
  font-size: 41px;
  line-height: 41px;
  font-weight: 700;
}

.about-two--three .odometer.odometer-auto-theme,
.about-two--three .odometer.odometer-theme-default {
  font-family: var(--gifall-font);
  line-height: 41px;
}

.about-two__content-text5 .right-content h2 .plus {
  position: relative;
  display: inline-block;
  top: 3px;
  right: 2px;
}

.about-two__content-text5 .right-content p {
  column-rule: var(--gifall-black);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--gifall-font-2);
}


/***
=====================================================
Case Three
=====================================================
***/
.case-one.style3 {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
}

/***
=====================================================
Feature Four
=====================================================
***/
.feature-three.style4 {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
}

.feature-three.style4 .shape3 {
  top: 60px;
}

.feature-three.style4 .shape4 {
  left: auto;
  bottom: 250px;
  right: 140px;
}

.feature-three.style4 .feature-three__img1 {
  overflow: hidden;
  border-radius: 5px;
}

.feature-three.style4 .feature-three__img1 img {
  width: 100%;
  float: none;
}

.feature-three.style4 .feature-three__img .content-box {
  background: #fffbe6;
}


/***
=====================================================
Gallery Three
=====================================================
***/
.gallery-one.style3 {
  position: relative;
  display: block;
}

.gallery-one.style3 .gallery-one__top__bg {
  background: #374f46;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.gallery-one.style3 .shape3 {
  position: absolute;
  top: -125px;
  left: 0;
}

.gallery-one.style3 .shape4 {
  position: absolute;
  top: -135px;
  right: 0;
}

/***
=====================================================
Video Two
=====================================================
***/
.video-one--two {
  position: relative;
  display: block;
}

.video-one--two .shape4 {
  position: absolute;
  left: 40px;
  bottom: -175px;
  opacity: 0.1;
  z-index: -1;
}

.video-one--two .shape5 {
  position: absolute;
  bottom: 5px;
  right: 0;
  z-index: -1;
}

.video-one--two .video-one__inner {
  margin-top: -125px;
}


/***
=====================================================
Counter Three
=====================================================
***/
.counter-one.style3 {
  position: relative;
  display: block;
  padding: 0px 0px 82px;
}

.counter-one.style3 .counter-one__single {
  margin-left: 40px;
}


/***
=====================================================
Gallery One Bottom Style2
=====================================================
***/
.gallery-one__bottom.style2 {
  position: relative;
  display: block;
  padding-bottom: 0px;
  margin-top: 0px;
  margin-bottom: -155px;
  z-index: 5;
}

/***
=====================================================
Footer Two
=====================================================
***/
.footer-one.style2 {
  position: relative;
  display: block;
  padding-top: 225px;
}


/***
=====================================================
Events Two
=====================================================
***/
.events-one--two {
  position: relative;
  display: block;
  padding: 120px 0px 95px;
  z-index: 1;
}

.events-one--two__bg {
  position: absolute;
  top: 370px;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.events-one--two .auto-container {
  max-width: 1600px;
  width: 100%;
}


/***
=====================================================
Testimonial Three
=====================================================
***/
.testimonial-three {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
  z-index: 1;
}

.testimonial-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.testimonial-three__inner {
  position: relative;
  display: block;
}

.testimonial-three__single {
  position: relative;
  display: block;
  background: #f9f7f7;
  border: 1px solid var(--gifall-black);
  padding: 40px 60px 40px;
  padding-right: 35px;
}

.testimonial-three__single-inner {
  position: relative;
  display: block;
}

.testimonial-three__single-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-three__single-top .author-box {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-three__single-top .author-box .img-box {
  position: relative;
  display: block;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-three__single-top .author-box .img-box img {
  width: 100%;
}

.testimonial-three__single-top .author-box .text-box {
  position: relative;
  display: block;
  margin-left: 30px;
  flex: 1;
}

.testimonial-three__single-top .author-box .text-box h2 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
}

.testimonial-three__single-top .author-box .text-box p {
  margin: 0;
  line-height: 26px;
}

.testimonial-three__single-top .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 60px;
  height: 45px;
  background: #434343;
  z-index: 1;
}

.testimonial-three__single-top .icon-box .shape1 {
  position: absolute;
  bottom: -13px;
  right: 21px;
}

.testimonial-three__single-top .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 40px;
  transform: rotate(180deg);
}


.testimonial-three__single-middle {
  position: relative;
  display: block;
  margin-top: 35px;
}

.testimonial-three__single-middle h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  font-family: var(--gifall-font-2);
  margin-bottom: 20px;
}

.testimonial-three__single-middle p {
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
}


.testimonial-three__single-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
}

.testimonial-three__single-bottom .rating-box {
  position: relative;
  display: block;
}

.testimonial-three__single-bottom .rating-box ul {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f0eeee;
  padding: 10px 17px 7px;
}

.testimonial-three__single-bottom .rating-box ul li span {
  color: #f9b549;
  font-size: 18px;
  line-height: 18px;
}

.testimonial-three__single-bottom .rating-box ul li span.cle2 {
  color: #d6d4d1;
}

.testimonial-three__single-bottom .rating-box ul li {
  margin-right: 3px;
}

.testimonial-three__single-bottom .rating-box ul li:last-child {
  margin-right: 0;
}

.testimonial-three__single-bottom .social-links {
  position: relative;
  display: block;
  overflow: hidden;
}

.testimonial-three__single-bottom .social-links li {
  position: relative;
  display: inline-block;
  margin-right: 2px;
}

.testimonial-three__single-bottom .social-links li:last-child {
  margin-right: 0;
}

.testimonial-three__single-bottom .social-links li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  background: #f0eeee;
}

.testimonial-three__single-bottom .social-links li a:hover {
  background: var(--gifall-base);
}

.testimonial-three__single-bottom .social-links li a span::before {
  position: relative;
  display: inline-block;
  color: var(--gifall-black);
  font-size: 17px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonial-three__single-bottom .social-links li a:hover span::before {
  color: #ffffff;
}


.testimonial-three .owl-theme .owl-nav {
  position: absolute;
  margin-top: 0;
  top: -140px;
  right: 0px;
}

.testimonial-three .owl-carousel .owl-nav button.owl-prev,
.testimonial-three .owl-carousel .owl-nav button.owl-next {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 0px;
  background-color: transparent;
  border: 1px solid #eaeaea;
  color: #050505;
  font-size: 20px;
  font-weight: 700;
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.testimonial-three .owl-carousel .owl-nav button.owl-prev span:before,
.testimonial-three .owl-carousel .owl-nav button.owl-next span:before {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
}

.testimonial-three .owl-carousel .owl-nav button.owl-prev:hover,
.testimonial-three .owl-carousel .owl-nav button.owl-next:hover {
  background: var(--gifall-base);
  color: #ffffff;
}


/***
=============================================
Feature Four About
=============================================
***/
.feature-one--four.about {
  position: relative;
  display: block;
  padding-top: 120px;
  margin-top: 0;
}

/***
=============================================
About Two About
=============================================
***/
.about-two--about {
  position: relative;
  display: block;
  padding-top: 70px;
}


/***
=============================================
Team One About
=============================================
***/
.team-one--about {
  position: relative;
  display: block;
  padding-top: 120px;
}


/***
=============================================
Team One Volunteers
=============================================
***/
.team-one--volunteers {
  position: relative;
  display: block;
  padding: 120px 0px 81px;
}

/***
=============================================
Counter Three Volunteers
=============================================
***/
.counter-one.style3.volunteers {
  position: relative;
  display: block;
  padding: 120px 0px 0px;
}

/***
=============================================
Testimonial Two Volunteers
=============================================
***/
.testimonial-two.volunteers {
  position: relative;
  display: block;
  padding-top: 82px;
}

/***
=============================================
Case One Donation
=============================================
***/
.case-one--donation {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
}

/***
=============================================
Counter Three Donation
=============================================
***/
.counter-one.style3.donation {
  position: relative;
  display: block;
  padding: 120px 0px 82px;
}


/***
=============================================
Case One Donation List
=============================================
***/
.case-one--donation-list {
  position: relative;
  display: block;
  padding: 120px 0px 0px;
  z-index: 1;
}

.case-one--donation-list .row {
  --bs-gutter-x: 0px;
}

.case-one--donation-list .case-one__single-img .inner {
  border-radius: 5px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.case-one--donation-list .case-one__single-img .text-box {
  top: 10px;
  left: 10px;
  bottom: auto;
}

.case-one--donation-list .case-one__single-content {
  background: #f7f7f7;
  border-radius: 5px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  overflow: hidden;
}

.case-one--donation-list .case-one__single-content .inner {
  padding: 43px 40px 42px;
}

.case-one--donation-list .case-one__single-content .inner h2 {
  font-size: 32px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 27px;
}

.case-one--donation-list .case-one__progress {
  margin-left: 40px;
  border-top: 2px solid #ffffff;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.case-one--donation-list .case-one__progress::before {
  position: absolute;
  top: -2px;
  left: 0;
  bottom: 0;
  width: 4px;
  background: #b3d6cb;
  content: "";
}

.case-one--donation-list .case-one__progress::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4px;
  height: 40px;
  background: var(--gifall-primary);
  content: "";
}

.counter-one.style3.donation-list {
  position: relative;
  display: block;
  padding: 90px 0px 82px;
}


/***
=============================================
Donation Details
=============================================
***/
.donation-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.donation-details__content {
  position: relative;
  display: block;
}

.donation-details__content-img1 {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.donation-details__content-img1 .text-box {
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--gifall-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  background: var(--gifall-primary);
  padding: 0px 15px 1px;
  border-radius: 13px;
}

.donation-details__content-img1 img {
  width: 100%;
}

.donation-details__content-text-box1 {
  position: relative;
  display: block;
  margin-top: 29px;
}

.donation-details__content-text-box1 h2 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 500;
  margin-bottom: 26px;
}

.donation-details__content-text-box1 p {
  margin: 0;
}


.donation-details__progress {
  position: relative;
  display: block;
  background: #f7f7f7;
  padding: 35px 40px 35px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 41px;
  z-index: 1;
}

.donation-details__progress-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.donation-details__progress-inner {
  position: relative;
  display: block;
  background: #e6eeeb;
  padding: 40px 30px 22px;
  border-radius: 10px;
  border-top: 2px solid #ffffff;
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}

.donation-details__progress-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: #b3d6cb;
  content: "";
}

.donation-details__progress-inner::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4px;
  height: 40px;
  background: var(--gifall-primary);
  content: "";
}

.donation-details__progress-box {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 8px;
  padding: 4px 4px 4px;
}

.donation-details__progress .bar {
  position: relative;
  width: 100%;
  height: 7px;
  background: #ffffff;
  border-radius: 6px;
}

.donation-details__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 7px;
  background: var(--gifall-base);
  border-radius: 6px;
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.donation-details__progress .bar-inner::before {
  position: absolute;
  top: -4px;
  right: 0;
  width: 15px;
  height: 15px;
  background: var(--gifall-primary);
  border: 3px solid var(--gifall-base);
  border-radius: 50%;
  content: "";
}

.donation-details__progress .count-text {
  position: absolute;
  top: -31px;
  right: 0px;
  color: var(--gifall-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-align: center;
  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;
  opacity: 1;
}

.donation-details__progress .bottom-text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.donation-details__progress .bottom-text .left-text {
  position: relative;
  display: block;
}

.donation-details__progress .bottom-text .left-text p {
  color: var(--gifall-base);
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}

.donation-details__progress .bottom-text .left-text p span {
  color: var(--gifall-black);
  font-size: 16px;
  line-height: 28px;
}

.donation-details__progress .bottom-text .right-text {
  position: relative;
  display: block;
}

.donation-details__progress .bottom-text .right-text p {
  color: var(--gifall-black);
  line-height: 28px;
}


.donation-details__content-text-box2 {
  position: relative;
  display: block;
  margin-top: 41px;
}

.donation-details__content-text-box2 .single-text-box {
  position: relative;
  display: block;
  margin-bottom: 32px;
}

.donation-details__content-text-box2 .single-text-box h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 13px;
}

.donation-details__content-text-box2 .single-text-box p {
  margin: 0;
}


.donation-details__content-text-box3 {
  position: relative;
  display: block;
  padding-top: 24px;
}

.donation-details__content-text-box3-img {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  margin-right: -13px;
}

.donation-details__content-text-box3-img img {
  width: 100%;
}

.donation-details__content-text-box3-content {
  position: relative;
  display: block;
  margin-left: 23px;
}

.donation-details__content-text-box3-content ul {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 36px;
}

.donation-details__content-text-box3-content ul li {
  position: relative;
  display: block;
  margin-bottom: 1px;
}

.donation-details__content-text-box3-content ul li:last-child {
  margin-bottom: 0;
}

.donation-details__content-text-box3-content ul li p {
  margin: 0;
}

.donation-details__content-text-box3-content ul li p span:before {
  position: relative;
  display: inline-block;
  color: var(--gifall-base);
  font-size: 15px;
  font-weight: 700;
  top: 1px;
  padding-right: 7px;
}

.donation-details__content-text-box3-content .text-box {
  position: relative;
  display: block;
  padding-left: 20px;
}

.donation-details__content-text-box3-content .text-box::before {
  position: absolute;
  left: 0;
  bottom: 6px;
  top: 10px;
  width: 3px;
  background: var(--gifall-base);
  content: "";
}

.donation-details__content-text-box3-content .text-box::after {
  position: absolute;
  top: 10px;
  left: 0;
  width: 3px;
  height: 45px;
  background: var(--gifall-primary);
  content: "";
}

.donation-details__content-text-box3-content .text-box p {
  margin: 0;
}


.donation-details__content-text-box4 {
  position: relative;
  display: block;
  margin-top: 56px;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 45px;
}

.donation-details__content-text-box4 .row {
  --bs-gutter-x: 20px;
}

.donation-details__content-text-box4 .title-box {
  position: relative;
  display: block;
  margin-bottom: 31px;
}

.donation-details__content-text-box4 .title-box h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.donation-details__content-text-box4 .title-box p {
  margin: 0;
}

.donation-details__content-text-box4-single {
  position: relative;
  display: block;
  border: 2px solid var(--gifall-base);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 20px 10px 18px;
  margin-bottom: 20px;
  z-index: 1;
}

.donation-details__content-text-box4-single .img-box {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
}

.donation-details__content-text-box4-single .img-box img {
  width: 100%;
}

.donation-details__content-text-box4-single .text-box {
  position: relative;
  display: block;
}

.donation-details__content-text-box4-single .text-box h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--gifall-font-2);
}

.donation-details__content-text-box4-single .text-box h4 {
  color: var(--gifall-base);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.donation-details__content-text-box4-single .text-box p {
  color: rgba(var(--gifall-gray-rgb), 0.7);
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
}


/***
=====================================================
  Comments
=====================================================
***/
.comment-one {
  position: relative;
  display: block;
  margin-top: 49px;
}

.comment-one__title {
  color: var(--gifall-black);
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  text-transform: capitalize;
  margin-bottom: 45px;
  font-family: var(--gifall-font-2);
}

.comment-one__single {
  position: relative;
  display: block;
  margin-bottom: 50px;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 41px;
}

.comment-one__single.mb0 {
  margin-bottom: 0;
  margin-left: 75px;
}

.comment-one__single-inner {
  position: relative;
  display: block;
  padding-left: 130px;
}

.comment-one__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  overflow: hidden;
}

.comment-one__image img {
  width: 100%;
}

.comment-one__content {
  position: relative;
  display: block;
}

.comment-one__content .top-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 3px;
}

.comment-one__content .top-box .text-box {
  position: relative;
  display: block;
}

.comment-one__content .top-box .text-box h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  margin-bottom: 4px;
}

.comment-one__content .top-box .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-left: 15px;
}

.comment-one__btn {
  position: relative;
  display: inline-block;
  background: #c0c0c0;
  padding: 1px 15px 1px;
  border-radius: 3px;
  color: #ffffff;
  font-weight: 500;
  font-size: 13px;
  line-height: 23px;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.comment-one__btn:hover {
  background: var(--gifall-base);
  color: #ffffff
}

.comment-one__content .bottom-box {
  position: relative;
  display: block;
}

.comment-one__content .bottom-box p {
  margin: 0;
  margin-bottom: 5px;
}

.comment-one__content .bottom-box span {
  position: relative;
  display: inline-block;
  color: rgba(var(--gifall-gray-rgb), 0.7);
  font-size: 14px;
  line-height: 24px;
}


.comment-form {
  position: relative;
  display: block;
  margin-top: 51px;
}

.comment-form__title {
  color: var(--gifall-black);
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  font-family: var(--gifall-font-2);
  margin-bottom: 27px;
}

.comment-one__form {
  position: relative;
  display: block;
}

.comment-one__form .input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.comment-one__form .input-box input[type="text"],
.comment-one__form .input-box input[type="email"],
.comment-one__form .input-box textarea {
  position: relative;
  display: block;
  background: #f6f6f6;
  width: 100%;
  height: 70px;
  border: none;
  color: rgba(var(--gifall-gray-rgb), 0.6);
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  padding-left: 30px;
  padding-right: 20px;
  border-radius: 35px;
  transition: all 500ms ease;
  font-family: var(--gifall-font);
  outline: none;
}

.comment-one__form .input-box textarea {
  width: 100%;
  height: 220px;
  padding-top: 25px;
  border-radius: 35px;
  outline: none;
  resize: none;
}

.comment-one__form form input[type="text"]::-webkit-input-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
}

.comment-one__form form input[type="text"]:-moz-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
}

.comment-one__form form input[type="text"]::-moz-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
}

.comment-one__form form input[type="text"]:-ms-input-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
}

.comment-one__form form input[type="email"]::-webkit-input-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
}

.comment-one__form form input[type="email"]:-moz-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
}

.comment-one__form form input[type="email"]::-moz-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
}

.comment-one__form form input[type="email"]:-ms-input-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
}

.comment-one__form form textarea::-webkit-input-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
}

.comment-one__form form textarea:-moz-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
}

.comment-one__form form textarea::-moz-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
}

.comment-one__form form textarea:-ms-input-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
}

.comment-form__btn {
  position: relative;
  display: block;
}

/***
=====================================================
Sidebar
=====================================================
***/
.sidebar {
  position: relative;
  display: block;
}

.sidebar__single {
  position: relative;
  display: block;
}

.sidebar__search {
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  outline: none;
  background-color: #ffffff;
  color: rgba(var(--gifall-gray-rgb), 0.6);
  font-size: 16px;
  font-weight: 400;
  padding-left: 25px;
  height: 70px;
  width: 100%;
  padding-right: 60px;
  border-radius: 10px;
  border: 1px solid #f0eeee;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
  opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: rgba(var(--gifall-gray-rgb), 0.6);
}

.sidebar__search-form button[type="submit"] {
  background-color: #ffffff;
  color: var(--gifall-black);
  font-size: 18px;
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: 55px;
  outline: none;
  border: 1px solid var(--gifall-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__search-form:hover button[type="submit"] {
  color: var(--gifall-base);
  border: 1px solid var(--gifall-base);
}

.sidebar__donation {
  position: relative;
  display: block;
}

.sidebar__donation-box {
  position: relative;
  display: block;
  background: #f7f7f7;
  padding: 35px 40px 35px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__donation-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.sidebar__donation-box .text-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  background: #ffffff;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto 13px;
}

.sidebar__donation-box .text-box h2 {
  font-size: 35px;
  line-height: 45px;
  font-weight: 600;
}

.sidebar__donation-box .title {
  position: relative;
  display: block;
}

.sidebar__donation-box .title h2 {
  font-size: 22px;
  line-height: 34px;
  font-weight: 700;
  font-family: var(--gifall-font-2);
}

.sidebar__donation-box .btn-box {
  position: relative;
  display: inline-block;
  line-height: 0;
  margin-top: 15px;
}

.sidebar__donation-box .btn-box a {
  position: relative;
  display: inline-block;
  color: var(--gifall-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  font-family: var(--gifall-font-2);
  background: var(--gifall-primary);
  padding: 14px 35px 11px;
  border-radius: 27px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__donation-box .btn-box a:hover {
  background: var(--gifall-black);
  color: #ffffff;
}

.sidebar__donation-two {
  position: relative;
  display: block;
  margin-top: 40px;
}

.sidebar__donation-two-box {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  padding: 41px 30px 50px;
  z-index: 1;
}

.sidebar__donation-two-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(62, 143, 117, 0.85);
  background-blend-mode: overlay;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.sidebar__donation-two-box .text-box {
  position: relative;
  display: block;
}

.sidebar__donation-two-box .text-box h2 {
  color: #ffffff;
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.sidebar__donation-two-box .text-box p {
  color: #ffffff;
}

.sidebar__donation-two-box .btn-box {
  position: relative;
  display: block;
  margin-top: 31px;
}

.sidebar__donation-two-box .btn-box a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border: 2px solid #ffffff;
  padding: 12px 40px 13px;
  border-radius: 35px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__donation-two-box .btn-box a:hover {
  color: var(--gifall-black);
  background: #ffffff;
}


.sidebar__bottom {
  position: relative;
  display: block;
  margin-top: 40px;
  padding: 33px 25px 35px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__bottom-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.sidebar__single .title-box {
  position: relative;
  display: block;
  padding-left: 20px;
  margin-bottom: 32px;
}

.sidebar__single .title-box::before {
  position: absolute;
  top: 7px;
  left: 0;
  bottom: 8px;
  width: 12px;
  background: var(--gifall-base);
  content: "";
}

.sidebar__single .title-box::after {
  position: absolute;
  top: 7px;
  left: 0;
  width: 12px;
  height: 8px;
  background: var(--gifall-primary);
  content: "";
}


.sidebar__single .title-box h2 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  text-transform: capitalize;
}







.sidebar__catageries {
  position: relative;
  display: block;
  margin-bottom: 33px;
}

.sidebar__catageries-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: -9px;
}

.sidebar__catageries-list li {
  position: relative;
  display: block;
  z-index: 1;
}

.sidebar__catageries-list li::before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background: #ececec;
  content: "";
}

.sidebar__catageries-list li:after {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background: var(--gifall-base);
  transform: scaleX(0.7) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 0;
  content: "";
  z-index: 1;
}

.sidebar__catageries-list li:hover:after,
.sidebar__catageries-list li.active:after {
  transform: scaleX(1.0) rotateX(0deg);
  transition: all 0.4s linear;
  opacity: 1;
}

.sidebar__catageries-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px 11px;
}

.sidebar__catageries-list li:first-child a {
  padding-top: 0;
}

.sidebar__catageries-list li a .left {
  position: relative;
  display: block;
  color: var(--gifall-black);
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__catageries-list li:hover a .left,
.sidebar__catageries-list li.active a .left {
  color: var(--gifall-base);
}

.sidebar__catageries-list li a .right {
  position: relative;
  display: flex;
  align-items: center;
}

.sidebar__catageries-list li a .right p {
  color: var(--gifall-black);
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__catageries-list li:hover a .right p,
.sidebar__catageries-list li.active a .right p {
  color: var(--gifall-base);
}

.sidebar__catageries-list li a .right .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-left: 34px;
}

.sidebar__catageries-list li a .right .icon-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background: var(--gifall-primary);
  transform: scale(0.5);
  opacity: 0;
  transition: all 300ms linear;
  transition-delay: 0.1s;
  content: "";
}

.sidebar__catageries-list li:hover a .right .icon-box::before,
.sidebar__catageries-list li.active a .right .icon-box::before {
  transform: scale(1);
  opacity: 1;
}

.sidebar__catageries-list li a .right .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--gifall-black);
  font-size: 10px;
  line-height: 20px;
  font-weight: 700;
}

.sidebar__latest-post {
  position: relative;
  display: block;
}

.sidebar__latest-post-list {
  position: relative;
  display: block;
  overflow: hidden;
}

.sidebar__latest-post-list li {
  position: relative;
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border: 1px solid #ececec;
  border-radius: 5px;
  padding: 20px 20px 20px;
  margin-bottom: 10px;
}

.sidebar__latest-post-list li:last-child {
  margin-bottom: 0;
}

.sidebar__latest-post-list li .img-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.sidebar__latest-post-list li .img-box:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--gifall-base-rgb), 0.4);
  opacity: 0;
  z-index: 1;
  content: "";
}

.sidebar__latest-post-list li:hover .img-box::before {
  opacity: 1;
}

.sidebar__latest-post-list li .img-box img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.sidebar__latest-post-list li:hover .img-box img {
  transform: scale(1);
}

.sidebar__latest-post-list li .content-box {
  position: relative;
  display: block;
  flex: 1;
  margin-left: 20px;
}

.sidebar__latest-post-list li .content-box p {
  font-size: 14px;
  font-weight: 500;
}

.sidebar__latest-post-list li .content-box p span:before {
  position: relative;
  display: inline-block;
  color: rgba(var(--gifall-gray-rgb), 0.8);
  font-size: 15px;
  font-weight: 700;
  top: 1px;
  padding-right: 3px;
}

.sidebar__latest-post-list li .content-box h3 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}

.sidebar__latest-post-list li .content-box h3 a {
  color: var(--gifall-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar__latest-post-list li .content-box h3 a:hover {
  color: var(--gifall-base);
}

.sidebar__popular-tags {
  position: relative;
  display: block;
  margin-top: 33px;
}

.sidebar__popular-tags-list {
  position: relative;
  display: block;
  margin-left: -5px;
  margin-right: -5px;
}

.sidebar__popular-tags-list li {
  position: relative;
  display: inline-block;
  float: left;
  padding: 0px 5px 0px;
  margin-bottom: 10px;
}

.sidebar__popular-tags-list li a {
  position: relative;
  display: block;
  color: var(--gifall-black);
  font-size: 15px;
  font-weight: 500;
  background: #ffffff;
  padding: 1px 20px;
  border-radius: 15px;
  border: 1px solid transparent;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__popular-tags-list li a:hover {
  color: var(--gifall-base);
  border: 1px solid var(--gifall-base);
}


/***
=====================================================
Events One Events
=====================================================
***/
.events-one--events {
  position: relative;
  display: block;
  padding: 120px 0px 90px;
}

.events-one--events__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

/***
=====================================================
Events Details Page
=====================================================
***/
.events-details-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.events-details-page__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.events-details-page__top {
  position: relative;
  display: block;
}

.events-details-page__top-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
}

.events-details-page__top-img img {
  width: 100%;
}

.events-details-page__top-img .text-box {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  left: 20px;
  bottom: 20px;
  width: 115px;
  height: 27px;
  background: var(--gifall-primary);
  border-radius: 13px;
}

.events-details-page__top-img .text-box p {
  color: var(--gifall-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

.events-details-page__bottom {
  position: relative;
  display: block;
  margin-top: 68px;
}

.events-details-page__content {
  position: relative;
  display: block;
  margin-right: 20px;
}

.events-details-page__text-box1 {
  position: relative;
  display: block;
}

.events-details-page__text-box1 h2 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  margin-bottom: 25px;
}

.events-details-page__text-box1 p {
  margin: 0;
}

.events-details-page__text-box2 {
  position: relative;
  display: block;
  margin-top: 46px;
}

.events-details-page__text-box2 h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.events-details-page__text-box2 p {
  margin: 0;
}


.events-details-page__text-box3 {
  position: relative;
  display: block;
  margin-top: 46px;
}

.events-details-page__text-box3-list {
  position: relative;
  display: block;
}

.events-details-page__text-box3-list ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.events-details-page__text-box3-list ul li {
  position: relative;
  display: block;
  margin-bottom: 6px;
}

.events-details-page__text-box3-list ul li:last-child {
  margin-bottom: 0;
}

.events-details-page__text-box3-list ul li p {
  margin: 0;
}

.events-details-page__text-box3-list ul li p span:before {
  position: relative;
  display: inline-block;
  color: var(--gifall-base);
  font-size: 15px;
  font-weight: 700;
  top: 1px;
  padding-right: 5px;
}

.events-details-page__text-box3-img {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.events-details-page__text-box3-img img {
  width: 100%;
}



.events-details-page__text-box4 {
  position: relative;
  display: block;
  margin-top: 35px;
}

.events-details-page__text-box4 .text1 {
  margin: 0;
  margin-bottom: 41px;
}

.events-details-page__text-box4 h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 21px;
}

.events-details-page__text-box4 .text2 {
  margin: 0;
}

.events-details-page__text-box4-list {
  position: relative;
  display: block;
  margin-top: 56px;
}

.events-details-page__text-box4-list .single-list-box {
  position: relative;
  display: block;
}

.events-details-page__text-box4-list .single-list-box ul {
  position: relative;
  display: block;
}

.events-details-page__text-box4-list .single-list-box ul li {
  position: relative;
  display: block;
  padding-left: 25px;
  margin-bottom: 11px;
}

.events-details-page__text-box4-list .single-list-box ul li:last-child {
  margin-bottom: 0;
}

.events-details-page__text-box4-list .single-list-box ul li .icon-box {
  position: absolute;
  top: 7px;
  left: 0;
}

.events-details-page__text-box4-list .single-list-box ul li .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--gifall-base);
  font-size: 15px;
  font-weight: 700;
}

.events-details-page__text-box4-list .single-list-box ul li .text-box {
  position: relative;
  display: block;
}

.events-details-page__text-box4-list .single-list-box ul li .text-box p {
  margin: 0;
}

.events-details-page__text-box4 .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-top: 51px;
}


.events-details__sidebar {
  position: relative;
  display: block;
  margin-left: 20px;
}

.events-details__sidebar-single {
  position: relative;
  display: block;
}

.events-details__sidebar-single .contact-info-box {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0px 0px 35px 0px rgb(209, 210, 212, 0.35);
  z-index: 1;
}

.events-details__sidebar-single .contact-info-box .white-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  content: "";
  z-index: -1;
}

.events-details__sidebar-single .contact-info-box .left-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: -5px;
  width: 43%;
  background: #407d69;
  border-bottom-left-radius: 30px;
  z-index: -3;
}

.events-details__sidebar-single .contact-info-box .right-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -5px;
  width: 65%;
  background: var(--gifall-primary);
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  z-index: -2;
}

.events-details__sidebar-single .contact-info-box .top-text {
  position: relative;
  display: block;
  background: #49665d;
  padding: 3px 35px 3px;
  border-radius: 15px;
  padding-left: 75px;
}

.events-details__sidebar-single .contact-info-box .top-text::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 55px;
  background: #5a776e;
  border-radius: 15px;
  content: "";
}

.events-details__sidebar-single .contact-info-box .top-text::after {
  position: absolute;
  top: 0;
  left: -1px;
  bottom: 0;
  width: 45px;
  background: var(--gifall-primary);
  border-radius: 15px;
  content: "";
}

.events-details__sidebar-single .contact-info-box .top-text p {
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
  text-transform: capitalize;
}

.events-details__sidebar-single .contact-info-box .top-text p span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
  top: 3px;
}

.events-details__sidebar-single .contact-info-box-inner {
  position: relative;
  display: block;
  padding: 25px 45px 48px;
}

.events-details__sidebar-single .contact-info-box-list {
  position: relative;
  display: block;
}

.events-details__sidebar-single .contact-info-box-list li {
  position: relative;
  display: block;
  margin-bottom: 11px;
}

.events-details__sidebar-single .contact-info-box-list li:last-child {
  margin-bottom: 0;
}

.events-details__sidebar-single .contact-info-box-list li .inner {
  position: relative;
  display: block;
  padding-left: 45px;
}

.events-details__sidebar-single .contact-info-box-list li .inner .icon-box {
  position: absolute;
  top: 8px;
  left: 0;
}

.events-details__sidebar-single .contact-info-box-list li .inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #49665d;
  font-size: 30px;
}

.events-details__sidebar-single .contact-info-box-list li .inner .icon-box.style2 span:before {
  font-size: 33px;
  font-weight: 700;
}

.events-details__sidebar-single .contact-info-box-list li .inner .text-box {
  position: relative;
  display: block;
}

.events-details__sidebar-single .contact-info-box-list li .inner .text-box span {
  color: var(--gifall-base);
  font-size: 15px;
  line-height: 25px;
}

.events-details__sidebar-single .contact-info-box-list li .inner .text-box h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.events-details__sidebar-single .contact-info-box-list li .inner .text-box p {
  color: var(--gifall-black);
  font-size: 15px;
  line-height: 25px;
}

.events-details__sidebar .sidebar__donation-two {
  margin-top: 35px;
}


/***
=====================================================
Become Volunteer One
=====================================================
***/
.become-volunteer-one {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.become-volunteer-one .title-box {
  position: relative;
  display: block;
  padding-bottom: 75px;
}

.become-volunteer-one .title-box h2 {
  font-size: 55px;
  line-height: 68px;
  font-weight: 700;
  font-family: var(--gifall-font-2);
}

.become-volunteer-one__content {
  position: relative;
  display: block;
  margin-right: 80px;
}

.become-volunteer-one__content .title {
  position: relative;
  display: block;
  margin-bottom: 45px;
}

.become-volunteer-one__content .title h2 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
}

.become-volunteer-one__content-list {
  position: relative;
  display: block;
}

.become-volunteer-one__content-list li {
  position: relative;
  display: block;
  margin-bottom: 15px;
}

.become-volunteer-one__content-list li:last-child {
  margin-bottom: 0;
}

.become-volunteer-one__content-list li .inner {
  position: relative;
  display: block;
  padding-left: 30px;
}

.become-volunteer-one__content-list li .inner .icon-box {
  position: absolute;
  top: 0;
  left: 0;
}

.become-volunteer-one__content-list li .inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--gifall-black);
  font-size: 17px;
  top: 5px;
}

.become-volunteer-one__content-list li .inner .text-box {
  position: relative;
  display: block;
}

.become-volunteer-one__content-list li .inner .text-box p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.become-volunteer-one__content-img {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 64px;
}

.become-volunteer-one__content-img img {
  width: 100%;
}

.become-volunteer-one__form {
  position: relative;
  display: block;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 0px 24px 0px rgb(199, 199, 200, 0.35);
  padding: 50px 40px 55px;
}

.become-volunteer-one__form .input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.become-volunteer-one__form .input-box input[type="text"],
.become-volunteer-one__form .input-box input[type="email"],
.become-volunteer-one__form .input-box textarea {
  position: relative;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 65px;
  border: 2px solid #e6e6e6;
  color: rgba(var(--gifall-gray-rgb), 0.7);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  padding-left: 30px;
  padding-right: 20px;
  border-radius: 30px;
  transition: all 500ms ease;
  font-family: var(--gifall-font);
  outline: none;
}

.become-volunteer-one__form .input-box textarea {
  width: 100%;
  height: 160px;
  padding-top: 15px;
  border-radius: 30px;
  outline: none;
  resize: none;
}

.become-volunteer-one__form form input[type="text"]:focus {
  color: #0b0b0c;
  border-color: #0b0b0c;
  background: #ffffff;
}

.become-volunteer-one__form form input[type="email"]:focus {
  color: #0b0b0c;
  border-color: #0b0b0c;
  background: #ffffff;
}

.become-volunteer-one__form form textarea:focus {
  color: #0b0b0c;
  border-color: #0b0b0c;
  background-color: #ffffff;
}

.become-volunteer-one__form-btn {
  position: relative;
  display: block;
}


/***
=============================================
Blog One Blog
=============================================
***/
.blog-one--blog {
  position: relative;
  display: block;
  z-index: 1;
}

.blog-one--blog__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

/***
=============================================
Counter One Blog
=============================================
***/
.counter-one.style3.blog {
  position: relative;
  display: block;
  padding: 120px 0px 82px;
}


/***
=============================================
Blog List
=============================================
***/
.blog-list {
  position: relative;
  display: block;
  padding: 120px 0px 120px;
  z-index: 1;
}

.blog-list__content {
  position: relative;
  display: block;
}

.blog-list__single {
  position: relative;
  display: block;
  margin-bottom: 35px;
}

.blog-list__single-img {
  position: relative;
  display: block;
  z-index: 2;
}

.blog-list__single-img .overlay-text {
  position: absolute;
  left: 35px;
  bottom: -15px;
  z-index: 5;
}

.blog-list__single-img .overlay-text li {
  position: relative;
  display: inline-block;
  margin-right: 3px;
}

.blog-list__single-img .overlay-text li:last-child {
  margin-right: 0;
}

.blog-list__single-img .overlay-text li p {
  position: relative;
  display: block;
  background: var(--gifall-primary);
  color: var(--gifall-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 13px;
  padding: 1px 15px 2px;
}

.blog-list__single-img .overlay-text li.style2 p {
  color: #ffffff;
  background: var(--gifall-base);
}

.blog-list__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  z-index: 1;
}

.blog-list__single-img .inner:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--gifall-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.blog-list__single:hover .blog-list__single-img .inner::before {
  opacity: 1;
}

.blog-list__single-img .inner img {
  width: 100%;
  transition: .5s ease;
  transform: scale(1.05);
}

.blog-list__single:hover .blog-list__single-img .inner img {
  transform: scale(1);
}

.blog-list__single-content {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 35px 0px rgb(209, 210, 212, 0.35);
  padding: 45px 35px 31px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  z-index: 1;
}

.blog-list__single-content .white-bg {
  position: absolute;
  top: -50px;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  content: "";
  z-index: -1;
}

.blog-list__single-content .left-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: -5px;
  width: 175px;
  background: #407d69;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 20px;
  z-index: -3;
}

.blog-list__single-content .right-bg {
  position: absolute;
  top: 0;
  left: 130px;
  bottom: -5px;
  width: 240px;
  background: var(--gifall-primary);
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  z-index: -2;
}

.blog-list__single-content-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.blog-list__single-content-top .meta-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.blog-list__single-content-top .meta-box li {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 25px;
  line-height: 0;
}

.blog-list__single-content-top .meta-box li:last-child {
  margin-right: 0px;
}

.blog-list__single-content-top .meta-box li .icon {
  position: relative;
  display: block;
}

.blog-list__single-content-top .meta-box li .icon span::before {
  position: relative;
  display: inline-block;
  color: var(--gifall-black);
  font-size: 16px;
}

.blog-list__single-content-top .meta-box li .text {
  position: relative;
  display: block;
  margin-left: 8px;
  margin-top: 0;
}

.blog-list__single-content-top .meta-box li .text p {
  color: rgba(var(--gifall-gray-rgb), 0.7);
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}

.blog-list__single-content-top .meta-box li .text p a {
  color: rgba(var(--gifall-gray-rgb), 0.7);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list__single-content-top .meta-box li .text p a:hover {
  color: var(--gifall-base);
}

.blog-list__single-content-top .icon-box {
  position: relative;
  display: block;
}

.blog-list__single-content-top .icon-box span::before {
  position: relative;
  display: inline-block;
  color: #74727f;
  font-size: 18px;
  font-weight: 700;
}

.blog-list__single-content-bottom {
  position: relative;
  display: block;
}

.blog-list__single-content-bottom h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 500;
  margin-bottom: 20px;
}

.blog-list__single-content-bottom h2 a {
  color: var(--gifall-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list__single-content-bottom h2 a:hover {
  color: var(--gifall-base);
}

.blog-list__single-content-bottom p {
  margin: 0;
}

.blog-list__single-content-bottom .btn-box {
  position: relative;
  display: block;
  margin-top: 22px;
}

.blog-list__single-content-bottom .btn-box a {
  color: var(--gifall-base);
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list__single-content-bottom .btn-box a:hover {
  color: var(--gifall-black);
}

.blog-list__single-content-bottom .btn-box a span:before {
  position: relative;
  display: inline-block;
  color: var(--gifall-base);
  font-size: 14px;
  top: 2px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-list__single-content-bottom .btn-box a:hover span:before {
  color: var(--gifall-black);
}


/***
=============================================
Blog Details
=============================================
***/
.blog-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
}

.blog-details__content {
  position: relative;
  display: block;
}

.blog-details__content .blog-list__single-content {
  padding: 45px 35px 60px;
}

.blog-details__content-text-box1 {
  position: relative;
  display: block;
  margin-top: 16px;
}

.blog-details__content-text-box1 .text1 {
  margin: 0;
  margin-bottom: 16px;
}

.blog-details__content-text-box1 .text2 {
  margin: 0;
  margin-bottom: 32px;
}

.blog-details__content-text-box1 h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 17px;
}

.blog-details__content-text-box1 .text3 {
  margin: 0;
  margin-bottom: 16px;
}

.blog-details__content-text-box1 .text4 {
  margin: 0;
}


.blog-details__content-text-box2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #000000;
  padding: 36px 30px 33px;
  padding-right: 0;
  border-radius: 20px;
  margin-top: 41px;
}

.blog-details__content-text-box2 .text-box {
  position: relative;
  display: block;
  flex: 1;
}

.blog-details__content-text-box2 .text-box h2 {
  font-size: 24px;
  line-height: 38px;
  font-weight: 700;
  font-family: var(--gifall-font-2);
}

.blog-details__content-text-box2 .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  width: 70px;
  height: 70px;
  border-radius: 20px;
}

.blog-details__content-text-box2 .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--gifall-base);
  font-size: 60px;
  transform: rotate(180deg);
}

.blog-details__content-text-box3 {
  position: relative;
  display: block;
  margin-top: 41px;
}

.blog-details__content-text-box3 h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 12px;
}

.blog-details__content-text-box3 .text1 {
  margin: 0;
  margin-bottom: 16px;
}

.blog-details__content-text-box3 .text2 {
  margin: 0;
  margin-bottom: 31px;
}

.blog-details__content-text-box3 .img-box {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 31px;
}

.blog-details__content-text-box3 .img-box img {
  width: 100%;
}

.blog-details__content-text-box3 .text3 {
  margin: 0;
  margin-bottom: 27px;
}

.blog-details__content-text-box3 h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 12px;
}

.blog-details__content-text-box3 .text4 {
  margin: 0;
}

.blog-details__content-tag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #dadada;
  border-radius: 20px;
  padding: 20px 20px 20px;
  margin-top: 41px;
}

.blog-details__content-tag .title-box {
  position: relative;
  display: block;
}

.blog-details__content-tag .title-box h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
}

.blog-details__content-tag .tag-list {
  position: relative;
  display: block;
}

.blog-details__content-tag .tag-list a {
  position: relative;
  display: inline-block;
  color: var(--gifall-black);
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
  text-transform: capitalize;
  background: #f9f9f9;
  padding: 3px 20px 3px;
  border-radius: 15px;
  border: 1px solid transparent;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__content-tag .tag-list a+a {
  margin-left: 7px;
}

.blog-details__content-tag .tag-list a:hover {
  background: #ffffff;
  border: 1px solid var(--gifall-base);
}


.blog-details__content-author-box {
  position: relative;
  display: block;
  border: 1px solid #dadada;
  padding: 27px 30px 35px;
  border-radius: 20px;
  margin-top: 40px;
}

.blog-details__content-author-box .inner {
  position: relative;
  display: block;
  padding-left: 150px;
}

.blog-details__content-author-box .inner .img-box {
  position: absolute;
  top: 8px;
  left: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
}

.blog-details__content-author-box .inner .img-box img {
  width: 100%;
}

.blog-details__content-author-box .inner .content-box {
  position: relative;
  display: block;
}

.blog-details__content-author-box .inner .content-box h2 {
  font-size: 21px;
  line-height: 31px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 7px;
}

.blog-details__content-author-box .inner .content-box p {
  font-size: 18px;
  line-height: 32px;
}

.blog-details__content-author-box .inner .content-box .bottom-text {
  position: relative;
  display: flex;
  align-items: center;
  background: #f3f8f8;
  max-width: 270px;
  width: 100%;
  border-radius: 20px;
  padding: 10px 15px 10px;
  margin-top: 20px;
}

.blog-details__content-author-box .inner .content-box .bottom-text .title-box {
  position: relative;
  display: block;
}

.blog-details__content-author-box .inner .content-box .bottom-text .title-box p {
  color: var(--gifall-black);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
}

.blog-details__content-author-box .inner .content-box .bottom-text .social-links {
  position: relative;
  display: block;
  margin-left: 20px;
}

.blog-details__content-author-box .inner .content-box .bottom-text .social-links a {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ffffff;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__content-author-box .inner .content-box .bottom-text .social-links a+a {
  margin-left: 7px;
}

.blog-details__content-author-box .inner .content-box .bottom-text .social-links a span::before {
  position: relative;
  display: inline-block;
  color: var(--gifall-black);
  font-size: 12px;
  line-height: 35px;
}

.blog-details__content-author-box .inner .content-box .bottom-text .social-links a:hover {
  background: var(--gifall-primary);
}

.blog-details__content-text-box4 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fcfbf6;
  border-top: 1px solid #090808;
  border-bottom: 1px solid #090808;
  padding: 30px 15px 30px;
  margin-top: 45px;
}

.blog-details__content-text-box4 .single-content {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__content-text-box4 .single-content .icon-box {
  position: relative;
  display: block;
}

.blog-details__content-text-box4 .single-content .icon-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #090808;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__content-text-box4 .single-content .icon-box a:hover {
  border-color: var(--gifall-base);
}

.blog-details__content-text-box4 .single-content .icon-box a span:before {
  position: relative;
  display: inline-block;
  color: #090808;
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__content-text-box4 .single-content .icon-box a:hover span:before {
  color: var(--gifall-base);
}

.blog-details__content-text-box4 .single-content .text-box {
  position: relative;
  display: block;
  margin-left: 30px;
}

.blog-details__content-text-box4 .single-content .text-box h4 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
}

.blog-details__content-text-box4 .single-content .text-box h4 a {
  color: var(--gifall-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.blog-details__content-text-box4 .single-content .text-box h4 a:hover {
  color: var(--gifall-base);
}

.blog-details__content-text-box4 .single-content.style2 .text-box {
  margin-left: 0px;
  margin-right: 30px;
  text-align: right;
}


/***
=============================================
    Google Map
=============================================
***/
.contact-page-google-map {
  position: relative;
  display: block;
  z-index: 1;
}

.contact-page-google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 660px;
  width: 100%;
}


/***
=============================================
Contact One
=============================================
***/
.contact-one {
  position: relative;
  display: block;
  padding: 120px 0px 435px;
  z-index: 1;
}

.contact-one__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.contact-one__single {
  position: relative;
  display: block;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0px 0px 27px 0px rgb(192, 182, 182, 0.35);
  padding: 85px 10px 76px;
  margin-bottom: 30px;
  z-index: 1;
}

.contact-one__single .shape1 {
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  background: #f4faf8;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  z-index: -1;
  margin: 0 auto;
}

.contact-one__single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gifall-primary);
  border-radius: 5px;
  margin: 0 auto;
}


.contact-one__single-icon span:before {
  position: relative;
  display: inline-block;
  color: var(--gifall-black);
  font-size: 35px;
}

.contact-one__single-content {
  position: relative;
  display: block;
  margin-top: 24px;
}

.contact-one__single-content h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  font-family: var(--gifall-font-2);
  margin-bottom: 21px;
}

.contact-one__single-content p {
  color: rgba(var(--gifall-gray-rgb), 0.8);
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
}

.contact-one__single-content p a {
  color: rgba(var(--gifall-gray-rgb), 0.8);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-one__single-content p a:hover {
  color: var(--gifall-base);
}


/***
=====================================================
End Css
=====================================================
***/