/*Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Noto+Sans:wght@300;400;500;600&family=Oxygen:wght@300;400;700&display=swap');
/*global variable*/
/*global area*/
/*----------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 18px;
  color: #414b56;
  font-family: "Oxygen", "Noto Sans", serif;
  background-color: #fff;
  line-height: 1.5;
  -moz-osx-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  line-height:2;
}

.container {
  max-width: 1170px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Libre Baskerville", serif;
  font-size: 38px;
  color: #414b56;
  font-weight: 700;
  margin: 0;
}

p {
  font-size: 18px;
  margin: 0;
}

ol,
ul {
  padding-left: 0;
}

.ul-li ul {
  margin: 0;
  padding: 0;
}

.ul-li ul li {
  list-style: none;
  display: inline-block;
}

[data-background] {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

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

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
}

.form-control:focus,
button:visited,
button.active,
button:hover,
button:focus,
input:visited,
input.active,
input:hover,
input:focus,
textarea:hover,
textarea:focus,
a:hover,
a:focus,
a:visited,
a.active,
select,
select:hover,
select:focus,
select:visited {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
}

.scroll-top {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #7865ff;
  width: 50px;
  height: 50px;
  color: #fff;
  bottom: 50px;
  right: 50px;
  -webkit-box-shadow: 0 24px 36px 0 rgb(229 40 32 / 44%);
  box-shadow: 0 24px 36px 0 rgb(229 40 32 / 44%);
  border-radius: 7px;
  cursor: pointer;
  z-index: 10;
}

.scroll-top i {
  -webkit-animation: bounce 2s ease infinite;
  animation: bounce 2s ease infinite;
}

@-webkit-keyframes bounce {
  0%,
  10%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  10%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

/*** Start Top Header ***/
.top-header {
  height: 150px;
  padding-top: 30px;
  overflow: hidden;
}

.top-header .top-header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-header .top-header-left div {
  color: #717171;
  position: relative;
  margin-right: 20px;
  color: #414b56;
}

.top-header .top-header-left div:last-child {
  margin-right: 0px;
}

.top-header .top-header-left div:after {
  /*content: "";*/
  right: -15px;
  width: 1px;
  height: 26px;
  position: absolute;
  background-color: #717171;
}

.top-header .top-header-left div:last-child:after {
  background-color: transparent;
}

.top-header .top-header-left div i {
  color: #414b56;
  margin-right: 2px;
}

.top-header-2 {
  position: relative;
  padding-top: 0;
  height: 40px;
  line-height: 40px;
}

.top-header-2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #7865ff;
  z-index: -1;
}

.top-header-2::after {
  /*content: "";*/
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0;
  right: -15px;
  background-color: #0beafb;
  border-left: 10px solid #fff;
  z-index: -1;
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

.top-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-header-inner .top-header-left div {
  color: #fff;
}

.top-header-inner .top-header-left div:after {
  top: 10px;
  background-color: #fff;
}

.top-header-inner .top-header-left div i {
  color: #fff;
}

.top-header-inner .top-header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.top-header-inner .top-header-right h3 {
  font-size: 18px;
  font-weight: 500;
}

/*** End Top Header ***/
/* Start Sticky */
.main-header {
  position: relative;
}

.main-header.sticky-on {
  top: 0;
  width: 100%;
  z-index: 20;
  position: fixed;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  background-color: #7865ff;
  -webkit-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  padding: 0px 0 15px 0;
}

.main-header.sticky-on .top-header {
 font-size: 12px;
}

.main-header.sticky-on .menu-header .main-menu {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0;
}

.main-header.sticky-on .navigation-main-area .dropdown .dropdown-menu {
  top: 60px;
}

.main-header-2.sticky-on {
  background-color: #fff;
}

.main-header-2.sticky-on .main-menu-2 {
  border-bottom: 0;
}

/* End Sticky */
/*** Start Main Header ***/
.menu-header .container {
  position: relative;
}

.menu-header .main-menu {
  position: absolute;
  z-index: 10;
  width: 100%;
  background-color: #7865ff;
  padding: 26px 60px;
  top: 85px;
  left: 0;
}

.main-header .main-menu-2 {
  top: 0;
  background-color: transparent;
  padding: 30px 0px;
  border-bottom: 1px solid #d4d4d4;
}

.main-header .main-menu-2 .navigation-main-area li a {
  color: #7865ff;
}

.main-header .main-menu-2 .navigation-main-area .dropdown .dropdown-menu {
  top: 60px;
}

.main-header .main-menu-2 .mobile_menu .mobile_menu_button {
  color: #7865ff;
}

/* Start Navigation area */
.navigation-main-area {
  text-align: right;
}

.navigation-main-area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 32px;
  column-gap: 20px;
}

.navigation-main-area li a {
  color: #fff;
  font-size: 18px;
  /*font-weight: 500;*/
  text-transform: capitalize;
}

.navigation-main-area li a:hover {
  color: #0beafb;
}

.navigation-main-area .dropdown {
  position: relative;
}

.navigation-main-area .dropdown .dropdown-menu {
  top: 76px;
  left: 0;
  opacity: 0;
  z-index: 5;
  margin: 0;
  padding: 0;
  height: auto;
  width: 250px;
  border: none;
  display: block;
  border-radius: 5px;
  /*overflow: hidden;*/
  visibility: hidden;
  position: absolute;
  background-clip: inherit;
  background-color: #7865ff;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.3s ease-in-out 0.3s;
  transition: all 0.3s ease-in-out 0.3s;
  -webkit-box-shadow: 0 5px 10px 0 rgba(83, 82, 82, 0.1);
  box-shadow: 0 5px 10px 0 rgba(83, 82, 82, 0.1);
}

.navigation-main-area .dropdown .dropdown-menu li {
  width: 100%;
  margin-left: 0;
  /*border-bottom: 1px solid #e5e5e5;*/
}

.navigation-main-area .dropdown .dropdown-menu li:hover a {
  /*padding-left: 40px;*/
}

.navigation-main-area .dropdown .dropdown-menu li:hover a::before {
  /*opacity: 1;*/
  /*-webkit-transform: translateX(25px);*/
  /*transform: translateX(25px);*/
}

.navigation-main-area .dropdown .dropdown-menu li a {
  width: 100%;
  color: #ffffff;
  display: block;
  font-size: 18px;
  padding: 10px 25px;
  position: relative;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.navigation-main-area .dropdown .dropdown-menu li a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 1px;
  opacity: 0;
  background-color: #7865ff;
  -webkit-transform: translateX(15px);
  transform: translateX(15px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navigation-main-area .dropdown .dropdown-menu li a:hover {
    background-color: #ffffff;
    color: #7865ff;
}

.navigation-main-area .dropdown .dropdown-menu li:last-child {
  border-bottom: none;
}

.navigation-main-area .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/*Mobile Menu */
/*-------------------*/
.mobile_menu_content {
  top: 0;
  bottom: 0;
  left: -350px;
  height: 100vh;
  z-index: 101;
  position: fixed;
  width: 310px;
  overflow-y: scroll;
  background-color: #191918;
  padding: 20px 35px 35px 35px;
  -webkit-box-shadow: 0 3px 5px rgba(100, 100, 100, 0.19);
  box-shadow: 0 3px 5px rgba(100, 100, 100, 0.19);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  display: flex;
    flex-flow: column;
}

.mobile_menu_content .mobile-main-navigation {
  width: 100%;
}

.mobile_menu_content .mobile-main-navigation .navbar-nav {
  width: 100%;
  margin-bottom: 30px;
}

.mobile_menu_content .dropdown:after {
  display: none;
}

.mobile_menu_content2 .dropdown:after {
  display: block;
}

.mobile_menu_content .navbar-nav .dropdown-menu {
  position: static !important;
  -webkit-transform: none !important;
  transform: none !important;
}

.mobile_menu_content .mobile-main-navigation .navbar-nav li {
  width: 100%;
  display: block;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.mobile_menu_content .mobile-main-navigation .navbar-nav li a {
  width: 100%;
  color: #fff;
  display: block;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  padding: 10px 30px 10px 0;
  border-bottom: 1px solid rgba(245, 245, 245, 0.17);
}

.mobile_menu_content .m-brand-logo {
  width: 150px;
  margin-bottom: 50px;
}

.mobile_menu_wrap.mobile_menu_on .mobile_menu_content {
  left: 0;
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}

.mobile_menu_overlay {
  top: 0;
  width: 100%;
  position: fixed;
  z-index: 100;
  right: 0;
  height: 120vh;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.mobile_menu_overlay_on {
  overflow: hidden;
}

.mobile_menu_wrap.mobile_menu_on .mobile_menu_overlay {
  opacity: 1;
  visibility: visible;
}

.mobile_menu_button {
  color: #fff;
  display: none;
  cursor: pointer;
  font-size: 30px;
  line-height: 0px;
  text-align: right;
}

.mobile_menu .mobile-main-navigation .navbar-nav li a:after {
  display: none;
}

.mobile_menu .mobile-main-navigation .dropdown > .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.mobile_menu
  .mobile_menu_content
  .mobile-main-navigation
  .navbar-nav
  .dropdown-menu {
  border: none;
  display: none;
  -webkit-transition: none;
  transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 5px 0px;
  width: 100%;
  background-color: transparent;
}

.mobile_menu
  .mobile_menu_content
  .mobile-main-navigation
  .navbar-nav
  .dropdown-menu
  li {
  border: none;
  padding: 0 10px;
  line-height: 1;
}

.mobile_menu
  .mobile_menu_content
  .mobile-main-navigation
  .navbar-nav
  .dropdown-menu
  li:hover {
  background-color: transparent;
}

.mobile_menu
  .mobile_menu_content
  .mobile-main-navigation
  .navbar-nav
  .dropdown-menu
  li
  a {
  color: #fff !important;
}

.mobile_menu
  .mobile_menu_content
  .mobile-main-navigation
  .navbar-nav
  .dropdown-menu
  li
  a:hover {
  color: #e25645;
  background-color: transparent;
}

.mobile_menu .dropdown {
  position: relative;
}

.mobile_menu .dropdown .dropdown-btn {
  color: #9397a7;
  position: absolute;
  top: 3px;
  right: 0;
  height: 30px;
  padding: 5px 10px;
}

.mobile_menu .dropdown .dropdown-btn.toggle-open {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile_menu .mobile_menu_close {
  color: #d60606;
  cursor: pointer;
  top: 25px;
  right: 25px;
  font-size: 20px;
  position: absolute;
}

/* 
===============================
Start Button Design
===============================
*/
.thm-btn a {
  font-family: "Oxygen", "Noto Sans", serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  width: 123px;
  height: 46px;
  background-color: #7865ff;
  display: inline-block;
  border-radius: 3px;
  text-align: center;
  line-height: 46px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.thm-btn a:hover {
  background-color: #0beafb;
  color: #414b56 !important;
}

.causes-btn a {
  font-family: "Oxygen", "Noto Sans", serif;
  font-size: 16px;
  color: #fff;
  width: 138px;
  font-weight: 700;
  height: 55px;
  background-color: #7865ff;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  line-height: 55px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.causes-btn a:hover {
  background-color: #0beafb;
  color: #414b56;
}

.donate_btn {
  font-family: "Oxygen", "Noto Sans", serif;
  font-size: 16px;
  color: #ffffff !important;
  width: 134px;
  font-weight: 600;
  height: 50px;
  background-color: #0beafb;
  border: 1px solid #0beafb;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  line-height: 50px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.donate_btn.donate_btn_2 {
    background-color: #fff;
    color: #7865ff !important;
    border: 2px solid #7865ff;
}

.donate_btn.donate_btn_2:hover {
  border: 1px solid #7865ff;
}

.donate_btn:hover {
  background-color: #7865ff;
  color: #fff !important;
  border: 1px solid #fff;
}

.donate_btn-2 {
  font-family: "Oxygen", "Noto Sans", serif;
  font-size: 16px;
  color: #fff;
  width: 160px;
  font-weight: 600;
  height: 60px;
  background-color: #7865ff;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  line-height: 60px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.donate_btn-2:hover {
  background-color: #0beafb;
  color: #414b56 !important;
}

.p_tag_btn {
  display: block;
  width: 132px;
  height: 40px;
  background-color: #7865ff;
  text-align: center;
  line-height: 40px;
  border-radius: 3px;
  text-transform: capitalize;
  font-weight: 600;
  color: #fff !important;
}

.categories_btn {
  display: block;
  width: 114px;
  height: 40px;
  background-color: #7865ff;
  text-align: center;
  line-height: 40px;
  border-radius: 3px;
  text-transform: capitalize;
  font-weight: 600;
  color: #fff !important;
}

.latest_news_btn {
  display: block;
  width: 127px;
  height: 40px;
  background-color: #7865ff;
  text-align: center;
  line-height: 40px;
  border-radius: 3px;
  text-transform: capitalize;
  font-weight: 600;
  color: #fff !important;
}

.help_btn {
  display: block;
  width: 136px;
  height: 40px;
  background-color: #7865ff;
  text-align: center;
  line-height: 40px;
  border-radius: 3px;
  text-transform: capitalize;
  font-weight: 600;
  color: #fff !important;
}

.contact_btn {
  display: block;
  width: 117px;
  height: 47px;
  background-color: #7865ff;
  text-align: center;
  line-height: 47px;
  border-radius: 3px;
  text-transform: capitalize;
  font-weight: 600;
  color: #fff !important;
}

.volunteer_btn {
  display: block;
  width: 184px;
  height: 44px;
  background-color: #0beafb;
  text-align: center;
  line-height: 44px;
  border-radius: 3px;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
  color: #fff !important;
}

.form-btn {
  display: block;
  width: 193px;
  height: 68px;
  background-color: #7865ff;
  text-align: center;
  line-height: 68px;
  border-radius: 6px;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.form-btn:hover {
  background-color: #0beafb;
  color: #414b56 !important;
}

.read_btn {
  display: block;
  width: 129px;
  height: 42px;
  background-color: #7865ff;
  text-align: center;
  line-height: 42px;
  border-radius: 5px;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
  color: #fff !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.read_btn:hover {
  background-color: #0beafb;
  color: #414b56 !important;
}

.more-about {
  display: block;
  width: 129px;
  height: 42px;
  background-color: #7865ff;
  text-align: center;
  line-height: 42px;
  border-radius: 5px;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
  color: #fff !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.more-about:hover {
  background-color: #7865ff;
}

.btn-1 {
  display: block;
  width: 155px;
  height: 60px;
  background-color:#7865ff;
  text-align: center;
  line-height: 60px;
  border-radius: 5px;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-1.causes-btn {
  background-color: transparent;
  border: 1px solid #414b56;
  color: #414b56 !important;
}

.btn-1.causes-btn:hover {
  border: 1px solid #7865ff;
  color: #fff !important;
}

.btn-1:hover {
  background-color: #7865ff;
  color: #fff !important;
}

.item-box-icon a {
  display: block;
  width: 128px;
  height: 45px;
  background-color: #7865ff;
  border-radius: 5px;
  text-align: center;
  line-height: 45px;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
}

.product-cart-btn a {
  display: block;
  width: 135px;
  height: 47px;
  background-color: #7865ff;
  border-radius: 5px;
  text-align: center;
  line-height: 47px;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-cart-btn a:hover {
  background-color: #7865ff;
}

.contact-btn {
  padding-top: 20px;
}

.contact-btn a {
  display: block;
  width: 183px;
  height: 61px;
  background-color: #7865ff;
  border-radius: 5px;
  text-align: center;
  line-height: 61px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-btn a:hover {
  background-color: #0beafb;
}

.contact-btn button {
  border: none;
  display: block;
  width: 183px;
  height: 61px;
  background-color: #7865ff;
  border-radius: 5px;
  text-align: center;
  line-height: 61px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-btn button:hover {
  background-color: #0beafb;
}

.order-btn a {
  display: block;
  width: 140px;
  height: 50px;
  background-color: #7865ff;
  border-radius: 3px;
  text-align: center;
  line-height: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.order-btn a:hover {
  background-color: #0beafb;
}

.cart-update {
  display: block;
  width: 147px;
  height: 54px;
  background-color: #7865ff;
  border-radius: 3px;
  text-align: center;
  line-height: 54px;
  font-size: 16px;
  font-weight: 600;
  color: #fff !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cart-update:hover {
  background-color: #0beafb;
  color: #414b56 !important;
}

.p-checkout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.p-checkout a {
  display: block;
  width: 250px;
  height: 54px;
  background-color: #7865ff;
  border-radius: 3px;
  text-align: center;
  line-height: 54px;
  font-size: 16px;
  font-weight: 600;
  color: #fff !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.p-checkout a:hover {
  background-color: #0beafb;
  color: #414b56 !important;
}

/* 
===============================
End Button Design
===============================
*/
.preloader {
  background-color: #7865ff;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999999;
  overflow: hidden;
}

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

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

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

.preloader * {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

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

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

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

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

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

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

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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

@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

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

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

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

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

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

.section-gap {
  padding: 125px 0 80px;
}

.section-gap-2 {
  padding: 80px 0 120px;
}

.section-top-gap-120 {
  padding-top: 120px;
}

.section-bottom-gap-120 {
  padding-bottom: 120px;
}

.section-top-gap-80 {
  padding-top: 80px;
}

.section-bottom-gap-80 {
  padding-bottom: 80px;
}

.mb-72 {
  margin-bottom: calc(72px - 40px);
}

.title-pb-40 {
  padding-bottom: 40px;
}

.title-pb-40 h3 {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 33px;
  text-transform: capitalize;
}

.seperator {
  padding-bottom: 40px;
  border-bottom: 1px solid #d4d4d4;
}

.seperator-2 {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d4d4d4;
}

.nice-number {
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  padding: 0px 20px;
}

.nice-number button,
.nice-number input {
  outline: 0;
  border: 0;
  background: transparent;
  font-size: 20px;
}

.nice-number button {
  font-size: 30px;
  color: #e25645;
}

select {
  display: none;
}

.form-select {
  background-image: none;
}

.nice-select {
  background-color: #fff;
  border-radius: 7px;
  border: 1px solid #d1d5de;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 18px;
  color: #999;
  font-weight: normal;
  outline: none;
  padding: 30px 22px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  margin-bottom: 18px;
  line-height: 0;
}

.nice-select:hover {
  border-color: #d1d5de;
}

.nice-select .option.selected {
  font-weight: normal;
}

.nice-select::after {
  border: none;
  content: "\f107";
  display: block;
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: 600;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 60%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #d1d5de;
  font-weight: normal;
}

.nice-select.open:after {
  top: 50%;
  right: 15px;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  width: 100%;
  border-radius: 7px;
  border: 1px solid #d1d5de;
}

.section-title .sTitle-sub-head {
  font-size: 22px;
  font-weight: 500;
  color: #7865ff;
  text-transform: capitalize;
  padding-bottom: 30px;
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  line-height: 18px;
}

.section-title .sTitle-sub-head::before {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/title_grid.png);
  background-repeat: repeat no-repeat;
  -webkit-animation: titleMove 10s ease-in-out infinite;
  animation: titleMove 10s ease-in-out infinite;
}

.section-title .sTitle-head {
  text-transform: capitalize;
  margin-bottom: 0px;
  padding-bottom: 14px;
}

.section-title .sTitle-text {
  padding-bottom: 20px;
  line-height: 1.5;
}

@-webkit-keyframes titleMove {
  0% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  50% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes titleMove {
  0% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  50% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.inner-page-banner {
    text-align: center;
    padding: 150px 0 25px;
    position: relative;
    z-index: 2;
    background: #fff;
}

.inner-page-banner:before {
  /*content: "";*/
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #232323;
  opacity: 60%;
  z-index: -1;
}

.inner-page-banner .page-title {
  display: inline-block;
  font-weight: 600;
  font-size: 38px;
  color: #7865ff;
  line-height: 1.2;
  margin-bottom: 21px;
  text-transform: capitalize;
  position: relative;
}

.inner-page-banner .page-title::before {
  /*content: "";*/
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/inner-banner_g.png);
  background-repeat: repeat no-repeat;
}

.inner-page-banner .pagination {
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  line-height: 1.556;
  text-transform: capitalize;
  display:none;
}

.inner-page-banner .pagination ul {
  margin: 0 auto;
}

.inner-page-banner .pagination ul li:after {
  content: "/";
  padding: 0 5px 0 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 16px;
}

.inner-page-banner .pagination ul li:last-child:after {
  content: none;
}

.inner-page-banner .pagination ul li a {
  font-size: 18px;
  font-weight: 500;
}

.description p {
  padding-bottom: 40px;
  text-align: justify;
}

.banner-1 {
  position: relative;
  padding: 180px 0px 120px;
  background-color: #fefaf1;
}

.hero-content h3 {
  font-size: 45px;
  padding-bottom: 28px;
}

.hero-content .banner-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding-top: 2px;
}

.banner-img {
  position: relative;
  left: 60px;
  width: 688px;
  height: 100%;
}

.banner-1-graphic {
  position: absolute;
  left: 109px;
  bottom: 35px;
  z-index: 1;
}

.banner-1-graphic .union-1 {
  position: relative;
  left: 35px;
  z-index: 2;
  -webkit-animation: bannerOne 5s ease-in-out infinite;
  animation: bannerOne 5s ease-in-out infinite;
}

.banner-1-graphic .graphic-1 {
  position: relative;
  bottom: 100px;
}

@-webkit-keyframes bannerOne {
  0% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  50% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes bannerOne {
  0% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  50% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.company {
  position: relative;
}

.company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 375px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 30px #00000008;
  box-shadow: 0 10px 30px #00000008;
}

.company::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #fefaf1;
  z-index: -1;
}

.company .company-logo {
  position: relative;
  padding: 75px 0px 75px 50px;
}

.feature-content {
  margin-bottom: 10px;
  border-radius: 5px;
  text-align: center;
  padding: 40px;
}

.feature-content.feature-content-1 {
  background-color: #7865ff;
}

.feature-content.feature-content-2 {
  background-color: #7865ff;
}

.feature-content.feature-content-2 h3 {
  color: #fff;
}

.feature-content.feature-content-2 h3::before {
  background-color: #fff;
}

.feature-content.feature-content-2 p {
  color: #fff;
}

.feature-content.feature-content-3 {
  background-color: #7865ff;
}

.feature-content .feature-icon {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border: 2px dashed #7865ff;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.feature-content .feature-icon i {
  font-size: 34px;
  color: #414b56;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.feature-content:hover .feature-icon i {
  -webkit-transform: rotate(360deg) scale(1.2);
  transform: rotate(360deg) scale(1.2);
}

.feature-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  padding-bottom: 13px;
  margin-bottom: 10px;
  position: relative;
}

.feature-content h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 88px;
  height: 2px;
  background-color: #fff;
}

.feature-content p {
  font-size: 16px;
  color: #fff;
}

.aboutus {
  overflow: hidden;
}

.about-content h3 {
  padding-bottom: 24px;
  font-weight: 600;
}

.about-content .sTitle-text {
  text-align: justify;
}

.about-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px;
}

.about-footer .about-quote {
  width: 95px;
  height: 198px;
  background-color: #7865ff;
  color: #fff;
  padding: 16px 21px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  border-radius: 5px;
}

.about-footer .about-quote p {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1.5;
  font-weight: 600;
}

.about-footer .about-tag ul {
  list-style: none;
  margin-bottom: 24px;
}

.about-footer .about-tag ul li {
  font-size: 16px;
  font-weight: 500;
  padding: 0 0 12px 32px;
  position: relative;
}

.about-footer .about-tag ul li:last-child {
  padding-bottom: 0;
}

.about-footer .about-tag ul li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: 600;
  color: #7865ff;
}

.about-img {
  position: relative;
  width: 443px;
  height: 428px;
  margin-left: auto;
  border-radius: 5px;
}

.about-img img {
  width: 100%;
}

.about-graphic {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 235px;
  height: 235px;
  -webkit-transform: rotate(110deg);
  transform: rotate(110deg);
  z-index: -1;
  -webkit-animation: aboutUs_animation 10s infinite;
  animation: aboutUs_animation 10s infinite;
}

.total-raised {
  position: absolute;
  bottom: -50px;
  left: -80px;
  width: 192px;
  height: 192px;
  text-align: center;
}

.total-raised .money-icon {
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
}

.total-raised .money-icon img {
  width: 25px;
}

.total-raised p {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  max-width: 100px;
  margin: 0 auto;
}

.total-raised span {
  font-size: 34px;
  font-weight: 700;
}

@-webkit-keyframes aboutUs_animation {
  0% {
    -webkit-transform: rotate(110deg);
    transform: rotate(110deg);
  }
  25% {
    -webkit-transform: rotate(115deg);
    transform: rotate(115deg);
  }
  50% {
    -webkit-transform: rotate(110deg);
    transform: rotate(110deg);
  }
  75% {
    -webkit-transform: rotate(105deg);
    transform: rotate(105deg);
  }
  100% {
    -webkit-transform: rotate(110deg);
    transform: rotate(110deg);
  }
}

@keyframes aboutUs_animation {
  0% {
    -webkit-transform: rotate(110deg);
    transform: rotate(110deg);
  }
  25% {
    -webkit-transform: rotate(115deg);
    transform: rotate(115deg);
  }
  50% {
    -webkit-transform: rotate(110deg);
    transform: rotate(110deg);
  }
  75% {
    -webkit-transform: rotate(105deg);
    transform: rotate(105deg);
  }
  100% {
    -webkit-transform: rotate(110deg);
    transform: rotate(110deg);
  }
}

.recentCampaigns {
  position: relative;
}

.recentCampaigns .banner-1-graphic {
  left: auto;
  bottom: 80px;
  right: 90px;
  z-index: 1;
}

.recentCampaigns .banner-1-graphic .graphic-1 {
  bottom: 0;
  -webkit-animation: bannerTwo 5s ease-in-out infinite;
  animation: bannerTwo 5s ease-in-out infinite;
}

.recentCampaigns .banner-1-graphic .union-bg {
  width: 68px;
  height: 68px;
  background-color: #7865ff;
  border-radius: 50%;
  position: relative;
  top: -50px;
  left: -15px;
  z-index: -1;
}

.recentCampaigns .banner-2-graphic {
  position: absolute;
  bottom: 30px;
  right: 90px;
  z-index: 1;
}

.recentCampaigns .banner-2-graphic .union-1 {
  position: relative;
  left: 35px;
  z-index: 2;
  -webkit-animation: bannerOne 5s ease-in-out infinite;
  animation: bannerOne 5s ease-in-out infinite;
}

.recentCampaigns .banner-2-graphic .graphic-1 {
  position: relative;
  bottom: 100px;
}

@-webkit-keyframes bannerTwo {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes bannerTwo {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.causes {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 40px;
  -webkit-box-shadow: 0 10px 30px #00000009;
  box-shadow: 0 10px 30px #00000009;
}

.causes .causes-img {
  position: relative;
  overflow: hidden;
}

.causes .causes-img img {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.causes .causes-img .post-date {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 92px;
  height: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
}

.causes .causes-img .post-date span {
  font-size: 16px;
  font-weight: 700;
  color: #414b56;
  max-width: 45px;
  text-align: center;
  line-height: 1;
  text-transform: capitalize;
}

.causes:hover .causes-img img {
  -webkit-transform: scale(1.2) rotate(5deg);
  transform: scale(1.2) rotate(5deg);
}

.causes-content {
  padding: 30px;
  background-color: #fff;
}

.causes-content.causes-details-progress {
  padding: 0;
}

.causes-content.causes-details-progress .ab-progress .progress-title {
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
}

.causes-content.causes-details-progress .ab-progress .progress-indicator {
  font-size: 22px;
  font-weight: 600;
}

.causes-content.causes-details-progress
  .ab-progress
  .progress-bar-wrap
  .ab-progress-bar {
  height: 7px;
}

.causes-content.causes-details-progress
  .ab-progress
  .progress-bar-wrap
  .ab-progress-bar::after {
  width: 32px;
  height: 32px;
  border: 5px solid #7865ff;
}

.causes-content .causes-title {
  display: block;
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 22px;
  color: #414b56;
}

.causes-content .ab-progress {
  padding-bottom: 30px;
}

.causes-content .ab-progress .progress-indicator {
  font-size: 16px;
  font-weight: 500;
  color: #414b56;
  text-align: right;
  padding-bottom: 5px;
}

.causes-content .ab-progress .progress-bar-wrap {
  background-color: #7865ff27;
}

.causes-content .ab-progress .progress-bar-wrap .ab-progress-bar {
  max-width: 100%;
  height: 4px;
  background-color: #7865ff;
  position: relative;
}

.causes-content .ab-progress .progress-bar-wrap .ab-progress-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 3px solid #7865ff;
  border-radius: 50%;
}

.causes-content .rased-goal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 30px;
}

.causes-content .rased-goal .rased-goal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

.causes-content .rased-goal .rased-goal-content .rased div,
.causes-content .rased-goal .rased-goal-content .goal div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 8px;
}

.causes-content .rased-goal .rased-goal-content .rased div i,
.causes-content .rased-goal .rased-goal-content .goal div i {
  margin-right: 6px;
}

.causes-content .rased-goal .rased-goal-content .rased div h5,
.causes-content .rased-goal .rased-goal-content .goal div h5 {
  font-size: 16px;
  text-transform: capitalize;
  color: #717171;
  margin: 0;
}

.causes-content .rased-goal .rased-goal-content .rased span,
.causes-content .rased-goal .rased-goal-content .goal span {
  color: #7865ff;
  font-weight: 700;
}

.causes-content .rased-goal .thm-share {
  width: 55px;
  height: 55px;
  line-height: 55px;
}

.main-pagination {
  text-align: center;
  padding: 30px 0 40px;
}

.main-pagination .pegination {
  padding: 0;
}

.team-member {
  position: relative;
  margin-bottom: 33px;
  border-radius: 5px;
  overflow: hidden;
}

.team-member img {
  width: 100%;
  border-radius: 5px;
  padding-bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-member:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.team-member .team-member-info {
  text-align: center;
}

.team-member .team-member-info a {
  font-size: 22px;
  font-weight: 700;
  color: #414b56;
  text-transform: capitalize;
}

.team-member .team-member-info p {
  font-size: 16px;
  color: #7865ff;
  text-transform: capitalize;
}

.team-member .team-member-details {
  padding: 30px;
  background-color: #0beafb;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.team-member .team-member-details a {
  font-size: 22px;
  font-weight: 700;
  color: #414b56;
  text-transform: capitalize;
}

.team-member .team-member-details p {
  font-size: 16px;
  color: #7865ff;
  text-transform: capitalize;
}

.team-member .team-member-details .team-member-social {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.team-member .team-member-details .team-member-social a {
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid #717171;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
}

.team-member .team-member-details .team-member-social a:hover {
  background-color: #f4462e;
  border-color: #f4462e;
}

.team-member .team-member-details .team-member-social a:hover i {
  color: #fff;
}

.team-member:hover .team-member-details {
  -webkit-transform: translateY(-202px);
  transform: translateY(-202px);
}

.item-box {
  position: relative;
  margin-bottom: 40px;
  border-radius: 5px;
  overflow: hidden;
}

.item-box .item-box-img {
  border-radius: 5px;
  padding-bottom: 20px;
  background-color: #f4f4f6;
  min-height: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
  overflow: hidden;
}

.item-box .item-box-img img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.item-box:hover .item-box-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.item-box .item-box-info {
  text-align: center;
}

.item-box .item-box-info a {
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 10px;
  color: #414b56;
}

.item-box .item-box-info p {
  font-size: 16px;
  color: #414b56;
  text-transform: capitalize;
}

.item-box .item-box-info p span {
  color: #b4b4b4;
  text-decoration: line-through;
}

.item-box-tag {
  display: inline-block;
  background-color: #7865ff;
  padding: 5px 10px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.item-box-tag span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
}

.item-box-tag-2 {
  display: inline-block;
  background-color: #7865ff;
  padding: 5px 10px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.item-box-tag-2 span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
}

.item-box-icon {
  visibility: hidden;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.item-box:hover .item-box-icon {
  visibility: visible;
  -webkit-transform: translateY(180px);
  transform: translateY(180px);
}

.events-2 {
  background-color: #7865ff14;
}

.events-post {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 40px;
}

.events-post::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(35, 35, 35, 0)),
    color-stop(2%, rgba(35, 35, 35, 0.02)),
    color-stop(70%, rgba(35, 35, 35, 0.7)),
    to(#414b56)
  );
  background: linear-gradient(
    180deg,
    rgba(35, 35, 35, 0) 0%,
    rgba(35, 35, 35, 0.02) 2%,
    rgba(35, 35, 35, 0.7) 70%,
    #414b56 100%
  );
  z-index: 1;
}

.events-post .events-post-img img {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.events-post:hover .events-post-img img {
  -webkit-transform: scale(1.2) rotate(5deg);
  transform: scale(1.2) rotate(5deg);
}

.events-post .events-post-wrap {
  position: relative;
  z-index: 2;
}

.events-post .events-post-wrap .events-post-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0px 30px 30px;
}

.events-post .events-post-wrap .events-post-content .post-date {
  width: 88px;
  height: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.events-post .events-post-wrap .events-post-content .post-date span {
  font-size: 22px;
  font-weight: 700;
  max-width: 45px;
  text-align: center;
  line-height: 1;
  color: #fff;
}

.events-post .events-post-wrap .events-post-content a {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.events-post .events-post-wrap .events-post-content p {
  text-align: right;
  text-transform: capitalize;
  color: #1bb89c;
}

.events-post .events-post-wrap .events-post-content .events-post-footer-2 {
  color: #eb7575;
}

.events-post .events-post-wrap .events-post-content .events-post-footer-3 {
  color: #f5d372;
}

.testimonial-1 {
  position: relative;
  padding-bottom: 30px;
}

.testimonial-1 .banner-1-graphic {
  left: auto;
  right: 109px;
  bottom: 0;
}

.testimonial-1 .about-graphic {
  top: 0;
  left: -130px;
  z-index: 1;
}

.home-1-slider-thm {
  padding-bottom: 40px;
}

.home-1-slider-thm .mySwiper .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.home-1-slider-thm .mySwiper .swiper-wrapper .swiper-slide {
  width: 100% !important;
}

.home-1-slider-thm
  .mySwiper
  .swiper-wrapper
  .swiper-slide.swiper-slide-thumb-active
  .t_thumbs
  .t_thumbs_info {
  border: 1px solid #7865ff;
  border-left: 0;
}

.t_thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 10px 30px #00000007;
  box-shadow: 0 10px 30px #00000007;
  cursor: pointer;
}

.t_thumbs:hover .t_thumbs_info {
  border: 1px solid #7865ff;
  border-left: 0;
}

.t_thumbs .t_thumbs_img {
  width: 152px;
  border-radius: 5px 0 0 5px;
  overflow: hidden;
}

.t_thumbs_info {
  border: 1px solid #d4d4d4;
  background-color: #fff;
  border-left: 0;
  border-radius: 0 5px 5px 0;
  padding: 35px 45px;
  min-width: 265px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.t_thumbs_info .t_thumbs_title {
  font-size: 22px;
  font-weight: 600;
  color: #414b56;
  text-transform: capitalize;
}

.t_thumbs_info .t_thumbs_body {
  font-size: 16px;
  color: #7865ff;
  text-transform: capitalize;
}

.home-1-slider {
  height: 100%;
  padding-bottom: 40px;
}

.home-1-slider .swiper {
  position: relative;
  height: 100%;
}

.home-1-slider .swiperButton {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100px;
}

.home-1-slider .swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #7865ff;
}

.home-1-slider .swiper-button-prev::after {
  color: transparent;
}

.home-1-slider .swiper-button-prev i {
  font-size: 30px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-left: 20px;
}

.home-1-slider .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #7865ff;
  left: 80px;
}

.home-1-slider .swiper-button-next::after {
  color: transparent;
}

.home-1-slider .swiper-button-next i {
  font-size: 30px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding-left: 20px;
}

.home-1-slider .swiper-button-disabled {
  opacity: 1;
}

.t_sliders .t_sliders_info .t_sliders_title {
  font-size: 24px;
  font-weight: 700;
  color: #17233e;
  text-transform: capitalize;
}

.t_sliders .t_sliders_info .t_sliders_body {
  font-size: 16px;
  color: #7865ff;
  text-transform: capitalize;
  padding-bottom: 33px;
}

.t_sliders .t_sliders_info .t_sliders_text {
  text-align: justify;
}

.single-post {
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px #00000010;
  box-shadow: 0 10px 30px #00000010;
  margin-bottom: 40px;
}

.single-post .single-post-img {
  overflow: hidden;
}

.single-post .single-post-img img {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.single-post:hover .single-post-img img {
  -webkit-transform: scale(1.1) rotate(5deg);
  transform: scale(1.1) rotate(5deg);
}

.single-post .single-post-content {
  padding: 30px 23px 30px 30px;
  border: 1px solid #ebebeb;
}

.single-post .single-post-content span {
  font-size: 16px;
}

.single-post .single-post-content .blog-post-title {
  font-size: 22px;
  font-weight: 600;
  padding: 22px 0 12px;
  display: block;
  color: #414b56;
}

.single-post .single-post-content p {
  font-size: 16px;
  padding-bottom: 22px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d4d4d4;
}

.single-post-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-post-author .post-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.single-post-author .post-author h5 {
  font-size: 16px;
  font-weight: 500;
}

.banner-2 {
  padding: 220px 0px 90px;
  background-color: #fefaf1;
  position: relative;
}

.banner-2 .banner-1-graphic {
  left: auto;
  bottom: 80px;
  right: 90px;
  z-index: 1;
}

.banner-2 .banner-1-graphic .graphic-1 {
  bottom: 0;
}

.banner-2 .banner-1-graphic .union-bg-2 {
  width: 25px;
  height: 25px;
  background-color: #7865ff;
  position: relative;
  top: -30px;
  left: 100px;
  z-index: -1;
  -webkit-animation: bannerTwo 5s ease-in-out infinite;
  animation: bannerTwo 5s ease-in-out infinite;
}

.banner-img-2 {
  padding-right: 20px;
  position: relative;
}

.banner-img-2::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -80px;
  width: 100%;
  height: 100%;
  background-image: url(../img/banner_g_2.png);
  background-repeat: no-repeat;
  -webkit-animation: bannerThree 5s ease-in-out infinite;
  animation: bannerThree 5s ease-in-out infinite;
}

.banner-img-2 img {
  position: relative;
}

@-webkit-keyframes bannerThree {
  0% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

@keyframes bannerThree {
  0% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

.feature-2 {
  position: relative;
}

.feature-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-color: #fefaf1;
  z-index: -1;
}

.funfact {
  position: relative;
}

.funfact::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 0;
  background-color: #ecfbf8;
  z-index: -1;
}

.funfact_1 {
  padding-top: 69px;
}

.funfact-wrap {
  background-color: #7865ff;
  border-radius: 5px;
  padding: 65px 100px 50px;
}

.aboutus-2 {
  position: relative;
}

.aboutus-2 .about-img {
  width: 443px;
  height: 423px;
}

.aboutus-2 .about-graphic-2 {
  position: absolute;
  top: 0;
  left: -100px;
  width: 235px;
  height: 235px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
  z-index: -1;
  -webkit-animation: footer_animation_3 10s linear infinite;
  animation: footer_animation_3 10s linear infinite;
}

.aboutus-2 .total-raised {
  position: absolute;
  bottom: -140px;
  right: -90px;
  left: inherit;
  width: 192px;
  height: 192px;
}

@-webkit-keyframes footer_animation_3 {
  0% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  25% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  75% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
}

@keyframes footer_animation_3 {
  0% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  25% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  75% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
}

.counter-box {
  text-align: center;
}

.counter-box span,
.counter-box strong {
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  vertical-align: middle;
}

.counter-box p {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  padding: 20px 0 20px;
}

.funfact-wrap_2 .counter-box {
  position: relative;
}

.funfact-wrap_2 .counter-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 35px;
  background-color: #232323;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.funfact-wrap_2 .counter-box span,
.funfact-wrap_2 .counter-box strong {
  color: #000;
}

.funfact-wrap_2 .counter-box p {
  color: #000;
}

.funfact-wrap_2 .col-md-4:last-child .counter-box::after {
  content: none;
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  min-width: 25%;
}

.grid-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #232323;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(35, 35, 35, 0)),
    to(#414b56)
  );
  background: linear-gradient(180deg, rgba(35, 35, 35, 0) 0%, #414b56 100%);
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.grid-item.grid-item-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
  min-width: 48%;
}

.grid-item:hover::before {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.grid-item:hover .grid-item-content {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.grid-item-content {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding: 0px 40px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  color: #fff;
  z-index: 1;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.grid-item-content.grid-item-content-2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  -webkit-transform: translateY(300px);
  transform: translateY(300px);
}

.grid-item-content.grid-item-content-2 .grid-item-text {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.grid-item-content .grid-item-text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
}

.grid-item-content .grid-item-text h4 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.grid-item-content .grid-item-text p {
  font-size: 14px;
}

.grid-item-content .grid-item-icon {
  min-width: 56px;
  min-height: 56px;
  background-color: #0beafb;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #414b56 !important;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.grid-item-content .grid-item-icon:hover {
  color: #fff !important;
}

.banner-3 {
  padding-top: 125px;
  position: relative;
  background-color: #FFFFFF;
}

.banner-3::before {
  /* content: ""; */
  position: absolute;
  top: inherit;
  bottom: -40px;
  left: 120px;
  width: 123px;
  height: 123px;
  background: url(../img/banner_3_path.png) no-repeat;
  -webkit-animation: footer_animation_2 10s infinite;
  animation: footer_animation_2 10s infinite;
}

.banner-3::after {
  /* content: ""; */
  position: absolute;
  top: 83px;
  right: 0;
  width: 357px;
  height: 400px;
  background: url(../img/banner_3_graphic.png) no-repeat;
  -webkit-animation: footer_animation_2 10s infinite;
  animation: footer_animation_2 10s infinite;
}

.banner-3 .banner-img {
  z-index: 2;
}

.call-anytime {
  position: absolute;
  display: block;
  top: 50%;
  width: 250px;
  height: 100px;
  padding: 15px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0 18px 30px #00000010;
  box-shadow: 0 18px 30px #00000010;
}

.call-anytime .call-anytime-icon {
  width: 72px;
  height: 72px;
  background-color: #7865ff;
  border-radius: 50%;
  text-align: center;
  line-height: 72px;
  color: #fff;
}

.call-anytime .call-anytime-text h4 {
  font-size: 16px;
  font-weight: 500;
}

.call-anytime .call-anytime-text span {
  font-size: 14px;
}

.shadow-bg {
  position: relative;
  padding-top: 0px;
  overflow: hidden;
}

.shadow-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 200px;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 30px #00000005;
  box-shadow: 0 10px 30px #00000005;
  z-index: -1;
}

.shadow-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 156px;
  background-color: #fefaf1;
  z-index: -2;
}

.ourBlog-3 {
  padding-top: 76px;
}

.faq .accordion .faq-item {
  padding-bottom: 35px;
  border-bottom: 1px solid #e6e6ed;
  margin-bottom: 30px;
}

.faq .accordion .faq-item:last-child {
  margin-bottom: 40px;
}

.faq .accordion .faq-item .faq-header {
  background: transparent;
}

.faq .accordion .faq-item .faq-header button {
  background: transparent;
  border: 0;
  font-family: "Oxygen", "Noto Sans", serif;
  font-size: 21px;
  font-weight: 600;
  text-align-last: left;
  position: relative;
  padding-left: 60px;
}

.faq .accordion .faq-item .faq-header button:hover {
  color: #222;
}

.faq .accordion .faq-item .faq-header button::before {
  content: "\f068";
  font-family: "FONT AWESOME 5 FREE";
  position: absolute;
  top: 0;
  left: 0;
  color: #47bfe7;
}

.faq .accordion .faq-item .faq-header button.collapsed::before {
  content: "\f067";
}

.faq .accordion .faq-item .faq-body {
  font-size: 20px;
  padding: 30px 0 0 60px;
}

.notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  padding: 12px 0 12px 20px;
  margin-bottom: 20px;
}

.notice i {
  width: 36px;
  height: 36px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 36px;
  flex: 0 0 36px;
  background-color: #0beafb;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  color: #fff;
}

.notice p {
  display: inline;
  font-size: 16px;
  padding-left: 20px;
}

.choose-amount form {
  width: 184px;
  padding-bottom: 20px;
}

.choose-amount form .input-group {
  border: 1px solid #d1e2df;
  border-radius: 5px;
}

.choose-amount form .input-group-text {
  height: 55px;
  padding: 26px;
  font-size: 22px;
  font-weight: 600;
  background-color: #d1e2df;
  border-radius: 5px;
}

.choose-amount form input {
  height: 55px;
  font-size: 18px;
  font-weight: 600;
  border: 0;
}

.choose-amount ul li {
  padding: 10px 31px 10px 22px;
  border-radius: 5px;
  background-color: #d1e2df;
  margin-right: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.choose-amount ul li.active,
.choose-amount ul li:hover {
  background-color: #7865ff;
  color: #fff;
}

.choose-amount ul li :last-child {
  margin-right: 0;
}

.payment-method {
  padding-bottom: 40px;
}

.payment-method label {
  font-size: 16px;
  font-weight: 500;
  color: #414b56;
}

.payment-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.personal-info {
  background-color: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  -webkit-box-shadow: 0 10px 30px #00000005;
  box-shadow: 0 10px 30px #00000005;
  padding: 40px;
  margin-bottom: 40px;
}

.personal-text {
  padding-bottom: 40px;
}

.personal-text p,
.personal-text ol,
.personal-text address {
  font-size: 16px;
  padding-bottom: 20px;
}

.personal-text p:last-child,
.personal-text ol:last-child,
.personal-text address:last-child {
  padding-bottom: 0;
}

.personal-text ol {
  padding-left: 20px;
}

.total-donation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.total-donation h4 {
  font-size: 16px;
  font-weight: 600;
  color: #414b56;
  text-transform: capitalize;
  padding: 20px 40px 20px 30px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  margin-bottom: 0;
}

/* Start Blog Content */
.btn-shadow-none a {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.blog-content .blog-left {
  padding-bottom: 40px;
}

.blog-content .blog-left .blog-post-content {
  margin-bottom: 25px;
}

.blog-content .blog-left .blog-post-content h2 {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 20px;
}

.blog-content .blog-left .blog-post-content p {
  padding-bottom: 27px;
}

.blog-content .blog-left .author-info {
  position: relative;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-content .blog-left .author-info .post-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 40px;
  border-radius: 50%;
}

.blog-content .blog-left .author-info .post-author img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
}

.blog-content .blog-left .author-info .post-author h4 {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.blog-content .blog-left .author-info .post-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
}

.blog-content .blog-left .author-info .post-comment i {
  margin-right: 10px;
}

.blog-content .blog-left .author-info .post-comment p {
  padding-bottom: 0;
  border-bottom: none;
}

.blog-content .blog-left .thm-btn-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-content .blog-left .thm-btn-share .thm-share-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-content .blog-left .thm-btn-share .thm-share-2 h5 {
  margin: 0;
  font-size: 18px;
  text-transform: capitalize;
  padding-right: 18px;
}

.blog-content .blog-left .thm-btn-share .thm-share-2 ul li a {
  padding-left: 12px;
}

.blog-content .blog-left .thm-btn-share .thm-share-2 ul li a:hover i {
  color: #7865ff;
}

.blog-content .blog-left .thm-btn-share .thm-share-2 ul li:first-child a {
  padding-left: 0;
}

.blog-content .blog-left.causes-left .blog-post-content {
  margin-bottom: 0px;
}

.blog-content .blog-left.causes-left .blog-post-content h2 {
  font-size: 24px;
  font-weight: 700;
}

.blog-content .blog-left.causes-left .blog-post-content p:last-child {
  padding-bottom: 0;
}

.blog-img {
  position: relative;
  border-radius: 5px;
  margin-bottom: 25px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-img .post-date {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 92px;
  height: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
}

.blog-img .post-date span {
  font-size: 22px;
  font-weight: 600;
  color: #414b56;
  max-width: 45px;
  text-align: center;
  line-height: 1;
  text-transform: capitalize;
}

.blog-img:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.pegination {
  padding-bottom: 40px;
  font-size: 18px;
  padding-top: 30px;
}

.pegination.pegination-2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.pegination ul li a {
  font-size: 16px;
  font-weight: 600;
  color: #606060;
  background-color: #d9eae7;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 3px;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pegination ul li a.pegi-active {
  background-color: #7865ff;
  color: #ffffff;
}

.pegination ul li a:hover {
  background: #7865ff;
  color: #ffffff;
}

.pegination ul li:last-child a {
  color: #606060;
  font-weight: 700;
  margin-right: 0px;
}

.pegination ul li:last-child a:hover {
  color: #fff;
}

.thm-share {
  width: 50px;
  height: 46px;
  background-color: #0beafb;
  text-align: center;
  line-height: 46px;
  border-radius: 5px;
  color: #fff;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.thm-share > i {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.thm-share .thm-share-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 0;
  height: 46px;
  top: 0;
  right: 70px;
  border-radius: 5px;
  background-color: #7865ff;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: -1;
  list-style: none;
}

.thm-share .thm-share-option li {
  padding-right: 20px;
}

.thm-share .thm-share-option li:first-child {
  padding-left: 20px;
}

.thm-share:hover {
  background-color: #7865ff;
}

.thm-share:hover .thm-share-option {
  visibility: visible;
  width: 160px;
}

.blog-post-seperate {
  border-bottom: 1px solid #d4d4d4;
}

.post-content .thm-post-head span {
  font-family: "Oxygen", "Noto Sans", serif;
  font-size: 18px;
  color: #e25645;
  font-weight: 700;
  text-transform: capitalize;
}

.post-content .thm-post-head h3 {
  margin: 15px 0 30px;
}

.blog-sidebar {
  padding-left: 30px;
}

.blog-sidebar .widget {
  margin-bottom: 40px;
}

.blog-sidebar .widget .widget-head {
  padding-bottom: 8px;
  border-bottom: 1px solid #d4d4d4;
  margin-bottom: 20px;
}

.blog-sidebar .widget .widget-head h3 {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  padding: 10px 15px;
  border-radius: 3px;
  background-color: #7865ff;
}

.blog-sidebar .widget_search form {
  position: relative;
  border-radius: 5px;
}

.blog-sidebar .widget_search form input {
  width: 100%;
  height: 75px;
  border-radius: 5px;
  border: 0;
  background-color: #00715c15;
  padding-left: 30px;
}

.blog-sidebar .widget_search form input:placeholder-shown {
  font-size: 16px;
}

.blog-sidebar .widget_search form button {
  position: absolute;
  width: 88px;
  height: 75px;
  top: 0;
  right: 0;
  background-color: #7865ff;
  border: 0;
  border-radius: 5px;
  color: #fff;
  outline: 0;
}

.blog-sidebar .widget_categories ul li {
  position: relative;
  list-style: none;
  margin-bottom: 4px;
}

.blog-sidebar .widget_categories ul li a {
  font-size: 16px;
  color: #17233e;
  text-transform: capitalize;
  padding-bottom: 26px;
}

.blog-sidebar .latest-news ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  list-style: none;
}

.blog-sidebar .latest-news ul li .latest-news-img {
  margin-right: 20px;
  width: 125px;
  overflow: hidden;
  border-radius: 3px;
}

.blog-sidebar .latest-news ul li .latest-news-img img {
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-sidebar .latest-news ul li:hover .latest-news-img img {
  -webkit-transform: scale(1.1) rotate(5deg);
  transform: scale(1.1) rotate(5deg);
}

.blog-sidebar .latest-news ul li .latest-news-info h2 {
  font-size: 18px;
  color: #414b56;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid #d4d4d4;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.blog-sidebar .latest-news ul li .latest-news-info p {
  font-size: 16px;
  color: #7865ff;
  text-transform: capitalize;
}

.blog-sidebar .widget_help .widget_help_content p {
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 22px;
  color: #414b56;
}

.blog-sidebar .widget_help .widget_help_content .call,
.blog-sidebar .widget_help .widget_help_content .email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 15px;
  font-size: 16px;
}

.blog-sidebar .widget_help .widget_help_content .call:last-child,
.blog-sidebar .widget_help .widget_help_content .email:last-child {
  padding-bottom: 0;
}

.blog-sidebar .widget_help .widget_help_content .call i,
.blog-sidebar .widget_help .widget_help_content .email i {
  margin-right: 8px;
}

.blog-sidebar .widget_help .widget_help_content .contact_btn {
  margin-top: 22px;
}

.blog-sidebar .widget_banner {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.blog-sidebar .widget_banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 167px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(35, 35, 35, 0)),
    color-stop(2%, rgba(35, 35, 35, 0.02)),
    color-stop(63%, rgba(35, 35, 35, 0.63)),
    to(#414b56)
  );
  background: linear-gradient(
    180deg,
    rgba(35, 35, 35, 0) 0%,
    rgba(35, 35, 35, 0.02) 2%,
    rgba(35, 35, 35, 0.63) 63%,
    #414b56 100%
  );
}

.blog-sidebar .widget_banner .widget_banner_content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 320px;
  padding-bottom: 30px;
}

.blog-sidebar .widget_banner .widget_banner_content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 17px;
}

.blog-sidebar .tagcloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 10px;
}

.blog-sidebar .tagcloud a {
  display: inline-block;
  padding: 5px 20px;
  background-color: #d9eae7;
  border-radius: 3px;
  font-size: 14px;
  color: #414b56;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-sidebar .tagcloud a.active {
  background-color: #7865ff;
  color: #fff;
}

.blog-sidebar .tagcloud a:hover {
  background-color: #7865ff;
  color: #fff;
}

.donate {
  position: relative;
  padding: 70px 0;
  margin-top: 120px;
  background-color: #232323;
}

.donate .container {
  position: relative;
}

.donate .container .donate-wrap {
  position: absolute;
  bottom: -55px;
  left: 0;
  width: 100%;
  background-color: #7865ff;
  padding: 66px 70px;
  border-radius: 5px;
}

.donateContent {
  color: #fff;
}

.donateContent h2 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.donateContent p {
  font-size: 18px;
}

.blog-post-img {
  padding: calc(42px - 27px) 0 22px;
}

.blog-post-img img {
  margin-bottom: 30px;
}

.blog-post-img h3 {
  font-size: 22px;
  font-weight: 600;
}

.blog-quote {
  /* background-color: #0beafb; */
  padding: 40px 65px;
  border-radius: 5px;
  margin: calc(40px - 27px) 0 40px;
  border: 5px solid #0beafb;
}

.blog-quote h4 {
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 15px;
}

.blog-quote-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.blog-quote-footer p {
  padding: 0 0 0 35px;
  font-size: 16px;
  color: #717171;
  font-weight: 600;
  position: relative;
  padding-bottom: 0 !important;
}

.blog-quote-footer p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 33px;
  height: 2px;
  background-color: #717171;
}

.thm-tag h3 {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 700;
  margin-right: 15px;
}

.thm-tag ul li a {
  background-color: #d9eae7;
  padding: 6px 9px;
  border-radius: 3px;
  text-transform: capitalize;
  margin-right: 10px;
}

.thm-tag ul li a.active,
.thm-tag ul li a:hover {
  background-color: #7865ff;
  color: #fff;
}

.comment {
  margin-top: 40px;
}

.comment h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 34px;
}

.comment ol li {
  list-style: none;
}

.comment ol li .single-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.comment ol li .single-comment .comment-user {
  width: 15%;
}

.comment ol li .single-comment .comment-user img {
  width: 82px;
  height: 82px;
}

.comment ol li .single-comment .comment-content {
  width: 80%;
}

.comment ol li .single-comment .comment-content .comment-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 22px;
}

.comment
  ol
  li
  .single-comment
  .comment-content
  .comment-head
  .comment-title
  h4 {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 7px;
}

.comment ol li .single-comment .comment-content .comment-head .comment-title p {
  font-size: 14px;
  color: #878787;
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: 0;
}

.comment ol li .single-comment .comment-content p {
  font-size: 16px;
  color: #878787;
  text-align: justify;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d4d4d4;
}

.comment-form {
  margin-bottom: 40px;
}

.comment-form h3 {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 42px;
}

.formFill div {
  padding-bottom: 20px;
}

.formFill div label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: capitalize;
  color: #414b56;
}

.formFill div input,
.formFill div textarea {
  padding: 20px 30px;
  border: 1px solid #d4d4d4;
}

.formFill div input:placeholder-shown,
.formFill div textarea:placeholder-shown {
  font-size: 14px;
  color: #717171;
}

.formFill div input[type="checkbox"] {
  padding: 0;
}

.ed-Head {
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 5px 0 30px;
}

.ed-img-tag {
  color: #fff !important;
}

.ed-DateLocation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 40px 65px;
  background-color: #fff;
  -webkit-box-shadow: 0 7px 30px #00000009;
  box-shadow: 0 7px 30px #00000009;
  position: relative;
  margin-bottom: 40px;
}

.ed-DateLocation::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 98px;
  background-color: #e3e3e3;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.ed-DateLocation .ed-Title {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 20px;
}

.ed-Box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

.ed-Box:last-child {
  padding-bottom: 0;
}

.ed-Box .ed-Icon {
  width: 34px;
  height: 34px;
  background-color: #ffe4e4;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
  color: #7865ff;
}

.ed-Box .ed-Icon.ed-Icon-1 {
  color: #7865ff;
}

.ed-Box .ed-Icon i {
  font-size: 14px;
}

.ed-Box .ed-Text {
  font-size: 14px;
}

.ed-Location .ed-Box .ed-Icon {
  background-color: #defef8;
}

.ed-list {
  padding-bottom: 40px;
  margin: 0;
}

.ed-list li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.ed-list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #7865ff;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ed-quote {
  padding: 207px 58px 40px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.ed-quote .ed-quote-overlay {
  position: absolute;
  width: 100%;
  height: 280px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(35, 35, 35, 0)),
    to(#414b56)
  );
  background: linear-gradient(180deg, rgba(35, 35, 35, 0) 0%, #414b56 100%);
  left: 0;
  bottom: 0;
}

.ed-quote h4 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  position: relative;
}

.ed-quote .blog-quote-footer {
  position: relative;
}

.ed-quote .blog-quote-footer p {
  color: #0beafb;
}

.ed-quote .blog-quote-footer p::before {
  background-color: #0beafb;
}

.vp-profile {
  padding-bottom: 40px;
}

.vp-img {
  border-radius: 5px;
  overflow: hidden;
  padding-bottom: 20px;
}

.vp-img img {
  border-radius: 5px;
}

.vp-head .vp-title {
  font-size: 46px;
  font-weight: 700;
  text-transform: capitalize;
  padding-bottom: 20px;
}

.vp-head .vp-age {
  color: #7865ff;
  text-transform: capitalize;
}

.vp-head .vp-position {
  color: #7865ff;
}

.vp-contact {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d4d4d4;
}

.vp-contact-title {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 30px;
}

.vp-contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 10px;
}

.vp-contact-info:last-child {
  padding-bottom: 0;
}

.vp-contact-info .vp-contact-text {
  font-size: 16px;
}

.vp-contact-info .vp-contact-text span {
  font-weight: 700;
  text-transform: capitalize;
  color: #414b56;
}

.vp-contact-icon {
  width: 34px;
  height: 34px;
  background-color: #ffe4e4;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
  color: #000;
}

.vp-contact-icon i {
  font-size: 14px;
  color: #7865ff;
}

.social-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.social-link ul li {
  list-style: none;
}

.social-link ul li a {
  font-size: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid #717171;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.social-link ul li:hover a {
  background-color: #7865ff;
  border: 1px solid #7865ff;
  color: #fff;
}

.vp-heading {
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 20px;
  margin-bottom: 30px;
  position: relative;
}

.vp-heading::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #d4d4d4;
}

.vp-skills {
  padding-bottom: 40px;
}

.product-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.product-slider .home-1-slider-thm {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
}

.product-slider .home-1-slider {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
}

.product-thum-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.product-thum-slider .home-1-slider-thm {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24%;
  flex: 0 0 24%;
  max-width: 110px;
}

.product-thum-slider .home-1-slider-thm .mySwiper .swiper-wrapper {
  gap: 20px;
}

.product-thum-slider .home-1-slider {
  height: auto;
  padding-bottom: 40px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 76%;
  flex: 0 0 76%;
  max-width: 490px;
}

.item-details-thumb-img img {
  width: 110px;
  height: 150px;
  border-radius: 5px;
}

.item-details-slider-img {
  position: relative;
}

.item-details-slider-img img {
  width: 490px;
  height: 490px;
  border-radius: 5px;
}

.item-details-slider-img .item-offer {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: #7865ff;
  padding: 2px 13px;
}

.item-details-slider-img .item-offer p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding-right: 15px;
}

.product-head {
  font-size: 28px;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 20px;
}

.product-pr {
  padding-bottom: 30px;
}

.product-pr .product-price {
  margin-right: 75px;
}

.product-pr .product-price p {
  font-size: 18px;
  font-weight: 500;
  color: #7865ff;
  text-transform: capitalize;
}

.product-pr .product-price p span {
  color: #b4b4b4;
  text-decoration: line-through;
}

.p-rating {
  gap: 5px;
}

.p-rating i {
  color: #7865ff;
}

.p-rating p {
  font-size: 16px;
  font-weight: 500;
  padding-left: 5px;
}

.product-description {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d4d4d4;
}

.product-description p {
  font-size: 16px;
  text-align: justify;
}

.product-conditions_btn {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d4d4d4;
}

.product-conditions li {
  list-style: none;
  position: relative;
  padding-left: 35px;
  padding-bottom: 15px;
}

.product-conditions li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 2px;
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  font-weight: 600;
  width: 22px;
  height: 22px;
  background-color: #dedede;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  color: #717171;
}

.product-conditions li p {
  text-transform: capitalize;
}

.product-quantity {
  margin-right: 15px;
}

.product-category {
  padding-bottom: 30px;
}

.product-category ul {
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-category ul li {
  padding: 5px 10px;
  border: 1px solid #b4b4b4;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.product-category ul li:hover {
  background-color: #7865ff;
  border-color: #7865ff;
}

.product-category ul li:hover a {
  color: #fff;
}

.product-category ul li a {
  text-transform: capitalize;
}

.product-share {
  padding-bottom: 40px;
}

.product-ddr {
  padding-bottom: 40px;
}

.product-ddr-tab {
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d4d4d4;
  display: inline-block;
}

.product-ddr-tab .nav-tabs {
  border-bottom: 0;
  gap: 120px;
  padding: 0px 13px;
}

.product-ddr-tab .nav-tabs .nav-link {
  font-weight: 600;
  color: #717171;
  text-transform: capitalize;
  border: 0;
  cursor: pointer;
}

.product-ddr-tab .nav-tabs .nav-link.active {
  border: 0;
  color: #7865ff;
}

.product-ddr-tab .nav-tabs .nav-link:hover {
  border: 0;
}

.product-ddr-description p {
  padding-bottom: 40px;
}

.product-ddr-description p:last-child {
  padding-bottom: 0;
}

.product-ddr-details .ed-list {
  padding-bottom: 0;
}

.review-title {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 30px;
}

.review-post {
  padding-bottom: 40px;
}

.review-post-box {
  padding-bottom: 30px;
  gap: 30px;
}

.review-post-box:last-child {
  padding-bottom: 0;
}

.review-author {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 15%;
  flex: 0 0 15%;
}

.review-author img {
  width: 100%;
}

.review-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.review-content .review-head {
  margin-bottom: 20px;
}

.review-content .review-head .review-author-date h4 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
}

.review-content .review-head .review-author-date span {
  font-size: 14px;
}

.review-content .review-head .review-author-rating a {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  text-align: right;
  padding-right: 25px;
}

.review-rating {
  gap: 40px;
  padding-bottom: 30px;
}

.review-rating h3.review-title {
  padding-bottom: 0;
}

.related-product-head {
  position: relative;
  padding-bottom: 70px;
}

.related-product-head h6 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 15px;
}

.related-product-head .related-product-control {
  position: absolute;
  right: 60px;
  left: auto;
}

.related-product-control .swiper-button-next,
.related-product-control .swiper-button-prev {
  width: 42px;
  height: 42px;
  background-color: #d9eae7;
  border-radius: 50%;
}

.related-product-head .related-product-control .swiper-button-next i,
.related-product-head .related-product-control .swiper-button-prev i {
  text-align: center;
  line-height: 42px;
  color: #7865ff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.related-product-head .related-product-control .swiper-button-next::after,
.related-product-head .related-product-control .swiper-button-prev::after {
  display: none;
}

.table thead tr {
  border: 0;
}

.table tr {
  border-bottom: 1px solid #d4d4d4;
}

.table tr td {
  vertical-align: middle;
}

.shopping-summery table > :not(caption) > * > * {
  padding: 15px 0;
}

.shopping-summery table td,
.shopping-summery table th,
.shopping-summery table thead {
  border: 0;
}

.shopping-summery {
  margin-bottom: 40px;
}

.shopping-summery table thead tr.main-heading {
  margin-bottom: 40px;
}

.shopping-summery table thead tr th {
  background-color: #7865ff;
  padding: 35px 0;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.shopping-summery table thead tr th:first-child {
  border-radius: 5px 0 0 5px;
}

.shopping-summery table thead tr th:last-child {
  border-radius: 0 5px 5px 0;
}

.shopping-summery table tbody tr img {
  max-width: 120px;
  border-radius: 5px;
}

.table-left-60 {
  padding-left: 60px !important;
}

.total-cost table tbody tr {
  border-bottom: 0;
}

.total-cost table tbody tr td:last-child {
  width: 22%;
}

.total-cost table tfoot tr {
  border-bottom: 0;
  border-top: 1px solid #d4d4d4;
}

.product-thumbnail {
  padding-left: 20px !important;
}

.product-name,
.product-price {
  font-size: 18px;
  font-weight: 600;
}

.coupon {
  padding-bottom: 70px;
  gap: 20px;
}

.coupon-field {
  gap: 20px;
}

.coupon-field .formFill div input {
  padding: 0;
  padding-left: 24px;
  width: 283px;
  height: 54px;
}

.checkout-left,
.checkout-right {
  padding-bottom: 40px;
}

.checkout-title {
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 30px;
}

.checkout-address .formFill {
  padding-bottom: 40px;
}

.checkout-address .formFill .checkout-title {
  padding-top: 20px;
}

.order-box {
  padding-bottom: 40px;
}

.order-box-details {
  padding: 30px 25px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
}

.order-box-details .table thead {
  border-bottom: 1px solid #cbcbcb;
}

.order-box-details .table tbody tr:not(:first-child) {
  border-bottom: 1px solid #cbcbcb;
}

.order-box-details .table tfoot tr:nth-child(2) {
  border-bottom: 1px solid #cbcbcb;
}

.order-box-details th:last-child,
.order-box-details td:last-child {
  text-align: right;
  padding-right: 30px;
}

.payment {
  padding-bottom: 30px;
}

.payment-method-check {
  padding: 25px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
}

.payment-method-check .form-check {
  margin-bottom: 20px;
}

.payment-method-check .form-check:last-child {
  margin-bottom: 0;
}

.contact-box {
  padding: 30px 40px;
  background-color: #7865ff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
  min-height: 148px;
}

.contact-box.contact-box-2 {
  background-color: #7865ff;
}

.contact-box.contact-box-2 i {
  color: #7865ff;
}

.contact-box.contact-box-3 {
  background-color: #7865ff;
}

.contact-box.contact-box-3 i {
  color: #7865ff;
}

.contact-box-icon {
  min-width: 60px;
  min-height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 30px;
}

.contact-box-icon i {
  color: #7865ff;
}

.contact-box-text {
  padding-left: 30px;
  position: relative;
}

.contact-box-text::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 66px;
  background-color: #fff;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.contact-box-text h4 {
  font-size: inherit;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  padding-bottom: 10px;
}

.contact-box-text p {
  font-size: 16px;
  color: #fff;
}

.contact-form {
  padding-top: 30px;
}

.contact-map {
  position: relative;
  top: 120px;
}

.map-frame {
  height: 768px;
}

.faq {
  margin-bottom: 20px;
}

.faq .accordion-item {
  margin-bottom: 20px;
  border: 0;
  background-color: #d9eae7;
  background-size: contain;
}

.faq .accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border-radius: 5px 5px 0 0;
  -webkit-transition: color 0.15s ease-in-out,
    background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, border-radius 0.15s ease,
    -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
  cursor: pointer;
}

.faq .accordion-header.collapsed {
  background-color: #7865ff;
  border-radius: 5px;
}

.faq .accordion-header:not(.collapsed) {
  background-color: transparent;
  color: #414b56;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.faq .accordion-header:not(.collapsed)::after {
  background-image: none;
  content: "\f068";
  font-family: "Font Awesome 5 Free";
}

.faq .accordion-header::after {
  background-image: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
}

.faq .accordion-body {
  font-size: 16px;
  border-radius: 0 0 5px 5px;
  color: #414b56;
  padding: 25px 20px;
  position: relative;
}

.faq .accordion-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 515px;
  height: 1px;
  background-color: #717171;
}

.faq .accordion-body span {
  display: block;
  text-align: justify;
}

.error {
  padding-bottom: 40px;
}

.error_img {
  padding-bottom: 70px;
}

.error_content h3 {
  font-size: 34px;
  font-weight: 600;
}

.error_content p {
  padding: 25px 0;
  width: 416px;
  margin: 0 auto;
}

/*** Footer ***/
.footer {
  background-color: #232323;
  padding: 100px 0;
  position: relative;
}

.footer .footer-widget .footer-logo {
  margin-bottom: 30px;
}

.footer .footer-widget .footer-widget-head {
  padding-bottom: 5px;
  text-transform: capitalize;
}

.footer .footer-widget.footer-about .footer-about-content p {
  padding-bottom: 32px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d4d4d4;
  text-align: justify;
}

.footer .footer-widget ul li {
  list-style: none;
  color: #fff;
  margin-bottom: -5px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer .footer-widget ul li::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 1px;
  background-color: #7865ff;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}

.footer .footer-widget ul li:hover {
  padding-left: 15px;
}

.footer .footer-widget ul li:hover::before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.footer .footer-widget ul li i {
  font-size: 16px;
  margin-right: 30px;
}

.footer .footer-widget ul li a {
  font-size: 12px;
  text-transform: capitalize;
}

.footer .footer-widget ul li a span {
  margin-left: 40px;
}

.footer .footer-widget h2 {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-decoration: underline;
}

.footer .footer-widget p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 32px;
}

.footer .footer_img {
  position: absolute;
  bottom: -50px;
  right: 50px;
  -webkit-animation: footer_animation 10s infinite;
  animation: footer_animation 10s infinite;
}

.footer_img_2 {
  position: absolute;
  bottom: 50px;
  right: 0px;
  -webkit-animation: footer_animation_2 10s infinite;
  animation: footer_animation_2 10s infinite;
}

.footer-social {
  margin-bottom: 40px;
}

.footer-social .social-link ul li a {
  color: #fff !important;
  border: 1px solid #fff !important;
}

.footer-social .social-link ul li:hover a {
  background-color: #7865ff !important;
  border: 1px solid #7865ff !important;
}

.subcriveInput {
  position: relative;
}

.subcriveInput div input[type="text"] {
  padding: 18px 30px;
}

.subcriveInput .subcriveBtn {
  position: absolute;
  top: 6px;
  right: 10px;
  width: 46px;
  height: 46px;
  background-color: #7865ff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.pl-25 {
  padding-left: 25px;
}

.footer-space-3 {
  margin: 24px 0 30px;
  border-bottom: 1px solid #d4d4d4;
}

.footer-contact {
  color: #fff;
}

.footer-contact .location,
.footer-contact .call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 23px;
}

.footer-contact .location:last-child,
.footer-contact .call:last-child {
  margin-bottom: 0;
}

.footer-contact .location .icon,
.footer-contact .call .icon {
  padding-right: 15px;
}

.footer-contact .location .icon i,
.footer-contact .call .icon i {
  width: 36px;
  height: 36px;
  background-color: #7865ff;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
}

.footer-contact .location .info p,
.footer-contact .call .info p {
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 16px;
}

.footer-contact .location .info a,
.footer-contact .call .info a {
  display: block;
  font-size: 16px;
}

@-webkit-keyframes footer_animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes footer_animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes footer_animation_2 {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes footer_animation_2 {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.news_feed ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 13px !important;
  list-style: none;
}

.news_feed ul li::before {
  background-color: transparent !important;
}

.news_feed ul li:hover {
  padding-left: 0 !important;
}

.news_feed ul li .news_feed-img {
  margin-right: 20px;
  width: 125px;
  overflow: hidden;
  border-radius: 3px;
}

.news_feed ul li .news_feed-img img {
  border-radius: 3px;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.news_feed ul li:hover .news_feed-img img {
  -webkit-transform: scale(1.1) rotate(5deg);
  transform: scale(1.1) rotate(5deg);
}

.news_feed ul li .news_feed-info h2 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid #d4d4d4;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.news_feed ul li .news_feed-info p {
  font-size: 16px;
  color: #7865ff;
  text-transform: capitalize;
  margin-bottom: 0;
}

.footer-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #7865ff;
  padding: 24px 0;
}

.footer-author .footer_logo {
  padding-right: 25px;
  margin-right: 25px;
  border-right: 1px solid #17a28a;
}

.footer-author .footer_copyright {
  font-size: 16px !important;
  color: #fff;
}

.footer-author-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-author-2 .footer-bottom-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.footer-author-2 .footer-bottom-link ul li {
  list-style: none;
  padding-left: 25px;
}

.footer-author-2 .footer-bottom-link ul li:first-child {
  padding-left: 0;
}

.footer-author-2 .footer-bottom-link ul li a {
  color: #fff;
}

/*********** Responsive CSS **************/
@media screen and (min-width: 1600px) and (max-width: 1800px) {
  .banner-img {
    left: 30px;
    width: 550px;
  }
  .banner-1-graphic,
  .banner-1-graphic {
    left: 60px;
  }
  .company::before {
    left: 210px;
  }
  .shadow-bg::before {
    left: 150px;
  }
  .banner-3::before {
    left: 70px;
  }
  .recentCampaigns .banner-1-graphic {
    right: 60px;
  }
}

@media screen and (min-width: 1401px) and (max-width: 1599px) {
  .banner-img {
    left: 20px;
    width: 100%;
  }
  .banner-1-graphic,
  .banner-1-graphic {
    left: 10px;
  }
  .company::before {
    left: 100px;
  }
  .shadow-bg::before {
    left: 80px;
  }
  .banner-3::before {
    left: 0px;
  }
  .recentCampaigns .banner-1-graphic {
    right: 0px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .banner-img {
    left: 0px;
    width: 100%;
  }
  .banner-1-graphic,
  .banner-1-graphic {
    left: 5px;
  }
  .company::before {
    left: 30px;
  }
  .shadow-bg::before {
    left: 0px;
  }
  .banner-3::before {
    display: none;
  }
  .banner-3::after {
    display: none;
  }
  .recentCampaigns .banner-1-graphic {
    visibility: hidden;
  }
  .main-header .main-menu-2 {
    padding: 30px 10px;
  }
}

@media screen and (min-width: 1167px) and (max-width: 1199px) {
  .banner-img {
    left: 0px;
    width: 100%;
  }
  .company::before {
    left: 30px;
  }
  .shadow-bg::before {
    left: 0px;
  }
  .main-header .main-menu-2 {
    padding: 30px 10px;
  }
}

@media screen and (max-width: 1166px) {
  .navigation-main-area ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 0px;
    column-gap: 0px;
  }
  .navigation-main-area li {
    margin-left: 30px;
  }
  .navigation-main-area li:first-child {
    margin-left: 0;
  }
  .main-header .main-menu-2 {
    padding: 30px 10px;
  }
  .top-header-2::after {
    width: 32%;
    right: -20px;
  }
  .banner-img {
    left: 0px;
    width: 100%;
  }
  .company::before {
    left: 30px;
  }
  .shadow-bg::before {
    left: 0px;
  }
}

@media screen and (max-width: 1024px) {
  .top-header {
    display: none;
  }
  .main-header.sticky-on {
    padding: 10px 15px;
  }
  .menu-header .container {
    padding: 0;
  }
  .menu-header .main-menu {
    position: relative;
    top: 0;
    padding: 15px 40px;
  }
  .mobile_menu_button {
    display: block;
  }
  .navigation-main-area {
    display: none;
  }
  .navigation-main-area ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .display-none {
    display: none;
  }
  .grid-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
  }
  .grid-item.grid-item-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    min-width: 32%;
  }
  .grid-item img {
    width: 100%;
    height: 100%;
  }
  .grid-item-content {
    -webkit-transform: translateY(180px);
    transform: translateY(180px);
  }
  .ed-list li::before {
    top: 30%;
  }
  .contact-box {
    padding: 30px 15px;
  }
}

@media screen and (max-width: 991px) {
  .blog-sidebar {
    padding-left: 0;
  }
  .banner-img {
    text-align: center;
    left: 0;
    width: 100%;
  }
  .company::before {
    left: 0px;
  }
  .home-1-slider .swiperButton {
    top: 60%;
  }
  .ed-list li::before {
    top: 50%;
  }
  .contact-box {
    padding: 30px 40px;
  }
  .contact-form:last-child {
    padding-top: 0;
  }
  .table-left-60 {
    padding-left: 0 !important;
  }
  .donate {
    padding: 0;
    margin-top: 0;
    background-color: #7865ff;
  }
  .donate .container .donate-wrap {
    position: relative;
    bottom: 0;
  }
  .donateContent h2 {
    font-size: 28px;
  }
  .footer-widget.footer-nav {
    margin-bottom: 40px;
  }
  .footer-widget.footer-about li {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .single-post .single-post-content {
    padding: 0px 18px 30px;
  }
  .single-post .single-post-content span {
    font-size: 14px;
  }
  .single-post .single-post-content h4 {
    font-size: 18px;
  }
  .counter-box p {
    font-size: 20px;
  }
  .grid-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .grid-item.grid-item-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .ed-DateLocation {
    padding: 40px;
  }
  .ed-DateLocation::before {
    left: 48%;
  }
  .ed-list li::before {
    top: 30%;
  }
  .review-author {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }
  .review-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
  }
  .product-ddr-tab .nav-tabs {
    gap: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .total-cost table tbody tr td:last-child {
    width: initial;
  }
  .total-cost table th:last-child,
  .total-cost table td:last-child {
    text-align: center;
  }
  .donate .container .donate-wrap {
    padding: 66px 35px;
  }
  .donateContent p {
    margin-bottom: 20px;
  }
  .footer-widget {
    margin-bottom: 20px;
  }
  .footer_img {
    opacity: 0;
  }
  .footer-author-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .logo-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 80%;
  }
  .menu-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .pl-25 {
    padding-left: 0px;
  }
  .section-title .sTitle-head {
    font-size: 28px;
  }
  .hero-content h3 {
    font-size: 38px;
  }
  .single-post .single-post-content {
    padding: 20px;
  }
  .single-post .single-post-content span {
    font-size: inherit;
  }
  .single-post .single-post-content h4 {
    font-size: 22px;
  }
  .about-content h3 {
    font-size: 28px;
  }
  .blog-content .blog-left .thm-btn-share {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
  }
  .ed-DateLocation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
  .ed-DateLocation::before {
    width: 90%;
    height: 1px;
  }
  .review-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
  }
  .related-product-head .related-product-control {
    bottom: 40px;
  }

  .funfact-wrap_2 .counter-box::after {
    content: none;
  }
}

@media screen and (max-width: 525px) {
  .footer-author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer-author .footer_logo {
    padding-right: 0;
    padding-bottom: 25px;
    margin-right: 0;
    margin-bottom: 25px;
    border-right: 0;
    border-bottom: 1px solid #17a28a; 
  }
}

@media screen and (max-width: 420px) {
  .ed-quote {
    padding: 207px 20px 40px;
  }
  .product-ddr-tab .nav-tabs {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .product-ddr-tab .nav-tabs .nav-link {
    padding: 0.5rem 0.4rem;
  }
  .review-post-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .donateContent h2 {
    font-size: 24px;
  }
  .donateContent p {
    text-align: justify;
  }
  .error_content p {
    width: 100%;
  }
}

/* Page title banner */
/*# sourceMappingURL=style.css.map */

.feature-content .feature-icon img {
  width: 50px;
}


.footer .footer-widget ul li b {
    font-weight: 600;
    font-size: 14px;
}

.footer-contact .location .info p, .footer-contact .call .info p {
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 12px;
}

.footer-contact .location .info a, .footer-contact .call .info a {
    display: block;
    font-size: 12px;
}

.main-header .main-menu-2 .navigation-main-area li a i {
    margin-left: 5px;
}


.second-level-menu {
  position: absolute !important;
  left: 100% !important;
  top: 0 !important;
  transform: scale(0) !important;
  transform-origin: left center;
}

.second-level-hover:hover .second-level-menu {
  transform: scale(1) !important;
}

          .test-price-circle {
    font-size: 20px;
    color: #fff;
    background-color: #7865ff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.test-price-heading {
    color:#7865ff ;
}

.test-price-btn  {
    /*width: max-content!important;*/
    padding-inline: 1rem;
}

.test-list {
        padding-inline-start: 40px;
}
}

/********* MAP SECTION *********/




.container-map {
    display: flex;
    grid-gap: 0;
    padding: 0;
}

.container-map>.info-section{
    width: 30%;
    order: 0;
}
.container-map>.map{
    width: 70%;
    order: 1;
}

  .clinics {
    display: grid;
    grid-template-columns: 1fr;
    /* grid-gap: 10px; */
    height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
}

  .clinics div img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0.8;
  }

  .clinics div img:hover {
    opacity: 1;
  }


  .map-info-individual-wrapper {
    border-top: 1px solid #cccc;
    padding: 15px 10px;
  }
  .map-info-individual-wrapper:last-child {
    border-bottom: 1px solid #ccc;
  }
  .map-info-individual-wrapper h3 {
    font-size: 24px;
  }
  .map-info-individual-wrapper p {
    font-size: 16px;
    margin-bottom: 0;
  }

  .map-info-individual-wrapper .success-text {
    color: green;
    font-weight: 600;
  }
  .map-info-individual-wrapper:hover {
    background: #efefef;
    cursor: pointer;
}

    .clinics {
    display: grid;
    grid-template-columns: 1fr;
    /* grid-gap: 10px; */
    height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
    }
    .clinics div img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0.8;
    }
    
    .clinics div img:hover {
    opacity: 1;
    }
    @media (max-width: 990px) {
    .container-map {
    grid-template-columns: 100fr;
    }
    }
    .map-info-individual-wrapper {
    border-top: 1px solid #cccc;
    padding: 15px 10px;
    }
    .map-info-individual-wrapper:last-child {
    border-bottom: 1px solid #ccc;
    }
    .map-info-individual-wrapper h3 {
    font-size: 24px;
    }
    .map-info-individual-wrapper p {
    font-size: 16px;
    margin-bottom: 0;
    }
    .map-info-individual-wrapper .success-text {
    color: green;
    font-weight: 600;
    }
    .map-info-individual-wrapper:hover {
    background: #efefef;
    cursor: pointer;
    }

  @media (max-width: 990px) {
    .container-map {
      flex-flow: column;
          overflow-x: auto;
    }
    .container-map>.info-section, .container-map>.map {
        width: 100%;
    }
    .container-map>.info-section {
        order: 1;
    }
    .container-map>.map  {
        height: 300px;
        order: 0;
    }
    .container-map>.info-section {
        height: 500px;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    .clinics {
    display: grid;
    grid-template-columns: 1fr;
    /* grid-gap: 10px; */
    height: initial;
    overflow: auto;
    }
  }
/********* MAP SECTION *********/

.slick-slider-height {
    background-image:url("https://static.wixstatic.com/media/11062b_db8f5ddb085b41fda169efb854f9b69e~mv2.jpg/v1/fill/w_1903,h_476,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/11062b_db8f5ddb085b41fda169efb854f9b69e~mv2.jpg");
    width: 100%;
    height: 400px;
    display: flex!important;
    
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.slick-slider-height * {
    color: #fff!important;
    max-width: 125ch;
    padding: 0 15px;
}

.slick-slider-height .text-center >*+* {
    margin-top:15px;
}

.slick-slider-height.slider-pic-1 * {
    color: #111!important;
}

.slick-slider-height.slider-pic-1  {
    background-image:url('https://static.wixstatic.com/media/11062b_7e61ffd6dbb040ee8b0e4dc604e8fd4ef000.jpg/v1/fill/w_1903,h_476,al_c,q_85,usm_0.33_1.00_0.00,enc_auto/11062b_7e61ffd6dbb040ee8b0e4dc604e8fd4ef000.jpg');
}