/*----------------------------------------
    CSS INDEX
    ===================

    01. Theme default CSS
	02. variables
    03. mixins
    04. common
    05. overlay
    06. header
    07. breadcrumb
    08. mobile-menu
    09. slider
    10. services
    11. about
    12. contact
    13. cases
    14. counter
    15. team
    16. gallery
    17. events
    18. testimonial
    19. donation
    20. blog
    21. feature
    22. footer

-----------------------------------------------------------------------------------*/
/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

/* 1. Theme default css */
body {
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  scroll-behavior: smooth;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

a,
.button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: medium none;
  text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  line-height: 1.1;
  margin-top: 0px;
  font-style: normal;
  font-weight: 500;
  text-transform: normal;
  letter-spacing: -0.3px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
  line-height: 1.5;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #444;
  margin-bottom: 0;
}

hr {
  border-bottom: 1px solid #ddd;
  border-top: 0 none;
  margin: 10px 0;
  padding: 0;
}

label {
  color: #333;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

*::-moz-selection {
  background: #061738;
  color: white;
  text-shadow: none;
}

::-moz-selection {
  background: #061738;
  color: white;
  text-shadow: none;
}

::selection {
  background: #061738;
  color: white;
  text-shadow: none;
}

/*--
    - Input Placeholder
-----------------------------------------*/
*::-moz-placeholder {
  color: #061738;
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: #061738;
  font-size: 14px;
  opacity: 1;
}

/*--
    - position Classes
-----------------------------------------*/
.pos-rel {
  position: relative;
}

.pos-abl {
  position: absolute;
}

/*--
    - Common Classes
-----------------------------------------*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

/*--
    - Background color
-----------------------------------------*/
.grey-bg {
  background: #333;
}

.grey-bg2 {
  background: #f4f2f169;
}

.white-bg {
  background: white;
}

.black-bg {
  background: #061738;
}

.black-bg2 {
  background: #fefefe;
}

.heding-bg {
  background: #000;
}

.theme-bg {
  background: #ab8234;
}

.theme-bg2 {
  background: #ab8234;
}

/*--
    - color
-----------------------------------------*/
.white-color {
  color: white;
}

.black-color {
  color: #061738;
}

.theme-color {
  color: #ab8234;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ab8234;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #624c25 !important;
}

/*--
	-theme-btn
----------------------------------------*/
.theme_btn {
  overflow: hidden;
  color: white !important;
  background: #624c25;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 11px 15px 11px 15px;
  display: inline-block;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  letter-spacing: 1px;
}

.theme_btns {
  overflow: hidden;
  color: white !important;
  background: #28a745;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 11px 15px 11px 15px;
  display: inline-block;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  letter-spacing: 1px;
}

.theme_btn span {
  position: absolute;
  right: 10px;
  background: white;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  top: 5px;
  display: inline-block;
  z-index: 3;
}

.theme_btn span i {
  color: #ab8234;
  font-size: 15px;
  line-height: 30px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.theme_btn::before {
  top: 0px;
  width: 0px;
  left: auto;
  right: 0px;
  z-index: -1;
  bottom: 0px;
  content: "";
  position: absolute;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.theme_btn:hover {
  color: white;
}

.theme_btn:hover::before {
  left: 0px;
  width: 100%;
  right: auto;
}

.theme_btn:hover i {
  color: #ab8234;
  transform: rotateY(180deg);
}

.theme_btn_bg::before {
  /* background: #ab8234 !important */
}

.theme_btn_bg_02::before {
  background: #ab8234 !important;
}

.theme-border-btn {
  color: white;
  background: transparent;
  border: 2px solid #414657;
}

.theme-border-btn:hover {
  color: #000;
  border-color: transparent;
}

.theme-border-btn:hover::before {
  background: #ab8234;
}

.theme_btn2 {
  background: #624c25 !important;
}

.theme_btn2 span i {
  color: #ab8234;
}

.theme_btn2:hover {
  border-color: transparent;
  background: transparent;
}

.theme_btn2:hover span i {
  color: #ab8234;
}

.theme_btn3 {
  color: #000 !important;
  background: white !important;
}

.theme_btn3 span {
  background: #ab8234;
}

.theme_btn3 span i {
  color: white;
}

.theme_btn3:hover {
  color: white !important;
  border-color: transparent;
  background: transparent;
}

.theme_btn3:hover span {
  background: white;
}

.theme_btn3:hover span i {
  color: #ab8234;
}

.left-line {
  position: relative;
}

.left-line::before {
  content: "";
  background: white;
  position: absolute;
  left: 0;
  top: 10px;
  width: 50px;
  height: 2px;
  z-index: 1;
}

.teams {
  box-shadow: 0 0 20px #0000002e;
  padding-bottom: 7px;
}

/*--
section-title
----------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .section-title {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 767px) {
  .inner-banner-text span {
    font-size: 12px !important;
  }

  .side-mobile-menu ul li a {
    padding: 7px 0 !important;
    font-size: 17px !important;
  }

  .inner-contents {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }

  .inner-banner-text h1 {
    font-size: 18px !important;
    margin-bottom: 0px !important;
  }

  .transperancy-heading {
    font-size: 25px;
    font-weight: 400;
    padding: 40px 10px 0px !important;
    text-transform: capitalize;
    line-height: 1.25 !important;
  }

  .team-block-one .inner-box .image-box {
    width: 75px !important;
  }

  .team-block-one .inner-box .lower-content p {
    font-size: 15px !important;
  }

  .transperancy-container {
    padding: 20px 30px !important;
  }

  .transperancy-image-container {
    display: block !important;
    padding: 30px !important;
  }

  .transperancy-image-wrapper {
    height: 100% !important;
    margin-bottom: 20px !important;
    padding: 40px !important;
    width: auto !important;
  }

  .transperancy-image-wrapper {
    padding: 25px !important;
  }

  .transperancy-image-wrapper:first-child,
  .transperancy-image-wrapper:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
    -webkit-transform: none !important;
    transform: none !important;
  }

  .transperancy-image-wrapper:first-child,
  .transperancy-image-wrapper:last-child {
    margin-left: 0 !important;
    margin-right: 0 !important;
    -webkit-transform: none !important;
    transform: none !important;
  }

  .hide-for-mobile {
    display: none !important;
  }

  .hide-for-desktop {
    display: block !important;
  }

  .theme_btn {
    padding: 10px 10px 10px 10px !important;
  }

  .btm-cart {
    display: contents !important;
    color: #000 !important;
  }

  .qty .count {
    font-size: 14px !important;
    line-height: 25px !important;
    min-width: 20px !important;
  }

  .qty .minus {
    width: 25px !important;
    height: 25px !important;
    font-size: 10px !important;
  }

  .qty .plus {
    width: 25px !important;
    height: 25px !important;
    font-size: 10px !important;
  }

  .blog {
    padding: 10px !important;
  }

  .standard-right-area {
    position: relative;
    overflow: hidden;
    margin: 0px 0 15px !important;
    padding: 15px 20px 10px !important;
    box-shadow: 0 0 12px 0 rgb(32 46 60 / 6%) !important;
  }

  .loader-hi8 {
    height: 1450px !important;
  }

  .thumb-edit {
    position: absolute;
    top: 20px !important;
    right: 105px !important;
    z-index: 1;
  }

  .botm {
    position: relative !important;
    bottom: -10px !important;
  }

  .special-label-2 {
    left: 120px !important;
  }

  .col-xs-4 {
    flex: 0 0 33.333333%;
    width: 33.333333%;
  }

  .col-xs-8 {
    flex: 0 0 66.666667%;
    width: 66.666667%;
  }

  .main-header-area .logo-img img {
    max-width: 100%;
    padding: 2px !important;
    height: 50px;
  }

  .abs {
    padding-right: 15px !important;
  }

  #loadMore a {
    padding: 10px !important;
  }

  .theme_btns {
    padding: 10px !important;
  }

  .page-title-wrapper {
    padding-top: 25px !important;
  }

  .blogs-details-left-area .blogs-02 .blogs-details-thumb img {
    height: 250px !important;
  }

  .hi8_450 {
    height: 250px !important;
  }

  .tooltip .bottom i {
    margin-left: 74px !important;
  }

  .tooltip .bottom {
    top: 30px !important;
  }

  .mission-form_amountButton {
    padding: 7px 15px !important;
  }

  .thm-btn {
    padding: 8px 10px 8px !important;
  }

  .product-disclamer_icon {
    font-size: 5px !important;
    width: 10px !important;
    height: 10px !important;
    line-height: 11px !important;
    margin: 0px 5px 0px 5px !important;
  }

  .underline-left {
    margin-left: 120px !important;
  }

  .underline-left .fancy:after,
  .underline-left .fancy:before {
    width: 65px !important;
  }

  .underline .fancy:after,
  .underline .fancy:before {
    width: 65px !important;
  }

  .mb-50 {
    margin-bottom: 30px !important;
  }

  .pb-50 {
    padding-bottom: 30px !important;
  }

  .pt-50 {
    padding-top: 30px !important;
  }

  .pb-100 {
    padding-bottom: 30px !important;
  }

  .pt-130 {
    padding-top: 30px !important;
  }

  .semi-02-title {
    font-size: 16px !important;
    margin: 0;
  }

  .mob_hide {
    display: none;
  }

  .desk_hide {
    display: block !important;
  }

  .section-title {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.section-title h6 {
  color: #ab8234;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title h6 span i {
  padding-right: 6px;
}

.section-title h2 {
  color: #000;
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 15px;
}

.section-title h2 span {
  color: #ab8234;
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
}

.section-title p {
  font-size: 18px;
}

.section-title h2 span {
  font-weight: 400;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-title h2 {
    font-size: 32px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .login-form {
    padding: 30px 20px !important;
  }

  .campaign-list_searchCampaignList li a .campaign-list_campaignsImg {
    padding-top: 10px !important;
  }

  .campaign-list_searchCampaignList {
    top: 85px !important;
    padding-top: 5px !important;
    margin: -32px auto auto !important;
  }

  .campaign-list_searchCampaignList li a .campaign-list_campaignsBy {
    font-size: 13px !important;
  }

  .campaign-list_searchCampaignList li a .campaign-list_campaignsImg img {
    height: 80px !important;
    width: 90px !important;
  }

  .campaign-list_searchCampaignList li a .campaign-list_campaignsName>strong {
    font-size: 14px;
  }

  .campaign-list_searchCampaignList li a {
    padding: 8px 0 0 8px !important;
    min-height: 60px !important;
  }

  .counetrs__icon i {
    font-size: 20px !important;
    padding: 8px !important;
    line-height: 1;
  }

  .statistics {
    padding: 15px 0 5px 0;
    z-index: 1;
  }

  .col-xs-4 {
    width: 33%;
  }

  .section-title h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .section-title h2 span {
    font-size: 24px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title h2 {
    font-size: 30px;
  }
}

.semi-02-title {
  font-size: 20px;
}

.white-title h6 {
  color: #ab8234;
}

.white-title h2 {
  color: white;
}

.popup-video {
  background: white;
  border-radius: 50%;
  font-size: 14px;
  line-height: 115px;
  display: inline-block;
  width: 115px;
  height: 115px;
  text-align: center;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  position: relative;
  z-index: 1;
  animation: pulseBig2 infinite 5s linear;
}

.popup-video i {
  color: #ab8234;
  font-size: 24px;
}

.popup-video:hover {
  color: white;
  transform: translateY(-8px);
}

.ttm-list {
  list-style: none;
  padding: 0;
}

.ttm-list li {
  position: relative;
  padding-bottom: 10px;
}

.ttm-list.ttm-list-style-icon li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: #b3813d;
  padding: 4px;
  background: #ae89561f;
  border-radius: 20px;
  font-size: 12px;
  border: 2px solid #ffffff30;
}

.ttm-list.ttm-list-style-icon .ttm-list-li-content {
  display: inline-block;
  padding-left: 30px;
  font-size: 16px;
}

/*--
    - Margin & Padding
-----------------------------------------*/
/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 15px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

/*-- Margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 165px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

/*-- Margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 50px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 50px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 50px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 50px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 50px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

.dark #preloader {
  background-color: #232323;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f7f7f7;
  z-index: 999999;
}

.preloader {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 9999999;
}

.preloader .preloader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 125px;
  height: 125px;
  /* border: 2px solid #00a89a; */
  border-radius: 50%;
}

.preloader .loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader .loader-icon img {
  animation: preloader alternate 3000ms linear infinite;
}

.preloader span {
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #ab8234;
  -webkit-animation: preloader 1.3s linear infinite;
  animation: preloader 1.3s linear infinite;
}

.preloader span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}

@keyframes preloader {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}

#scrollUp {
  background: #ab8234;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 50px;
  bottom: 50px;
  line-height: 40px;
  text-align: center;
}

#scrollUp i {
  color: white;
}

/* Move frame*/
@keyframes moveRound {
  0% {
    background-color: #eee3ff;
    left: -24px;
    top: 0px;
  }

  25% {
    background-color: #feddfc;
    left: 100px;
    top: 0px;
  }

  50% {
    background-color: #efe4ff;
    left: 100px;
    top: 100px;
  }

  75% {
    background-color: #e2fcf4;
    left: -24px;
    top: 200px;
  }

  100% {
    background-color: #eee3ff;
    left: -24px;
    top: 0px;
  }
}

@-webkit-keyframes moveRound {
  0% {
    background-color: #eee3ff;
    left: -24px;
    top: 0px;
  }

  25% {
    background-color: #feddfc;
    left: 100px;
    top: 0px;
  }

  50% {
    background-color: #efe4ff;
    left: 100px;
    top: 200px;
  }

  75% {
    background-color: #e2fcf4;
    left: -24px;
    top: 100px;
  }

  100% {
    background-color: #eee3ff;
    left: -24px;
    top: 0px;
  }
}

@keyframes moveShap {
  0% {
    left: 0px;
    top: 0px;
  }

  25% {
    left: 100px;
    top: 0px;
  }

  50% {
    left: 100px;
    top: 100px;
  }

  75% {
    left: 0px;
    top: 200px;
  }

  100% {
    left: 0px;
    top: 0px;
  }
}

@keyframes moveShap2 {
  0% {
    right: 230px;
    top: 85px;
  }

  25% {
    right: 100px;
    top: 85px;
  }

  50% {
    right: 100px;
    top: 100px;
  }

  75% {
    right: 230px;
    top: 200px;
  }

  100% {
    right: 220px;
    top: 100px;
  }
}

/* Heartbeat frame*/
@-webkit-keyframes heartbeat {
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes heartbeat {
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

/* Rotation frame*/
@keyframes rotation {
  to {
    transform: rotate(360deg);
  }
}

/* pulseBig */
@keyframes pulseBig {
  0% {
    box-shadow: 0 0 0 0 #ab8234;
  }

  50% {
    box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}

/* pulseBig2 */
@keyframes pulseBig2 {
  0% {
    box-shadow: 0 0 0 0 #fff;
  }

  50% {
    box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}

/* pulseBig2 */
@keyframes pulseBig3 {
  0% {
    box-shadow: 0 0 0 0 #ffffff;
  }

  50% {
    box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}

/*--
    - Overlay
------------------------------------------*/
[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
}

/*-- Overlay Color --*/
[data-overlay="light"]::before {
  background-color: white;
}

[data-overlay="dark"]::before {
  background-color: #ab8234;
}

/*-- Overlay Opacity --*/
[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

.custom-container {
  max-width: 1455px;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .custom-container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .custom-container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.header-top-area::before {
  content: "";
  position: absolute;
  clip-path: polygon(0 0%, 100% 0%, 100% 100%, 1% 100%);
  width: 1290px;
  height: 45px;
  right: 0;
  top: 0;
  background: #f4f2f1;
}

.top-cta span {
  color: #333;
  line-height: 1;
  display: inline-block;
}

.top-cta span .media-link {
  color: #ab8234;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
  margin-left: 5px;
}

.top-right-nav ul li {
  display: inline-block;
  margin-left: 25px;
}

.top-right-nav ul li:first-child {
  margin-left: 5px;
}

.top-right-nav ul li a {
  color: #97a7c0;
  font-size: 15px;
  line-height: 1;
  display: inline-block;
}

.top-right-nav ul li a:hover {
  color: #ab8234;
}

.main-header-area .logo-img img {
  max-width: 100%;
  padding: 8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-header-area {
    padding: 25px 15px;
  }
}

@media (max-width: 767px) {
  .slider__content__03 p {
    font-size: 18px;
    text-align: center !important;
  }

  .txt-center {
    text-align: center;
  }

  .pb-130 {
    padding-bottom: 30px !important;
  }

  .main-header-area {
    padding: 1px 2px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .main-header-area {
    padding: 25px 15px;
  }
}

.main-header-area .quote-btn {
  margin-top: 6px;
}

.main-menu {
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .main-menu {
    margin: 0;
  }
}

.main-menu ul li {
  display: inline-block;
  position: relative;
  margin-right: 26px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .main-menu ul li {
    margin-right: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .main-menu ul li {
    margin-right: 15px;
  }
}

.main-menu ul li>a {
  color: #333;
  font-size: 16px;
  line-height: 1;
  padding: 25px 0 25px 0;
  display: inline-block;
  position: relative;
  font-weight: 500;
}

.main-menu ul li>a i {
  font-size: 12px;
  line-height: 1;
}

.main-menu ul li>a:hover,
.main-menu ul li>a.active {
  color: #ab8234;
}

.main-menu ul li ul.submenu {
  background: white none repeat scroll 0 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 119%;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 240px;
  z-index: 9;
  border-top: 4px solid #ab8234;
  text-align: left;
  padding: 25px 0;
}

.main-menu ul li ul.submenu li {
  display: block;
}

.main-menu ul li ul.submenu li a {
  padding: 14px 30px;
  display: block;
  margin: 0;
  border: 0;
  color: #000;
}

.main-menu ul li ul.submenu li a::before {
  display: none;
}

.main-menu ul li ul.submenu li a:hover {
  color: #ab8234;
}

.main-menu ul li:hover .submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

.sticky {
  position: fixed;
  z-index: 999;
  width: 100%;
  background: white;
  top: 0;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
}

.sticky .logo {
  transform: translateY(2px);
}

.sticky .hamburger-menu {
  top: 17px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sticky .hamburger-menu {
    top: 35px;
  }
}

.sticky .main-menu ul li a:hover {
  color: #ab8234;
}

/* Hamburger-menu */
.hamburger-menu {
  display: inline-block;
}

.hamburger-menu>a {
  display: inline-block;
  font-size: 25px;
  color: #ab8234;
}

.hamburger-menus {
  display: inline-block;
}

.hamburger-menus>a {
  display: inline-block;
  font-size: 25px;
  color: #ab8234;
}

.side-mobile-menu {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .side-mobile-menu {
    display: block;
  }
}

@media (max-width: 767px) {
  .side-mobile-menu {
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .side-mobile-menu {
    display: block;
  }
}

.offset-sidebar {
  display: block;
  margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* .offset-sidebar {
    display: none;
  } */
}

@media (max-width: 767px) {
  .team-block-one .inner-box {
    padding: 0 !important;
  }

  /* .offset-sidebar {
    display: none;
  } */
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  /* .offset-sidebar {
    display: none;
  } */
}

.transparent-head {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}

.main-head-02 {
  position: relative;
}

@media (max-width: 767px) {
  .main-head-02 {
    padding: 15px 15px;
  }
}

.main-head-02 .custom-container-03 {
  max-width: 1505px;
  margin: 0 auto;
}

.main-head-02.sticky {
  background: white;
  position: fixed;
}

.main-head-02.sticky .logo .logo-img {
  display: none;
}

.main-head-02.sticky .logo .logo-img-02 {
  display: inline-block !important;
}

.main-head-02.sticky .logo .logo-img-02 img {
  max-width: 100%;
}

.main-head-02.sticky .main-menu-02 ul li>a {
  color: #000;
  padding: 42px 0;
}

.main-head-02.sticky .main-menu-02 ul li ul.submenu li a {
  padding: 14px 30px;
}

.main-head-02.sticky .nav-search.search-trigger.header-2-icon {
  color: white;
  background: #ab8234;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .main-menu-02 ul li {
    margin-right: 35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .main-menu-02 ul li {
    margin-right: 35px;
  }
}

.main-menu-02 ul li>a {
  color: white;
  padding: 38px 0;
}

.main-menu-02 ul li ul.submenu li a:hover {
  color: #ab8234;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .quote-btn {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .quote-btn {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .quote-btn {
    display: none;
  }
}

@media (max-width: 767px) {
  .quote-btn {
    display: none;
  }
}

.head-top-03::before {
  display: none;
}

.head-top-03 .top-cta span {
  color: white;
}

.head-top-03 .top-cta span i {
  margin-right: 5px;
}

.head-top-03 .top-cta span:first-child {
  margin-right: 30px;
}

.head-top-03 .top-right-nav a {
  color: white;
  font-weight: 600;
}

.head-top-03 .top-right-nav a i {
  margin-right: 5px;
}

.head-top-03 .top-right-nav a span {
  color: #ffd1ca;
  font-weight: 400;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .main-menu-03 ul li {
    margin-right: 16px;
  }
}

.main-menu-03 ul li ul.submenu li a:hover {
  color: #ab8234;
}

.about-head .top-cta span {
  color: #777777;
}

.about-head .top-cta span b {
  color: #000;
}

.about-head .top-cta span i {
  color: #ab8234;
}

.about-head .top-right-nav a {
  color: #000;
  font-weight: 600;
}

.about-head .top-right-nav a i {
  color: #ab8234;
}

.about-head .top-right-nav a span {
  color: #777777;
}

.header-social a {
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 16px;
  color: #ffffff;
}

.header-social a:hover {
  /* color: #ab8234; */
}

.page-title-area {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 195px;
  position: relative;
}

.page-title-area::before {
  content: "";
  background-color: transparent;
  opacity: 0.65;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.page-title-area .right-border-shape {
  position: absolute;
  right: 0;
  top: -190px;
}

.page-title-wrapper .page-title {
  color: white;
  font-size: 35px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-title-wrapper .page-title {
    font-size: 70px;
  }
}

@media (max-width: 767px) {
  .page-title-wrapper .page-title {
    font-size: 20px;
  }

  .page-title-area {
    height: 100px;
  }

  .page-title-wrapper .page-title {
    margin-bottom: 5px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .page-title-wrapper .page-title {
    font-size: 32px;
  }
}

.page-title-wrapper .breadcrumb {
  background: 0;
  justify-content: center;
  padding: 0;
  margin: 0;
}

ul.breadcrumb-list {
  text-align: left;
  display: inline-block;
}

ul.breadcrumb-list li {
  display: inline-block;
  padding: 0 7px;
}

ul.breadcrumb-list li a {
  color: white;
  font-size: 15px;
  display: inline-block;
  font-weight: 500;
}

@media (max-width: 767px) {
  ul.breadcrumb-list li a {
    font-size: 14px;
  }

  ul.breadcrumb-list li a i {
    font-size: 10px !important;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  ul.breadcrumb-list li a {
    font-size: 20px;
  }
}

ul.breadcrumb-list li a i {
  font-size: 12px;
  margin-left: 8px;
  line-height: 1;
}

ul.breadcrumb-list li a.active {
  color: #ab8234;
}

.slide-bar {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: -370px;
  width: 350px;
  padding: 25px 30px;
  height: 100%;
  display: block;
  background-color: #555;
  z-index: 1020;
  -webkit-transition: all 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
}

.slide-bars {
  position: fixed;
  top: 0;
  right: -570px;
  width: 500px;
  padding: 25px 30px;
  height: 100%;
  display: block;
  background-color: #fff;
  z-index: 1020;
  -webkit-transition: all 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slide-bar {
    width: 350px;
  }

  .slide-bars {
    width: 350px;
  }
}

@media (max-width: 767px) {
  .select-control {
    width: 110px !important;
  }

  .search-bar_searchTextClear {
    top: 2px !important;
    right: 60px !important;
  }

  .slide-bar {
    width: 250px;
    padding: 20px 15px;
  }

  .slide-bars {
    width: 100%;
    padding: 20px 8px;
  }
}

.slide-bar.show {
  right: 0;
}

.slide-bars.show {
  right: 0;
}

.open-mobile-menu {
  display: inline-block;
}

.open-mobile-menu a {
  display: block;
  width: 50px;
  height: 50px;
  background: #212121;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  margin-left: 20px;
  color: #fff;
}

.open-mobile-menu a:hover {
  background: #ab8234;
}

.open-mobile-menu a.active {
  background: #ab8234;
}

.close-mobile-menu a {
  color: white;
  position: relative;
  z-index: 2;
  font-size: 16px;
  top: -10px;
  left: 0;
}

.close-mobile-menu a:hover {
  color: #ff0000;
}

.on-side {
  overflow: hidden;
}

.body-overlay {
  /* background-color: rgba(0, 0, 0, 0.5); */
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1010;
  left: 0;
  opacity: 0;
  display: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.body-overlay.active {
  opacity: 1;
  display: block;
}

.side-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-mobile-menu ul li a {
  padding: 4px 0;
  display: block;
  border-bottom: 1px dashed #ddd;
  font-size: 14px;
  letter-spacing: 1px;
  color: white;
  font-weight: 500;
  position: relative;
}

.side-mobile-menu ul li a:hover {
  color: #ab8234;
  padding-left: 5px;
}

.side-mobile-menu ul li a[aria-expanded="true"] {
  color: #ab8234;
}

.side-mobile-menu ul li a[aria-expanded="true"]:before {
  background: #ab8234;
  border-color: #ab8234;
}

.side-mobile-menu ul li ul {
  padding-left: 0;
  list-style: none;
}

.side-mobile-menu ul li ul li {
  padding-left: 15px;
}

.side-mobile-menu ul li ul li:hover>a {
  color: #ab8234;
  padding-left: 20px;
}

.side-mobile-menu ul li ul li:hover>a:before {
  background: #ab8234;
  border-color: #ab8234;
}

.side-mobile-menu ul li ul li a {
  position: relative;
  padding-left: 15px;
  text-transform: capitalize;
  font-size: 16px;
}

.side-mobile-menu ul li ul li a:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid white;
  border-radius: 50%;
}

.side-mobile-menu ul li ul li a[aria-expanded="true"] {
  padding-left: 20px;
}

.side-mobile-menu ul li.has-dropdown>a:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px 0 0 2px;
  border-style: solid;
  border-color: initial;
  right: 16px;
  top: 50%;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  -webkit-transform-origin: top;
  transform-origin: top;
  transition: all 0.3s ease-out;
}

.side-mobile-menu ul li.has-dropdown a[aria-expanded="true"]:after {
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}

.offset-widget.offset-logo {
  border-bottom: 1px solid #eeecec;
  padding-bottom: 20px;
}

.offset-widget .info-widget .offset-title {
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.offset-widget .info-widget p {
  color: white;
}

.offset-widget .info-widget.info-widget2 p {
  margin-bottom: 15px;
}

.offset-widget .info-widget.info-widget2 p i {
  margin-right: 7px;
  color: white;
}

/* Menu Search
-------------------------------------------------------*/
.header-2-icon {
  color: white;
}

.nav-search.search-trigger.header-2-icon {
  color: #061738;
  display: inline-block;
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
}

.nav-search.search-trigger.header-2-icon:hover {
  color: white;
  background: #ab8234;
}

.nav-search {
  position: relative;
  display: block;
  color: inherit;
}

.nav-search:hover {
  color: inherit;
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 121;
  background: rgba(0, 0, 0, 0.9);
}

.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: uppercase;
  background: transparent;
  font-size: 25px;
  color: #fff;
  border-bottom: 2px solid #898989;
  text-align: center;
  letter-spacing: 2px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .main-search-input {
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .search-wrap .main-search-input {
    padding: 0 15px;
  }
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: #fff;
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

input.main-search-input::-webkit-input-placeholder {
  color: #fff;
  font-size: 25px;
}

input.main-search-input:-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 25px;
}

input.main-search-input::-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 25px;
}

input.main-search-input:-ms-input-placeholder {
  color: #fff;
  font-size: 25px;
}

.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.single-slider {
  position: relative;
}

.single-slider::before {
  content: "";
  /* background: #08133b; */
  opacity: 0.5;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.slider-height {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position: center;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-height {
    /* min-height: 750px; */
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-height {
    min-height: 600px;
  }
}

@media (max-width: 767px) {
  .slider-height {
    min-height: 550px;
  }
}

.slider__content {
  position: relative;
  z-index: 3;
  margin-top: -50px;
}

.slider__content .sub-title {
  color: white;
  font-size: 20px;
  line-height: 1;

  font-weight: 400;
  display: inline-block;
}

.slider__content .sub-title i {
  color: #ab8234;
  font-size: 20px;
}

.slider__content .main-title {
  color: white;
  font-size: 45px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.slider__content .main-title span {
  color: #624c25;
}

@media (max-width: 767px) {
  .slider__content {
    margin-top: -10px;
  }

  .slider__content .main-title {
    font-size: 24px;
    text-align: center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider__content .main-title {
    font-size: 40px;
  }
}

.slider__content .mini-title {
  color: white;

  font-weight: 400;
  line-height: 1.5;
}

.slider__content .btn-list li {
  display: inline-block;
  margin-right: 10px;
}

.slider-area .slick-slider button {
  opacity: 0;
  visibility: hidden;
  background: transparent;
  border: 0;
  font-size: 15px;
  position: absolute;
  top: 50%;
  z-index: 5;
  color: white;
  border: 1.5px solid #fff;
  border-radius: 30px;
  width: 40px;
  height: 40px;
  display: inline-block;
  left: 100px;
  text-align: center;
  line-height: 35px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .slider-area .slick-slider button {
    left: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-area .slick-slider button {
    left: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area .slick-slider button {
    left: 50px;
  }
}

@media (max-width: 767px) {
  .slider-area .slick-slider button {
    left: 50px;
  }
}

.slider-area .slick-slider button:hover {
  background: #ab8234;
  border-color: transparent;
}

.slider-area .slick-slider .slick-next {
  left: auto;
  right: 100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .slider-area .slick-slider .slick-next {
    right: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-area .slick-slider .slick-next {
    right: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area .slick-slider .slick-next {
    right: 50px;
  }
}

@media (max-width: 767px) {
  .slider-area .slick-slider .slick-next {
    right: 50px;
  }
}

.slider-area:hover .slick-slider button {
  opacity: 1;
  visibility: visible;
}

.slider-area-02 .slider-img__shape {
  position: absolute;
  top: 51%;
  right: 112px;
  z-index: 1;
  animation: rotation infinite 10s alternate-reverse;
}

.slider-height-02 {
  min-height: 977px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-height-02 {
    min-height: 800px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-height-02 {
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .slider-height-02 {
    min-height: 500px;
  }

  .listing-widget-side {
    padding: 18px !important;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-height-02 {
    min-height: 650px;
  }
}

.slider-height-02::before {
  background: url(../img/shape/06.png) no-repeat bottom;
  width: 100%;
  min-height: 137px;
  bottom: -110px;
  opacity: 1;
  top: auto;
}

.slider__content__02 .main-title {
  font-size: 115px;
  font-weight: 500;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider__content__02 .main-title {
    font-size: 90px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider__content__02 .main-title {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .slider__content__02 .main-title {
    font-size: 50px;
  }
}

.slider__content__02 h4 {
  color: white;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 35px;
}

.btn-list-02 li a.theme_btn2 {
  background: #02b663;
  color: white;
}

.btn-list-02 li a.theme-border-btn.theme_btn_bg_02 {
  color: white;
}

.btn-list-02 li a.theme-border-btn.theme_btn_bg_02::before {
  background: #ab8234;
}

.slider-img {
  position: relative;
  z-index: 1;
}

.slider-img__one {
  display: block;
  width: 100%;
  margin-top: 168px;
}

.slider-img__two {
  position: absolute;
  top: -140px;
  right: -185px;
  z-index: -1;
}

@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  .slider-img__two {
    right: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .slider-img__two {
    right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-img__two {
    right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-img__two {
    right: 0;
  }
}

@media (max-width: 767px) {
  .slider-img__two {
    right: 0;
  }
}

.slider-height-03::before {
  display: none;
}

.slider__content__03 .sub-title {
  color: #777777;
}

.slider__content__03 .main-title {
  color: #000;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider__content__03 .main-title {
    font-size: 55px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider__content__03 .main-title {
    font-size: 55px;
  }
}

.slider__content__03 p {
  font-size: 18px;
}

.hero-img {
  position: relative;
  right: -160px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero-img {
    right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .hero-img {
    right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-img {
    right: 0;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .hero-img {
    right: 0;
    margin-top: 30px;
  }
}

.hero-img img {
  width: 100%;
}

.total-box {
  position: absolute;
  top: 120px;
  left: 20px;
}

.total-box .statistics {
  max-width: 260px;
  align-items: center;
  padding: 10px 15px 2px 15px;
  border-left: 5px solid #ab8234;
  background-color: #ffffff94;
  box-shadow: 0px 10px 30px 0px rgb(72 72 72 / 13%);
}

@media (max-width: 767px) {
  .total-box .statistics {
    max-width: 250px;
  }
}

.total-box .statistics::before {
  display: none;
}

.total-box .statistics .counetrs__icon i {
  font-size: 35px;
}

.total-box .statistics p {
  color: #000 !important;
  font-weight: 500;
}

.total-box .statistics:last-child {
  border-color: #ab8234;
  margin-left: 30px;
}

.services-area .custom-container-02 {
  max-width: 1230px;
  margin: 0 auto;
}

.services-area .services-bg {
  margin-top: -130px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-area .services-bg {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .services-area .services-bg {
    margin-top: -40px;
    z-index: 1;
  }

  .mt-75 {
    margin-top: -75px;
  }
}

.services__img img {
  width: 100%;
}

.services__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}

.services__content .semi-02-title {
  color: white;
  margin-bottom: 5px;
}

.services__content p {
  color: white;
}

.services__content li:first-child {
  padding-left: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .services__content li:first-child {
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .ht-250 {
    height: 250px;
  }

  .services__content li:first-child {
    padding-left: 30px;
  }
}

.services__content li .more_btn {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.services__content li .more_btn::before {
  content: "";
  position: absolute;
  background: white;
  clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0 100%);
  right: 0;
  top: 0;
  width: 110px;
  height: 100px;
  z-index: -1;
}

.services__content li .more_btn::after {
  content: "";
  position: absolute;
  background: #ab8234;
  clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0 100%);
  right: 0;
  top: 0;
  width: 110px;
  height: 120px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.services__content li .more_btn i {
  color: #000;
  font-size: 30px;
  line-height: 100px;
  padding-right: 35px;
}

.services__content:hover .semi-02-title {
  color: #ab8234;
}

.services__content:hover .more_btn i {
  color: white;
}

.services__content:hover .more_btn::after {
  top: -20px;
  opacity: 1;
}

.card {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card-bg {
  background: #f9f9f9;
}

.card .card-header {
  padding: 0;
  border: 0;
  background: 0;
}

.card .card-header button {
  border: 0;
  background: 0;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 20px;
  word-wrap: normal;
  white-space: normal;
}

@media (max-width: 767px) {
  .pb-110 {
    padding-bottom: 50px !important;
  }

  .card .card-header button {
    padding: 5px 10px;
    font-size: 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .card .card-header button {
    padding: 13px 30px;
  }
}

.card .card-header .btn:focus,
.card .card-header .btn:hover {
  text-decoration: none;
}

.card .card-body {
  padding: 10px 20px;
}

@media (max-width: 767px) {
  .underline .fancy:before {
    margin-right: 40px !important;
  }

  .underline .fancy:after {
    margin-left: 40px !important;
  }

  .underline-left .fancy:before {
    margin-right: 40px !important;
  }

  .underline-left .fancy:after {
    margin-left: 40px !important;
  }

  .card .card-body {
    padding: 0 10px;
  }

  .card {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .card .card-body {
    padding: 0 30px;
  }
}

.about-area .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .about-img__thumb {
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-img__thumb {
    padding-right: 0;
  }
}

.about-img__thumb img {
  width: 100%;
  height: 500px;
}

.about_list li {
  font-size: 15px;
  padding-left: 40px;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  color: #000;
}

.about_list li::before {
  content: "";
  position: absolute;
  background: #ab8234;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 5px;
  top: 8px;
}

.about_list li::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #ab8234;
  left: 0;
  top: 3px;
  animation: pulseBig infinite 5s linear;
}

.experience-box {
  display: inline-flex;
  align-items: center;
  padding: 20px 33px 30px 33px;
  max-width: 220px;
  position: absolute;
  right: 15px;
  bottom: -30px;
  z-index: 2;
}

.experience-box::before {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.experience-box::after {
  content: "";
  position: absolute;
  background: white;
  width: 220px;
  height: 132px;
  left: -10px;
  top: -10px;
  z-index: -2;
}

.experience-box h1 {
  color: #ab8234;
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 0;
  margin-right: 15px;
}

.experience-box .semi-02-title {
  color: white;
  margin-bottom: 0;
}

.about-img-02__thumb {
  position: absolute;
  top: -128px;
  left: 0;
}

@media (max-width: 767px) {
  .about-img-02__thumb img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .about-img-02__thumb {
    padding-right: 0;
  }
}

.about-img-02__thumb-02 {
  border: 10px solid white;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .about-img-02__thumb-02 {
    margin-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-img-02__thumb-02 {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .about-img-02__thumb-02 {
    margin-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-img-02__thumb-02 img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .about-img-02__thumb-02 img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .about-wrap-02 {
    padding-left: 20px;
    margin-top: 50px;
  }
}

.about-wrap-02 p {
  font-size: 16px;
}

.about-wrap-02 .about_list li {
  font-size: 18px;
  color: #000;
  padding-left: 30px;
}

.about-wrap-02 .about_list li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 5 pro";
  font-size: 18px;
  color: #ab8234;
  left: 0;
  top: 1px;
  background: none;
}

.about-wrap-02 .about_list li::after {
  display: none;
}

/* .about-area-03::before {
  content: '';
  position: absolute;
  background: url(../img/shape/10.png) no-repeat bottom;
  width: 100%;
  min-height: 843px;
  left: 0;
  bottom: 0;
} */
@media (max-width: 767px) {
  .about-area-03 {
    margin-top: 30px;
  }

  .pt-70 {
    padding-top: 40px !important;
  }
}

@media (max-width: 767px) {
  .about-img-03 {
    margin-right: 0;
  }
}

.about-img-03__thumb {
  position: absolute;
  z-index: 1;
  top: -59px;
}

.about-img-03__thumb::before {
  content: "";
  position: absolute;
  background: white;
  border-radius: 50%;
  width: 175px;
  height: 175px;
  left: 6px;
  top: 9px;
  z-index: -1;
}

.about-img-03__thumb-03 img {
  width: 100%;
}

.about-img-03 .experience-box {
  overflow: hidden;
  width: 175px;
  position: absolute;
  background: #ab8234;
  right: 15px;
  bottom: -30px;
  z-index: 2;
  height: 175px;
  border-radius: 50%;
  display: inline-block;
  padding-top: 35px;
}

.about-img-03 .experience-box h1 {
  color: white;
  margin-right: 0;
  display: inline-block;
  margin-right: 5px;
}

.about-img-03 .experience-box .semi-02-title {
  margin-top: 35px;
}

.about-img-03 .experience-box::after {
  display: none;
}

.about-img-03 .experience-box::before {
  display: none;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .about-wrap-04 {
    padding-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-wrap-04 {
    padding-left: 0;
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .about-wrap-04 {
    padding-left: 0;
    margin-top: 40px;
  }
}

.about-wrap-04 .nav-tabs {
  border: 0;
}

.about-wrap-04 .nav-tabs .nav-link {
  border: 0;
  border-radius: 0;
  color: #000;
  font-weight: 600;
  line-height: 1;
  background: white;
  padding: 16px 35px;
  box-shadow: 0px 10px 30px 0px rgba(220, 220, 220, 0.47);
  margin-right: 10px;
  transition: all 0.3s ease-in;
  display: inline-block;
  width: 380px;
  text-align: center;
  height: 45px;
}

@media (max-width: 767px) {
  .about-wrap-04 .nav-tabs .nav-link {
    margin-bottom: 5px;
    width: 160px;
    text-align: center;
    padding: 10px 1px;
    height: 40px;
  }
}

.about-wrap-04 .nav-tabs .nav-link:hover,
.about-wrap-04 .nav-tabs .nav-link.active {
  color: white;
  background: #ab8234;
}

@media (max-width: 767px) {
  .inner-content {
    margin-right: 0;
  }

  .button-text-field-container {
    margin-left: -25px !important;
    margin-top: 5px !important;
  }
}

@media (max-width: 767px) {
  .inner-content__img {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .inner-content__img {
    margin-right: 20px;
  }
}

@media (max-width: 767px) {
  .inner-content__img img {
    width: 100%;
  }
}

.inner-content__text h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

.what-we-area .right-help {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .what-we-area .right-help {
    position: relative;
    top: 0;
    height: 450px;
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .what-we-area .right-help {
    position: relative;
    top: 0;
    height: 450px;
    width: 100%;
    margin-bottom: 30px;
  }
}

.we-wrapper .about_list li::before {
  content: "\f00c";
  position: absolute;
  font-family: "Font Awesome 5 pro";
  font-size: 14px;
  color: white;
  text-align: center;
  line-height: 30px;
  left: 5px;
  top: 0;
  background: #ab8234;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s ease-in;
}

.we-wrapper .about_list li::after {
  display: none;
}

.we-wrapper .about_list li:hover::before {
  background: #ab8234;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-wrapper {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .cta-wrapper {
    padding-left: 0;
  }
}

.cta-wrapper h2 {
  color: white;
  font-size: 50px;
  line-height: 1;
  font-weight: 400;
}

@media (max-width: 767px) {
  .cta-wrapper h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
  }
}

.cta-wrapper h2 a {
  font-weight: 500;
}

.cta-btn a.theme_btn {
  border: 1px solid white;
  background: transparent;
}

.cta-btn a.theme_btn i {
  color: #ab8234;
}

.cta-btn a.theme_btn:hover {
  border-color: transparent;
}

.cta-btn a.theme_btn:hover i {
  color: #ab8234;
}

.cta-btn a.theme_btn:hover::before {
  background: #ab8234;
}

.widget_address__icon {
  margin-top: 8px;
}

.widget_address__icon i {
  color: #ab8234;
  font-size: 37px;
}

.widget_address__content h4 {
  margin-bottom: 0;
}

.widget_address__content span {
  color: white;
  font-size: 13px;
}

.cta-top-area .cta-wrapper {
  position: relative;
  width: 100%;
  min-height: 170px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-top-area .cta-wrapper {
    padding: 0 10px;
  }
}

@media (max-width: 767px) {
  .cta-top-area .cta-wrapper {
    padding: 0 10px;
  }
}

.cta-top-area .cta-wrapper::before {
  content: "";
  position: absolute;
  background: #061738;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.cta-top-area .cta-wrapper.cw-02::before {
  background: #ab8234;
}

.cta-top-area .cta-wrapper.cw-02 .wrap_btn a {
  color: #ab8234;
  background: white;
}

.cta-top-area .cta-wrapper.cw-02 .wrap_btn a:hover {
  color: white;
  background: #000;
}

.cta-top-area .cta-wrapper h2 {
  color: white;
  font-size: 35px;
  line-height: 1;
  font-weight: 400;
}

.cta-top-area .cta-wrapper p {
  color: white;
}

.cta-top-area .cta-wrapper .wrap_btn a {
  color: white;
  font-size: 22px;
  background: #ab8234;
  width: 55px;
  height: 55px;
  display: inline-block;
  text-align: center;
  line-height: 55px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.cta-top-area .cta-wrapper .wrap_btn a:hover {
  color: #ab8234;
  background: white;
}

.subscribe-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fef3f2;
  padding-top: 5px;
  padding-bottom: 5px;
}

.subscribe-bg .white-title p {
  color: white;
}

.subscribe-bg .sub-back {
  margin: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .subscribe-bg .sub-back {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .subscribe-bg .sub-back {
    padding-right: 0;
    margin: 0;
  }
}

.form-area input:focus {
  box-shadow: none;
  outline: none;
}

.form-area input:focus::placeholder {
  color: #000;
}

.form-area .form-control {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  border: 0;
  display: block;
  background: white;
  width: 400px;
  height: 75px;
  border-radius: 40px;
  padding-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .form-area .form-control {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .form-area .form-control {
    width: 100%;
    margin-bottom: 10px;
  }
}

.form-area .border_btn {
  color: white;
  border: 2px solid #fff;
  background: transparent;
  padding: 27px 70px 28px 44px;
  border-radius: 40px;
}

@media (max-width: 767px) {
  .form-area .border_btn {
    padding: 26px 65px 28px 30px;
  }
}

.form-area .border_btn span {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #ab8234;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.form-area .border_btn span i {
  color: white;
}

.form-area .border_btn::before {
  background: #ab8234;
}

.form-area .border_btn:hover {
  border-color: transparent;
}

.form-area .border_btn:hover span {
  background: white;
}

.form-area .border_btn:hover span i {
  color: #ab8234;
}

.footer__widget .form-area .form-control {
  color: #8a9ec5;
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  height: 51px;
  border-radius: 0;
  padding-left: 25px;
  border: 2px solid #1a2e54;
  background: transparent;
}

.footer__widget .form-area button {
  width: 100%;
  border: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer__widget .form-area button {
    padding: 20px 70px 20px 25px;
  }
}

.input-area input:focus {
  box-shadow: none;
}

.input-area .form-control {
  border-radius: 0;
  font-weight: 400;
  width: 100%;
  height: 50px;
  padding-left: 20px;
}

.input-area textarea {
  width: 100%;
  display: block;
  resize: none;
  border: 1px solid #e4e4e4;
  color: #777777;
  font-weight: 400;
  padding-left: 25px;
  padding-top: 15px;
  height: 125px;
  background: #f9f9f9;
}

.input-area textarea::placeholder {
  color: #555;
  font-weight: 400;
  letter-spacing: 1px;
}

.input-area input::placeholder {
  color: #555;
  font-weight: 400;
  letter-spacing: 1px;
}

.input-btn button {
  width: 100%;
  display: block;
  border: 0;
  border-radius: 0;
  padding: 20px;
}

.input-btn button::before {
  border-radius: 0;
}

.donation-form-area {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.donation-form-area::before {
  content: "";
  background-color: #664b29b8;
  opacity: 0.1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.donation-form {
  padding: 30px 50px;
  -webkit-box-shadow: 0 25px 60px rgb(0 0 0 / 10%);
  box-shadow: 0 25px 60px rgb(0 0 0 / 10%);
}

.login-form {
  padding: 30px 30px;
  -webkit-box-shadow: 0 25px 60px rgb(0 0 0 / 10%);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 0px 5px rgb(255 255 255 / 40%),
    0px 4px 20px rgb(0 0 0 / 33%);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .donation-form {
    padding: 60px 15px 70px 15px;
  }
}

@media (max-width: 767px) {
  .donation-form {
    padding: 30px 20px 30px 20px;
  }
}

.donation-form .cases-title {
  font-size: 45px;
}

.donation-form .input-area .form-control {
  padding-left: 20px;
}

.donation-video .video-area .popup-video {
  width: 150px;
  height: 150px;
  line-height: 150px;
}

.donation-video .video-area .popup-video i {
  font-size: 43px;
  line-height: 3.5;
}

.donation-form-area-02 {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .donation-form-area-02 {
    min-height: 450px;
  }
}

.join-volunteer-area::before {
  content: "";
  position: absolute;
  border: 1px solid #e4e4e4;
  width: 496px;
  height: 496px;
  right: 150px;
  bottom: 20%;
  z-index: 1;
  display: inline-block;
  border-radius: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .join-volunteer-area::before {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .join-volunteer-area::before {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .join-volunteer-area::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .join-volunteer-area::before {
    display: none;
  }
}

.join-volunteer-area .donation-form .section-title h6 {
  font-weight: 400;
  margin-bottom: 0;
}

.join-volunteer-area .donation-form .input-area .form-control {
  border: 0;
}

.join-volunteer-area .donation-form .input-area textarea {
  border: 0;
}

.volunteer-box {
  z-index: 1;
}

.volunteer-box__img {
  position: relative;
  top: 320px;
  z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .volunteer-box__img {
    top: 0;
  }
}

@media (max-width: 767px) {
  .volunteer-box__img {
    top: 0;
  }
}

@media (max-width: 767px) {
  .volunteer-box__img img {
    width: 100%;
  }
}

.volunteer-box__img-02 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

@media (max-width: 767px) {
  .volunteer-box__img-02 {
    display: none;
  }
}

.volunteer-box__shape {
  position: absolute;
  right: -60px;
  bottom: -35px;
  z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .volunteer-box__shape {
    right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .volunteer-box__shape {
    right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .volunteer-box__shape {
    right: 0;
  }
}

@media (max-width: 767px) {
  .volunteer-box__shape {
    right: 0;
  }
}

.map-area-02 iframe {
  width: 100%;
  height: 635px;
  border: 0;
}

@media (max-width: 767px) {
  .map-area-02 iframe {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .get-touch-area {
    padding-left: 0;
    padding-right: 0;
  }
}

.get-touch-area .section-title h6 {
  font-weight: 400;
  margin-bottom: 0;
}

.get-touch-area .section-title p {
  font-size: 14px;
}

.contacts__icon {
  color: #ab8234;
  font-size: 54px;
}

.contacts__text h5 {
  color: #777777;
  font-weight: 400;
}

.contacts-details-area .input-area .form-control {
  border: 1px solid #dddd;
  color: #000;
  background: #f9f9f9cc;
}

.contacts-details-area .input-area textarea {
  /* border: 0; */
}

.map-area-03 iframe {
  min-height: 750px;
  margin-bottom: -10px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .map-area-03 iframe {
    min-height: 500px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .map-area-03 iframe {
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .map-area-03 iframe {
    min-height: 450px;
  }
}

.cases__box--img {
  overflow: hidden;
}

.cases__box--img img {
  height: 200px;
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 8px 8px 0 0;
}

.cases__tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  top: -33px;
  left: 0;
  right: 0;
  margin: 0 30px 0 30px;
  height: 65px;
  border-radius: 70px;
  z-index: 3;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .cases__tag {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cases__tag {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .cases__tag {
    margin: 0;
  }
}

.cases__tag li .cases--author .semi-title {
  margin-bottom: 0;
}

.cases__tag li .cases--author {
  margin-left: 10px;
}

.cases__tag li .cases--author .semi-02-title {
  margin-bottom: 0;
}

.cases__tag li .d-btn {
  border-radius: 0;
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
  height: 65px;
  line-height: 1;
  text-align: center;
  padding: 0;
  display: flex;
  align-items: center;
  width: 140px;
  justify-content: center;
}

.cases__tag li .d-btn::before {
  border-radius: 0;
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
}

.cases-progress .funding {
  color: #000;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.cases-progress .funding span {
  font-size: 18px;
  color: #ab8234;
}

.cases-progress .progress {
  height: 8px;
  overflow: visible;
  border-radius: 4px;
  position: relative;
}

.cases-progress .progress .progress-bar {
  background-color: #ab8234;
  transition: width 0.6s ease;
  border-radius: 4px 0px 0px 4px;
}

.cases-progress .progress .progress-bar h5 {
  position: absolute;
  right: 0;
  top: -33px;
}

.cases__content {
  padding: 15px 15px 5px 15px;
  background: #fff;
  border-radius: 0 0 8px 8px;
}

.cases__contentss {
  padding: 15px 15px 5px 15px;
  border-radius: 0 0 8px 8px;
}

.cases__contentss h3 {
  color: #fff;
}

.cases__contentss p {
  color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .cases__content {
    padding: 0 25px 35px 25px;
  }
}

@media (max-width: 767px) {
  .cases__content {
    padding: 10px !important;
  }
}

.cases__content h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 6px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cases__content p {
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cases:hover .cases__box--img img {
  /* transform: scale(1.1); */
}

/* .cases:hover h3 {
  color: #ab8234;
} */

.cases-area-02 {
  z-index: 2;
}

.cases-area-02 .custom-container-04 {
  max-width: 1500px;
  margin: 0 auto;
}

.cases-area-02::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  /* background: #f4f2f1; */
  z-index: -1;
  height: 100%;
}

.cases-area-02::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/shape/07.png);
  width: 100%;
  min-height: 635px;
  z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .cases-area-02 .cases__tag {
    margin: 0;
  }
}

.cases-area-02 .cases__tag li .cases--author {
  margin-left: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .cases-area-02 .cases__content {
    padding: 5px 15px 35px 15px;
  }
}

.statistics {
  padding: 25px 0 10px 0;
  z-index: 1;
}

.statistics .counetrs__icon {
  display: inline-block;
}

.statistics .counetrs__icon i {
  color: #fff;
  display: inline-block;
  padding: 10px;
}

.statistics.counetrs h1 {
  color: #000;
}

.statistics.counetrs p {
  color: #000;
  font-size: 15px;
}

.statistics-box__icon {
  display: inline-block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0px 10px 30px 0px rgba(77, 183, 166, 0.43);
}

.statistics-box__icon i {
  color: #ab8234;
  font-size: 40px;
}

.tag-img {
  position: absolute;
  top: 40px;
  right: -27px;
  box-shadow: 0px 10px 30px 0px rgba(241, 91, 67, 0.43);
  border-radius: 50%;
}

@media (max-width: 767px) {
  .tag-img {
    right: 20px;
  }
}

.cases-04 .cases__content {
  padding: 40px 38px 20px 38px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cases-04 .cases__content {
    padding: 25px 25px 20px 25px;
  }
}

@media (max-width: 767px) {
  .cases-04 .cases__content {
    padding: 25px 25px 20px 25px;
  }
}

.cases-04 .cases__content .semi-02-title {
  margin-bottom: 38px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .cases-04 .cases__box img {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cases-04 .cases__box img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .cases-04 .cases__box img {
    width: 100%;
  }
}

.portfolio-menu {
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .portfolio-menu {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .p-mr {
    margin: 0px 0px 0px -22px !important;
  }

  .close-mobile-menus {
    margin-left: -5px !important;
    box-shadow: 0 0 17px #0000001f;
    margin-top: -18px !important;
  }
}

.portfolio-menu button {
  border: 1px solid #ab8234b3;
  padding: 5px 10px;
  border-radius: 4px;
  background: none;
  color: #061738;
  font-size: 15px;
  line-height: 1;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  margin: 0 5px 0px 0;
  height: 80px;
  width: 127px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .portfolio-menu button {
    margin: 0px 2px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-menu button {
    margin: 5px 5px;
  }
}

@media (max-width: 767px) {
  .pb-150 {
    padding-bottom: 0px !important;
  }

  .statistics {
    padding: 10px 0 10px 0 !important;
    z-index: 1;
  }

  .statistics.counetrs p {
    font-size: 12px !important;
  }

  .counetrs h1 {
    font-size: 15px !important;
    margin: 0;
  }

  .portfolio-menu button {
    padding: 5px 10px;
    border-radius: 4px;
    background: none;
    color: #061738;
    font-size: 11px;
    line-height: 1;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    margin: 0px 0px 0px -5px;
    height: 55px;
    width: 62px;
  }

  .icn-sze {
    font-size: 18px !important;
    margin-bottom: 5px !important;
  }
}

.portfolio-menu button:hover,
.portfolio-menu button.active {
  color: white !important;
  background: #ab8234;
}

.pagination-area .page-item .page-link {
  position: relative;
  display: block;
  font-size: 15px;
  margin-left: -1px;
  line-height: 32px;
  color: #777777;
  background-color: #f4f2f1;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-weight: 600;

  border: 0;
  text-align: center;
  transition: all 0.3s ease-in;
  margin: 0 3px;
}

@media (max-width: 767px) {
  .pagination-area .page-item .page-link {
    width: 40px;
    height: 40px;
    margin: 0 1px;
    line-height: 22px;
  }
}

.pagination-area .page-item .page-link:focus {
  box-shadow: none;
}

.pagination-area .page-item .page-link:hover {
  color: white;
  background: #ab8234;
}

.cases-area-02 .slick-slider button {
  border: 0;
  color: white;
  font-size: 18px;
  line-height: 55px;
  width: 55px;
  height: 55px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: -90px;
  transform: translateY(-50%);
  background: #ab8234;
  display: inline-block;
  transition: all 0.3s ease-in;
}

.cases-area-02 .slick-slider button.slick-next {
  left: auto;
  right: -90px;
  position: absolute;
}

.cases-area-02 .slick-slider button:hover {
  background: #ab8234;
}

.cases-wrapper-box .cases__content {
  padding: 0 0 35px 0;
}

.cases-wrapper-box .cases__content h2 {
  font-size: 28px;
  margin-bottom: 25px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .cases-wrapper-box .cases__content h2 {
    font-size: 33px;
  }
}

.cases-meta .cases-progress .funding {
  margin-bottom: 15px;
}

.cases-meta .cases-progress .funding span {
  font-size: 30px;
}

.cases-meta .cases-progress .progress {
  background-color: #f4f2f1;
  width: 500px;
}

@media (max-width: 767px) {
  .cases-meta .cases-progress .progress {
    width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cases-meta .cases-progress .progress {
    width: 500px;
  }
}

.cases-meta .cases-progress .progress .progress-bar h3 {
  position: absolute;
  right: 0;
  top: -47px;
}

.cases-single__icon {
  background: #ab8234;
  text-align: center;
  width: 45px;
  height: 45px;
  display: inline-block;
  line-height: 45px;
  float: left;
  margin-right: 25px;
}

.cases-single__icon i {
  color: white;
  font-size: 20px;
  line-height: 1;
}

.cases-single__content h5 {
  font-size: 20px;
}

.cases-video {
  background-size: cover;
  background-position: center;
  min-height: 540px;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 767px) {
  .cases-video {
    min-height: 450px;
  }
}

.cases-video::before {
  content: "";
  background-color: #061738;
  opacity: 0.65;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.cases-video .popup-video {
  width: 100px;
  height: 70px;
  border-radius: 10px;
  line-height: 70px;
  background: #ff0000;
}

.cases-video .popup-video i {
  font-size: 15px;
  color: white;
}

.cases-title {
  font-size: 24px;
  font-weight: 500;
}

.widget .events-03 {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 570px;
}

.widget .events-03 .cases {
  bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.widget .events-03 .cases__content {
  padding: 0 38px 35px 38px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .widget .events-03 .cases__content {
    padding: 0 25px 35px 25px !important;
  }
}

@media (max-width: 767px) {
  .widget .events-03 .cases__content {
    padding: 0 20px 10px 20px;
  }
}

.counetrs__icon i {
  color: white;
  font-size: 30px;
  background: #c38348;
  padding: 11px 12px 6px 12px;
  border-radius: 40px;
}

.counetrs h1 {
  color: white;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: center;
}

.counetrs p {
  color: white;
  font-size: 16px;
}

.brand-area .custom-container-03 {
  max-width: 1430px;
  margin: 0 auto;
}

.brand-area .brand-img a {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}

.counter-area-02 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.counter-area-02::before {
  content: "";
  position: absolute;
  background: #061738;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.counter-area-02 .counetrs__icon i {
  color: #ab8234;
}

.team-area {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.team-area:before {
  content: "";
  position: absolute;
  background: #061738;
  opacity: 0.9;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.team {
  padding: 30px 70px 30px 60px;
  z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .team {
    padding: 30px 0px 30px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team {
    padding: 30px 0px 30px 30px;
  }
}

@media (max-width: 767px) {
  .team {
    padding: 30px 20px 30px 20px;
  }
}

.team::before {
  content: "";
  position: absolute;
  background: #ab8234;
  left: 0;
  top: 0;
  width: 7px;
  height: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.team::after {
  content: "\f500";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  color: #f4f2f1;
  font-size: 90px;
  right: 70px;
  top: 63px;
  z-index: -1;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team__thumb {
    float: none;
    margin-bottom: 20px;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .team__thumb {
    float: none;
    margin-bottom: 20px;
  }
}

.team__content h3 {
  font-size: 30px;
  font-weight: 500;
}

.team__content h3:hover {
  color: #ab8234;
}

.team__content p {
  color: #ab8234;
  margin-bottom: 8px;
}

.team__content--social a {
  margin-right: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .team__content--social a {
    margin-right: 15px;
  }
}

.team__content--social a i {
  font-size: 15px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.team__content--social a:hover i {
  color: #ab8234;
  transform: rotateY(360deg);
}

.team:hover::before {
  height: 100%;
}

.team:hover::after {
  height: 100%;
}

.teams__content .semi-02-title {
  color: #061738;
}

.teams__content .semi-02-title:hover {
  color: #ab8234;
}

.teams__content p {
  color: #ab8234;
}

.teams:hover .teams__thumb--img img {
  transform: scale(1.1) rotate(3deg);
}

.teams__thumb {
  overflow: hidden;
}

.teams__thumb--img {
  z-index: 1;
  overflow: hidden;
}

.teams__thumb--img::before {
  content: "";
  background-image: -moz-linear-gradient(90deg,
      #061738 0%,
      rgba(6, 23, 56, 0) 100%);
  background-image: -webkit-linear-gradient(90deg,
      #061738 0%,
      rgba(6, 23, 56, 0) 100%);
  background-image: -ms-linear-gradient(90deg,
      #061738 0%,
      rgba(6, 23, 56, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.teams__thumb--img img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.teams__thumb--social {
  position: absolute;
  bottom: -70px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
  padding-bottom: 20px;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.teams__thumb--social a {
  width: 45px;
  height: 45px;
  background: white;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: inline-block;
  line-height: 45px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.teams__thumb--social a i {
  color: b #777777;
  font-size: 15px;
  line-height: 1;
}

.teams__thumb--social a i:nth-child(1) {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  transition: all 0.3s ease-in-out;
  top: 50%;
  transform: translateY(-50%);
}

.teams__thumb--social a i:nth-child(2) {
  top: 100%;
  position: absolute;
  left: 0;
  transform: translate(-100% -50%);
  right: 0;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.teams__thumb--social a:hover {
  background: #ab8234;
}

.teams__thumb--social a:hover i {
  color: white;
}

.teams__thumb--social a:hover i:nth-child(1) {
  top: -150%;
  transform: translateY(-100%);
}

.teams__thumb--social a:hover i:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.teams__thumb:hover .teams__thumb--img::before {
  opacity: 1;
}

.teams__thumb:hover .teams__thumb--social {
  bottom: 0;
  opacity: 1;
}

.team-details-img img {
  width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .team-details-wrapper {
    padding-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details-wrapper {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .team-details-wrapper {
    padding-left: 0;
  }
}

.team-details-wrapper span {
  color: #ab8234;
  display: inline-block;
}

.team-details-wrapper .teams__thumb--social {
  position: relative;
  bottom: 0;
  opacity: 1;
  padding-left: 0;
  text-align: left;
}

.team-details-wrapper .teams__thumb--social a {
  background: #f4f2f1;
}

.team-details-wrapper .teams__thumb--social a:hover {
  background: #ab8234;
}

.team-skill-area .charts__content h3 {
  color: #000;
}

.team-skill-area .charts__content p {
  color: #000;
}

.team-skill-area .charts__circle .chart h2 {
  color: #000;
}

.team-skill-area .charts__circle .chart2 {
  display: inline-block;
  position: relative;
}

.team-skill-area .charts__circle .chart2 h2 {
  color: #000;
  font-size: 55px;
  margin: 0;
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  line-height: 120px;
}

.team-skill-area .charts__circle .chart2 h2 span {
  font-size: 25px;
}

@media (max-width: 767px) {
  .gallery-area {
    padding-left: 0;
    padding-right: 0;
  }
}

.gallery__thumb {
  position: relative;
  overflow: hidden;
  box-shadow: -5px 5px 0px #624c25 !important;
  width: 100%;
  pointer-events: auto;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.gallery__thumb::before {
  content: "";
  position: absolute;
  background: #ab8234;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.8;
  transform: scale(0);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.gallery__thumb img {
  width: 100%;
  display: block;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.gallery__content {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.gallery__content a {
  display: inline-block;
}

.gallery__content a i {
  color: white;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 5px;
  background: #000;
  padding: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.gallery__content h3 {
  color: white;
  font-size: 30px;
  font-weight: 500;
}

.gallery:hover .gallery__thumb::before {
  transform: scale(1);
}

.gallery:hover .gallery__thumb img {
  transform: scale(1.1);
}

.gallery:hover .gallery__content {
  opacity: 1;
  visibility: visible;
}

.gallery-02 {
  overflow: hidden;
}

.gallery-02 .gallery__thumb::before {
  background: #061738;
  opacity: 0;
}

.gallery-02 .gallery__content {
  left: 75px;
  right: 25px;
  background: white;
  padding: 20px 25px 20px 25px;
  display: inline-block;
  top: auto;
  bottom: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

@media (max-width: 767px) {
  .gallery-02 .gallery__content {
    left: 25px;
  }
}

.gallery-02 .gallery__content .semi-02-title {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .gallery-02 .gallery__content .semi-02-title {
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  .gallery-02 .gallery__content .semi-02-title {
    font-size: 19px;
  }
}

.gallery-02 .gallery__content .semi-02-title:hover {
  color: #ab8234;
}

.gallery-02 .gallery__content a span {
  width: 40px;
  height: 40px;
  border: 1px solid #e4e4e4;
  display: inline-block;
  background: white;
  margin-left: 30px;
  line-height: 35px;
}

.gallery-02 .gallery__content a span i {
  color: #ab8234;
  font-size: 15px;
  line-height: 1;
}

.gallery-02:hover .gallery__thumb::before {
  background: #061738;
  opacity: 0.5;
}

.gallery-02:hover .gallery__content {
  bottom: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .events-style-1 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .events-style-1 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .events-style-1 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .events-style-1 {
    padding-left: 0;
    padding-right: 0;
  }
}

.events-video-area {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 640px;
}

@media (max-width: 767px) {
  .events-video-area {
    min-height: 450px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .events-video-area {
    min-height: 500px;
  }
}

.events-video-area::before {
  content: "";
  position: absolute;
  background: #000;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.17;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.events-video-area .video-area {
  top: 50%;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  left: 50%;
  transform: translate(-50%, -50%);
}

.events__list__one {
  display: flex;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .events__list__one {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 767px) {
  .events__list__one {
    padding-left: 25px;
    padding-right: 25px;
    display: block;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .events__list__one li:first-child {
    width: 55%;
  }
}

.events {
  padding: 37px 0 37px 0;
  z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .events {
    padding: 9px 0 9px 0;
  }
}

@media (max-width: 767px) {
  .events .row {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .events .row .events__content {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .events .row .events__content {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .events .rows {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 767px) {
  .events__content {
    margin-bottom: 20px;
  }
}

.events__content span {
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 7px;
}

.events__content span i {
  color: #ab8234;
  font-size: 15px;
  margin-right: 10px;
}

.events__content h3 {
  font-size: 30px;
}

.events__back {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  background-position: center;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.events__back::before {
  content: "";
  position: absolute;
  background: #061738;
  opacity: 0.75;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.events:hover {
  background: transparent;
}

.events:hover .events__back {
  opacity: 1;
}

.events:hover .events__content span {
  color: white;
}

.events:hover .events__content span i {
  color: white;
}

.events:hover .events__content h3 {
  color: white;
}

.events:hover .events__content p {
  color: white;
}

.widget_events__date {
  background-color: #ab8234;
  padding: 7px 17px;
  border-radius: 7px;
}

.widget_events__date .semi-02-title {
  margin-bottom: 0;
}

.widget_events__date .semi-02-title span {
  display: block;
  font-size: 15px;
}

.widget_events__content span {
  color: white;
  margin-bottom: 4px;
  display: inline-block;
}

.widget_events__content span i {
  margin-right: 10px;
}

.widget_events__content h4 {
  margin-bottom: 0;
}

.widget_events:hover .widget_events__content .semi-02-title {
  color: #ab8234;
}

.events-area-02 {
  z-index: 1;
}

.events-area-02::before {
  content: "";
  position: absolute;
  /* background: white; */
  opacity: 0.95;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.events-02 {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 270px;
  display: flex;
  align-items: end;
  z-index: 1;
}

.events-02::before {
  content: "";
  background-image: -moz-linear-gradient(90deg,
      #061738 0%,
      rgba(6, 23, 56, 0) 100%);
  background-image: -webkit-linear-gradient(90deg,
      #061738 0%,
      rgba(6, 23, 56, 0) 100%);
  background-image: -ms-linear-gradient(90deg,
      #061738 0%,
      rgba(6, 23, 56, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.events-02 .events__content {
  padding-left: 55px;
  padding-bottom: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .events-02 .events__content {
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .events-02 .events__content {
    padding-left: 20px;
  }
}

.events-02 .events__content span {
  color: white;
  margin-bottom: 0;
}

.events-02 .events__content h3 {
  color: white;
}

.events-02 .events__content .more_btn3 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid white;
}

.events-02 .events__content .more_btn3:hover {
  color: #ab8234;
  border-color: #ab8234;
}

.events-02:hover .events__thumb img {
  transform: scale(1.1) rotate(3deg);
}

.events-02:hover .events__content h3 {
  color: #ab8234;
}

.events-02-lg {
  min-height: 473px;
}

.events-02-yellow {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 174px;
  width: 100%;
  display: block;
}

.events-02-yellow::before {
  display: none;
}

.events_wrapper__white {
  padding: 35px 40px 30px 40px;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  display: block;
}

@media (max-width: 767px) {
  .events_wrapper__white {
    padding: 35px 20px 30px 20px;
  }
}

.events_wrapper__white span {
  color: white;
}

.events_wrapper__white span i {
  color: white;
}

.events_wrapper__white h3 {
  color: white;
}

.events_wrapper__white .more_btn3 {
  color: white;
  text-transform: uppercase;
}

.events_wrapper__white .more_btn3:hover {
  color: #000;
  border-color: #000;
}

.events-update {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 575px;
  width: 100%;
  z-index: 1;
  display: flex;
  align-items: end;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .events-update {
    min-height: 550px;
  }
}

.events-update::before {
  content: "";
  background-image: -moz-linear-gradient(90deg,
      #061738 0%,
      rgba(6, 23, 56, 0) 100%);
  background-image: -webkit-linear-gradient(90deg,
      #061738 0%,
      rgba(6, 23, 56, 0) 100%);
  background-image: -ms-linear-gradient(90deg,
      #061738 0%,
      rgba(6, 23, 56, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.events-update .events-03 {
  padding-left: 220px;
  padding-right: 220px;
  display: block;
  bottom: 0;
}

.events-update .events-03::before {
  display: none;
}

@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  .events-update .events-03 {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .events-update .events-03 {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .events-update .events-03 {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .events-update .events-03 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 767px) {
  .events-update .events-03 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.events-update .events-03 .events-update-content {
  position: relative;
}

.events-update .events-03 .video-area {
  margin-bottom: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .events-update .events-03 .video-area {
    margin-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .events-update .events-03 .video-area {
    margin-bottom: 100px;
  }
}

.events-update .events-03 .video-area .popup-video {
  width: 85px;
  height: 85px;
  line-height: 86px;
}

.events-update .events-03 .video-area .popup-video i {
  font-size: 15px;
}

.events-03 {
  z-index: 3;
}

.events-03 .cases {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 3;
  padding-left: 25px;
  padding-right: 25px;
}

@media (max-width: 767px) {
  .events-03 .cases {
    bottom: -24px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.events-03 .cases__content h3 {
  color: white;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.events-03 .cases__content p {
  color: white;
}

.events-03 .cases-progress .funding {
  color: white;
}

.events-03 .cases-progress .funding span {
  color: white;
}

.events-03 .cases-progress .progress .progress-bar h5 {
  color: white;
}

.video-area-03 {
  width: 100%;
  min-height: 820px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 767px) {
  .video-area-03 {
    min-height: 450px;
  }
}

.video-area-03 .video-area {
  line-height: 120px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .helping-area {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .helping-area {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 110px;
    padding-bottom: 106px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .helping-area {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 767px) {
  .helping-area {
    /* padding-left: 25px;
    padding-right: 25px; */
    padding-top: 0px;
    padding-bottom: 20px;
  }
}

.helping-area .white-title h6 {
  color: white;
}

.charts__circle .chart {
  display: inline-block;
  position: relative;
}

.charts__circle .chart h2 {
  color: white;
  font-size: 65px;
  margin: 0;
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  line-height: 120px;
}

.charts__circle .chart h2 span {
  font-size: 25px;
}

.charts__content h3 {
  color: white;
}

.charts__content p {
  color: white;
}

.events_grid_wrapper .events-02 .events__content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-left: 40px;
  padding-bottom: 35px;
  z-index: 2;
}

.events_grid_wrapper .events-02__video {
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  transform: translateY(-50%);
}

.events_grid_wrapper .events-02__video .popup-video {
  width: 70px;
  height: 70px;
  font-size: 15px;
  line-height: 70px;
}

.events_grid_wrapper .events-02__video .popup-video i {
  font-size: 15px;
}

.events_grids_wrapper .events-02 .events__content {
  position: relative;
}

.events-grid-area .row .col-xl-4:nth-child(7) .events__content:hover h3 {
  color: #ab8234;
}

.events-grid-area .row .col-xl-4:nth-child(7) .events__content:hover .more_btn3 {
  color: #ab8234;
}

.events_btn a {
  color: #777777;
  border: 1px solid #ab8234;
  background: transparent !important;
}

.events_btn a::before {
  background: #ab8234;
}

.events_btn a span {
  background: #ab8234;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.events_btn a span i {
  color: white;
}

.events_btn a:hover span {
  background: white;
}

.events-details-thumb img {
  width: 100%;
}

.events-text-box h2 {
  font-size: 55px;
}

.map-area iframe {
  width: 100%;
  height: 445px;
  border: 0;
}

.times__content h5 {
  font-size: 20px;
  margin-bottom: 5px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.times__content p i {
  color: #ab8234;
  margin-right: 5px;
}

.times__content:hover h5 {
  color: #ab8234;
}

.widget-organizer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.widget-organizer h3 {
  color: white;
}

.widget-organizer .cases--author .autor-img {
  border: 2px solid #fff;
  border-radius: 50%;
}

.widget-organizer .cases--author .semi-02-title {
  color: white;
}

.widget-organizer h5 {
  color: white;
}

.widget-organizer p {
  color: white;
}

.widget-organizer p i {
  color: white;
}

.widget-organizer:hover h5 {
  color: #ab8234;
}

.testimonial-area::before {
  content: "";
  position: absolute;
  background: url(../img/shape/03.png);
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 442px;
}

.testimonial-text-wrapper .section-title h2 {
  font-size: 64px;
}

.testimonial-text-wrapper p {
  margin-bottom: 32px;
}

.author_box__img {
  border: 5px solid #feeeec;
  border-radius: 50%;
}

.author_box__img img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
}

.author_box__content .semi-02-title {
  margin-bottom: 5px;
}

.author_box__content p {
  color: #ab8234;
  font-weight: 500;
}

.testimonial-item {
  border-radius: 50px;
  box-shadow: 0 0 14px #0000001a;
  padding: 25px;
  margin: 10px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-item {
    padding: 45px 30px 45px 30px;
  }
}

@media (max-width: 767px) {
  .testimonial-item {
    padding: 45px 20px 45px 20px;
  }
}

.testimonial-item::before {
  content: "";
  position: absolute;
  background: url(../img/shape/02.png);
  right: 47px;
  top: 45px;
  z-index: 1;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  width: 61px;
  height: 70px;
  animation: jello infinite 5s linear;
}

.testimonial-item .review-icon span {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
  padding-right: 10px;
}

.testimonial-item .review-icon a {
  color: #ab8234;
  font-size: 12px;
}

.testimonial-item-02 {
  margin-right: 5px;
}

@media (max-width: 767px) {
  .testimonial-item-02 {
    margin-right: 0;
    margin-left: 20px;
  }
}

.testimonial-item-02 .author__img::before {
  border: 2px solid #ab8234;
  border-radius: 50%;
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  z-index: 1;
  left: -35px;
  top: 0;
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-item-02 .author__img::before {
    left: -10px;
    top: 0;
  }
}

@media (max-width: 767px) {
  .testimonial-item-02 .author__img::before {
    left: -10px;
    top: 0;
  }
}

.testimonial-item__content h2 {
  margin-bottom: 20px;
}

.testimonial-item__content .author-box__icon i {
  color: #ab8234;
  font-size: 60px;
}

.testimonial-area-02 .slick-slider .slick-arrow {
  border: 2px solid #e7e7e7;
  background: 0;
  color: #000;
  font-size: 18px;
  width: 55px;
  height: 55px;
  position: absolute;
  right: -200px;
  display: inline-block;
  top: 50%;
  z-index: 3;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .testimonial-area-02 .slick-slider .slick-arrow {
    right: 0;
  }
}

.testimonial-area-02 .slick-slider .slick-arrow:hover {
  color: #ab8234;
  border-color: #ab8234;
}

.testimonial-area-02 .slick-slider .slick-prev {
  top: 21% !important;
}

.testimonial-area-02 .slick-slider .slick-next {
  top: 57% !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .testimonila-area-03 .slick-slider .slick-arrow {
    display: none;
  }
}

.testimonial-wrapper-03 .testimonial-item-02 {
  margin-right: 30px;
  margin-left: 30px;
  padding: 10px 15px;
  box-shadow: 0px 10px 30px 0px rgba(218, 211, 211, 0.2);
}

@media (max-width: 767px) {
  .testimonial-wrapper-03 .testimonial-item-02 {
    margin-right: 0px;
    margin-left: 0px;
  }
}

.testimonial-wrapper-03 .testimonial-item-02 h3 {
  margin-bottom: 30px;
}

.testimonial-wrapper-03 .author_box {
  position: relative;
}

.testimonial-wrapper-03 .author_box::after {
  content: "\f10d";
  position: absolute;
  font-family: "Font Awesome 5 pro";
  font-size: 60px;
  color: #ab8234;
  right: 20%;
  bottom: 25px;
  z-index: -1;
}

@media (max-width: 767px) {
  .testimonial-wrapper-03 .author_box::after {
    display: none;
  }
}

.testimonial-wrapper-03 .author_box__content {
  margin-top: 7px;
}

.testimonial-wrapper-03 .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -80px;
  text-align: center;
}

.testimonial-wrapper-03 .slick-dots li {
  display: inline-block;
  margin: 0 3px;
}

.testimonial-wrapper-03 .slick-dots li button {
  border: 0;
  text-indent: -10000px;
  background: none;
  border: 2px solid #e8e8e8;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
}

.testimonial-wrapper-03 .slick-dots li.slick-active button {
  border-color: #ab8234;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-active-04 .testimonial-item {
    padding: 45px 25px 45px 25px;
  }
}

@media (max-width: 767px) {
  .testimonial-active-04 .testimonial-item {
    padding: 10px 13px 10px 0px;
  }
}

.donation-area {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.donation-area::before {
  content: "";
  position: absolute;
  background: #061738;
  opacity: 0.85;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.donate-cart {
  display: inline-block;
}

.donate-cart .donate-btn input {
  color: #ab8234;
  font-size: 30px;
  font-weight: 500;

  border: 0;
  background: white;
  text-align: center;
  display: block;
  height: 55px;
  width: 127px;
  border-radius: 30px;
}

.donate-cart .donate-btn input::placeholder {
  color: #ab8234;
}

.cart {
  position: absolute;
  color: #ab8234;
  font-size: 18px;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.cart.dec {
  left: auto;
  right: 25px;
}

.donations__icon i {
  color: #ab8234;
  font-size: 90px;
  margin-top: 17px;
}

.donations__text h3 {
  font-size: 30px;
}

.donations__text h2 {
  font-size: 65px;
}

.doante-select-area {
  padding: 90px 70px 100px 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .doante-select-area {
    padding: 90px 20px 100px 20px;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .doante-select-area {
    padding: 90px 10px 100px 10px;
  }
}

.doante-select-area .section-title h2 {
  font-size: 45px;
}

@media (max-width: 767px) {
  .doante-select-area .section-title h2 {
    font-size: 27px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .doante-select-area .section-title h2 {
    font-size: 35px;
  }
}

.doante-select-area .section-title p {
  font-size: 16px;
}

.doante-select-area .donate-cart {
  display: block;
  height: 64px;
  width: 100%;
}

.doante-select-area .donate-cart .donate-btn input {
  width: 100%;
  height: 64px;
  border: 1px solid #e4e4e4;
  border-radius: 0;
  color: #000;
}

.doante-select-area .donate-cart .plus-minus .cart i {
  color: #000;
}

.doante-select-area button.theme_btn.theme_btn_bg {
  border: 1px solid #e4e4e4;
  border-radius: 0;
  border: 0;
}

.doante-select-area button.theme_btn.theme_btn_bg::before {
  background: #ab8234;
  border-radius: 0;
}

.doante-select-area button.theme_btn.theme_btn_bg span {
  right: 10%;
}

.select-area .nice-select {
  width: 100%;
  display: block;
  border-radius: 0;
  border: 1px solid #e4e4e4;
  float: none;
  height: 64px;
  line-height: 64px;
}

.select-area .nice-select::before {
  content: "\f078";
  display: block;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  font-family: "Font Awesome 5 pro";
  font-size: 15px;
}

.select-area .nice-select::after {
  display: none;
}

.select-area .nice-select .current {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.select-area .nice-select .list {
  width: 100%;
}

.select-area .nice-select .list li {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.input-donate .cont_btn {
  border: 1px solid #e4e4e4;
  background: none;
  padding: 12px 88px;
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  font-weight: 550;
  color: #000;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  background: #fff;
  width: 32.78%;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .input-donate .cont_btn {
    padding: 18px 32px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .input-donate .cont_btn {
    padding: 18px 25px;
  }
}

@media (max-width: 767px) {
  .input-donate .cont_btn {
    padding: 18px 15px;
  }
}

.input-donate .cont_btn:hover {
  background: rgb(252 239 232 / 45%);
  border: 1px solid rgb(179 129 61);
  border-radius: 4px;
  color: rgb(102, 102, 102);
}

.video-area-02 .popup-video {
  width: 100px;
  height: 100px;
  border-radius: 0;
  line-height: 102px;
}

.video-area-02 .popup-video i {
  font-size: 20px;
}

.donation-area-03::before {
  content: "";
  position: absolute;
  background: url(../img/donation/01.jpg);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .donation-area-03::before {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .donation-area-03::before {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .donation-area-03::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .donation-area-03::before {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .donation-area-03 .about-wrap-02 {
    padding-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .donate-select-02 {
    margin-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .donate-select-02 {
    margin-left: 0;
    margin-right: 0;
    padding: 66px 20px 80px 20px;
  }
}

@media (max-width: 767px) {
  .donate-select-02 {
    margin-left: 0;
    margin-right: 0;
    padding: 66px 20px 80px 20px;
  }
}

.donate-select-02 .input-donate .cont_btn {
  padding: 18px 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .donate-select-02 .input-donate .cont_btn {
    padding: 18px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .donate-select-02 .input-donate .cont_btn {
    padding: 18px 17px;
  }
}

@media (max-width: 767px) {
  .donate-select-02 .input-donate .cont_btn {
    padding: 18px 12px;
  }
}

.donate-area-02::before {
  display: none;
}

.donate-select-03 {
  padding: 0;
}

.donate-select-03 .input-donate .cont_btn {
  padding: 18px 72px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .donate-select-03 .input-donate .cont_btn {
    padding: 18px 51px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .donate-select-03 .input-donate .cont_btn {
    padding: 18px 60px;
  }
}

@media (max-width: 767px) {
  .donate-select-03 .input-donate .cont_btn {
    padding: 18px 40px;
    margin-bottom: 5px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .donate-select-03 .input-donate .cont_btn {
    padding: 18px 40px;
  }
}

.donate-select-03 .large_btn {
  width: 100%;
  border-radius: 0;
  border: 0;
  font-size: 30px;
}

.donate-select-03 .large_btn::before {
  border-radius: 0;
}

.donation-form-left .section-title h6 {
  font-weight: 400;
}

.donation-form-left .donation-form {
  padding: 60px 70px 45px 70px;
}

@media (max-width: 767px) {
  .donation-form-left .donation-form {
    padding: 25px 15px 25px 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .donation-form-left .donation-form {
    padding: 60px 30px 60px 30px;
  }
}

.donation-form-left .donation-form .input-area .form-control {
  color: #000;
  border: 1px solid #e4e4e4;
}

.donate-select-area-04 {
  padding: 66px 70px 58px 70px;
}

@media (max-width: 767px) {
  .donate-select-area-04 {
    padding: 25px 20px 25px 20px;
  }
}

@media (max-width: 767px) {
  .donate-select-area-04 {
    padding: 25px 20px 25px 20px;
  }
}

.donate-select-area-04 .input-donate .cont_btn {
  margin: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .donate-select-area-04 .input-donate .cont_btn {
    padding: 18px 19px;
  }
}

@media (max-width: 767px) {
  .donate-select-area-04 .input-donate .cont_btn {
    padding: 8px 28px;
    width: 32.5%;
  }

  .amount-input_amountInput {
    padding: 7px 5px !important;
  }

  .input-donates .cont_btn {
    padding: 7px 20px !important;
    width: 24% !important;
  }
}

.payment-inner .input-area .form-control {
  color: #000;
  border: 1px solid #e4e4e4;
  /* background: #f9f9f9; */
}

.payment-inner button {
  width: 100%;
  border: 0;
  border-radius: 0;
}

.payment-inner button::before {
  border-radius: 0;
}

.donation-form .nav-tabs {
  border: 0;
}

.donation-form .nav-tabs .nav-item {
  margin-right: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .donation-form .nav-tabs .nav-item {
    margin-right: 20px;
  }
}

.donation-form .nav-tabs .nav-item .nav-link {
  border: 0;
  font-size: 18px;
  font-weight: 500;
  color: #000;

  position: relative;
  padding-left: 38px;
}

.donation-form .nav-tabs .nav-item .nav-link:hover,
.donation-form .nav-tabs .nav-item .nav-link.active {
  border: 0;
}

.donation-form .nav-tabs .nav-item .nav-link:hover::before,
.donation-form .nav-tabs .nav-item .nav-link.active::before {
  background: #ab8234;
}

.donation-form .nav-tabs .nav-item .nav-link:hover::after,
.donation-form .nav-tabs .nav-item .nav-link.active::after {
  border-color: #ab8234;
}

.donation-form .nav-tabs .nav-item .nav-link::before {
  content: "";
  position: absolute;
  background: #e4e4e4;
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  left: 6px;
  top: 15px;
}

.donation-form .nav-tabs .nav-item .nav-link::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #e4e4e4;
  left: 0px;
  top: 9px;
}

.blog__thumb {
  overflow: hidden;
}

.blog__thumb img {
  height: 235px;
  display: block;
  width: 100%;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.blog .tag {
  color: white;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  background: #ab8234;
  border-radius: 5px;
  padding: 5px 11px;
  display: inline-block;
  line-height: 1;
  margin-bottom: 15px;
  transition: all 0.3s ease-in;
}

.blog .tag:hover {
  background: #ab8234;
  color: white;
}

.blog__content .blog-title {
  font-size: 16px;
  overflow: hidden;
  line-height: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-title {
  font-size: 18px;
}

.blog-detail-title {
  font-size: 22px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog__content .blog-title {
    font-size: 18px;
  }
}

.blog_content p {
  font-size: 18px;
  text-align: justify;
  line-height: 28px;
  letter-spacing: 1px;
}

.blog__content p {
  font-size: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog:hover .blog__thumb img {
  transform: scale(1.1);
}

.blog:hover .blog__content .blog-title {
  color: #ab8234;
}

.blog-author {
  display: flex;
  align-items: center;
  border-top: 1px solid #ddd;
  justify-content: space-between;
  padding-top: 7px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-author li:first-child a {
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .blog-author li:first-child a {
    margin-right: 10px;
  }
}

.blog-detail-author {
  display: flex;
  align-items: center;
  border-top: 1px solid #ddd;
  justify-content: space-between;
  padding-top: 15px;
}

.blog-detail-author li a span {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-left: 10px;
  transition: all 0.3s ease-in;
}

.blog-author li a span {
  color: #000;
  font-size: 15px;
  font-weight: 600;
  margin-left: 10px;
  transition: all 0.3s ease-in;
}

.blog-author li a span:hover {
  color: #ab8234;
}

.blog-author li:last-child {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.blog-author li:last-child i {
  color: #ab8234;
  margin-right: 10px;
}

.blogs .blog__thumb {
  border-radius: 0;
  box-shadow: none;
}

.blogs .blog__content {
  /* padding: 0 23px 40px 40px; */
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blogs .blog__content {
    padding: 0 15px 40px 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blogs .blog__content {
    /* padding: 40px 15px 40px 15px; */
  }
}

@media (max-width: 767px) {
  .blog-author li:last-child {
    font-size: 12px;
  }

  .blog-title {
    line-height: 1.25;
    font-size: 16px;
  }

  .blog-author li a span {
    font-size: 12px;
  }

  .blogs .blog__content {
    /* padding: 40px 15px 40px 15px; */
  }
}

.blogs-list li .blogs .blog__content {
  padding-top: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blogs-list li .blogs .blog__content {
    padding: 14px 15px 12px 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blogs-list li .blogs .blog__content {
    padding: 14px 15px 40px 15px;
  }
}

.blogs-list li:last-child .blogs {
  border-top: 1px solid #e7e7e7;
}

.blogs-list li:last-child .blogs .blog__content {
  padding: 14px 23px 40px 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blogs-list li:last-child .blogs .blog__content {
    padding: 14px 15px 40px 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blogs-list li:last-child .blogs .blog__content {
    padding: 14px 15px 40px 15px;
  }
}

@media (max-width: 767px) {
  .blogs-list li:last-child .blogs .blog__content {
    padding: 14px 15px 40px 15px;
  }

  .donation-form .nav-tabs .nav-item .nav-link {
    border: 0;
    font-size: 16px;
    font-weight: 500;
    color: #000;

    position: relative;
    padding-left: 32px;
  }

  .donation-form .nav-tabs .nav-item {
    margin-right: 10px;
  }

  .donation-form .nav-tabs .nav-item .nav-link::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid #e4e4e4;
    left: 3px;
    top: 11px;
  }
}

.blog-03 .blog__thumb {
  overflow: hidden;
}

.blog-03 .blog__thumb img {
  display: block;
  width: 100%;
}

.blog-03 .tag {
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 17px;
}

.blog-03:hover .blog__thumb img {
  transform: scale(1.1);
}

.blog-03 .blog-author li a span {
  margin-left: 0;
}

.blog-03 .blog-author li a span i {
  color: #ab8234;
  margin-right: 6px;
}

.insta-feed .insta {
  margin: 0 9px 10px 0;
  display: inline-block;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .insta-feed .insta {
    margin: 0 2px 10px 0;
  }
}

.insta-feed .insta::before {
  content: "";
  position: absolute;
  background: #ab8234;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  transform: scale(0);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.insta-feed .insta span {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  text-align: center;
  z-index: 1;
  transform: translateY(-50%);
  color: #fff;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.insta-feed .insta span i {
  font-size: 18px;
}

.insta-feed .insta:hover::before {
  transform: scale(1);
  opacity: 0.8;
}

.insta-feed .insta:hover span {
  opacity: 1;
}

.widget .widget-post {
  padding: 40px 35px 25px 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .widget .widget-post {
    padding: 40px 10px 25px 15px;
  }
}

@media (max-width: 767px) {
  .widget .widget-post {
    padding: 40px 10px 25px 15px;
  }
}

.post__content h5 {
  font-size: 16px;
}

.post__content .view_btn {
  color: #ab8234;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid #ab8234;
}

.post__content .view_btn:hover {
  color: #ab8234 !important;
  border-color: #ab8234;
}

.post:hover .post__content h5 {
  color: #ab8234;
}

.recent-post .post__content h5 {
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: 0.5;
}

.recent-post .post__content span {
  color: #ab8234;

  font-weight: 500;
  margin-bottom: 2px;
}

.recent-post .post__content p {
  line-height: 1.25;
}

.recent-post .post__content p i {
  font-size: 15px;
  margin-right: 5px;
}

.blogs-02 {
  border: 1px solid #e4e4e4;
}

.blogs-02 .blog__thumb {
  border-radius: 0;
  box-shadow: none;
}

.blogs-02 .tag {
  margin-bottom: 20px;
}

.blogs-02 .blog__content {
  padding: 0 30px 30px 30px;
}

@media (max-width: 767px) {
  .blogs-02 .blog__content {
    padding: 0 15px 30px 15px;
  }
}

.blogs-02 .blog__content .blog-title {
  font-size: 24px;
}

@media (max-width: 767px) {
  .blogs-02 .blog__content .blog-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .blogs-02 .blog__content .blog-author {
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blogs-02 .blog__content .blog-author {
    display: flex;
  }
}

.blogs-02 .blog__content .blog-author li {
  font-size: 16px;
  font-weight: 500;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .blogs-02 .blog__content .blog-author li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}

.blogs-02 .blog__content .blog-author li i {
  color: #ab8234;
  font-size: 18px;
  margin-right: 5px;
}

.blogs-02 .video-area {
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
}

.blogs-02 .video-area .popup-video {
  width: 85px;
  height: 65px;
  border-radius: 10px;
  line-height: 65px;
  background: #ff0000;
}

.blogs-02 .video-area .popup-video i {
  color: white;
  font-size: 15px;
}

.blogs-02-quote {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blogs-02-quote .quote-wrapper {
  padding: 40px 40px 40px 40px;
}

@media (max-width: 767px) {
  .blogs-02-quote .quote-wrapper {
    padding: 40px 15px 40px 15px;
  }
}

.blogs-02-quote .quote-wrapper h2 {
  color: white;
  font-size: 40px;
}

.blogs-02-quote .quote-wrapper h2.left-line::before {
  width: 40px;
}

.blogs-02-quote .quote-wrapper h5 {
  color: white;
}

.widget-search {
  padding: 5px 0px 20px 0px;
}

.widget-search .input-area .form-control {
  width: 100%;
  height: 56px;
  position: relative;
}

.widget-search .input-area span {
  position: absolute;
  right: 33px;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.widget-search .input-area button {
  width: 55px;
  position: absolute;
  right: 0px;
  padding: 15px;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  border: 0;
  color: #fff;
  background: #624c25;
}

.widget-search .input-area span i {
  color: #ab8234;
  font-size: 18px;
  line-height: 1;
}

.widget .widget-post-02 {
  padding: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .widget .widget-post-02 {
    /* padding: 30px 5px 5px 15px; */
  }
}

@media (max-width: 767px) {
  .input-area .form-control {
    padding-left: 5px;
  }

  .widget-search .input-area .form-control {
    height: 50px;
  }

  .widget-search .input-area button {
    width: 50px;
    padding: 11px;
  }

  .widget .widget-post-02 {
    /* padding: 30px 15px 5px 15px; */
  }
}

.widget .widget-post-02 .post__content h4 {
  line-height: 1.5;
  margin-bottom: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.widget .widget-post-02 .post__content .view_btn {
  color: #555;
  font-size: 13px;
  font-weight: 550;
  border-bottom: 0;
}

.widget .widget-post-02 .post__content .view_btn i {
  color: #ab8234;
  margin-right: 5px;
  font-size: 14px;
}

.widget .widget-post-02 .post:hover .post__content h4 {
  color: #ab8234;
}

.widget .widget-post-02 ul li {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 15px;
}

.widget .widget-post-02 ul li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.widget-cat li a {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  width: 100%;
  padding: 24px 35px;
  display: block;
  background: #f4f2f1;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.widget-cat li a:hover {
  color: white;
  background: #ab8234;
}

.widget-insta {
  padding: 40px 35px 25px 35px;
}

.widget-insta .insta-feed {
  display: flex;
  flex-wrap: wrap;
}

.widget-insta .insta-feed li {
  padding: 10px;
  flex: 0 0 50%;
  max-width: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widget-insta .insta-feed li {
    padding: 10px;
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

.widget-insta .insta-feed li .insta {
  display: block;
}

.widget-insta .insta-feed li .insta img {
  width: 100%;
}

.widget-insta .insta-feed li .insta span i {
  font-size: 35px;
}

.widget-cat-btn {
  padding: 40px 35px 25px 35px;
}

.widget-cat-btn .cat-list .cat-btn {
  font-size: 14px;
  line-height: 1;
  background: white;
  display: inline-block;
  padding: 8px 10px;
  margin-right: 8px;
  margin-bottom: 7px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.widget-cat-btn .cat-list .cat-btn:hover {
  color: white;
  background: #ab8234;
}

.widget-add {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  position: relative;
  padding: 110px 60px 0 60px;
  z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .widget-add {
    padding: 110px 35px 0 35px;
  }
}

@media (max-width: 767px) {
  .widget-add {
    padding: 110px 35px 0 35px;
  }
}

.widget-add::before {
  content: "";
  background-color: #061738;
  opacity: 0.75;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.widget-add h5 {
  color: white;
  margin-bottom: 13px;
}

.widget-add h2 {
  color: white;
  margin-bottom: 30px;
}

.blogs-details-left-area {
  box-shadow: 0 0 12px 0 rgb(32 46 60 / 6%);
}

@media (max-width: 767px) {
  .blogs-details-left-area {
    padding-left: 0;
    padding-right: 0;
  }
}

.blogs-details-left-area .blogs-02 {
  border: 0;
}

.blogs-details-left-area .blogs-02 .blog__content {
  padding: 0;
}

.blogs-details-left-area .blogs-02 .blogs-details-thumb img {
  width: 100%;
  height: 450px;
}

.blog-details-list .about_list li {
  font-size: 15px;
  padding-left: 35px;
  color: #061738;
}

.blog-details-list .about_list li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 5 pro";
  font-size: 18px;
  color: #ab8234;
  left: 0;
  top: 1px;
  background: none;
}

.blog-details-list .about_list li::after {
  display: none;
}

.blogs-details-quote .quote-wrapper {
  padding: 32px 50px 27px 50px;
}

@media (max-width: 767px) {
  .blogs-details-quote .quote-wrapper {
    padding: 32px 25px 27px 25px;
    display: none;
  }
}

.blogs-details-quote .quote-wrapper h3 {
  margin-bottom: 16px;
}

.blogs-details-quote .quote-wrapper p {
  font-weight: 500;
}

.blogs-details-quote .quote-wrapper p i {
  color: #ab8234;
  font-size: 18px;
  margin-right: 10px;
}

.blog-post-tag span {
  color: #000;
  font-size: 18px;

  font-weight: 500;
  margin-right: 10px;
}

.post-share-icon span {
  color: #000;
  font-size: 18px;

  font-weight: 500;
  margin-right: 5px;
}

.post-share-icon a {
  font-size: 14px;
  margin-left: 15px;
}

.post-share-icon a:hover {
  color: #ab8234;
}

.author {
  padding: 40px;
}

@media (max-width: 767px) {
  .author {
    padding: 40px 25px;
  }
}

.author__img {
  margin-right: 40px;
}

@media (max-width: 767px) {
  .author__img {
    margin-right: 0;
    float: none;
    margin-bottom: 20px;
  }
}

.author__content .post-share-icon a {
  font-size: 14px;
  margin-right: 15px;
  margin-left: 0;
}

.post__content--meta span {
  margin-right: 10px;
}

.post__content--meta span i {
  color: #ab8234;
  font-size: 14px;
}

.row-border {
  border-bottom: 1px solid #e4e4e4;
}

.comment-box__content h5 {
  font-size: 20px;
  margin-bottom: 5px;
}

.comment-box__content span {
  color: #ab8234;
  display: inline-block;
  margin-bottom: 7px;
}

.comment-box__content p {
  margin-bottom: 5px;
}

.comment-box__content .reply-btn {
  color: #000;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.comment-box__content .reply-btn:hover {
  color: #ab8234;
}

@media (max-width: 767px) {
  .post-comment li {
    margin-left: 0;
  }
}

.post-comment li:last-child {
  border-bottom: 1px solid #e4e4e4;
}

.comment-form .input-area {
  position: relative;
}

.comment-form .input-area::before {
  content: "\f007";
  position: absolute;
  font-family: "Font Awesome 5 pro";
  font-size: 16px;
  color: #ab8234;
  right: 27px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  z-index: 1;
}

.comment-form .input-area .form-control {
  color: #000;
  border-radius: 0;
  font-weight: 400;
  border: 0;
  width: 100%;
  height: 70px;
  padding-left: 35px;
  background: #f4f2f1;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.comment-form .input-area textarea {
  color: #000;
  border-radius: 0;
  font-weight: 400;
  border: 0;
  width: 100%;
  height: 120px;
  padding-left: 35px;
  background: #f4f2f1;
}

.comment-form .input-area.input-mail::before {
  content: "\f2b6";
}

.comment-form .input-area.input-comment::before {
  content: "\f040";
  top: 20px;
}

.comment-form .input-area input:focus {
  border: 2px solid #ab8234;
  border-radius: 7px;
  background: none;
}

.comment-form .input-area textarea:focus {
  border: 2px solid #ab8234;
  border-radius: 7px;
  background: none;
}

.comment-form .comment-btn button {
  border-radius: 0;
  border: 0;
  padding: 20px 75px 20px 55px;
}

.comment-form .comment-btn button::before {
  border-radius: 0;
}

.features {
  padding: 45px 45px 40px 45px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features {
    padding: 45px 25px 40px 25px;
  }
}

@media (max-width: 767px) {
  .features {
    padding: 45px 25px 40px 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features {
    padding: 45px 45px 40px 45px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features__icon {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .features__icon {
    margin-bottom: 20px;
  }
}

.features__icon i {
  color: #ab8234;
  font-size: 95px;
}

.features__content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.features__content p {
  font-size: 15px;
  margin-bottom: 10px;
}

.features__content .more_btn2 {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.features__content .more_btn2 i {
  font-size: 18px;
  line-height: 1;
  margin-left: 10px;
  transform: translateY(2px);
}

.features__content .more_btn2:hover {
  color: #ab8234;
}

.features__content:hover h3 {
  color: #ab8234;
}

.features:hover,
.features.active {
  box-shadow: 0px 10px 30px 0px rgba(172, 172, 172, 0.17);
}

.features-02 {
  text-align: center;
  padding: 30px 15px 25px 15px;
  z-index: 1;
  box-shadow: 0px 10px 30px 0px rgb(172 172 172 / 17%);
}

.features-02 .features__icon i {
  color: #000;
  font-size: 55px;
}

.features-02 .features__content h3 {
  color: #000;
}

.features-02 .features__content p {
  color: #000;
  margin-bottom: 5px;
}

.features-02 .features__content .more_btn2 {
  color: #000;
}

.features-02 .features__content .more_btn2:hover {
  color: #061738;
}

.features-02__back {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.footer-area {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-bottom-area {
  border-bottom: 2px solid #414657;
}

.scroll-target {
  color: white;
  background: #ab8234;
  width: 50px;
  height: 50px;
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 95px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  z-index: 3;
}

.scroll-target:hover {
  background: #ab8234;
}

@media (max-width: 767px) {
  .scroll-target {
    margin: 0 0 0 auto;
  }
}

.footer__widget .semi-02-title {
  color: white;
}

.footer__widget .semi-02-title a {
  font-size: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer__widget.fot_abot {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__widget {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .footer__widget {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer__widget {
    padding-left: 0;
    padding-right: 0;
  }
}

.footer__widget .footer-logo {
  display: inline-block;
}

.footer__widget p {
  color: white;
  text-align: justify;
}

.footer__widget .fot-list li {
  margin-bottom: 8px;
}

.footer__widget .fot-list li a {
  color: white;
  font-size: 15px;
  line-height: 1.2;

  font-weight: 400;
  position: relative;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.footer__widget .fot-list li a i {
  font-size: 15px;
}

.footer__widget .fot-list li a:hover,
.footer__widget .fot-list li a:focus {
  color: #ab8234;
  padding-left: 10px;
}

.footer__widget .fot-list li a:hover::before,
.footer__widget .fot-list li a:focus::before {
  color: #ab8234;
  opacity: 1;
  visibility: visible;
}

.copy-right-area .copyright {
  background: #091c40;
  padding: 10px;
}

.copy-right-area .copyright p {
  color: white;
}

.copy-right-area .copyright p span {
  color: #ab8234;
}

.copy-area-02 .copyright p span {
  color: #ab8234;
}

.fot__subscribe .form-area a {
  padding: 20px 50px 20px 45px;
}

.desk_hide {
  display: none;
}

.nav-style-separated ul>li:not(:last-child)>a:after {
  background: #d9d9d9c4 none repeat scroll 0 0;
  content: "";
  height: 11px;
  margin-top: -5px;
  position: absolute;
  top: 48%;
  width: 1px;
  margin-left: 10px;
}

.icn-sze {
  font-size: 22px;
  margin-bottom: 10px;
}

.col-xs-6 {
  width: 50%;
}

.how-it-works_page {
  margin-top: 50px;
  background-color: #fff;
}

.how-it-works_heading {
  font-size: 24px;
  font-weight: 700;
  color: #624c25;
  letter-spacing: 1px;
  text-align: center;
  padding: 32px 16px 0;
}

.how-it-works_desc {
  text-align: center;
  max-width: 500px;
  margin: 24px auto;
  padding: 0 16px;
  font-size: 18px;
}

.how-it-works_tabsWrapper {
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  padding: 0 16px;
}

.how-it-works_tab {
  color: #624c25;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 16px;
  width: 160px;
  text-align: center;
  border: 1px solid #00a89a;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 6px rgba(17, 17, 17, 0.1);
  box-shadow: 0 3px 6px rgba(17, 17, 17, 0.1);
  cursor: pointer;
  position: relative;
  margin: 0 -4px;
}

.how-it-works_tab.how-it-works_active {
  color: #fff;
  background-color: #00a89a;
  -webkit-box-shadow: 0 3px 15px rgba(17, 17, 17, 0.3);
  box-shadow: 0 3px 15px rgba(17, 17, 17, 0.3);
  z-index: 2;
}

.how-it-works_tabContent {
  margin-top: 16px;
}

.how-it-works_campaignerTab,
.how-it-works_donorTab {
  margin: auto;
  padding-top: 24px;
}

.how-it-works_slider {
  padding: 48px 0 0;
  text-align: center;
}

.how-it-works_slider p {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 16px;
}

.how-it-works_videoBg {
  position: relative;
  max-width: 500px;
  margin: auto;
}

.how-it-works_videoBg img {
  width: 100%;
}

.how-it-works_videoBg .how-it-works_videoWrapper {
  position: absolute;
  top: 6px;
  height: 100%;
  left: 21.8%;
  width: 56%;
  z-index: 2;
}

.how-it-works_videoBg .how-it-works_iframeWrapper {
  position: relative;
  max-width: 100%;
  padding-bottom: 216.67%;
  border-radius: 28px;
}

.how-it-works_videoBg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 28px;
}

.how-it-works_dotUl {
  top: 0;
  bottom: unset;
  padding: 0 16px;
}

.how-it-works_stepWrapper {
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 16px;
}

.how-it-works_stepHeading {
  width: 100%;
  text-align: center;
  color: #423b7d;
  letter-spacing: 1px;
  padding-top: 7px;
}

.how-it-works_stepHeading span {
  display: block;
  opacity: 0.2;
  font-weight: 600;
  font-size: 15px;
  line-height: 14px;
}

.how-it-works_stepHeading label {
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 24px;
  line-height: 24px;
}

.how-it-works_stepImg {
  width: 41%;
  align-self: center;
  text-align: right;
}

.how-it-works_stepImg img {
  max-width: 250px;
}

.how-it-works_stepWrapper:nth-child(2n) {
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  flex-direction: row-reverse;
}

.how-it-works_stepWrapper:nth-child(2n) .how-it-works_stepImg {
  text-align: left;
}

.how-it-works_stepWrapper:nth-child(2n) .how-it-works_stepContentWrapper {
  text-align: right;
}

.how-it-works_stepTitle {
  display: block;
  text-transform: none;
  font-size: 20px;
  font-weight: 600;
}

.how-it-works_stepSeparator {
  content: " ";
  width: 18%;
  background-image: url(../../assets/img/separator.png);
  background-repeat: repeat-y;
  background-size: auto 100%;
  background-position: 50%;
}

.how-it-works_stepContentWrapper {
  width: 41%;
  align-self: center;
  text-align: left;
  letter-spacing: 1px;
}

.how-it-works_lineBreak {
  margin-bottom: 8px;
}

.how-it-works_stepLink {
  text-decoration: underline;
  font-weight: 500;
  padding-top: 12px;
  color: #624c25;
  display: block;
}

.how-it-works_faqs {
  margin-top: 16px;
}

@media only screen and (max-width: 767px) {
  .how-it-works_stepTitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .how-it-works_stepContentWrapper {
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  .how-it-works_stepContentWrapper,
  .how-it-works_stepImg {
    width: -webkit-calc(50% - 16px);
    width: -moz-calc(50% - 16px);
    width: calc(50% - 16px);
  }

  .how-it-works_stepImg img {
    max-width: 100%;
  }

  .how-it-works_stepSeparator {
    width: 32px;
  }

  .how-it-works_stepHeading span {
    font-size: 14px;
  }

  .how-it-works_stepHeading label {
    font-size: 20px;
    line-height: 20px;
  }

  .how-it-works_stepLink {
    padding: 2px 0 8px;
  }

  .how-it-works_slider p {
    max-width: 340px;
    margin: 0 auto 16px;
    padding: 0 16px;
    height: 44px;
  }
}

@media only screen and (max-width: 350px) {
  .how-it-works_slider p {
    height: 60px;
    margin-bottom: 4px;
  }
}

.login-logo img {
  height: 55px;
}

.main-contact-area a {
  color: #ab8234 !important;
}

.br-ri8 {
  border-right: 1px solid #ddd;
}

.bg-trns {
  background: #f8e8dc !important;
}

.underline {
  margin: 0 0 1.25em;
  line-height: 0.5;
  text-align: center;
}

.underline .fancy,
.underline .fancy .diamond {
  display: inline-block;
  position: relative;
}

.underline .fancy:before {
  right: 100%;
  margin-right: 35px;
}

.underline .fancy:after,
.underline .fancy:before {
  content: "";
  position: absolute;
  height: 5px;
  border-bottom: 1px solid #707070;
  top: 4px;
  opacity: 0.53;
  width: 85px;
}

.underline .fancy .diamond {
  width: 15px;
  height: 15px;
  background: #624c25;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.underline .fancy .diamond:before {
  top: 20px;
  left: -16px;
}

.underline .fancy .diamond:after {
  top: -16px;
  right: -16px;
}

.underline .fancy .diamond:after,
.underline .fancy .diamond:before {
  content: "";
  position: absolute;
  background: #d49d68;

  opacity: 0.53;
  width: 11px;
  height: 11px;
}

.underline .fancy:after {
  left: 100%;
  margin-left: 35px;
}

/* Under Line Left */

.underline-left {
  margin: 0 0 2em;
  line-height: 0.5;
  margin-left: 172px;
}

.underline-left .fancy,
.underline-left .fancy .diamond {
  display: inline-block;
  position: relative;
}

.underline-left .fancy:before {
  right: 100%;
  margin-right: 54px;
}

.underline-left .fancy:after,
.underline-left .fancy:before {
  content: "";
  position: absolute;
  height: 5px;
  border-bottom: 1px solid #707070;
  top: 5px;
  opacity: 0.53;
  width: 120px;
}

.underline-left .fancy .diamond {
  width: 18px;
  height: 18px;
  background: #624c25;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.underline-left .fancy .diamond:before {
  top: 27px;
  left: -21px;
}

.underline-left .fancy .diamond:after {
  top: -21px;
  right: -21px;
}

.underline-left .fancy .diamond:after,
.underline-left .fancy .diamond:before {
  content: "";
  position: absolute;
  background: #d49d68;

  opacity: 0.53;
  width: 11px;
  height: 11px;
}

.underline-left .fancy:after {
  left: 100%;
  margin-left: 54px;
}

.blog__content {
  /* padding: 10px 0; */
}

.sdow {
  box-shadow: 0 0 20px #00000036;
}

.features__icon img {
  width: 80px;
}

.post__content h4 {
  font-size: 14px;
}

.campaign-card_progressBarHeading {
  margin-bottom: 6px;
  color: #000;
  font-weight: 500;
  letter-spacing: 1px;
}

.campaign-card_totalRaisedAmount {
  color: #111;
  font-size: 16px;
  font-weight: 700;
}

.campaign-card_campaignAuthor {
  margin-bottom: 0;
  letter-spacing: 0;
  color: rgb(0 0 0 / 77%);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  font-size: 13px;
  line-height: 16px;
  height: 32px;
}

.campaign-card_campaignAuthor .campaign-card_authorImg {
  border-radius: 50%;
  border: 1px solid #f2f2f2;
  margin-right: 10px;
  height: 30px;
  min-width: 30px;
  max-width: 30px;
  color: #423b7d;
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  font-weight: 600;
  letter-spacing: 1px;
}

.campaign-card_statsWrapper {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: justify;
  justify-content: space-between;
  margin-top: 8px;
}

.gm-observing {
  margin-top: -2px;
}

.details-right-area p {
  text-align: justify;
}

.campaign-card_daysLeft {
  width: 46%;
  font-weight: 600;
  background: #fcefe8ad;
  border-radius: 4px;
  padding: 3px 5px 2px 5px;
  font-size: 12px;
}

.campaign-card_daysLefts {
  width: 54%;
  border-radius: 4px;
  padding: 4px 5px;
}

.bx-sd {
  box-shadow: 0 25px 60px rgb(0 0 0 / 10%);
}

.product-disclamer_icon {
  color: #1e23b5;
  font-size: 8px;
  font-weight: 600;
  border: 2px solid #110895;
  border-radius: 50%;
  width: 15px;
  line-height: 11px;
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  margin: 0px 5px -5px 5px;
}

.product-disclamer_icon .product-disclamer_active {
  color: #ff7400;
  border-color: #ff7400;
}

.sub-title {
  margin-bottom: 0.5em;
  font-size: 22px;
  position: relative;
  word-wrap: break-word;
  line-height: 1;
  border-left: 2px solid #e85242;
  padding: 10px 0 10px 20px;
}

.products_productCard {
  padding: 15px 16px;
  width: -moz-calc(50% - 20px);
  border-radius: 12px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
  position: relative;
}

.common_title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
}

.special-product_productImg {
  padding: 8px 0;
  height: 163px;
  text-align: center;
}

.special-product_productImg img {
  height: 100%;
}

.product-info_progressBarHeading {
  padding-bottom: 4px;
}

.dk-progress-bar_backgroundBar {
  background-color: #f0f0f0;
  width: 100%;
  height: 14px;
  border-radius: 7px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
  align-items: center;
}

.summary_pageHeading {
  padding: 0 0 16px;
}

.summary_title {
  text-transform: none;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.summary_badgeWrapper {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 12px;
  gap: 12px;
}

.tax-benefit-tool-tip_badge {
  height: 28px;
  background-color: #1ca53a;
  border-radius: 20px;
  color: #fff;
  padding: 0 10px 0 12px;
  font-size: 12px;
  font-weight: 500;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
  justify-content: space-between;
  -moz-box-align: center;
  align-items: center;
  grid-gap: 4px;
  gap: 4px;
}

.tax-benefit-tool-tip_icon {
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 13px;
  line-height: 11px;
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
}

.summary_donationDetails {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: start;
  justify-content: flex-start;
  grid-gap: 24px;
  gap: 24px;
  padding: 16px 0;
}

.donut-chart_donutChart {
  position: relative;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 0 4px rgb(0 0 0 / 10%);
  box-shadow: inset 0 0 0 4px rgb(0 0 0 / 10%);
}

.donut-chart_donutChart p {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-weight: 700;
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
}

.donut-chart_donutChart svg {
  pointer-events: none;
}

.summary_statFigure {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.common-styles_py3 {
  padding-bottom: 16px;
}

.payment-options-card_paymentOptionsCard {
  width: 100%;
  position: relative;
  -webkit-box-shadow: 0 6px 20px rgb(0 0 0 / 10%);
  box-shadow: 0 6px 20px rgb(0 0 0 / 10%);
  background-color: #fff;
  border-radius: 12px;
}

.header_currencyCol {
  width: 57%;
}

.header_currencyLabel {
  margin-bottom: 0;
  margin-left: 20px;
  color: #fff;
}

.header_currencyDropdown {
  margin: 2px 0 0;
  border: 0;
  border-bottom: 3px solid #fff;
  height: 25px;
  background-color: #ff7400;
  color: #fff;
  padding: 0;
}

.header_currencyOption {
  background: #fff;
  color: #000;
}

.header_amountCol {
  width: 36%;
}

.header_amountLabel {
  margin-bottom: 2px;
  padding-left: 4px;
  display: block;
  color: #fff;
}

.header_amount {
  color: #fff;
  border: 0;
  line-height: 24px;
  padding-left: 4px;
}

.payment-options-card_optionsWrapper {
  padding: 8px;
}

.payment-options_sectionWrapper {
  padding: 4px 0;
  clear: both;
}

.payment-options_modeTitle {
  text-align: left;
}

.payment-options_headingColor {
  color: #9b9b9b;
}

.payment-options_paymentOptionsSection {
  padding: 4px 0;
}

.payment-options_optionWrapper {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  -moz-box-align: center;
  align-items: center;
  grid-gap: 16px;
  gap: 16px;
}

.payment-options_imageWrapper {
  padding: 0;
  text-align: center;
  width: 61px;
}

.donate-now_divWrapperPayment {
  padding: 0 8px 12px;
  background: #fff;
  border-radius: 0 0 12px 12px;
}

.donate-now_shakeButton {
  -webkit-animation: donate-now_wdoubleBounce 5s ease-in-out infinite;
  -moz-animation: donate-now_wdoubleBounce 5s ease-in-out infinite;
  animation: donate-now_wdoubleBounce 5s ease-in-out infinite;
  -webkit-animation-delay: -1s;
  -moz-animation-delay: -1s;
  animation-delay: -1s;
}

.donate-now_addProducts {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #fff;
}

.donate-now_donateBar {
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  grid-gap: 24px;
  gap: 24px;
  width: 100%;
  background: linear-gradient(45deg, #664b29, #b2813d);
  color: #fff !important;
  padding: 8px;
  text-align: center;
  letter-spacing: 1px;
  font-size: 16px;
  border-radius: 4px;
  font-weight: 700;
}

.currency-dropdown_formControl {
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  background-clip: padding-box;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}

.header_currencyDropdown {
  margin: 2px 0 0;
  border: 0;
  border: 1px solid #fff;
  height: 25px;
  background-color: #624c25;
  color: #fff;
  padding: 0;
}

.header_currencyAmount {
  background-color: #624c25;
  border-radius: 12px 12px 0 0;
  color: #fff;
  padding: 5px;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
  justify-content: space-between;
}

.promo-card_title {
  font-weight: 600;
  font-size: 18px;
  color: #111;
  text-transform: none;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.post__content p {
  font-size: 14px;
}

.promo-card_button {
  width: 100%;
  background: #b2813d;
  border: 0;
  -webkit-box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
  box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
  text-align: center;
  padding: 10px;
  margin-top: 16px;
  letter-spacing: 1px;
}

.product-info_icon {
  color: #111;
  font-size: 8px;
  font-weight: 600;
  border: 1px solid #111;
  border-radius: 50%;
  width: 13px;
  line-height: 11px;
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  margin: 0px 10px 0px 5px;
}

.product-info_descriptionLabel,
.product-info_icon {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  color: #000;
}

.divider {
  background-repeat: repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* -------- Parallax ---------- */
.parallax {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: repeat-y;
  background-position: top center;
}

.mobile-parallax {
  background-size: cover;
  background-attachment: scroll;
  background-position: center center;
}

.divider .container {
  padding-top: 90px;
  padding-bottom: 90px;
}

.divider .container.small-padding {
  padding-top: 30px;
  padding-bottom: 30px;
}

.divider .container.extra-padding {
  padding-top: 180px;
  padding-bottom: 180px;
}

.box-shadow11 {
  -webkit-box-shadow: 0px 8px 20px 0px rgb(0 0 0 / 16%);
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 8px 20px 0px rgb(0 0 0 / 16%);
}

.border-5px {
  border: 5px solid #eeeeee !important;
}

.bg-white {
  background-color: #a26541 !important;
}

.p-30 {
  padding: 30px !important;
}

.text-theme-colored {
  color: #ab8234 !important;
}

.line-bottom:after {
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 50px;
}

.line-bottom {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 10px;
}

.line-bottom:after {
  background: #ab8234 !important;
}

.text-white {
  color: #fff !important;
}

.btn-theme-colored:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn-theme-colored {
  color: #fff;
  background-color: #ab8234;
  border-color: #ab8234;
}

.top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents {
  position: relative;
}

.top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .mini-cart-icon {
  color: #888;
  display: block;
  font-size: 20px;
  line-height: 1;
  padding: 5px;
  position: relative;
}

.top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .mini-cart-icon {
  color: #888;
  display: block;
  font-size: 20px;
  line-height: 1;
  padding: 5px;
  position: relative;
}

.top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .mini-cart-icon .items-count {
  background-color: #ab8234;
  border: 2px solid #eee;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  height: 20px;
  width: 20px;
  line-height: 18px;
  margin-right: -2px;
  position: absolute;
  right: -2px;
  text-align: center;
  top: -2px;
}

.top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .mini-cart-icon .cart-quick-info {
  display: none;
}

.cartt {
  padding: 0.5rem;
  overflow-y: auto;
}

.css-ujhe7h.css-ujhe7h {
  padding: 10px 4px;
  color: rgba(128, 128, 128, 0.72);
}

.sub-heading-suggestion {
  font-size: 18px;
}

.packet-card-wrapper {
  border-bottom: 1px inset;
  display: flex;
}

.packet-card-container {
  display: flex;
  justify-content: space-between;
  padding: 5px;
}

.packet-card-heading {
  color: #000;
  font-size: 15px;
  font-weight: 600;
  word-break: break-word;
  text-align: left;
  line-height: 1.5;
}

.packet-name {
  font-weight: 600;
  margin-bottom: 4px;
  margin-top: -7px;
  text-align: left;
  font-size: 14px;
}

.packet-amount {
  color: #00544d;
  font-weight: 600;
  margin-bottom: 4px;
  text-align: left;
}

.button-text-field-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  max-height: 74px;
}

.close-mobile-menus {
  background: #fff;
  margin-left: -47px;
  width: 30px;
  height: 32px;
  padding: 10px;
  line-height: 3px;
  border-radius: 50%;
  margin-top: -25px;
  cursor: pointer;
}

.qty .count {
  color: #000;
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  padding: 0 2px;
  min-width: 35px;
  text-align: center;
  border-radius: 5px;
}

.qty .plus {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  color: white;
  width: 30px;
  height: 30px;
  font-size: 14px;
  text-align: center;
  border-radius: 50%;
}

.qty .minus {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  color: white;
  width: 30px;
  height: 30px;
  font-size: 14px;
  text-align: center;
  border-radius: 50%;
  background-clip: padding-box;
}

.btn-sm.btn-icon {
  padding: 5px;
  width: 31px;
  color: #fff;
  border: none;
  background: #ab8234;
  height: 31px;
}

.btn-sm.btn-icon:hover {
  background: #000;
}

.input-number {
  width: 32px;
  height: 31px;
  border: 2px solid #fff;
}

.total-donation-container {
  background: rgba(181, 224, 255, 0.729);
  border: 2px solid rgba(129, 141, 255, 0.671);
  border-radius: 8px;
  color: #0e1a75;
  display: flex;
  font-weight: 600;
  justify-content: space-between;
  padding: 6px;
}

[dir="rtl"] .floating-label>input+label,
[dir="rtl"] .floating-label>textarea+label {
  right: 0;
  left: auto !important;
}

[dir="rtl"] .floating-label>input:not([placeholder]):not([value])+label,
[dir="rtl"] .floating-label>textarea:not([placeholder]):empty+label,
[dir="rtl"] .floating-label>input[placeholder]:not(:placeholder-shown)+label,
[dir="rtl"] .floating-label>textarea[placeholder]:not(:placeholder-shown)+label,
[dir="rtl"] .floating-label>input:-webkit-autofill+label,
[dir="rtl"] .floating-label>textarea:-webkit-autofill+label,
[dir="rtl"] .floating-label>input:focus+label,
[dir="rtl"] .floating-label>textarea:focus+label,
[dir="rtl"] .floating-label>select+label {
  right: 0.5rem;
  left: auto !important;
}

.floating-label {
  position: relative;
}

.floating-label>select+label,
.floating-label>select+label.label-sm {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 0.5rem;
  padding: 0 0.3rem;
  color: inherit;
  background-color: #fff;
  border-radius: 0.25rem;
  top: -0.7875rem;
  font-size: 0.875rem;
}

.floating-label>select+label.label-md {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 0.5rem;
  padding: 0 0.3rem;
  color: inherit;
  background-color: #fff;
  border-radius: 0.25rem;
  top: -0.9rem;
  font-size: 1rem;
}

.floating-label>select+label.label-lg {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 0.5rem;
  padding: 0 0.3rem;
  color: inherit;
  background-color: #fff;
  border-radius: 0.25rem;
  top: -1.125rem;
  font-size: 1.25rem;
}

.floating-label>select:disabled+label,
.floating-label>select[readonly]+label {
  background-color: #e9ecef;
}

.floating-label>input+label,
.floating-label>textarea+label {
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  top: 0;
  left: 0;
  color: #6c757d;
  pointer-events: none;
  font-size: 1rem;
  padding: calc(0.5rem + 1px) calc(0.75rem + 1px);
}

.floating-label>input.form-control-sm+label,
.floating-label>textarea.form-control-sm+label {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  top: 0;
  left: 0;
  color: #6c757d;
  pointer-events: none;
  font-size: 0.875rem;
  padding: calc(0.25rem + 1px) calc(0.5rem + 1px);
}

.floating-label>input.form-control-lg+label,
.floating-label>textarea.form-control-lg+label {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  top: 0;
  left: 0;
  color: #6c757d;
  pointer-events: none;
  font-size: 1.25rem;
  padding: calc(0.5rem + 1px) calc(1rem + 1px);
}

.floating-label>input::placeholder,
.floating-label>textarea::placeholder {
  color: transparent;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-label>label+input::placeholder,
.floating-label>label+textarea::placeholder {
  color: #6c757d;
}

.floating-label>input:focus::placeholder,
.floating-label>textarea:focus::placeholder {
  color: #6c757d;
}

.floating-label>input:focus+label,
.floating-label>input:focus+label.label-sm,
.floating-label>textarea:focus+label,
.floating-label>textarea:focus+label.label-sm {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 0.5rem;
  padding: 0 0.3rem;
  color: inherit;
  background-color: #fff;
  border-radius: 0.25rem;
  top: -0.7875rem;
  font-size: 0.875rem;
}

.floating-label>input:focus+label.label-md,
.floating-label>textarea:focus+label.label-md {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 0.5rem;
  padding: 0 0.3rem;
  color: inherit;
  background-color: #fff;
  border-radius: 0.25rem;
  top: -0.9rem;
  font-size: 1rem;
}

.floating-label>input:focus+label.label-lg,
.floating-label>textarea:focus+label.label-lg {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 0.5rem;
  padding: 0 0.3rem;
  color: inherit;
  background-color: #fff;
  border-radius: 0.25rem;
  top: -1.125rem;
  font-size: 1.25rem;
}

.floating-label>input:focus[readonly]+label,
.floating-label>textarea:focus[readonly]+label {
  background-color: #e9ecef;
}

.floating-label>input:-webkit-autofill+label,
.floating-label>input:-webkit-autofill+label.label-sm,
.floating-label>textarea:-webkit-autofill+label,
.floating-label>textarea:-webkit-autofill+label.label-sm {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 0.5rem;
  padding: 0 0.3rem;
  color: inherit;
  background-color: #fff;
  border-radius: 0.25rem;
  top: -0.7875rem;
  font-size: 0.875rem;
}

.floating-label>input:-webkit-autofill+label.label-md,
.floating-label>textarea:-webkit-autofill+label.label-md {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 0.5rem;
  padding: 0 0.3rem;
  color: inherit;
  background-color: #fff;
  border-radius: 0.25rem;
  top: -0.9rem;
  font-size: 1rem;
}

.floating-label>input:-webkit-autofill+label.label-lg,
.floating-label>textarea:-webkit-autofill+label.label-lg {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 0.5rem;
  padding: 0 0.3rem;
  color: inherit;
  background-color: #fff;
  border-radius: 0.25rem;
  top: -1.125rem;
  font-size: 1.25rem;
}

.floating-label>input[placeholder]:not(:placeholder-shown)+label,
.floating-label>input[placeholder]:not(:placeholder-shown)+label.label-sm,
.floating-label>textarea[placeholder]:not(:placeholder-shown)+label,
.floating-label>textarea[placeholder]:not(:placeholder-shown)+label.label-sm {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 0.5rem;
  padding: 0 0.3rem;
  color: inherit;
  background-color: #fff;
  border-radius: 0.25rem;
  top: -0.7875rem;
  font-size: 0.875rem;
}

.floating-label>input[placeholder]:not(:placeholder-shown)+label.label-md,
.floating-label>textarea[placeholder]:not(:placeholder-shown)+label.label-md {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 0.5rem;
  padding: 0 0.3rem;
  color: inherit;
  background-color: #fff;
  border-radius: 0.25rem;
  top: -0.9rem;
  font-size: 1rem;
}

.floating-label>input[placeholder]:not(:placeholder-shown)+label.label-lg,
.floating-label>textarea[placeholder]:not(:placeholder-shown)+label.label-lg {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 0.5rem;
  padding: 0 0.3rem;
  color: inherit;
  background-color: #fff;
  border-radius: 0.25rem;
  top: -1.125rem;
  font-size: 1.25rem;
}

.floating-label>input[placeholder]:not(:placeholder-shown):disabled+label,
.floating-label>input[placeholder]:not(:placeholder-shown)[readonly]+label,
.floating-label>textarea[placeholder]:not(:placeholder-shown):disabled+label,
.floating-label>textarea[placeholder]:not(:placeholder-shown)[readonly]+label {
  background-color: #e9ecef;
}

.floating-label>input:not([placeholder]):not([value])+label,
.floating-label>input:not([placeholder]):not([value])+label.label-sm,
.floating-label>textarea:not([placeholder]):empty+label,
.floating-label>textarea:not([placeholder]):empty+label.label-sm {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 0.5rem;
  padding: 0 0.3rem;
  color: inherit;
  background-color: #fff;
  border-radius: 0.25rem;
  top: -0.7875rem;
  font-size: 0.875rem;
}

.floating-label>input:not([placeholder]):not([value])+label.label-md,
.floating-label>textarea:not([placeholder]):empty+label.label-md {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 0.5rem;
  padding: 0 0.3rem;
  color: inherit;
  background-color: #fff;
  border-radius: 0.25rem;
  top: -0.9rem;
  font-size: 1rem;
}

.floating-label>input:not([placeholder]):not([value])+label.label-lg,
.floating-label>textarea:not([placeholder]):empty+label.label-lg {
  position: absolute;
  z-index: 3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 0.5rem;
  padding: 0 0.3rem;
  color: inherit;
  background-color: #fff;
  border-radius: 0.25rem;
  top: -1.125rem;
  font-size: 1.25rem;
}

.floating-label>input:not([placeholder]):not([value]):disabled+label,
.floating-label>input:not([placeholder]):not([value])[readonly]+label,
.floating-label>textarea:not([placeholder]):empty:disabled+label,
.floating-label>textarea:not([placeholder]):empty[readonly]+label {
  background-color: #e9ecef;
}

.special-label {
  background: #fff;
  font-size: 14px;
  left: 25px;
  padding: 0 5px;
  position: absolute;
  top: -12px;
  z-index: 1;
}

.special-label-2 {
  background: #fff;
  font-size: 14px;
  left: 225px;
  padding: 0 5px;
  position: absolute;
  top: -12px;
  z-index: 9999;
}

.has-float-label {
  display: block;
  position: relative;
}

.has-float-label>small {
  position: absolute;
  left: 0;
  top: 0;
  cursor: text;
  font-size: 80%;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  top: -0.45em;
  left: 0.75rem;
  z-index: 3;
  line-height: 1;
  padding: 0 1px;
  background: #fafafa;
  font-weight: 600;
}

.intrn-donor {
  width: 100%;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.intrn-donor-ttl {
  margin: 0px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.00938em;
}

.intrn-donor-desc {
  margin: 0px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.00938em;
  font-size: 0.6em;
  font-style: italic;
}

.select-control {
  display: block;
  width: 215px;
  height: 42px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.tip-amt p {
  -webkit-box-pack: end;
  text-align: end;
  background-color: rgba(173, 172, 172, 0.2);
  padding: 0.3em;
  border-radius: 3px;
  flex-direction: row !important;
}

.any-special-bottam-text {
  color: #c1bbbb;
  font-size: calc(6px + 1vmin);
  font-weight: 500;
  margin-top: 2px;
}

.any-special-request {
  font-weight: 700;
}

.css-1p6jbpl {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  outline: 0px;
  margin: 0px;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  appearance: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.75;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
  min-width: 64px;
  padding: 3px 9px;
  border-radius: 4px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border: 1px solid rgba(25, 118, 210, 0.5);
  color: rgb(25, 118, 210);
}

.item-heading {
  color: #194ea0;
  font-size: large;
  font-size: 14px;
  font-weight: 600;
  margin: 0.4em 0;
  word-break: break-word;
}

.css-1rqadjs {
  height: 3em;
  width: 4em;
  margin-right: 0.5em;
}

.css-1b66l05 {
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 12px;
}

.packet-price {
  color: #000;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  padding-top: 0.4em;
}

.total-packet-amount {
  align-self: flex-start;
  font-size: 1.3em;
  font-weight: 600;
  justify-self: flex-end !important;
  margin-right: 1em;
  padding-top: 0 !important;
  text-align: right !important;
}

.blog-area.three {
  background-color: #fff;
}

.blog-area.three .blog-item {
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.blog-item {
  background-color: #fff;
  margin-bottom: 30px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.blog-item .top a {
  display: block;
}

.blog-item .top a img {
  width: 100%;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.blog-item .bottom {
  padding: 10px 18px 18px;
}

.blog-item .bottom ul {
  margin-bottom: 16px;
}

.blog-item .bottom ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 15px;
  font-size: 15px;
}

.blog-item .bottom ul li i {
  color: #ff6015;
  display: inline-block;
  margin-right: 3px;
  position: relative;
  top: -1px;
}

.blog-item .bottom ul li span {
  display: inline-block;
}

.blog-item .bottom h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-item .bottom h3 a {
  color: #302c51;
}

.blog-item .bottom p {
  margin-bottom: 12px;
}

.blog-item .bottom .blog-btn {
  display: inline-block;
  font-weight: 600;
  color: #ff6015;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: #624c25;
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  padding: 6px 15px 6px;
  transition: all 0.35s;
  overflow: hidden;
  border-radius: 5px;
  text-transform: capitalize;
  z-index: 1;
}

.thm-btn:hover:after,
.thm-btn:hover:before {
  left: 0;
}

.thm-btn:hover:after {
  transition-delay: 0.3s;
}

.thm-btn:after,
.thm-btn:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-color: #000;
  z-index: -1;
  transition: all 0.35s;
}

.updates-count {
  padding: 0;
  text-align: center;
  width: 22px;
  height: 22px;
  background-color: #1ca53a;
  font-weight: 400;
  border-radius: 50%;
  display: inline-block;
  font-size: 12px;
  color: #fff;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 21px;
}

/* .mission-form_button{
    padding: 10px;
} */
.mission-form_button button {
  border: 1px solid #624c25;
  width: 32.5%;
}

.mission-form_amountButton {
  background-color: #fff;
  color: #000;
  border: 0;
  border-radius: 4px;
  padding: 9px 10px;
  -webkit-box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
  cursor: pointer;
}

.mission-form_amountButton:hover {
  background-color: #624c25;
  color: #fff;
}

.mission-form_sectionHeading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: none;
  text-align: center;
}

.mission-form_amountInput {
  border: 1px solid #e4e4e4;
}

.mission-form_inputClass {
  padding: 8px 6px 8px 4px;
}

.mission-form_amountInput {
  width: 100%;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  color: #000;
  margin-top: 10px;
}

.amount-input_inputWrapper {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 4px;
  padding: 1px 10px;
}

.amount-input_amountInput {
  border: 0;
  padding: 6px 6px 6px 4px;
  background: transparent;
  width: 100%;
}

.tax-benefit {
  position: absolute;
  top: 0;
  right: 0;
  background: #664b29c7;
  font-weight: 500;
  font-size: 14px;
  padding: 2px 10px;
  z-index: 9;
  color: #fff;
  cursor: pointer;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  grid-gap: 4px;
  gap: 4px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 8px;
}

.tooltip {
  display: inline-block;
  position: relative;
  text-align: left;
}

.tooltip h3 {
  margin: 12px 0;
}

.tooltip .bottom {
  min-width: 200px;
  width: 100%;
  top: 30px;
  left: -80px;
  transform: translate(-50%, 0);
  padding: 15px;
  color: #666666;
  background-color: #fff;
  font-weight: normal;
  font-size: 12px;
  border-radius: 8px;
  position: absolute;
  z-index: 99999999;
  box-sizing: border-box;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  display: none;
}

.tooltip:hover .bottom {
  display: block;
}

.tooltip .bottom img {
  width: 400px;
}

.tooltip .bottom i {
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: 74px;
  width: 24px;
  height: 12px;
  overflow: hidden;
}

.tooltip .bottom i::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  transform: translate(-50%, 50%) rotate(45deg);
  background-color: #eeeeee;
  box-shadow: 0 0 white;
}

.tooltip .bottom p {
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
  color: #444;
  margin-bottom: 0;
}

.chat-on-whatsapp {
  display: block;
  position: fixed;
  z-index: 999;
  padding-right: 0;
  padding-bottom: 0;
  left: 5px;
  bottom: 60px;
}

.section-title_heading {
  border-left: 4px solid #ab8234;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
  justify-content: space-between;
  -moz-box-align: center;
  align-items: center;
  padding-left: 8px;
}

.section-title_heading h2 {
  color: #111;
  font-size: 22px;
  font-weight: 700;
  text-transform: none;
  margin: 0;
  position: relative;
  z-index: 2;
}

.advantages_advantages {
  padding: 25px 4% 0;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.advantages_advantage {
  padding: 30px 45px;
  margin-bottom: 35px;
  background-color: #e1f7fd82;
  border-radius: 12px;
  text-align: center;
}

.advantages_advantage {
  color: #423b7d;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.advantages_icon img {
  height: 60px;
}

.advantages_advantage h3 {
  color: #423b7d;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 15px;
  letter-spacing: 0;
}

.advantages_advantage p {
  margin: 15px 0 0;
  letter-spacing: 0;
  line-height: 17px;
}

.bg-1 {
  background: #00a89a !important;
}

.bg-2 {
  background: #ab8234 !important;
}

.br-btm {
  border-bottom: 1px dashed #ddd;
}

.campaign-updates {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 16px;
  display: -moz-box;
  display: flex;
  grid-gap: 8px;
  gap: 8px;
  -moz-box-align: center;
  align-items: center;
  color: #000;
}

.icns-sze {
  font-size: 22px;
  color: #664b29;
}

.icn-hi8 {
  color: #fff !important;
  margin-top: 8px !important;
  margin-right: 0px !important;
}

#loadMore {
  padding-bottom: 10px;
  padding-top: 10px;
  text-align: center;
  width: 100%;
}

#loadMore a {
  background: #624c25;
  border-radius: 3px;
  color: white;
  display: inline-block;
  padding: 10px 30px;
  transition: all 0.25s ease-out;
  -webkit-font-smoothing: antialiased;
}

#loadMore a:hover {
  background-color: #ab8234;
}

.hi8_450 {
  height: 450px;
  width: 100%;
}

.events-text-box strong {
  margin-bottom: 20px;
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.select2-container--default .select2-selection--single,
.select2-selection .select2-selection--single {
  border: 1px solid #d2d6de;
  border-radius: 0;
  padding: 6px 12px;
  height: 34px;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 10px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  padding-right: 0;
  height: auto;
  margin-top: -3px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single,
.select2-selection .select2-selection--single {
  border: 1px solid #d2d6de;
  border-radius: 0 !important;
  padding: 3px 12px;
  height: 42px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 2px !important;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px !important;
  padding-left: 5px !important;
  font-size: 1rem !important;
  color: #495057 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 39px !important;
}

.search-bar_searchBarContainer {
  width: 100%;
  position: relative;
}

.campaign-list_searchCampaignList {
  width: 100%;
  left: 0;
  right: 0;
  top: 90px;
  position: absolute;
  padding-top: 5px;
  margin: -30px auto auto;
  padding-left: 0;
  border-radius: 0 0 4px 4px;
  max-height: 350px;
  min-height: 140px;
  overflow: auto;
  background: #fff;
  z-index: 10;
  text-align: left;
  border: 2px solid #664b29;
}

.campaign-list_searchCampaignList li {
  list-style: none;
  min-height: 115px;
  border-bottom: 1px solid #ddd;
}

.campaign-list_searchCampaignList li a {
  padding: 15px;
  white-space: normal;
  text-decoration: none;
  display: -moz-box;
  display: flex;
  height: 100%;
  min-height: 115px;
}

.campaign-list_searchCampaignList li a .campaign-list_campaignsImg {
  min-width: 25%;
  height: auto;
  margin-right: 5px;
  margin-bottom: 5px;
}

.campaign-list_searchCampaignList li a .campaign-list_campaignsImg img {
  height: 125px;
  width: 235px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}

.campaign-list_campaignsDetail {
  margin-left: 15px;
  -moz-box-flex: 1;
  flex-grow: 1;
}

.campaign-list_searchCampaignList li a .campaign-list_campaignsName {
  font-size: 17px;
  display: block;
  color: #000;
  margin-bottom: 10px;
}

.campaign-list_searchCampaignList li a .campaign-list_campaignsBy {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #666;
  padding-bottom: 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.search-bar_searchTextClear {
  position: absolute;
  top: 21px;
  z-index: 11;
  right: 70px;
  cursor: pointer;
}

.page-title-wrapper {
  padding-top: 60px;
}

.fb {
  background: #4267b2;
}

.tw {
  background: #00acee;
}

.insta {
  background: #f09433;
  background: -moz-linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  background: -webkit-linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

.yt {
  background: #ff0000;
}

.abs {
  position: absolute;
  bottom: 10px;
  width: 100%;
  padding-right: 50px;
}

.br_rad {
  border-radius: 30px;
}

@keyframes progress {
  0% {
    --percentage: 0;
  }

  100% {
    --percentage: var(--value);
  }
}

@property --percentage {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

[role="progressbar"] {
  --percentage: var(--value);
  --primary: #624c25;
  --secondary: #9e9e9e42;
  --size: 55px;
  animation: progress 2s 0.5s forwards;
  width: 55px;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

[role="progressbar"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(var(--primary) calc(var(--percentage) * 1%),
      var(--secondary) 0);
  mask: radial-gradient(white 55%, transparent 0);
  mask-mode: alpha;
  -webkit-mask: radial-gradient(#0000 58%, #000 0);
  -webkit-mask-mode: alpha;
}

[role="progressbar"]::after {
  counter-reset: percentage var(--value);
  content: counter(percentage) "%";
  font-size: 14px;
  color: var(--primary);
}

.lm {
  left: 20px !important;
}

.faq-wrapper-area a {
  color: #624c25;
  font-weight: 600;
}

.main-header__btn {
  background: #28a745;
}

.blog-item .top a img {
  height: 250px;
}

.slick-track {
  margin-left: auto;
  margin-right: auto;
}

.fa-facebook-f:before {
  content: "\f39e";
  line-height: 35px;
}

.fa-twitter:before {
  content: "\f099";
  line-height: 35px;
}

.fa-youtube:before {
  content: "\f167";
  line-height: 35px;
}

.fa-instagram:before {
  content: "\f16d";
  line-height: 35px;
}

.main-header-area {
  border-bottom: 1px solid #dddddd52;
}

.main-header-area .quote-btn a i {
  color: #fff;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #ab8234 !important;
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid #ddd;
}

.dropdown-menu {
  padding: 0;
}

.closes {
  float: right;
  padding-left: 7px;
  padding-top: 6px;
  border-radius: 10px;
  top: -8px;
  opacity: 1;
  right: -10px;
  position: absolute;
  background: #664b29 !important;
  color: #fff;
  font-size: 14px;
  line-height: 4px;
  height: 20px;
  width: 21px;
  cursor: pointer;
}

.tooltips {
  text-decoration: none;
}

.tooltips:hover {
  position: relative;
}

.tooltips span {
  display: none;
}

.tooltips:hover span {
  text-align: center;
  width: 60px;
  top: 5px;
  left: 0;
  padding: 6px;
  color: #666666;
  background-color: #fff;
  font-weight: 500;
  font-size: 14px;
  margin: 5px;
  border-radius: 10px;
  position: absolute;
  z-index: 99999999;
  box-sizing: border-box;
  box-shadow: 0 1px 8px rgb(0 0 0 / 50%);
  display: block;
}

.payment-options_imageWrapper img {
  width: 48px;
  height: 48px;
}

.at-resp-share-element.at-mobile .at-share-btn {
  margin-right: 10px !important;
}

.at-resp-share-element .at-share-btn {
  margin: 0 5px 5px !important;
}

.botm {
  position: relative;
  bottom: 25px;
}

.sticky-donation-bag_donationBagWrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(68, 72, 74, 0.9);
  text-align: center;
  padding: 0 12px;
}

.sticky-donation-bag_donationBag {
  padding: 6px 0 2px;
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  max-width: 500px;
  margin: auto;
}

.sticky-donation-bag_amountInput {
  width: 45%;
  border: 0;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
  color: #000;
}

.sticky-donation-bag_inputClass {
  padding: 7px 0 6px 2px;
}

.amount-input_amountInput {
  border: 0;
  padding: 10px 5px;
  background: transparent;
  width: 100%;
}

.sticky-donation-bag_donateBtn {
  background: linear-gradient(45deg, #664b29, #b2813d);
  padding: 7px 8px 6px;
  border: 0;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 5px;
  margin-left: 16px;
  -moz-box-flex: 1;
  flex-grow: 1;
}

.gndr-br {
  border: 1px solid #ddd;
  height: 50px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.br-btm {
  margin-left: 5px;
  border-bottom: 1px dashed #ddd;
}

.at-style-responsive .at-share-btn {
  padding: 2px 3px 2px !important;
}

.at-resp-share-element .at-share-btn:focus,
.at-resp-share-element .at-share-btn:hover {
  transform: translateY(0px) !important;
}

.at-resp-share-element .at-share-btn .at-label {
  text-transform: uppercase !important;
  font-size: 14px !important;
}

.thumb-upload {
  position: relative;
}

.thumb-edit {
  position: absolute;
  top: 35px;
  right: 75px;
  z-index: 1;
}

.thumb-edit input {
  opacity: 0;
  width: 30px;
  height: 30px;
  padding: 0;
  left: 0;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}

.thumb-edit input+label {
  width: 30px;
  height: 30px;
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 100%;
  background: #ffffff;
  border: 1px solid transparent;
  -webkit-box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 15%);
  box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 15%);
  border: 1px solid #eeeeee;
  cursor: pointer;
  font-weight: normal;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.loader-hi8 {
  height: 1125px;
}

.blogs {
  padding: 10px;
  border: 1px solid #ddd;
}

.blog {
  padding: 20px;
}

.standard-right-area {
  position: relative;
  overflow: hidden;
  margin: 0px 0 15px;
  padding: 30px 30px 30px;
  box-shadow: 0 0 12px 0 rgb(32 46 60 / 6%);
}

.widget_tag_cloud .tagcloud a {
  position: relative;
  border: 1px solid #e1e1e1;
  padding: 6px 12px;
  display: inline-block;
  margin: 0 12px 12px 0;
  font-size: 16px;
  color: inherit;
  line-height: 1.4;
  border-radius: 30px;
}

.widget_tag_cloud .tagcloud a:hover {
  background-color: #624c25;
  border-color: #624c25;
  box-shadow: 0px 0px 20px 0px rgb(102 75 41 / 22%);
  color: #fff;
}

.brt {
  border-top: 0;
}

.tags p {
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.missions-panel-box {
  background-image: url(../img/missions-bg-desktop.jpg);
  height: 100%;
}

.card-inner-content {
  padding-top: 1rem;
  padding-right: 1rem;
  padding-left: 1rem;
}

.card-process-wrapper-content {
  padding-top: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
}

.hide-for-desktop {
  display: none;
}

.hide-for-mobile {
  display: block;
}

.missions-panel-right-icons {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  height: 100px;
  /* margin: 10px; */
  padding: 8px;
  box-shadow: 0 0 12px #00000021;
  border-radius: 50px;
}

.login-or {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgb(0 0 0 / 56%);
  line-height: 0.1em;
  margin: 1.25em 0px;
}

.or-css {
  background: rgb(255, 255, 255);
  padding: 0px 10px;
}

.new-login {
  display: flex;
  flex-direction: column;
  margin-top: 2em;
  width: 100%;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  align-items: stretch;
}

.btn.btn-radius {
  border-radius: 5px;
}

.btn.btn-theme {
  background: #664b29;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 550;
  text-transform: uppercase;
}

.btn.btn-theme-1 {
  border: 2px solid #001837;
  color: #000 !important;
  font-size: 14px;
  font-weight: 550;
  text-transform: uppercase;
}

.btn.btn-theme:hover {
  background: #202125;
}

.btn.btn-theme-2 {
  border: 2px solid #664b29;
  color: #000 !important;
  font-size: 14px;
  font-weight: 550;
  text-transform: uppercase;
}

.w-100 {
  width: 100%;
}

.bg-lights {
  background: #faefe7 !important;
}

.donate_alert .modal-header
{
  display:flex;
  justify-content: end;
  border-bottom:0;
  background: #fff;
}
.donate_alert .modal-content{
  box-shadow:0 !important;
  z-index: 1051;
}
.donate_alert .modal-body{
  background:#fff !important;
  padding:40px;
}
.donate_alert .modal-body .donate_alert_img{
  display: block;
  margin: auto;
  width: 50%;
  text-align: center;
}
.donate_alert .modal-content .modal-header .btn-light{
  background:#fff;
  border:0;
}
.frm_rad {
  border-radius: 5px;
}

.frm_rds {
  border-radius: 25px;
}

.cmpn_name {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  padding: 6px;
  font-weight: 600;
}

.transperancy-container {
  box-sizing: border-box;
  padding: 20px 100px;
  width: 100%;
}

.transperancy-wrapper {
  border-radius: 20px;
}

.transperancy-heading {
  font-size: 25px;
  font-weight: 400;
  padding: 40px 10px 30px;
  text-transform: capitalize;
}

.transperancy-image-container {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px 0 80px;
}

.transperancy-image-wrapper:first-child {
  margin-right: 20px;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}

.transperancy-image {
  width: 100%;
}

.image-text {
  font-size: 24px;
  margin-top: 10px;
}

.transperancy-image-wrapper:last-child {
  margin-left: 20px;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}

.transperancy-image-wrapper {
  background-color: #fff;
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.3);
  height: 285px;
  padding: 20px;
  width: 250px;
}

.team-block-one .inner-box {
  position: relative;
  display: block;
  padding: 0 8px;
}

.team-block-one .inner-box .image-box img {
  width: 100%;
  transition: all 500ms ease;
  background-color: #ffffff;
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
  border-radius: 100%;
  padding: 10px;
}

.team-block-one .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 10px;
  width: 100px;
  margin: 0 auto;
}

.team-block-one .inner-box .lower-content {
  position: relative;
  text-align: center;
  padding-top: 10px;
}

.team-block-one .inner-box .lower-content p {
  font-size: 16px;
}

.brdr {
  border: 1px solid rgb(228 228 228 / 40%);
  box-shadow: inset 0 0 14px #0000000f;
}

.testimonial-item__content {
  padding: 20px;
}

.testimonial-item__content p {
  font-size: 16px;
  line-height: 1.5;
}

.vdo-btn {
  vertical-align: super;
  appearance: none;
  text-decoration: none;
  line-height: 1.5;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
  min-width: 64px;
  padding: 5px 5px 3px;
  border-radius: 8px;
  font-size: 0.7em !important;
}

.pst {
  position: absolute;
  right: 30px;
  /* top: 0px; */
  margin-top: -50px;
  text-align: right;
}

.rs-single-shop .single-price-info .product-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 12px;
}

.rs-single-shop .single-price-info .single-price {
  color: #ffb703;
  font-weight: 600;
}

.rs-single-shop .single-price-info .some-text {
  margin: 10px 0 25px;
  line-height: 1.8;
}

.rs-single-shop .single-price-info form {
  margin-bottom: 30px;
}

.rs-single-shop .single-price-info form input {
  height: 40px;
  width: 70px;
  line-height: 40px;
  text-align: center;
  padding-left: 10px;
  border: 1px solid rgba(54, 54, 54, 0.1);
  outline: none;
}

.add-btn.carts {
  text-transform: capitalize;
}

.ml-10 {
  margin-left: 10px;
}

.add-btn {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: all 0.4s;
  padding: 8px 33px;
  font-size: 16px;
  font-weight: 500;
  background: #664b29;
  color: #fff;
  text-transform: uppercase;
  border: none;
}

.rs-single-shop .single-price-info p.category {
  margin: 0;
  padding-top: 25px;
  border-top: 1px solid #e6e6e6;
  font-size: 14px;
}

.rs-single-shop .single-price-info p.category span {
  font-weight: 700;
  padding-right: 10px;
}

.rs-single-shop .single-price-info p.category a {
  color: white;
  font-size: 13px;
  font-weight: 550;
  text-transform: uppercase;
  background: #b3813d;
  border-radius: 5px;
  padding: 5px 11px;
  display: inline-block;
  line-height: 1;
  margin-bottom: 15px;
  transition: all 0.3s ease-in;
}

.images-single {
  margin-bottom: 15px;
}

.thm-bg {
  background: #faefe7;
  border-radius: 8px;
}

.mtt {
  margin-top: 10px;
}

.br-right {
  border-right: 1px solid #e5edf7;
}

.why-heading {
  margin-bottom: 15px;
  padding: 0;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
}

.why-heading:before {
  content: "";
  position: absolute;
  top: auto;
  height: 4px;
  width: 70px;
  background: #664b29;
  bottom: -3px;
  right: 0;
  left: 0;
}

.fnfm {
  line-height: 25px;
  font-weight: 400;
  font-style: normal;
  color: #000;
  text-align: justify;
}

.donation_card {
  position: relative;
  margin-top: -100px;
  margin-bottom: 30px;
}

.donation_card .donation_box {
  background-color: azure;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 3px;
  padding: 30px;
  border-radius: 30px;
  position: relative;
}

.donation_card .donation_box .title {
  color: #000;
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 600;
}

.donation_card .donation_box .price_area {
  display: flex;
  align-items: center;
}

.donation_card .donation_box .price_area .amount {
  color: #ab8234;
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 700;
}

.donation_card .donation_box .price_area .amount i {
  font-weight: 600;
  font-size: 22px;
  margin-right: 2px;
}

.donation_card .donation_box .price_area .tag {
  font-size: 18px;
  margin-bottom: 0;
  color: #333;
  margin-left: 7px;
  font-weight: 500;
}

.donation_card .donation_box .donator_area {
  display: flex;
  align-items: center;
  justify-content: end;
}

.donation_card .donation_box .donator_area .icon {
  font-weight: 600;
  font-size: 24px;
  color: #ab8234;
  margin-right: 7px;
  margin-bottom: 0;
}

.donation_card .donation_box .donator_area .count {
  margin-bottom: 0;
  margin-right: 7px;
  color: #ab8234;
  font-size: 26px;
}

.donation_card .donation_box .donator_area .text {
  font-size: 20px;
  color: #333;
  margin: 0;
}

.donation_card .donation_box .fundraiser {
  margin-top: 20px;
}

.donation_card .donation_box .fundraiser .title {
  color: #333;
  font-size: 18px;
  margin-bottom: 2px;
  font-weight: 600;
}

.donation_card .donation_box .fundraiser .text {
  font-size: 15px;
  color: #333;
  margin-bottom: 0;
  font-weight: 400;
}

.donation_card .donation_box .tax_bnft {
  background-color: green;
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
  padding: 4px 20px;
  border-radius: 0 30px 0 30px;
  top: 0;
  right: 0;
  position: absolute;
}

.donation_card .donation_box .fund_social {
  margin-top: 30px;
}

.campaign_detail_section {
  position: relative;
  margin-bottom: 30px;
}

.campaign_area .campaign_card {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 3px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.campaign_area .scroll_col {
  overflow-y: auto;
}
.campaign_area .sticky_card {
  position: -webkit-sticky;
  position: sticky;
  top: 92px;
  z-index: 99;
}

.campaign_area .campaign_card .target_count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.campaign_area .campaign_card .target_count h6 {
  color: #ab8234;
  margin: 0;
  font-size: 18px;
}

.campaign_area .campaign_card .target_count a {
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
}
.cash_product{
  position: relative;
  box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
  padding: 15px 15px 5px;
}
.cash_product .blog-author .price{
  font-weight: 500;
}
.cash_product img{
  width: 100%;
}
.campaign_area .campaign_card .progress {
  height: 5px;
  margin-bottom: 20px;
}

.campaign_area .campaign_card .progress .progress-bar {
  background-color: #664b29;
}
.campaign_area .campaign_card .progress .progress-bar[role="progressbar"]::before{
  content: none;
}
.campaign_area .campaign_card .progress .progress-bar[role="progressbar"]::after{
  content: none;
}
.campaign_area .campaign_card .stats{
  margin-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 15px;
  font-size: 16px;
  color: #000;
  font-weight: 500;
}
.campaign_area .campaign_card .title {
  font-size: 22px;
  color: #000;
  margin-bottom:10px;
  font-weight: 600;
}

.campaign_area .campaign_card figure {
  margin-bottom: 20px;
}

.campaign_area .campaign_card img {
  width: 100%;
  height:100%;
  min-height: 75px;
  border-radius: 7px;
  margin-bottom: 5px;
}

.campaign_area .campaign_card .campaign_detail {
  text-align: justify;
}

.campaign_area .campaign_card .campaign_detail p {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 24px;
  color: #000;
}

.campaign_area .campaign_card .nav.nav-pills {
  background-color: aliceblue;
  padding: 4px;
  border-radius: 7px;
}

.campaign_area .campaign_card .nav.nav-pills .nav-item {
  width: 50%;
}

.campaign_area .campaign_card .nav.nav-pills .nav-item .nav-link {
  font-weight: 600;
  text-align: center;
}

.campaign_area .campaign_card .tab-content {
  padding: 20px 10px 0;
}

.campaign_area .campaign_card .tab-content .name {
  margin-bottom: 0;
  font-size: 14.5px;
  font-weight: 500;
  color: #333;
}

.campaign_area .campaign_card .tab-content .amount {
  margin-bottom: 0;
  font-weight: 600;
  color: #ab8234;
  font-size: 18px;
}

.campaign_area .campaign_card .tab-content .amount i {
  font-weight: 500;
  font-size: 16px;
}

.campaign_area .campaign_card .subtitle {
  color: #ab8234;
}

.campaign_area .campaign_card .price_calculation {
  margin-top: 20px;
}

.campaign_area .campaign_card .price_calculation .price_tab_list {
  display: flex;
  justify-content: space-between;
  column-gap: 7px;
  margin-bottom: 20px;
}

.campaign_area .campaign_card .price_calculation .price_tab_list .price_tab {
  cursor: pointer;
  padding: 10px;
  background-color: #e7e7e7;
  width: 100%;
  border-radius: 7px;
  color: #000;
  text-align: center;
  font-weight: 600;
  font-size: 17px;
}

.campaign_area .campaign_card .price_calculation .price_tab_list .price_tab i {
  font-size: 15px;
  font-weight: 500;
  margin-right: 2px;
}

.campaign_area .campaign_card .price_calculation .price_tab_list .price_tab.active {
  background-color: #664b29;
  color: #fff;
}

.campaign_area .campaign_card .price_calculation .form-control {
  padding: 30px 20px;
  border-radius: 10px;
  font-size: 20px;
  color: #000;
  font-weight: 500;
}

.campaign_area .campaign_card .price_calculation .form-control:focus {
  border-color: #000;
}

.campaign_area .campaign_card .price_calculation .form-label {
  font-weight: 500;
  color: #333;
  cursor: auto;
  font-size: 14px;
}

.campaign_area .campaign_card .price_calculation .donate_btn {
  width: 100%;
  padding: 15px;
  font-weight: 600;
  border: 0;
  border-radius: 4px;
  background-color: #664b29;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
}
.now_donate{
  background-color: #664b29 !important;
}
.row_scroll{
  overflow-x: scroll;
}
.row_scroll::-webkit-scrollbar{
  display: none;
}
.campaign_area .campaign_tabs{
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 0;
}
.campaign_area .campaign_tabs .nav-item{
  flex: 1;
  text-align: center;
}
.campaign_area .campaign_tabs .nav-item .nav-link{
  border: 0;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 5px solid #d3d3d3;
  padding: 15px 0;
  color: #666;
  text-wrap: nowrap;
  background-color: #fff;
}
.campaign_area .campaign_tabs .nav-item .nav-link.active{
  font-weight: 600;
  border-color: #624c25 !important;
  color: #000;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cash_model .modal-content {
  padding: 10px;
  border-radius: 2px;
  background: #664b29 !important;
  position: relative;
  color: #fff;
  box-shadow: none !important;
  border: 1px solid #664b29 !important;
}

.cash_model .form-group label {
  color: #fff;
  margin-bottom: 4px;
}

.cash_model .modal-content .close_btn {
  position: absolute;
  top: -5px;
  right: -5px;
  border: 0;
  color: #fff;
  background-color: #000;
  padding: 1px 10px;
  border-radius: 2px;
  font-size: 12px;
  cursor: pointer;
}

.cash_model .modal-content .submit_btn {
  width: 100%;
  padding: 10px;
  font-weight: 600;
  border: 0;
  border-radius: 0;
  background-color: #dda438;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
}

@media (max-width: 576px) {
  .donation_card .donation_box {
    padding: 45px 20px 30px;
  }

  .container {
    padding-right: 10px;
    padding-left: 10px;
  }

  .donation_card {
    margin-top: 20px;
  }

  .donation_card .donation_box .title {
    font-size: 18px;
  }

  .donation_card .donation_box .price_area .amount {
    font-size: 18px;
  }

  .donation_card .donation_box .price_area .amount i {
    font-size: 18px;
  }

  .donation_card .donation_box .price_area .tag {
    font-size: 16px;
  }

  .donation_card .donation_box .donator_area .icon {
    font-size: 18px;
  }

  .donation_card .donation_box .donator_area .count {
    font-size: 18px;
  }

  .donation_card .donation_box .donator_area .text {
    font-size: 16px;
  }

  .donation_card .donation_box .fundraiser .title {
    font-size: 16px;
  }

  .donation_card .donation_box .fund_social {
    margin-top: 15px;
  }

  .campaign_area .campaign_card .title {
    font-size: 18px;
  }

  .campaign_area .campaign_card .title {
    margin-bottom: 20px;
  }

  .campaign_area .campaign_card .nav.nav-pills .nav-item .nav-link {
    font-size: 14px;
  }
  .campaign_area .campaign_card iframe{
    display: block;
    object-fit: contain;
    max-width: 330px !important;
    height: auto !important;
}
  .campaign_area .campaign_card .subtitle {
    font-size: 18px;
  }

  .campaign_area .campaign_card .price_calculation .price_tab_list .price_tab {
    font-size: 12px;
    padding:5px; 
  }

  .campaign_area .campaign_card .price_calculation .form-control {
    font-size: 18px;
  }

  .campaign_area .scroll_col {
    overflow: auto;
  }

  .campaign_area .sticky_card {
    /* position: relative;
    top: auto; */
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
    z-index: 99;
  }
}
#order_summary .cart-controls button {
  background: #664b29;
  color: #fff;
  border: none;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
}
.theme_btn_mob {
  background: #664b29;
  color: #fff;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.donation-buttons{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.input-wrapper{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 8px;
  max-width: 812px;
  max-height: 32px;
}
.input-wrapper .table-input-icon {
  color: #202022;
  position: absolute;
  right: 10px;
  top: 0px;
  cursor: pointer;
}
.att-drop {
  height: 30px;
  line-height: 30px;
  width: 50%;
  border-radius: 100%;
  cursor: pointer;
}

.att-drop button {
  border: 0;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
}
.border-top{
  border-top:1px solid #333;
}
.nav .nav-item .custom-link{
  display: block;
  overflow: hidden;
  color: white !important;
  background: #624c25;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 11px 15px 11px 15px;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  letter-spacing: 1px;
  margin-bottom:5px;
}
.nav .nav-item .custom-link:hover{
  background:aliceblue;
  color: #333 !important;
}
.nav .nav-item .custom-link.active{
  background:aliceblue;
  color: #333 !important;
}