@charset "UTF-8";
/***!  https://gausevadham.org/wp-content/themes/aidus/assets/css/styles.css?ver=1.0.2  !***/

@media all {
/*------------------------------------------------------------------
[Master Stylesheet]
Theme Name:     AidUs – Charity Nonprofit WordPress Theme
Version:        1.0.0
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

1. General
	1.1 Theme Reset Style
	1.2 Global Elements

2. header
	2.1 topbar
	2.2 navigation

3. content
	3.1 wpo-hero-slider
	3.2 partners
	3.3 funfact
	3.4 about 
	3.5 events
	3.6 service 
	3.7 causes
	3.8 cta
	3.9 project
	3.10 testimonial
	3.11 process
	3.12 instagam
	3.13 blog

4. wpo-footer

5. Home-style-2
   5.1 register
   5.2 about-section-s2
   5.3 service-section-s2
   5.4 causes-section-s2
   5.5  become_volunteer
   5.6 service-section-s3
   5.7 GetQuate-section
   5.8 volunteer-section
   5.9 project-section
   5.10 testimonial-section-s2
   5.11 gallery-section-s2
   5.12 cta-section-s2
   5.13 partners-section-s2
   5.14 blog-section-s2 
   5.15 cta-section-s3

6. Home-style-3
   6.1 features-section
   6.2 about-section-s3
   6.3 funfact-section 
   6.4 service-section-s4
   6.5 causes-section-s3
   6.6 get-quate-section
   6.7 process-section-s3
   6.8 partners-section-s3
   6.9 volunteer-section-s2
   6.10 testimonial-section-s3
   6.11 blog-section-s3
   6.12 contact-map-section
   6.13 donate-section
   6.14 project-page

7. service-single-page

8. project-single-page

9. shop-page

10. shop-single-page

11. cart-page-style

12. checkout-page-style

13. volunteer-page

14. team-single

15. donation-page-area

16. event-details-page

17. case-details-area

18. blog-pg-section

19. blog-single-section

20. wpo-contact-pg-section

21. error-404-section

----------------------------------------------------------------*/
/*------------------------------------------------------------------
1. General
----------------------------------------------------------------*/


/* 1.1	Theme Reset Style */
html {
  font-size: 15px;
}

:root {
  scroll-behavior: unset;
}

body {
  font-family: "Inter", sans-serif;
  color: #687693;
  background-color: #fff;
  font-size: 15px;
  font-size: 1rem;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

p {
  font-size: 16px;
  color: #687693;
  line-height: 1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #061408;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
}

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

a {
  text-decoration: none;
  transition: all 0.2s;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.sr-only {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

/* 1.2 Global Elements */
.page-wrapper {
  position: relative;
  overflow: hidden;
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 80px 0;
  }
}

/*** contact form error handling ***/
.contact-validation-active .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}

.contact-validation-active label.error {
  color: red;
  font-size: 0.9333333333rem;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
}

.contact-validation-active #c-loader,
.contact-validation-active #loader {
  display: none;
  margin-top: 10px;
}

.contact-validation-active #c-loader i,
.contact-validation-active #loader i {
  font-size: 30px;
  font-size: 2rem;
  color: #F74F22;
  display: inline-block;
  animation: rotating linear 2s infinite;
}

.contact-validation-active #success,
.contact-validation-active #c-success,
.contact-validation-active #c-error,
.contact-validation-active #error {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}

@media (max-width: 767px) {

  .contact-validation-active #success,
  .contact-validation-active #c-success,
  .contact-validation-active #c-error,
  .contact-validation-active #error {
    font-size: 15px;
  }
}

.contact-validation-active #c-success,
.contact-validation-active #success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}

.contact-validation-active #c-error,
.contact-validation-active #error {
  background-color: #ff1a1a;
  border-left: 5px solid red;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.rotating {
  animation: rotating 5s alternate infinite;
}

/*** back to top **/
.back-to-top {
  background-color: rgba(247, 79, 34, 0.7);
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #F74F22;
  border-radius: 45px;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  transition: all 0.2s;
}

@media (max-width: 991px) {
  .back-to-top {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.back-to-top:hover {
  background-color: #F74F22;
}

.back-to-top i {
  font-size: 18px;
  font-size: 1.2rem;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/** for popup image ***/
.mfp-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*** for fancybox video ***/
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999 !important;
}

.fancybox-wrap {
  z-index: 99999 !important;
}

.section-title {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 30px;
  }
}

.section-title span {
  color: #F74F22;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.section-title h2 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  margin-top: 0;
  font-size: 55px;
  font-weight: 800;
  line-height: 61px;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 330px) {
  .section-title h2 {
    font-size: 30px;
  }
}

.section-title h2 span {
  color: #F74F22;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 55px;
  font-weight: 800;
  line-height: 61px;
  text-transform: capitalize;
  margin-bottom: 0;
  display: inline-block;
}

@media (max-width: 767px) {
  .section-title h2 span {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 330px) {
  .section-title h2 span {
    font-size: 30px;
  }
}

.section-title p {
  font-size: 18px;
}

.theme-btn,
.view-cart-btn {
  background: #F74F22;
  color: #fff;
  display: inline-block;
  padding: 20px 65px;
  border: 0;
  text-transform: capitalize;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.75px;
  overflow: hidden;
}

.theme-btn::after,
.view-cart-btn::after {
  background-color: #18322E;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scaleY(0);
  transform-origin: bottom left;
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  width: 100%;
  z-index: -1;
}

.theme-btn:hover,
.view-cart-btn:hover,
.theme-btn:focus,
.view-cart-btn:focus,
.theme-btn:active,
.view-cart-btn:active {
  color: #fff;
}

.theme-btn:hover::after,
.view-cart-btn:hover::after {
  transform-origin: top right;
  transform: scale(1);
}

@media (max-width: 991px) {

  .theme-btn,
  .view-cart-btn {
    font-size: 14px;
  }
}

@media (max-width: 767px) {

  .theme-btn,
  .view-cart-btn {
    padding: 12px 18px;
    font-size: 14px;
  }
}

.theme-btn-s2 {
  background: #fff;
  color: #535353;
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid #F74F22;
  border-radius: 55px;
  text-transform: capitalize;
  z-index: 1;
  position: relative;
}

.theme-btn-s2:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 55px;
  background: linear-gradient(left, #00ded8, #00a7d5);
  transition: opacity 0.5s ease-out;
  opacity: 0;
  z-index: -1;
}

@media (max-width: 991px) {
  .theme-btn-s2 {
    font-size: 14px;
    font-size: 0.9333333333rem;
  }
}

.theme-btn-s2:hover,
.theme-btn-s2:focus,
.theme-btn-s2:active {
  background: #f63b09;
  color: #fff;
}

.theme-btn-s2:hover:after {
  opacity: 1;
}

@media (max-width: 767px) {
  .theme-btn-s2 {
    padding: 12px 18px;
    font-size: 13px;
  }
}

.view-cart-btn {
  display: block;
  margin-top: 15px;
  border-radius: 5px;
  padding: 10px 35px;
}

.view-cart-btn:after {
  display: none;
}

.view-cart-btn:hover {
  background-color: #e83808;
}

.view-cart-btn.s1 {
  background: #ddd;
}

.view-cart-btn.s1:hover {
  background-color: #c9c9c9;
}

.form input,
.form textarea,
.form select {
  border-color: #bfbfbf;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  color: #595959;
  font-style: normal;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #F74F22;
  -o-box-shadow: 0 0 5px 0 #f97653;
  -ms-box-shadow: 0 0 5px 0 #f97653;
  box-shadow: 0 0 5px 0 #f97653;
}

.form ::-webkit-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form ::-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-ms-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form select {
  font-style: normal;
  background: url(https://gausevadham.org/wp-content/themes/aidus/assets/images/select-icon.png) no-repeat right center;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form select::-ms-expand {
  /* for IE 11 */
  display: none;
}

.form ::-moz-placeholder {
  font-style: normal;
}

.form ::placeholder {
  font-style: normal;
}

.social-links {
  overflow: hidden;
}

.social-links li {
  float: left;
  width: 35px;
  height: 35px;
  margin-right: 1px;
}

.social-links li a {
  background-color: #f97653;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}

.social-links li a:hover {
  background-color: #F74F22;
}

.wpo-page-title {
  min-height: 478px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  margin-top: -50px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .wpo-page-title {
    min-height: 350px;
  }
}

@media (max-width: 767px) {
  .wpo-page-title {
    min-height: 300px;
  }
}

.wpo-page-title:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(280.94% 100.31% at 92.63% 41.85%, rgba(0, 7, 31, 0) 0%, rgba(2, 25, 41, 0.48) 28.3%, rgba(34, 35, 37, 0.98) 99.98%, rgba(34, 35, 37, 0.98) 99.99%);
  content: "";
  z-index: -1;
}

.wpo-page-title .wpo-breadcumb-wrap {
  text-align: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap {
    padding-top: 30px;
  }
}

.wpo-page-title .wpo-breadcumb-wrap h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 57px;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Jost", sans-serif;
  word-break: break-all;
  margin-top: 0;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap h2 {
    font-size: 30px;
    line-height: 55px;
    margin-bottom: 10px;
  }
}

.wpo-page-title .wpo-breadcumb-wrap ul {
  padding-left: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.wpo-page-title .wpo-breadcumb-wrap ul li {
  display: inline-block;
  padding: 0px 15px;
  color: #fff;
  position: relative;
  font-size: 18px;
}

@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap ul li {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .wpo-page-title .wpo-breadcumb-wrap ul li {
    font-size: 16px;
    padding: 0 10px;
  }
}

.wpo-page-title .wpo-breadcumb-wrap ul li:after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}

.wpo-page-title .wpo-breadcumb-wrap ul li:last-child span {
  color: #fff;
}

.wpo-page-title .wpo-breadcumb-wrap ul li:last-child:after {
  display: none;
}

.wpo-page-title .wpo-breadcumb-wrap ul li a {
  color: #fff;
  font-size: 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap ol li a {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .wpo-page-title .wpo-breadcumb-wrap ol li a {
    font-size: 16px;
  }
}

.wpo-page-title .wpo-breadcumb-wrap ol li a:hover {
  color: #233fd6;
}



.about-section.about-section-s2 {
  padding-top: 170px;
}

.preloader {
  background-color: #061408;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999999;
  overflow: hidden;
}

.preloader .vertical-centered-box {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
}

.preloader .vertical-centered-box:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.preloader .vertical-centered-box .content {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 0;
}

.preloader * {
  transition: all 0.3s;
}

.preloader .loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-left: -60px;
  margin-top: -60px;
}

.preloader .loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  overflow: hidden;
  transform-origin: 60px 60px;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  animation: rotate 1.2s infinite linear;
}

.preloader .loader-line-mask .loader-line {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.preloader #particles-background,
.preloader #particles-foreground {
  left: -51%;
  top: -51%;
  width: 202%;
  height: 202%;
  transform: scale3d(0.5, 0.5, 1);
}

.preloader #particles-background {
  background: #2c2d44;
  background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.preloader [not-existing] {
  zoom: 1;
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@keyframes fade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

.preloader [not-existing] {
  zoom: 1;
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.preloader [not-existing] {
  zoom: 1;
}

/*------------------------------------
	blog sidebar
------------------------------------*/
.blog-sidebar {
  /*** search-widget ***/
  /*** about-widget ***/
  /*** category-widget ***/
  /*** recent-post-widget ***/
  /*** instagram-widget ***/
  /*** tag-widget ***/
  /*** wpo-contact-widget ***/
}

@media screen and (min-width: 1200px) {
  .blog-sidebar {
    padding-left: 45px;
  }
}

@media (max-width: 991px) {
  .blog-sidebar {
    margin-top: 80px;
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .blog-sidebar {
    margin-top: 60px;
    max-width: 400px;
  }
}

.blog-sidebar .widget h3 {
  color: #16171A;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  margin: 0 0 1.3em;
  position: relative;
  text-transform: capitalize;
  padding-left: 10px;
}

.blog-sidebar .widget h3:before {
  content: "";
  background-color: #F74F22;
  width: 2px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.blog-sidebar>.widget+.widget {
  margin-top: 65px;
}

.blog-sidebar .search-widget {
  background: #F4F6F8;
  padding: 40px 30px;
}

@media (max-width: 1200px) {
  .blog-sidebar .search-widget {
    padding: 35px 20px;
  }
}

.blog-sidebar .search-widget form div {
  position: relative;
}

.blog-sidebar .search-widget input {
  background-color: #fff;
  height: 55px;
  font-size: 16px;
  padding: 6px 50px 6px 20px;
  border: 0;
  box-shadow: none;
  transition: all 0.3s;
}

.blog-sidebar .search-widget input:focus {
  background-color: rgba(247, 79, 34, 0.1);
}

.blog-sidebar .search-widget form button {
  background: transparent;
  font-size: 20px;
  color: #061408;
  background-color: transparent;
  border: 0;
  outline: 0;
  position: absolute;
  right: 10px;
  top: 52%;
  height: 50px;
  line-height: 50px;
  width: 50px;
  border-radius: 6px;
  transform: translateY(-50%);
}

.blog-sidebar .about-widget {
  text-align: center;
  background: #F4F6F8;
  padding: 45px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .blog-sidebar .about-widget {
    padding: 35px 20px;
  }
}

.blog-sidebar .about-widget .img-holder {
  margin: 0 auto;
  margin-bottom: 25px;
  width: 160px;
}

.blog-sidebar .about-widget .img-holder img {
  border-radius: 50%;
  width: 100%;
}

.blog-sidebar .about-widget ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

.blog-sidebar .about-widget ul li {
  margin-right: 10px;
}

.blog-sidebar .about-widget ul li:last-child {
  margin-right: 0;
}

.blog-sidebar .about-widget ul li a {
  text-decoration: none;
  display: block;
  width: 42px;
  height: 37px;
  line-height: 37px;
  background-color: transparent;
  color: #7D7E80;
  border: 1px solid #E8E8E8;
  transition: all 0.3s ease-in-out;
}

.blog-sidebar .about-widget ul li a:hover {
  background-color: #F74F22;
  border: 1px solid transparent;
  color: #fff;
}

.blog-sidebar .about-widget h4 {
  margin-bottom: 5px;
  color: #16171A;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-sidebar .about-widget span {
  color: #727A7D;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 25px;
  display: block;
}

.blog-sidebar .about-widget p {
  color: #5E5F63;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin-bottom: 30px;
}

.blog-sidebar .about-widget a {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.blog-sidebar .category-widget {
  background: #F4F6F8;
  padding: 40px 30px;
}

@media (max-width: 1200px) {
  .blog-sidebar .category-widget {
    padding: 35px 20px;
  }
}

.blog-sidebar .category-widget ul {
  list-style: none;
}

.blog-sidebar .category-widget ul li {
  font-size: 19px;
  position: relative;
}

@media (max-width: 767px) {
  .blog-sidebar .category-widget ul li {
    font-size: 16px;
    font-size: 1.0666666667rem;
  }
}

.blog-sidebar .category-widget ul li span {
  position: absolute;
  right: 15px;
}

.blog-sidebar .category-widget ul>li+li {
  margin-top: 20px;
}

.blog-sidebar .category-widget ul a {
  display: block;
  font-size: 16px;
  color: #445658;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  padding: 12px 15px;
  background: #fff;
  border-radius: 2px;
  border: 1px solid #F8F1EE;
}

.blog-sidebar .category-widget ul a span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
}

@media (max-width: 767px) {
  .blog-sidebar .category-widget ul a span {
    font-size: 14px;
    font-size: 0.9333333333rem;
  }
}

.blog-sidebar .category-widget ul a:hover,
.blog-sidebar .category-widget ul li:hover:before,
.blog-sidebar .category-widget ul li .active {
  color: #fff;
  background: #F74F22;
}

.blog-sidebar .recent-post-widget {
  background: #F4F6F8;
  padding: 40px 30px;
}

@media (max-width: 1200px) {
  .blog-sidebar .recent-post-widget {
    padding: 35px 20px;
  }
}

.blog-sidebar .recent-post-widget .post {
  overflow: hidden;
}

.blog-sidebar .recent-post-widget .posts>.post+.post {
  margin-top: 15px;
  padding-top: 15px;
}

.blog-sidebar .recent-post-widget .post .img-holder {
  width: 100px;
  float: left;
}

.blog-sidebar .recent-post-widget .post .img-holder img {
  width: 100%;
  min-height:90px;
  object-fit: cover;
}

.blog-sidebar .recent-post-widget .post .details {
  width: calc(100% - 100px);
  float: left;
  padding-left: 20px;
}

.blog-sidebar .recent-post-widget .post h4 {
  margin: 0 0 0.3em;
  color: #16171A;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .blog-sidebar .recent-post-widget .post h4 {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .blog-sidebar .recent-post-widget .post h4 {
    font-size: 16px;
  }
}

.blog-sidebar .recent-post-widget .post h4 a {
  display: inline-block;
  color: #061408;
}

.blog-sidebar .recent-post-widget .post h4 a:hover {
  color: #F74F22;
}

.blog-sidebar .recent-post-widget .post .details .date {
  color: #535353;
  color: #888686;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
}

.blog-sidebar .recent-post-widget .post .details .date i {
  display: inline-block;
  padding-right: 7px;
  color: #F74F22;
}

.blog-sidebar .wpo-instagram-widget ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.blog-sidebar .wpo-instagram-widget ul li {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 5px;
  padding: 0px 3px;
}

.blog-sidebar .wpo-instagram-widget ul li img {
  width: 100%;
  border-radius: 6px;
}

.blog-sidebar .tag-widget {
  background: #F4F6F8;
  padding: 40px 30px;
}

@media (max-width: 1200px) {
  .blog-sidebar .tag-widget {
    padding: 35px 20px;
  }
}

.blog-sidebar .tag-widget ul {
  overflow: hidden;
  list-style: none;
}

.blog-sidebar .tag-widget ul li {
  float: left;
  margin: 0 8px 8px 0;
}

.blog-sidebar .tag-widget ul li a {
  font-size: 15px;
  text-transform: capitalize;
  display: inline-block;
  padding: 5px 18px;
  color: #77787B;
  background: #FFF;
}

.blog-sidebar .tag-widget ul li a:hover {
  background: #18322E;
  color: #fff;
}

.blog-sidebar .contact-widget {
  border: 0;
  position: relative;
  background-size: cover;
  z-index: 1;
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-sidebar .contact-widget:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.54);
  content: "";
  z-index: -1;
}

@media (max-width: 1200px) {
  .blog-sidebar .contact-widget {
    padding: 40px 20px;
  }
}

.blog-sidebar .contact-widget span {
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 160%;
  margin-bottom: 10px;
}

.blog-sidebar .contact-widget h2 {
  color: #fff;
  font-size: 35px;
  font-weight: 800;
  line-height: 45px;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .blog-sidebar .contact-widget h2 {
    font-size: 31px;
    line-height: 40px;
  }
}

.blog-sidebar .contact-widget p {
  color: #fff;
  font-size: 18px;
}

.blog-sidebar .contact-widget .theme-btn,
.blog-sidebar .contact-widget .view-cart-btn {
  margin-top: 100px;
}

@media (max-width: 1200px) {

  .blog-sidebar .contact-widget .theme-btn,
  .blog-sidebar .contact-widget .view-cart-btn {
    margin-top: 20px;
  }
}

.blog-sidebar .contact-widget .shape {
  position: absolute;
  left: 45%;
  bottom: 22%;
  z-index: -1;
  transform: translate(-50%, -50%);
}

@media (max-width: 1200px) {
  .blog-sidebar .contact-widget .shape {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .blog-pg-section.blog-pg-left-sidebar .blog-sidebar {
    padding-left: 0px;
    padding-right: 45px;
  }
}

@media screen and (min-width: 1200px) {
  .blog-single-section.blog-single-left-sidebar-section .blog-sidebar {
    padding-left: 0px;
    padding-right: 45px;
  }
}

/**** pagination ****/
.pagination-wrapper {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .pagination-wrapper {
    text-align: left;
    margin-top: 40px;
  }
}

.pagination-wrapper .pg-pagination {
  display: inline-block;
  overflow: hidden;
  list-style-type: none;
  text-align: center;
}

.pagination-wrapper .pg-pagination li {
  float: left;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .pagination-wrapper .pg-pagination li {
    margin-right: 5px;
  }
}

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

.pagination-wrapper .pg-pagination li a {
  background-color: transparent;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 600;
  color: #061408;
  background: #ebf4fc;
  display: block;
}

@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-size: 1rem;
  }
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: #F74F22;
  border-color: #F74F22;
  color: #fff;
}

.pagination-wrapper .pg-pagination .fi:before {
  font-size: 17px;
}

.pagination-wrapper-left {
  text-align: left;
}

.pagination-wrapper-right {
  text-align: right;
}

@media screen and (min-width: 1200px) {
  .pagination-wrapper-right {
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .pagination-wrapper-right {
    margin-top: 45px;
    text-align: left;
  }
}

.service-sidebar {
  margin-right: 10px;
}

@media (max-width: 1199px) {
  .service-sidebar {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .service-sidebar {
    margin-top: 50px;
    max-width: 450px;
  }
}

.service-catagory ul li {
  margin-bottom: 13px;
}

.service-catagory ul li a {
  border-radius: 10px;
  background: #F1F1F1;
  color: #16171A;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 40px;
  display: block;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  position: relative;
}

@media (max-width: 575px) {
  .service-catagory ul li a {
    padding: 10px 20px;
  }
}

.service-catagory ul li a i {
  width: 32px;
  height: 32px;
  line-height: 36px;
  text-align: center;
  color: #F74F22;
  margin-right: 20px;
}

@media (max-width: 575px) {
  .service-catagory ul li a i {
    margin-right: 10px;
  }
}

.service-catagory ul li a::before {
  position: absolute;
  right: 40px;
  top: 33px;
  transform: translateY(-50%);
  content: "\f123";
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 575px) {
  .service-catagory ul li a::before {
    right: 20px;
  }
}

.service-catagory ul li a:hover,
.service-catagory ul li a.active {
  background: #18322E;
  color: #fff;
}

.service-catagory ul li a:hover::before,
.service-catagory ul li a.active::before {
  opacity: 1;
  visibility: visible;
}

.service-info {
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  margin-top: 40px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.87);
}

.service-info .icon {
  width: 88px;
  height: 76px;
  line-height: 76px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 35px;
  display: inline-block;
  margin-bottom: 30px;
}

.service-info h2 {
  color: #FFF;
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  max-width: 244px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.service-info span {
  color: #FFF;
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1.95px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.service-info .num span {
  border-radius: 24px;
  background: #F74F22;
  color: #FFF;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  display: block;
  padding: 8px 10px;
}

/*--------------------------------------------------------------
2. header
--------------------------------------------------------------*/
/*-- 2.1 topbar --*/
.topbar {
  padding: 0 255px;
  background: #EBEBEB;
}

@media (max-width: 1700px) {
  .topbar {
    padding: 0 100px;
  }
}

@media (max-width: 1500px) {
  .topbar {
    padding: 0 10px;
  }
}

.topbar .contact-info {
  padding-left: 0;
}

@media (max-width: 991px) {
  .topbar .contact-info {
    text-align: center;
  }
}

.topbar .contact-info li {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 0;
}

@media (max-width: 991px) {
  .topbar .contact-info li {
    padding-bottom: 0;
  }
}

.topbar .contact-info li i {
  color: #ED6637;
  padding-right: 7px;
}

.topbar .contact-info li:last-child i {
  font-size: 13px;
}

.topbar .contact-info li span {
  color: #000;
  font-size: 15px;
  font-weight: 400;
}

.topbar .contact-info li:last-child {
  padding-left: 35px;
}

@media (max-width: 575px) {
  .topbar .contact-info li:last-child {
    padding-left: 0;
  }
}

.topbar .contact-into {
  display: flex;
  align-items: center;
  justify-content: end;
}

@media (max-width: 991px) {
  .topbar .contact-into {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .topbar .contact-into {
    flex-wrap: wrap;
  }
}

.topbar .pryment-selector {
  padding-left: 10px;
}

@media (max-width: 757px) {
  .topbar .pryment-selector {
    padding-left: 10px;
  }
}

@media (max-width: 575px) {
  .topbar .pryment-selector {
    padding-left: 0;
  }
}

.topbar .social-media {
  padding-left: 20px;
}

@media (max-width: 340px) {
  .topbar .social-media {
    padding-bottom: 10px;
    padding-left: 0;
  }
}

.topbar .social-media li {
  display: inline-block;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 575px) {
  .topbar .social-media li {
    font-size: 14px;
  }
}

.topbar .social-media li a {
  padding: 0 8px;
  color: rgba(0, 0, 0, 0.72);
  transition: all 0.3s ease-in-out;
}

.topbar .social-media li a:hover {
  color: #ED6637;
}

.topbar .social-media li:last-child {
  padding-right: 0;
}

.topbar .language-selector {
  position: relative;
  display: inline;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 575px) {
  .topbar .language-selector {
    font-size: 14px;
  }
}

.topbar .language-selector select {
  display: none;
}

.topbar .language-selector .custom-select {
  position: relative;
  display: inline;
  cursor: pointer;
  padding: 10px;
  padding-right: 20px;
}

.topbar .custom-arrow {
  position: absolute;
  right: 0;
  top: 2px;
  padding-left: 5px;
  color: #000;
  font-size: 15px;
}

@media (max-width: 575px) {
  .topbar .custom-arrow {
    font-size: 14px;
    padding-left: 2px;
  }
}

.topbar .language-selector .custom-select img {
  vertical-align: middle;
  margin-right: 5px;
}

.topbar .language-selector .custom-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  background-color: white;
  border-radius: 4px;
  z-index: 111111;
}

.topbar .language-selector .custom-options div {
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.topbar .language-selector .custom-options div img {
  margin-right: 5px;
}

.topbar .language-selector .custom-options div:hover {
  background-color: #f0f0f0;
}

.topbar .language-selector.active .custom-options {
  display: block;
}

.topbar .pryment-selector select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 15px;
  padding-left: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid transparent;
  background: transparent;
  background-image: none;
  cursor: pointer;
  position: relative;
}

@media (max-width: 575px) {
  .topbar .pryment-selector select {
    font-size: 14px;
  }
}

.topbar .pryment-selector select:focus-visible {
  outline: 0px;
}

.topbar .pryment-selector select option {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 575px) {
  .topbar .pryment-selector select option {
    font-size: 14px;
  }
}

.topbar .pryment-selector {
  position: relative;
  display: inline-block;
}

.topbar .pryment-selector::after {
  font-family: themify;
  content: "\e64b";
  color: #000;
  font-size: 15px;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* midbar */
.midbar {
  padding: 0 255px;
}

@media (max-width: 1700px) {
  .midbar {
    padding: 0 100px;
  }
}

@media (max-width: 1500px) {
  .midbar {
    padding: 0 10px;
  }
}

.midbar .logo-mid {
  max-width: 126px;
  max-height: 46px;
}

@media (max-width: 991px) {
  .midbar .logo-mid {
    display: none;
  }
}

.midbar ul {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-left: 0;
}

@media (max-width: 991px) {
  .midbar ul {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .midbar ul {
    flex-wrap: wrap;
  }
}

.midbar ul li {
  display: flex;
  align-items: center;
  margin-left: 50px;
  padding: 10px 0;
}

@media (max-width: 757px) {
  .midbar ul li {
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 0px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .midbar ul li {
    width: 100%;
    display: block;
  }
}

.midbar ul li:first-child {
  margin-left: 0;
}

.midbar ul li .icon {
  padding-right: 8px;
}

.midbar ul li .icon i {
  font-size: 37px;
  color: #F74F22;
}

@media (max-width: 991px) {
  .midbar ul li .icon i {
    font-size: 25px;
  }
}

.midbar ul li .text h3 {
  color: #222;
  font-size: 15px;
  font-weight: 800;
  text-transform: capitalize;
  margin: 0;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .midbar ul li .text h3 {
    margin-bottom: 0;
  }
}

.midbar ul li .text span {
  color: #222;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

/* 2.2 navigation */
.wpo-site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
  /*** cart-search-contact ***/
  z-index: 999;
  position: relative;
}

.wpo-site-header .navigation {
  background-color: #fff;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -400px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  box-shadow: 0 -5px 15px rgba(8, 106, 216, 0.2901960784);
}

.sticky-on {
  opacity: 1;
  top: 0;
  visibility: visible;
}

.wpo-site-header .navigation>.container {
  position: relative;
}

.wpo-site-header {
  padding: 0 255px;
}

@media (max-width: 1700px) {
  .wpo-site-header {
    padding: 0 100px;
  }
}

@media (max-width: 1500px) {
  .wpo-site-header {
    padding: 0 10px;
  }
}

.wpo-site-header .row {
  width: 100%;
}

@media (max-width: 991px) {
  .wpo-site-header .navigation {
    padding: 10px 0;
  }
}

.wpo-site-header #navbar {
  transition: all 0.5s;
}

.wpo-site-header #navbar>ul li a:hover,
.wpo-site-header #navbar>ul li a:focus {
  text-decoration: none;
  color: #F74F22;
}

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar {
    /*** hover effect ***/
  }

  .wpo-site-header #navbar li {
    position: relative;
  }

  .wpo-site-header #navbar>ul>li>a:hover:before,
  .wpo-site-header #navbar>ul>li>a.active:before {
    opacity: 1;
    visibility: visible;
  }

  .wpo-site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a {
    position: relative;
  }

  .wpo-site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.73333rem;
    position: absolute;
    right: 15px;
    top: 58%;
    transform: translateY(-50%);
  }

  .wpo-site-header #navbar>ul>li:hover>.sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }

  .wpo-site-header #navbar .sub-menu>li:hover>.sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}

.wpo-site-header .container-fluid {
  padding-right: 0;
}

@media (max-width: 991px) {
  .wpo-site-header {
    /* class for show hide navigation */
  }

  .wpo-site-header .container {
    width: 100%;
    max-width: 100%;
  }

  .wpo-site-header .header-right {
    right: -10px;
  }

  .wpo-site-header .navbar-header button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }

  .wpo-site-header .navbar-header button span:last-child {
    margin: 0;
  }
}

.wpo-site-header #navbar ul {
  list-style: none;
}

@media (max-width: 991px) and (max-width: 991px) {
  .wpo-site-header #navbar {
    top: 0;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar>ul {
    z-index: 101;
  }

  .wpo-site-header #navbar ul a {
    color: #000;
  }

  .wpo-site-header #navbar ul a:hover,
  .wpo-site-header #navbar ul li.current a {
    color: #F74F22;
  }

  .wpo-site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }

  .wpo-site-header .navbar-toggler .first-angle,
  .wpo-site-header .navbar-toggler .last-angle {
    transition: all 0.3s;
  }

  .wpo-site-header .x-close .middle-angle {
    opacity: 0;
  }

  .wpo-site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }

  .wpo-site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}

@media (max-width: 767px) {
  .wpo-site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }

  .wpo-site-header #navbar .navbar-nav {
    margin: 0;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .navbar-collapse.collapse {
    display: none;
  }

  .wpo-site-header .navbar-collapse.collapse.in {
    display: block;
  }

  .wpo-site-header .navbar-header .collapse,
  .wpo-site-header .navbar-toggle {
    display: block;
  }

  .wpo-site-header .navbar-header {
    float: none;
    position: relative;
    z-index: 99;
    text-align: center;
  }

  .wpo-site-header .navbar-right {
    float: none;
  }

  .wpo-site-header .navbar-nav {
    float: none;
  }

  .wpo-site-header .navbar-nav>li {
    float: none;
  }
}

.wpo-site-header .header-right {
  display: flex;
  justify-content: flex-end;
  z-index: 991;
  position: relative;
  align-items: center;
}

.wpo-site-header .header-right button {
  padding: 0;
  border: 0;
  outline: 0;
}

.wpo-site-header .header-right>div {
  float: left;
  position: relative;
  margin-right: 8px;
}

.wpo-site-header .header-right .close-form .theme-btn,
.wpo-site-header .header-right .close-form .view-cart-btn {
  padding: 18px 45px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
}

.wpo-site-header .header-right .close-form .theme-btn::after,
.wpo-site-header .header-right .close-form .view-cart-btn::after {
  background: #FFB40A;
}

@media (max-width: 1400px) {

  .wpo-site-header .header-right .close-form .theme-btn,
  .wpo-site-header .header-right .close-form .view-cart-btn {
    padding: 10px 15px;
    font-size: 15px;
  }
}

@media (max-width: 450px) {
  .wpo-site-header .header-right>div {
    margin-right: 10px;
  }

  .wpo-site-header .header-right {
    right: -30px;
  }
}

.wpo-site-header .header-right>div:last-child {
  margin: 0 0 0 30px;
  position: relative;
}

.wpo-site-header .header-right>div:last-child::before {
  position: absolute;
  height: 98%;
  content: "";
  width: 1px;
  left: -20px;
  background: rgba(255, 255, 255, 0.21);
}

@media (max-width: 767px) {
  .wpo-site-header .header-right>div:last-child {
    margin: 3px 0 0 10px;
  }
}

.wpo-site-header .header-right .header-search-form-wrapper {
  position: relative;
}

.wpo-site-header .header-right .header-search-form-wrapper i {
  font-size: 22px;
}

.wpo-site-header .header-right .header-search-form i {
  font-size: 22px;
}

@media (max-width: 450px) {
  .wpo-site-header .header-right .cart-toggle-btn {
    display: none;
  }
}

.wpo-site-header .header-right .search-toggle-btn,
.wpo-site-header .header-right .cart-toggle-btn {
  background-color: rgba(7, 1, 67, 0.05);
  line-height: 0.66em;
  color: #fff;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
}

@media (max-width: 1200px) {

  .wpo-site-header .header-right .search-toggle-btn,
  .wpo-site-header .header-right .cart-toggle-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 991px) {

  .wpo-site-header .header-right .search-toggle-btn,
  .wpo-site-header .header-right .cart-toggle-btn {
    width: 40px;
    height: 40px;
  }
}

.wpo-site-header .header-right .search-toggle-btn .fi,
.wpo-site-header .header-right .cart-toggle-btn .fi {
  font-size: 20px;
}

@media (max-width: 991px) {

  .wpo-site-header .header-right .search-toggle-btn .fi:before,
  .wpo-site-header .header-right .cart-toggle-btn .fi:before {
    font-size: 16px;
  }
}

.wpo-site-header .header-right .search-toggle-btn .ti-close,
.wpo-site-header .header-right .cart-toggle-btn .ti-close {
  display: block;
  line-height: 20px;
  position: relative;
  top: -2px;
}

/*** cart-search-contact ***/
.cart-search-contact button {
  background: transparent;
  padding: 0;
  border: 0;
  outline: 0;
}

.cart-search-contact .fi {
  font-size: 30px;
}

.cart-search-contact>div {
  float: left;
  position: relative;
}

.cart-search-contact>div+div {
  margin-left: 12px;
}

.cart-search-contact .header-search-form {
  position: absolute;
  width: 350px;
  right: 0;
  top: 75px;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  transition: all 0.5s;
  box-shadow: -2px 18px 40px -9px rgb(153, 153, 153);
}

@media (max-width: 991px) {
  .cart-search-contact .header-search-form {
    top: 65px;
  }
}

@media (max-width: 767px) {
  .cart-search-contact .header-search-form {
    right: 15px;
  }
}

@media (max-width: 575px) {
  .cart-search-contact .header-search-form {
    width: 260px;
    padding: 15px;
  }
}

.cart-search-contact .header-search-form-wrapper .fi:before {
  font-size: 18px;
}

.cart-search-contact form div {
  position: relative;
}

.cart-search-contact form div button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.cart-search-contact form div button .fi:before {
  font-size: 18px !important;
}

.cart-search-contact input {
  width: 100%;
  height: 50px;
  padding: 6px 20px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #DFDFDF;
}

.cart-search-contact input:focus {
  box-shadow: none;
  border-color: #F74F22;
}

.wpo-site-header .header-right .header-search-content-toggle {
  opacity: 1;
  visibility: visible;
  right: 0;
  transform: scale(1);
}

.mini-cart .cart-count {
  background: #F74F22;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-size: 0.5333333333rem;
  line-height: 18px;
  color: white;
  position: absolute;
  top: -2px;
  right: -5px;
  border-radius: 50%;
  font-weight: 600;
}

.mini-cart-content {
  background: #fff;
  width: 320px;
  height: 100%;
  z-index: 100;
  position: fixed;
  right: -320px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  box-shadow: -2px 18px 40px -9px rgb(153, 153, 153);
}

@media (max-width: 575px) {
  .mini-cart-content {
    width: 290px;
  }
}

.mini-cart-content .mini-cart-close {
  display: block;
  width: 40px;
  height: 40px;
  background-color: rgb(51, 51, 51);
  color: rgb(255, 255, 255);
  font-size: 0px;
  text-align: center;
  overflow: hidden;
  position: relative;
  float: right;
  line-height: 54px;
  border-radius: 3px;
  right: 10px;
  top: 20px;
}

.mini-cart-content .mini-cart-close i {
  font-size: 15px;
}

.mini-cart-content p {
  font-size: 15px;
  font-size: 1rem;
  font-weight: 500;
  color: #061408;
  margin: 0;
  text-transform: uppercase;
}

.mini-cart-content .mini-cart-items {
  padding: 100px 20px 25px;
}

.mini-cart-content .mini-cart-item {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #efefef;
}

.mini-cart-content .mini-cart-item:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.mini-cart-content .mini-cart-item-image {
  width: 50px;
  height: 50px;
  border: 2px solid #f3f3f3;
  float: left;
  margin-right: 15px;
}

.mini-cart-content .mini-cart-item-image a,
.mini-cart-content .mini-cart-item-image img {
  display: block;
  width: 46px;
  height: 46px;
}

.mini-cart-content .mini-cart-item-des {
  position: relative;
  overflow: hidden;
}

.mini-cart-content .mini-cart-item-des a {
  font-size: 14px;
  font-size: 0.9333333333rem;
  font-weight: 600;
  text-align: left;
  color: #061408;
}

.mini-cart-content .mini-cart-item-des a:hover {
  color: #F74F22;
}

.mini-cart-content .mini-cart-item-des .mini-cart-item-price {
  font-size: 13px;
  font-size: 0.8666666667rem;
  color: #888;
  display: flex;
  margin-top: 3px;
  align-items: center;
}

.mini-cart-content .mini-cart-item-des .mini-cart-item-quantity {
  font-size: 12px;
  font-size: 0.8rem;
  color: #888;
  display: block;
  margin-left: 5px;
}

.mini-cart-content .visible-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  opacity: 0.02;
  z-index: -1;
}

.mini-cart-content .mini-cart-action {
  padding: 20px 0 30px;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.mini-cart-content .mini-cart-action .theme-btn-s2 {
  float: right;
}

.mini-cart-content .mini-cart-action .mini-btn {
  width: 240px;
}

.mini-cart-content .mini-cart-action .mini-checkout-price {
  font-size: 16px;
  font-size: 1.0666666667rem;
  font-weight: 600;
  color: #061408;
  display: block;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-cart-content .mini-cart-action .mini-checkout-price span {
  color: #c79652;
  font-size: 20px;
}

.mini-cart-content-toggle,
.mini-wislist-content-toggle {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.mini-cart-content .mini-cart-empty p {
  text-transform: capitalize;
  color: #687693;
  margin-bottom: 0;
}

.mini-cart-content .mini-cart-empty {
  padding-top: 80px;
  text-align: center;
}

.mini-cart-content .mini-cart-empty .cart-emty-icon i:before {
  font-size: 120px;
  color: #eee;
}

.mini-cart-content .mini-cart-empty a {
  display: inline-block;
}

@media (max-width: 991px) {
  .page-wrapper {
    transition: all 0.3s;
  }

  .body-overlay:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    transition: all 0.3s;
  }
}

.header-search-area {
  background: #fff;
  width: 100%;
  padding: 100px 0;
  text-align: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}

.header-search-area h3 {
  font-size: 45px;
  margin: 0 0 1em;
}

.header-search-area form {
  position: relative;
}

.header-search-area input {
  height: 50px;
  font-size: 18px;
  font-size: 1.2rem;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #d0d0d0;
  box-shadow: none;
}

.header-search-area input:focus {
  box-shadow: none;
  border-color: #F74F22;
}

.header-search-area form button {
  background: transparent;
  border: 0;
  font-size: 20px;
  font-size: 1.33333rem;
  position: absolute;
  right: 0;
  bottom: 10px;
}

.header-search-area form button:focus {
  border: none;
  outline: none;
}

.header-search-area .close-form {
  position: absolute;
  right: 35px;
  top: 35px;
  bottom: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid;
}

.header-search-area .close-form button {
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
  font-size: 0.86667rem;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 2px;
  z-index: 99;
}

.header-search-area .close-form button:focus {
  border: 0;
  outline: 0;
}

.wpo-site-header {
  /* navigation open and close btn hide for width screen */
  /* style for navigation less than 992px */
  /*navbar collaps less then 992px*/
}

.wpo-site-header .navigation {
  border-radius: 0px 0px 20px 20px;
  background: #122F2A;
}

@media (max-width: 991px) {
  .wpo-site-header .navigation {
    border-radius: 0;
  }
}

.wpo-site-header .navigation>.container {
  position: relative;
}

.wpo-site-header #navbar {
  transition: all 0.5s;
}

.wpo-site-header #navbar>ul li a:hover,
.wpo-site-header #navbar>ul li a:focus {
  text-decoration: none;
  color: #FFB40A;
  text-decoration: underline;
}

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar {
    /*** hover effect ***/
  }

  .wpo-site-header #navbar li {
    position: relative;
  }

  .wpo-site-header #navbar>ul>li>a {
    font-size: 16px;
    padding: 35px 20px;
    display: block;
    color: #fff;
    position: relative;
    font-weight: 500;
    text-transform: capitalize;
  }
}

@media screen and (min-width: 992px) and (max-width: 1870px) {
  .wpo-site-header #navbar>ul>li>a {
    padding: 35px 18px;
  }
}

@media screen and (min-width: 992px) {
  .wpo-site-header #navbar>ul .sub-menu {
    background-color: #fff;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 225px;
    position: absolute;
    padding: 20px 0;
    left: 0;
    top: 110%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    transform: scaleY(0);
    transform-origin: center top 0;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
  }

  .wpo-site-header #navbar>ul>li .sub-menu a {
    font-size: 16px;
    display: block;
    padding: 10px 15px;
    color: #061408;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    text-transform: capitalize;
  }

  .wpo-site-header #navbar>ul>li .sub-menu a:hover:after,
  .wpo-site-header #navbar>ul>li .sub-menu a.active:after {
    width: 40px;
    opacity: 1;
    visibility: visible;
  }

  .wpo-site-header #navbar>ul>li>.sub-menu .sub-menu {
    left: 110%;
    top: 0;
    transition: all 0.3s;
    transform: none;
    transform-origin: none;
    transition: all 0.3s ease-in-out 0s;
  }

  .wpo-site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a {
    position: relative;
  }

  .wpo-site-header #navbar>ul>li>.sub-menu>.menu-item-has-children>a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.7333333333rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .wpo-site-header #navbar>ul>li:hover>.sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
    transform: scaleY(100%);
    -webkit-transform: scaleY(100%);
  }

  .wpo-site-header #navbar .sub-menu>li:hover>.sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar>ul>li a {
    display: block;
    font-size: 15px;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
  }

  .wpo-site-header #navbar>ul>li a:hover,
  .wpo-site-header #navbar>ul>li a.active {
    color: #fff;
  }

  .wpo-site-header #navbar>ul .sub-menu>li:last-child {
    border-bottom: 0;
  }

  .wpo-site-header #navbar>ul>li>.sub-menu a {
    padding: 8px 15px 8px 45px;
  }

  .wpo-site-header #navbar>ul>li>.sub-menu .sub-menu a {
    padding: 8px 15px 8px 65px;
  }

  .wpo-site-header #navbar>ul .menu-item-has-children>a {
    position: relative;
    color: #ddd;
  }

  .wpo-site-header #navbar>ul .menu-item-has-children>a:hover,
  .wpo-site-header #navbar>ul .menu-item-has-children>a.active {
    color: #fff;
  }

  .wpo-site-header #navbar>ul .menu-item-has-children>a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.7333333333rem;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }

  .wpo-site-header #navbar>ul .menu-item-has-children>a.rotate:before {
    transform: rotate(90deg);
    top: 29%;
  }

  .wpo-site-header #navbar>ul .menu-item-has-children>a.rotate {
    color: #fff;
  }
}

@media screen and (min-width: 992px) {
  .wpo-site-header .navbar-header .open-btn {
    display: none;
  }

  .wpo-site-header #navbar .close-navbar {
    display: none;
  }
}

.wpo-site-header .menu-close {
  display: none;
}

.wpo-site-header .navbar-header {
  display: none;
}

@media (max-width: 991px) {
  .wpo-site-header {
    /* class for show hide navigation */
  }

  .wpo-site-header .container {
    width: 100%;
  }

  .wpo-site-header .navbar-header {
    display: block;
  }

  .wpo-site-header .mobail-menu button {
    background-color: #F74F22;
    width: 40px;
    height: 35px;
    border: 0;
    padding: 5px 10px;
    outline: 0;
    position: relative;
    z-index: 20;
  }

  .wpo-site-header .mobail-menu button:focus {
    outline: none;
    box-shadow: none;
  }

  .wpo-site-header .mobail-menu button span {
    background-color: #fff;
    width: 20px;
    display: block;
    height: 2px;
    margin-bottom: 5px;
  }

  .wpo-site-header .mobail-menu button span:last-child {
    margin: 0;
  }

  .wpo-site-header #navbar {
    background: #18322E;
    display: block !important;
    width: 300px;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    position: fixed;
    left: -320px;
    top: 0px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
  }

  .wpo-site-header #navbar .navbar-nav {
    display: block;
  }

  .wpo-site-header #navbar>ul {
    position: relative;
    z-index: 101;
  }

  .wpo-site-header #navbar ul a {
    color: #000;
  }

  .wpo-site-header #navbar ul a:hover,
  .wpo-site-header #navbar ul li.current a {
    color: #F74F22;
  }

  .wpo-site-header #navbar .navbar-nav {
    height: 100%;
    overflow: auto;
    padding-bottom: 60px;
  }

  .wpo-site-header #navbar .close-navbar {
    background-color: #fff;
    width: 40px;
    height: 40px;
    color: #000;
    border: 0;
    outline: none;
    position: absolute;
    left: -41px;
    top: 90px;
    z-index: 20;
  }

  .wpo-site-header #navbar .close-navbar .ti-close {
    position: relative;
    top: 1px;
  }

  .wpo-site-header .menu-close {
    display: block;
    z-index: 99;
    background: none;
    text-align: center;
    color: #fff;
    border: 0;
    text-align: center;
    margin-left: auto;
    margin-top: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #fff;
  }

  .wpo-site-header .slideInn {
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .wpo-site-header .navbar-toggler .first-angle,
  .wpo-site-header .navbar-toggler .last-angle {
    transition: all 0.3s;
  }

  .wpo-site-header .x-close .middle-angle {
    opacity: 0;
  }

  .wpo-site-header .x-close .first-angle {
    position: absolute;
    -webkit-transform: rotate(-44deg);
    top: 16px;
    left: 10px;
  }

  .wpo-site-header .x-close .last-angle {
    -webkit-transform: rotate(44deg);
    position: absolute;
    top: 16px;
    right: 10px;
  }
}

@media (max-width: 767px) {
  .wpo-site-header .navbar-header .navbar-brand {
    font-size: 24px;
  }

  .wpo-site-header #navbar .navbar-nav {
    margin: 0;
  }
}

.wpo-site-header .navbar-header .navbar-brand {
  display: block;
}

.wpo-site-header .navbar-header .navbar-brand img {
  max-width: 170px;
}

@media (max-width: 991px) {
  .wpo-site-header .navbar-collapse.collapse {
    display: none;
  }

  .wpo-site-header .navbar-collapse.collapse.in {
    display: block;
  }

  .wpo-site-header .navbar-header .collapse,
  .wpo-site-header .navbar-toggle {
    display: block;
  }

  .wpo-site-header .navbar-header {
    float: none;
  }

  .wpo-site-header .navbar-right {
    float: none;
  }

  .wpo-site-header .navbar-nav {
    float: none;
  }

  .wpo-site-header .navbar-nav>li {
    float: none;
  }
}

@media (max-width: 440px) {
  .wpo-site-header .navbar-header .navbar-brand img {
    max-width: 170px;
  }
}

@media (max-width: 370px) {
  .wpo-site-header .navbar-header .navbar-brand img {
    max-width: 140px;
  }
}

@media (max-width: 1500px) {
  .wpo-site-header #navbar>ul>li>a {
    padding: 30px 15px;
  }

  .wpo-site-header {
    padding: 0 10px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header {
    padding: 0;
  }
}

@media (max-width: 1400px) {
  .wpo-site-header #navbar>ul>li>a {
    padding: 30px 10px;
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .wpo-site-header #navbar>ul>li>a {
    padding: 30px 6px;
    font-size: 16px;
  }

  .wpo-site-header .header-right .theme-btn,
  .wpo-site-header .header-right .view-cart-btn {
    display: none;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar>ul>li>a {
    font-size: 15px;
  }
}

@media (max-width: 767px) {

  .header-right .theme-btn,
  .header-right .view-cart-btn {
    padding: 20px 12px;
  }

  .wpo-site-header .header-right .close-form {
    display: none;
  }
}

@media (max-width: 991px) {
  .wpo-site-header #navbar>ul>li>a {
    padding: 15px 30px;
  }
}

@media (max-width: 991px) {

  .wpo-site-header,
  .wpo-header-style-2 {
    z-index: 99999;
  }
}

.wpo-site-header .navigation.sticky-header {
  padding: 0 130px;
  background: #122F2A;
  border-radius: 0;
}

@media (max-width: 1700px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 0 50px;
  }
}

@media (max-width: 1400px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 0 20px;
  }
}

@media (max-width: 991px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .wpo-site-header .navigation.sticky-header {
    padding: 20px 10px;
  }
}

/* header-s2 */
.header-s2,
.header-s3 {
  position: relative;
  z-index: 999;
}

.topbar.s2,
.topbar.s3 {
  background: transparent;
  position: relative;
  z-index: 11;
}

.topbar.s2 .contact-info li span,
.topbar.s3 .contact-info li span {
  color: #fff;
}

.topbar.s2 .social-media,
.topbar.s3 .social-media {
  padding-left: 0px;
  margin-right: 5px;
  border-radius: 22px;
  background: rgba(217, 217, 217, 0.12);
  padding: 6px;
  padding-bottom: 2px;
  padding-left: 10px;
  display: flex;
}

@media (max-width:991px) {
  .topbar .social-media {
    margin-bottom: 15px;
  }
}

.topbar.s2 .social-media li a,
.topbar.s3 .social-media li a {
  padding: 0 8px;
  color: #fff;
}

.topbar.s2 .social-media li a:hover,
.topbar.s3 .social-media li a:hover {
  color: #FFB302;
}

.topbar.s2 .social-media li span,
.topbar.s3 .social-media li span {
  color: #fff;
}

.topbar.s2 .pryment-selector,
.topbar.s3 .pryment-selector {
  padding-right: 10px;
}

.topbar.s2 .pryment-selector select,
.topbar.s3 .pryment-selector select {
  color: #fff;
  font-family: "Nunito", sans-serif;
}

.topbar.s2 .pryment-selector::after,
.topbar.s3 .pryment-selector::after {
  color: #fff;
  right: 5px;
  font-size: 12px;
}

.topbar.s2 .language-selector,
.topbar.s3 .language-selector {
  color: #fff;
  font-family: "Nunito", sans-serif;
}

.topbar.s2 .language-selector .custom-options div,
.topbar.s3 .language-selector .custom-options div {
  color: #000;
}

.topbar.s2 .custom-arrow,
.topbar.s3 .custom-arrow {
  color: #fff;
  font-size: 12px;
  top: 4px;
}

.topbar.s2 .language-selector .custom-select img,
.topbar.s3 .language-selector .custom-select img {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.12);
  border-radius: 100px;
}

.header-s2 .wpo-site-header,
.header-s3 .wpo-site-header {
  padding: 0 215px;
}

@media (max-width: 1799px) {

  .header-s2 .wpo-site-header,
  .header-s3 .wpo-site-header {
    padding: 0 180px;
  }
}

@media (max-width: 1720px) {

  .header-s2 .wpo-site-header,
  .header-s3 .wpo-site-header {
    padding: 0 150px;
  }
}

@media (max-width: 1699px) {

  .header-s2 .wpo-site-header,
  .header-s3 .wpo-site-header {
    padding: 0 100px;
  }
}

@media (max-width: 1550px) {

  .header-s2 .wpo-site-header,
  .header-s3 .wpo-site-header {
    padding: 0 50px;
  }
}

@media (max-width: 1500px) {

  .header-s2 .wpo-site-header,
  .header-s3 .wpo-site-header {
    padding: 0 10px;
  }
}

.header-s2 .wpo-site-header .navbar-header,
.header-s3 .wpo-site-header .navbar-header {
  display: block;
}

.header-s2 .wpo-site-header #navbar>ul>li>a,
.header-s3 .wpo-site-header #navbar>ul>li>a {
  color: #061408;
}

@media screen and (min-width: 1400px) {

  .header-s2 .wpo-site-header #navbar>ul>li>a,
  .header-s3 .wpo-site-header #navbar>ul>li>a {
    padding: 35px 12px;
  }
}

@media screen and (max-width: 1399px) {

  .header-s2 .wpo-site-header #navbar>ul>li>a,
  .header-s3 .wpo-site-header #navbar>ul>li>a {
    padding: 30px 9px;
  }
}

@media screen and (max-width: 1199px) {

  .header-s2 .wpo-site-header #navbar>ul>li>a,
  .header-s3 .wpo-site-header #navbar>ul>li>a {
    padding: 25px 5px;
    font-size: 16px;
  }
}

@media (max-width: 991px) {

  .header-s2 .wpo-site-header #navbar>ul>li>a,
  .header-s3 .wpo-site-header #navbar>ul>li>a {
    padding: 15px 30px;
    color: #fff;
  }
}

.header-s2 .wpo-site-header .navigation,
.header-s3 .wpo-site-header .navigation {
  border-radius: 0;
  background: transparent;
  padding: 0 50px;
  padding-right: 25px;
}

.header-s2 .wpo-site-header .navigation.sticky-header {
  background: #fff;
}

@media (max-width: 1400px) {

  .header-s2 .wpo-site-header .navigation,
  .header-s3 .wpo-site-header .navigation {
    padding: 0 20px;
  }
}

@media (max-width: 991px) {

  .header-s2 .wpo-site-header .navigation,
  .header-s3 .wpo-site-header .navigation {
    padding: 8px 0;
  }
}

.header-s2 .wpo-site-header .navigation .nav-bg,
.header-s3 .wpo-site-header .navigation .nav-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: skewX(-15deg);
  background: #fff;
  border-radius: 16px;
}

@media (max-width: 991px) {

  .header-s2 .wpo-site-header .navigation .nav-bg,
  .header-s3 .wpo-site-header .navigation .nav-bg {
    background: #fff;
    transform: skewX(-7deg);
    border-radius: 5px;
  }
}

.header-s2 .wpo-site-header .header-right .close-form .theme-btn,
.header-s2 .wpo-site-header .header-right .close-form .view-cart-btn,
.header-s3 .wpo-site-header .header-right .close-form .theme-btn,
.header-s3 .wpo-site-header .header-right .close-form .view-cart-btn {
  text-transform: capitalize;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
}

@media (max-width: 1199px) {

  .header-s2 .wpo-site-header .header-right .close-form .theme-btn,
  .header-s2 .wpo-site-header .header-right .close-form .view-cart-btn,
  .header-s3 .wpo-site-header .header-right .close-form .theme-btn,
  .header-s3 .wpo-site-header .header-right .close-form .view-cart-btn {
    font-size: 12px;
    display: block;
  }
}

@media (max-width: 991px) {

  .header-s2 .wpo-site-header .header-right .close-form .theme-btn,
  .header-s2 .wpo-site-header .header-right .close-form .view-cart-btn,
  .header-s3 .wpo-site-header .header-right .close-form .theme-btn,
  .header-s3 .wpo-site-header .header-right .close-form .view-cart-btn {
    display: none;
  }
}

.header-s2 .wpo-site-header .header-right .search-toggle-btn,
.header-s3 .wpo-site-header .header-right .search-toggle-btn {
  background: #F2F5F9;
  color: #061408;
}

.header-s2 .wpo-site-header .header-right .cart-toggle-btn,
.header-s3 .wpo-site-header .header-right .cart-toggle-btn {
  color: #061408;
  line-height: 1px;
}

.header-s2 .wpo-site-header .header-right>div,
.header-s3 .wpo-site-header .header-right>div {
  margin-left: 20px;
  margin-top: 8px;
}

@media (max-width: 1199px) {

  .header-s2 .wpo-site-header .header-right>div,
  .header-s3 .wpo-site-header .header-right>div {
    margin-top: 0px;
  }
}

@media (max-width: 450px) {

  .header-s2 .wpo-site-header .header-right>div,
  .header-s3 .wpo-site-header .header-right>div {
    margin: 0;
    margin-right: 5px;
  }
}

.header-s2 .wpo-site-header .header-right>div:last-child::before,
.header-s3 .wpo-site-header .header-right>div:last-child::before {
  left: -95px;
  background: rgba(112, 116, 128, 0.08);
}

@media (max-width: 991px) {

  .header-s2 .wpo-site-header .header-right,
  .header-s3 .wpo-site-header .header-right {
    right: -27px;
  }
}

@media (max-width: 767px) {

  .header-s2 .wpo-site-header .header-right,
  .header-s3 .wpo-site-header .header-right {
    right: -20px;
  }
}

/* header-s3 */
.topbar.s3 {
  background: #268A66;
}

.topbar.s3 .contact-info li i {
  color: #fff;
}

.topbar.s3 .social-media {
  margin-right: 0;
  margin-left: 10px;
  background: transparent;
  padding: 0px;
  padding-bottom: 0px;
}

.header-s3 .wpo-site-header {
  padding: 0 255px;
  background: #fff;
}

@media (max-width: 1799px) {
  .header-s3 .wpo-site-header {
    padding: 0 200px;
  }
}

@media (max-width: 1700px) {
  .header-s3 .wpo-site-header {
    padding: 0 100px;
  }
}

@media (max-width: 1500px) {
  .header-s3 .wpo-site-header {
    padding: 0 10px;
  }
}

.header-s3 .wpo-site-header .sticky-header.sticky-on {
  padding: 0 255px;
}

@media (max-width: 1799px) {
  .header-s3 .wpo-site-header .sticky-header.sticky-on {
    padding: 0 200px;
  }
}

@media (max-width: 1700px) {
  .header-s3 .wpo-site-header .sticky-header.sticky-on {
    padding: 0 100px;
  }
}

@media (max-width: 1500px) {
  .header-s3 .wpo-site-header .sticky-header.sticky-on {
    padding: 0 10px;
  }
}

.header-s3 .wpo-site-header .navigation {
  padding: 0;
  background: #fff;
}

.header-s3 .wpo-site-header .navigation::before {
  display: none;
}

.header-s3 .wpo-site-header .header-right>div {
  margin: 0 10px;
}

.header-s3 .wpo-site-header .header-right>div:last-child {
  margin-right: 0;
}

.header-s3 .wpo-site-header .header-right>div:last-child::before {
  display: none;
}

.admin-bar .wpo-site-header .sticky-header.navigation {
  top: 32px;
}

@media (max-width: 991px) {
  .admin-bar .wpo-site-header .sticky-header.navigation {
    top: 46px;
  }
}

@media (max-width: 600px) {
  .admin-bar .wpo-site-header .sticky-header.navigation {
    top: 0;
  }
}

/*--------------------------------------------------------------
3. content
--------------------------------------------------------------*/
/*3.1 wpo-hero-slider*/
.wpo-hero-slider,
.static-hero,
.wpo-hero-slider-s2 {
  width: 100%;
  height: 830px;
  display: flex;
  position: relative;
  z-index: 1;
  margin-top: -40px;
}

@media (max-width: 1399px) {

  .wpo-hero-slider,
  .static-hero,
  .wpo-hero-slider-s2 {
    height: 700px;
  }
}

@media (max-width: 991px) {

  .wpo-hero-slider,
  .static-hero,
  .wpo-hero-slider-s2 {
    margin-top: 0px;
  }
}

@media (max-width: 767px) {

  .wpo-hero-slider,
  .static-hero,
  .wpo-hero-slider-s2 {
    height: 100%;
  }
}

.wpo-hero-slider .swiper-slide,
.static-hero .swiper-slide,
.wpo-hero-slider-s2 .swiper-slide {
  overflow: hidden;
}

.wpo-hero-slider .swiper-container,
.wpo-hero-slider .hero-container,
.static-hero .swiper-container,
.static-hero .hero-container,
.wpo-hero-slider-s2 .swiper-container,
.wpo-hero-slider-s2 .hero-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.wpo-hero-slider .slide-inner,
.wpo-hero-slider .hero-inner,
.static-hero .slide-inner,
.static-hero .hero-inner,
.wpo-hero-slider-s2 .slide-inner,
.wpo-hero-slider-s2 .hero-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.wpo-hero-slider .slide-inner .slide-content,
.wpo-hero-slider .hero-inner .slide-content,
.static-hero .slide-inner .slide-content,
.static-hero .hero-inner .slide-content,
.wpo-hero-slider-s2 .slide-inner .slide-content,
.wpo-hero-slider-s2 .hero-inner .slide-content {
  padding-top: 35px;
  padding-left: 240px;
  z-index: 11;
  position: relative;
}

@media (max-width: 1700px) {

  .wpo-hero-slider .slide-inner .slide-content,
  .wpo-hero-slider .hero-inner .slide-content,
  .static-hero .slide-inner .slide-content,
  .static-hero .hero-inner .slide-content,
  .wpo-hero-slider-s2 .slide-inner .slide-content,
  .wpo-hero-slider-s2 .hero-inner .slide-content {
    padding-left: 140px;
  }
}

@media (max-width: 1399px) {

  .wpo-hero-slider .slide-inner .slide-content,
  .wpo-hero-slider .hero-inner .slide-content,
  .static-hero .slide-inner .slide-content,
  .static-hero .hero-inner .slide-content,
  .wpo-hero-slider-s2 .slide-inner .slide-content,
  .wpo-hero-slider-s2 .hero-inner .slide-content {
    padding-left: 40px;
    padding-top: 0px;
  }
}

@media (max-width: 991px) {

  .wpo-hero-slider .slide-inner .slide-content,
  .wpo-hero-slider .hero-inner .slide-content,
  .static-hero .slide-inner .slide-content,
  .static-hero .hero-inner .slide-content,
  .wpo-hero-slider-s2 .slide-inner .slide-content,
  .wpo-hero-slider-s2 .hero-inner .slide-content {
    padding-bottom: 0;
    padding-left: 30px;
  }
}

@media (max-width: 767px) {

  .wpo-hero-slider .slide-inner .slide-content,
  .wpo-hero-slider .hero-inner .slide-content,
  .static-hero .slide-inner .slide-content,
  .static-hero .hero-inner .slide-content,
  .wpo-hero-slider-s2 .slide-inner .slide-content,
  .wpo-hero-slider-s2 .hero-inner .slide-content {
    padding-left: 0px;
    padding: 50px 0;
  }
}

.wpo-hero-slider .swiper-button-prev,
.wpo-hero-slider .swiper-button-next,
.static-hero .swiper-button-prev,
.static-hero .swiper-button-next,
.wpo-hero-slider-s2 .swiper-button-prev,
.wpo-hero-slider-s2 .swiper-button-next {
  background: transparent;
  width: 66px;
  height: 66px;
  line-height: 66px;
  border-radius: 66px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  text-align: center;
  transition: all 0.3s;
}

.wpo-hero-slider .swiper-button-prev:hover,
.wpo-hero-slider .swiper-button-next:hover,
.static-hero .swiper-button-prev:hover,
.static-hero .swiper-button-next:hover,
.wpo-hero-slider-s2 .swiper-button-prev:hover,
.wpo-hero-slider-s2 .swiper-button-next:hover {
  background: #F74F22;
}

@media (max-width: 767px) {

  .wpo-hero-slider .swiper-button-prev,
  .wpo-hero-slider .swiper-button-next,
  .static-hero .swiper-button-prev,
  .static-hero .swiper-button-next,
  .wpo-hero-slider-s2 .swiper-button-prev,
  .wpo-hero-slider-s2 .swiper-button-next {
    display: none;
  }
}

.wpo-hero-slider .swiper-button-prev,
.static-hero .swiper-button-prev,
.wpo-hero-slider-s2 .swiper-button-prev {
  right: 150px;
  left: auto;
  top: 45%;
}

@media (max-width: 1199px) {

  .wpo-hero-slider .swiper-button-prev,
  .static-hero .swiper-button-prev,
  .wpo-hero-slider-s2 .swiper-button-prev {
    top: 42%;
  }
}

.wpo-hero-slider .swiper-button-prev:before,
.static-hero .swiper-button-prev:before,
.wpo-hero-slider-s2 .swiper-button-prev:before {
  font-family: 'themify';
  content: "\e629";
  font-size: 20px;
  color: #fff;
}

.wpo-hero-slider .swiper-button-next,
.static-hero .swiper-button-next,
.wpo-hero-slider-s2 .swiper-button-next {
  right: 150px;
  top: 55%;
}

.wpo-hero-slider .swiper-button-next:before,
.static-hero .swiper-button-next:before,
.wpo-hero-slider-s2 .swiper-button-next:before {
  font-family: 'themify';
  content: "\e628";
  font-size: 20px;
  color: #fff;
}

@media (max-width: 991px) {

  .wpo-hero-slider .swiper-button-prev,
  .wpo-hero-slider .swiper-button-next,
  .static-hero .swiper-button-prev,
  .static-hero .swiper-button-next,
  .wpo-hero-slider-s2 .swiper-button-prev,
  .wpo-hero-slider-s2 .swiper-button-next {
    display: none;
  }
}

.wpo-hero-slider .swiper-pagination-bullet,
.static-hero .swiper-pagination-bullet,
.wpo-hero-slider-s2 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  text-align: center;
  line-height: 12px;
  font-size: 0;
  color: #000;
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 992px) {

  .wpo-hero-slider .swiper-pagination-bullet,
  .static-hero .swiper-pagination-bullet,
  .wpo-hero-slider-s2 .swiper-pagination-bullet {
    display: none;
  }
}

.wpo-hero-slider .swiper-pagination-bullet-active,
.static-hero .swiper-pagination-bullet-active,
.wpo-hero-slider-s2 .swiper-pagination-bullet-active {
  color: #fff;
  background: #fff;
  width: 12px;
  height: 12px;
  text-align: center;
  line-height: 12px;
}

.wpo-hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.wpo-hero-slider .swiper-pagination-custom,
.wpo-hero-slider .swiper-pagination-fraction,
.static-hero .swiper-container-horizontal>.swiper-pagination-bullets,
.static-hero .swiper-pagination-custom,
.static-hero .swiper-pagination-fraction,
.wpo-hero-slider-s2 .swiper-container-horizontal>.swiper-pagination-bullets,
.wpo-hero-slider-s2 .swiper-pagination-custom,
.wpo-hero-slider-s2 .swiper-pagination-fraction {
  bottom: 30px;
  text-align: center;
  width: 100%;
}

.wpo-hero-slider .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.static-hero .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.wpo-hero-slider-s2 .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

@media (max-width: 1199px) {

  .wpo-hero-slider,
  .static-hero,
  .wpo-hero-slider-s2 {
    height: 680px;
  }
}

@media (max-width: 991px) {

  .wpo-hero-slider,
  .static-hero,
  .wpo-hero-slider-s2 {
    height: 600px;
  }
}

@media (max-width: 767px) {

  .wpo-hero-slider,
  .static-hero,
  .wpo-hero-slider-s2 {
    height: 700px;
  }
}

.wpo-hero-slider .gradient-overlay,
.static-hero .gradient-overlay,
.wpo-hero-slider-s2 .gradient-overlay {
  background: linear-gradient(left, #061408 45%, transparent 65%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  opacity: 0.6;
}

.wpo-hero-slider .gradient-overlay+.container,
.static-hero .gradient-overlay+.container,
.wpo-hero-slider-s2 .gradient-overlay+.container {
  position: relative;
  z-index: 11;
}

.wpo-hero-slider .swiper-slide,
.static-hero .swiper-slide,
.wpo-hero-slider-s2 .swiper-slide {
  position: relative;
  z-index: 111;
}

.wpo-hero-slider .slide-title,
.static-hero .slide-title,
.wpo-hero-slider-s2 .slide-title {
  max-width: 712px;
}

@media (max-width: 1199px) {

  .wpo-hero-slider .slide-title,
  .static-hero .slide-title,
  .wpo-hero-slider-s2 .slide-title {
    max-width: 555px;
  }
}

.wpo-hero-slider .slide-title span,
.static-hero .slide-title span,
.wpo-hero-slider-s2 .slide-title span {
  color: #F74F22;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
  font-size: 20px;
  font-weight: 600;
}

.wpo-hero-slider .slide-sub-title,
.static-hero .slide-sub-title,
.wpo-hero-slider-s2 .slide-sub-title {
  max-width: 680px;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 575px) {

  .wpo-hero-slider .slide-sub-title,
  .static-hero .slide-sub-title,
  .wpo-hero-slider-s2 .slide-sub-title {
    margin-bottom: 10px;
  }
}

.wpo-hero-slider .slide-sub-title h2,
.static-hero .slide-sub-title h2,
.wpo-hero-slider-s2 .slide-sub-title h2 {
  margin-bottom: 40px;
  color: #fff;
  font-size: 80px;
  font-weight: 800;
  line-height: 83px;
  text-transform: capitalize;
}

@media (max-width: 1199px) {

  .wpo-hero-slider .slide-sub-title h2,
  .static-hero .slide-sub-title h2,
  .wpo-hero-slider-s2 .slide-sub-title h2 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {

  .wpo-hero-slider .slide-sub-title h2,
  .static-hero .slide-sub-title h2,
  .wpo-hero-slider-s2 .slide-sub-title h2 {
    font-size: 40px;
    line-height: 53px;
    margin-top: 0;
  }
}

.wpo-hero-slider .slide-sub-title h2 span,
.static-hero .slide-sub-title h2 span,
.wpo-hero-slider-s2 .slide-sub-title h2 span {
  font-weight: 500;
}

.wpo-hero-slider .slide-sub-title h2 .text,
.static-hero .slide-sub-title h2 .text,
.wpo-hero-slider-s2 .slide-sub-title h2 .text {
  color: #FBAD17;
  font-weight: 800;
}

.wpo-hero-slider .slide-btns,
.static-hero .slide-btns,
.wpo-hero-slider-s2 .slide-btns {
  display: flex;
  justify-content: space-between;
  max-width: 513px;
}

@media (max-width: 767px) {

  .wpo-hero-slider .slide-btns,
  .static-hero .slide-btns,
  .wpo-hero-slider-s2 .slide-btns {
    display: block;
  }
}

.wpo-hero-slider .slide-btns .theme-btn,
.wpo-hero-slider .slide-btns .view-cart-btn,
.static-hero .slide-btns .theme-btn,
.static-hero .slide-btns .view-cart-btn,
.wpo-hero-slider-s2 .slide-btns .theme-btn,
.wpo-hero-slider-s2 .slide-btns .view-cart-btn {
  border-radius: 45px;
  background: #F74F22;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-transform: capitalize;
}

.wpo-hero-slider .slide-btns .theme-btn::after,
.wpo-hero-slider .slide-btns .view-cart-btn::after,
.static-hero .slide-btns .theme-btn::after,
.static-hero .slide-btns .view-cart-btn::after,
.wpo-hero-slider-s2 .slide-btns .theme-btn::after,
.wpo-hero-slider-s2 .slide-btns .view-cart-btn::after {
  display: none;
}

.wpo-hero-slider .slide-btns .theme-btn:hover,
.wpo-hero-slider .slide-btns .view-cart-btn:hover,
.static-hero .slide-btns .theme-btn:hover,
.static-hero .slide-btns .view-cart-btn:hover,
.wpo-hero-slider-s2 .slide-btns .theme-btn:hover,
.wpo-hero-slider-s2 .slide-btns .view-cart-btn:hover {
  background: #18322E;
}

@media (max-width: 767px) {

  .wpo-hero-slider .slide-btns .theme-btn,
  .wpo-hero-slider .slide-btns .view-cart-btn,
  .static-hero .slide-btns .theme-btn,
  .static-hero .slide-btns .view-cart-btn,
  .wpo-hero-slider-s2 .slide-btns .theme-btn,
  .wpo-hero-slider-s2 .slide-btns .view-cart-btn {
    padding: 10px 25px;
  }
}

.wpo-hero-slider .call,
.static-hero .call,
.wpo-hero-slider-s2 .call {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

@media (max-width: 767px) {

  .wpo-hero-slider .call,
  .static-hero .call,
  .wpo-hero-slider-s2 .call {
    margin-left: 0px;
    margin-top: 20px;
  }
}

.wpo-hero-slider .call .icon,
.static-hero .call .icon,
.wpo-hero-slider-s2 .call .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  text-align: center;
  margin-right: 20px;
}

.wpo-hero-slider .call .icon i,
.static-hero .call .icon i,
.wpo-hero-slider-s2 .call .icon i {
  color: #fff;
  font-size: 15px;
}

.wpo-hero-slider .call .text h3,
.static-hero .call .text h3,
.wpo-hero-slider-s2 .call .text h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 5px;
}

.wpo-hero-slider .call .text span,
.static-hero .call .text span,
.wpo-hero-slider-s2 .call .text span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.wpo-hero-slider .bg-shape,
.static-hero .bg-shape,
.wpo-hero-slider-s2 .bg-shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

@media (max-width: 1199px) {

  .wpo-hero-slider .bg-shape,
  .static-hero .bg-shape,
  .wpo-hero-slider-s2 .bg-shape {
    width: 100%;
    height: 100%;
  }
}

.wpo-hero-slider .bg-shape::before,
.static-hero .bg-shape::before,
.wpo-hero-slider-s2 .bg-shape::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.9;
  background: #061408;
  display: none;
}

@media (max-width: 1199px) {

  .wpo-hero-slider .bg-shape::before,
  .static-hero .bg-shape::before,
  .wpo-hero-slider-s2 .bg-shape::before {
    display: block;
  }
}

@media (max-width: 1199px) {

  .wpo-hero-slider .bg-shape img,
  .static-hero .bg-shape img,
  .wpo-hero-slider-s2 .bg-shape img {
    display: none;
  }
}

.wpo-hero-slider .shape-1,
.static-hero .shape-1,
.wpo-hero-slider-s2 .shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

@media (max-width: 1399px) {

  .wpo-hero-slider .shape-1,
  .static-hero .shape-1,
  .wpo-hero-slider-s2 .shape-1 {
    display: none;
  }
}

.wpo-hero-slider .shape-2,
.static-hero .shape-2,
.wpo-hero-slider-s2 .shape-2 {
  position: absolute;
  left: 20px;
  top: 45%;
  z-index: 1;
  animation: leafAniamtion 12s ease-in infinite;
}

@media (max-width: 1399px) {

  .wpo-hero-slider .shape-2,
  .static-hero .shape-2,
  .wpo-hero-slider-s2 .shape-2 {
    display: none;
  }
}

.wpo-hero-slider .shape-3,
.static-hero .shape-3,
.wpo-hero-slider-s2 .shape-3 {
  position: absolute;
  left: 0px;
  bottom: -20px;
  z-index: 1;
  animation: leafAniamtion 14s ease-in infinite;
}

@media (max-width: 1399px) {

  .wpo-hero-slider .shape-3,
  .static-hero .shape-3,
  .wpo-hero-slider-s2 .shape-3 {
    display: none;
  }
}

.wpo-hero-slider .shape-4,
.static-hero .shape-4,
.wpo-hero-slider-s2 .shape-4 {
  position: absolute;
  left: 46%;
  bottom: 100px;
  z-index: 1;
  animation: zoom-in-zoom-out 3s ease infinite;
}

@media (max-width: 1399px) {

  .wpo-hero-slider .shape-4,
  .static-hero .shape-4,
  .wpo-hero-slider-s2 .shape-4 {
    display: none;
  }
}

.wpo-hero-slider .shape-5,
.static-hero .shape-5,
.wpo-hero-slider-s2 .shape-5 {
  position: absolute;
  top: 30%;
  left: 68%;
  z-index: 1;
  animation: zoom-in-zoom-out 5s ease infinite;
}

@media (max-width: 1399px) {

  .wpo-hero-slider .shape-5,
  .static-hero .shape-5,
  .wpo-hero-slider-s2 .shape-5 {
    display: none;
  }
}

.wpo-hero-slider-s2 {
  height: 960px;
  position: relative;
  margin-top: -150px;
}

@media (max-width: 991px) {
  .wpo-hero-slider-s2 {
    height: 700px;
  }
}

@media (max-width: 575px) {
  .wpo-hero-slider-s2 {
    margin-top: -165px;
  }
}

@media (max-width: 399px) {
  .wpo-hero-slider-s2 {
    margin-top: -188px;
  }
}

.wpo-hero-slider-s2 .swiper-slide .slide-inner::before {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: radial-gradient(382.46% 88.43% at 92.63% 41.85%, rgba(0, 7, 31, 0) 0%, rgba(9, 26, 36, 0.1) 64.18%, rgba(30, 105, 80, 0.21) 79.87%, rgba(16, 147, 124, 0.21) 100%);
}

.wpo-hero-slider-s2 .slide-inner .slide-content {
  padding-top: 70px;
  padding-left: 300px;
  position: relative;
}

@media (max-width: 1799px) {
  .wpo-hero-slider-s2 .slide-inner .slide-content {
    padding-left: 150px;
  }
}

@media (max-width: 1399px) {
  .wpo-hero-slider-s2 .slide-inner .slide-content {
    padding-left: 50px;
  }
}

@media (max-width: 991px) {
  .wpo-hero-slider-s2 .slide-inner .slide-content {
    padding-left: 0px;
    padding-top: 150px;
  }
}

@media (max-width: 767px) {
  .wpo-hero-slider-s2 .slide-inner .slide-content {
    padding-left: 0px;
    padding-top: 200px;
  }
}

.wpo-hero-slider-s2 .slide-inner .slide-content .shape {
  position: absolute;
  left: 13%;
  top: -21px;
  z-index: -1;
}

@media (max-width: 1799px) {
  .wpo-hero-slider-s2 .slide-inner .slide-content .shape {
    left: 6%;
  }
}

.wpo-hero-slider-s2 .slide-inner .slide-content .slide-title span img {
  margin-top: -10px;
}

.wpo-hero-slider-s2 .slide-inner .slide-content .slide-sub-title h2 {
  position: relative;
}

.wpo-hero-slider-s2 .slide-inner .slide-content .slide-sub-title h2::before {
  position: absolute;
  left: -20px;
  top: -2px;
  content: "";
  border-radius: 43.5px;
  background: rgba(255, 255, 255, 0.08);
  max-width: 575px;
  max-height: 87px;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .wpo-hero-slider-s2 .slide-inner .slide-content .slide-sub-title h2::before {
    display: none;
  }
}

.wpo-hero-slider-s2 .slide-inner .slide-content .slide-sub-title h2 span {
  font-style: italic;
}

.wpo-hero-slider-s2 .slide-inner .slide-content .slide-sub-title h2 .text {
  font-style: normal;
  position: relative;
}

.wpo-hero-slider-s2 .slide-inner .slide-content .slide-sub-title h2 .text::before {
  position: absolute;
  left: 0;
  bottom: -100px;
  content: "";
  height: 100%;
  width: 100%;
}

@media (max-width: 991px) {
  .wpo-hero-slider-s2 .slide-inner .slide-content .slide-sub-title h2 .text::before {
    bottom: -50px;
    display: none;
  }
}

.wpo-hero-slider-s2 .slide-inner .slide-content .slide-btns .theme-btn::after,
.wpo-hero-slider-s2 .slide-inner .slide-content .slide-btns .view-cart-btn::after {
  background: #268A66;
}

.wpo-hero-slider-s2 .shape {
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 991px) {
  .wpo-hero-slider-s2 .shape {
    display: none;
  }
}

.wpo-hero-slider-s2 .swiper-button-prev {
  right: 250px;
  left: auto;
  top: 45%;
}

@media (max-width: 1399px) {
  .wpo-hero-slider-s2 .swiper-button-prev {
    right: 100px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-slider-s2 .swiper-button-prev {
    top: 42%;
    right: 20px;
  }
}

.wpo-hero-slider-s2 .swiper-button-next {
  right: 250px;
  top: 55%;
}

@media (max-width: 1399px) {
  .wpo-hero-slider-s2 .swiper-button-next {
    right: 100px;
  }
}

@media (max-width: 1199px) {
  .wpo-hero-slider-s2 .swiper-button-next {
    right: 20px;
  }
}

/* static-hero */
.static-hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 895px;
}

@media (max-width: 991px) {
  .static-hero {
    height: 100%;
    padding: 100px 0;
  }
}

.static-hero .slide-title span img {
  margin-top: -10px;
}

.static-hero .slide-sub-title h2 {
  position: relative;
  color: #061408;
  font-size: 70px;
}

@media (max-width: 1399px) {
  .static-hero .slide-sub-title h2 {
    font-size: 60px;
    line-height: 70px;
  }
}

@media (max-width: 1199px) {
  .static-hero .slide-sub-title h2 {
    font-size: 50px;
    line-height: 64px;
  }
}

@media (max-width: 991px) {
  .static-hero .slide-sub-title h2 {
    font-size: 40px;
    line-height: 53px;
  }
}

.static-hero .slide-sub-title h2::before {
  display: none;
}

.static-hero .slide-sub-title h2 .text {
  color: #F74F22;
  position: relative;
}

.static-hero .slide-sub-title h2 .text::before {
  position: absolute;
  left: 0;
  bottom: -100px;
  content: "";
  height: 100%;
  width: 100%;
}

@media (max-width: 991px) {
  .static-hero .slide-sub-title h2 .text::before {
    bottom: -50px;
    display: none;
  }
}

.static-hero .slide-btns {
  margin-top: 60px;
}

@media (max-width: 1199px) {

  .static-hero .slide-btns .theme-btn,
  .static-hero .slide-btns .view-cart-btn {
    padding: 20px 46px;
  }
}

@media (max-width: 757px) {

  .static-hero .slide-btns .theme-btn,
  .static-hero .slide-btns .view-cart-btn {
    padding: 12px 18px;
  }
}

.static-hero .slide-btns .theme-btn::after,
.static-hero .slide-btns .view-cart-btn::after {
  background: #268A66;
}

.static-hero .slide-btns .call .icon {
  background: #18322E;
}

.static-hero .slide-btns .call .text h3 {
  color: #F74F22;
}

.static-hero .slide-btns .call .text span {
  color: #061408;
}

.static-hero .hero-image {
  max-width: 633px;
  max-height: 580px;
  position: relative;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media (max-width: 991px) {
  .static-hero .hero-image {
    margin-top: 50px;
  }
}

.static-hero .hero-image img {
  mix-blend-mode: lighten;
  height: 100%;
}

.static-hero .shape-1 {
  position: absolute;
  left: 40px;
  top: 100px;
  z-index: -1;
  animation: leafAniamtion 16s ease-in infinite;
}

@media (max-width: 1399px) {
  .static-hero .shape-1 {
    display: none;
  }
}

.static-hero .shape-2 {
  position: absolute;
  left: 40px;
  bottom: 100px;
  z-index: -1;
  top: auto;
}

@media (max-width: 1399px) {
  .static-hero .shape-2 {
    display: none;
  }
}

.static-hero .shape-3 {
  position: absolute;
  left: 50%;
  top: 20%;
}

@media (max-width: 1399px) {
  .static-hero .shape-3 {
    display: none;
  }
}

.static-hero .shape-4 {
  position: absolute;
  right: 100px;
  left: auto;
  bottom: 100px;
}

@media (max-width: 1399px) {
  .static-hero .shape-4 {
    display: none;
  }
}

@keyframes spineer {
  from {
    box-shadow: 0 0 0 0 rgba(59, 81, 125, 0.99);
  }

  to {
    box-shadow: 0 0 0 45px rgba(59, 81, 125, 0.01);
  }
}

/*--------------------------------------------------------------
4. wpo-footer
--------------------------------------------------------------*/
.wpo-site-footer,
.wpo-site-footer-s2,
.wpo-site-footer-s3 {
  position: relative;
  font-size: 16px;
  z-index: 1;
}

.wpo-site-footer::after,
.wpo-site-footer-s2::after,
.wpo-site-footer-s3::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -11;
  content: "";
  background: rgba(27, 35, 36, 0.97);
}

.wpo-site-footer ul,
.wpo-site-footer-s2 ul,
.wpo-site-footer-s3 ul {
  list-style: none;
  padding-left: 0;
}

.wpo-site-footer p,
.wpo-site-footer-s2 p,
.wpo-site-footer-s3 p {
  color: #fff;
}

.wpo-site-footer li,
.wpo-site-footer-s2 li,
.wpo-site-footer-s3 li {
  color: #fff;
}

.wpo-site-footer .container,
.wpo-site-footer-s2 .container,
.wpo-site-footer-s3 .container {
  position: relative;
}

.wpo-site-footer .wpo-upper-footer,
.wpo-site-footer-s2 .wpo-upper-footer,
.wpo-site-footer-s3 .wpo-upper-footer {
  padding: 90px 0;
  position: relative;
}

@media (max-width: 991px) {

  .wpo-site-footer .wpo-upper-footer,
  .wpo-site-footer-s2 .wpo-upper-footer,
  .wpo-site-footer-s3 .wpo-upper-footer {
    padding: 50px 0 0;
  }
}

@media (max-width: 767px) {

  .wpo-site-footer .wpo-upper-footer,
  .wpo-site-footer-s2 .wpo-upper-footer,
  .wpo-site-footer-s3 .wpo-upper-footer {
    padding: 60px 0 0;
  }
}

@media (max-width: 991px) {

  .wpo-site-footer .wpo-upper-footer .col,
  .wpo-site-footer-s2 .wpo-upper-footer .col,
  .wpo-site-footer-s3 .wpo-upper-footer .col {
    min-height: 235px;
    margin-bottom: 70px;
  }
}

@media (max-width: 767px) {

  .wpo-site-footer .wpo-upper-footer .col,
  .wpo-site-footer-s2 .wpo-upper-footer .col,
  .wpo-site-footer-s3 .wpo-upper-footer .col {
    min-height: auto;
    margin-bottom: 60px;
  }
}

.wpo-site-footer .widget-title,
.wpo-site-footer-s2 .widget-title,
.wpo-site-footer-s3 .widget-title {
  margin-bottom: 35px;
  text-transform: capitalize;
}

@media (max-width: 767px) {

  .wpo-site-footer .widget-title,
  .wpo-site-footer-s2 .widget-title,
  .wpo-site-footer-s3 .widget-title {
    margin-bottom: 20px;
  }
}

.wpo-site-footer .widget-title h3,
.wpo-site-footer-s2 .widget-title h3,
.wpo-site-footer-s3 .widget-title h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

.wpo-site-footer .about-widget,
.wpo-site-footer-s2 .about-widget,
.wpo-site-footer-s3 .about-widget {
  max-width: 280px;
}

.wpo-site-footer .about-widget .logo,
.wpo-site-footer-s2 .about-widget .logo,
.wpo-site-footer-s3 .about-widget .logo {
  max-width: 180px;
}

.wpo-site-footer .about-widget p,
.wpo-site-footer-s2 .about-widget p,
.wpo-site-footer-s3 .about-widget p {
  margin-bottom: 0.8em;
  line-height: 1.9em;
}

.wpo-site-footer .about-widget p:last-child,
.wpo-site-footer-s2 .about-widget p:last-child,
.wpo-site-footer-s3 .about-widget p:last-child {
  margin-bottom: 0;
}

.wpo-site-footer .about-widget ul li,
.wpo-site-footer-s2 .about-widget ul li,
.wpo-site-footer-s3 .about-widget ul li {
  display: flex;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  text-transform: capitalize;
}

@media (max-width: 1199px) {

  .wpo-site-footer .about-widget ul li,
  .wpo-site-footer-s2 .about-widget ul li,
  .wpo-site-footer-s3 .about-widget ul li {
    font-size: 15px;
    line-height: 30px;
  }
}

.wpo-site-footer .about-widget ul li .icon,
.wpo-site-footer-s2 .about-widget ul li .icon,
.wpo-site-footer-s3 .about-widget ul li .icon {
  padding-right: 10px;
}

@media (max-width: 1199px) {

  .wpo-site-footer .about-widget ul li .icon,
  .wpo-site-footer-s2 .about-widget ul li .icon,
  .wpo-site-footer-s3 .about-widget ul li .icon {
    padding-right: 5px;
  }
}

.wpo-site-footer .wpo-service-link-widget,
.wpo-site-footer-s2 .wpo-service-link-widget,
.wpo-site-footer-s3 .wpo-service-link-widget {
  padding-left: 70px;
}

.wpo-site-footer .link-widget,
.wpo-site-footer-s2 .link-widget,
.wpo-site-footer-s3 .link-widget {
  overflow: hidden;
}

@media screen and (min-width: 1200px) {

  .wpo-site-footer .link-widget,
  .wpo-site-footer-s2 .link-widget,
  .wpo-site-footer-s3 .link-widget {
    padding-left: 75px;
  }
}

@media (max-width: 1399px) {

  .wpo-site-footer .link-widget,
  .wpo-site-footer-s2 .link-widget,
  .wpo-site-footer-s3 .link-widget {
    padding-left: 20px;
  }
}

@media (max-width: 1199px) {

  .wpo-site-footer .link-widget,
  .wpo-site-footer-s2 .link-widget,
  .wpo-site-footer-s3 .link-widget {
    padding-left: 0;
  }
}

@media (max-width: 767px) {

  .wpo-site-footer .link-widget,
  .wpo-site-footer-s2 .link-widget,
  .wpo-site-footer-s3 .link-widget {
    max-width: 350px;
  }
}

.wpo-site-footer .link-widget ul li,
.wpo-site-footer-s2 .link-widget ul li,
.wpo-site-footer-s3 .link-widget ul li {
  position: relative;
}

.wpo-site-footer .link-widget ul li a,
.wpo-site-footer-s2 .link-widget ul li a,
.wpo-site-footer-s3 .link-widget ul li a {
  color: #fff;
  font-size: 15px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s;
}

.wpo-site-footer .link-widget ul li a::before,
.wpo-site-footer-s2 .link-widget ul li a::before,
.wpo-site-footer-s3 .link-widget ul li a::before {
  position: absolute;
  left: -20px;
  top: 0;
  content: "\e649";
  font-family: 'themify';
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.wpo-site-footer .link-widget ul li a:hover,
.wpo-site-footer-s2 .link-widget ul li a:hover,
.wpo-site-footer-s3 .link-widget ul li a:hover {
  color: #F74F22;
}

.wpo-site-footer .link-widget ul li a:hover::before,
.wpo-site-footer-s2 .link-widget ul li a:hover::before,
.wpo-site-footer-s3 .link-widget ul li a:hover::before {
  opacity: 1;
  visibility: visible;
}

.wpo-site-footer .link-widget ul li+li,
.wpo-site-footer-s2 .link-widget ul li+li,
.wpo-site-footer-s3 .link-widget ul li+li {
  margin-top: 20px;
}

.wpo-site-footer .locations-widget ul li,
.wpo-site-footer-s2 .locations-widget ul li,
.wpo-site-footer-s3 .locations-widget ul li {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.54px;
  margin-bottom: 20px;
}

.wpo-site-footer .locations-widget ul li:nth-child(2),
.wpo-site-footer-s2 .locations-widget ul li:nth-child(2),
.wpo-site-footer-s3 .locations-widget ul li:nth-child(2) {
  color: #F74F22;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.wpo-site-footer .locations-widget ul li:nth-child(3),
.wpo-site-footer-s2 .locations-widget ul li:nth-child(3),
.wpo-site-footer-s3 .locations-widget ul li:nth-child(3) {
  margin-bottom: 10px;
}

.wpo-site-footer .wpo-lower-footer,
.wpo-site-footer-s2 .wpo-lower-footer,
.wpo-site-footer-s3 .wpo-lower-footer {
  text-align: center;
  position: relative;
}

.wpo-site-footer .wpo-lower-footer .row,
.wpo-site-footer-s2 .wpo-lower-footer .row,
.wpo-site-footer-s3 .wpo-lower-footer .row {
  padding: 30px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wpo-site-footer .wpo-lower-footer .copyright,
.wpo-site-footer-s2 .wpo-lower-footer .copyright,
.wpo-site-footer-s3 .wpo-lower-footer .copyright {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.wpo-site-footer .wpo-lower-footer .copyright a,
.wpo-site-footer-s2 .wpo-lower-footer .copyright a,
.wpo-site-footer-s3 .wpo-lower-footer .copyright a {
  color: #F74F22;
  text-decoration: none;
}

@media (max-width: 991px) {

  .wpo-site-footer .wpo-lower-footer .copyright,
  .wpo-site-footer-s2 .wpo-lower-footer .copyright,
  .wpo-site-footer-s3 .wpo-lower-footer .copyright {
    float: none;
    display: block;
  }
}

.wpo-site-footer .wpo-lower-footer p {
  margin-bottom: 0;
}

.wpo-site-footer .social-icons {
  margin-top: 30px;
}

.wpo-site-footer .social-icons ul {
  padding-left: 0;
  display: flex;
}

.wpo-site-footer .social-icons ul li {
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}

.wpo-site-footer .social-icons ul li a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: rgb(39 49 50);
  border-radius: 100px;
  display: block;
  text-align: center;
  border: 1px solid #38484a;
}

.wpo-site-footer .social-icons ul li a:hover {
  color: #FF7236;
}

.wpo-site-footer .footer-socialicon,
.wpo-site-footer-s2 .footer-socialicon,
.wpo-site-footer-s3 .footer-socialicon {
  border-bottom: 1px solid #1E4A57;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {

  .wpo-site-footer .footer-socialicon,
  .wpo-site-footer-s2 .footer-socialicon,
  .wpo-site-footer-s3 .footer-socialicon {
    margin-bottom: 0px;
  }
}

@media (max-width: 991px) {

  .wpo-site-footer .footer-socialicon,
  .wpo-site-footer-s2 .footer-socialicon,
  .wpo-site-footer-s3 .footer-socialicon {
    border: 1px solid transparent;
  }
}

.wpo-site-footer .footer-socialicon ul,
.wpo-site-footer-s2 .footer-socialicon ul,
.wpo-site-footer-s3 .footer-socialicon ul {
  display: flex;
  justify-content: center;
}

@media (max-width: 991px) {

  .wpo-site-footer .footer-socialicon ul,
  .wpo-site-footer-s2 .footer-socialicon ul,
  .wpo-site-footer-s3 .footer-socialicon ul {
    flex-wrap: wrap;
  }
}

.wpo-site-footer .footer-socialicon ul li,
.wpo-site-footer-s2 .footer-socialicon ul li,
.wpo-site-footer-s3 .footer-socialicon ul li {
  max-width: 325px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  border: 1px solid #1E4A57;
  border-bottom: 0;
}

@media (max-width: 991px) {

  .wpo-site-footer .footer-socialicon ul li,
  .wpo-site-footer-s2 .footer-socialicon ul li,
  .wpo-site-footer-s3 .footer-socialicon ul li {
    flex-basis: 30%;
    border: 1px solid #1E4A57;
  }
}

@media (max-width: 575px) {

  .wpo-site-footer .footer-socialicon ul li,
  .wpo-site-footer-s2 .footer-socialicon ul li,
  .wpo-site-footer-s3 .footer-socialicon ul li {
    flex-basis: 50%;
  }
}

@media (max-width: 450px) {

  .wpo-site-footer .footer-socialicon ul li,
  .wpo-site-footer-s2 .footer-socialicon ul li,
  .wpo-site-footer-s3 .footer-socialicon ul li {
    flex-basis: 100%;
  }
}

.wpo-site-footer .footer-socialicon ul li i,
.wpo-site-footer-s2 .footer-socialicon ul li i,
.wpo-site-footer-s3 .footer-socialicon ul li i {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
}

.wpo-site-footer .footer-socialicon ul li span,
.wpo-site-footer-s2 .footer-socialicon ul li span,
.wpo-site-footer-s3 .footer-socialicon ul li span {
  color: rgba(255, 255, 255, 0.53);
  font-size: 20px;
  font-weight: 400;
  line-height: 49px;
  text-transform: lowercase;
  padding-left: 20px;
}

.wpo-site-footer .footer-socialicon ul li:last-child,
.wpo-site-footer-s2 .footer-socialicon ul li:last-child,
.wpo-site-footer-s3 .footer-socialicon ul li:last-child {
  border-right: 1px solid transparent;
}

@media (max-width: 991px) {

  .wpo-site-footer .footer-socialicon ul li:last-child,
  .wpo-site-footer-s2 .footer-socialicon ul li:last-child,
  .wpo-site-footer-s3 .footer-socialicon ul li:last-child {
    border-right: 1px solid #1E4A57;
  }
}

.wpo-site-footer .footer-socialicon ul li:first-child,
.wpo-site-footer-s2 .footer-socialicon ul li:first-child,
.wpo-site-footer-s3 .footer-socialicon ul li:first-child {
  border-left: 1px solid transparent;
}

@media (max-width: 991px) {

  .wpo-site-footer .footer-socialicon ul li:first-child,
  .wpo-site-footer-s2 .footer-socialicon ul li:first-child,
  .wpo-site-footer-s3 .footer-socialicon ul li:first-child {
    border-left: 1px solid #1E4A57;
  }
}

.wpo-site-footer .shape-right,
.wpo-site-footer-s2 .shape-right,
.wpo-site-footer-s3 .shape-right {
  position: absolute;
  right: 0;
  bottom: 50px;
  z-index: -11;
}

.wpo-site-footer .newsletter-s2 .form-fild,
.wpo-site-footer-s2 .newsletter-s2 .form-fild,
.wpo-site-footer-s3 .newsletter-s2 .form-fild {
  margin-top: 35px;
  position: relative;
  border-radius: 8px;
  background: #FFF;
}

.wpo-site-footer .newsletter-s2 .form-fild .fild,
.wpo-site-footer-s2 .newsletter-s2 .form-fild .fild,
.wpo-site-footer-s3 .newsletter-s2 .form-fild .fild {
  color: #B4B4B4;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  position: relative;
  background: transparent;
  border: transparent;
  padding: 15px 60px;
  padding-left: 20px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {

  .wpo-site-footer .newsletter-s2 .form-fild .fild,
  .wpo-site-footer-s2 .newsletter-s2 .form-fild .fild,
  .wpo-site-footer-s3 .newsletter-s2 .form-fild .fild {
    padding: 18px 50px;
    padding-left: 20px;
  }
}

.wpo-site-footer .newsletter-s2 .form-fild .fild:focus-visible,
.wpo-site-footer-s2 .newsletter-s2 .form-fild .fild:focus-visible,
.wpo-site-footer-s3 .newsletter-s2 .form-fild .fild:focus-visible {
  outline: -webkit-focus-ring-color auto transparent;
  outline: 0;
}

.wpo-site-footer .newsletter-s2 .form-fild .fild::before,
.wpo-site-footer-s2 .newsletter-s2 .form-fild .fild::before,
.wpo-site-footer-s3 .newsletter-s2 .form-fild .fild::before {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.wpo-site-footer .newsletter-s2 .form-fild button,
.wpo-site-footer-s2 .newsletter-s2 .form-fild button,
.wpo-site-footer-s3 .newsletter-s2 .form-fild button {
  position: absolute;
  right: 8px;
  top: 5px;
  text-align: center;
  color: #fff;
  display: block;
  background: #F74F22;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  width: 49px;
  height: 46px;
}

.wpo-site-footer .newsletter-s2 .form-fild button i::before,
.wpo-site-footer-s2 .newsletter-s2 .form-fild button i::before,
.wpo-site-footer-s3 .newsletter-s2 .form-fild button i::before {
  line-height: 25px;
  font-size: 14px;
  transform: rotate(-50deg);
}

.wpo-site-footer .shape,
.wpo-site-footer-s2 .shape,
.wpo-site-footer-s3 .shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  animation: leafAniamtion 20s ease-in infinite;
}

@media (max-width: 1199px) {

  .wpo-site-footer .shape,
  .wpo-site-footer-s2 .shape,
  .wpo-site-footer-s3 .shape {
    display: none;
  }
}

.wpo-site-footer .shape1,
.wpo-site-footer-s2 .shape1,
.wpo-site-footer-s3 .shape1 {
  position: absolute;
  left: 50px;
  bottom: 0;
  z-index: -1;
  animation: leafAniamtion 12s ease-in infinite;
}

@media (max-width: 1199px) {

  .wpo-site-footer .shape1,
  .wpo-site-footer-s2 .shape1,
  .wpo-site-footer-s3 .shape1 {
    display: none;
  }
}

.wpo-site-footer .shape2,
.wpo-site-footer-s2 .shape2,
.wpo-site-footer-s3 .shape2 {
  position: absolute;
  right: 120px;
  top: 50px;
  z-index: -1;
}

@media (max-width: 1199px) {

  .wpo-site-footer .shape2,
  .wpo-site-footer-s2 .shape2,
  .wpo-site-footer-s3 .shape2 {
    display: none;
  }
}

.wpo-site-footer .shape3,
.wpo-site-footer-s2 .shape3,
.wpo-site-footer-s3 .shape3 {
  position: absolute;
  right: 120px;
  bottom: 0;
  z-index: -1;
  animation: leafAniamtion 12s ease-in infinite;
}

@media (max-width: 1199px) {

  .wpo-site-footer .shape3,
  .wpo-site-footer-s2 .shape3,
  .wpo-site-footer-s3 .shape3 {
    display: none;
  }
}

.wpo-site-footer-s2::after {
  background: rgba(27, 35, 36, 0.95);
}

.wpo-site-footer-s2 .wpo-upper-footer {
  padding-top: 250px;
}

@media (max-width: 991px) {
  .wpo-site-footer-s2 .wpo-upper-footer {
    padding: 50px 0 0;
  }
}

@media (max-width: 767px) {
  .wpo-site-footer-s2 .wpo-upper-footer {
    padding: 60px 0 0;
  }
}

.wpo-site-footer-s2 .address-widget h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 40px;
}

.wpo-site-footer-s2 .address-widget ul li {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  display: block;
}

.wpo-site-footer-s2 .newsletter {
  margin-left: -20px;
  max-width: 333px;
  padding: 35px 30px 100px 30px;
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 1399px) {
  .wpo-site-footer-s2 .newsletter {
    padding: 35px 20px 100px 20px;
  }
}

@media (max-width: 1199px) {
  .wpo-site-footer-s2 .newsletter {
    padding: 35px 20px 50px 20px;
  }
}

@media (max-width: 991px) {
  .wpo-site-footer-s2 .newsletter {
    margin-left: 0px;
  }
}

.wpo-site-footer-s2 .newsletter .form-fild {
  position: relative;
}

.wpo-site-footer-s2 .newsletter .form-fild .fild {
  color: #B4B4B4;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  position: relative;
  background: transparent;
  border: transparent;
  padding-top: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(237, 237, 237, 0.3);
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.wpo-site-footer-s2 .newsletter .form-fild .fild:focus-visible {
  outline: -webkit-focus-ring-color auto transparent;
  outline: 0;
}

.wpo-site-footer-s2 .newsletter .form-fild button {
  position: absolute;
  right: 0;
  top: 10px;
  line-height: 25px;
  font-size: 20px;
  text-align: center;
  color: #FF7940;
  display: block;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.wpo-site-footer-s2 .newsletter .form-fild button i::before {
  line-height: 25px;
  font-size: 25px;
}

.wpo-site-footer-s2 .newsletter ::-webkit-input-placeholder {
  color: #B4B4B4;
}

.wpo-site-footer-s2 .newsletter ::-moz-placeholder {
  color: #B4B4B4;
}

.wpo-site-footer-s2 .newsletter :-ms-input-placeholder {
  color: #B4B4B4;
}

.wpo-site-footer-s2 .newsletter :-moz-placeholder {
  color: #B4B4B4;
}

.wpo-site-footer-s2 .newsletter .terms {
  margin-top: 30px;
}

.wpo-site-footer-s2 .newsletter .terms input[type=checkbox] {
  position: relative;
  cursor: pointer;
}

.wpo-site-footer-s2 .newsletter .terms input[type=checkbox]:checked:before {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  top: -3px;
  width: 23px;
  height: 23px;
  background-color: #fff;
  transition: all 0.2s linear;
  border-radius: 100px;
}

.wpo-site-footer-s2 .newsletter .terms input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  top: -3px;
  width: 23px;
  height: 23px;
  background-color: #fff;
  border-radius: 100px;
}

.wpo-site-footer-s2 .newsletter .terms input[type=checkbox]:after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border: solid #fff;
  border-width: 0 0px 0px 0;
  transform: rotate(180deg);
  position: absolute;
  top: 2px;
  left: 5px;
  transition: all 0.2s linear;
}

.wpo-site-footer-s2 .newsletter .terms input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  border: solid #F74F22;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  top: 2px;
  left: 5px;
}

.wpo-site-footer-s2 .newsletter .terms label {
  margin-bottom: 0;
  margin-left: 10px;
  color: #B4B4B4;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
}

@media (max-width: 1399px) {
  .wpo-site-footer-s2 .newsletter .terms label {
    margin-left: 5px;
    font-size: 13px;
  }
}

.wpo-site-footer-s2 .newsletter .terms label a {
  color: #F74F22;
}

.wpo-site-footer-s2 .wpo-lower-footer .copyright {
  display: block;
}

@media (max-width: 991px) {
  .wpo-site-footer-s2 .wpo-lower-footer .copyright {
    margin: 20px 0;
  }
}

.wpo-site-footer-s2 .wpo-lower-footer .logo {
  text-align: left;
}

@media (max-width: 991px) {
  .wpo-site-footer-s2 .wpo-lower-footer .logo {
    text-align: center;
  }
}

.wpo-site-footer-s2 .wpo-lower-footer ul {
  text-align: right;
}

@media (max-width: 1199px) {
  .wpo-site-footer-s2 .wpo-lower-footer ul {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .wpo-site-footer-s2 .wpo-lower-footer ul {
    text-align: center;
  }
}

.wpo-site-footer-s2 .wpo-lower-footer ul li {
  display: inline-block;
  padding: 0 4px;
}

@media (max-width: 1199px) {
  .wpo-site-footer-s2 .wpo-lower-footer ul li {
    padding: 0 1px;
  }
}

.wpo-site-footer-s2 .wpo-lower-footer ul li a img {
  border-radius: 4px;
}

.wpo-site-footer-s2 .shape {
  position: absolute;
  left: 100px;
  top: 40%;
  animation: zoom-in-zoom-out 2s ease infinite;
}

@media (max-width: 1399px) {
  .wpo-site-footer-s2 .shape {
    display: none;
  }
}

.wpo-site-footer-s2 .shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  top: auto;
}

@media (max-width: 1399px) {
  .wpo-site-footer-s2 .shape2 {
    display: none;
  }
}

.wpo-site-footer-s2 .shape3 {
  position: absolute;
  right: 50px;
  bottom: 100px;
  animation: leafAniamtion 12s ease-in infinite;
}

@media (max-width: 1399px) {
  .wpo-site-footer-s2 .shape3 {
    display: none;
  }
}

.wpo-site-footer-s3 {
  padding-top: 50px;
  background: #1B2324;
}

.wpo-site-footer-s3 .about-widget .logo {
  margin-bottom: 15px;
  display: block;
}

.wpo-site-footer-s3 .about-widget p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.wpo-site-footer-s3 .about-widget span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
  margin-bottom: 10px;
  display: block;
}

.wpo-site-footer-s3 .about-widget span i {
  color: #268A66;
  padding-right: 10px;
}

.wpo-site-footer-s3 .newsletter-s2 .itme {
  display: flex;
  align-items: center;
}

.wpo-site-footer-s3 .newsletter-s2 .itme .icon {
  border-radius: 42px;
  background: rgba(217, 217, 217, 0.06);
  width: 86px;
  height: 86px;
  line-height: 85px;
  color: #fff;
  font-size: 35px;
  text-align: center;
}

@media (max-width: 1199px) {
  .wpo-site-footer-s3 .newsletter-s2 .itme .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
}

.wpo-site-footer-s3 .newsletter-s2 .itme .text {
  width: calc(100% - 100px);
  padding-left: 30px;
}

@media (max-width: 1399px) {
  .wpo-site-footer-s3 .newsletter-s2 .itme .text {
    padding-left: 10px;
  }
}

@media (max-width: 1199px) {
  .wpo-site-footer-s3 .newsletter-s2 .itme .text {
    width: calc(100% - 50px);
  }
}

.wpo-site-footer-s3 .newsletter-s2 .itme .text h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}

.wpo-site-footer-s3 .newsletter-s2 .itme .text span {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  display: block;
  margin-bottom: 5px;
}

.wpo-site-footer-s3 .newsletter-s2 .form-fild {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.wpo-site-footer-s3 .newsletter-s2 .form-fild .fild {
  color: #B4B4B4;
  font-size: 16px;
}

@media (max-width: 1199px) {
  .wpo-site-footer-s3 .newsletter-s2 .form-fild .fild {
    padding: 18px 50px;
    padding-left: 20px;
  }
}

.wpo-site-footer-s3 .newsletter-s2 .form-fild .fild:focus-visible {
  outline: -webkit-focus-ring-color auto transparent;
  outline: 0;
}

.wpo-site-footer-s3 .newsletter-s2 .form-fild .fild::before {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.wpo-site-footer-s3 .newsletter-s2 .form-fild button {
  border-radius: 9px;
  line-height: 25px;
  font-size: 14px;
  width: 105px;
}

@media (max-width: 1199px) {
  .wpo-site-footer-s3 .newsletter-s2 .form-fild button {
    font-size: 13px;
    width: 80px;
    top: 8px;
  }
}

.wpo-site-footer-s3 .shape2 {
  top: auto;
  bottom: 50px;
}

.wpo-site-footer-s3 .wpo-lower-footer .copyright {
  text-align: left;
  display: block;
}

@media (max-width: 991px) {
  .wpo-site-footer-s3 .wpo-lower-footer .copyright {
    text-align: center;
  }
}

.wpo-site-footer-s3 .wpo-lower-footer .links {
  text-align: right;
}

@media (max-width: 991px) {
  .wpo-site-footer-s3 .wpo-lower-footer .links {
    text-align: center;
    margin-top: 20px;
  }
}

.wpo-site-footer-s3 .wpo-lower-footer .links li {
  display: inline-block;
}

.wpo-site-footer-s3 .wpo-lower-footer .links li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 35px;
  background: rgba(251, 251, 253, 0.08);
  text-align: center;
  color: #fff;
  font-size: 16px;
  display: block;
  margin: 0 8px;
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -200px;
  z-index: 1111;
  opacity: 0;
  transition: all 0.7s;
}

.sticky-on {
  opacity: 1;
  top: 0;
}

/*3.2 partners */
.partners-section ul,
.partners-section-s3 ul {
  border-bottom: 1px solid rgba(217, 217, 217, 0.43);
  padding-left: 0;
}

.partners-section ul li,
.partners-section-s3 ul li {
  display: flex;
  align-items: center;
  height: 150px;
  justify-content: center;
  border-left: 1px solid rgba(217, 217, 217, 0.43);
}

@media (max-width: 757px) {

  .partners-section ul li,
  .partners-section-s3 ul li {
    height: 120px;
  }
}

.partners-section ul li img,
.partners-section-s3 ul li img {
  width: auto;
  margin: 0 auto;
}

.partners-section ul .slick-slide,
.partners-section-s3 ul .slick-slide {
  display: flex;
}

/* 3.3 funfact */
.funfact-section {
  position: relative;
}

.funfact-section .content {
  margin-right: 85px;
}

@media (max-width: 1399px) {
  .funfact-section .content {
    margin-right: 0px;
  }
}

.funfact-section .content h2 {
  color: #F74F22;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.funfact-section .content h3 {
  color: #061408;
  font-size: 55px;
  font-weight: 800;
  line-height: 61px;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .funfact-section .content h3 {
    font-size: 40px;
    line-height: 45px;
  }
}

.funfact-section .content h3 span {
  color: #FBAD17;
}

.funfact-section .content p {
  margin-top: 40px;
  margin-bottom: 40px;
  color: #535353;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  border-left: 1px solid #F74F22;
  padding-left: 10px;
}

.funfact-section .content a {
  display: flex;
  align-items: center;
}

.funfact-section .content a i {
  width: 58px;
  height: 58px;
  line-height: 58px;
  background: #F74F22;
  border-radius: 100px;
  color: #fff;
  display: block;
  font-size: 25px;
  text-align: center;
}

.funfact-section .content a span {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16px;
  font-family: "Nunito", sans-serif;
  padding-left: 15px;
}

@media (max-width: 991px) {
  .funfact-section .funfact {
    margin-top: 50px;
  }
}

.funfact-section .funfact ul {
  display: flex;
  flex-wrap: wrap;
}

.funfact-section .funfact ul li {
  list-style: none;
  width: 50%;
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  .funfact-section .funfact ul li {
    padding: 0 10px;
  }
}

@media (max-width: 575px) {
  .funfact-section .funfact ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}

.funfact-section .funfact ul li .count {
  border-radius: 100px;
  background: linear-gradient(107deg, rgba(247, 79, 34, 0.12) 38.02%, rgba(247, 79, 34, 0) 89.08%);
  margin-bottom: 20px;
}

.funfact-section .funfact ul li .count h3 {
  color: #F9272B;
  text-align: center;
  font-size: 46px;
  font-weight: 800;
  line-height: 48px;
  letter-spacing: -0.92px;
  margin-bottom: 0;
  padding: 15px;
  padding-bottom: 10px;
}

@media (max-width: 1199px) {
  .funfact-section .funfact ul li .count h3 {
    font-size: 35px;
  }
}

.funfact-section .funfact ul li .count h3 span {
  font-family: "Nunito", sans-serif;
  color: #F9272B;
  font-size: 46px;
  font-weight: 800;
  line-height: 48px;
  letter-spacing: -0.92px;
}

@media (max-width: 1199px) {
  .funfact-section .funfact ul li .count h3 span {
    font-size: 35px;
  }
}

.funfact-section .funfact ul li span {
  color: #0D1224;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.funfact-section .funfact ul li:nth-child(2) .count {
  background: linear-gradient(8deg, rgba(247, 79, 34, 0.14) 15.55%, rgba(247, 79, 34, 0) 86.81%);
}

.funfact-section .funfact ul li:nth-child(2) .count h3 {
  color: #F39612;
}

.funfact-section .funfact ul li:nth-child(2) .count h3 span {
  color: #F39612;
}

.funfact-section .funfact ul li:nth-child(3) {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .funfact-section .funfact ul li:nth-child(3) {
    margin-bottom: 30px;
  }
}

.funfact-section .funfact ul li:nth-child(3) .count {
  background: linear-gradient(189deg, rgba(247, 79, 34, 0.14) 15.55%, rgba(247, 79, 34, 0) 86.81%);
}

.funfact-section .funfact ul li:nth-child(3) .count h3 {
  color: #F74F22;
}

.funfact-section .funfact ul li:nth-child(3) .count h3 span {
  color: #F74F22;
}

.funfact-section .funfact ul li:nth-child(4) {
  margin-bottom: 0;
}

.funfact-section .funfact ul li:nth-child(4) .count {
  background: linear-gradient(180deg, rgba(247, 79, 34, 0.14) 15.55%, rgba(247, 79, 34, 0) 86.81%);
}

.funfact-section .funfact ul li:nth-child(4) .count h3 {
  color: #3CCFB4;
}

.funfact-section .funfact ul li:nth-child(4) .count h3 span {
  color: #3CCFB4;
}

.funfact-section .shape {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}

@media (max-width: 1699px) {
  .funfact-section .shape {
    top: auto;
    bottom: 0;
  }
}

@media (max-width: 991px) {
  .funfact-section .shape {
    display: none;
  }
}

/*3.4 about */
.about-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-section .about-content h2 {
  color: #F74F22;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-section .about-content h3 {
  color: #061408;
  font-size: 55px;
  font-weight: 800;
  line-height: 61px;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .about-section .about-content h3 {
    font-size: 40px;
    line-height: 45px;
  }
}

.about-section .about-content h3 span {
  color: #FBAD17;
}

.about-section .about-content p {
  margin-top: 20px;
  margin-bottom: 40px;
  color: #535353;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  border-left: 1px solid #F74F22;
  padding-left: 10px;
  max-width: 600px;
}

.about-section .inner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 575px) {
  .about-section .inner-content {
    flex-wrap: wrap;
  }
}

.about-section .inner-content .inner-item {
  display: flex;
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .about-section .inner-content .inner-item {
    margin-bottom: 10px;
  }
}

.about-section .inner-content .inner-item .icon {
  font-size: 45px;
  color: #F74F22;
}

.about-section .inner-content .inner-item .content {
  margin-left: 20px;
}

.about-section .inner-content .inner-item .content h4 {
  color: #000;
  font-size: 18px;
  font-weight: 800;
  text-transform: capitalize;
  margin-top: 0;
}

.about-section .inner-content .inner-item .content span {
  color: #535353;
  font-size: 16px;
  font-weight: 400;
  line-height: 30.8px;
}

.about-section ul {
  list-style: none;
  padding-left: 0;
}

.about-section ul li {
  position: relative;
  color: #061408;
  font-size: 16px;
  font-weight: 500;
  line-height: 33px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.about-section ul li a {
  text-decoration: underline;
  color: #061408;
}

.about-section ul li i {
  width: 17px;
  height: 17px;
  border-radius: 50px;
  background: #F74F22;
  color: #fff;
  font-size: 13px;
  line-height: 18px;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}

.about-section .about-btn {
  margin-top: 40px;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .about-section .about-btn {
    flex-wrap: wrap;
  }
}

.about-section .about-btn .theme-btn,
.about-section .about-btn .view-cart-btn {
  padding: 19px 70px;
}

@media (max-width: 767px) {

  .about-section .about-btn .theme-btn,
  .about-section .about-btn .view-cart-btn {
    padding: 10px 30px;
  }
}

.about-section .ceo {
  display: flex;
  align-items: center;
  margin-left: 50px;
}

@media (max-width: 575px) {
  .about-section .ceo {
    margin-left: 0px;
    width: 100%;
    margin-top: 20px;
  }
}

.about-section .ceo .image img {
  width: 56px;
  height: 56px;
  border-radius: 100px;
  border-radius: 56px;
  border: 4px solid #FFF;
  background: lightgray 0.742px 2.211px/149.982% 100% no-repeat;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.about-section .ceo .text {
  margin-left: 20px;
}

.about-section .ceo .text h4 {
  font-size: 14px;
  font-weight: 600;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
  line-height: 20px;
  margin-bottom: 0;
  color: #061408;
  margin-top: 0;
}

.about-section .ceo .text span {
  color: #F74F22;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
}

.about-section .about-image {
  position: relative;
}

.about-section .about-image .img-1 {
  width: 633px;
  height: 575px;
  position: relative;
  background-size: cover;
  margin-left: -100px;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media (max-width: 1199px) {
  .about-section .about-image .img-1 {
    width: 533px;
  }
}

@media (max-width: 991px) {
  .about-section .about-image .img-1 {
    width: 100%;
    max-width: 633px;
    height: 100%;
    margin-left: 0;
    margin-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .about-section .about-image .img-1 {
    margin-bottom: 70px;
  }
}

@media (max-width: 425px) {
  .about-section .about-image .img-1 {
    margin-bottom: 50px;
  }
}

.about-section .about-image .img-1 img {
  mix-blend-mode: lighten;
}

.about-section .about-image .img-2 {
  position: absolute;
  right: 184px;
  bottom: -57px;
}

@media (max-width: 425px) {
  .about-section .about-image .img-2 {
    display: none;
  }
}

.about-section .about-image .img-2 img {
  width: 220px;
  height: 220px;
  border-radius: 220px;
  border: 7px solid #FFF;
  background: lightgray 50%/cover no-repeat;
  box-shadow: -4px 14px 20px 0px rgba(0, 0, 0, 0.25);
}

.about-section .shape-1 {
  position: absolute;
  left: 0;
  top: 50px;
  z-index: -1;
}

.about-section .shape-2 {
  position: absolute;
  left: 100px;
  top: 80px;
  z-index: -1;
  animation: leafAniamtion 12s ease-in infinite;
}

@media (max-width: 991px) {
  .about-section .shape-2 {
    display: none;
  }
}

.about-section .shape-3 {
  position: absolute;
  left: 0px;
  bottom: 50px;
  z-index: -1;
}

@media (max-width: 575px) {
  .about-section .shape-3 {
    display: none;
  }
}

.about-section .shape-4 {
  position: absolute;
  left: 250px;
  bottom: 100px;
  z-index: -1;
  animation: zoom-in-zoom-out 2s ease infinite;
}

@media (max-width: 991px) {
  .about-section .shape-4 {
    display: none;
  }
}

.about-section .shape-5 {
  position: absolute;
  right: 130px;
  top: 130px;
  z-index: -1;
  animation: zoom-in-zoom-out 2s ease infinite;
}

@media (max-width: 991px) {
  .about-section .shape-5 {
    display: none;
  }
}

.about-section .shape-6 {
  position: absolute;
  right: 50px;
  bottom: 0;
  z-index: -1;
  animation: leafAniamtion 12s ease-in infinite;
}

@media (max-width: 575px) {
  .about-section .shape-6 {
    display: none;
  }
}

.video-btn {
  width: 85px;
  height: 85px;
  line-height: 85px;
  border-radius: 100px;
  background: #F74F22;
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 575px) {
  .video-btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

.video-btn i {
  font-size: 25px;
  color: #fff;
}

@media (max-width: 575px) {
  .video-btn i {
    font-size: 20px;
  }
}

/* 3.5 events */
.card-mv {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card-mv::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(237deg, rgba(10, 26, 21, 0.8) 14.53%, rgba(4, 6, 6, 0.69) 42.31%, rgba(33, 229, 193, 0.43) 80.05%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.card-mv img {
  width: 100%;
}

.card-mv .icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 98px;
  height: 99px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.card-mv .icon .shape {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.card-mv .icon a i {
  font-size: 20px;
  color: #fff;
  position: absolute;
  left: 63%;
  top: 25%;
  font-weight: 700;
  z-index: 11;
}

.card-mv .text {
  max-width: 384px;
  max-height: 90px;
  border-radius: 7px;
  background: #FFF;
  box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.07);
  display: block;
  position: absolute;
  left: 50px;
  bottom: 40px;
  z-index: 1;
  padding: 36px 40px;
  padding-left: 85px;
  text-align: center;
}

@media (max-width: 1399px) {
  .card-mv .text {
    left: 30px;
    padding: 36px 30px;
    padding-left: 80px;
    bottom: 20px;
  }
}

@media (max-width: 767px) {
  .card-mv .text {
    left: 20px;
    padding: 25px 10px;
    padding-left: 70px;
    bottom: 20px;
  }
}

.card-mv .text::before {
  position: absolute;
  width: 24px;
  height: 20px;
  content: "";
  background: #fff;
  left: 50px;
  top: -20px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.card-mv .text h2 {
  margin: 0;
}

.card-mv .text h3 {
  margin: 0;
}

.card-mv .text a {
  color: #061408;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-size: 24px;
  line-height: 20px;
  font-weight: 700;
  text-transform: capitalize;
  display: block;
}

@media (max-width: 767px) {
  .card-mv .text a {
    font-size: 20px;
  }
}

.card-mv .text i {
  width: 75px;
  height: 75px;
  border-radius: 4px;
  background: #F74F22;
  font-size: 42px;
  line-height: 75px;
  text-align: center;
  display: block;
  color: #fff;
  position: absolute;
  left: -10px;
  bottom: 0;
}

@media (max-width: 767px) {
  .card-mv .text i {
    width: 60px;
    height: 60px;
    font-size: 35px;
    line-height: 60px;
  }
}

.card-mv:hover::before {
  opacity: 1;
  visibility: visible;
}

.card-mv:hover .icon {
  opacity: 1;
  visibility: visible;
}

/* 3.6 service */
.service-section {
  position: relative;
  z-index: 1;
}

.service-section .shape-1 {
  position: absolute;
  left: 0;
  bottom: 30%;
  z-index: -1;
  animation: leafAniamtion 12s ease-in infinite;
}

.service-section .shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.service-section .section-title {
  max-width: 630px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .service-section .section-title {
    text-align: center;
    max-width: 100%;
  }
}

.service-section .all-Service-btn {
  text-align: right;
}

@media (max-width: 991px) {
  .service-section .all-Service-btn {
    text-align: center;
    margin-top: 20px;
  }
}

.service-section .service-wrap {
  margin-top: 40px;
  display: block;
}

.service-section .service-left {
  max-width: 486px;
  border-radius: 11px;
  background: #EEE9E9;
  padding: 40px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .service-section .service-left {
    padding: 30px 20px;
  }
}

@media (max-width: 991px) {
  .service-section .service-left {
    margin-bottom: 30px;
  }
}

.service-section .service-left ul {
  padding-left: 0;
  list-style: none;
}

.service-section .service-left li {
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .service-section .service-left li {
    margin-bottom: 20px;
  }
}

.service-section .service-left li:last-child {
  margin-bottom: 0;
}

.service-section .service-left li a {
  border-radius: 10px;
  background: #fff;
  color: #0F0F2D;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: capitalize;
  display: block;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {
  .service-section .service-left li a {
    padding: 10px 20px;
  }
}

@media (max-width: 575px) {
  .service-section .service-left li a {
    padding: 10px 10px;
    font-size: 15px;
  }
}

.service-section .service-left li a::before {
  position: absolute;
  right: 30px;
  top: 50%;
  content: "\f123";
  font-size: 20px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  color: #fff;
}

@media (max-width: 575px) {
  .service-section .service-left li a::before {
    right: 20px;
    font-size: 17px;
  }
}

.service-section .service-left li a i {
  font-size: 25px;
  color: #F74F22;
  padding-right: 20px;
}

@media (max-width: 575px) {
  .service-section .service-left li a i {
    font-size: 18px;
    padding-right: 15px;
  }
}

.service-section .service-left li a:hover {
  background: #18322E;
  color: #fff;
}

.service-section .service-left li a:hover::before {
  opacity: 1;
  visibility: visible;
}

.service-section .service-left li a:hover i {
  color: #fff;
}

.service-section .service-left li .active {
  background: #18322E;
  color: #fff;
}

.service-section .service-left li .active::before {
  opacity: 1;
  visibility: visible;
}

.service-section .service-left li .active i {
  color: #fff;
}

.service-section .service-left .s-more {
  display: block;
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .service-section .service-left .s-more {
    margin-top: 20px;
  }
}

.service-section .service-left .s-more a {
  color: #0F0F2D;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 29px;
}

.service-section .service-left .shape {
  position: absolute;
  right: 67px;
  bottom: 27px;
  z-index: -1;
}

@media (max-width: 575px) {
  .service-section .service-left .shape {
    display: none;
  }
}

.service-section .service-image ul {
  margin: 0 -10px;
}

@media (max-width: 575px) {
  .service-section .service-image ul {
    margin: 0;
  }
}

.service-section .service-image ul li {
  width: 49.7%;
  display: inline-block;
  padding: 0 10px;
  position: relative;
}

@media (max-width: 1399px) {
  .service-section .service-image ul li {
    width: 49%;
  }
}

@media (max-width: 575px) {
  .service-section .service-image ul li {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
}

.service-section .service-image ul li img {
  width: 100%;
  border-radius: 14px;
}

.service-section .service-image ul li:first-child {
  width: 100%;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .service-section .service-image ul li:last-child {
    margin-bottom: 0px;
  }
}

/* 3.7 causes */
.causes-section {
  position: relative;
}

@media (max-width: 991px) {
  .causes-section .section-title {
    text-align: center;
  }
}

.causes-section .section-title h2 span {
  color: #FBAD17;
}

.causes-section .owl-nav {
  position: absolute;
  left: 61%;
  top: -23%;
}

@media (max-width: 1799px) {
  .causes-section .owl-nav {
    left: 65%;
  }
}

@media (max-width: 1649px) {
  .causes-section .owl-nav {
    left: 70%;
  }
}

@media (max-width: 1599px) {
  .causes-section .owl-nav {
    left: 80%;
  }
}

@media (max-width: 991px) {
  .causes-section .owl-nav {
    display: none;
  }
}

.causes-section .owl-nav button {
  width: 66px;
  height: 66px;
  line-height: 66px;
  text-align: center;
  border-radius: 100px;
  border: 1px solid #F74F22;
  background: #fff;
  transition: all 0.3s ease-in-out;
  color: #F74F22;
}

.causes-section .owl-nav button:hover {
  background: #F74F22;
  color: #fff;
}

.causes-section .owl-nav .owl-prev {
  margin-right: 25px;
}

.causes-section .owl-dots {
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .causes-section .owl-dots {
    display: none;
  }
}

.causes-section .owl-dots button {
  margin: 5px;
  border: 1px solid #F74F22;
  width: 10px;
  height: 14px;
  border-radius: 100px;
}

.causes-section .owl-dots button.active {
  background: #F74F22;
}

.causes-section .causes-slider {
  position: relative;
  left: 15%;
}

@media (max-width: 1799px) {
  .causes-section .causes-slider {
    left: 14%;
  }
}

@media (max-width: 1749px) {
  .causes-section .causes-slider {
    left: 13%;
  }
}

@media (max-width: 1699px) {
  .causes-section .causes-slider {
    left: 12%;
  }
}

@media (max-width: 1649px) {
  .causes-section .causes-slider {
    left: 10%;
  }
}

@media (max-width: 1599px) {
  .causes-section .causes-slider {
    left: 0;
  }
}

.causes-section .shape {
  position: absolute;
  left: 50px;
  bottom: 170px;
  animation: zoom-in-zoom-out 2s ease infinite;
}

.causes-section .shape-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-height: 400px;
  z-index: -1;
}

.causes-section .shape-2 img {
  width: 100%;
  height: 100%;
}

.causes-card {
  border-radius: 13px;
  background: #FFF;
  box-shadow: 0px 6px 41px 0px rgba(0, 0, 0, 0.07);
}

.causes-card .image {
  position: relative;
  padding: 15px 12px;
}

.causes-card .image img {
  width: 100%;
  border-radius: 14px;
}

.causes-card .image span {
  border-radius: 14px;
  background: #EEB012;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  position: absolute;
  left: 20px;
  top: 22px;
  padding: 5px 30px;
  z-index: 11;
}

.causes-card .text {
  padding: 25px;
  padding-top: 10px;
}

.causes-card .text h2 {
  margin-bottom: 8px;
  margin-top: 0;
}

.causes-card .text h2 a {
  color: #061408;
  font-family: "Nunito", sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: capitalize;
}

.causes-card .text p {
  color: #535353;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
}

.causes-card .progress-wrap {
  border-radius: 10px;
  background: rgba(247, 79, 34, 0.05);
  margin: 0 12px;
  padding: 20px;
  padding-top: 40px;
}

.causes-card .progress-item {
  position: relative;
}

.causes-card .progress-item .progress {
  border-radius: 4px;
  background: #fff;
  height: 7px;
}

.causes-card .progress-item .progress .bar {
  position: relative;
  float: left;
  min-width: 1%;
  height: 7px;
  background: #F74F22;
  z-index: 1;
  border-radius: 30px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.causes-card .progress-item .cssProgress-label {
  position: absolute;
  right: 30px;
  top: -27px;
  color: #F74F22;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.causes-card .progress-item .cssProgress-label::after {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 1;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background: #F74F22;
}

.causes-card .progress-item .cssProgress-label::before {
  position: absolute;
  top: 26px;
  left: 6px;
  z-index: 11;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: #fff;
}

.causes-card ul {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.causes-card ul li {
  position: relative;
}

.causes-card ul li .title {
  color: #000;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: block;
}

.causes-card ul li span {
  display: block;
  color: #F74F22;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.causes-card ul li:nth-child(2)::before {
  position: absolute;
  left: -35px;
  top: 50%;
  content: "";
  width: 1px;
  height: 28px;
  background: #D9D9D9;
  transform: translateY(-50%);
}

.causes-card ul li:nth-child(2)::after {
  position: absolute;
  right: -35px;
  top: 50%;
  content: "";
  width: 1px;
  height: 28px;
  background: #D9D9D9;
  transform: translateY(-50%);
}

/* 3.8 cta */
.cta-section {
  position: relative;
  text-align: center;
  padding: 140px 0 190px;
  z-index: 1;
  background-size: cover;
  background-position: center;
}

@media (max-width: 991px) {
  .cta-section {
    padding: 120px 0 120px;
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .cta-section {
    padding: 80px 0 80px;
  }
}

.cta-section .content {
  max-width: 646px;
  margin: 0 auto;
}

.cta-section .content span {
  color: #F74F22;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
  font-size: 20px;
  font-weight: 600;
}

.cta-section .content h3 {
  color: #fff;
  font-size: 55px;
  font-weight: 800;
  line-height: 61px;
  text-transform: capitalize;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .cta-section .content h3 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .cta-section .content h3 {
    font-size: 35px;
    margin-bottom: 20px;
  }
}

.cta-section .shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.cta-section .shape-1 {
  position: absolute;
  bottom: -60px;
  left: 0;
}

@media (max-width: 1399px) {
  .cta-section .shape-1 {
    bottom: -50px;
  }
}

@media (max-width: 1199px) {
  .cta-section .shape-1 {
    bottom: -30px;
  }
}

@media (max-width: 767px) {
  .cta-section .shape-1 {
    display: none;
  }
}

.cta-section .shape-2 {
  position: absolute;
  left: 100px;
  top: 200px;
  animation: leafAniamtion 12s ease-in infinite;
}

@media (max-width: 991px) {
  .cta-section .shape-2 {
    display: none;
  }
}


/* 3.9 project */
.project-section {
  position: relative;
  z-index: 1;
}

.project-section .section-title {
  text-align: center;
  max-width: 631px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.project-slider {
  position: relative;
}

.project-slider .owl-stage {
  padding-bottom: 60px;
  position: relative;
}

@media (max-width: 1399px) {
  .project-slider .owl-stage {
    padding-bottom: 85px;
  }
}

.project-slider .owl-item.active.center .project-card .content {
  display: block;
  opacity: 1;
  visibility: visible;
}

.project-slider .owl-item {
  width: 542px;
}

.project-slider .owl-nav {
  display: none;
}

.project-slider .owl-dots {
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .project-slider .owl-dots {
    display: none;
  }
}

.project-slider .owl-dots button {
  margin: 5px;
  border: 1px solid #F74F22;
  width: 10px;
  height: 14px;
  border-radius: 100px;
}

.project-slider .owl-dots button.active {
  background: #F74F22;
}

.project-card {
  position: relative;
  z-index: 1;
}

.project-card img {
  width: 100%;
}

.project-card .content {
  width: 100%;
  max-width: 532px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 4px 26px 0px rgba(0, 0, 0, 0.13);
  padding: 50px 40px;
  position: absolute;
  left: 50%;
  bottom: -130px;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1599px) {
  .project-card .content {
    max-width: 432px;
    padding: 40px 25px;
  }
}

@media (max-width: 1399px) {
  .project-card .content {
    max-width: 380px;
    padding: 20px 20px;
  }
}

.project-card .content h2 {
  margin-bottom: 10px;
  margin-top: 0;
}

.project-card .top-date {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.project-card .top-date span {
  font-size: 18px;
  font-weight: 600;
  color: #F74F22;
  padding: 10px;
  line-height: 20px;
}

.project-card .content h2 a {
  color: #061408;
  font-family: "Nunito", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.84px;
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .project-card .content h2 a {
    font-size: 20px;
  }
}

.project-card .content span {
  color: #535353;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  display: flex;
  align-items: center;
}

.project-card .content .event-info {
  display: flex;
  align-items: center;
}

.project-card .content .event-info span:first-child {
  margin-right: 20px;
}

@media (max-width: 575px) {
  .project-card .content .event-info span:first-child {
    margin-right: 10px;
  }

  .project-card .content span {
    font-size: 14px;
  }
}

.project-card .content span i {
  margin-right: 5px;
  color: #F74F22;
}

.project-card .content .icon a {
  width: 50px;
  height: 50px;
  background: #F74F22;
  border-radius: 100px;
  text-align: center;
  line-height: 50px;
  position: absolute;
  right: 50px;
  top: 50px;
  transform: rotate(39deg);
}

@media (max-width: 1599px) {
  .project-card .content .icon a {
    right: 20px;
  }
}

@media (max-width: 1399px) {
  .project-card .content .icon a {
    top: 30px;
  }
}

@media (max-width: 575px) {
  .project-card .content .icon a {
    right: 10px;
  }
}

.project-card .content .icon a {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
}

/* 3.10 testimonial */
.testimonial-section .section-title {
  text-align: center;
}

.testimonial-wrap .owl-nav {
  display: none;
}

.testimonial-wrap .owl-dots {
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .testimonial-wrap .owl-dots {
    display: none;
  }
}

.testimonial-wrap .owl-dots button {
  margin: 5px;
  border: 1px solid #F74F22;
  width: 10px;
  height: 14px;
  border-radius: 100px;
}

.testimonial-wrap .owl-dots button.active {
  background: #F74F22;
}

.testimonial-card {
  position: relative;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0px -3px 20px 0px rgba(0, 0, 0, 0.05);
  padding: 60px 45px 30px;
  margin: 15px;
}

@media (max-width: 1399px) {
  .testimonial-card {
    padding: 60px 30px 30px;
  }
}

@media (max-width: 1199px) {
  .testimonial-card {
    padding: 40px 20px 20px;
  }
}

.testimonial-card::before {
  position: absolute;
  left: 50%;
  top: 0;
  content: "";
  width: 85%;
  height: 4px;
  background: #F74F22;
  transform: translateX(-50%);
  border-radius: 13px;
}

.testimonial-card::after {
  position: absolute;
  left: 50%;
  top: 0;
  content: "";
  width: 20px;
  height: 14px;
  background: #F74F22;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.testimonial-card ul {
  padding-left: 0;
  margin-bottom: 15px;
}

.testimonial-card ul li {
  display: inline-block;
}

.testimonial-card ul li i {
  color: #F74F22;
  font-size: 15px;
  font-weight: 900;
  line-height: 26px;
}

.testimonial-card p {
  color: #5E5F63;
  font-size: 18px;
  font-weight: 400;
  line-height: 39px;
}

@media (max-width: 1199px) {
  .testimonial-card p {
    font-size: 15px;
    line-height: 33px;
  }
}

.testimonial-card .autr-name {
  padding-top: 20px;
  border-top: 1px solid #DFDFDF;
  display: flex;
  align-items: center;
}

.testimonial-card .autr-name .image img {
  width: 72px;
  height: 72px;
  border-radius: 100px;
}

.testimonial-card .autr-name .text {
  padding-left: 20px;
}

.testimonial-card .autr-name .text h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0;
  margin-top: 0;
}

@media (max-width: 1199px) {
  .testimonial-card .autr-name .text h3 {
    font-size: 16px;
  }
}

.testimonial-card .autr-name .text span {
  color: #535353;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .testimonial-card .autr-name .text span {
    font-size: 16px;
  }
}

/* 3.11 process */
.process-section {
  position: relative;
  background: #F1EBE9;
  padding-top: 340px;
  padding-bottom: 90px;
  overflow: hidden;
  z-index: 0;
  margin-top: -220px;
}

@media (max-width: 991px) {
  .process-section {
    padding-bottom: 60px;
    padding-top: 90px;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .process-section {
    padding-bottom: 50px;
  }
}

.process-section .wrape {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .process-section .wrape {
    flex-wrap: wrap;
  }
}

.process-section .item {
  width: 260px;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  z-index: 11;
}

@media (max-width: 1199px) {
  .process-section .item {
    width: 230px;
  }
}

@media (max-width: 991px) {
  .process-section .item {
    flex-basis: 50%;
  }
}

@media (max-width: 575px) {
  .process-section .item {
    flex-basis: 100%;
  }
}

.process-section .item .icon {
  max-width: 185px;
  max-height: 184px;
  line-height: 185px;
  margin: 0 auto;
  border-radius: 100px;
  background: #fff;
  display: block;
  margin-bottom: 10px;
  outline: 1px dotted #C1C1C1;
  outline-offset: -15px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

@media (max-width: 1199px) {
  .process-section .item .icon {
    max-width: 130px;
    max-height: 130px;
    line-height: 130px;
  }
}

.process-section .item .icon span {
  color: #FFF;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 35px;
  width: 36px;
  height: 36px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 13px;
  background: #FFA415;
}

@media (max-width: 1199px) {
  .process-section .item .icon span {
    right: 0px;
    top: 0px;
    font-size: 14px;
  }
}

.process-section .item .icon i {
  font-size: 75px;
  color: #0B3742;
}

@media (max-width: 1199px) {
  .process-section .item .icon i {
    font-size: 50px;
  }
}

.process-section .item h2 {
  color: #101212;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 64px;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .process-section .item h2 {
    font-size: 17px;
    line-height: 50px;
  }
}

@media (max-width: 991px) {
  .process-section .item h2 {
    line-height: 30px;
  }
}

.process-section .item .shape {
  position: absolute;
  top: 40%;
  right: -35%;
  transform: translateY(-50%);
}

@media (max-width: 1399px) {
  .process-section .item .shape {
    right: -22%;
  }
}

@media (max-width: 1199px) {
  .process-section .item .shape {
    right: -20%;
    top: 33%;
  }
}

@media (max-width: 991px) {
  .process-section .item .shape {
    right: -15%;
    top: 33%;
  }
}

@media (max-width: 575px) {
  .process-section .item .shape {
    display: none;
  }
}

.process-section .item:nth-child(2) .icon {
  outline: 1px dotted #F74F22;
}

.process-section .item:nth-child(2) .icon span {
  background: #F74F22;
}

.process-section .item:nth-child(3) .icon span {
  background: #8139E7;
}

.process-section .item:last-child .shape {
  display: none;
}

.process-section .item:last-child .icon {
  outline: 1px dotted #F74F22;
}

.process-section .item:last-child .icon span {
  background: #FF3662;
}

@media (max-width: 991px) {
  .process-section .item:nth-child(2) .shape {
    display: none;
  }
}

.process-section .shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.process-section .shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.process-section .shape-3 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.process-section .shape-4 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  animation: leafAniamtion 12s ease-in infinite;
}

.process-section .shape-5 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

/* 3.12 instagam*/
.gallery-section,
.gallery-section-s2 {
  position: relative;
  z-index: 11;
}


.gallery-section .shape,
.gallery-section-s2 .shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

@media (max-width: 1199px) {

  .gallery-section .shape,
  .gallery-section-s2 .shape {
    display: none;
  }
}

.gallery-section .shape .shape-2,
.gallery-section-s2 .shape .shape-2 {
  position: absolute;
  left: 0;
  bottom: -38px;
  width: 100%;
  z-index: 1;
}

@media (max-width: 1199px) {

  .gallery-section .shape .shape-2,
  .gallery-section-s2 .shape .shape-2 {
    display: none;
  }
}

.gallery-section .section-title,
.gallery-section-s2 .section-title {
  text-align: center;
}

.gallery-section .section-title span,
.gallery-section-s2 .section-title span {
  color: #fff;
}

.gallery-section .section-title h2,
.gallery-section-s2 .section-title h2 {
  color: #fff;
}

@media (max-width: 1399px) {

  .gallery-section .section-title h2,
  .gallery-section-s2 .section-title h2 {
    line-height: 34px;
  }
}

.gallery-section .sortable-gallery,
.gallery-section-s2 .sortable-gallery {
  display: flex;
  max-width: 1670px;
  margin: 0 auto;
}

@media (max-width: 991px) {

  .gallery-section .sortable-gallery,
  .gallery-section-s2 .sortable-gallery {
    max-width: 100%;
    flex-wrap: wrap;
  }
}

.gallery-section .grid,
.gallery-section-s2 .grid {
  margin: 5px;
}

@media (max-width: 991px) {

  .gallery-section .grid,
  .gallery-section-s2 .grid {
    width: 47.9%;
  }
}

@media (max-width: 575px) {

  .gallery-section .grid,
  .gallery-section-s2 .grid {
    width: 100%;
  }
}

.gallery-section .grid:hover .img-holder .img,
.gallery-section-s2 .grid:hover .img-holder .img {
  filter: grayscale(100%);
}

.gallery-section .grid:hover .img-holder .hover-content,
.gallery-section-s2 .grid:hover .img-holder .hover-content {
  opacity: 1;
  visibility: visible;
}

.gallery-section .img-holder,
.gallery-section-s2 .img-holder {
  position: relative;
}

.gallery-section .img-holder .img,
.gallery-section-s2 .img-holder .img {
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.gallery-section .img-holder .hover-content,
.gallery-section-s2 .img-holder .hover-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.gallery-section .img-holder .hover-content i,
.gallery-section-s2 .img-holder .hover-content i {
  font-size: 40px;
  color: #F74F22;
}

/* 3.13 blog */
.blog-section,
.blog-section-s4 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.blog-section .section-title,
.blog-section-s4 .section-title {
  text-align: center;
}

.blog-section .shape,
.blog-section-s4 .shape {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -10;
}

.blog-section-s4 {
  padding-top: 120px;
  margin-top: 0;
}

@media (max-width: 991px) {
  .blog-section-s4 {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .blog-section-s4 {
    padding-top: 60px;
  }
}

.blog-card {
  position: relative;
  z-index: 11;
  margin-bottom: 30px;
}

.blog-card .image {
  position: relative;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 500ms ease;
}

.blog-card img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
  transition: all 0.4s ease-in-out;
}

.blog-card ul {
  display: inline-block;
  position: relative;
  top: -35px;
  background: #fff;
  padding: 0 10px;
  padding-top: 5px;
}

.blog-card ul li {
  display: inline-block;
  color: #535353;
  font-size: 15px;
  font-weight: 400;
  padding: 5px 10px;
}

.blog-card ul li a {
  color: #535353;
}

.blog-card ul li i {
  color: #F74F22;
  padding-right: 10px;
}

.blog-card .content {
  background: #fff;
  box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.1);
  padding: 30px;
  padding-bottom: 55px;
  margin-top: -35px;
  position: relative;
  z-index: -1;
}

@media (max-width: 1199px) {
  .blog-card .content {
    padding: 16px;
    padding-bottom: 55px;
  }
}

@media (max-width: 575px) {
  .blog-card .content {
    padding: 20px;
    padding-bottom: 55px;
  }
}

.blog-card .content h3 {
  margin-bottom: 14px;
  margin-top: 0;
}

.blog-card .content h3 a {
  color: #18322E;
  font-family: "Nunito", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}

.blog-card .content p {
  color: #707481;
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  margin-bottom: 0;
}

.blog-card .content .content_bottom {
  background: #F1EBE9;
  max-width: 397px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px 10px;
  position: absolute;
  bottom: -25px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1399px) {
  .blog-card .content .content_bottom {
    max-width: 320px;
  }
}

.blog-card .content .content_bottom span a {
  color: #122F2A;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  line-height: 20px;
}

.blog-card .content .content_bottom span a i {
  color: #F74F22;
  font-size: 15px;
  line-height: unset;
  padding-left: 10px;
}

.blog-card .content .content_bottom span:last-child i {
  padding-left: 0;
  padding-right: 10px;
}

.blog-card .content .content_bottom span:first-child i {
  position: relative;
  top: 1px;
}

.blog-card .content .content_bottom span a img {
  width: 12px;
  height: 11px;
  margin-right: 10px;
}

.blog-card:hover .image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.blog-card:hover .image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.blog-card:hover .content .content_bottom {
  opacity: 1;
  visibility: visible;
}

/* 5. Home-style-2 */
/*5.1 register */
.register-section {
  position: relative;
  background: #F1EBE9;
  padding-top: 50px;
  z-index: 1;
}

@media (max-width: 1199px) {
  .register-section {
    padding: 50px 0;
  }
}

.register-section .content {
  display: flex;
}

@media (max-width: 991px) {
  .register-section .content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.register-section .content .image {
  max-width: 273px;
  max-height: 204px;
  position: relative;
}

.register-section .content .image img {
  width: 100%;
  border-radius: 9px;
}

.register-section .content .image .icon {
  width: 84px;
  height: 82px;
  text-align: center;
  line-height: 82px;
  background: #F74F22;
  position: absolute;
  left: 20px;
  bottom: 0;
}

.register-section .content .image .icon::before {
  position: absolute;
  left: -20px;
  bottom: 0;
  width: 20px;
  height: 25px;
  content: "";
  background: #CE3810;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.register-section .content .image .icon i {
  font-size: 35px;
  color: #fff;
}

.register-section .content .text {
  margin-left: 50px;
}

@media (max-width: 991px) {
  .register-section .content .text {
    margin-left: 0;
    text-align: center;
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .register-section .content .text {
    margin-top: 30px;
  }
}

.register-section .content .text span {
  color: #F74F22;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.register-section .content .text span img {
  margin-right: 10px;
}

.register-section .content .text h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 47px;
}

@media (max-width: 767px) {
  .register-section .content .text h2 {
    font-size: 28px;
    line-height: 37px;
  }
}

.register-section .content .text a {
  color: #F74F22;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-block;
}

.register-section .content .text a i {
  position: relative;
  top: 5px;
  padding-left: 20px;
}

.register-section .content .text a i::before {
  font-size: 20px;
  line-height: 20px;
}

.register-section .shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  animation: leafAniamtion 12s ease-in infinite;
}

/*5.2 about-section-s2 */
.about-section-s2,
.about-section-s3,
.about-section-s4 {
  position: relative;
  z-index: 1;
}

.about-section-s2 .about-image,
.about-section-s3 .about-image,
.about-section-s4 .about-image {
  max-width: 532px;
  position: relative;
  margin-top: -50px;
}

@media (max-width: 991px) {

  .about-section-s2 .about-image,
  .about-section-s3 .about-image,
  .about-section-s4 .about-image {
    margin-top: 0;
    margin-bottom: 100px;
  }
}

.about-section-s2 .about-image .image1,
.about-section-s3 .about-image .image1,
.about-section-s4 .about-image .image1 {
  border-radius: 9px;
  position: relative;
}

.about-section-s2 .about-image .image1::before,
.about-section-s3 .about-image .image1::before,
.about-section-s4 .about-image .image1::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  max-width: 419px;
  max-height: 522px;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  border: 2px solid #F74F22;
  z-index: -1;
  left: auto;
  right: 60px;
  bottom: -27px;
}

.about-section-s2 .about-image .image1::after,
.about-section-s3 .about-image .image1::after,
.about-section-s4 .about-image .image1::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 4px;
  height: 209px;
  z-index: -1;
  left: -22px;
  top: 50px;
  background: #F74F22;
}

.about-section-s2 .about-image .image1 img,
.about-section-s3 .about-image .image1 img,
.about-section-s4 .about-image .image1 img {
  border-radius: 9px;
  max-width: 437px;
  max-height: 555px;
  width: 100%;
  height: 100%;
}

.about-section-s2 .about-image .image2,
.about-section-s3 .about-image .image2,
.about-section-s4 .about-image .image2 {
  border-radius: 9px;
  position: absolute;
  right: 0;
  bottom: -90px;
}

@media (max-width: 575px) {

  .about-section-s2 .about-image .image2,
  .about-section-s3 .about-image .image2,
  .about-section-s4 .about-image .image2 {
    display: none;
  }
}

.about-section-s2 .about-image .image2 img,
.about-section-s3 .about-image .image2 img,
.about-section-s4 .about-image .image2 img {
  border-radius: 9px;
  max-width: 247px;
  max-height: 257px;
  width: 100%;
  height: 100%;
}

.about-section-s2 .about-image .shape-love,
.about-section-s3 .about-image .shape-love,
.about-section-s4 .about-image .shape-love {
  position: absolute;
  right: 115px;
  top: 20px;
}

@media (max-width: 991px) {

  .about-section-s2 .about-image .shape-love,
  .about-section-s3 .about-image .shape-love,
  .about-section-s4 .about-image .shape-love {
    display: none;
  }
}

.about-section-s2 .about-image .text,
.about-section-s3 .about-image .text,
.about-section-s4 .about-image .text {
  width: 215px;
  height: 214px;
  line-height: 215px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  left: -50px;
  bottom: 0;
  z-index: 1;
}

@media (max-width: 991px) {

  .about-section-s2 .about-image .text,
  .about-section-s3 .about-image .text,
  .about-section-s4 .about-image .text {
    left: 0px;
  }
}

@media (max-width: 575px) {

  .about-section-s2 .about-image .text,
  .about-section-s3 .about-image .text,
  .about-section-s4 .about-image .text {
    width: 150px;
    height: 150px;
    line-height: 150px;
  }
}

.about-section-s2 .about-image .text h2,
.about-section-s3 .about-image .text h2,
.about-section-s4 .about-image .text h2 {
  color: #fff;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  text-transform: capitalize;
  margin-bottom: 0;
  margin-top: 0;
}

.about-section-s2 .about-image .text h3,
.about-section-s3 .about-image .text h3,
.about-section-s4 .about-image .text h3 {
  color: #F74F22;
  text-align: center;
  font-size: 55px;
  font-weight: 600;
  line-height: 32px;
  text-transform: capitalize;
  margin-bottom: 0;
  margin-top: 0;
}

@media (max-width: 575px) {

  .about-section-s2 .about-image .text h3,
  .about-section-s3 .about-image .text h3,
  .about-section-s4 .about-image .text h3 {
    font-size: 35px;
    line-height: 32px;
  }
}

.about-section-s2 .about-image .text .shape,
.about-section-s3 .about-image .text .shape,
.about-section-s4 .about-image .text .shape {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-section-s2 .right-content,
.about-section-s3 .right-content,
.about-section-s4 .right-content {
  margin-top: 60px;
}

@media (max-width: 575px) {

  .about-section-s2 .right-content,
  .about-section-s3 .right-content,
  .about-section-s4 .right-content {
    margin-top: 0;
  }
}

.about-section-s2 .right-content h2,
.about-section-s3 .right-content h2,
.about-section-s4 .right-content h2 {
  color: #F74F22;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.about-section-s2 .right-content h2 img,
.about-section-s3 .right-content h2 img,
.about-section-s4 .right-content h2 img {
  margin-right: 10px;
}

.about-section-s2 .right-content h3,
.about-section-s3 .right-content h3,
.about-section-s4 .right-content h3 {
  font-size: 55px;
  font-weight: 800;
  line-height: 61px;
  text-transform: capitalize;
  padding-bottom: 30px;
  margin-bottom: 0;
}

@media (max-width: 575px) {

  .about-section-s2 .right-content h3,
  .about-section-s3 .right-content h3,
  .about-section-s4 .right-content h3 {
    font-size: 40px;
    line-height: 55px;
  }
}

@media (max-width: 425px) {

  .about-section-s2 .right-content h3,
  .about-section-s3 .right-content h3,
  .about-section-s4 .right-content h3 {
    font-size: 35px;
    line-height: 40px;
  }
}

.about-section-s2 .right-content h3 span,
.about-section-s3 .right-content h3 span,
.about-section-s4 .right-content h3 span {
  color: #F74F22;
  position: relative;
}

.about-section-s2 .right-content h3 span::before,
.about-section-s3 .right-content h3 span::before,
.about-section-s4 .right-content h3 span::before {
  position: absolute;
  bottom: -67px;
  left: 23px;
  width: 100%;
  content: "";
  background-repeat: no-repeat;
  height: 100%;
}

@media (max-width: 425px) {

  .about-section-s2 .right-content h3 span::before,
  .about-section-s3 .right-content h3 span::before,
  .about-section-s4 .right-content h3 span::before {
    display: none;
  }
}

.about-section-s2 .right-content p,
.about-section-s3 .right-content p,
.about-section-s4 .right-content p {
  color: #5E5F63;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  max-width: 626px;
}

.about-section-s2 .shape-1,
.about-section-s3 .shape-1,
.about-section-s4 .shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

@media (max-width: 991px) {

  .about-section-s2 .shape-1,
  .about-section-s3 .shape-1,
  .about-section-s4 .shape-1 {
    display: none;
  }
}

.about-section-s2 .shape-2,
.about-section-s3 .shape-2,
.about-section-s4 .shape-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  animation: leafAniamtion 15s ease-in infinite;
}

@media (max-width: 991px) {

  .about-section-s2 .shape-2,
  .about-section-s3 .shape-2,
  .about-section-s4 .shape-2 {
    display: none;
  }
}

.about-section-s2 .shape-3,
.about-section-s3 .shape-3,
.about-section-s4 .shape-3 {
  position: absolute;
  right: 0;
  bottom: 50px;
  z-index: -1;
}

@media (max-width: 991px) {

  .about-section-s2 .shape-3,
  .about-section-s3 .shape-3,
  .about-section-s4 .shape-3 {
    display: none;
  }
}

.about-section-s2 .tab,
.about-section-s3 .tab,
.about-section-s4 .tab {
  margin-top: 40px;
}

.about-section-s2 .tablinks,
.about-section-s3 .tablinks,
.about-section-s4 .tablinks {
  color: #222;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-transform: capitalize;
  border: 0;
  background: transparent;
  transition: all 0.3s ease-in-out;
  padding: 10px 30px;
  border-radius: 10px 10px 0px 0px;
  text-align: center;
  border-bottom: 1px solid #DFDFDF;
}

.about-section-s2 .tablinks.active,
.about-section-s3 .tablinks.active,
.about-section-s4 .tablinks.active {
  background: #F74F22;
  color: #fff;
}

.about-section-s2 .tabcontent .tab-wrap,
.about-section-s3 .tabcontent .tab-wrap,
.about-section-s4 .tabcontent .tab-wrap {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

@media (max-width: 575px) {

  .about-section-s2 .tabcontent .tab-wrap,
  .about-section-s3 .tabcontent .tab-wrap,
  .about-section-s4 .tabcontent .tab-wrap {
    flex-direction: column;
    align-items: start;
  }
}

.about-section-s2 .tabcontent .left,
.about-section-s3 .tabcontent .left,
.about-section-s4 .tabcontent .left {
  width: 214px;
  height: 143px;
  border-radius: 10px;
  position: relative;
}

@media (max-width: 1199px) {

  .about-section-s2 .tabcontent .left,
  .about-section-s3 .tabcontent .left,
  .about-section-s4 .tabcontent .left {
    width: 180px;
    height: 120px;
  }
}

.about-section-s2 .tabcontent .left img,
.about-section-s3 .tabcontent .left img,
.about-section-s4 .tabcontent .left img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.about-section-s2 .tabcontent .left .video-btn,
.about-section-s3 .tabcontent .left .video-btn,
.about-section-s4 .tabcontent .left .video-btn {
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.about-section-s2 .tabcontent .left .video-btn i,
.about-section-s3 .tabcontent .left .video-btn i,
.about-section-s4 .tabcontent .left .video-btn i {
  font-size: 15px;
}

.about-section-s2 .tabcontent .right,
.about-section-s3 .tabcontent .right,
.about-section-s4 .tabcontent .right {
  margin-left: 40px;
}

@media (max-width: 1399px) {

  .about-section-s2 .tabcontent .right,
  .about-section-s3 .tabcontent .right,
  .about-section-s4 .tabcontent .right {
    margin-left: 15px;
  }
}

@media (max-width: 1199px) {

  .about-section-s2 .tabcontent .right,
  .about-section-s3 .tabcontent .right,
  .about-section-s4 .tabcontent .right {
    margin-top: 0;
  }
}

@media (max-width: 575px) {

  .about-section-s2 .tabcontent .right,
  .about-section-s3 .tabcontent .right,
  .about-section-s4 .tabcontent .right {
    margin-left: 0;
  }
}

.about-section-s2 .tabcontent .right ul,
.about-section-s3 .tabcontent .right ul,
.about-section-s4 .tabcontent .right ul {
  padding-left: 0;
  list-style: none;
}

.about-section-s2 .tabcontent .right ul li,
.about-section-s3 .tabcontent .right ul li,
.about-section-s4 .tabcontent .right ul li {
  color: #313B3D;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {

  .about-section-s2 .tabcontent .right ul li,
  .about-section-s3 .tabcontent .right ul li,
  .about-section-s4 .tabcontent .right ul li {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

.about-section-s2 .tabcontent .right ul li i,
.about-section-s3 .tabcontent .right ul li i,
.about-section-s4 .tabcontent .right ul li i {
  color: #F74F22;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-right: 20px;
  position: relative;
  top: 5px;
}

@media (max-width: 1399px) {

  .about-section-s2 .tabcontent .right ul li i,
  .about-section-s3 .tabcontent .right ul li i,
  .about-section-s4 .tabcontent .right ul li i {
    margin-right: 15px;
  }
}

@media (max-width: 1199px) {

  .about-section-s2 .tabcontent .right ul li i,
  .about-section-s3 .tabcontent .right ul li i,
  .about-section-s4 .tabcontent .right ul li i {
    font-size: 15px;
    margin-right: 5px;
  }
}

.about-section-s2 .author-wrap,
.about-section-s3 .author-wrap,
.about-section-s4 .author-wrap {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

@media (max-width: 575px) {

  .about-section-s2 .author-wrap,
  .about-section-s3 .author-wrap,
  .about-section-s4 .author-wrap {
    flex-direction: column;
    align-items: start;
    margin-top: 20px;
  }
}

.about-section-s2 .author-wrap .contact,
.about-section-s3 .author-wrap .contact,
.about-section-s4 .author-wrap .contact {
  display: flex;
  align-items: center;
  margin-left: 50px;
}

@media (max-width: 575px) {

  .about-section-s2 .author-wrap .contact,
  .about-section-s3 .author-wrap .contact,
  .about-section-s4 .author-wrap .contact {
    margin-left: 0;
    margin-top: 10px;
  }
}

.about-section-s2 .author-wrap .contact .icon,
.about-section-s3 .author-wrap .contact .icon,
.about-section-s4 .author-wrap .contact .icon {
  margin-right: 10px;
}

.about-section-s2 .author-wrap .contact .text span,
.about-section-s3 .author-wrap .contact .text span,
.about-section-s4 .author-wrap .contact .text span {
  color: #828A8D;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}

.about-section-s2 .author-wrap .contact .text h4,
.about-section-s3 .author-wrap .contact .text h4,
.about-section-s4 .author-wrap .contact .text h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 5px;
}

.about-section-s2 .author-img,
.about-section-s3 .author-img,
.about-section-s4 .author-img {
  margin-left: 10px;
  padding-left: 0;
}

.about-section-s2 .author-img li,
.about-section-s3 .author-img li,
.about-section-s4 .author-img li {
  display: inline-block;
  margin: 0 -6px;
}

.about-section-s2 .author-img li img,
.about-section-s3 .author-img li img,
.about-section-s4 .author-img li img {
  border-radius: 36px;
  border: 1.5px solid #FFF;
  box-shadow: 0px 4px 14px 0px rgba(48, 71, 132, 0.2);
  width: 36px;
  height: 36px;
  transition: all 0.3s ease-in-out;
}

.about-section-s2 .author-img li:hover img,
.about-section-s3 .author-img li:hover img,
.about-section-s4 .author-img li:hover img {
  border: 1.5px solid #F74F22;
}

.about-section-s2 .author-img .active img,
.about-section-s3 .author-img .active img,
.about-section-s4 .author-img .active img {
  border: 1.5px solid #F74F22;
}

.about-section-s2 .author-text,
.about-section-s3 .author-text,
.about-section-s4 .author-text {
  position: relative;
  color: #222;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 31px;
  text-transform: capitalize;
  margin-left: 20px;
}

@media (max-width: 575px) {

  .about-section-s2 .author-text,
  .about-section-s3 .author-text,
  .about-section-s4 .author-text {
    margin-left: 0;
    margin-top: 10px;
  }
}

.about-section-s2 .author-text .shape,
.about-section-s3 .author-text .shape,
.about-section-s4 .author-text .shape {
  position: absolute;
  left: 25px;
  bottom: -15px;
}

.about-section-s4 {
  padding-bottom: 220px;
}

@media (max-width: 991px) {
  .about-section-s4 {
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .about-section-s4 {
    padding-bottom: 80px;
  }
}

/* 5.3 service-section-s2 */
.service-section-s2 {
  position: relative;
  z-index: 11;
  margin-top: -100px;

}

.service-section-s2 .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 403px;
}

.service-section-s2 .bg-image img {
  width: 100%;
  height: 100%;
}

.service-section-s2 .bg-image::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.69);
}

.service-section-s2 .bg-image .shape {
  position: absolute;
  left: 75px;
  bottom: 75px;
  animation: zoom-in-zoom-out 2s ease infinite;
}

@media (max-width: 1399px) {
  .service-section-s2 .bg-image .shape {
    display: none;
  }
}

.section-title-s1 {
  max-width: 625px;
}

.section-title-s1 span img {
  width: 34px;
  height: 34px;
  margin-right: 10px;
  margin-top: -15px;
}

.section-title-s1 h2 {
  color: #fff;
}

.section-title-s1 h2 span {
  color: #FBAD17;
  position: relative;
}

.section-title-s1 h2 span::before {
  position: absolute;
  left: 0;
  bottom: -50px;
  content: "";
  height: 100%;
  width: 100%;
}

@media (max-width: 757px) {
  .section-title-s1 h2 span::before {
    display: none;
  }
}

.all-Service-btn {
  text-align: end;
}

@media (max-width: 991px) {
  .all-Service-btn {
    text-align: start;
    margin-bottom: 20px;
  }
}

.service-wrap {
  display: flex;
  margin: -10px;
}

@media (max-width: 1399px) {
  .service-wrap {
    flex-wrap: wrap;
  }
}

@media (max-width: 1199px) {
  .service-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.service-wrap .item {
  max-width: 235px;
  max-height: 221px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 7px 18px 0px rgba(0, 0, 0, 0.02);
  padding: 35px 30px;
  position: relative;
  overflow: hidden;
  margin: 15px;
}

.service-wrap .item::before {
  position: absolute;
  right: -7px;
  bottom: -7px;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #F74F22;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.service-wrap .item .icon {
  transition: all 0.3s ease-in-out;
}

.service-wrap .item .icon i {
  font-size: 35px;
  color: #F74F22;
}

.service-wrap .item h2 {
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0px;
}

.service-wrap .item h2 a {
  color: #061408;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  letter-spacing: -0.6px;
  text-transform: capitalize;
  display: block;
}

.service-wrap .item span {
  color: #535353;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  display: block;
}

.service-wrap .item a {
  color: #001C4C;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.service-wrap .item a i {
  font-size: 15px;
  padding-left: 15px;
  position: relative;
  top: 5px;
}

.service-wrap .item .visible-content {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  position: relative;
  top: 0px;
}

.service-wrap .item .hover-content {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  position: relative;
  top: 500px;
}

.service-wrap .item:hover .visible-content {
  visibility: hidden;
  opacity: 0;
  top: -500px;
}

.service-wrap .item:hover .hover-content {
  visibility: visible;
  opacity: 1;
  top: -135px;
}

.service-wrap .item .hover-content h2 {
  margin-bottom: 10px;
}

.service-wrap .item:hover .hover-content h2 {
  margin-top: -4px;
}

/* 5.4 causes-section-s2 */
.causes-section-s2,
.causes-section-s3 {
  position: relative;
  z-index: 1;
  margin-top: -150px;
  padding-top: 300px;
  padding-bottom: 300px;
  background: #F1EBE9;
}

@media (max-width: 1399px) {

  .causes-section-s2,
  .causes-section-s3 {
    margin-top: 120px;
    padding-top: 120px;
    padding-bottom: 250px;
  }
}

@media (max-width: 991px) {

  .causes-section-s2,
  .causes-section-s3 {
    margin-top: 90px;
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {

  .causes-section-s2,
  .causes-section-s3 {
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.aidus-causes .section-title span.sub {
  display: flex;
  align-items: center;
}
.aidus-causes .section-title span.sub img{
  margin-right: 10px;
}

.causes-section-s2 .section-title,
.causes-section-s3 .section-title {
  margin-bottom: 0;
}

.causes-section-s2 .section-title p,
.causes-section-s3 .section-title p {
  color: #535353;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin-bottom: 0;
  border-left: 1px solid #F74F22;
  padding-left: 10px;
  max-width: 537px;
  margin: 30px 0;
}

.aidus-causes .section-title ul {
  padding-left: 0;
  list-style: none;
}

.causes-section-s2 .section-title ul li,
.causes-section-s3 .section-title ul li {
  color: #061408;
  font-size: 16px;
  font-weight: 500;
  line-height: 33px;
  text-transform: capitalize;
}

.causes-section-s2 .section-title ul li i,
.causes-section-s3 .section-title ul li i {
  margin-right: 10px;
  width: 17px;
  height: 17px;
  line-height: 18px;
  text-align: center;
  background: #F74F22;
  color: #fff;
  border-radius: 100px;
  display: inline-block;
  font-size: 13px;
}

.causes-section-s2 .section-title .theme-btn,
.causes-section-s2 .section-title .view-cart-btn,
.causes-section-s3 .section-title .theme-btn,
.causes-section-s3 .section-title .view-cart-btn {
  margin-top: 50px;
}

.causes-section-s2 .causes-slider-s2,
.causes-section-s3 .causes-slider-s2 {
  max-width: 1196px;
  position: absolute;
  right: -200px;
  top: 53%;
  transform: translateY(-50%);
}

@media (max-width: 1799px) {

  .causes-section-s2 .causes-slider-s2,
  .causes-section-s3 .causes-slider-s2 {
    right: -250px;
  }
}

@media (max-width: 1699px) {

  .causes-section-s2 .causes-slider-s2,
  .causes-section-s3 .causes-slider-s2 {
    right: -350px;
  }
}

@media (max-width: 1499px) {

  .causes-section-s2 .causes-slider-s2,
  .causes-section-s3 .causes-slider-s2 {
    right: -450px;
  }
}

@media (max-width: 1399px) {

  .causes-section-s2 .causes-slider-s2,
  .causes-section-s3 .causes-slider-s2 {
    position: unset;
    transform: unset;
    max-width: 991px;
    margin: 0 auto;
    margin-top: 50px;
  }
}

.causes-section-s2 .causes-slider-s2 .owl-nav,
.causes-section-s3 .causes-slider-s2 .owl-nav {
  position: absolute;
  left: 40%;
  bottom: -90px;
}

@media (max-width: 1399px) {

  .causes-section-s2 .causes-slider-s2 .owl-nav,
  .causes-section-s3 .causes-slider-s2 .owl-nav {
    left: 45%;
    bottom: 120px;
  }
}

@media (max-width: 1199px) {

  .causes-section-s2 .causes-slider-s2 .owl-nav,
  .causes-section-s3 .causes-slider-s2 .owl-nav {
    left: 40%;
    bottom: 120px;
  }
}

@media (max-width: 991px) {

  .causes-section-s2 .causes-slider-s2 .owl-nav,
  .causes-section-s3 .causes-slider-s2 .owl-nav {
    display: none;
  }
}

.causes-section-s2 .causes-slider-s2 .owl-nav button,
.causes-section-s3 .causes-slider-s2 .owl-nav button {
  width: 66px;
  height: 66px;
  line-height: 66px;
  text-align: center;
  border-radius: 100px;
  border: 1px solid #F74F22;
  background: transparent;
  transition: all 0.3s ease-in-out;
  color: #F74F22;
}

.causes-section-s2 .causes-slider-s2 .owl-nav button:hover,
.causes-section-s3 .causes-slider-s2 .owl-nav button:hover {
  background: #F74F22;
  color: #fff;
}

.causes-section-s2 .causes-slider-s2 .owl-nav .owl-prev,
.causes-section-s3 .causes-slider-s2 .owl-nav .owl-prev {
  margin-right: 25px;
}

.causes-section-s2 .causes-slider-s2 .owl-dots,
.causes-section-s3 .causes-slider-s2 .owl-dots {
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 992px) {

  .causes-section-s2 .causes-slider-s2 .owl-dots,
  .causes-section-s3 .causes-slider-s2 .owl-dots {
    display: none;
  }
}

.causes-section-s2 .causes-slider-s2 .owl-dots button,
.causes-section-s3 .causes-slider-s2 .owl-dots button {
  margin: 5px;
  border: 1px solid #F74F22;
  width: 10px;
  height: 14px;
  border-radius: 100px;
}

.causes-section-s2 .causes-slider-s2 .owl-dots button.active,
.causes-section-s3 .causes-slider-s2 .owl-dots button.active {
  background: #F74F22;
}

.causes-section-s2 .shape,
.causes-section-s3 .shape {
  position: absolute;
  left: 0;
  top: 100px;
}

@media (max-width: 1399px) {

  .causes-section-s2 .shape,
  .causes-section-s3 .shape {
    display: none;
  }
}

/*5.5  become_volunteer */
.cta-inside-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-bottom: 85px;
}

@media (max-width: 1399px) {
  .cta-inside-wrap {
    padding-bottom: 65px;
  }
}

@media (max-width: 1199px) {
  .cta-inside-wrap {
    padding-bottom: 0px;
  }
}

@media (max-width: 767px) {
  .cta-inside-wrap {
    flex-wrap: wrap;
  }
}

.become_volunteer.become_volunteer-s2 {
  padding-bottom: 0;
}

.become_volunteer .cta-content {
  width: 50%;
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 959px;
  height: 297px;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media (max-width: 767px) {

  .become_volunteer .cta-content {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }
}

.become_volunteer .cta-content::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(18, 47, 42, 0.83);
  z-index: -1;
}

.become_volunteer .cta-content h2 {
  color: #fff;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
  font-size: 38px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 27px 0 15px;
}

@media (max-width: 991px) {

  .become_volunteer .cta-content h2 {
    font-size: 30px;
  }
}

.become_volunteer .cta-content a {
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: capitalize;
}

.become_volunteer .cta-content:last-child:before {
  background: rgba(247, 79, 34, 0.83);
}

.become_volunteer .shape {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  z-index: 1;
  top: auto;
}

@media (max-width: 1399px) {
  .become_volunteer .shape {
    bottom: 30px;
  }
}

@media (max-width: 1199px) {
  .become_volunteer .shape {
    display: none;
  }
}

/*5.6 service-section-s3 */
.service-section-s3 {
  background: linear-gradient(180deg, #FFF 2.5%, #F1F0F0 102.5%);
  padding-top: 0;
}

@media (max-width: 1399px) {
  .service-section-s3 {
    padding-top: 50px;
  }
}

@media (max-width: 1199px) {
  .service-section-s3 {
    padding-top: 120px;
  }
}

@media (max-width: 991px) {
  .service-section-s3 {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .service-section-s3 {
    padding-top: 80px;
  }
}

.service-section-s3 .section-title {
  text-align: center;
}

.service-section-s3 .service-wrap {
  display: flex;
  justify-content: center;
  margin: -15px;
}

.service-section-s3 .service-wrap .service-card {
  width: 20%;
  border-radius: 11px;
  border: 1px solid rgba(164, 164, 164, 0.1);
  padding: 50px 40px;
  margin: 15px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1399px) {
  .service-section-s3 .service-wrap .service-card {
    padding: 40px 20px;
  }
}

@media (max-width: 991px) {
  .service-section-s3 .service-wrap .service-card {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .service-section-s3 .service-wrap .service-card {
    width: 100%;
  }
}

.service-section-s3 .service-wrap .service-card:hover {
  box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.06);
}

.service-section-s3 .service-wrap .service-card .icon {
  position: relative;
  width: 66px;
  height: 66px;
  z-index: 1;
}

.service-section-s3 .service-wrap .service-card .icon i {
  font-size: 45px;
  color: #F74F22;
}

.service-section-s3 .service-wrap .service-card .icon::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 46px;
  height: 46px;
  border-radius: 100px;
  background: #F8E3DB;
  z-index: -1;
}

.service-section-s3 .service-wrap .service-card h2 {
  margin-bottom: 10px;
  margin-top: 0;
}

.service-section-s3 .service-wrap .service-card h2,
.service-section-s3 .service-wrap .service-card h2 a {
  color: #061408;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {

  .service-section-s3 .service-wrap .service-card h2,
  .service-section-s3 .service-wrap .service-card h2 a {
    font-size: 16px;
    line-height: 25px;
  }
}

.service-section-s3 .service-wrap .service-card h2 a:hover {
  color: #F74F22;
}

.service-section-s3 .service-wrap .service-card span {
  color: #535353;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  display: block;
}

.service-section-s3 .service-wrap .service-card a {
  color: #F74F22;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 36px;
  text-transform: capitalize;
  position: relative;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {
  .service-section-s3 .service-wrap .service-card a {
    font-size: 16px;
    line-height: 25px;
  }
}

.service-section-s3 .service-wrap .service-card a i {
  transform: rotate(315deg);
  font-size: 15px;
  position: absolute;
  right: -40px;
  transition: all 0.3s ease-in-out;
}

.service-section-s3 .service-wrap .service-card a:hover i {
  transform: none;
}

.service-section-s3 .service-wrap>.service-card:nth-child(2) .icon i {
  color: #F6A10C;
}

.service-section-s3 .service-wrap>.service-card:nth-child(2) .icon::after {
  background: #F9EDD8;
}

.service-section-s3 .service-wrap>.service-card:nth-child(3) .icon i {
  color: #17C6D8;
}

.service-section-s3 .service-wrap>.service-card:nth-child(3) .icon::after {
  background: #E4EEEF;
}

.service-section-s3 .service-wrap>.service-card:last-child .icon i {
  color: #35DA4E;
}

.service-section-s3 .service-wrap>.service-card:last-child .icon::after {
  background: #E4F1E6;
}

/*5.7 GetQuate-section */
.GetQuate-section {
  position: relative;
  z-index: 1;
  background: #F1EBE9;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .GetQuate-section {
    background: #222325;
  }
}

@media (max-width: 991px) {
  .GetQuate-section .left-wrap {
    margin-bottom: 20px;
  }
}

.GetQuate-section .left-wrap h2 {
  color: #F74F22;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
  font-size: 18px;
  font-weight: 600;
}

.GetQuate-section .left-wrap h2 img {
  margin-top: -5px;
  margin-right: 10px;
}

.GetQuate-section .left-wrap h3 {
  color: #fff;
  font-size: 55px;
  font-weight: 800;
  line-height: 61px;
  text-transform: capitalize;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .GetQuate-section .left-wrap h3 {
    font-size: 44px;
    line-height: 59px;
  }
}

.GetQuate-section .left-wrap h3 span {
  position: relative;
  color: #FBAD17;
}

.GetQuate-section .left-wrap h3 span::before {
  position: absolute;
  left: 0;
  bottom: -70px;
  content: "";
  height: 100%;
  width: 100%;
}

@media (max-width: 757px) {
  .GetQuate-section .left-wrap h3 span::before {
    display: none;
  }
}

.GetQuate-section .left-wrap p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  display: block;
  max-width: 581px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  padding: 25px;
  position: relative;
  margin-bottom: 70px;
}

.GetQuate-section .left-wrap p::before {
  position: absolute;
  left: 0;
  content: "";
  top: 50%;
  background: #F74F22;
  width: 10px;
  height: 10px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.GetQuate-section .left-wrap p::after {
  position: absolute;
  left: -2px;
  content: "";
  top: 0;
  background: #F74F22;
  width: 3px;
  height: 100%;
}

.GetQuate-section .left-wrap .icontext {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 0;
}

@media (max-width: 575px) {
  .GetQuate-section .left-wrap .icontext {
    display: block;
  }
}

.GetQuate-section .left-wrap .icontext li {
  color: #FFF;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.54px;
  max-width: 250px;
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 20px;
}

.GetQuate-section .left-wrap .icontext li i {
  font-size: 40px;
  color: #F74F22;
  padding-right: 10px;
}

.GetQuate-section .left-wrap .op-item {
  display: flex;
  align-items: center;
  padding-left: 0;
}

@media (max-width: 575px) {
  .GetQuate-section .left-wrap .op-item {
    display: block;
  }
}

.GetQuate-section .left-wrap .op-item li {
  max-width: 250px;
  display: flex;
  align-items: center;
  margin-right: 25px;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}

@media (max-width: 1199px) {
  .GetQuate-section .left-wrap .op-item li {
    margin-right: 0px;
  }
}

@media (max-width: 575px) {
  .GetQuate-section .left-wrap .op-item li {
    margin-bottom: 10px;
  }
}

.GetQuate-section .left-wrap .op-item li i {
  font-size: 18px;
  color: #F74F22;
  padding-right: 5px;
}

.GetQuate-section .bg-shape {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 70%;
  z-index: -1;
}

@media (max-width: 1599px) {
  .GetQuate-section .bg-shape {
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .GetQuate-section .bg-shape {
    display: none;
  }
}

.GetQuate-section .bg-shape .shape1 {
  position: absolute;
  left: 0;
  top: 0;
}

.GetQuate-section .bg-shape .shape2 {
  position: absolute;
  left: 50px;
  bottom: 100px;
  animation: zoom-in-zoom-out 2s ease infinite;
}

.GetQuate-section .bg-shape .shape3 {
  position: absolute;
  right: 200px;
  bottom: 0;
}

.GetQuate-section .right-img {
  position: absolute;
  max-width: 518px;
  right: 50px;
  bottom: 0;
}

@media (max-width: 1199px) {
  .GetQuate-section .right-img {
    display: none;
  }
}

.donation-from {
  max-width: 520px;
  border-radius: 24px;
  border: 2px solid #F74F22;
  background: #fff;
  padding: 35px 30px;
  padding-right: 50px;
  position: relative;
  z-index: 1;
  margin-left: 80px;
}

@media (max-width: 1399px) {
  .donation-from {
    margin-left: 0px;
  }
}

@media (max-width: 1199px) {
  .donation-from {
    padding: 70px 30px;
    padding-right: 30px;
  }
}

.donation-from h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 35px;
  margin-top: 0;
}

.donation-from .progress-wrap {
  padding-bottom: 20px;
}

.donation-from .progress-item {
  position: relative;
}

.donation-from .progress-item .progress {
  border-radius: 16px;
  background: #fff;
  height: 16px;
}

.donation-from .progress-item .progress .bar {
  position: relative;
  float: left;
  min-width: 1%;
  height: 16px;
  background: #F74F22;
  z-index: 1;
  border-radius: 30px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.donation-from .progress-item .cssProgress-label {
  position: absolute;
  right: 49%;
  top: -27px;
  color: #F74F22;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.donation-from .progress-item .cssProgress-label::after {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 1;
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 100px;
  background: #F74F22;
}

.donation-from .progress-item .cssProgress-label::before {
  position: absolute;
  top: 24px;
  left: 4px;
  z-index: 11;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background: #fff;
}

.aidus-quote .donation-from p{
  margin-top: 30px;
}

.donation-from ul {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.donation-from ul li {
  position: relative;
}

.donation-from ul li .title {
  color: #000;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.donation-from ul li span {
  color: #000;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.donation-from .donate-amount {
  padding-top: 60px;
  margin: -10px;
}

.donation-from #give-donation-level-button-wrap {
	flex-wrap:wrap;
	justify-content:flex-start;
	margin-bottom:0;
}

.donation-from #give-donation-level-button-wrap li .give-btn{
    color: #000;
    font-family: "Nunito", sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30.5px;
    border: 1px solid #F0F1F2;
    background: #FFF;
    padding: 8px 15px;
    text-align: center;
}

.donation-from #give-donation-level-button-wrap li .give-btn.give-default-level {
  background: #F74F22;
  color: #fff;
}

.donation-from form[id*=give-form] #give-gateway-radio-list {
	justify-content:flex-start;
	margin-bottom: 0;
}

.donation-from form[id*=give-form] #give-gateway-radio-list li:last-child{
	display:none;
}

.donation-from form[id*=give-form] legend {
	padding-bottom: 10px;
}
.donation-from .give-payment-mode-select {
	margin-bottom:0;
}
.donation-from #give_purchase_form_wrap{
	padding-top:10px;
	margin-top:10px;
	border-top: 1px solid rgba(0, 0, 0, .1);
}

.donation-from #give_purchase_form_wrap p{
	margin-top:0;
}

 
.donation-from form[id*=give-form] .give-donation-amount #give-amount {
	border-top-right-radius:20px;
	border-bottom-right-radius:20px;
}
.donation-from form[id*=give-form] .give-donation-amount #give-amount:focus{
	outline:none;
}

.donation-from .give-btn {
	padding: 10px 30px;
	background: #F74F22;
    color: #fff;
	border-radius:40px;
	border:0;
}
.donation-from .give-btn:hover {
	background: #e54216;
}

.donation-from .addAmount-value {
  color: #000;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30.5px;
  border: 1px solid #F0F1F2;
  background: #FFF;
  padding: 10px 25px;
  padding-bottom: 8px;
  max-width: 150px;
  margin: 20px 0;
  text-align: center;
}

.donation-from .theme-btn,
.donation-from .view-cart-btn {
  padding: 12px 30px;
}

/* 5.8 volunteer-section*/
.volunteer-section .all-btn,
.volunteer-section-s2 .all-btn {
  margin-top: 20px;
  text-align: center;
}

.volunteer-section.volunteer-section-s3,
.volunteer-section-s2.volunteer-section-s3 {
  padding-bottom: 90px;
}

@media (max-width: 991px) {

  .volunteer-section.volunteer-section-s3,
  .volunteer-section-s2.volunteer-section-s3 {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {

  .volunteer-section.volunteer-section-s3,
  .volunteer-section-s2.volunteer-section-s3 {
    padding-bottom: 50px;
  }
}

.vol-card {
  margin-bottom: 30px;
}

.vol-card .image {
  position: relative;
  z-index: 1;
}

.vol-card .image img {
  width: 100%;
  border-radius: 30px;
}

.vol-card .image .hover-icon {
  width: 68px;
  height: 68px;
  text-align: center;
  line-height: 68px;
  border-radius: 0px 8px 0px 0px;
  background: #F74F22;
  display: block;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.vol-card .image .hover-icon i {
  text-align: center;
  font-size: 25px;
}

.vol-card .image ul {
  position: absolute;
  left: 40px;
  bottom: 0;
  max-width: 172px;
  background: #fff;
  padding: 0 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.vol-card .image ul li {
  display: inline-block;
}

.vol-card .image ul li a {
  padding: 8px 8px;
  display: block;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {
  .vol-card .image ul li a {
    padding: 8px 5px;
  }
}

.vol-card .image ul li a:hover i {
  color: #F74F22;
}

.vol-card .image ul li i {
  font-size: 15px;
  color: #535353;
}

.vol-card:hover .hover-icon {
  background: #FFA400;
}

.vol-card:hover ul {
  opacity: 1;
  visibility: visible;
  left: 65px;
}

.vol-card .text {
  text-align: center;
  padding: 25px 0;
  padding-bottom: 0px;
}

.vol-card .text h3 {
  margin: 0;
  margin-bottom: 10px;
}

.vol-card .text h3 a {
  color: #061408;
  font-family: "Nunito", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}

.vol-card .text span {
  color: #F74F22;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* 5.9 project-section */
.project-section-s2,
.project-section-s3 {
  position: relative;
  overflow: hidden;
}

@media (max-width: 1199px) {

  .project-section-s2,
  .project-section-s3 {
    background: #222325;
  }
}

.project-section-s2 .bg-shape,
.project-section-s3 .bg-shape {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: -1;
}

.project-section-s2 .section-title h2,
.project-section-s3 .section-title h2 {
  color: #fff;
}

.project-section-s2 .project-card,
.project-section-s3 .project-card {
  margin-bottom: -40px;
}

@media (max-width: 757px) {

  .project-section-s2 .project-card,
  .project-section-s3 .project-card {
    margin-bottom: 0px;
  }
}

.project-section-s2 .project-card img,
.project-section-s3 .project-card img {
  border-radius: 10px;
}

.project-section-s2 .project-card .content,
.project-section-s3 .project-card .content {
  opacity: 1;
  visibility: visible;
  position: relative;
  bottom: -30px;
  box-shadow: 0px 4px 21px 1px transparent;
}

.project-section-s2 .owl-item.active.center .content,
.project-section-s3 .owl-item.active.center .content {
  border-radius: 11px;
  box-shadow: 0px 4px 21px 1px rgba(0, 0, 0, 0.08);
}

.project-section-s2 .owl-nav,
.project-section-s3 .owl-nav {
  display: none;
}

.project-section-s2 .project-slider-s2,
.project-section-s3 .project-slider-s2 {
  padding: 0 70px;
}

@media (max-width: 1599px) {

  .project-section-s2 .project-slider-s2,
  .project-section-s3 .project-slider-s2 {
    padding: 0 20px;
  }
}

.project-section-s2 .owl-dots,
.project-section-s3 .owl-dots {
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 992px) {

  .project-section-s2 .owl-dots,
  .project-section-s3 .owl-dots {
    display: none;
  }
}

.project-section-s2 .owl-dots button,
.project-section-s3 .owl-dots button {
  margin: 5px;
  border: 1px solid #F74F22;
  width: 10px;
  height: 14px;
  border-radius: 100px;
}

.project-section-s2 .owl-dots button.active,
.project-section-s3 .owl-dots button.active {
  background: #F74F22;
}

.project-section-s3 .bg-shape {
  position: absolute;
  top: 0px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 500px;
  background: #222325;
}

/*5.10 testimonial-section-s2 */
.testimonial-section-s2 {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

@media (max-width: 1199px) {
  .testimonial-section-s2 {
    padding-top: 120px;
  }
}

@media (max-width: 767px) {
  .testimonial-section-s2 {
    padding-top: 80px;
  }
}

.testimonial-section-s2 .image {
  max-width: 428px;
  max-height: 519px;
  width: 428px;
  display: inline-block;
}

@media (max-width: 767px) {
  .testimonial-section-s2 .image {
    width: 100%;
  }
}

.testimonial-section-s2 .image .item {
  position: relative;
}

.testimonial-section-s2 .image .item img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonial-section-s2 .image .feedback {
  padding: 15px 24px;
  background: #F74F22;
  text-align: center;
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  line-height: 29px;
  display: inline-block;
  position: absolute;
  left: -66px;
  bottom: 135px;
  transform: rotate(270deg);
  display: flex;
}

@media (max-width: 575px) {
  .testimonial-section-s2 .image .feedback {
    display: none;
  }
}

.testimonial-section-s2 .image .feedback img {
  margin-right: 15px;
}

.testimonial-section-s2 .content-wrap {
  width: calc(100% - 435px);
  display: inline-block;
  padding-left: 95px;
  text-align: left;
}

@media (max-width: 1399px) {
  .testimonial-section-s2 .content-wrap {
    padding-left: 30px;
  }
}

@media (max-width: 1199px) {
  .testimonial-section-s2 .content-wrap {
    padding-top: 80px;
  }
}

@media (max-width: 991px) {
  .testimonial-section-s2 .content-wrap {
    padding-left: 0px;
    width: 100%;
    margin-top: 0;
  }
}

.testimonial-section-s2 .content-wrap h2 {
  color: #18322E;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 1.76px;
  text-decoration-line: underline;
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
  display: inline-block;
}

@media (max-width: 1399px) {
  .testimonial-section-s2 .content-wrap h2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
  }
}

@media (max-width: 767px) {
  .testimonial-section-s2 .content-wrap h2 {
    font-size: 13px;
  }
}

.testimonial-section-s2 .content-wrap h2::before {
  position: absolute;
  left: 0;
  top: 45%;
  width: 14px;
  height: 16px;
  transform: translateY(-50%);
}

.testimonial-section-s2 .content-wrap h3 {
  text-transform: capitalize;
  color: #061408;
  font-family: "Nunito", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 55px;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .testimonial-section-s2 .content-wrap h3 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-s2 .content-wrap h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-s2 .content {
    padding-bottom: 50px;
  }
}

.testimonial-section-s2 .content p {
  margin-bottom: 35px;
  color: #6D6767;
  font-family: "Nunito", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 51px;
  letter-spacing: -0.9px;
}

@media (max-width: 1399px) {
  .testimonial-section-s2 .content p {
    font-size: 25px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-s2 .content p {
    font-size: 20px;
    line-height: 30px;
  }
}

.testimonial-section-s2 .content .client-name {
  border-top: 1px solid rgba(24, 24, 94, 0.1);
  padding-top: 40px;
}

.testimonial-section-s2 .content .client-name h4 {
  color: #061408;
  font-family: "Nunito", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.66px;
  margin: 0;
  display: inline;
}

.testimonial-section-s2 .content .client-name span {
  display: inline;
  font-size: 14px;
  font-weight: 400;
  color: #FF7236;
  font-size: 14px;
  font-weight: 500;
}

.testimonial-section-s2 .slick-arrow {
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: -30px;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.13);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.testimonial-section-s2 .slick-arrow.slick-prev,
.testimonial-section-s2 .slick-arrow.slick-next {
  right: 80px;
}

.testimonial-section-s2 .slick-arrow.slick-prev::after,
.testimonial-section-s2 .slick-arrow.slick-next::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "\e629";
  font-family: 'themify';
  font-size: 15px;
  color: rgb(8, 17, 45);
  transition: all 0.3s ease-in-out;
}

.testimonial-section-s2 .slick-arrow.slick-prev::before,
.testimonial-section-s2 .slick-arrow.slick-next::before {
  display: none;
}

.testimonial-section-s2 .slick-arrow.slick-next {
  right: 0;
}

.testimonial-section-s2 .slick-arrow.slick-next::after {
  content: "\e628";
}

.testimonial-section-s2 .slick-arrow.slick-next::before {
  display: none;
}

.testimonial-section-s2 .slick-arrow:hover {
  background: rgb(6, 45, 53);
}

.testimonial-section-s2 .slick-arrow:hover::after {
  color: #061408;
}

.testimonial-section-s2 .slick-list {
  overflow: visible;
}

.testimonial-section-s2 .image .feedback {
  padding: 0;
  transform: unset;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  display: block;
  border-radius: 100px;
  left: auto;
  right: 139px;
  top: -26px;
  bottom: auto;
}

@media (max-width: 1199px) {
  .testimonial-section-s2 .image .feedback {
    right: 50px;
  }
}

@media (max-width: 991px) {
  .testimonial-section-s2 .image .feedback {
    width: 60px;
    height: 60px;
    line-height: 60px;
    right: 80px;
    top: 0px;
  }
}

@media (max-width: 767px) {
  .testimonial-section-s2 .image .feedback {
    width: 60px;
    height: 60px;
    line-height: 60px;
    right: -15px;
    top: 0px;
  }
}

.testimonial-section-s2 .image .feedback i {
  font-size: 45px;
}

@media (max-width: 767px) {
  .testimonial-section-s2 .image .feedback i {
    font-size: 30px;
  }
}

.testimonial-section-s2 .image .item ul {
  border-radius: 22px;
  background: #FFF;
  width: 189px;
  text-align: center;
  position: absolute;
  left: 35%;
  bottom: -70px;
  transform: translateX(-50%);
  border-radius: 22px;
  border: 1px solid #E1E1E1;
  padding-left: 0;
}

@media (max-width: 1199px) {
  .testimonial-section-s2 .image .item ul {
    left: 45%;
  }
}

.testimonial-section-s2 .image .item ul li {
  display: inline-block;
}

.testimonial-section-s2 .image .item ul li i {
  font-size: 16px;
  color: #FF8C22;
  padding: 9px 3px;
  display: block;
}

.testimonial-section-s2 .image .item img {
  width: 300px;
  height: 300px;
  border-radius: 300px;
  background: #D9D9D9;
}

@media (max-width: 575px) {
  .testimonial-section-s2 .image .item img {
    height: 100%;
  }
}

@media (max-width: 1199px) {
  .testimonial-section-s2 .image {
    width: 340px;
  }
}

.testimonial-section-s2 .content-wrap {
  width: calc(100% - 460px);
  padding-left: 0;
}

@media (max-width: 1199px) {
  .testimonial-section-s2 .content-wrap {
    width: calc(100% - 340px);
  }
}

@media (max-width: 991px) {
  .testimonial-section-s2 .content-wrap {
    width: 100%;
    display: block;
  }
}

.testimonial-section-s2 .slick-arrow:hover {
  background: #F74F22;
}

.testimonial-section-s2 .slick-arrow:hover::after {
  color: #fff;
}

.testimonial-section-s2 .shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 991px) {
  .testimonial-section-s2 .shape {
    display: none;
  }
}

.testimonial-section-s2 .shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -11;
  animation: zoom-in-zoom-out 2s ease infinite;
}

@media (max-width: 991px) {
  .testimonial-section-s2 .shape-2 {
    display: none;
  }
}

/*5.11 gallery-section-s2 */
.gallery-section-s2 {
  position: relative;
}

.gallery-section-s2::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: #122F2A;
  z-index: -1;
}

.gallery-section-s2 .section-title {
  text-align: center;
}

.gallery-section-s2 .section-title span {
  color: #F74F22;
}

.gallery-section-s2 .section-title span img {
  margin-top: -15px;
  padding-right: 10px;
}

.gallery-section-s2 .line-in {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

/*5.12 cta-section-s2 */
.cta-section-s2 {
  position: relative;
  padding: 100px 0;
}

@media (max-width: 767px) {
  .cta-section-s2 {
    padding: 90px 0;
  }
}

.cta-section-s2 .content h2 {
  color: #fff;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
  font-size: 18px;
  font-weight: 600;
}

.cta-section-s2 .content h2 img {
  margin-top: -5px;
  margin-right: 10px;
}

.cta-section-s2 .content h3 {
  color: #fff;
  font-size: 55px;
  font-weight: 800;
  line-height: 61px;
  text-transform: capitalize;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .cta-section-s2 .content h3 {
    margin-bottom: 20px;
    font-size: 44px;
    line-height: 59px;
  }
}

@media (max-width: 575px) {
  .cta-section-s2 .content h3 {
    font-size: 35px;
    line-height: 45px;
  }
}

.cta-section-s2 .content h3 span {
  position: relative;
  color: #FBAD17;
}

.cta-section-s2 .content h3 span::before {
  position: absolute;
  left: 0;
  bottom: -70px;
  content: "";
  height: 100%;
  width: 100%;
}

@media (max-width: 757px) {
  .cta-section-s2 .content h3 span::before {
    display: none;
  }
}

.cta-section-s2 .all-btn {
  text-align: end;
}

@media (max-width: 991px) {
  .cta-section-s2 .all-btn {
    text-align: left;
  }
}

.cta-section-s2 .all-btn .theme-btn,
.cta-section-s2 .all-btn .view-cart-btn {
  background: #fff;
  color: #061408;
}

.cta-section-s2 .all-btn .theme-btn i,
.cta-section-s2 .all-btn .view-cart-btn i {
  position: relative;
  bottom: -2px;
  right: -10px;
}

@media (max-width: 757px) {

  .cta-section-s2 .all-btn .theme-btn i,
  .cta-section-s2 .all-btn .view-cart-btn i {
    display: none;
  }
}

.cta-section-s2 .all-btn .theme-btn:hover,
.cta-section-s2 .all-btn .view-cart-btn:hover {
  color: #fff;
}

/* 5.13 partners-section-s2 */
.partners-section-s2 {
  position: relative;
  margin-top: -100px;
}

@media (max-width: 991px) {
  .partners-section-s2 {
    margin: 0;
    padding-bottom: 90px;
  }
}

.partners-section-s2 .wraper {
  border-radius: 17px;
  background: #FFF;
  box-shadow: 0px 4px 14px -3px rgba(172, 172, 172, 0.25);
  padding: 70px 50px;
  padding-bottom: 20px;
}

@media (max-width: 575px) {
  .partners-section-s2 .wraper {
    padding: 50px 20px;
    padding-bottom: 10px;
  }
}

.partners-section-s2 .wraper .title {
  text-align: center;
  margin: 0 auto;
}

.partners-section-s2 .wraper .title h4 {
  color: #475467;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 0;
  display: inline-block;
  position: relative;
}

.partners-section-s2 .wraper .title h4::before {
  position: absolute;
  content: "";
  background: #D9D9D9;
  max-width: 370px;
  width: 100%;
  height: 1px;
  left: -284px;
  top: 12px;
}

@media (max-width: 991px) {
  .partners-section-s2 .wraper .title h4::before {
    display: none;
  }
}

.partners-section-s2 .wraper .title h4::after {
  position: absolute;
  content: "";
  background: #D9D9D9;
  max-width: 370px;
  width: 100%;
  height: 1px;
  right: -284px;
  top: 12px;
}

@media (max-width: 991px) {
  .partners-section-s2 .wraper .title h4::after {
    display: none;
  }
}

.partners-section-s2 .partners-slider-s2 .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-section-s2 .partners-slider-s2 ul li {
  display: flex;
  align-items: center;
  height: 150px;
  text-align: center;
  justify-content: center;
}

@media (max-width: 757px) {
  .partners-section-s2 .partners-slider-s2 ul li {
    height: 120px;
  }
}

.partners-section-s2 .partners-slider-s2 ul .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-section-s2 .partners-slider-s2 ul .slick-slide img {
  width: auto;
  margin: 0 auto;
}

.partners-section-s2 .slick-initialized .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}

/*5.14 blog-section-s2 */
.blog-section-s2 {
  background: #F1EBE9;
  padding: 310px 0;
  margin-top: -180px;
}

@media (max-width: 991px) {
  .blog-section-s2 {
    padding: 90px 0;
    margin-top: 0px;
  }
}

.blog-section-s2 .owl-nav {
  display: none;
}

.blog-section-s2 .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.blog-section-s2 .owl-dots button {
  margin: 0 10px;
  border: none;
  width: 8px;
  height: 12px;
  border-radius: 100px;
  background: #D6D1D1;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.blog-section-s2 .owl-dots button::before {
  position: absolute;
  left: -6px;
  top: -6px;
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .blog-section-s2 .owl-dots button::before {
    left: -6px;
  }
}

.blog-section-s2 .owl-dots button.active {
  background: #FF7236;
}

.blog-section-s2 .owl-dots button.active::before {
  border: 1px solid #F94E41;
}

.blog-card-s2 {
  margin-bottom: 30px;
}

.blog-card-s2 img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

@media (max-width: 575px) {
  .blog-card-s2 img {
    min-height: 250px;
  }
}

.blog-card-s2 .content {
  border-radius: 7px;
  background: #fff;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  padding: 25px;
  max-width: 348px;
  margin: 0 auto;
  margin-top: -100px;
  z-index: 11;
  position: relative;
}

@media (max-width: 575px) {
  .blog-card-s2 .content {
    margin-top: 0;
    max-width: 100%;
    border-radius: 0;
    padding: 25px 10px;
  }
}

.blog-card-s2 .content ul {
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.blog-card-s2 .content ul li {
  display: inline-block;
  color: #535353;
  font-size: 15px;
  font-weight: 400;
  padding: 0px 10px;
}

@media (max-width: 575px) {
  .blog-card-s2 .content ul li {
    padding: 0px 5px;
  }
}

.blog-card-s2 .content ul li:first-child {
  padding-left: 0;
}

.blog-card-s2 .content ul li i {
  color: #F74F22;
  padding-right: 10px;
}

.blog-card-s2 .content h3 {
  margin: 10px 0;
}

.blog-card-s2 .content h3 a {
  color: #061408;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
}

.blog-card-s2 .content .b-btn a {
  color: #061408;
  font-size: 15px;
  font-weight: 500;
  line-height: 31px;
}

.blog-card-s2 .content .b-btn a i {
  margin-left: 10px;
  width: 17px;
  height: 17px;
  line-height: 17px;
  background: #F74F22;
  border-radius: 100px;
  display: inline-block;
  color: #fff;
  font-size: 7px;
  text-align: center;
}

.content ul li a {
  color: #535353;
}

/*5.15 cta-section-s3 */
.cta-section-s3 {
  position: relative;
  margin-top: -180px;
  margin-bottom: -155px;
  z-index: 11;
}

@media (max-width: 991px) {
  .cta-section-s3 {
    padding: 90px 0;
    margin: 0;
  }
}

.cta-section-s3 .cta-wrap {
  border-radius: 19px;
  background: #18322E;
  padding: 60px 75px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 991px) {
  .cta-section-s3 .cta-wrap {
    padding: 50px 40px;
  }
}

@media (max-width: 575px) {
  .cta-section-s3 .cta-wrap {
    padding: 30px 15px;
  }
}

.cta-section-s3 .cta-wrap .content h2 {
  color: #F74F22;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .cta-section-s3 .cta-wrap .content h2 {
    font-size: 16px;
  }
}

.cta-section-s3 .cta-wrap .content h2 img {
  margin-top: -5px;
  margin-right: 10px;
}

.cta-section-s3 .cta-wrap .content h3 {
  color: #fff;
  font-size: 55px;
  font-weight: 800;
  line-height: 61px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

@media (max-width: 1399px) {
  .cta-section-s3 .cta-wrap .content h3 {
    font-size: 49px;
    line-height: 60px;
  }
}

@media (max-width: 991px) {
  .cta-section-s3 .cta-wrap .content h3 {
    margin-bottom: 20px;
    font-size: 35px;
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .cta-section-s3 .cta-wrap .content h3 {
    margin-bottom: 20px;
    font-size: 44px;
    line-height: 59px;
  }
}

@media (max-width: 575px) {
  .cta-section-s3 .cta-wrap .content h3 {
    font-size: 30px;
    line-height: 41px;
  }
}

.cta-section-s3 .cta-wrap .content ul li {
  display: inline-block;
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  padding-right: 15px;
}

.cta-section-s3 .cta-wrap .content ul li i {
  color: #F74F22;
  bottom: -4px;
  position: relative;
  padding-right: 10px;
}

.cta-section-s3 .cta-wrap .all-btn {
  text-align: end;
}

@media (max-width: 991px) {
  .cta-section-s3 .cta-wrap .all-btn {
    text-align: left;
    margin-top: 20px;
  }
}

.cta-section-s3 .cta-wrap .all-btn .theme-btn,
.cta-section-s3 .cta-wrap .all-btn .view-cart-btn {
  background: #fff;
  color: #061408;
}

.cta-section-s3 .cta-wrap .all-btn .theme-btn i,
.cta-section-s3 .cta-wrap .all-btn .view-cart-btn i {
  position: relative;
  bottom: -2px;
  right: -10px;
}

@media (max-width: 757px) {

  .cta-section-s3 .cta-wrap .all-btn .theme-btn i,
  .cta-section-s3 .cta-wrap .all-btn .view-cart-btn i {
    display: none;
  }
}

.cta-section-s3 .cta-wrap .all-btn .theme-btn::after,
.cta-section-s3 .cta-wrap .all-btn .view-cart-btn::after {
  background: #F74F22;
}

.cta-section-s3 .cta-wrap .all-btn .theme-btn:hover,
.cta-section-s3 .cta-wrap .all-btn .view-cart-btn:hover {
  color: #fff;
}

.cta-section-s3 .cta-wrap .shape {
  position: absolute;
  left: 0;
  bottom: 0;
  animation: leafAniamtion 12s ease-in infinite;
}

@media (max-width: 767px) {
  .cta-section-s3 .cta-wrap .shape {
    display: none;
  }
}

.cta-section-s3 .cta-wrap .shape1 {
  position: absolute;
  left: 66%;
  top: 45%;
  z-index: -1;
  animation: zoom-in-zoom-out 2s ease infinite;
}

@media (max-width: 767px) {
  .cta-section-s3 .cta-wrap .shape1 {
    display: none;
  }
}

/* 6. Home-style-3 */
/* 6.1 features-section */
.features-section {
  position: relative;
  margin-top: -65px;
  z-index: 1;
}

@media (max-width: 991px) {
  .features-section {
    margin-top: 90px;
  }
}

@media (max-width: 767px) {
  .features-section {
    margin-top: 80px;
  }
}

.features-section .wraper {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 11px 23px 0px rgba(0, 0, 0, 0.05);
  padding: 30px 25px;
}

@media (max-width: 991px) {
  .features-section .wraper {
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .features-section .wraper {
    padding: 20px 20px;
    padding-bottom: 0;
  }
}

.features-section .feature-card {
  border-radius: 9px;
  background: #F6F6F6;
  padding: 30px 20px;
  display: flex;
  align-items: center;
}

@media (max-width: 1399px) {
  .features-section .feature-card {
    flex-direction: column-reverse;
    align-items: start;
  }
}

@media (max-width: 991px) {
  .features-section .feature-card {
    margin-bottom: 30px;
  }
}

.features-section .feature-card .content {
  width: calc(100% - 100px);
  padding-right: 0px;
}

@media (max-width: 1399px) {
  .features-section .feature-card .content {
    width: 100%;
  }
}

.features-section .feature-card .content h2 {
  color: #F74F22;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.features-section .feature-card .content h2 img {
  width: 29px;
  height: 29px;
  position: relative;
  margin-top: -10px;
  margin-right: 10px;
}

.features-section .feature-card .content h3 {
  color: #061408;
  font-size: 24px;
  font-weight: 800;
  line-height: 29px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .features-section .feature-card .content h3 {
    font-size: 20px;
  }
}

.features-section .feature-card .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: #fff;
  border-radius: 100px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1399px) {
  .features-section .feature-card .icon {
    margin-bottom: 30px;
  }
}

.features-section .feature-card .icon i {
  font-size: 50px;
  color: #18322E;
  transition: all 0.3s ease-in-out;
}

.features-section .feature-card:hover .icon {
  background: #F74F22;
}

.features-section .feature-card:hover .icon i {
  color: #fff;
}

/* 6.2 about-section-s3*/
.about-section-s3 {
  padding-bottom: 220px;
}

@media (max-width: 991px) {
  .about-section-s3 {
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .about-section-s3 {
    padding-bottom: 80px;
  }
}

.about-section-s3 .about-image {
  max-width: 532px;
  position: relative;
  margin-top: -50px;
}

@media (max-width: 991px) {
  .about-section-s3 .about-image {
    margin-top: 0;
    margin-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .about-section-s3 .about-image {
    margin-bottom: 50px;
  }
}

.about-section-s3 .about-image .image1 {
  position: relative;
}

.about-section-s3 .about-image .image1::before {
  display: none;
}

.about-section-s3 .about-image .image1::after {
  display: none;
}

.about-section-s3 .about-image .image1 img {
  border-radius: 7px;
  border: 12px solid #FFF;
  box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.15);
  max-width: 404px;
  max-height: 509px;
  width: 100%;
  height: 100%;
}

.about-section-s3 .about-image .image2 {
  border-radius: 9px;
  position: absolute;
  right: 0;
  bottom: -90px;
}

@media (max-width: 575px) {
  .about-section-s3 .about-image .image2 {
    display: none;
  }
}

.about-section-s3 .about-image .image2 img {
  max-width: 318px;
  max-height: 253px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 9px solid #FFF;
  box-shadow: 0px 5px 9px 0px rgba(0, 0, 0, 0.17);
}

.about-section-s3 .about-image .image2 .shape {
  position: absolute;
  bottom: -27px;
  right: -40px;
  z-index: -1;
}

@media (max-width: 1199px) {
  .about-section-s3 .about-image .image2 .shape {
    display: none;
  }
}

.about-section-s3 .about-image .image2 .shape img {
  border-radius: 0px;
  border: 0px solid transparent;
  box-shadow: 0px 5px 9px 0px transparent;
}

.about-section-s3 .about-image .image3 {
  position: absolute;
  right: 0;
  top: 20px;
}

@media (max-width: 575px) {
  .about-section-s3 .about-image .image3 {
    display: none;
  }
}

.about-section-s3 .about-image .image3 img {
  max-width: 213px;
  max-height: 217px;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  border: 9px solid #FFF;
  box-shadow: 0px 8px 14px 0px rgba(0, 0, 0, 0.13);
}

.about-section-s3 .dog-sidimg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  animation: leafAniamtion 16s ease-in infinite;
}

@media (max-width: 991px) {
  .about-section-s3 .dog-sidimg {
    display: none;
  }
}

.about-section-s3 .right-content {
  margin-top: 0;
}

@media (max-width: 991px) {
  .about-section-s3 .right-content {
    margin-top: 50px;
  }
}

@media (max-width: 575px) {
  .about-section-s3 .right-content {
    margin-top: 0px;
  }
}

.about-section-s3 .right-content h3 span {
  color: #FBAD17;
  position: relative;
}

/*6.3 funfact-section */
.funfact-section-s2 {
  position: relative;
  margin-top: -110px;
  margin-bottom: -130px;
  z-index: 1;
}

@media (max-width: 991px) {
  .funfact-section-s2 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

.funfact-section-s2 .wraper {
  background: #F74F22;
  box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

@media (max-width: 991px) {
  .funfact-section-s2 .wraper {
    padding-top: 35px;
  }
}

.funfact-section-s2 .wraper .col:last-child .item::before {
  display: none;
}

@media (max-width: 991px) {
  .funfact-section-s2 .wraper .col:nth-child(2) .item::before {
    display: none;
  }
}

.funfact-section-s2 .wraper .item {
  text-align: center;
  color: #fff;
  padding: 45px 0;
  position: relative;
}

@media (max-width: 991px) {
  .funfact-section-s2 .wraper .item {
    padding: 0;
    padding-bottom: 35px;
  }
}

.funfact-section-s2 .wraper .item::before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 35px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
  .funfact-section-s2 .wraper .item::before {
    display: none;
  }
}

.funfact-section-s2 .wraper .item i {
  font-size: 56px;
  line-height: 60px;
}

.funfact-section-s2 .wraper .item h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
  color: #fff;
}

.funfact-section-s2 .wraper .item h2 span {
  color: #fff;
  font-family: "Nunito", sans-serif;
}

.funfact-section-s2 .wraper .item p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  color: #fff;
}

/*6.4 service-section-s4 */
.service-section-s4,
.service-section-s5 {
  background: #F9F4F2;
  position: relative;
  padding-top: 30px;
}

.section-title-s2 {
  text-align: left;
  margin-bottom: 0;
}

.section-title-s2 span img {
  margin-top: -15px;
  position: relative;
  margin-right: 10px;
}

.section-title-s2 h2 span {
  position: relative;
  color: #FBAD17;
}

@media (max-width: 991px) {
  .section-title-s2 h2 {
    margin-bottom: 40px;
  }
}

.section-title-s3 {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
}

.section-title-s2 h2 span::before {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  content: "";
  height: 100%;
  z-index: 1;
}

@media (max-width: 767px) {

  .service-section-s4 .section-title h2 span::before,
  .service-section-s5 .section-title h2 span::before {
    display: none;
  }
}

.service-section-s4 .service-btn,
.service-section-s5 .service-btn {
  text-align: end;
}

@media (max-width: 991px) {

  .service-section-s4 .service-btn,
  .service-section-s5 .service-btn {
    text-align: left;
    margin-top: 20px;
  }
}

.service-section-s4 .service-card-s2,
.service-section-s5 .service-card-s2 {
  margin-bottom: 30px;
  background: #fff;
  border: 1px solid rgba(221, 221, 221, 0.4);
  box-shadow: 0px 7px 28px rgba(0, 0, 0, 0.03);
  text-align: center;
  padding: 65px 40px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1399px) {

  .service-section-s4 .service-card-s2,
  .service-section-s5 .service-card-s2 {
    padding: 50px 30px;
  }
}

@media (max-width: 1199px) {

  .service-section-s4 .service-card-s2,
  .service-section-s5 .service-card-s2 {
    padding: 30px 20px;
  }
}

.service-section-s4 .service-card-s2 .icon,
.service-section-s5 .service-card-s2 .icon {
  margin-bottom: 33px;
  height: 111px;
}

@media (max-width: 1199px) {

  .service-section-s4 .service-card-s2 .icon,
  .service-section-s5 .service-card-s2 .icon {
    margin-bottom: 20px;
  }
}

.service-section-s4 .service-card-s2 h2,
.service-section-s5 .service-card-s2 h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 64px;
  text-transform: capitalize;
  margin: 0;
}

@media (max-width: 1199px) {

  .service-section-s4 .service-card-s2 h2,
  .service-section-s5 .service-card-s2 h2 {
    font-size: 20px;
    line-height: 50px;
  }
}

.service-section-s4 .service-card-s2 h2 a,
.service-section-s5 .service-card-s2 h2 a {
  color: #101212;
  font-family: "Nunito", sans-serif;
  transition: all 0.3s ease-in-out;
}

.service-section-s4 .service-card-s2 p,
.service-section-s5 .service-card-s2 p {
  color: #6D7680;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
}

.service-section-s4 .service-card-s2 .services-btn,
.service-section-s5 .service-card-s2 .services-btn {
  padding-top: 10px;
  display: block;
}

.service-section-s4 .service-card-s2 .services-btn a,
.service-section-s5 .service-card-s2 .services-btn a {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  position: relative;
  padding-right: 50px;
  transition: all 0.3s ease-in-out;
}

.service-section-s4 .service-card-s2 .services-btn a::before,
.service-section-s5 .service-card-s2 .services-btn a::before {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'themify';
  content: "\e628";
  color: #F74F22;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
}

.service-section-s4 .service-card-s2 .services-btn a::after,
.service-section-s5 .service-card-s2 .services-btn a::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100px;
  border: 1px solid #BDC2C6;
  width: 19.247px;
  height: 19px;
  transition: all 0.3s ease-in-out;
}

.service-section-s4 .service-card-s2 .services-btn a:hover::before,
.service-section-s5 .service-card-s2 .services-btn a:hover::before {
  font-size: 25px;
  right: 8px;
}

.service-section-s4 .service-card-s2 .services-btn a:hover::after,
.service-section-s5 .service-card-s2 .services-btn a:hover::after {
  width: 40px;
  height: 40px;
}

.service-section-s4 .service-card-s2:hover,
.service-section-s5 .service-card-s2:hover {
  background: #268A66;
  border: 1px solid transparent;
  box-shadow: 0px 7px 28px transparent;
}

.service-section-s4 .service-card-s2:hover h2 a,
.service-section-s5 .service-card-s2:hover h2 a {
  color: #fff;
}

.service-section-s4 .service-card-s2:hover p,
.service-section-s5 .service-card-s2:hover p {
  color: #fff;
}

.service-section-s4 .service-card-s2:hover .services-btn a,
.service-section-s5 .service-card-s2:hover .services-btn a {
  color: #fff;
}

.service-section-s4 .service-card-s2:hover .services-btn a::before,
.service-section-s5 .service-card-s2:hover .services-btn a::before {
  color: #FFB302;
}

.service-section-s4 .service-card-s2,
.service-section-s5 .service-card-s2 {
  position: relative;
  border: 1px solid transparent;
}

.service-section-s4 .service-card-s2:hover .top-shape,
.service-section-s5 .service-card-s2:hover .top-shape {
  opacity: 1;
  visibility: visible;
}

.service-section-s4 .service-card-s2:hover .bottom-shape,
.service-section-s5 .service-card-s2:hover .bottom-shape {
  opacity: 1;
  visibility: visible;
}

.service-section-s4 .slick-slide img,
.service-section-s5 .slick-slide img {
  display: block;
  margin: 0 auto;
}

.service-section-s4 .service-slider-s4,
.service-section-s5 .service-slider-s4 {
  padding-top: 40px;
  margin: 0 120px;
}

@media (max-width: 1730px) {

  .service-section-s4 .service-slider-s4,
  .service-section-s5 .service-slider-s4 {
    margin: 0 50px;
  }
}

@media (max-width: 1699px) {

  .service-section-s4 .service-slider-s4,
  .service-section-s5 .service-slider-s4 {
    margin: 0 20px;
  }
}

.service-section-s4 .service-slider-s4 .slick-list,
.service-section-s5 .service-slider-s4 .slick-list {
  margin: 0 -10px;
}

.service-section-s4 .slick-dots li,
.service-section-s5 .slick-dots li {
  height: 7px;
  width: 65px;
  border: 0;
  border-radius: 100px;
  color: #F4F6F8;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
}

@media (max-width: 767px) {

  .service-section-s4 .slick-dots li,
  .service-section-s5 .slick-dots li {
    width: 20px;
  }
}

.service-section-s4 .slick-dots li.slick-active,
.service-section-s5 .slick-dots li.slick-active {
  background: #F74F22;
}

.service-section-s4 .shape,
.service-section-s5 .shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 767px) {

  .service-section-s4 .shape,
  .service-section-s5 .shape {
    display: none;
  }
}

.service-section-s5 .section-title h2 span {
  color: #FBAD17;
}

.service-section-s5 .service-card-s2:hover {
  background: #122F2A;
}

/*6.5 causes-section-s3*/
.causes-section-s3 {
  margin-top: 0px;
  padding-top: 120px;
  padding-bottom: 120px;
  background: #fff;
}

@media (max-width: 1399px) {
  .causes-section-s3 {
    margin-top: 0px;
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media (max-width: 991px) {
  .causes-section-s3 {
    margin-top: 0px;
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .causes-section-s3 {
    margin-top: 0px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.causes-section-s3 .section-title {
  margin-bottom: 0;
}

.causes-section-s3 .section-title h2 span {
  position: relative;
  color: #FBAD17;
}

.causes-section-s3 .section-title h2 span::before {
  position: absolute;
  bottom: -67px;
  left: 23px;
  width: 100%;
  content: "";
  height: 100%;
}

@media (max-width: 767px) {
  .causes-section-s3 .section-title h2 span::before {
    display: none;
  }
}

.causes-section-s3 .section-title p {
  border-left: 0px solid transparent;
  padding-left: 0px;
}

.causes-section-s3 .owl-carousel .owl-stage-outer {
  padding: 50px 0;
}

@media (max-width: 1399px) {
  .causes-section-s3 .owl-carousel .owl-stage-outer {
    padding: 0;
  }
}

.causes-section-s3 .causes-slider-s2 {
  top: 50%;
}

.causes-section-s3 .owl-nav {
  display: none;
}

/* 6.6 get-quate-section */
.get-quate-section-s2 {
  position: relative;
  z-index: 1;
}

.get-quate-section-s2::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;
  content: "";
  background: #268A66;
  z-index: -1;
}

@media (max-width: 991px) {
  .get-quate-section-s2::before {
    width: 100%;
  }
}

.get-quate-section-s2 .content {
  max-width: 625px;
}

.get-quate-section-s2 .section-title span {
  color: #fff;
}

.get-quate-section-s2 .section-title span img {
  margin-top: -10px;
  position: relative;
  margin-right: 10px;
}

.get-quate-section-s2 .section-title h2 {
  color: #fff;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .get-quate-section-s2 .section-title h2 {
    margin-bottom: 20px;
  }
}

.get-quate-section-s2 .section-title h2 span {
  position: relative;
  color: #FBAD17;
}

.get-quate-section-s2 .section-title h2 span::before {
  position: absolute;
  bottom: -60px;
  left: 7px;
  width: 100%;
  content: "";
  height: 100%;
}

@media (max-width: 767px) {
  .get-quate-section-s2 .section-title h2 span::before {
    display: none;
  }
}

.get-quate-section-s2 .section-title p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  max-width: 580px;
}

.get-quate-section-s2 .item-wrap {
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .get-quate-section-s2 .item-wrap {
    flex-direction: column;
    align-items: start;
  }
}

.get-quate-section-s2 .item-wrap .year {
  width: 175px;
  height: 151px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.13);
  text-align: center;
  padding: 30px;
}

@media (max-width: 1199px) {
  .get-quate-section-s2 .item-wrap .year {
    width: 160px;
  }
}

.get-quate-section-s2 .item-wrap .year h3 {
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 29px;
  margin-bottom: 15px;
  margin-top: 10px;
}

.get-quate-section-s2 .item-wrap .year span {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 23px;
}

.get-quate-section-s2 .item-wrap ul {
  padding-left: 20px;
  list-style: none;
}

@media (max-width: 575px) {
  .get-quate-section-s2 .item-wrap ul {
    padding-left: 0;
    padding-top: 20px;
  }
}

.get-quate-section-s2 .item-wrap ul li {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 33px;
  text-transform: capitalize;
}

.get-quate-section-s2 .item-wrap ul li i {
  position: relative;
  line-height: 33px;
  margin-right: 8px;
  bottom: -2px;
}

.get-quate-section-s2 .buttom-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding-left: 0;
}

@media (max-width: 575px) {
  .get-quate-section-s2 .buttom-item {
    flex-direction: column;
    align-items: start;
    margin-top: 0;
  }
}

.get-quate-section-s2 .buttom-item li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 30px;
}

@media (max-width: 1199px) {
  .get-quate-section-s2 .buttom-item li {
    margin-right: 10px;
  }
}

@media (max-width: 575px) {
  .get-quate-section-s2 .buttom-item li {
    margin-top: 20px;
    margin-right: 0;
  }
}

.get-quate-section-s2 .buttom-item li .icon {
  width: 76px;
  height: 76px;
  line-height: 75px;
  text-align: center;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
}

.get-quate-section-s2 .buttom-item li .icon i {
  color: #fff;
  font-size: 25px;
}

.get-quate-section-s2 .buttom-item li .text {
  width: calc(100% - 80px);
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
}

@media (max-width: 1199px) {
  .get-quate-section-s2 .buttom-item li .text {
    padding: 0 5px;
  }
}

@media (max-width: 575px) {
  .get-quate-section-s2 .buttom-item li .text {
    border-right: 0px;
  }
}

.get-quate-section-s2 .buttom-item li .text span {
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28.8px;
}

@media (max-width: 1199px) {
  .get-quate-section-s2 .buttom-item li .text span {
    font-size: 15px;
    line-height: 25px;
  }
}

.get-quate-section-s2 .buttom-item li:last-child {
  margin-right: 0;
}

.get-quate-section-s2 .buttom-item li:last-child .text {
  border-right: 0px solid transparent;
}

.get-quate-section-s2 .shape {
  position: absolute;
  left: 0;
  top: 0;
}

.get-quate-section-s2 .shape2 {
  position: absolute;
  left: 50px;
  bottom: 100px;
  top: auto;
  animation: zoom-in-zoom-out 2s ease infinite;
}

@media (max-width: 1399px) {
  .get-quate-section-s2 .shape2 {
    bottom: 10px;
  }
}

.get-quate-section-s2 .video {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .get-quate-section-s2 .video {
    display: none;
  }
}

.get-quate-section-s2 .video .video-btn {
  position: unset;
  translate: unset;
}

/* 6.7 process-section-s3 */
.process-section-s3 .content .section-title {
  max-width: 626px;
}

.process-section-s3 .content .section-title span img {
  margin-top: -10px;
  position: relative;
  margin-right: 10px;
}

.process-section-s3 .content .section-title h2 {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .process-section-s3 .content .section-title h2 {
    margin-bottom: 20px;
  }
}

.process-section-s3 .content .section-title h2 span {
  position: relative;
  color: #FBAD17;
}

.process-section-s3 .content .section-title h2 span::before {
  position: absolute;
  bottom: -60px;
  left: 7px;
  width: 100%;
  content: "";
  height: 100%;
}

@media (max-width: 767px) {
  .process-section-s3 .content .section-title h2 span::before {
    display: none;
  }
}

.process-section-s3 .content .section-title p {
  color: #535353;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  max-width: 550px;
}

.process-section-s3 .content ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding-left: 0;
}

@media (max-width: 575px) {
  .process-section-s3 .content ul {
    flex-wrap: wrap;
  }
}

.process-section-s3 .content ul li {
  max-width: 200px;
  position: relative;
}

@media (max-width: 575px) {
  .process-section-s3 .content ul li {
    margin-top: 20px;
  }
}

.process-section-s3 .content ul li::before {
  position: absolute;
  left: 0;
  top: 15px;
  width: 100%;
  height: 2px;
  content: "";
  background: #ECECEC;
  z-index: -1;
}

.process-section-s3 .content ul li .num {
  background: #fff;
  border: 2px;
  border-radius: 100px;
  color: #18322E;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
  display: inline-block;
  text-align: center;
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
}

.process-section-s3 .content ul li .icon {
  margin-top: 50px;
  margin-bottom: 14px;
  background: #fff;
  box-shadow: 0 4px 17px rgba(0, 0, 0, 0.1);
  width: 90px;
  height: 90px;
  border-radius: 100px;
  line-height: 90px;
  text-align: center;
}

@media (max-width: 575px) {
  .process-section-s3 .content ul li .icon {
    margin-top: 30px;
  }
}

.process-section-s3 .content ul li h3 {
  color: #061408;
  font-family: "Nunito", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
  text-transform: capitalize;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .process-section-s3 .content ul li h3 {
    font-size: 18px;
    line-height: 27px;
  }
}

.process-section-s3 .content ul li:hover .num {
  background: #268A66;
  color: #fff;
}

.process-section-s3 .right-img {
  max-width: 700px;
  max-height: 760px;
  width: 100%;
  height: 100%;
  position: relative;
  right: -50px;
}

@media (max-width: 991px) {
  .process-section-s3 .right-img {
    display: none;
  }
}

.process-section-s3 .right-img::before {
  position: absolute;
  width: 171px;
  height: 167px;
  border-radius: 81.5px;
  background: #F74F22;
  content: "";
  right: 104px;
  bottom: 34px;
}

/* 6.8 partners-section-s3 */
.partners-section-s3 {
  background: #F1EBE9;
  padding: 0 150px;
}

@media (max-width: 1399px) {
  .partners-section-s3 {
    padding: 0 50px;
  }
}

@media (max-width: 767px) {
  .partners-section-s3 {
    padding: 0 20px;
  }
}

.partners-section-s3 ul li {
  height: 255px;
  border: 0;
}

@media (max-width: 1199px) {
  .partners-section-s3 ul li {
    height: 155px;
  }
}

/* 6.9 volunteer-section-s2 */
.volunteer-section-s2 {
  position: relative;
  z-index: 11;
  padding-bottom: 0;
}

.volunteer-section-s2.volunteer-section-s4 {
  margin-bottom: 0px;
  padding-bottom: 90px;
  z-index: 1;
}

@media (max-width: 991px) {
  .volunteer-section-s2.volunteer-section-s4 {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .volunteer-section-s2.volunteer-section-s4 {
    padding-bottom: 50px;
  }
}

.vol-card-s2 {
  margin-bottom: 30px;
}

.vol-card-s2 .image {
  border: 14px solid #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.09);
  position: relative;
}

.vol-card-s2 .image img {
  width: 100%;
}

.vol-card-s2 .image .hover-icon {
  width: 47px;
  height: 47px;
  text-align: center;
  border-radius: 100px;
  background: #268A66;
  display: block;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  z-index: 1;
  box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.06);
}

.vol-card-s2 .image .hover-icon i {
  text-align: center;
  font-size: 18px;
  line-height: 47px;
}

.vol-card-s2 .image .hover-icon .ti-plus {
  display: block;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  visibility: visible;
}

.vol-card-s2 .image .hover-icon .ti-close {
  display: none;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.vol-card-s2 .image ul {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  max-width: 172px;
  background: #fff;
  padding: 0 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 100px;
}

.vol-card-s2 .image ul::before {
  position: absolute;
  width: 22px;
  height: 17px;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  background: #fff;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.vol-card-s2 .image ul li {
  display: inline-block;
}

.vol-card-s2 .image ul li a {
  padding: 10px 8px;
  padding-bottom: 8px;
  display: block;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {
  .vol-card-s2 .image ul li a {
    padding: 8px 5px;
  }
}

.vol-card-s2 .image ul li a:hover i {
  color: #F74F22;
}

.vol-card-s2 .image ul li i {
  font-size: 15px;
  color: #535353;
}

.vol-card-s2 .text {
  text-align: center;
  padding: 25px 0;
  padding-bottom: 0px;
}

.vol-card-s2 .text h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.vol-card-s2 .text h3 a {
  color: #061408;
  font-family: "Nunito", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}

.vol-card-s2 .text span {
  color: #268A66;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.vol-card-s2:hover .image .hover-icon {
  background: #fff;
  color: #5D5D70;
}

.vol-card-s2:hover .image .hover-icon .ti-plus {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.vol-card-s2:hover .image .hover-icon .ti-close {
  display: block;
  opacity: 1;
  visibility: visible;
}

.vol-card-s2:hover .image ul {
  bottom: 50px;
  opacity: 1;
  visibility: visible;
}

/* 6.10 testimonial-section-s3*/
.testimonial-section-s3 {
  position: relative;
  z-index: 1;
  padding-top: 335px;
  padding-bottom: 120px;
  background: #F1EBE9;
}

@media (max-width: 991px) {
  .testimonial-section-s3 {
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .testimonial-section-s3 {
    padding-bottom: 80px;
  }
}

@media (max-width: 425px) {
  .testimonial-section-s3 {
    padding-top: 300px;
  }
}

.testimonial-section-s3 .section-title span img {
  margin-top: -10px;
  position: relative;
  margin-right: 10px;
}

.testimonial-section-s3 .section-title h2 {
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .testimonial-section-s3 .section-title h2 {
    font-size: 48px;
    line-height: 47px;
  }
}

@media (max-width: 1199px) {
  .testimonial-section-s3 .section-title h2 {
    font-size: 40px;
    line-height: 47px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-s3 .section-title h2 {
    font-size: 25px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-s3 .section-title h2 {
    margin-bottom: 20px;
  }
}

.testimonial-section-s3 .section-title h2 span {
  position: relative;
}

@media (max-width: 1399px) {
  .testimonial-section-s3 .section-title h2 span {
    font-size: 48px;
    line-height: 47px;
  }
}

@media (max-width: 1199px) {
  .testimonial-section-s3 .section-title h2 span {
    font-size: 40px;
    line-height: 47px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-s3 .section-title h2 span {
    font-size: 25px;
    line-height: 30px;
  }
}

.testimonial-section-s3 .section-title h2 span::before {
  position: absolute;
  bottom: -60px;
  left: 7px;
  width: 100%;
  content: "";
  height: 100%;
}

@media (max-width: 767px) {
  .testimonial-section-s3 .section-title h2 span::before {
    display: none;
  }
}

.testimonial-section-s3 .testimonial-slider-s3 {
  max-width: 590px;
  width: 100%;
  position: relative;
}

.testimonial-section-s3 .testimonial-slider-s3 .slick-dots {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 300px;
  text-align: end;
}

@media (max-width: 767px) {
  .testimonial-section-s3 .testimonial-slider-s3 .slick-dots {
    bottom: -50px;
    right: auto;
    left: 0;
    text-align: start;
  }
}

.testimonial-section-s3 .testimonial-slider-s3 .slick-dots li button {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 100px;
  position: relative;
  margin: 0 20px;
}

.testimonial-section-s3 .testimonial-slider-s3 .slick-dots li button::after {
  position: absolute;
  left: 50%;
  height: 50%;
  content: "";
  width: 26px;
  height: 26px;
  border: 1px solid #F74F22;
  border-radius: 100px;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.testimonial-section-s3 .testimonial-slider-s3 .slick-dots li button::before {
  display: none;
}

.testimonial-section-s3 .testimonial-slider-s3 .slick-dots li.slick-active button::after {
  opacity: 1;
  visibility: visible;
}

.testimonial-section-s3 .item h3 {
  color: #535353;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 45px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #CACACA;
  margin-top: 0;
}

@media (max-width: 1199px) {
  .testimonial-section-s3 .item h3 {
    font-size: 22px;
    line-height: 35px;
  }
}

@media (max-width: 767px) {
  .testimonial-section-s3 .item h3 {
    font-size: 18px;
    line-height: 35px;
  }
}

.testimonial-section-s3 .item .author {
  max-width: 358px;
  display: flex;
  align-items: center;
}

.testimonial-section-s3 .item .author .image {
  width: 72px;
  height: 72px;
}

.testimonial-section-s3 .item .author .image img {
  width: 100%;
  border-radius: 100px;
}

.testimonial-section-s3 .item .author .text {
  padding-left: 20px;
}

.testimonial-section-s3 .item .author .text h4 {
  color: #061408;
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0;
  margin-top: 0;
}

.testimonial-section-s3 .item .author .text span {
  color: #5E5F63;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
}

.testimonial-section-s3 .left-img {
  width: 600px;
  height: 550px;
  position: relative;
  margin-top: -50px;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media (max-width: 1399px) {
  .testimonial-section-s3 .left-img {
    width: 550px;
    height: 550px;
  }
}

@media (max-width: 1199px) {
  .testimonial-section-s3 .left-img {
    width: 450px;
    height: 400px;
  }
}

@media (max-width: 991px) {
  .testimonial-section-s3 .left-img {
    margin-bottom: 50px;
  }
}

@media (max-width: 425px) {
  .testimonial-section-s3 .left-img {
    width: 300px;
    height: 300px;
  }
}

.testimonial-section-s3 .side-img-1 {
  width: 90px;
  height: 90px;
  position: absolute;
  right: 90px;
  top: 30%;
  z-index: -1;
  animation: leafAniamtion 12s ease-in infinite;
}

@media (max-width: 1199px) {
  .testimonial-section-s3 .side-img-1 {
    right: 20px;
  }
}

@media (max-width: 991px) {
  .testimonial-section-s3 .side-img-1 {
    display: none;
  }
}

.testimonial-section-s3 .side-img-1 img {
  width: 100%;
  height: 100%;
  border: 5px solid #FFF;
  border-radius: 100px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-section-s3 .side-img-2 {
  width: 90px;
  height: 90px;
  position: absolute;
  left: 90px;
  top: 35%;
  z-index: -1;
  animation: leafAniamtion 16s ease-in infinite;
}

@media (max-width: 991px) {
  .testimonial-section-s3 .side-img-2 {
    display: none;
  }
}

.testimonial-section-s3 .side-img-2 img {
  width: 100%;
  height: 100%;
  border: 5px solid #FFF;
  border-radius: 100px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

/* 6.11 blog-section-s3  */
.blog-section-s3 .grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 20px;
  width: 100%;
}

.blog-section-s3 .grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 47%;
  margin: 7px 15px;
}

@media (max-width: 1199px) {
  .blog-section-s3 .grid-item {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .blog-section-s3 .grid-item {
    width: 100%;
    margin: 0;
    margin-bottom: 30px;
  }
}

.blog-section-s3 .grid-item:nth-child(1) {
  grid-column: span 3 !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: block;
  padding: 0px;
}

.blog-section-s3 .grid-item:nth-child(1) img {
  max-width: 100%;
  width: 100%;
}

@media (max-width: 1399px) {
  .blog-section-s3 .grid-item:nth-child(1) img {
    max-width: 100%;
  }
}

.blog-section-s3 .grid-item:nth-child(1)::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34.36%, rgba(0, 0, 0, 0.79) 75.73%, rgba(0, 0, 0, 0.87) 100%);
}

.blog-section-s3 .grid-item:nth-child(1) .post-content {
  max-width: 426px;
  position: absolute;
  left: 40px;
  bottom: 40px;
  padding: 0;
}

@media (max-width: 1399px) {
  .blog-section-s3 .grid-item:nth-child(1) .post-content {
    padding: 0;
  }
}

@media (max-width: 1199px) {
  .blog-section-s3 .grid-item:nth-child(1) .post-content {
    padding: 0;
    left: 20px;
  }
}

@media (max-width: 991px) {
  .blog-section-s3 .grid-item:nth-child(1) .post-content {
    padding: 0;
  }
}

.blog-section-s3 .grid-item:nth-child(1) .post-content ul li {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  padding-right: 10px;
}

.blog-section-s3 .grid-item:nth-child(1) .post-content ul li i {
  color: #268A66;
  padding-right: 10px;
}

.blog-section-s3 .grid-item:nth-child(1) .post-content h3 {
  margin-top: 16px;
  margin-bottom: 20px;
}

.blog-section-s3 .grid-item:nth-child(1) .post-content h3 a {
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 33px;
  text-transform: capitalize;
  letter-spacing: 0px;
  display: inline;
  transition: all 0.3s ease-in-out;
}

.blog-section-s3 .grid-item:nth-child(1) .post-content h3 a:hover {
  color: #F74F22;
}

.blog-section-s3 .grid-item:nth-child(1) .post-content h3 a::before {
  display: none;
}

.blog-section-s3 .grid-item:nth-child(1) .post-content h3 a::after {
  display: none;
}

.blog-section-s3 .grid-item:nth-child(1) .post-content a {
  max-width: 160px;
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 2.52px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.blog-section-s3 .grid-item:nth-child(1) .post-content a::before {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'themify';
  content: "\e649";
  color: #268A66;
  font-size: 32px;
  transition: all 0.3s ease-in-out;
}

.blog-section-s3 .grid-item:nth-child(1) .post-content a::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100px;
  border: 1px solid #BDC2C6;
  width: 28px;
  height: 28px;
  transition: all 0.3s ease-in-out;
}

.blog-section-s3 .grid-item:nth-child(1) .post-content .red-link {
  display: block;
}

.blog-section-s3 .grid-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.blog-section-s3 .grid-item {
  border: 1px solid #E8E9F2;
  background: #fff;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  padding: 10px;
}

@media (max-width: 1199px) {
  .blog-section-s3 .grid-item {
    display: block;
  }
}

.blog-section-s3 .grid-item img {
  max-width: 250px;
  width: 100%;
}

@media (max-width: 1399px) {
  .blog-section-s3 .grid-item img {
    max-width: 200px;
  }
}

@media (max-width: 1199px) {
  .blog-section-s3 .grid-item img {
    max-width: 100%;
  }
}

.blog-section-s3 .grid-item .post-content {
  padding: 0 30px;
}

@media (max-width: 1399px) {
  .blog-section-s3 .grid-item .post-content {
    padding: 0 16px;
  }
}

@media (max-width: 1199px) {
  .blog-section-s3 .grid-item .post-content {
    padding: 15px;
  }
}

@media (max-width: 991px) {
  .blog-section-s3 .grid-item .post-content {
    padding: 15px 0px;
  }
}

.blog-section-s3 .grid-item .post-content ul li {
  display: inline-block;
  color: #020626;
  font-size: 15px;
  font-weight: 400;
  padding-right: 10px;
}

.blog-section-s3 .grid-item .post-content ul li i {
  color: #D82221;
  padding-right: 10px;
}

.blog-section-s3 .grid-item .post-content h3 {
  margin-top: 16px;
  margin-bottom: 0px;
}

.blog-section-s3 .grid-item .post-content h3 a {
  color: #061408;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 33px;
  text-transform: capitalize;
  letter-spacing: 0px;
  display: inline;
  transition: all 0.3s ease-in-out;
}

.blog-section-s3 .grid-item .post-content h3 a:hover {
  color: #F74F22;
}

.blog-section-s3 .grid-item .post-content h3 a::before {
  display: none;
}

.blog-section-s3 .grid-item .post-content h3 a::after {
  display: none;
}

.blog-section-s3 .grid-item .post-content .red-link {
  display: none;
}

.blog-section-s3 .all-btn {
  text-align: center;
  margin-top: 45px;
}

@media (max-width: 767px) {

  .blog-section-s3 .all-btn .theme-btn,
  .blog-section-s3 .all-btn .view-cart-btn {
    padding: 8px 25px;
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .blog-section-s3 .grid {
    grid-template-columns: 1fr;
  }
}

/* 6.12 contact-map-section  */
.contact-map-section .contact-map {
  height: 410px;
}

.contact-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
}

.contact-map-section h2.hidden {
  display: none;
}

/* 6.13 donate-section  */
.donate-section {
  position: relative;
}

@media (max-width: 1199px) {
  .donate-section {
    padding-bottom: 0;
  }
}

.donate-section .donation-from {
  max-width: 100%;
  padding: 70px;
  margin-left: 0;
}

@media (max-width: 1199px) {
  .donate-section .donation-from {
    padding: 50px 30px;
  }
}

@media (max-width: 767px) {
  .donate-section .donation-from {
    padding: 40px 20px;
  }
}

@media (max-width: 575px) {
  .donate-section .donation-from {
    padding: 40px 15px;
  }
}

.donate-section .donation-from .text {
  max-width: 670px;
}

.donate-section .donation-from h2 {
  color: #F74F22;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
  font-size: 20px;
  font-weight: 600;
}

.donate-section .donation-from h3 {
  font-size: 55px;
  font-weight: 800;
  line-height: 61px;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .donate-section .donation-from h3 {
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  .donate-section .donation-from h3 {
    font-size: 45px;
    line-height: 55px;
  }
}

@media (max-width: 767px) {
  .donate-section .donation-from h3 {
    font-size: 35px;
    line-height: 45px;
  }
}

.donate-section .donation-from ul {
  margin-top: 0;
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .donate-section .donation-from ul {
    display: block;
    margin-bottom: 50px;
  }
}

.donate-section .donation-from .progress-item .cssProgress-label {
  font-size: 20px;
  top: -40px;
}

.donate-section .donation-from .progress-item .cssProgress-label::before {
  top: 38px;
  left: 4px;
}

.donate-section .donation-from .progress-item .cssProgress-label::after {
  top: 34px;
  left: 0;
}

.donate-section .donation-from .progress-wrap {
  border-bottom: 1px solid transparent;
  padding-bottom: 0px;
}

.donate-section .donation-from .donate-now {
  margin-top: 30px;
}

.donate-section .donation-from .Support {
  position: absolute;
  right: 5%;
  top: 20%;
}

@media (max-width: 1199px) {
  .donate-section .donation-from .Support {
    position: unset;
    margin-bottom: 30px;
  }
}

.donate-section .donation-from .Support span {
  color: #000;
  font-family: "Nunito", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.donate-section .donation-from .Support span span {
  color: #F74F22;
}

.donate-section .donation-from .donate-amount .amount-btn {
  padding: 15px 40px;
  padding-bottom: 13px;
}

@media (max-width: 575px) {
  .donate-section .donation-from .donate-amount .amount-btn {
    padding: 10px 30px;
    padding-bottom: 8px;
  }
}

.donate-section .donation-from .theme-btn,
.donate-section .donation-from .view-cart-btn {
  padding: 17px 40px;
}

@media (max-width: 575px) {

  .donate-section .donation-from .theme-btn,
  .donate-section .donation-from .view-cart-btn {
    padding: 13px 30px;
  }
}

.donate-section .donation-from .theme-btn i,
.donate-section .donation-from .view-cart-btn i {
  position: relative;
  margin-left: 10px;
  top: 3px;
}

.donate-section .donation-from .addAmount-value {
  padding: 15px 40px;
  padding-bottom: 13px;
}

@media (max-width: 575px) {
  .donate-section .donation-from .addAmount-value {
    padding: 10px 30px;
    padding-bottom: 8px;
    margin: 10px;
  }
}

.donate-section .shape {
  position: absolute;
  left: 0;
  bottom: 100px;
}

@media (max-width: 1199px) {
  .donate-section .shape {
    display: none;
  }
}

.donate-section .right-text {
  width: 771px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: #18322E;
}

@media (max-width: 1199px) {
  .donate-section .right-text {
    display: none;
  }
}

.donate-section .right-text h1 {
  color: #F74F22;
  font-size: 100px;
  font-weight: 700;
  margin-bottom: 0;
  position: absolute;
  transform: rotate(-90.176deg);
  left: 225px;
  top: 29%;
  width: 100%;
}

.donate-section .right-text .shape-2 {
  position: absolute;
  right: 80px;
  bottom: 80px;
}

@media (max-width: 1199px) {
  .donate-section .right-text .shape-2 {
    display: none;
  }
}

/*6.14 project-page */
.project-page .project-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -9.5px -15px;
}

@media (max-width: 767px) {
  .project-page .project-wrap {
    display: block;
  }
}

.project-page .project-grid {
  position: relative;
  overflow: hidden;
  width: 50%;
  padding: 0 9.5px 15px;
}

@media (max-width: 991px) {
  .project-page .project-grid {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .project-page .project-grid {
    width: 100%;
  }
}

.project-page .project-grid img {
  max-height: 428px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.project-page .project-grid:first-child {
  width: 60%;
}

@media (max-width: 991px) {
  .project-page .project-grid:first-child {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .project-page .project-grid:first-child {
    width: 100%;
  }
}

.project-page .project-grid:nth-child(2) {
  width: 40%;
}

@media (max-width: 991px) {
  .project-page .project-grid:nth-child(2) {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .project-page .project-grid:nth-child(2) {
    width: 100%;
  }
}

.project-page .project-grid:nth-child(3) {
  width: 40%;
}

@media (max-width: 991px) {
  .project-page .project-grid:nth-child(3) {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .project-page .project-grid:nth-child(3) {
    width: 100%;
  }
}

.project-page .project-grid:nth-child(4) {
  width: 60%;
}

@media (max-width: 991px) {
  .project-page .project-grid:nth-child(4) {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .project-page .project-grid:nth-child(4) {
    width: 100%;
  }
}

.project-page .project-grid:nth-child(5) {
  width: 60%;
}

@media (max-width: 991px) {
  .project-page .project-grid:nth-child(5) {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .project-page .project-grid:nth-child(5) {
    width: 100%;
  }
}

.project-page .project-grid:last-child {
  width: 40%;
}

@media (max-width: 991px) {
  .project-page .project-grid:last-child {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .project-page .project-grid:last-child {
    width: 100%;
  }
}

.project-page .project-grid .content {
  margin: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  left: -30%;
  bottom: 15px;
  background: #fff;
  padding: 22px 30px;
  max-width: 384px;
  width: 100%;
  border-left: 2px solid #F74F22;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .project-page .project-grid .content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 15px 15px;
  }
}

.project-page .project-grid .content::before {
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateX(-50%);
  content: "";
  width: 15px;
  height: 14px;
  background: #F74F22;
  z-index: 1;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.project-page .project-grid .content h2 {
  margin-bottom: 0;
}

.project-page .project-grid .content h2 a {
  color: #08112D;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
}

.project-page .project-grid .content .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #F74F22;
  border-radius: 100px;
  text-align: center;
}

@media (max-width: 1199px) {
  .project-page .project-grid .content .icon {
    margin-top: 10px;
  }
}

.project-page .project-grid .content .icon i {
  color: #FFF;
  font-size: 14px;
}

.project-page .project-grid:hover .content {
  opacity: 1;
  visibility: visible;
  left: 9px;
}

/*7. service-single-page */
.service-single-wrap .title-image,
.case-details-left .title-image {
  margin-bottom: 30px;
}

.service-single-wrap .title-image img,
.case-details-left .title-image img {
  width: 100%;
}

.service-single-wrap h2,
.case-details-left h2 {
  color: #061408;
  font-size: 28px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.service-single-wrap h3,
.case-details-left h3 {
  color: #061408;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 20px;
}

.service-single-wrap p,
.case-details-left p {
  color: #535353;
  font-size: 16px;
  font-weight: 400;
  line-height: 30.8px;
  max-width: 800px;
  margin-bottom: 40px;
}

.service-single-wrap .video-wrap,
.case-details-left .video-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

@media (max-width: 1199px) {

  .service-single-wrap .video-wrap,
  .case-details-left .video-wrap {
    display: block;
  }
}

.service-single-wrap .video-img,
.case-details-left .video-img {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.service-single-wrap .video-btn,
.case-details-left .video-btn {
  background: #fff;
}

.service-single-wrap .video-btn i,
.case-details-left .video-btn i {
  color: #F74F22;
}

.service-single-wrap .video-content,
.case-details-left .video-content {
  margin-left: 40px;
}

@media (max-width: 1199px) {

  .service-single-wrap .video-content,
  .case-details-left .video-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}

.service-single-wrap .video-content h2,
.case-details-left .video-content h2 {
  color: #061408;
  font-size: 28px;
  font-weight: 700;
  text-transform: capitalize;
}

.service-single-wrap .video-content p,
.case-details-left .video-content p {
  color: #535353;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  margin-bottom: 20px;
}

.service-single-wrap .video-content ul li,
.case-details-left .video-content ul li {
  display: block;
  color: #5E5F63;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  padding-left: 40px;
  position: relative;
  margin-bottom: 15px;
}

.service-single-wrap .video-content ul li::before,
.case-details-left .video-content ul li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: #FFF;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  content: "\f128";
  text-align: center;
}

.service-single-wrap .quate,
.case-details-left .quate {
  max-width: 850px;
  background: #FFF;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  padding: 15px 70px 15px 25px;
  border-left: 4px solid #F74F22;
  margin-bottom: 0;
  color: #061408;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 60px;
}

.service-single-wrap .image-gallery h2,
.case-details-left .image-gallery h2 {
  display: block;
}

.service-single-wrap .image-gallery ul,
.case-details-left .image-gallery ul {
  margin: -15px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {

  .service-single-wrap .image-gallery ul,
  .case-details-left .image-gallery ul {
    margin: -5px;
  }
}

.service-single-wrap .image-gallery ul li,
.case-details-left .image-gallery ul li {
  flex: 37%;
  max-width: 37%;
  padding: 15px;
}

@media (max-width: 1199px) {

  .service-single-wrap .image-gallery ul li,
  .case-details-left .image-gallery ul li {
    flex: 50%;
    max-width: 50%;
    padding: 5px;
  }
}

@media (max-width: 575px) {

  .service-single-wrap .image-gallery ul li,
  .case-details-left .image-gallery ul li {
    flex: 100%;
    max-width: 100%;
  }
}

.service-single-wrap .image-gallery ul li img,
.case-details-left .image-gallery ul li img {
  width: 100%;
  max-height: 218px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.service-single-wrap .image-gallery ul li:nth-child(1),
.case-details-left .image-gallery ul li:nth-child(1) {
  flex: 63%;
  max-width: 63%;
}

@media (max-width: 1199px) {

  .service-single-wrap .image-gallery ul li:nth-child(1),
  .case-details-left .image-gallery ul li:nth-child(1) {
    flex: 50%;
    max-width: 50%;
  }
}

@media (max-width: 575px) {

  .service-single-wrap .image-gallery ul li:nth-child(1),
  .case-details-left .image-gallery ul li:nth-child(1) {
    flex: 100%;
    max-width: 100%;
  }
}

.service-single-wrap .image-gallery ul li:last-child,
.case-details-left .image-gallery ul li:last-child {
  flex: 63%;
  max-width: 63%;
}

@media (max-width: 1199px) {

  .service-single-wrap .image-gallery ul li:last-child,
  .case-details-left .image-gallery ul li:last-child {
    flex: 50%;
    max-width: 50%;
  }
}

@media (max-width: 575px) {

  .service-single-wrap .image-gallery ul li:last-child,
  .case-details-left .image-gallery ul li:last-child {
    flex: 100%;
    max-width: 100%;
  }
}

.service-single-wrap .accordion,
.case-details-left .accordion {
  margin-top: 50px;
}

.service-single-wrap .accordion-item,
.case-details-left .accordion-item {
  border: 1px solid rgba(4, 18, 31, 0.08);
  background: #FFF;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 14px 47px 0px transparent;
}

.service-single-wrap .accordion-item:last-child,
.case-details-left .accordion-item:last-child {
  margin-bottom: 0;
}

.service-single-wrap .accordion-item .accordion-header,
.case-details-left .accordion-item .accordion-header {
  text-align: left;
  padding: 30px 35px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: 100%;
  color: #222;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: transparent;
  position: relative;
}

@media (max-width: 1199px) {

  .service-single-wrap .accordion-item .accordion-header,
  .case-details-left .accordion-item .accordion-header {
    padding: 15px 15px;
    font-size: 15px;
  }
}

.service-single-wrap .accordion-item .accordion-header::before,
.case-details-left .accordion-item .accordion-header::before {
  position: absolute;
  content: "\e64b";
  font-family: themify;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #061408;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1199px) {

  .service-single-wrap .accordion-item .accordion-header::before,
  .case-details-left .accordion-item .accordion-header::before {
    right: 15px;
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
}

.service-single-wrap .accordion-item.active,
.case-details-left .accordion-item.active {
  border: 1px solid transparent;
  box-shadow: 0px 14px 47px 0px rgba(40, 46, 58, 0.08);
}

.service-single-wrap .accordion-item.active .accordion-header::before,
.case-details-left .accordion-item.active .accordion-header::before {
  content: "\e648";
  color: #18322E;
}

.service-single-wrap .accordion-content,
.case-details-left .accordion-content {
  display: none;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  padding: 35px 30px;
  padding-top: 0;
}

@media (max-width: 1199px) {

  .service-single-wrap .accordion-content,
  .case-details-left .accordion-content {
    padding: 15px 15px;
  }
}

.service-single-wrap .accordion-content p,
.case-details-left .accordion-content p {
  color: #5A627D;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
  max-width: 650px;
}

.service-single-wrap .accordion-item.active .accordion-content,
.case-details-left .accordion-item.active .accordion-content {
  display: block;
  transition: all 0.3s ease-in-out;
}

.service-single-wrap .accordion-content,
.case-details-left .accordion-content {
  transition: max-height 0.3s ease-out;
  overflow: hidden;
}

.service-single-wrap .accordion-item.active .accordion-content,
.case-details-left .accordion-item.active .accordion-content {
  display: block;
  transition: all 0.3s ease-in-out;
}

/*8. project-single-page */
.project-single-page .project-wrap {
  padding-right: 105px;
}

@media (max-width: 1399px) {
  .project-single-page .project-wrap {
    padding-right: 0;
  }
}

.project-top-info .section-title {
  text-align: left;
  max-width: 700px;
  margin-bottom: 0;
}

.project-top-info .section-title h2 {
  color: #F74F22;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
  font-size: 20px;
  font-weight: 600;
}

.project-top-info .section-title h3 {
  font-size: 48px;
  font-weight: 800;
  line-height: 55px;
  letter-spacing: -1.44px;
  margin-bottom: 20px;
}

.project-top-info .section-title p {
  color: #696969;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 50px;
}

.project-top-info .section-title .theme-btn,
.project-top-info .section-title .view-cart-btn {
  text-transform: capitalize;
  font-weight: 600;
}

.project-top-info .project-info ul {
  max-width: 304px;
  width: 100%;
  padding: 50px;
  background: #F0F0F0;
  margin-left: auto;
}

@media (max-width: 991px) {
  .project-top-info .project-info ul {
    margin-right: auto;
    margin-left: 0;
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .project-top-info .project-info ul {
    padding: 30px;
  }
}

.project-top-info .project-info ul li {
  display: block;
  text-align: left;
  margin-bottom: 40px;
}

.project-top-info .project-info ul li:last-child {
  margin-bottom: 0;
}

.project-top-info .project-info ul li h3 {
  color: #061408;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.6px;
  margin: 0;
}

.project-top-info .project-info ul li span {
  color: #696969;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.project-top-info .project-info ul li span a {
  color: #F74F22;
  text-decoration-line: underline;
}

.project-top-info .image-gallery {
  margin-top: 70px;
  margin-bottom: 70px;
}

@media (max-width: 767px) {
  .project-top-info .image-gallery {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.project-top-info .image-gallery ul {
  margin: -12px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .project-top-info .image-gallery ul {
    margin: -5px;
  }
}

.project-top-info .image-gallery ul li {
  flex: 30%;
  max-width: 30%;
  padding: 12px;
}

@media (max-width: 1199px) {
  .project-top-info .image-gallery ul li {
    flex: 50%;
    max-width: 50%;
    padding: 5px;
  }
}

@media (max-width: 991px) {
  .project-top-info .image-gallery ul li {
    flex: 100%;
    max-width: 100%;
    padding: 5px;
  }
}

.project-top-info .image-gallery ul li img {
  width: 100%;
  max-height: 510px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 991px) {
  .project-top-info .image-gallery ul li img {
    max-height: 400px;
  }
}

.project-top-info .image-gallery ul li:last-child {
  flex: 70%;
  max-width: 70%;
}

@media (max-width: 1199px) {
  .project-top-info .image-gallery ul li:last-child {
    flex: 50%;
    max-width: 50%;
  }
}

@media (max-width: 991px) {
  .project-top-info .image-gallery ul li:last-child {
    flex: 100%;
    max-width: 100%;
  }
}

.project-wrap .item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 85px;
  border-bottom: 1px solid rgba(2, 6, 38, 0.07);
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .project-wrap .item {
    display: block;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}

.project-wrap .item:last-child {
  border-bottom: 1px solid transparent;
  margin-bottom: 0;
}

.project-wrap .item .left {
  width: calc(100% - 520px);
  display: block;
}

@media (max-width: 991px) {
  .project-wrap .item .left {
    width: 100%;
  }
}

.project-wrap .item .right {
  max-width: 520px;
  width: 100%;
}

.project-wrap .item h2 {
  color: #061408;
  font-size: 48px;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: -1.44px;
  max-width: 380px;
}

@media (max-width: 1199px) {
  .project-wrap .item h2 {
    font-size: 35px;
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .project-wrap .item h2 {
    font-size: 25px;
    line-height: 30px;
  }
}

.project-wrap .item p {
  margin-bottom: 0;
  color: #5E5F63;
}

.project-wrap .item .item {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .project-wrap .item .item {
    display: block;
  }
}

.project-wrap .item ul li {
  color: #16171A;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.48px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .project-wrap .item ul li {
    margin-bottom: 0px;
  }
}

.project-wrap .item ul li:last-child {
  margin-bottom: 0;
}

.project-wrap .item ul li::before {
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 18px;
  content: "\f128";
  transform: translateY(-50%);
  color: #F74F22;
}

.project-wrap .right.s2 .item ul li {
  padding-left: 0;
}

.project-wrap .right.s2 .item ul li::before {
  display: none;
}

.project-wrap .right.s2 .item ul li h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.6px;
}

.project-wrap .right.s2 .item ul li h3 i {
  width: 25px;
  height: 25px;
  display: inline-block;
  background: #F74F22;
  border-radius: 100px;
  text-align: center;
  font-size: 15px;
  line-height: 25px;
  color: #fff;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .project-wrap .right.s2 .item ul li h3 i {
    width: 20px;
    height: 20px;
    font-size: 15px;
    line-height: 20px;
  }
}

.project-wrap .right.s2 .item ul li span {
  color: #5E5F63;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.project-wrap .p-img img {
  margin-bottom: 10px;
}

.page-chang {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 20px;
}

@media (max-width: 575px) {
  .page-chang {
    flex-direction: column;
    align-items: center;
  }
}

.page-chang .post a {
  color: #061408;
  font-family: "Nunito", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 30px;
  letter-spacing: -0.66px;
  text-decoration-line: underline;
  display: block;
}

@media (max-width: 991px) {
  .page-chang .post a {
    font-size: 18px;
    line-height: 25px;
  }
}

.page-chang .post .next {
  color: #696969;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.page-chang .post-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
}

@media (max-width: 575px) {
  .page-chang .post-btn {
    margin: 20px 0;
  }
}

.page-chang .next-post {
  text-align: right;
}

/*==========================================
10. speaker-single
===========================================*/

.speaker-info-img {
  padding: 25px;
  box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
}

@media (max-width: 991px) {
  .speaker-info-img {
      margin-bottom: 40px;
  }
}

.speaker-info-img img {
  width: 100%;
  max-height: 470px;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 991px) {
  .speaker-info-img img {
      height: 100%;
  }
}

.speaker-info-text h2 {
  font-size: 27px;
  font-weight: 600;
  color: #112143;
  margin-top: 0;
  margin-bottom: 25px;
  text-align: center;
  background: #eee;
  padding: 20px;
}

.speaker-info-text {
  box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
  padding: 35px 50px;
}

@media (max-width: 575px) {
  .speaker-info-text {
      padding: 30px 15px;
  }
}

.speaker-info-text ul {
  padding-left: 0;
}

.speaker-info-text ul li {
  font-size: 17px;
  color: #1d2327;
  font-weight: 600;
  margin-bottom: 22px;
  list-style: none;
}

.speaker-info-text ul li:last-child {
  padding-bottom: 0;
}

.speaker-info-text ul li span {
  font-size: 16px;
  color: #8c8c8c;
  display: inline-block;
  position: relative;
  padding-left: 5px;
  font-weight: 400;
}

.speaker-info-text ul li:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
9. shop-page
--------------------------------------------------------------*/
.shop-section .shop-grids {
  margin: 0 -15px;
}

@media (max-width: 767px) {
  .shop-section .shop-grids {
    margin: 0 -7px;
  }
}

.shop-section .grid {
  width: calc(33.33% - 30px);
  float: left;
  margin: 0 15px 30px;
}

@media (max-width: 991px) {
  .shop-section .grid {
    width: calc(50% - 30px);
  }
}

@media (max-width: 767px) {
  .shop-section .grid {
    width: calc(50% - 15px);
    margin: 0 7px 15px;
  }
}

@media (max-width: 550px) {
  .shop-section .grid {
    width: calc(100% - 15px);
    float: none;
  }
}

.shop-section .grid img {
  width: 100%;
}

.shop-section .details {
  background-color: #f7f7f7;
  text-align: center;
  padding: 35px 15px;
}

.shop-section .details h3 {
  font-size: 20px;
  font-size: 1.3333333333rem;
  margin: 0 0 0.5em;
  font-weight: 700;
}

@media (max-width: 991px) {
  .shop-section .details h3 {
    font-size: 16px;
    font-size: 1.0666666667rem;
  }
}

.shop-section .details h3 a {
  color: #061408;
  text-transform: capitalize;
}

.shop-section .details h3 a:hover {
  color: #F74F22;
}

.shop-section .details del {
  color: #535353;
}

.shop-section .details del+span {
  display: inline-block;
  padding-left: 20px;
}

.shop-section .add-to-cart {
  margin-top: 20px;
}

.shop-section .add-to-cart a {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-size: 1rem;
  font-weight: 600;
  color: #F74F22;
  padding: 12px 20px;
  border: 2px solid #F74F22;
  display: inline-block;
  border-radius: 50px;
}

@media (max-width: 767px) {
  .shop-section .add-to-cart a {
    font-size: 12px;
    font-size: 0.8rem;
    padding: 8px 18px;
  }
}

.shop-section .add-to-cart a:hover {
  background-color: #F74F22;
  color: #fff;
}

.shop-section .add-to-cart a i {
  font-size: 15px;
  font-size: 1rem;
  display: inline-block;
  padding-left: 5px;
}

.shop-section .grid:hover .add-to-cart a {
  background-color: #F74F22;
  color: #fff;
}

/*--------------------------------------------------------------
10. shop-single-page
--------------------------------------------------------------*/
.shop-single-section {
  /*** product slider ***/
  /*** product info ***/
}

.shop-single-section .shop-single-slider .slider-for {
  text-align: center;
}

.shop-single-section .shop-single-slider .slider-for img {
  display: inline-block;
}

.shop-single-section .shop-single-slider .slider-nav {
  padding: 0 25px;
  margin-top: 35px;
}

.shop-single-section .shop-single-slider .slider-nav>i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 100;
}

.shop-single-section .shop-single-slider .slider-nav>i:hover {
  cursor: pointer;
}

.shop-single-section .shop-single-slider .slider-nav .nav-btn-rt {
  left: auto;
  right: 0;
}

.shop-single-section .shop-single-slider .slider-nav .slick-slide {
  text-align: center;
}

.shop-single-section .shop-single-slider .slider-nav .slick-slide img {
  display: inline-block;
}

.shop-single-section .product-details {
  padding: 15px 30px 80px;
  /*** product option ***/
}

@media (max-width: 1199px) {
  .shop-single-section .product-details {
    padding: 10px 30px 15px;
  }
}

@media (max-width: 991px) {
  .shop-single-section .product-details {
    margin-top: 45px;
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .shop-single-section .product-details {
    padding: 0;
  }
}

.shop-single-section .product-details h2 {
  font-size: 35px;
  font-size: 2.3333333333rem;
  line-height: 1.4em;
  margin: 0 0 0.33em;
  font-weight: 700;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .shop-single-section .product-details h2 {
    font-size: 22px;
    font-size: 1.4666666667rem;
  }
}

.shop-single-section .product-details .price {
  font-size: 25px;
  font-size: 1.6666666667rem;
  color: #F74F22;
  margin: 7px 0 20px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .shop-single-section .product-details .price {
    font-size: 30px;
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .shop-single-section .product-details .price {
    font-size: 25px;
    font-size: 1.6666666667rem;
  }
}

.shop-single-section .product-details .price .old {
  font-size: 24px;
  font-size: 1.6rem;
  font-weight: normal;
  color: #868686;
  text-decoration: line-through;
  display: inline-block;
  margin-left: 5px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .shop-single-section .product-details .price .old {
    font-size: 20px;
    font-size: 1.3333333333rem;
  }
}

@media (max-width: 767px) {
  .shop-single-section .product-details .price .old {
    font-size: 18px;
    font-size: 1.2rem;
  }
}

.shop-single-section .product-details .product-rt {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.shop-single-section .product-details .product-rt .rating {
  margin-right: 10px;
}

.shop-single-section .product-details .product-rt .rating i {
  color: #f9d322;
}

.shop-single-section .product-details p {
  margin-bottom: 1.3em;
}

.shop-single-section .product-details ul {
  list-style: none;
}

.shop-single-section .product-details ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.shop-single-section .product-details ul li:before {
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: #F74F22;
  content: "";
  border-radius: 50%;
}

.shop-single-section .product-details .product-option {
  margin-top: 30px;
}

.shop-single-section .product-details .tg-btm {
  margin-top: 25px;
}

.shop-single-section .product-details .tg-btm p {
  margin-bottom: 0px;
}

.shop-single-section .product-details .tg-btm p span {
  font-weight: 700;
  color: #061408;
  margin-right: 5px;
}

.shop-single-section .product-details .product-option .product-row button:after {
  display: none;
}

.shop-single-section .product-details .product-option .product-row>div {
  height: 35px;
  display: inline-block;
}

.shop-single-section .product-details .product-option .product-row>div+div {
  margin-left: 15px;
}

.shop-single-section .product-details .product-option .product-row>div+div .theme-btn,
.shop-single-section .product-details .product-option .product-row>div+div .view-cart-btn {
  border-radius: 0;
  border-width: 1px;
  height: 40px;
  padding: 0 18px;
}

.shop-single-section .product-details .product-option .product-row>div:first-child {
  width: 85px;
}

.shop-single-section .product-details .product-option .product-row>div:last-child .theme-btn:hover,
.shop-single-section .product-details .product-option .product-row>div:last-child .view-cart-btn:hover {
  background: #F74F22;
  border-color: #F74F22;
  color: #fff;
}

.shop-single-section .product-details .product-option .theme-btn,
.shop-single-section .product-details .product-option .view-cart-btn {
  background-color: transparent;
  color: #333;
  font-size: 14px;
  font-size: 0.9333333333rem;
  padding: 0 20px;
  height: 35px;
  line-height: 32px;
  outline: 0;
  border: 2px solid #e6e6e6;
  border-radius: 0;
}

.shop-single-section .product-details .product-option .theme-btn:hover,
.shop-single-section .product-details .product-option .view-cart-btn:hover {
  background-color: #F74F22;
  color: #fff;
  border-color: #F74F22;
}

@media (max-width: 767px) {

  .shop-single-section .product-details .product-option .theme-btn,
  .shop-single-section .product-details .product-option .view-cart-btn {
    font-size: 14px;
    font-size: 0.9333333333rem;
  }
}

.shop-single-section .product-details .product-option .theme-btn:before,
.shop-single-section .product-details .product-option .view-cart-btn:before {
  display: none;
}

.shop-single-section .product-details .product-option .heart-btn i {
  font-size: 15px;
  font-size: 1rem;
}

.shop-single-section .product-details .product-option .product-row>div:last-child .theme-btn,
.shop-single-section .product-details .product-option .product-row>div:last-child .view-cart-btn {
  background-color: #fff;
  font-size: 18px;
  font-size: 1.2rem;
  color: #535353;
  border: 1px solid #e6e6e6;
}

.shop-single-section .product-details #product-count {
  border-radius: 0;
  border: 1px solid #e6e6e6;
}

.shop-single-section .product-details #product-count:focus {
  box-shadow: none;
  outline: none;
}

.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up,
.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  border-radius: 0;
  border-color: #e6e6e6;
  display: block;
  padding: 1px 4px;
  font-size: 10px;
}

.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up:hover,
.shop-single-section .product-details .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:hover {
  background-color: #F74F22;
  color: #fff;
}

.shop-single-section .product-info {
  margin-top: 75px;
  /*** tabs ***/
  /*** client rv ***/
  /*** review form ***/
}

@media (max-width: 991px) {
  .shop-single-section .product-info {
    margin-top: 40px;
  }
}

.shop-single-section .product-info h4 {
  font-size: 18px;
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.7em;
  font-weight: 700;
  margin-bottom: 10px;
}

.shop-single-section .product-info p {
  margin-bottom: 1.3em;
}

.shop-single-section .product-info .tab-pane p:last-child {
  margin-bottom: 0;
}

.shop-single-section .product-info .nav-tabs {
  font-family: "Nunito", sans-serif;
  border: 0;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .nav-tabs {
    margin-bottom: 20px;
  }
}

.shop-single-section .product-info .nav-tabs li {
  margin-right: 1px;
}

.shop-single-section .product-info .nav-tabs li a.active {
  border: 0;
  outline: 0;
}

.shop-single-section .product-info .nav-tabs a {
  font-size: 15px;
  font-size: 1rem;
  color: #535353;
  border: 0;
  border-radius: 0;
  margin: 0;
  display: block;
  padding: 12px 20px 11px;
  font-family: "Inter", sans-serif;
  position: relative;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .nav-tabs a {
    font-size: 14px;
    font-size: 0.9333333333rem;
    font-weight: normal;
    padding: 10px 10px 8px;
    text-transform: none;
  }
}

.shop-single-section .product-info .nav-tabs a:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #F74F22;
  border-radius: 4px;
  content: "";
  opacity: 0;
  visibility: hidden;
}

.shop-single-section .product-info .nav-tabs a:hover:before,
.shop-single-section .product-info .nav-tabs a.active:before {
  opacity: 1;
  visibility: visible;
}

.shop-single-section .product-info .nav-tabs .active,
.shop-single-section .product-info .nav-tabs li:hover {
  border-color: #F74F22;
}

.shop-single-section .product-info .tab-content {
  border-top: 1px solid rgba(247, 79, 34, 0.3);
  padding-top: 30px;
  margin-top: -1px;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .tab-content {
    border: 0;
    padding: 0;
    margin: 0;
  }
}

.shop-single-section .product-info .client-rv {
  overflow: hidden;
  margin-bottom: 30px;
}

.shop-single-section .product-info .client-rv:last-child {
  margin-bottom: 0;
}

.shop-single-section .product-info .client-rv .client-pic {
  width: 100px;
  float: left;
}

.shop-single-section .product-info .client-rv .client-pic img {
  border-radius: 50%;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .client-rv .client-pic {
    width: 100%;
    float: none;
    margin-bottom: 10px;
  }
}

.shop-single-section .product-info .client-rv .details {
  width: calc(100% - 130px);
  float: right;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .client-rv .details {
    width: 100%;
    float: none;
  }
}

.shop-single-section .product-info .client-rv .name-rating .product-rt {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .client-rv .name-rating-time {
    padding-bottom: 3px;
  }
}

.shop-single-section .product-info .client-rv .name-rating-time>div,
.shop-single-section .product-info .client-rv .name-rating>div {
  display: inline-block;
  font-size: 14px;
  font-size: 0.9333333333rem;
}

@media (max-width: 767px) {

  .shop-single-section .product-info .client-rv .name-rating-time>div,
  .shop-single-section .product-info .client-rv .name-rating>div {
    font-size: 12px;
    font-size: 0.8rem;
    display: block;
  }
}

.shop-single-section .product-info .client-rv .rating {
  font-size: 12px;
  padding-left: 12px;
}

.shop-single-section .product-info .client-rv .rating i {
  color: #F74F22;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .client-rv .rating {
    padding-left: 0;
    margin: 4px 0 7px;
  }
}

.shop-single-section .product-info .client-rv .name-rating-time .time {
  float: right;
  color: #b3b3b3;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .shop-single-section .product-info .client-rv .name-rating-time .time {
    float: none;
  }
}

.shop-single-section .product-info .client-rv .review-body {
  padding-top: 12px;
}

.shop-single-section .product-info .review-form {
  margin-top: 45px;
}

.shop-single-section .product-info .review-form h4 {
  font-size: 30px;
  font-weight: 700;
}

.shop-single-section .product-info .review-form p {
  margin-bottom: 1.73em;
}

.shop-single-section .product-info .review-form .give-rat-sec {
  margin-bottom: 10px;
}

.shop-single-section .product-info .review-form .give-rat-sec p {
  margin-bottom: 0;
}

.shop-single-section .product-info .review-form .give-rating {
  display: inline-block;
  position: relative;
  height: 50px;
  line-height: 50px;
  font-size: 30px;
  margin-bottom: 10px;
}

.shop-single-section .product-info .review-form .give-rating label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  cursor: pointer;
}

.shop-single-section .product-info .review-form .give-rating label:last-child {
  position: static;
}

.shop-single-section .product-info .review-form .give-rating label:nth-child(1) {
  z-index: 5;
}

.shop-single-section .product-info .review-form .give-rating label:nth-child(2) {
  z-index: 4;
}

.shop-single-section .product-info .review-form .give-rating label:nth-child(3) {
  z-index: 3;
}

.shop-single-section .product-info .review-form .give-rating label:nth-child(4) {
  z-index: 2;
}

.shop-single-section .product-info .review-form .give-rating label:nth-child(5) {
  z-index: 1;
}

.shop-single-section .product-info .review-form .give-rating label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.shop-single-section .product-info .review-form .give-rating label .icon {
  float: left;
  color: transparent;
}

.shop-single-section .product-info .review-form .give-rating label:last-child .icon {
  color: #ddd;
}

.shop-single-section .product-info .review-form .give-rating:not(:hover) label input:checked~.icon,
.shop-single-section .product-info .review-form .give-rating:hover label:hover input~.icon {
  color: #FFD400;
}

.shop-single-section .product-info .review-form .give-rating label input:focus:not(:checked)~.icon:last-child {
  color: #ddd;
  text-shadow: 0 0 5px #FFD400;
}

.shop-single-section .product-info .review-form form input,
.shop-single-section .product-info .review-form form textarea {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  height: 50px;
  border: 1px solid #efefef;
}

.shop-single-section .product-info .review-form form input:focus,
.shop-single-section .product-info .review-form form textarea:focus {
  box-shadow: none;
  outline: none;
}

.shop-single-section .product-info .review-form form textarea {
  height: 130px;
}

.shop-single-section .product-info .review-form form>div {
  margin-bottom: 27px;
}

.shop-single-section .product-info .review-form form>div:last-child {
  margin-bottom: 0;
}

.shop-single-section .product-info .review-form form .theme-btn-s4 {
  background-color: transparent;
  color: #908f8f;
  outline: 0;
  box-shadow: none;
}

.shop-single-section .product-info .review-form form .theme-btn-s4:hover {
  background-color: #F74F22;
  color: #fff;
}

@media screen and (min-width: 767px) {
  .shop-single-section .product-info .review-form form .theme-btn-s4 {
    font-size: 15px;
    font-size: 1rem;
    padding: 0 20px;
  }
}

.shop-single-section .slider-nav .slick-slide:focus {
  outline: none;
}

/*===========================
11. cart-page-style
===========================*/
.cart-area .cart-wrapper {
  box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
}

@media (max-width: 991px) {
  .cart-area .cart-wrapper table {
    width: 1022px;
  }
}

@media (max-width: 991px) {
  .cart-area .cart-wrapper form {
    overflow: scroll;
    overflow-y: hidden;
  }
}

.cart-area .cart-wrap td,
.cart-area .cart-wrap th {
  width: 10%;
  border-bottom: 1px solid rgba(240, 240, 240, 0.5803921569);
  text-align: center;
  font-weight: 400;
  color: #414141;
}

.cart-area .cart-wrap td ul,
.cart-area .cart-wrap th ul {
  list-style: none;
}

.cart-area .cart-wrap th {
  border-bottom: 1px solid rgba(240, 240, 240, 0.5803921569);
  padding: 40px 0;
}

.cart-area .cart-wrap thead {
  background: #fff;
  color: #505050;
  padding: 40px;
}

.cart-area .cart-area form {
  margin: auto;
  text-align: center;
  background: #fff;
}

.cart-area .cart-wrap .product {
  width: 15%;
}

.cart-area .cart-wrap .product ul {
  text-align: left;
  padding-left: 30px;
  list-style: none;
}

.cart-area .cart-wrap .product ul li {
  padding-bottom: 5px;
}

.cart-area .cart-wrap .product a {
  font-size: 16px;
  color: #a5a4a4;
}

.cart-area .cart-wrap .product-2 {
  text-align: left;
  padding-left: 55px;
}

.cart-area .cart-wrap .product a:hover {
  color: #F74F22;
}

.cart-area .cart-wrap th {
  height: 80px;
  font-weight: 700;
}

.cart-area .cart-wrap td {
  padding: 40px 25px;
}

.cart-area .cart-wrap td.action ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

.cart-area .cart-wrap td.action ul .w-btn-view a {
  line-height: 45px;
}

.cart-area .cart-wrap td span {
  display: block;
  width: 100px;
  height: 38px;
  line-height: 34px;
  color: #ee9902;
  font-size: 14px;
  border: 1.5px solid #ee9902;
  border-radius: 4px;
}

.cart-area .cart-wrap td.Del span {
  color: #4ABA4E;
  border: 1.5px solid #4ABA4E;
}

.cart-area .cart-wrap td.can span {
  color: #D85656;
  border: 1.5px solid #D85656;
}

.cart-area .cart-wrap td.pro span {
  color: #691A5F;
  border: 1.5px solid #691A5F;
}

.cart-area .cart-wrap .name {
  width: 15%;
}

.cart-area .cart-wrap .action a {
  display: block;
  width: 40px;
  height: 38px;
  line-height: 45px;
  background: #414141;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
}

.cart-area .cart-wrap .action a .fi::before {
  font-size: 20px;
}

.cart-area .cart-wrap .action a:hover {
  background: #F74F22;
}

.cart-area .cart-wrap .action li.c-btn {
  margin-right: 10px;
}

.cart-area .cart-wrap .action li.c-btn a {
  background-color: #F74F22;
}

.cart-area .order-wrap {
  padding: 0;
}

.cart-area .cart-wrap tr:nth-child(even) {
  background: #FCFCFC;
}

.cart-area .cart-wrap .quantity {
  position: relative;
  max-width: 110px;
  margin: 0 auto;
}

.cart-area .quantity input {
  width: 105px;
  padding: 0px 35px;
  text-align: center;
  height: 36px;
  position: relative;
  background: #f2f2f5;
  border: none;
  border-radius: 40px;
}

.cart-area .quantity .qtybutton {
  position: absolute;
  top: 0;
  left: 0px;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 28px;
  font-size: 18px;
  cursor: pointer;
  color: #333;
  background: #fafaff;
  border-radius: 30px;
}

.cart-area .cart-wrap .quantity .qtybutton {
  top: 50%;
  left: 5px;
  transform: translateY(-51%);
  -webkit-transform: translateY(-51%);
  -moz-transform: translateY(-51%);
}

.cart-area .cart-wrap .quantity .qtybutton.dec {
  border-left: none;
}

.cart-area .cart-wrap .quantity .qtybutton.inc {
  right: 5px;
  left: auto;
  border-right: none;
}

.cart-area .submit-btn-area {
  padding: 40px;
}

.cart-area .submit-btn-area ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
}

@media (max-width: 450px) {
  .cart-area .submit-btn-area ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.cart-area .submit-btn-area ul li:last-child {
  margin-left: 20px;
}

@media (max-width: 450px) {
  .cart-area .submit-btn-area ul li:last-child {
    margin-left: 3px;
    margin-top: 5px;
  }
}

.cart-area .submit-btn-area button {
  border: none;
  color: #fff;
  transition: all 0.3s;
  outline: none;
  border-radius: 40px;
}

.cart-area .submit-btn-area button:hover {
  background: #F74F22;
}

.cart-area .submit-btn-area .theme-btn,
.cart-area .submit-btn-area .view-cart-btn {
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  line-height: 27px;
}

.cart-area .cart-product-list ul {
  border-top: 1px solid rgba(240, 240, 240, 0.5803921569);
  padding-top: 20px;
  list-style: none;
}

.cart-area .cart-product-list ul li {
  display: flex;
  justify-content: space-between;
  padding: 0px 30px;
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  color: #414141;
  padding-bottom: 30px;
}

.cart-area .cart-product-list ul li.cart-b {
  border-top: 1px solid rgba(240, 240, 240, 0.5803921569);
  border-bottom: 1px solid rgba(240, 240, 240, 0.5803921569);
  color: #F74F22;
  padding-top: 30px;
  font-weight: 600;
}

/*===============================
12. checkout-page-style
================================*/
.checkout-area .checkout-wrap {
  background: #fff;
}

.checkout-area .checkout-wrap ul {
  list-style: none;
}

.checkout-area #open2 {
  display: block;
}

.checkout-area #open3 {
  display: none;
}

.checkout-area #open4 {
  display: none;
}

.checkout-area .create-account p {
  margin-bottom: 15px;
}

.checkout-area .create-account {
  display: none;
  padding: 20px;
}

.checkout-area .create-account span {
  margin-bottom: 20px;
  display: block;
}

.checkout-area .input-wrap {
  position: relative;
}

.checkout-area .create-account input {
  width: 100%;
  height: 50px;
  border: 1px solid #ebebeb;
  margin-bottom: 25px;
  padding-left: 20px;
  border-radius: 40px;
}

.checkout-area .create-account input:focus {
  outline: none;
}

.checkout-area .create-account button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: #333;
  color: #fff;
  width: 108px;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.checkout-area .create-account button:hover {
  background: #F74F22;
}

.checkout-area .coupon {
  position: relative;
  cursor: pointer;
  cursor: pointer;
  background: #fff0eb;
}

.checkout-area .coupon:before {
  position: absolute;
  right: 30px;
  top: 21px;
  content: "\e64b";
  font-family: "themify";
}

.checkout-area .coupon span {
  position: absolute;
  right: 30px;
  top: 30px;
}

.checkout-area .coupon label {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 18px;
  color: #0F0F0F;
  cursor: pointer;
  padding: 20px 20px;
  border-left: 4px solid #F74F22;
  transition: all 0.3s;
  width: 100%;
}

@media (max-width: 767px) {
  .checkout-area .coupon label {
    font-size: 15px;
  }
}

.checkout-area .caupon-wrap {
  background: #fff;
  margin-bottom: 20px;
  transition: all 0.3s;
  box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
}

.checkout-area .active-border {
  transition: all 0.3s;
}

.checkout-area .s1.active-border .coupon-active label,
.checkout-area .s3.coupon-2 .coupon-3 label {
  border-left: none;
  border-top: 4px solid #F74F22;
  border-bottom: 1px solid #ffe5dc;
}

.checkout-area .s2 .coupon-3 {
  border-top: 4px solid #F74F22;
}

.checkout-area .s2.coupon-2 .coupon-3 {
  border-top: 0;
}

.checkout-area .s2 .coupon-3 label {
  border-left: 0;
  border-bottom: 1px solid #ffe5dc;
}

.checkout-area .s2.coupon-2 .coupon-3 label {
  border-left: 4px solid #F74F22;
  border-bottom: 0;
}

.checkout-area .billing-adress .form-style input,
.checkout-area .billing-adress .form-style select {
  width: 100%;
  margin-bottom: 15px;
  padding-left: 10px;
  height: 40px;
  background: #fff;
  border-radius: 2px;
  border: none;
  border: 1px solid #ebebeb;
  border-radius: 40px;
}

.checkout-area .billing-adress .form-style input:focus,
.checkout-area .billing-adress .form-style select:focus {
  outline: none;
  box-shadow: none;
}

.checkout-area .billing-adress .form-style select {
  -webkit-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  position: relative;
}

.checkout-area .billing-adress {
  padding: 30px;
}

.checkout-area .note-area textarea {
  width: 100%;
  height: 150px;
  padding-top: 10px;
  margin-bottom: 0;
  padding-left: 10px;
  border: 1px solid #ebebeb;
  border-radius: 20px;
}

.checkout-area .note-area textarea:focus {
  outline: none;
}

.checkout-area .biling-item-2 {
  margin-top: 20px;
}

.checkout-area .biling-item-2 label.fontsize {
  margin-bottom: 20px;
}

.checkout-area .biling-item-2 .billing-adress {
  padding: 0;
}

.checkout-area .payment-name ul {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 575px) {
  .checkout-area .payment-name ul {
    flex-wrap: wrap;
  }
}

.checkout-area .payment-area form {
  overflow: unset !important;
}

.checkout-area .payment-name ul li {
  width: 100px;
  height: 60px;
  text-align: center;
  line-height: 60px;
}

.checkout-area .payment-name ul li input {
  margin-right: 0;
}

.checkout-area .payment-name ul li {
  margin-right: 15px;
}

@media (max-width: 575px) {
  .checkout-area .payment-name ul li {
    margin-bottom: 10px;
  }
}

.checkout-area .payment-area h2 {
  padding-bottom: 40px;
  margin-bottom: 0;
}

.checkout-area .payment-select {
  padding: 40px 0;
}

.checkout-area .payment-select ul {
  display: flex;
}

@media (max-width: 575px) {
  .checkout-area .payment-select ul {
    flex-wrap: wrap;
  }
}

.checkout-area .payment-select ul li {
  margin-right: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #5B5B5B;
}

.checkout-area .payment-select label {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .checkout-area .payment-select label {
    font-size: 14px;
  }
}

.checkout-area .payment-area h2 {
  font-size: 20px;
  color: #878787;
  font-weight: 700;
}

.checkout-area .payment-area h2 span {
  font-size: 30px;
  color: #ff493c;
}

.checkout-area .payment-area {
  width: 100%;
}

.checkout-area .payment-name ul li input {
  margin-right: 0;
  position: absolute;
  z-index: -1;
}

.checkout-area .payment-name ul li input:checked~label {
  border: 1px solid #ff493c;
}

.checkout-area .payment-name label {
  width: 100%;
  border: 1px solid transparent;
}

.checkout-area .payment-name .visa label {
  border: 1px solid #0057A0;
}

.checkout-area .payment-name .mas label {
  border: 1px solid #CC0000;
}

.checkout-area .payment-name .ski label {
  border: 1px solid #691A5F;
}

.checkout-area .payment-name .pay label {
  border: 1px solid #019CDE;
}

.checkout-area .payment-option {
  padding: 30px;
}

.checkout-area .payment-name {
  display: none;
}

.checkout-area .payment-name.active {
  display: block;
}

.checkout-area .payment-option.active .payment-name {
  display: none !important;
}

.checkout-area .payment-area .form-style input,
.checkout-area .payment-area .form-style select {
  width: 100%;
  margin-bottom: 15px;
  padding-left: 10px;
  height: 40px;
  background: #fff;
  border-radius: 2px;
  border: none;
  border: 1px solid #ebebeb;
  border-radius: 40px;
}

.checkout-area .payment-area .form-style input:focus,
.checkout-area .payment-area .form-style select:focus {
  outline: none;
}

.checkout-area .payment-area .contact-form {
  margin-top: 40px;
}

.checkout-area .cout-order-area {
  box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
}

.checkout-area .cout-order-area .oreder-item ul li {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  color: #414141;
}

.checkout-area .cout-order-area .oreder-item ul li.s-total {
  font-weight: 400;
}

.checkout-area .cout-order-area .oreder-item ul .o-header {
  color: #0F0F0F;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #ebebeb;
}

.checkout-area .cout-order-area .oreder-item ul .o-middle {
  border-bottom: 1px solid #ebebeb;
}

.checkout-area .cout-order-area .oreder-item ul .o-bottom {
  border-top: 1px solid #ebebeb;
  color: #F74F22;
  font-weight: 600;
}

.checkout-area .create-account.active {
  display: block;
}

.checkout-area .contact-form .form-control {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

.checkout-area .contact-form input,
.checkout-area .contact-form select {
  margin-top: 10px;
}

.checkout-area .submit-btn-area {
  margin-top: 20px;
}

.checkout-area .submit-btn-area .theme-btn,
.checkout-area .submit-btn-area .view-cart-btn {
  text-transform: capitalize;
}

/*--------------------------------------------------------------
13. volunteer-page
--------------------------------------------------------------*/
.volunteer-area {
  padding: 120px 0 0;
}

.volunteer-wrap {
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .volunteer-wrap {
    padding-bottom: 70px;
  }
}

.volunter-img {
  padding: 30px;
}

.volunter-img img {
  width: 100%;
}

.volunteer-img-wrap {
  box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.15);
}

.volunteer-contact-form form input,
.volunteer-contact-form form select,
.volunteer-contact-form form label,
.volunteer-contact-form form textarea {
  border: 1px solid #d0d4df;
  padding-left: 15px;
  height: 50px;
  width: 100%;
}

.volunteer-contact-form form label {
  line-height: 50px;
  font-weight: 400;
  font-size: 14px;
}

.volunteer-contact-form form label.error {
  height: 15px;
  border: 0;
  line-height: 10px;
  padding-left: 0;
}

.volunteer-contact-form .form-group-in input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.volunteer-contact-form form textarea {
  height: 100px;
}

.volunteer-contact-form .form-group-in {
  position: relative;
}

.volunteer-contact-form .form-group-in i {
  position: absolute;
  right: 30px;
  top: 17px;
  font-size: 20px;
}

.volunteer-contact-form .form-group {
  margin-bottom: 30px;
}

.volunteer-contact-form {
  max-width: 760px;
  margin: auto;
  padding: 50px 40px;
  background: #fff;
  margin-top: -295px;
  position: relative;
  z-index: 1;
}

.volunteer-contact-form:after {
  position: absolute;
  left: 0px;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
  z-index: -1;
}

.volunteer-contact-form:before {
  position: absolute;
  left: -7px;
  bottom: -8px;
  width: 102%;
  height: 55%;
  content: "";
  background: #ffc4ad;
  z-index: -1;
}

.volunteer-contact-form h2 {
  margin-top: 0;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .volunteer-contact-form {
    max-width: 635px;
    margin-top: -210px;
  }

  .volunteer-contact-form:before {
    height: 67%;
    width: 103%;
    left: -9px;
  }
}

@media (max-width: 767px) {
  .volunteer-contact-form {
    margin-top: 0px;
    padding: 14px 30px;
    box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.15);
    margin-top: 50px;
    padding-top: 30px;
  }

  .volunteer-contact-form h2 {
    font-size: 23px;
  }

  .volunteer-area {
    padding: 70px 0 0;
  }

  .volunter-img {
    padding: 15px;
  }

  .volunteer-contact-form:before {
    display: none;
  }
}

.volunteer-contact-form .submit-area {
  text-align: center;
}

/*==========================================
14. team-single
===========================================*/
.team-pg-area {
  margin: 0 auto;
}

.team-pg-area .team-inner {
  position: relative;
  z-index: 1;
}

.team-pg-area .team-inner .pr-shape-1 {
  position: absolute;
  left: 60px;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1650px) {
  .team-pg-area .team-inner .pr-shape-1 {
    opacity: 0.3;
  }
}

@media (max-width: 991px) {
  .team-pg-area .team-inner .pr-shape-1 {
    display: none;
  }
}

.team-info-img {
  padding: 40px;
  box-shadow: 0px 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
  position: relative;
  z-index: 1;
  background: #fff;
}

.team-info-img .shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.team-info-img .shape img {
  width: unset;
  height: unset;
}

.team-info-img img {
  width: 100%;
  height: 565px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 991px) {
  .team-info-img img {
    height: 100%;
  }
}

.team-info-text h2 {
  font-size: 30px;
  font-weight: 700;
}

.team-info-text span {
  display: block;
  margin-bottom: 20px;
  color: #F74F22;
}

.team-info-text ul {
  overflow: hidden;
  padding-top: 10px;
  list-style: none;
  display: flex;
  align-items: center;
}

.team-info-text ul li {
  font-size: 22px;
}

@media (max-width: 575px) {
  .team-info-text ul li {
    font-size: 15px;
  }
}

.team-info-text ul li a {
  color: #061408;
  width: 36px;
  height: 36px;
  line-height: 40px;
  display: block;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  border: 1px solid #8188a9;
}

.team-info-text ul li a:hover {
  color: #fff;
  background: #F74F22;
}

.team-info-text ul li+li {
  margin-left: 20px;
}

@media (max-width: 1200px) {
  .team-info-text ul li+li {
    margin-left: 15px;
  }
}

.at-progress {
  box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
  padding: 40px 0;
}

@media (max-width: 991px) {
  .at-progress {
    padding-bottom: 0;
  }
}

.wpo-progress-single {
  position: relative;
  margin-bottom: 30px;
}

.wpo-progress-single:last-child {
  margin-bottom: 0;
}

.wpo-progress-single .progress {
  height: 10px;
  background-color: #e9ecef;
}

.wpo-progress-single .progress .progress-bar {
  background: #F74F22;
}

.wpo-progress-single .progress-number {
  position: absolute;
  right: 0;
  top: 0;
}

.team-info-text {
  padding-left: 30px;
}

@media (max-width: 991px) {
  .team-info-text {
    padding-left: 0;
    margin-top: 30px;
  }
}

.team-info-text h2 {
  text-align: left;
  font-size: 27px;
  font-weight: 700;
  color: #1d2327;
}

.team-info-text .wpo-skill-progress {
  padding: 0;
  box-shadow: none;
  padding-bottom: 30px;
  padding-top: 10px;
}

.team-info-wrap ul {
  padding-left: 0;
}

.exprience-wrap p {
  color: #5d5851;
}

.exprience-wrap h2 {
  margin-bottom: 20px;
}

.education-area {
  max-width: 600px;
}

.education-area ul {
  list-style: none;
}

.education-area ul li {
  padding-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.education-area ul li:before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F74F22;
  content: "";
}

.ex-wiget {
  padding-top: 60px;
}

.ex-wiget ul {
  list-style: none;
}

.ex-wiget h2 {
  font-size: 30px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 30px;
}

.wpo-contact-area .quote-form {
  padding-left: 0;
  margin-left: -10px;
}

.wpo-contact-area button {
  border-radius: 0;
}

.wpo-contact-area button:after {
  display: none;
}

.wpo-contact-area .quote-form .form-control {
  height: 55px;
  border: 1px solid #ebebeb;
  margin-bottom: 20px;
  padding: 15px;
}

.wpo-contact-area .quote-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #F74F22;
}

.wpo-contact-area .quote-form textarea.form-control {
  height: 125px;
}

.half-col {
  float: left;
  width: 50%;
  padding: 0 10px 5px;
}

.full-col {
  padding: 0 10px 5px;
}

.exprience-area {
  padding-top: 60px;
}

@media (max-width: 767px) {
  .team-info-img {
    padding: 25px;
  }

  .team-info-img img {
    width: 100%;
  }

  .custom-grid {
    float: left;
    width: 50%;
  }

  .exprience-area {
    padding-top: 30px;
  }
}

@media (max-width: 575px) {
  .half-col {
    float: none;
    width: 100%;
  }
}

@media (max-width: 375px) {
  .custom-grid {
    float: none;
    width: 100%;
  }
}

.service-sidebar .wpo-contact-widget {
  border: 0;
  position: relative;
  background-size: cover;
  z-index: 1;
}

.service-sidebar .wpo-contact-widget:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 57, 103, 0.9);
  content: "";
  z-index: -1;
}

.service-sidebar .wpo-contact-widget h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: left;
  color: #fff;
  margin-bottom: 20px;
}

.service-sidebar .wpo-contact-widget h2::before {
  background: #fff;
}

.service-sidebar .wpo-contact-widget p {
  color: #fff;
  font-size: 18px;
}

.service-sidebar .wpo-contact-widget a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #fff;
  font-size: 18px;
  color: #fff;
  padding-right: 90px;
  position: relative;
  margin-top: 10px;
}

.service-sidebar .wpo-contact-widget a::before {
  font-family: "themify";
  content: "\e628";
  font-size: 18px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/*======================================
15. donation-page-area
 =======================================*/
.donate-header {
  text-align: center;
  margin-bottom: 50px;
}

.donate-header h2 {
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0;
}

.donations-amount,
.donations-details,
.doanation-payment {
  padding: 30px;
  border: 1px solid #ebebeb;
  margin-bottom: 40px;
}

.donations-amount h2,
.donations-details h2,
.doanation-payment h2 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
  text-transform: capitalize;
  margin-bottom: 30px;
  margin-top: 0;
}

.donations-amount input,
.donations-details input,
.donations-details textarea {
  background: transparent;
  width: 100%;
  height: 50px;
  border: 0;
  border: 1px solid #ebebeb;
  padding-left: 15px;
  border-radius: 0;
  box-shadow: none !important;
  color: #525252;
  border-radius: 5px;
  margin-bottom: 30px;
}

.donations-details textarea {
  height: 135px;
}

.donations-details .form-group .error {
  margin-bottom: 20px;
}

.donations-amount input:focus,
.donations-details input:focus,
.donations-details textarea:focus {
  border-color: #F74F22;
}

.payment-name ul li input {
  margin-right: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.payment-select ul {
  list-style: none;
}

.payment-name ul {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
}

.payment-area form {
  overflow: unset !important;
}

.payment-name ul li {
  width: 100px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  margin-bottom: 5px;
}

.payment-name ul {
  list-style: none;
}

.payment-name ul li input {
  margin-right: 0;
}

.payment-name ul li {
  margin-right: 15px;
}

.payment-area h2 {
  padding-bottom: 40px;
  margin-bottom: 0;
}

.payment-select ul {
  display: flex;
}

.payment-select ul li {
  margin-right: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #5B5B5B;
}

.payment-select label {
  font-size: 18px;
  font-weight: 600;
}

.payment-area h2 {
  font-size: 20px;
  color: #878787;
  font-weight: 700;
}

.payment-area h2 span {
  font-size: 30px;
  color: #ff493c;
}

.payment-area {
  width: 100%;
}

.payment-name ul li input {
  margin-right: 0;
  position: absolute;
  z-index: -1;
}

.payment-name ul li input:checked~label {
  background: #fcebbd;
}

.payment-name label {
  width: 100%;
  border: 1px solid transparent;
  cursor: pointer;
}

.payment-name .visa label {
  border: 1px solid #0057A0;
}

.payment-name .mas label {
  border: 1px solid #CC0000;
}

.payment-name .ski label {
  border: 1px solid #691A5F;
}

.payment-name .pay label {
  border: 1px solid #019CDE;
}

.payment-option {
  padding: 0 15px;
}

.payment-name.active {
  display: block;
}

.payment-option.active .payment-name {
  display: none !important;
}

.payment-area .form-style input {
  width: 100%;
  margin-bottom: 15px;
  padding-left: 20px;
  height: 40px;
  background: #fff;
  border-radius: 2px;
  border: none;
  border: 1px solid #ebebeb;
}

.payment-area .form-style input:focus-visible {
  outline: 0;
}

.payment-area .form-style input:focus {
  border: 1px solid #F74F22;
}

.payment-area .contact-form {
  margin-top: 40px;
}

#Donations .theme-btn,
#Donations .view-cart-btn {
  border: none;
  outline: none;
  box-shadow: none;
}

#Donations .submit-area {
  text-align: center;
}

/*----------------------------------------------
16. event-details-page
----------------------------------------------*/
.event-details-text {
  margin-top: 50px;
}

.event-details-text h2 {
  margin-bottom: 30px;
  font-weight: 700;
}

.event-details-wrap {
  margin-top: 40px;
}

.event-details-tab .nav {
  justify-content: space-between;
  display: flex;
}

@media (max-width: 590px) {
  .event-details-tab .nav {
    display: block;
  }
}

.event-details-tab .nav-tabs>li {
  margin-bottom: -1px;
  width: 100%;
  flex-basis: 33.33%;
}

.event-details-wrap {
  border: 1px solid #ebebeb;
}

.event-details-tab .nav li a {
  display: block;
  text-align: center;
  color: #2d4277;
  transition: all 0.5s;
  font-weight: 400;
  margin-right: 1px;
  border: none;
  border-radius: 0px;
  background: #f6f6f6;
  border-bottom: none;
  border-top: 4px solid transparent;
  line-height: 20px;
  height: 50px;
}

.event-details-tab .nav li:last-child a {
  margin-right: -1px;
}

.event-details-tab .nav li a.active,
.event-details-tab .nav li:hover a {
  background: #fff;
  outline: none;
  border: none;
  color: #2d4277;
  border-top: 4px solid #F74F22;
}

.event-details-content {
  padding: 30px;
}

#Schedule ul {
  list-style: none;
  margin-top: 30px;
}

#Schedule ul li {
  font-size: 15px;
  font-size: 0.9375rem;
  position: relative;
  padding-left: 20px;
  padding-bottom: 10px;
}

#Schedule ul li:before {
  content: "";
  background: #F74F22;
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 6px;
}

#Map .contact-map iframe {
  width: 100%;
  height: 500px;
}

.event-contact .donations-details {
  border: none;
  padding: 0;
}

.event-contact .donations-details .theme-btn,
.event-contact .donations-details .view-cart-btn {
  border: none;
  outline: none;
  border-radius: 40px;
  box-shadow: none;
  margin-top: 20px;
}

@media (max-width: 590px) {
  .event-details-tab .nav li a {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .event-details-tab .nav {
    flex-wrap: wrap;
  }

  .event-details-tab .nav li a {
    margin-bottom: 15px;
    padding: 12px;
  }
}

.event-img img,
.case-details-img img {
  width: 100%;
}

/*17. case-details-area */
.case-details-area .image {
  position: relative;
  margin-bottom: -65px;
  z-index: -1;
}

@media (max-width: 991px) {
  .case-details-area .image {
    margin-bottom: 20px;
  }
}

.case-details-area .image img {
  border-radius: 14px;
  width: 100%;
  filter: grayscale(0);
}

.case-details-area .image .shape {
  position: absolute;
  left: 50px;
  top: 50px;
  animation: zoom-in-zoom-out 2s ease infinite;
}

.case-details-area .case-details-content {
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.05);
  max-width: 810px;
  margin: 0 auto;
  padding: 80px 45px 65px;
  margin-bottom: 120px;
}

@media (max-width: 991px) {
  .case-details-area .case-details-content {
    margin-bottom: 90px;
    padding: 50px 30px 50px;
  }
}

@media (max-width: 767px) {
  .case-details-area .case-details-content {
    margin-bottom: 60px;
    padding: 50px 20px 50px;
  }
}

@media (max-width: 575px) {
  .case-details-area .case-details-content {
    margin-bottom: 60px;
    padding: 20px 10px 20px;
  }
}

.case-details-area h2 {
  color: #061408;
  font-size: 42px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .case-details-area h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.case-details-area p {
  color: #747474;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 55px;
}

.case-details-area h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .case-details-area h3 {
    line-height: 40px;
  }
}

.case-details-area h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 15px;
}

.case-details-area .notice {
  border-radius: 50px;
  border: 1px solid #D8DDE1;
  background: #FDF8EA;
  padding: 20px 70px;
  max-width: 700px;
  position: relative;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .case-details-area .notice {
    padding: 20px 20px;
    border-radius: 20px;
  }
}

.case-details-area .notice::before {
  position: absolute;
  left: 40px;
  top: 0;
  height: 100%;
  width: 4px;
  content: "";
  background: #122F2A;
}

@media (max-width: 575px) {
  .case-details-area .notice::before {
    display: none;
  }
}

.case-details-area .notice .icon {
  position: absolute;
  left: 29px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 575px) {
  .case-details-area .notice .icon {
    display: none;
  }
}

.case-details-area .notice p {
  color: #667471;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  max-width: 425px;
  margin-bottom: 0;
}

.case-details-area .notice p span {
  color: #061408;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.case-details-area .donation-container {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  border-radius: 10px;
}

.case-details-area .selected-amount,
.case-details-area .selected-amount-container {
  width: 100%;
  position: relative;
}

.case-details-area .amounts,
.case-details-area .preset-amounts {
  display: flex;
  justify-content: left;
  margin-top: 20px;
  width: 100%;
}

@media (max-width: 575px) {

  .case-details-area .amounts,
  .case-details-area .preset-amounts {
    flex-wrap: wrap;
  }
}

.case-details-area .amount,
.case-details-area .custom,
.case-details-area .preset-amount {
  width: 100px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 5px;
  border: 1px solid #ccc;
  border-radius: 20px;
  cursor: pointer;
  background-color: #f4f4f4;
  transition: background-color 0.3s;
  color: #122F2A;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.case-details-area .amount:hover {
  background-color: #e2e2e2;
}

.case-details-area .selected {
  background-color: #1d3f34;
  color: white;
}

.case-details-area .currency,
.case-details-area .currency-symbol {
  background-color: #ff502f;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  width: 50px;
  height: 50px;
  top: 15px;
  left: 5px;
  line-height: 50px;
  text-align: center;
  position: absolute;
}

.case-details-area .amount-input,
.case-details-area .donation-amount-input {
  font-size: 24px;
  border: none;
  color: black;
  width: 100%;
  border-radius: 30px;
  background: #EFEFEF;
  height: 60px;
  padding-left: 65px;
}

.case-details-area .amount-input:focus-visible,
.case-details-area .donation-amount-input:focus-visible {
  outline: 0;
}

.case-details-area .payment-methods {
  margin-top: 20px;
  width: 100%;
}

.case-details-area .payment-methods h5 {
  color: #061408;
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 20px;
}

.case-details-area .radio-group,
.case-details-area .payment-options {
  display: flex;
  flex-direction: column;
  margin: 20px;
}

.case-details-area .custom-radio-wrap,
.case-details-area .custom-radio-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 60px;
  border-bottom: 1px solid #D9D9D9;
}

@media (max-width: 757px) {

  .case-details-area .custom-radio-wrap,
  .case-details-area .custom-radio-group {
    padding-bottom: 30px;
  }
}

.case-details-area .custom-radio,
.case-details-area .custom-radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 10px 0;
  margin-right: 10px;
  color: #122F2A;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.case-details-area .custom-radio input,
.case-details-area .custom-radio-option input {
  display: none;
}

.case-details-area .radio,
.case-details-area .radio-mark {
  width: 16px;
  height: 16px;
  border: 1px solid #D8DDE1;
  border-radius: 50%;
  position: relative;
  margin-right: 6px;
  transition: background-color 0.3s, border-color 0.3s;
}

.case-details-area .custom-radio input:checked+.radio,
.case-details-area .custom-radio-option input:checked+.radio-mark {
  border-color: #e0525e;
}

.case-details-area .custom-radio input:checked+.radio::after,
.case-details-area .custom-radio-option input:checked+.radio-mark::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #F74F22;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}

.case-details-area .form-section {
  margin-top: 20px;
  width: 100%;
}

.case-details-area .form-section h3 {
  color: #061408;
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
}

.case-details-area .form-section .item {
  display: inline-block;
  width: 49%;
}

@media (max-width: 575px) {
  .case-details-area .form-section .item {
    width: 100%;
  }
}

.case-details-area .form-section .item:nth-child(2) {
  margin-right: 10px;
}

@media (max-width: 1399px) {
  .case-details-area .form-section .item:nth-child(2) {
    margin-right: 5px;
  }
}

@media (max-width: 575px) {
  .case-details-area .form-section .item:nth-child(2) {
    margin-right: 0px;
  }
}

.case-details-area .form-section .item:nth-child(4) {
  width: 100%;
}

.case-details-area .form-section .item:nth-child(5) {
  width: 100%;
}

.case-details-area input,
.case-details-area textarea,
.case-details-area .custom-radio-option input {
  width: 100%;
  padding: 10px 20px;
  margin: 10px 0;
  transition: border-color 0.3s;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #EFEFEF;
  color: rgba(0, 0, 0, 0.8);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize;
}

.case-details-area .form-section input:focus,
.case-details-area .form-section textarea:focus {
  border-color: #ff502f;
  outline: none;
}

.case-details-area .theme-btn,
.case-details-area .view-cart-btn {
  margin-top: 40px;
}

.case-details-area .error-message {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}

.case-details-area .success-message {
  color: green;
  font-size: 16px;
  margin-top: 20px;
  display: none;
}

.case-details-area .image-gallery ul li img {
  border-radius: 9px;
}

.case-details-area .accordion-item .accordion-header {
  border-radius: 11px;
}

.case-details-area .accordion {
  margin-top: 70px;
}

.case-details-area .blog-sidebar .widget h3 {
  font-size: 30px;
  padding-left: 0;
}

.case-details-area .blog-sidebar .widget h3:before {
  display: none;
}

.case-details-area .blog-sidebar .search-widget {
  border-radius: 20px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.case-details-area .blog-sidebar .search-widget input {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.case-details-area .blog-sidebar .recent-post-widget {
  border-radius: 20px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  background: #fff;
}

@media screen and (min-width: 1200px) {
  .case-details-area .blog-sidebar {
    padding-left: 0px;
  }
}

.case-details-area .blog-sidebar .recent-post-widget .post .img-holder img {
  border-radius: 5px;
}

.case-details-area .blog-sidebar .recent-post-widget .post .details span {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  color: #000;
}

.case-details-area .blog-sidebar .recent-post-widget .post .details span span {
  color: #F74F22;
}

.case-details-area .blog-sidebar .recent-post-widget .post h4 {
  color: #122F2A;
  font-size: 18px;
  font-weight: 600;
  line-height: 23.8px;
  margin-bottom: 0;
  margin-top: 5px;
}

.case-details-area .blog-sidebar .contact-widget {
  border-radius: 20px;
}

.case-details-area .blog-sidebar .widget-donet {
  border-radius: 20px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 40px 30px;
}

@media (max-width: 991px) {
  .case-details-area .blog-sidebar .widget-donet {
    padding: 30px 20px;
  }
}

.case-details-area .blog-sidebar .widget-donet .preset-amounts {
  flex-wrap: wrap;
}

.case-details-area .blog-sidebar .widget-donet .custom-amount-btn {
  width: 150px;
}

.case-details-area .blog-sidebar .widget-donet .custom-radio-group {
  padding-bottom: 0px;
  border-bottom: 0px solid transparent;
}

.case-details-area .blog-sidebar .widget-donet .payment-options {
  margin: 20px 0 40px;
}

.case-details-area .blog-sidebar .widget-donet .theme-btn,
.case-details-area .blog-sidebar .widget-donet .view-cart-btn {
  margin-top: 0;
}

.case-details-area .blog-sidebar .widget-donet .preset-amount {
  margin-bottom: 20px;
}

.cause-pg-section {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .cause-pg-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 757px) {
  .cause-pg-section {
    padding-bottom: 50px;
  }
}

.cause-pg-section .causes-card {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
18. blog-pg-section
--------------------------------------------------------------*/
.wpo-blog-pg-section {
  /*** format-standard ***/
  /*** format-gallery ***/
  /*** format-quote ***/
  /*** format-video ***/
}

.wpo-blog-pg-section .wpo-blog-content .post {
  margin-bottom: 70px;
}

@media (max-width: 991px) {
  .wpo-blog-pg-section .wpo-blog-content .post {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .wpo-blog-content .post {
    margin-bottom: 40px;
  }
}

.wpo-blog-pg-section .entry-meta {
  list-style: none;
  overflow: hidden;
  margin-bottom: 35px;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .entry-meta {
    margin-bottom: 30px;
  }
}

.wpo-blog-pg-section .entry-meta ul {
  list-style: none;
  padding-left: 0;
}

.wpo-blog-pg-section .entry-meta ul li {
  font-size: 14px;
  float: left;
  text-transform: uppercase;
  color: #636893;
}

.wpo-blog-pg-section .entry-meta ul li a {
  color: #636893;
  font-weight: 500;
}


.wpo-blog-pg-section .entry-meta ul li a:hover {
  color: #FF7236;
}

.wpo-blog-pg-section .entry-meta ul li i {
  position: relative;
  top: 2px;
  margin-right: 3px;
}

.wpo-blog-pg-section .entry-meta ul li i:before {
  font-size: 14px;
}

.wpo-blog-pg-section .entry-meta ul li+li {
  margin-left: 20px;
  padding-left: 0px;
  position: relative;
}

.wpo-blog-pg-section .entry-meta ul li+li i {
  padding-right: 3px;
}

.wpo-blog-pg-section .entry-meta ul li+li+li i {
  top: 1px;
}

.wpo-blog-pg-section .entry-meta ul li+li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  /*content: "";*/
  background: #FF7236;
  border-radius: 50%;
}

@media (max-width: 440px) {
  .wpo-blog-pg-section .entry-meta ul li+li:before {
    display: none;
  }
}

@media (max-width: 440px) {
  .wpo-blog-pg-section .entry-meta ul li+li {
    margin-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .entry-meta ul li {
    font-size: 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 440px) {
  .wpo-blog-pg-section .entry-meta ul li {
    float: none;
    display: block;
    margin-bottom: 5px;
  }
}

.wpo-blog-pg-section .post h3 {
  font-size: 30px;
  line-height: 1.2em;
  font-weight: 700;
  margin: -0.27em 0 0.7em;
}

@media (max-width: 991px) {
  .wpo-blog-pg-section .post h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .post h3 {
    font-size: 20px;
  }
}

.wpo-blog-pg-section .post h3 a {
  color: #232f4b;
}

.wpo-blog-pg-section .post h3 a:hover {
  color: #FF7236;
}

.wpo-blog-pg-section .post p {
  margin-bottom: 1.5em;
}

@media (max-width: 991px) {
  .wpo-blog-pg-section .post p {
    font-size: 16px;
  }
}

.wpo-blog-pg-section .post a.read-more {
  color: #232f4b;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  color: #FF7236;
  position:relative;
  padding-right:30px;
}
.wpo-blog-pg-section .post a.read-more:before {
  position:absolute;
  right:0;
  top:-1px;
  content:"\f123";
  transition: all .3s;
}
.wpo-blog-pg-section .post a.read-more:hover:before {
  right: -3px;
}

.wpo-blog-pg-section .post a.read-more:hover {
  color: #EBB011;
}

@media (max-width: 767px) {

  .wpo-blog-pg-section .format-standard,
  .wpo-blog-pg-section .format-quote {
    padding: 25px 20px 45px;
  }
}

.wpo-blog-pg-section .format-standard {
  position: relative;
}

.wpo-blog-pg-section .format-gallery {
  position: relative;
}

.wpo-blog-pg-section .format-gallery .owl-controls {
  width: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-]:hover {
  background: #FF7236;
  color: #fff;
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] {
  background: #fff;
  width: 50px;
  height: 50px;
  line-height: 58px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  color: #FF7236;
  transition: all 0.3s;
  border: 0;
}

.wpo-blog-pg-section .format-gallery .owl-nav [class*=owl-] .fi::before {
  font-size: 20px;
}

.wpo-blog-pg-section .format-gallery .owl-nav .owl-prev,
.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.wpo-blog-pg-section .format-gallery .owl-nav .owl-prev {
  left: 15px;
}

.wpo-blog-pg-section .format-gallery .owl-nav .owl-next {
  right: 15px;
}

.wpo-blog-pg-section .format-quote {
  text-align: center;
  padding: 80px 60px;
  position: relative;
}

@media (max-width: 767px) {
  .wpo-blog-pg-section .format-quote {
    padding: 40px 20px;
  }
}

.wpo-blog-pg-section .format-quote p {
  margin-bottom: 0;
}

.wpo-blog-pg-section .format-quote:before {
  font-size: 250px;
  color: #ecf3fb;
  margin-left: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.wpo-blog-pg-section .format-quote h3,
.wpo-blog-pg-section .format-quote p {
  position: relative;
}

.wpo-blog-pg-section .format-video .video-holder {
  position: relative;
  text-align: center;
}

.wpo-blog-pg-section .format-video .video-holder:before {
  content: "";
  background-color: #FF7236;
  background: linear-gradient(left, #1835c7, #FF7236);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s;
  opacity: 0.5;
}

.wpo-blog-pg-section .format-video .video-holder:hover:before {
  opacity: 0.7;
}

.wpo-blog-pg-section .format-video .video-holder a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 63px;
  height: 63px;
  line-height: 63px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}

.wpo-blog-pg-section .format-video .video-holder a:before {
  position: absolute;
  left: -12px;
  top: -12px;
  width: 140%;
  height: 140%;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  -webkit-animation: save-the-date-pulse 1s infinite;
  animation: save-the-date-pulse 1s infinite;
  border-radius: 50%;
  z-index: -1;
}

.wpo-blog-pg-section .format-video .video-holder .fi:before {
  font-size: 20px;
  font-size: 1.3333333333rem;
  color: #FF7236;
}

@media screen and (min-width: 1200px) {
  .blog-pg-left-sidebar .blog-sidebar {
    padding-right: 45px;
    padding-left: 0;
  }
}

@media screen and (min-width: 1200px) {
  .blog-pg-fullwidth .wpo-blog-content {
    padding: 0;
  }
}

@keyframes save-the-date-pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(0.95, 0.95, 0.95);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes save-the-date-pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(0.95, 0.95, 0.95);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

/*--------------------------------------------------------------
19. blog-single-section
--------------------------------------------------------------*/
.wpo-blog-single-section {
  /*** tag-share ***/
  /*** author-box ***/
  /*** more-posts ***/
  /*** comments area ***/
  /*** comment-respond ***/
}

.wpo-blog-single-section .entry-meta {
  list-style: none;
  overflow: hidden;
}

.wpo-blog-single-section .entry-meta ul {
  list-style: none;
  padding-left: 0;
}

.wpo-blog-single-section .entry-meta ul li {
  font-size: 14px;
  float: left;
  text-transform: uppercase;
  color: #636893;
}

.wpo-blog-single-section .entry-meta ul li a {
  color: #636893;
  font-weight: 500;
}

.wpo-blog-single-section .entry-meta ul li a:hover {
  color: #FF7236;
}

.wpo-blog-single-section .entry-meta ul li i {
  position: relative;
  top: 2px;
  margin-right: 3px;
}

.wpo-blog-single-section .entry-meta ul li i:before {
  font-size: 14px;
}

.wpo-blog-single-section .entry-meta ul li+li {
  margin-left: 20px;
  padding-left: 0px;
  position: relative;
}

.wpo-blog-single-section .entry-meta ul li+li i {
  padding-right: 4px;
}

.wpo-blog-single-section .entry-meta ul li+li+li i {
  position: relative;
  top: 0px;
}

.wpo-blog-single-section .entry-meta ul li+li:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  /*content: "";*/
  background: #FF7236;
  border-radius: 50%;
}

@media (max-width: 440px) {
  .wpo-blog-single-section .entry-meta ul li+li:before {
    display: none;
  }
}

@media (max-width: 440px) {
  .wpo-blog-single-section .entry-meta ul li+li {
    margin-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .wpo-blog-single-section .entry-meta ul li {
    font-size: 12px;
  }
}

@media (max-width: 440px) {
  .wpo-blog-single-section .entry-meta ul li {
    float: none;
    display: block;
    margin-bottom: 5px;
  }
}

.wpo-blog-single-section .entry-media img {
  width: 100%;
}

.wpo-blog-single-section .post h2 {
  margin: -0.22em 0 0.7em;
  line-height: 1.3em;
  font-weight: 600;
}

.wpo-blog-single-section .post p {
  margin-bottom: 1.5em;
}

.wpo-blog-single-section .post h3 {
  font-size: 24px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3em;
  margin: 1.8em 0 1em;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .post h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .wpo-blog-single-section .post h3 {
    font-size: 20px;
  }
}

.wpo-blog-single-section .post blockquote {
  background-color: #f1f3ff;
  color: #233d62;
  font-size: 20px;
  line-height: 1.6em;
  padding: 65px;
  margin-top: 50px;
  margin-bottom: 40px;
  border: 0;
  position: relative;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .post blockquote {
    padding: 55px 25px;
  }
}

.wpo-blog-single-section .post blockquote:before {
  font-family: "themify";
  content: "\e67e";
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border: 2px solid #f4f8fc;
  background: #fff;
  color: #FF7236;
  border-radius: 50%;
  transform: rotate(180deg)
}

.wpo-blog-single-section .post .gallery {
  overflow: hidden;
  margin: 40px -7.5px 0;
}

.wpo-blog-single-section .post .gallery>div {
  width: calc(50% - 15px);
  float: left;
  margin: 0 7.5px 15px;
}

.wpo-blog-single-section .post .gallery img {
  width: 100%;
}

.wpo-blog-single-section .tag-share,
.wpo-blog-single-section .tag-share-s2 {
  margin: 75px 0 0;
  color: #232f4b;
}

@media (max-width: 767px) {

  .wpo-blog-single-section .tag-share,
  .wpo-blog-single-section .tag-share-s2 {
    margin-top: 40px;
  }
}

.wpo-blog-single-section .tag-share ul,
.wpo-blog-single-section .tag-share-s2 ul {
  list-style: none;
  display: inline-block;
  overflow: hidden;
}

.wpo-blog-single-section .tag-share ul li,
.wpo-blog-single-section .tag-share-s2 ul li {
  float: left;
}

@media (max-width: 767px) {

  .wpo-blog-single-section .tag-share ul li,
  .wpo-blog-single-section .tag-share-s2 ul li {
    margin: 2px;
  }
}

.wpo-blog-single-section .tag-share ul>li+li,
.wpo-blog-single-section .tag-share-s2 ul>li+li {
  margin-left: 10px;
}

@media (max-width: 767px) {

  .wpo-blog-single-section .tag-share ul>li+li,
  .wpo-blog-single-section .tag-share-s2 ul>li+li {
    margin: 2px;
  }
}

.wpo-blog-single-section .tag-share .tag,
.wpo-blog-single-section .tag-share-s2 .tag {
  display: flex;
  align-items: center;
}

.wpo-blog-single-section .tag-share .tag>span,
.wpo-blog-single-section .tag-share-s2 .tag>span {
  color: #232f4b;
  font-weight: 600;
  display: inline-block;
  padding-right: 15px;
  text-transform: uppercase;
}

.wpo-blog-single-section .tag-share .tag ul,
.wpo-blog-single-section .tag-share-s2 .tag ul {
  list-style: none;
  position: relative;
  padding-left: 0;
}

.wpo-blog-single-section .tag-share .tag li,
.wpo-blog-single-section .tag-share-s2 .tag li {
  position: relative;
}

.wpo-blog-single-section .tag-share .tag a,
.wpo-blog-single-section .tag-share-s2 .tag a {
  font-size: 12px;
  font-size: 0.8rem;
  display: inline-block;
  padding: 5px 18px;
  color: #1d2327;
  background: #f5f5f5;
  border-radius: 15px;
  text-transform: uppercase;
}

@media (max-width: 767px) {

  .wpo-blog-single-section .tag-share .tag a,
  .wpo-blog-single-section .tag-share-s2 .tag a {
    font-size: 14px;
  }
}


.wpo-blog-single-section .tag-share-s2 {
  margin: 0;
  border-bottom: 0;
}

.wpo-blog-single-section .tag-share-s2 .tag a {
  width: 35px;
  height: 35px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #eae6e6;
  border-radius: 50%;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #627381;
  padding: 0;
}

.wpo-blog-single-section .tag-share-s2 .tag ul>li:first-child a {
  color: #3c5ba4;
}

.wpo-blog-single-section .tag-share-s2 .tag ul>li:nth-child(2) a {
  color: #47a0d9;
}

.wpo-blog-single-section .tag-share-s2 .tag ul>li:nth-child(3) a {
  color: #0073b1;
}

.wpo-blog-single-section .tag-share-s2 .tag ul>li:nth-child(4) a {
  color: #9c0343;
}


.wpo-blog-single-section .has-tag-share .tag a {
  width: 35px;
  height: 35px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #eae6e6;
  border-radius: 50%;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #627381;
  padding: 0;
}

.wpo-blog-single-section .has-tag-share .tag ul>li:first-child a {
  color: #3c5ba4;
}

.wpo-blog-single-section .has-tag-share .tag ul>li:nth-child(2) a {
  color: #47a0d9;
}

.wpo-blog-single-section .has-tag-share .tag ul>li:nth-child(3) a {
  color: #0073b1;
}

.wpo-blog-single-section .has-tag-share .tag ul>li:nth-child(4) a {
  color: #9c0343;
}

.wpo-blog-single-section .tag-share .tag ul li a:hover,
.wpo-blog-single-section .tag-share-s2 .tag ul li a:hover {
  color: #fff;
  background: #FF7236;
}

.wpo-blog-single-section .author-box {
  margin: 50px 0 60px;
}

.wpo-blog-single-section .author-box .author-avatar {
  float: left;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .author-box .author-avatar {
    float: none;
  }
}

.wpo-blog-single-section .author-box .author-avatar img {
  border-radius: 50%;
}

.wpo-blog-single-section .author-box .author-content {
  display: block;
  overflow: hidden;
  padding-left: 25px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .author-box .author-content {
    padding: 0;
    margin: 15px 0 0 0;
  }
}

.wpo-blog-single-section .author-box .author-content p {
  margin-bottom: 20px;
}

.wpo-blog-single-section .author-box .author-name {
  font-size: 24px;
  font-size: 1.6rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  color: #232f4b;
}

.wpo-blog-single-section .author-box .social-link {
  display: inline-block;
  list-style: none;
}

.wpo-blog-single-section .author-box .social-link li {
  float: left;
  margin-right: 12px;
}

.wpo-blog-single-section .author-box .social-link a {
  display: block;
  font-size: 13px;
  color: #232f4b;
}

.wpo-blog-single-section .author-box .social-link a:hover {
  color: #FF7236;
}

.wpo-blog-single-section .more-posts {
  overflow: hidden;
  border: 1px solid #d8e0f1;
  padding: 0 25px;
}

.wpo-blog-single-section .more-posts>div {
  width: 50%;
  float: left;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts>div {
    width: 100%;
    float: none;
  }
}

.wpo-blog-single-section .more-posts>div>a {
  display: inline-block;
}

.wpo-blog-single-section .more-posts .previous-post,
.wpo-blog-single-section .more-posts .next-post {
  padding: 40px 0;
}

@media (max-width: 767px) {

  .wpo-blog-single-section .more-posts .previous-post,
  .wpo-blog-single-section .more-posts .next-post {
    padding: 25px 15px !important;
  }
}

.wpo-blog-single-section .more-posts .next-post {
  text-align: right;
  border-left: 1px solid #d8e0f1;
  padding-left: 15px;
  padding-right: 5px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .next-post {
    border-left: 0;
    text-align: left;
    border-top: 1px solid #d8e0f1;
  }
}

.wpo-blog-single-section .more-posts .next-post .post-control-link {
  padding-right: 25px;
  position: relative;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .next-post .post-control-link {
    padding-right: 0;
  }
}

.wpo-blog-single-section .more-posts .next-post .post-control-link:before {
  font-family: "themify";
  content: "";
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .next-post .post-control-link:before {
    display: none;
  }
}

.wpo-blog-single-section .more-posts .previous-post {
  padding-right: 15px;
  padding-left: 5px;
}

.wpo-blog-single-section .more-posts .previous-post .post-control-link {
  padding-left: 25px;
  position: relative;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .previous-post .post-control-link {
    padding-left: 0;
  }
}

.wpo-blog-single-section .more-posts .previous-post .post-control-link:before {
  font-family: "themify";
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .more-posts .previous-post .post-control-link:before {
    display: none;
  }
}

.wpo-blog-single-section .more-posts .previous-post>a>span,
.wpo-blog-single-section .more-posts .next-post>a>span {
  display: block;
}

.wpo-blog-single-section .more-posts .post-control-link {
  font-size: 14px;
  color: #6e6e6e;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}

.wpo-blog-single-section .more-posts .post-name {
  font-size: 18px;
  font-size: 1.2rem;
  color: #232f4b;
  margin: 0.7em 0 0;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .more-posts .post-name {
    font-size: 18px;
    font-size: 1.2rem;
  }
}

.wpo-blog-single-section .more-posts a:hover .post-control-link {
  color: #FF7236;
}

.wpo-blog-single-section .comments-area {
  margin-top: 70px;
}

.wpo-blog-single-section .comments-area li>div {
  border-bottom: 1px solid #e4effb;
  padding: 35px;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comments-area li>div {
    padding: 35px 25px;
  }
}

.wpo-blog-single-section .comments-area ol {
  list-style-type: none;
  padding-left: 0;
}

.wpo-blog-single-section .comments-area ol ul {
  padding-left: 30px;
  list-style-type: none;
}

.wpo-blog-single-section .comments-area ol>li:last-child div {
  border-bottom: 0;
}

.wpo-blog-single-section .comments-area .comments-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 1em;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comments-area .comments-title {
    font-size: 18px;
  }
}

.wpo-blog-single-section .comments-area li>div {
  position: relative;
}

.wpo-blog-single-section .comments-area .comment-theme {
  position: absolute;
  left: 35px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area .comment-theme {
    position: static;
  }
}

.wpo-blog-single-section .comments-area .comment-theme img {
  border-radius: 50%;
}

.wpo-blog-single-section .comments-area .comment-main-area {
  padding-left: 100px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area .comment-main-area {
    padding-left: 0;
    margin-top: 25px;
  }
}

.wpo-blog-single-section .comments-area .comment-main-area p {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
}

.wpo-blog-single-section .comments-area .comments-meta h4 {
  font-size: 17px;
  color: #232f4b;
  font-weight: 700;
  margin: 0 0 1em;
}

.wpo-blog-single-section .comments-area .comments-meta h4 span {
  font-size: 15px;
  font-size: 1rem;
  color: #6e6e6e;
  font-weight: normal;
  text-transform: none;
  display: inline-block;
  padding-left: 5px;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comments-area .comments-meta h4 span {
    padding-left: 0;
  }
}

.wpo-blog-single-section .comments-area .comment-reply-link {
  font-size: 14px;
  font-weight: 600;
  color: #232f4b;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wpo-blog-single-section .comments-area .comment-reply-link:hover {
  color: #EBB011;
}


.wpo-blog-single-section .comment-respond .comment-reply-title {
  font-size: 24px;
  margin: 0 0 1.1em;
  font-weight: 700;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comment-respond .comment-reply-title {
    font-size: 20px;
  }
}

.wpo-blog-single-section .comment-respond form input,
.wpo-blog-single-section .comment-respond form textarea {
  background-color: #f9f9f9;
  width: 100%;
  height: 55px;
  border: 1px solid #E3E3E3;
  padding: 6px 15px;
  margin-bottom: 15px;
  outline: 0;
  border-radius: 0px;
  box-shadow: none;
  transition: all 0.3s;
}

.wpo-blog-single-section .comment-respond form input:focus,
.wpo-blog-single-section .comment-respond form textarea:focus {
  box-shadow: none;
  border-color: #FF7236;
}

@media (max-width: 991px) {

  .wpo-blog-single-section .comment-respond form input,
  .wpo-blog-single-section .comment-respond form textarea {
    height: 40px;
  }
}

.wpo-blog-single-section .comment-respond form textarea {
  height: 220px;
  padding: 15px;
}

@media (max-width: 991px) {
  .wpo-blog-single-section .comment-respond form textarea {
    height: 150px;
  }
}

.wpo-blog-single-section .comment-respond .form-inputs {
  overflow: hidden;
}

.wpo-blog-single-section .comment-respond .form-inputs>input:nth-child(1) {
  width: 49%;
  float: left;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond .form-inputs>input:nth-child(1) {
    width: 100%;
    float: none;
  }
}

.wpo-blog-single-section .comment-respond .form-inputs>input:nth-child(2) {
  width: 49%;
  float: right;
}

@media (max-width: 767px) {
  .wpo-blog-single-section .comment-respond .form-inputs>input:nth-child(2) {
    width: 100%;
    float: none;
  }
}

.wpo-blog-single-section .comment-respond .form-submit input {
  max-width: 185px;
  background-color: #FF7236;
  color: #fff;
  margin-bottom: 0;
  border: 0;
  outline: 0;
  font-size: 18px;
  border-radius: 0px;
  height: 55px;
  font-weight: 500;
}

.wpo-blog-single-section .comment-respond .form-submit input:hover {
  background-color: #333;
}

@media screen and (min-width: 1200px) {
  .wpo-blog-single-left-sidebar-section .blog-sidebar {
    padding-right: 45px;
    padding-left: 0;
  }
}

/*==================> 10. login-design <=================*/
.wpo-login-area {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 100px 0;
}

.wpo-accountWrapper {
  width: 1170px;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  margin: auto;
  box-shadow: 0px 14px 60px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
}

.wpo-accountInfo {
  width: 50%;
  background: #062265;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
  text-align: center;
  padding: 50px;
}

.wpo-accountForm {
  width: 50%;
  padding: 70px 85px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wpo-accountInfoHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.wpo-accountInfoHeader h2 a {
  display: block;
  line-height: 50px;
  font-size: 35px;
  font-weight: 600;
  color: #fff;
}

.wpo-accountInfo .wpo-accountBtn {
  height: 40px;
  background: #fff;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  font-size: 14px;
  color: #062265;
  border: 2px solid #fff;
  transition: all 0.4s ease-in-out 0s;
}

.wpo-accountInfo .wpo-accountBtn:hover {
  background: transparent;
  color: #fff;
}

.wpo-accountInfo p {
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
}

.fromTitle h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.fromTitle p {
  font-size: 15px;
  margin-bottom: 40px;
}

.form-style input {
  width: 100%;
  margin-bottom: 15px;
  padding-left: 20px;
  height: 60px;
  border: 1px solid #e5e5e5 !important;
  border-radius: 2px;
  border: none;
}

.form-style input:focus {
  outline: none;
  border: 1px solid #e5e5e5 !important;
}

input[type=checkbox]+label {
  display: block;
  margin: 0.2em;
  cursor: pointer;
  padding: 0.2em;
  position: relative;
}


input[type=checkbox]+label:before {
  content: "✔";
  border: 1px solid #e5e5e5;
  border-radius: 0.2em;
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  padding-left: 0.2em;
  padding-bottom: 0.3em;
  margin-right: 0.2em;
  vertical-align: bottom;
  color: transparent;
  transition: 0.2s;
  line-height: 1.2em;
  position: absolute;
  left: 0;
}

input[type=checkbox]+label:active:before {
  transform: scale(0);
}

input[type=checkbox]:checked+label:before {
  background-color: #FF7236;
  border-color: #FF7236;
  color: #fff;
}

input[type=checkbox]:disabled+label:before {
  transform: scale(1);
  border-color: #aaa;
}

input[type=checkbox]:checked:disabled+label:before {
  transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}

.check-box-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forget-btn a {
  display: inline-block;
  font-size: 14px;
  color: #FF7236;
}

.input-box label {
  color: #676B79;
  font-weight: 500;
  font-size: 16px;
  padding-left: 20px !important;
}

.wpo-accountForm .wpo-accountBtn {
  font-size: 16px;
  padding: 10px 20px;
  border: 2px solid #FF7236;
  width: 100%;
  background: #FF7236;
  color: #fff;
  transition: all 0.4s ease-in-out 0s;
  margin-top: 30px;
}

.wpo-accountForm .wpo-accountBtn:hover {
  background: transparent;
  color: #333;
}

.or {
  border-top: 1px dashed #e5e5e5;
  margin-top: 45px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
}

.or span {
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
  padding: 0 25px;
  background: #fff;
  position: relative;
  top: -14px;
  color: #FF7236;
}

.wpo-socialLoginBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  list-style: none;
}

.wpo-socialLoginBtn li button {
  height: 40px;
  width: 50px;
  min-width: 50px;
  font-size: 15px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: none;
  text-transform: capitalize;
  font-weight: 400;
  color: #fff;
}

.wpo-socialLoginBtn li button.facebook {
  background: #3b5998;
}

.wpo-socialLoginBtn li button.linkedin {
  background: #0077B5;
}

.wpo-socialLoginBtn li button.twitter {
  background: #55acee;
}

.wpo-socialLoginBtn li {
  margin: 0px 5px 5px;
}

.subText {
  text-align: center;
}

.subText a {
  display: inline-block;
  font-size: 14px;
  color: #FF7236;
}

.form-group {
  position: relative;
}

.input-group-btn {
  position: absolute;
  right: 10px;
  top: 37px;
}

.input-group-btn button {
  background: transparent !important;
  border: none;
  outline: none;
  background: none;
  box-shadow: none !important;
}

.input-group-btn button:hover {
  background: transparent;
}

.input-group-btn button:focus,
.input-group-btn button.active {
  background: none !important;
  border: none !important;
  outline: none !important;
}

.btn-default.active,
.btn-default.active,
.open>.dropdown-toggle.btn-default {
  background: none !important;
  border: none;
  outline: none;
}

@media (max-width: 1200px) {
  .wpo-accountWrapper {
    width: 900px;
  }

  .wpo-accountForm {
    padding: 70px 35px;
  }
}

@media (max-width: 1024px) {
  .wpo-accountWrapper {
    width: 100%;
    max-width: 100%;
  }

  .wpo-accountForm {
    padding: 70px 35px;
  }

  .image img {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .wpo-accountInfo {
    width: 100%;
  }

  .wpo-accountForm {
    width: 100%;
  }

  .accountArea {
    padding: 0px 16px;
  }
}

@media (max-width: 767px) {
  .wpo-accountInfo {
    width: 100%;
  }

  .wpo-accountForm {
    width: 100%;
  }
}

.back-home {
  max-width: 150px;
}

/*--------------------------------------------------------------
20. wpo-contact-pg-section
--------------------------------------------------------------*/
.wpo-contact-pg-section {
  padding-bottom: 0px;
}

.wpo-contact-pg-section .wpo-contact-title {
  max-width: 630px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .wpo-contact-pg-section .wpo-contact-title {
    margin-bottom: 30px;
  }
}

.wpo-contact-pg-section .wpo-contact-title h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
}

@media (max-width: 575px) {
  .wpo-contact-pg-section .wpo-contact-title h2 {
    font-size: 25px;
  }

  .wpo-contact-pg-section .wpo-contact-title p {
    font-size: 17px;
  }
}

.wpo-contact-pg-section .wpo-contact-form-area {
  padding: 50px;
  background: #fff;
  box-shadow: 0px 1px 15px 0px rgba(62, 65, 159, 0.1);
  position: relative;
  z-index: 99;
  border: 1px solid #ebebeb;
}

@media (max-width: 575px) {
  .wpo-contact-pg-section .wpo-contact-form-area {
    padding: 20px;
  }
}


.wpo-contact-pg-section form input,
.wpo-contact-pg-section form select,
.wpo-contact-pg-section form textarea {
  background: #f9f9f9;
  width: 100%;
  height: 60px;
  border: 1px solid #E3E3E3;
  border-radius: 0px;
  box-shadow: none !important;
  padding-left: 25px;
}

@media (max-width: 991px) {

  .wpo-contact-pg-section form input,
  .wpo-contact-pg-section form select,
  .wpo-contact-pg-section form textarea {
    height: 45px;
  }
}

.wpo-contact-pg-section form input:focus,
.wpo-contact-pg-section form select:focus,
.wpo-contact-pg-section form textarea:focus {
  border-color: #c6cfff;
  background: #f4f6fa;
}

.wpo-contact-pg-section form textarea {
  height: 180px;
  padding-top: 15px;
}

.wpo-contact-pg-section form .form-field {
  width: calc(50% - 30px);
  float: left;
  margin: 0 15px 25px;
}

@media (max-width: 600px) {
  .wpo-contact-pg-section form .form-field {
    width: calc(100% - 25px);
    float: none;
  }
}

.wpo-contact-pg-section form .fullwidth {
  width: calc(100% - 25px);
  float: none;
  clear: both;
}

.wpo-contact-pg-section .wrap {
  margin: 0 -15px;
  overflow: hidden;
}

.wpo-contact-pg-section form {
  margin: 0 -15px;
  overflow: hidden;
}

.wpo-contact-pg-section form ::-webkit-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #6d6d6d;
}

.wpo-contact-pg-section form :-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #6d6d6d;
}

.wpo-contact-pg-section form ::-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #6d6d6d;
}

.wpo-contact-pg-section form :-ms-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #6d6d6d;
}

.wpo-contact-pg-section form select {
  display: inline-block;
  color: #6d6d6d;
  cursor: pointer;
  opacity: 1;
  padding: 6px 25px;
  font-size: 15px;
  font-size: 1rem;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

.wpo-contact-pg-section form .submit-area {
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  margin-left: 0;
}

@media (max-width: 767px) {
  .wpo-contact-pg-section form .submit-area {
    margin-bottom: 0;
  }
}

.wpo-contact-form-wrap {
  padding: 30px;
}

.wpo-contact-pg-section form .submit-area .theme-btn,
.wpo-contact-pg-section form .submit-area .theme-btn-s3,
.wpo-contact-pg-section form .submit-area .theme-btn-s4,
.wpo-contact-pg-section form .submit-area .view-cart-btn {
  border-radius: 30px;
  font-size: 16px;
  width: auto;
  background: #ff5530;
  height: auto;
  border: 0;
}

.wpo-contact-pg-section form .submit-area .theme-btn:after,
.wpo-contact-pg-section form .submit-area .theme-btn-s3:after,
.wpo-contact-pg-section form .submit-area .theme-btn-s4:after,
.wpo-contact-pg-section form .submit-area .view-cart-btn:after {
  border-radius: 30px;
}

.wpo-contact-pg-section form .wpo-contact-form-area .submit-area {
  width: 100%;
  margin-bottom: 0;
  position: relative;
}

.wpo-contact-pg-section form .wpo-contact-form-area .submit-area .theme-btn {
  text-align: center;
  height: 55px;
  padding: 10px 25px;
}

.wpo-contact-pg-section form .wpo-contact-form-area .submit-area .wpcf7-spinner {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  margin: 0;
}

.wpo-contact-pg-section form .wpo-contact-form-area .submit-area .consultar-cf7-btn {
  width: auto;
  display: inline-block;
  padding-right: 50px;
  padding-left: 50px;
  height: 55px;
  background: #db9e30;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.wpo-contact-form-area .wpcf7-spinner {
  display: block;
}

.wpo-contact-pg-section .wpcf7 .ajax-loader {
  display: block;
}

.wpo-contact-pg-section form .wpo-contact-form-area .submit-area .consultar-cf7-btn:hover {
  background: #fd3800;
  transition: .3s;
}

.wpo-contact-pg-section form .wpo-contact-form-area .fullwidth {
  width: calc(100% - 25px);
  float: none;
  clear: both;
}

.volunteer-contact-form form textarea {
  height: 100px;
}
/*--------------------------------------------------------------
12. wpo-faq-page
--------------------------------------------------------------*/
.wpo-faq-section .wpo-section-title {
  text-align: center;
}

.wpo-faq-section .wpo-section-title h2 {
  display: inline-block;
}

.wpo-faq-section .accordion-item {
  border: 0;
  border: 1px solid #e1e1e1;
  padding: 0;
  margin-bottom: 20px;
}


.wpo-faq-section .accordion-item button {
  padding: 20px;
  border: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  color: #000B47;
  text-align: left;
  font-family: "Inter", sans-serif;
}

.wpo-faq-section .accordion-item button::after {
  background: none;
  font-family: "themify";
  content: "\e622";
  font-size: 15px;
  transform: rotate(0deg);
  font-weight: 700;
}

.wpo-faq-section .accordion-item button.collapsed {
  color: #373b3e;
}

.wpo-faq-section .accordion-item button.collapsed::after {
  content: "\e61a";
}

.wpo-faq-section .accordion-item button:focus {
  box-shadow: none;
  outline: none;
  border-color: #e1e1e1;
}

.wpo-faq-section .accordion-item .accordion-collapse {
  border: 0;
}

.wpo-faq-section .accordion-button {
  background: transparent;
  box-shadow: none;
}

.wpo-faq-section .accordion-header {
  margin-top: 0;
}

/*-----------------------------------------------------
#4.1 faq section
------------------------------------------------------*/
.question-area {
  background: rgba(242, 242, 242, 0.5019607843);
  padding-top: 100px;
}

@media (max-width: 991px) {
  .question-area {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .question-area {
    padding-top: 60px;
  }
}

.question-area .wpo-section-title {
  text-align: center;
}

.question-area .wpo-section-title h2 {
  display: inline-block;
}

.question-touch {
  max-width: 570px;
  margin: auto;
  box-shadow: 0px 5px 15px 0px rgba(68, 68, 68, 0.1);
  padding: 50px;
  text-align: center;
  padding-top: 60px;
  background: #fff;
  border-radius: 5px;
}

@media (max-width: 590px) {
  .question-touch {
    padding: 15px;
  }
}

@media (max-width: 991px) {
  .faq-pb {
    margin-top: 15px;
  }
}

.question-touch h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
  margin-bottom: 35px;
}

.question-touch .half-col {
  width: 100%;
}

.question-touch input,
.question-touch textarea {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid #ddd;
  border-top: none;
  box-shadow: none;
  margin-bottom: 22px;
}

.question-touch input:focus,
.question-touch textarea:focus {
  outline: none;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid #eeeeee;
  box-shadow: none;
}

.question-touch textarea {
  height: 160px;
}

.question-touch ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #888;
  font-size: 14px;
}

.question-touch ::-moz-placeholder {
  /* Firefox 19+ */
  color: #888;
  font-size: 14px;
}

.question-touch :-ms-input-placeholder {
  /* IE 10+ */
  color: #888;
  font-size: 14px;
}

.question-touch :-moz-placeholder {
  /* Firefox 18- */
  color: #888;
  font-size: 14px;
}

/*--------------------------------------------------------------
18. pf-terms-section
--------------------------------------------------------------*/
.pf-terms-section h4 {
  font-size: 30px;
  margin-bottom: 30px;
}

.pf-terms-section .pf-terms-wrap .pf-terms-img img {
  width: 100%;
}

.pf-terms-section .pf-terms-wrap .pf-terms-text {
  padding-top: 30px;
}

.pf-terms-section .pf-terms-wrap .pf-terms-text h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .pf-terms-section .pf-terms-wrap .pf-terms-text h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .pf-terms-section .pf-terms-wrap .pf-terms-text h2 {
    font-size: 25px;
  }
}

.pf-terms-section .pf-terms-wrap .pf-terms-text ul {
  list-style: none;
  margin-top: 20px;
  margin-bottom: 40px;
}

.pf-terms-section .pf-terms-wrap .pf-terms-text ul li {
  padding: 10px;
  position: relative;
  padding-left: 20px;
}

.pf-terms-section .pf-terms-wrap .pf-terms-text ul li:before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #FF7236;
  content: "";
  border-radius: 50%;
  transform: translateY(-50%);
}

.pf-terms-section .pf-terms-wrap .pf-terms-text .t-sub {
  padding: 20px 0;
}

.pf-terms-section .pf-terms-wrap .pf-terms-text .t-sub .pf-p-details-img {
  margin-bottom: 20px;
}

.pf-terms-section .pf-faq-section {
  margin-top: 30px;
}

.pf-terms-section .pf-faq-section {
  margin-top: 30px;
}

.pf-terms-section .accordion-item {
  border: 0;
  border: 1px solid rgba(242, 242, 242, 0.5019607843);
  padding: 5px 20px;
  margin-bottom: 20px;
  background: #f6f6f6;
}

.pf-terms-section .accordion-item .accordion-body {
  padding-left: 0;
  padding-right: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.pf-terms-section .accordion-item .accordion-body p {
  color: #525252;
}

.pf-terms-section .accordion-item button {
  padding: 20px;
  border: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  color: #000B47;
  text-align: left;
  font-family: "Inter", sans-serif;
}

.pf-terms-section .accordion-item button::after {
  background: none;
  font-family: "themify";
  content: "\e622";
  font-size: 15px;
  transform: rotate(0deg);
  font-weight: 700;
}

.pf-terms-section .accordion-item button.collapsed {
  color: #000B47;
}

.pf-terms-section .accordion-item button.collapsed::after {
  content: "\e61a";
}

.pf-terms-section .accordion-item button:focus {
  box-shadow: none;
  outline: none;
  border-color: #e1e1e1;
}

.pf-terms-section .accordion-item .accordion-collapse {
  border: 0;
}

.pf-terms-section .accordion-button {
  background: transparent;
}

.pf-terms-section .accordion-button:not(.collapsed) {
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.13);
}

/* 3.11 contact-info-section */
.contact-info-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-info-section .ct-shape {
  position: absolute;
  left: -3%;
  top: -20%;
  z-index: -1;
}


.contact-info-section .office-info .col {
  padding: 0 15px;
}

.contact-page .contact-info-section .office-info .col {
  padding: 0 15px;
}

@media (max-width: 1399px) {
  .contact-info-section .office-info .col {
    padding: 0 20px;
  }
}

@media (max-width: 1199px) {
  .contact-info-section .office-info .col {
    padding: 0 15px;
  }
}

@media (max-width: 1200px) {
  .contact-info-section .office-info .col .office-info-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 1200px) {
  .contact-info-section .office-info .col:last-child .office-info-item {
    margin-bottom: 0px;
  }
}

.contact-info-section .office-info .office-info-item {
  text-align: center;
  box-shadow: 0px 5px 15px 0px rgba(62, 65, 159, 0.1);
  padding: 40px;
}

@media (max-width: 991px) {
  .contact-info-section .office-info .office-info-item {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .contact-info-section .office-info .office-info-item {
    padding: 30px;
  }
}

.contact-info-section {
  padding: 20px 0;
}

.contact-info-section .office-info .office-info-item .office-info-icon {
  width: 85px;
  height: 85px;
  background: #f5f5f5;
  line-height: 85px;
  text-align: center;
  margin: 0 auto;
  border-radius: 50%;
}

.contact-info-section .office-info .office-info-item .office-info-icon img {
  max-width: 50px;
}

.contact-info-section .office-info .office-info-item .office-info-icon i:before {
  font-size: 35px;
}

.contact-info-section .office-info .office-info-item .office-info-text p {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
}

.contact-info-section .office-info .office-info-item .office-info-text span {
  font-size: 30px;
  font-weight: 500;
  margin: 20px 0;
  font-family: "Jost", sans-serif;
  color: #000B47;
  margin-bottom: 15px;
  display: block;
}

/*--------------------------------------------------------------
#  shop-pg-section
--------------------------------------------------------------*/

.shop-pg-section .shop-grids {
  margin: 0 -15px;
}

.shop-pg-section .shop-grids .grid {
  width: calc(33.33% - 30px);
  float: left;
  margin: 0 15px 30px;
}

@media (max-width: 991px) {
  .shop-pg-section .shop-grids .grid {
    width: calc(50% - 30px);
  }
}

@media (max-width: 550px) {
  .shop-pg-section .shop-grids .grid {
    width: calc(100% - 30px);
    float: none;
  }
}

.shop-pg-section .grid:hover .cart-details li {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.shop-pg-section .img-cart {
  position: relative;
  overflow: hidden;
  /*    z-index: 1;*/
}

.shop-pg-section .img-cart:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  content: "";
  background: rgba(20, 33, 43, 0.4);
  transition: all 0.3s;
}

.shop-pg-section .img-cart:hover:before {
  height: 100%;
}

.shop-pg-section .cart-details {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 20px;
  text-align: center;
}

.shop-pg-section .cart-details ul {
  overflow: hidden;
  display: inline-block;
  list-style-type: none;
  padding-left: 0;
}

.shop-pg-section .cart-details li {
  float: left;
  margin: 7px;
  position: relative;
  bottom: -50px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.shop-pg-section .cart-details li:last-child {
  transition: all 0.3s;
}

.shop-pg-section .details {
  text-align: center;
  padding: 30px 15px;
  border: 1px solid #ebebeb;
  border-top: 0;
}

.shop-pg-section .details h4 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 0.4em;
  font-family: "Jost", sans-serif;
}

@media (max-width: 991px) {
  .shop-pg-section .details h4 {
    font-size: 20px;
  }
}

.shop-pg-section .details h4 a {
  color: #262b3e;
}

.shop-pg-section .details h4 a:hover {
  color: #FF7236;
}

.shop-pg-section .details del {
  color: #aaa;
  font-weight: 500;
  display: inline-block;
  padding-right: 10px;
}

@media (max-width: 991px) {
  .shop-pg-section .details del {
    font-size: 14px;
  }
}

.shop-pg-section .details .price {
  color: #262b3e;
  font-weight: 500;
}

@media (max-width: 991px) {
  .shop-pg-section .details .price {
    font-size: 14px;
  }
}

.shop-pg-section .pagination-wrapper {
  text-align: center;
  clear: both;
}

.shop-pg-section .details ins {
  text-decoration: none;
  font-weight: 600;
}

.shop-pg-section .cart-details .theme-btn {
  background: #FF7236;
  color: #fff;
}

.shop-pg-section .cart-details .theme-btn {
  padding: 10px 25px;
}



/*--------------------------------------------------------------
21. error-404-section
--------------------------------------------------------------*/
.error-404-section {
  text-align: center;
}

.error-404-section .error h2 {
  font-size: 150px;
  margin: 0;
}

@media (max-width: 991px) {
  .error-404-section .error h2 {
    font-size: 120px;
  }
}

@media (max-width: 767px) {
  .error-404-section .error h2 {
    font-size: 100px;
  }
}


.error-404-section .error-message {
  margin-top: 0px;
  padding: 0 200px;
}

@media (max-width: 991px) {
  .error-404-section .error-message {
    margin-top: 0px;
    padding: 0 100px;
  }
}

@media (max-width: 767px) {
  .error-404-section .error-message {
    padding: 0;
  }
}

.error-404-section .error-message h3 {
  font-size: 30px;
  font-size: 2rem;
  margin: 0 0 0.8em;
}

.error-404-section .error-message p {
  max-width: 750px;
  margin: auto;
  margin-bottom: 1.8em;
}


/* Give Donate Style*/
.donate-area-bottom .featured-img {
  padding-bottom: 35px;
}

.wpo-case-details-wrap [id*=give-form] div.summary.wpo-case {
  width: 100%;
  float: none;
}

.wpo-case-form-details .wpo-case.summary h2.give-form-title {
  padding-top: 30px;
  font-size: 30px;
}

.wpo-case-form-details .wpo-case.summary .give-goal-progress .income {
  font-size: 30px;
  color: #242f6c;
}

.wpo-case-form-details .wpo-case.summary .give-progress-bar {
  height: 7px;
}

.give_error>p,
.give_success>p,
.give_warning>p {
  color: #242f6c;
}

.give_error,
.give_success,
.give_warning {
  margin: 30px 0;
}

.give-form-content-wrap ul {
  padding-left: 18px;
}


.wpo-case-details-wrap form[id*=give-form] .give-donation-amount #give-amount,
.wpo-case-details-wrap form[id*=give-form] .give-donation-amount #give-amount-text {
  height: 50px;
  border: 1px solid #eee;
}

.wpo-case-details-wrap form[id*=give-form] .give-donation-amount .give-currency-symbol {
  height: 50px;
  border: 1px solid #eee;
  line-height: 50px;
  color: #242f6c;
  padding: 0px 18px;
}

.wpo-case-details-wrap .give-btn {
  background: #F74F22;
  border: 1px solid #F74F22;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
}

.wpo-case-details-wrap .give-btn:hover {
  background: #333;
  border: 1px solid #333;
}

#give-donation-level-button-wrap>li {
  margin: 0 10px 10px 0;
}

#give-recurring-form h3.give-section-break,
#give-recurring-form h4.give-section-break,
#give-recurring-form legend,
form.give-form h3.give-section-break,
form.give-form h4.give-section-break,
form.give-form legend,
form[id*=give-form] h3.give-section-break,
form[id*=give-form] h4.give-section-break,
form[id*=give-form] legend {
  color: #020202;
  font-weight: 500;
}

form[id*=give-form] #give-gateway-radio-list>li label.give-gateway-option {
  font-weight: 600;
  font-size: 15px;
}

#give-recurring-form .form-row label,
form.give-form .form-row label,
form[id*=give-form] .form-row label {
  font-size: 14px;
  font-weight: 600;
}

#give-recurring-form .form-row input[type=email],
#give-recurring-form .form-row input[type=password],
#give-recurring-form .form-row input[type=tel],
#give-recurring-form .form-row input[type=text],
#give-recurring-form .form-row input[type=url],
#give-recurring-form .form-row select,
#give-recurring-form .form-row textarea,
form.give-form .form-row input[type=email],
form.give-form .form-row input[type=password],
form.give-form .form-row input[type=tel],
form.give-form .form-row input[type=text],
form.give-form .form-row input[type=url],
form.give-form .form-row select,
form.give-form .form-row textarea,
form[id*=give-form] .form-row input[type=email],
form[id*=give-form] .form-row input[type=password],
form[id*=give-form] .form-row input[type=tel],
form[id*=give-form] .form-row input[type=text],
form[id*=give-form] .form-row input[type=url],
form[id*=give-form] .form-row select,
form[id*=give-form] .form-row textarea {
  background-color: #fdfdfd;
  border: 1px solid #eee;
}

form[id*=give-form] #give-final-total-wrap .give-donation-total-label {
  background-color: #f6f6f6;
  color: #687693;
  height: 50px;
  line-height: 50px;
  font-size: 15px;
  border: 1px solid #eae7e7;
  padding: 0px 20px;
  font-weight: 600;
}

form[id*=give-form] #give-final-total-wrap .give-final-total-amount {
  background-color: #f6f6f6;
  height: 50px;
  line-height: 50px;
  font-size: 15px;
  border: 1px solid #eae7e7;
  padding: 0px 20px;
  font-weight: 700;
}

.wpo-case-details-wrap .give-submit-button-wrap .give-btn {
  padding: 15px 30px;
  border-radius: 5px;
}

#give-recurring-form,
form.give-form,
form[id*=give-form] {
  margin-top: 42px;
}

#give_checkout_user_info input {
  font-size: 14px;
  color: #687693;
}

#give_checkout_user_info input::-webkit-input-placeholder,
#give_checkout_user_info input[type=email]::-webkit-input-placeholder,
#give_checkout_user_info input[type="textarea"]::-webkit-input-placeholder {
  font-style: 14px;
  color: #687693;
}

#give_checkout_user_info input:-moz-placeholder,
#give_checkout_user_info input[type=email]:-moz-placeholder,
#give_checkout_user_info input[type="textarea"]:-moz-placeholder {
  font-style: 14px;
  color: #687693;
}

#give_checkout_user_info input::-moz-placeholder,
#give_checkout_user_info input[type=email]::-moz-placeholder,
#give_checkout_user_info input[type="textarea"]::-moz-placeholder {
  font-style: 14px;
  color: #687693;
}

#give_checkout_user_info input:-ms-input-placeholder,
#give_checkout_user_info input[type=email]:-ms-input-placeholder,
#give_checkout_user_info input[type="textarea"]:-ms-input-placeholder {
  font-style: 14px;
  color: #687693;
}

.donate-area-bottom .give-goal-progress .income {
  font-size: 30px;
  color: #020202;
}

.donate-area-bottom .give-goal-progress .goal-text {
  font-weight: 600;
}

.give-goal-progress .raised {
}

.donate-area-bottom .give-progress-bar {
  height: 7px;
}

.donate-area-bottom h3 {
/*    padding-top: 15px;*/
  padding-bottom: 20px;
  margin-bottom: 0;
}

form[id*=give-form] #give-gateway-radio-list>li {
  color: #4e586f;
}

fieldset#give-payment-mode-select {
  margin-bottom: 15px;
}

form[id*=give-form] legend {
  margin-bottom: 18px;
  font-weight: 500;
}

.case-single-section .donate-area-wrapper textarea {
  height: 150px;
}

#give_checkout_user_info input,
#give_checkout_user_info textarea {
  font-size: 13px;
  color: #687693;
  padding-left: 12px;
}

table#give_donation_receipt th {
  background: #00c4d7;
}

.wpo-case-details-wrap .give-btn {
  background: #F74F22;
  border: 1px solid #F74F22;
  color: #fff;
  padding: 12px 22px;
  border-radius: 5px;
}

.wpo-case-details-wrap [id*=give-form] div.give-form-content-wrap {
  font-size: 17px;
}

h1.give-form-title.entry-title {
  display: none;
}

.dataTables_wrapper input[type="search"],
.dataTables_wrapper select {
  background: #fff !important;
}

table#give_donation_receipt th {
  font-weight: 500;
}

.case-single-sidebar .widget {
  box-shadow: 0px 1px 40px 0px rgb(40 63 116 / 10%);
  padding: 30px;
  background: #fff;
}
.case-single-sidebar .widget h3:before {
  top: 5px;
  transform: unset;
}
.case-single-sidebar .search-widget {
  padding: 0;
  background: #fff;
}
.case-single-sidebar .search-widget input{
  background: #F4F6F8;
}
.case-single-sidebar .search-widget input:focus{
  outline: none;
}
.donate-area-wrapper {
  box-shadow: 0px 1px 40px 0px rgb(40 63 116 / 10%);
  padding: 30px;
}}
