/*
@File: Traba. Charity Foundation WordPress Theme Styles

* This file contains the styling for the actual Theme, this
is the file you need to edit to change the look of the
Theme.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Default Btn Area CSS
** - Section Title CSS
** - Preloader Area CSS
** - Top Header Area CSS
** - Navbar Area CSS
** - Responsive Navbar Area CSS
** - Search Popup CSS
** - Main Banner Area CSS
** - About Area CSS
** - Concern Area CSS
** - Causes Area CSS
** - Causes Details Area CSS
** - Easy Donation Area CSS
** - Volunteers Area CSS
** - Animation Overview Area CSS
** - Donation Calculate Area CSS
** - Shop Area CSS
** - Shop Widget Area CSS
** - Product Details Area CSS
** - Partner Area CSS
** - Blog Area CSS
** - Widget Area CSS
** - Blog Details Area CSS
** - Main Slider Area CSS
** - Working Area CSS
** - Mission Vision Area CSS
** - Working Video Area CSS
** - Dollar Area CSS
** - Give Your Best Area CSS
** - Find Help Area CSS
** - Fun Facts Area CSS
** - Events Area CSS
** - Events Details Area CSS
** - Page Banner Area CSS
** - Pricing Area CSS
** - Gallery Area CSS
** - FAQ Area CSS
** - Contact Area CSS
** - Authentication Area CSS
** - Privacy Policy Area CSS
** - Terms & Conditions Area CSS
** - Not Found Area CSS
** - Cart Area CSS
** - Wishlist Area CSS
** - Checkout Area CSS
** - Footer Area CSS
** - Copyright Area CSS
** - Back to Top CSS
** - Pagination Area CSS

*/
/*================================================
Default CSS
=================================================*/
:root {
  --mainfontFamily: "Quicksand", sans-serif;
  --optionalfontFamily: "Amatic SC", sans-serif;
  --optionalHeadingFamily: "Work Sans", sans-serif;
  --primaryColor: #FE8042;
  --secondaryColor: #5CC397;
  --whiteColor: #ffffff;
  --blackColor: #132631;
  --paragraphColor: #646464;
  --fontSize: 16px;
  --transition: .6s;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--mainfontFamily);
  color: var(--paragraphColor);
  font-size: var(--fontSize);
  font-weight: 500;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-weight: 500;
}
p:last-child {
  margin-bottom: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--blackColor);
  font-weight: bold;
}
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: var(--blackColor);
}
.h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: var(--primaryColor);
}

a {
  text-decoration: none;
  outline: 0 !important;
  transition: var(--transition);
}

:focus {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}

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

.ptb-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.pt-0 .ptb-120 {
  padding-top: 0 !important;
}
.pt-0 .pt-120 {
  padding-top: 0 !important;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-95 {
  padding-bottom: 95px;
}

.work-sans-font {
  font-family: var(--optionalHeadingFamily) !important;
}

/*================================================
Default Btn Area CSS
=================================================*/
.default-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15.8px 30px 17px;
  border-radius: 60px;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  font-weight: 700;
  transition: var(--transition);
}
.default-btn i {
  font-size: 25px;
  margin-left: 12px;
}
.default-btn:hover {
  background: var(--secondaryColor);
}
.default-btn.without-border-radius {
  border-radius: 0;
}

/*================================================
Section Title CSS
=================================================*/
.section-title {
  max-width: 640px;
  margin: 0 auto 40px;
}
.section-title .sub {
  font-size: 25px;
  color: var(--primaryColor);
  font-weight: 700;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.1;
}
.section-title h2 {
  font-size: 45px;
  margin-bottom: 0;
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader-area {
  z-index: 9999;
  background-color: var(--whiteColor);
}
.preloader-area .loader {
  transform: translateY(-50%);
  top: 50%;
}
.preloader-area .waviy {
  font-size: 50px;
  margin-top: 10px;
}
.preloader-area .waviy span {
  animation-delay: 0.1s;
  animation: waviy 1s infinite;
  font-weight: bold;
  color: var(--blackColor);
}
.preloader-area .waviy span:nth-child(2) {
  animation-delay: 0.2s;
}
.preloader-area .waviy span:nth-child(3) {
  animation-delay: 0.3s;
}
.preloader-area .waviy span:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes waviy {
  0%, 40%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-20px);
  }
}
/*================================================
Top Header Area CSS
=================================================*/
.top-header-area {
  background-color: #EBF0F2;
  padding-top: 15px;
  padding-bottom: 15px;
}
.top-header-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.top-header-area.top-header-style-two {
  background-color: transparent;
}
.top-header-area.top-header-style-two .top-header-info li {
  color: var(--whiteColor);
}
.top-header-area.top-header-style-two .top-header-info li span {
  color: var(--whiteColor);
}
.top-header-area.top-header-style-two .top-header-info li a {
  color: var(--whiteColor);
}
.top-header-area.top-header-style-two .top-header-info li a:hover {
  color: var(--primaryColor);
}
.top-header-area.top-header-style-two .top-header-social-info li a i {
  color: var(--whiteColor);
}
.top-header-area.top-header-style-two .top-header-social-info li a i:hover {
  color: var(--primaryColor);
}
.top-header-area.top-header-style-two .top-header-social-info .dropdown .dropdown-toggle {
  color: var(--whiteColor);
}
.top-header-area.top-header-style-two .top-header-social-info .dropdown .dropdown-toggle::before {
  color: var(--whiteColor);
}

.top-header-info {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.top-header-info li {
  list-style-type: none;
  font-size: 15px;
  color: #3C5159;
  font-weight: 500;
  margin-right: 30px;
}
.top-header-info li:last-child {
  margin-right: 0;
}
.top-header-info li span {
  color: var(--blackColor);
  font-weight: 600;
}
.top-header-info li a {
  color: #3C5159;
}
.top-header-info li a:hover {
  color: var(--primaryColor);
}

.top-header-social-info {
  display: flex;
  justify-content: end;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.top-header-social-info li {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-right: 20px;
}
.top-header-social-info li:last-child {
  margin-right: 0;
}
.top-header-social-info li a i {
  display: flex;
  color: var(--blackColor);
  transition: var(--transition);
}
.top-header-social-info li a i:hover {
  color: var(--primaryColor);
}
.top-header-social-info .dropdown .dropdown-toggle {
  background-color: transparent;
  color: var(--blackColor);
  position: relative;
  border: 0;
  padding: 0 22px 0 0;
  display: flex;
  align-items: center;
  outline: 0;
  font-size: 15px;
  font-weight: 600;
}
.top-header-social-info .dropdown .dropdown-toggle::after {
  display: none;
}
.top-header-social-info .dropdown .dropdown-toggle::before {
  position: absolute;
  content: "\ea5f";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: #7A8095;
  font-family: "tabler-icons";
  font-size: 15px;
}
.top-header-social-info .dropdown .dropdown-menu {
  box-shadow: 0px 10px 55px rgba(0, 0, 0, 0.1);
  background-color: var(--whiteColor);
  transform: translateY(0) !important;
  transition: var(--transition);
  top: 38px !important;
  visibility: hidden;
  display: block;
  height: 192px;
  width: 180px;
  padding: 0;
  opacity: 0;
  border: 0;
  right: 0 !important;
  left: auto !important;
  overflow-y: scroll;
  overflow-x: hidden;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.top-header-social-info .dropdown .dropdown-menu li {
  border-bottom: 1px solid #eeeeee;
  margin-right: 0;
  width: 100%;
}
.top-header-social-info .dropdown .dropdown-menu li .dropdown-item {
  background-color: transparent !important;
  transition: var(--transition);
  color: var(--paragraphColor);
  padding: 12px 15px;
  width: 100%;
  font-weight: 400;
  font-size: 15px;
}
.top-header-social-info .dropdown .dropdown-menu li .dropdown-item:hover {
  background-color: #f8f8f8 !important;
  background-color: transparent !important;
}
.top-header-social-info .dropdown .dropdown-menu li:last-child {
  border-bottom: none;
}
.top-header-social-info .dropdown .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
}
.top-header-social-info .dropdown .dropdown-menu::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 50px;
}
.top-header-social-info .dropdown .dropdown-menu::-webkit-scrollbar-track {
  background: #F0F0F4;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 50px;
}
.top-header-social-info .dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background: #e0e0e2;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 50px;
}
.top-header-social-info .dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--primaryColor);
  border-radius: 50px;
}

/*================================================
Navbar Area CSS
=================================================*/
.navbar {
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  z-index: 999;
  padding-left: 0;
  padding-right: 0;
  padding-top: 12px;
  padding-bottom: 12px;
}
.navbar.sticky {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  background-color: var(--whiteColor);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.navbar .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 75px;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.navbar .navbar-brand .black-logo {
  display: block;
}
.navbar .navbar-brand .white-logo {
  display: none;
}
.navbar .navbar-toggler {
  color: var(--primaryColor);
  font-size: inherit;
  box-shadow: unset;
  border: none;
  padding: 0;
}
.navbar .navbar-toggler .burger-menu {
  cursor: pointer;
}
.navbar .navbar-toggler .burger-menu span {
  height: 3px;
  width: 30px;
  margin: 5px 0;
  display: block;
  background: var(--primaryColor);
}
.navbar ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 18px;
  margin-right: 18px;
}
.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: var(--blackColor);
  transition: var(--transition);
  font-weight: 600;
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  padding-top: 25px;
  padding-bottom: 25px;
}
.navbar .navbar-nav .nav-item .nav-link i {
  line-height: 1;
  margin-left: 5px;
  position: relative;
  top: 2px;
  color: #A3A7B5;
  transition: var(--transition);
}
.navbar .navbar-nav .nav-item .nav-link:hover, .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .nav-link:hover i, .navbar .navbar-nav .nav-item .nav-link.active i {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-toggle::after {
  display: none;
}
.navbar .navbar-nav .nav-item .dropdown-icon {
  padding-right: 20px;
  position: relative;
}
.navbar .navbar-nav .nav-item .dropdown-icon::after {
  position: absolute;
  vertical-align: 0;
  content: "\ea5f";
  font-weight: normal;
  margin-left: 0;
  right: 0;
  border: 0;
  top: 27px;
  font-family: "tabler-icons" !important;
  font-size: 16px;
  transition: all ease 0.5s;
  color: #A3A7B5;
}
.navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}
.navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
  margin-left: 7px;
}
.navbar .navbar-nav .nav-item:hover .nav-link, .navbar .navbar-nav .nav-item.active .nav-link {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item:hover .dropdown-icon::after, .navbar .navbar-nav .nav-item.active .dropdown-icon::after {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  top: 70px;
  opacity: 0;
  z-index: 99;
  border: none;
  width: 280px;
  margin-top: 0;
  display: block;
  border-radius: 0;
  position: absolute;
  visibility: hidden;
  background: var(--whiteColor);
  transition: all 0.2s ease-in-out;
  transform: translate3d(0, 18px, 0);
  box-shadow: 0px 4px 70px 0px rgba(0, 0, 0, 0.1);
  padding-top: 30px;
  padding-bottom: 30px;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item {
  margin: 0;
  padding-left: 30px;
  padding-right: 30px;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--paragraphColor);
  font-size: 15.5px;
  font-weight: 500;
  border-bottom: 1px solid #ECEDE5;
  margin-bottom: 15px;
  position: relative;
  padding-top: 0;
  padding-bottom: 15px;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.dropdown-icon {
  padding-right: 20px;
  position: relative;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.dropdown-icon::after {
  position: absolute;
  vertical-align: 0;
  content: "\ea5f";
  margin-left: 0;
  right: 0;
  border: 0;
  top: 15px;
  font-family: "tabler-icons" !important;
  font-size: 16px;
  transition: all ease 0.5s;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primaryColor);
  background-color: transparent !important;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active i, .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover i {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -100%;
  right: auto;
  margin-top: 0;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--paragraphColor);
  border-bottom: 1px solid #ECEDE5;
  margin-bottom: 15px;
  padding-top: 0;
  padding-bottom: 15px;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -100%;
  right: auto;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--paragraphColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primaryColor);
  background-color: transparent !important;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 100%;
  right: auto;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link {
  color: var(--paragraphColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--primaryColor);
  background-color: transparent !important;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu .nav-item:last-child .nav-link {
  border-bottom: none;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item.active .nav-link {
  color: var(--primaryColor);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item:hover .dropdown-menu {
  opacity: 1;
  margin-top: 0;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar .navbar-nav .nav-item .dropdown-menu .nav-item:last-child .nav-link {
  border-bottom: none;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.navbar .others-option {
  margin-left: 25px;
}
.navbar .others-option .option-item {
  margin-right: 25px;
  display: flex;
  align-items: center;
}
.navbar .others-option .option-item .search-bar {
  display: flex;
}
.navbar .others-option .option-item .search-bar i {
  font-size: 25px;
  color: var(--blackColor);
  transition: var(--transition);
  cursor: pointer;
}
.navbar .others-option .option-item .search-bar i:hover {
  color: var(--primaryColor);
}
.navbar .others-option .option-item .cart-btn {
  display: flex;
  position: relative;
  margin-right: 10px;
}
.navbar .others-option .option-item .cart-btn i {
  font-size: 25px;
  color: var(--blackColor);
  transition: var(--transition);
  cursor: pointer;
}
.navbar .others-option .option-item .cart-btn i:hover {
  color: var(--primaryColor);
}
.navbar .others-option .option-item .cart-btn span {
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  background-color: var(--blackColor);
  color: var(--whiteColor);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  position: absolute;
  right: -10px;
  top: -10px;
}
.navbar .others-option .option-item .default-btn {
  background-color: var(--secondaryColor);
}
.navbar .others-option .option-item .default-btn:hover {
  background-color: var(--primaryColor);
}
.navbar .others-option .option-item:last-child {
  margin-right: 0;
}
.navbar.navbar-style-two {
  padding-top: 0;
  padding-bottom: 0;
}
.navbar.navbar-style-two .container-fluid {
  margin-left: 30px;
  margin-right: 30px;
  padding: 12px 30px;
  background-color: var(--whiteColor);
  border-radius: 5px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
}
.navbar.navbar-style-two.sticky {
  background-color: transparent;
  box-shadow: unset;
}
.navbar.navbar-style-two.sticky .container-fluid {
  margin-top: 10px;
}
.navbar.navbar-style-two .others-option .option-item .default-btn {
  background-color: var(--primaryColor);
}
.navbar.navbar-style-two .others-option .option-item .default-btn:hover {
  background-color: var(--secondaryColor);
}
.navbar.navbar-style-three .others-option .option-item .default-btn {
  background-color: var(--primaryColor);
}
.navbar.navbar-style-three .others-option .option-item .default-btn:hover {
  background-color: var(--secondaryColor);
}

.navbar.sticky.traba-hide-adminbar {
  margin-top: 32px;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.main-header-area {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}

.top-header-area.top-header-style-two.traba-hide-adminbar {
  margin-top: 32px;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: transparent;
  color: var(--primaryColor);
}

.dropdown-item:focus, .dropdown-item:hover {
  color: var(--primaryColor);
}

.navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  white-space: inherit;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu .nav-item a {
  white-space: inherit;
}

/*================================================
Responsive Navbar Area CSS
=================================================*/
.responsive-navbar {
  border: 0 !important;
  border: 0 !important;
  background-color: var(--whiteColor);
}
.responsive-navbar .offcanvas-header {
  padding: 15px;
  border-bottom: 1px solid #eeeeee;
}
.responsive-navbar .offcanvas-header .close-btn {
  background-color: transparent;
  color: var(--blackColor);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  border: 0;
}
.responsive-navbar .offcanvas-body {
  padding: 30px 15px 15px;
}
.responsive-navbar .offcanvas-body .navbar-nav .menu-item-has-children {
  position: relative;
  padding: 5px 0;
  z-index: 1;
}
.responsive-navbar .offcanvas-body .navbar-nav .menu-item-has-children::before {
  position: absolute;
  content: "\eb5d";
  z-index: -1;
  right: 0;
  font-family: "tabler-icons" !important;
  width: 30px;
  height: 30px;
  background-color: #f3f3f3;
  line-height: 30px;
  text-align: center;
  top: 0;
}
.responsive-navbar .offcanvas-body .navbar-nav li {
  margin-bottom: 25px;
  list-style-type: none;
  font-size: 15px;
}
.responsive-navbar .offcanvas-body .navbar-nav li:last-child {
  margin-bottom: 0;
}
.responsive-navbar .offcanvas-body .navbar-nav li a {
  text-decoration: none;
  width: 100% !important;
  display: block;
}
.responsive-navbar .offcanvas-body .navbar-nav li .sub-menu {
  display: none;
  background-color: #f8f8f8;
  margin-top: 12px;
  padding: 20px;
}
.responsive-navbar .offcanvas-body .navbar-nav li .sub-menu li {
  list-style-type: none;
  margin-bottom: 12px;
}
.responsive-navbar .offcanvas-body .navbar-nav li .sub-menu li:last-child {
  margin-bottom: 0;
}
.responsive-navbar .offcanvas-body .navbar-nav li .sub-menu li .sub-menu {
  background-color: var(--whiteColor);
}
.responsive-navbar .offcanvas-body .navbar-nav .current-menu-item a {
  color: var(--primaryColor);
  font-weight: 500;
}
.responsive-navbar .offcanvas-body .navbar-nav .current-menu-ancestor a {
  color: var(--primaryColor);
}
.responsive-navbar .offcanvas-body .navbar-nav .current-menu-ancestor ul li a {
  color: var(--blackColor);
}
.responsive-navbar .offcanvas-body .navbar-nav .current-menu-ancestor ul li.current_page_item a {
  color: var(--primaryColor);
}
.responsive-navbar .offcanvas-body .others-option {
  margin-top: 20px;
}
.responsive-navbar .offcanvas-body .others-option .option-item {
  margin-right: 30px;
}
.responsive-navbar .offcanvas-body .others-option .option-item:nth-child(2) {
  padding-right: 20px;
}
.responsive-navbar .offcanvas-body .others-option .option-item:last-child {
  margin-right: 0;
}

.rs-others-option {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  right: 60px;
}
.rs-others-option .option-item {
  margin-right: 15px;
  display: flex;
  align-items: center;
}
.rs-others-option .option-item .search-bar {
  display: flex;
}
.rs-others-option .option-item .search-bar i {
  font-size: 22px;
  color: var(--blackColor);
  transition: var(--transition);
  cursor: pointer;
}
.rs-others-option .option-item .search-bar i:hover {
  color: var(--primaryColor);
}
.rs-others-option .option-item .cart-btn {
  display: flex;
  position: relative;
  margin-right: 10px;
}
.rs-others-option .option-item .cart-btn i {
  font-size: 22px;
  color: var(--blackColor);
  transition: var(--transition);
  cursor: pointer;
}
.rs-others-option .option-item .cart-btn i:hover {
  color: var(--primaryColor);
}
.rs-others-option .option-item .cart-btn span {
  display: inline-block;
  height: 15px;
  width: 15px;
  line-height: 15px;
  background-color: var(--blackColor);
  color: var(--whiteColor);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  position: absolute;
  right: -6px;
  top: -6px;
}
.rs-others-option .option-item .default-btn {
  background-color: var(--secondaryColor);
}
.rs-others-option .option-item .default-btn:hover {
  background-color: var(--primaryColor);
}
.rs-others-option .option-item:last-child {
  margin-right: 0;
}

/*================================================
Search Popup CSS
=================================================*/
.search-popup {
  position: fixed;
  width: 0;
  height: 0;
  top: auto;
  left: auto;
  z-index: -999;
  opacity: 0;
  transition: 0.6s;
}
.search-popup.active {
  z-index: 9999;
  opacity: 1;
}
.search-popup.active .search-popup-overlay {
  top: auto;
  z-index: 6;
  display: block;
  top: 0;
  -khtml-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.8;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0, 1);
  height: 100%;
  width: 100%;
}
.search-popup.active .search-popup-content {
  width: 100%;
  opacity: 1;
  z-index: 999;
  transition: 0.6s;
}
.search-popup .search-popup-overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  z-index: 3;
  opacity: 0;
  display: none;
  background-color: var(--blackColor);
  cursor: url(../images/cross-btn.png), auto;
}
.search-popup .search-popup-content {
  position: fixed;
  width: 0;
  max-width: 565px;
  padding: 30px 15px;
  left: 0;
  right: 0;
  top: 45%;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  z-index: 3;
}
.search-popup .search-popup-content .search-popup-form {
  position: relative;
}
.search-popup .search-popup-content .search-popup-form .form-control {
  width: 100%;
  background-color: var(--whiteColor);
  font-size: 15px;
  color: var(--paragraphColor);
  border: none;
  outline: none;
  height: 65px;
  padding-top: 5px;
  border-radius: 0;
  padding: 15px 80px 15px 25px;
}
.search-popup .search-popup-content .search-popup-form .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.search-popup .search-popup-content .search-popup-form .form-control::placeholder {
  color: var(--paragraphColor);
  transition: 0.6s;
}
.search-popup .search-popup-content .search-popup-form .form-control:focus {
  box-shadow: unset;
}
.search-popup .search-popup-content .search-popup-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.search-popup .search-popup-content .search-popup-form .form-control:focus::placeholder {
  color: transparent;
}
.search-popup .search-popup-content .search-popup-form button {
  padding: 0;
  width: 65px;
  height: 65px;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: var(--primaryColor);
  color: var(--whitecolor);
  right: -1px;
  border: none;
  border-radius: 0;
  transition: 0.6s;
  font-size: 22px;
}
.search-popup .search-popup-content .search-popup-form button:focus {
  box-shadow: unset;
}
.search-popup .search-popup-content .search-popup-form button:hover {
  background-color: var(--secondaryColor);
}

/*================================================
Main Banner Area CSS
=================================================*/
.main-banner-area {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.main-banner-area .container-fluid {
  padding-left: 30px;
  padding-right: 0;
}
.main-banner-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(96deg, #132631 4.87%, rgba(19, 38, 49, 0) 54%, rgba(19, 38, 49, 0.3) 97%);
  z-index: -1;
}
.main-banner-area::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(96deg, #132631 4.87%, rgba(19, 38, 49, 0) 54%, rgba(19, 38, 49, 0.3) 97%);
  z-index: -1;
}

.main-banner-content {
  max-width: 855px;
  padding-top: 170px;
  padding-bottom: 170px;
}
.main-banner-content .sub {
  font-size: 30px;
  font-weight: 700;
  color: #FFD025;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 8px;
  line-height: 1.1;
  letter-spacing: 2px;
}
.main-banner-content h1 {
  font-size: 80px;
  color: var(--whiteColor);
  margin-bottom: 15px;
  letter-spacing: -3px;
}
.main-banner-content h2 {
  font-size: 80px;
  color: var(--whiteColor);
  margin-bottom: 15px;
  letter-spacing: -3px;
}
.main-banner-content h2 {
  font-size: 80px;
  color: var(--whiteColor);
  margin-bottom: 15px;
  letter-spacing: -3px;
}
.main-banner-content h3 {
  font-size: 75px;
  color: var(--whiteColor);
  margin-bottom: 15px;
  letter-spacing: -3px;
}
.main-banner-content h4 {
  font-size: 70px;
  color: var(--whiteColor);
  margin-bottom: 15px;
  letter-spacing: -3px;
}
.main-banner-content h5 {
  font-size: 65px;
  color: var(--whiteColor);
  margin-bottom: 15px;
  letter-spacing: -3px;
}
.main-banner-content h6 {
  font-size: 60px;
  color: var(--whiteColor);
  margin-bottom: 15px;
  letter-spacing: -3px;
}
.main-banner-content p {
  color: #DCDCDC;
  font-weight: 500;
  margin-bottom: 0;
  max-width: 685px;
}
.main-banner-content .banner-btn {
  margin-top: 30px;
}
.main-banner-content .banner-bottom {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 55px;
  padding-top: 55px;
}
.main-banner-content .banner-bottom .heart {
  margin-right: 20px;
}
.main-banner-content .banner-bottom .title {
  display: flex;
  align-items: center;
  max-width: 265px;
}
.main-banner-content .banner-bottom .title h3 {
  font-size: 60px;
  color: var(--whiteColor);
  font-weight: 700;
  margin-bottom: 0;
  font-family: var(--optionalfontFamily);
}
.main-banner-content .banner-bottom .title p {
  font-weight: 500;
  color: var(--whiteColor);
  margin-left: 15px;
}
.main-banner-content .banner-bottom::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 400px;
  height: 2px;
  border-top: 2px dashed rgba(255, 255, 255, 0.3);
}

.main-banner-image {
  background-image: url(../../assets/images/main-banner/banner.png);
  background-position: center left;
  background-size: cover;
  height: 100%;
  margin-left: -50px;
}

.main-banner-map-shape {
  position: absolute;
  right: -20px;
  top: -85px;
  z-index: -1;
}

.main-banner-shape {
  position: absolute;
  right: -10px;
  top: -100px;
}

.main-banner-heart-shape {
  position: absolute;
  bottom: 90px;
  left: 43.2%;
  transform: translateX(-43.2%);
}

.main-banner-wrap-area {
  background-image: url(../images/main-banner/banner-bg2.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.main-banner-wrap-content {
  padding: 110px 0;
  max-width: 650px;
  margin-left: auto;
}
.main-banner-wrap-content .content {
  position: relative;
  z-index: 1;
}
.main-banner-wrap-content .content .sub {
  font-size: 30px;
  font-weight: 700;
  color: var(--primaryColor);
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 8px;
  line-height: 1.1;
  letter-spacing: 2px;
}
.main-banner-wrap-content .content h1 {
  font-size: 75px;
  margin-bottom: 15px;
  letter-spacing: -3px;
}
.main-banner-wrap-content .content h2 {
  font-size: 70px;
  margin-bottom: 15px;
  letter-spacing: -3px;
}
.main-banner-wrap-content .content h3 {
  font-size: 65px;
  margin-bottom: 15px;
  letter-spacing: -3px;
}
.main-banner-wrap-content .content h4 {
  font-size: 62px;
  margin-bottom: 15px;
  letter-spacing: -3px;
}
.main-banner-wrap-content .content h5 {
  font-size: 58px;
  margin-bottom: 15px;
  letter-spacing: -3px;
}
.main-banner-wrap-content .content h6 {
  font-size: 52px;
  margin-bottom: 15px;
  letter-spacing: -3px;
}
.main-banner-wrap-content .content p {
  font-weight: 500;
  margin-bottom: 0;
  max-width: 555px;
}
.main-banner-wrap-content .content .banner-btn {
  margin-top: 25px;
}
.main-banner-wrap-content .content .banner-btn .default-btn {
  background-color: var(--secondaryColor);
}
.main-banner-wrap-content .content .banner-btn .default-btn:hover {
  background-color: var(--primaryColor);
}
.main-banner-wrap-content .content::before {
  position: absolute;
  content: "";
  background-image: url(../images/vector-shape.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 985px;
  height: 505px;
  top: -95px;
  left: -145px;
  z-index: -1;
  filter: drop-shadow(0px 4px 25px rgba(0, 0, 0, 0.05));
}
.main-banner-wrap-content .banner-bottom {
  margin-top: 230px;
}
.main-banner-wrap-content .banner-bottom .inner-counter {
  border: 1px solid var(--whiteColor);
  background-color: #DAE6EC;
  padding: 25px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.main-banner-wrap-content .banner-bottom .inner-counter h3 {
  font-size: 60px;
  font-weight: 700;
  color: var(--blackColor);
  font-family: var(--optionalfontFamily);
  margin-bottom: 0;
}
.main-banner-wrap-content .banner-bottom .inner-counter p {
  color: var(--blackColor);
  margin-left: 10px;
}
.main-banner-wrap-content .banner-bottom .inner-counter.bg-DBD3EC {
  background-color: #DBD3EC;
}
.main-banner-wrap-content .banner-bottom .inner-counter:hover {
  border: 1px solid var(--secondaryColor);
}

/*================================================
About Area CSS
=================================================*/
.about-area {
  overflow: hidden;
}

.about-image {
  position: relative;
  z-index: 1;
  padding-right: 30px;
}
.about-image .wrap-one img {
  border-radius: 20px;
  box-shadow: 0px 4px 34px 0px rgba(91, 120, 87, 0.3);
}
.about-image .wrap-two img {
  border-radius: 20px;
  box-shadow: 0px 4px 34px 0px rgba(91, 120, 87, 0.3);
}
.about-image .wrap-shape {
  position: absolute;
  left: -90px;
  right: 0;
  top: -50px;
  bottom: 0;
  z-index: -1;
}

.about-content .sub {
  font-size: 25px;
  color: var(--primaryColor);
  font-weight: 700;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.1;
}
.about-content h2 {
  font-size: 45px;
  margin-bottom: 35px;
  letter-spacing: -2.2px;
}
.about-content .middle {
  padding-left: 90px;
}
.about-content .middle p {
  margin-bottom: 25px;
}
.about-content .middle .list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.about-content .middle .list li {
  list-style-type: none;
  font-weight: 500;
  color: #353232;
  margin-bottom: 15px;
  position: relative;
  padding-left: 32px;
}
.about-content .middle .list li:last-child {
  margin-bottom: 0;
}
.about-content .middle .list li i {
  color: var(--secondaryColor);
  font-size: 25px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about-content .about-bottom-card {
  border-radius: 20px;
  background: #DAE6EC;
  padding: 30px 25px;
  margin-top: 50px;
  display: flex;
  align-items: center;
}
.about-content .about-bottom-card h3 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 0;
  font-family: var(--optionalfontFamily);
}
.about-content .about-bottom-card p {
  font-weight: 500;
  color: var(--blackColor);
  margin-left: 10px;
}
.about-content .col-lg-6:nth-child(2) .about-bottom-card {
  background: #DBD3EC;
}

.about-wrap-image {
  background-image: url(../images/about/about3.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 100%;
  width: 100%;
}
.about-wrap-image .counter-wrap {
  display: flex;
  align-items: center;
  background: var(--whiteColor);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: absolute;
  right: -165px;
  bottom: 20px;
}
.about-wrap-image .counter-wrap .title {
  margin-left: 15px;
}
.about-wrap-image .counter-wrap .title h3 {
  font-size: 30px;
  margin-bottom: 7px;
  line-height: 1;
}
.about-wrap-image .counter-wrap .title p {
  color: var(--blackColor);
}

.about-wrap-content {
  padding-left: 55px;
}
.about-wrap-content .sub {
  font-size: 25px;
  color: var(--primaryColor);
  font-weight: 700;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.1;
}
.about-wrap-content h2 {
  font-size: 45px;
  margin-bottom: 15px;
  letter-spacing: -2.2px;
  max-width: 665px;
}
.about-wrap-content p {
  margin-bottom: 25px;
  max-width: 565px;
}
.about-wrap-content .about-wrap-bottom {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin-left: auto;
  margin-top: -30px;
}
.about-wrap-content .about-wrap-bottom .counter-box {
  background-color: #FFD025;
  padding: 30px;
  position: absolute;
  right: 0;
  top: -100px;
  max-width: 180px;
  text-align: center;
}
.about-wrap-content .about-wrap-bottom .counter-box h3 {
  font-size: 60px;
  color: var(--blackColor);
  line-height: 1;
  margin-bottom: 7px;
  font-family: var(--optionalfontFamily);
  font-weight: 700;
}
.about-wrap-content .about-wrap-bottom .counter-box span {
  font-size: 14px;
  color: var(--blackColor);
  font-weight: 600;
}
.about-wrap-content .about-wrap-bottom .vector {
  position: absolute;
  left: -145px;
  bottom: -30px;
  z-index: -1;
}

.about-skill-area {
  overflow: hidden;
}
.about-skill-area .container-fluid {
  position: relative;
  padding-left: calc((100% - 1320px) / 2);
  padding-right: 0;
}

.about-skill-content {
  max-width: 565px;
}
.about-skill-content .sub {
  font-size: 25px;
  color: var(--primaryColor);
  font-weight: 700;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.1;
}
.about-skill-content h2 {
  font-size: 45px;
  margin-bottom: 15px;
  letter-spacing: -2.2px;
  max-width: 665px;
}
.about-skill-content p {
  margin-bottom: 30px;
}
.about-skill-content .skill-bar {
  margin-bottom: 30px;
}
.about-skill-content .skill-bar .progress-title-holder {
  position: relative;
  margin-bottom: 12px;
}
.about-skill-content .skill-bar .progress-title-holder .progress-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--blackColor);
  font-family: var(--optionalHeadingFamily);
}
.about-skill-content .skill-bar .progress-title-holder p {
  margin-bottom: 0;
}
.about-skill-content .skill-bar .progress-number-mark {
  display: inline-block;
  font-size: 16px;
  color: #1297E0;
  font-weight: 600;
  font-family: var(--optionalHeadingFamily);
  position: absolute;
  left: calc(12% - 5px);
  top: 50%;
  transform: translateY(-50%);
}
.about-skill-content .skill-bar .progress-content-outter {
  background-color: #F6F6F6;
  border-radius: 0;
}
.about-skill-content .skill-bar .progress-content {
  height: 8px;
  background: #1297E0;
  border-radius: 0;
  width: 0%;
  position: relative;
  margin: 5.5px 0 5.5px;
}
.about-skill-content .skill-bar.two .progress-number-mark {
  color: #5CC397;
}
.about-skill-content .skill-bar.two .progress-content {
  background: #5CC397;
}
.about-skill-content .skill-bar.three .progress-number-mark {
  color: #FFD025;
}
.about-skill-content .skill-bar.three .progress-content {
  background: #FFD025;
}
.about-skill-content .skill-bar.four .progress-number-mark {
  color: #635BFF;
}
.about-skill-content .skill-bar.four .progress-content {
  background: #635BFF;
}
.about-skill-content .skills .skill-box {
  margin-bottom: 30px;
}
.about-skill-content .skills .skill-box .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: var(--fontSize);
  font-weight: 600;
}
.about-skill-content .skills .skill-box .title span {
  color: var(--blackColor);
}
.about-skill-content .skills .skill-box .title ._tooltip {
  color: #1297E0;
}
.about-skill-content .skills .skill-box .title ._tooltip.two {
  color: #5CC397;
}
.about-skill-content .skills .skill-box .title ._tooltip.three {
  color: #FFD025;
}
.about-skill-content .skills .skill-box .title ._tooltip.four {
  color: #635BFF;
}
.about-skill-content .skills .skill-box .skill-bar {
  height: 8px;
  width: 100%;
  border-radius: 0;
  background: #F6F6F6;
}
.about-skill-content .skills .skill-box .skill-bar .skill-per {
  position: relative;
  display: block;
  height: 100%;
  width: 98%;
  border-radius: 0;
  background: #1297E0;
  animation: progress 0.4s ease-in-out forwards;
}
.about-skill-content .skills .skill-box .skill-bar .skill-per.funding {
  width: 80%;
  animation-delay: 0.1s;
  background: #5CC397;
}
.about-skill-content .skills .skill-box .skill-bar .skill-per.housing {
  width: 78%;
  animation-delay: 0.2s;
  background: #FFD025;
}
.about-skill-content .skills .skill-box .skill-bar .skill-per.kindness {
  width: 75%;
  animation-delay: 0.3s;
  background: #635BFF;
}
.about-skill-content .skills .skill-box:last-child {
  margin-bottom: 0;
}
@keyframes progress {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.about-skill-image {
  position: relative;
  padding-left: 100px;
}
.about-skill-image .wrap-shape {
  position: absolute;
  top: 50px;
  left: 45px;
}
.about-skill-image .wrap-text {
  position: absolute;
  left: 65px;
  bottom: -45px;
}
.about-skill-image .wrap-text img {
  animation-name: rotateme;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*================================================
Concern Area CSS
=================================================*/
.concern-area {
  background-color: #F9EEEF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.concern-area .section-title {
  margin-left: 0;
}
.concern-area .section-title .sub {
  color: #1297E0;
}

.concern-card {
  background-color: var(--whiteColor);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 25px;
}
.concern-card .icon {
  margin-bottom: 25px;
  display: flex;
}
.concern-card .icon i {
  font-size: 57px;
  color: var(--secondaryColor);
  display: flex;
}
.concern-card h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}
.concern-card p {
  margin-bottom: 0;
}

.col-lg-3:nth-child(2) .concern-card {
  margin-top: -25px;
}
.col-lg-3:nth-child(2) .concern-card .icon i {
  color: var(--primaryColor);
}
.col-lg-3:nth-child(3) .concern-card {
  margin-top: -50px;
}
.col-lg-3:nth-child(3) .concern-card .icon i {
  color: #1297E0;
}
.col-lg-3:nth-child(4) .concern-card {
  margin-top: -75px;
}
.col-lg-3:nth-child(4) .concern-card .icon i {
  color: #FFD025;
}

.concern-bottom {
  max-width: 170px;
  margin-left: auto;
  margin-top: -75px;
}
.concern-bottom p {
  margin-bottom: 0;
  color: #353232;
}
.concern-bottom p a {
  color: var(--primaryColor);
  font-weight: 700;
}
.concern-bottom p a:hover {
  color: var(--secondaryColor);
}
.concern-bottom p a i {
  font-size: 22px;
  color: var(--primaryColor);
  position: relative;
  top: 3.5px;
  transition: var(--transition);
}
.concern-bottom p a i:hover {
  color: var(--secondaryColor);
}

.concern-shape1 {
  position: absolute;
  top: 10%;
  left: 52%;
  transform: translateY(-10%) translateX(-52%);
  z-index: -1;
}

.concern-shape2 {
  position: absolute;
  top: 15%;
  right: 10%;
  transform: translateY(-15%) translateX(-10%);
  z-index: -1;
}

/*================================================
Causes Area CSS
=================================================*/
.causes-card {
  margin-bottom: 25px;
}
.causes-card .causes-image {
  position: relative;
}
.causes-card .causes-image img {
  border-radius: 15px 15px 0px 0px;
}
.causes-card .causes-image.causes-image img {
  max-height: 280px;
  width: 100%;
}
.causes-card .causes-image .details-btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--blackColor);
  color: var(--whiteColor);
  border-radius: 50px;
  padding: 5px 10px 5px 15px;
  position: absolute;
  top: 10px;
  right: 10px;
}
.causes-card .causes-image .details-btn i {
  font-size: 25px;
  margin-left: 5px;
}
.causes-card .causes-image .details-btn:hover {
  background-color: var(--primaryColor);
}
.causes-card .causes-content {
  padding: 40px 30px;
  border-radius: 0px 0px 15px 15px;
  background-color: #F9F3E1;
}
.causes-card .causes-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
}
.causes-card .causes-content p {
  margin: 0;
}
.causes-card .causes-content .causes-progress {
  position: relative;
  margin: 25px 0 35px 0;
}
.causes-card .causes-content .causes-progress .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 27px;
}
.causes-card .causes-content .causes-progress .info span {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
}
.causes-card .causes-content .causes-progress .info-bar {
  position: relative;
}
.causes-card .causes-content .causes-progress .info-bar .progress {
  height: 5px;
  border-radius: 50px;
  background-color: var(--whiteColor);
}
.causes-card .causes-content .causes-progress .info-bar .progress .progress-bar {
  border-radius: 50px;
  background-color: #FFD025;
  width: 12%;
}
.causes-card .causes-content .causes-progress .info-bar .progress .progress-bar.two {
  width: 43%;
  background-color: #1297E0;
}
.causes-card .causes-content .causes-progress .info-bar .progress .progress-bar.three {
  width: 80%;
  background-color: var(--secondaryColor);
}
.causes-card .causes-content .causes-progress .info-bar .progress .progress-bar.four {
  width: 70%;
  background-color: #FF496F;
}
.causes-card .causes-content .causes-progress .info-bar .progress .progress-bar.five {
  width: 50%;
  background-color: #635BFF;
}
.causes-card .causes-content .causes-progress .info-bar .progress .progress-bar.six {
  width: 35%;
  background-color: var(--primaryColor);
}
.causes-card .causes-content .causes-progress .info-bar ._tooltip {
  display: inline-block;
  padding: 1.5px 5.5px;
  position: absolute;
  left: calc(12% - 5px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  background-color: #FFD025;
  color: var(--whiteColor);
  font-weight: 700;
}
.causes-card .causes-content .causes-progress .info-bar ._tooltip.two {
  background-color: #1297E0;
  left: calc(43% - 5px);
}
.causes-card .causes-content .causes-progress .info-bar ._tooltip.three {
  background-color: var(--secondaryColor);
  left: calc(80% - 5px);
}
.causes-card .causes-content .causes-progress .info-bar ._tooltip.four {
  background-color: #FF496F;
  left: calc(70% - 5px);
}
.causes-card .causes-content .causes-progress .info-bar ._tooltip.five {
  background-color: #635BFF;
  left: calc(50% - 5px);
}
.causes-card .causes-content .causes-progress .info-bar ._tooltip.six {
  background-color: var(--primaryColor);
  left: calc(35% - 5px);
}
.causes-card .causes-content .skill-bar {
  margin-top: 45px;
}
.causes-card .causes-content .skill-bar .progress-title-holder {
  position: relative;
  margin-bottom: 0;
}
.causes-card .causes-content .skill-bar .progress-number-mark {
  display: inline-block;
  padding: 1.5px 5.5px;
  position: absolute;
  left: calc(12% - 5px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  background-color: #FFD025;
  color: #ffffff;
  font-weight: 700;
}
.causes-card .causes-content .skill-bar .progress-content-outter {
  background-color: var(--whiteColor);
  border-radius: 50px;
}
.causes-card .causes-content .skill-bar .progress-content {
  height: 5px;
  background: #FFD025;
  border-radius: 50px;
  width: 0%;
  position: relative;
  margin: 5.5px 0 5.5px;
}
.causes-card .causes-content .causes-btn {
  margin-top: 25px;
}
.causes-card .causes-content .causes-btn .default-btn {
  width: 100%;
  background-color: #FFD025;
}
.causes-card .causes-content .causes-btn .default-btn:hover {
  background-color: var(--primaryColor);
}
.causes-card .causes-content.bg-DAE6EC {
  background-color: #DAE6EC;
}
.causes-card .causes-content.bg-DAE6EC .causes-btn .default-btn {
  background-color: #1297E0;
}
.causes-card .causes-content.bg-DAE6EC .causes-btn .default-btn:hover {
  background-color: var(--primaryColor);
}
.causes-card .causes-content.bg-DAE6EC .skill-bar .progress-number-mark {
  background-color: #1297E0;
}
.causes-card .causes-content.bg-DAE6EC .skill-bar .progress-content {
  background: #1297E0;
}
.causes-card .causes-content.bg-DFECDD {
  background-color: #DFECDD;
}
.causes-card .causes-content.bg-DFECDD .causes-btn .default-btn {
  background-color: var(--secondaryColor);
}
.causes-card .causes-content.bg-DFECDD .causes-btn .default-btn:hover {
  background-color: var(--primaryColor);
}
.causes-card .causes-content.bg-DFECDD .skill-bar .progress-number-mark {
  background-color: #5CC397;
}
.causes-card .causes-content.bg-DFECDD .skill-bar .progress-content {
  background: #5CC397;
}
.causes-card .causes-content.bg-F6E7E8 {
  background-color: #F6E7E8;
}
.causes-card .causes-content.bg-F6E7E8 .skill-bar .progress-number-mark {
  background-color: #FF496F;
}
.causes-card .causes-content.bg-F6E7E8 .skill-bar .progress-content {
  background-color: #FF496F;
}
.causes-card .causes-content.bg-F6E7E8 .causes-btn .default-btn {
  background-color: #FF496F;
}
.causes-card .causes-content.bg-F6E7E8 .causes-btn .default-btn:hover {
  background-color: var(--primaryColor);
}
.causes-card .causes-content.bg-F3F2F8 {
  background-color: #F3F2F8;
}
.causes-card .causes-content.bg-F3F2F8 .skill-bar .progress-number-mark {
  background-color: #635BFF;
}
.causes-card .causes-content.bg-F3F2F8 .skill-bar .progress-content {
  background-color: #635BFF;
}
.causes-card .causes-content.bg-F3F2F8 .causes-btn .default-btn {
  background-color: #635BFF;
}
.causes-card .causes-content.bg-F3F2F8 .causes-btn .default-btn:hover {
  background-color: var(--primaryColor);
}
.causes-card .causes-content.bg-F5ECE7 {
  background-color: #F5ECE7;
}
.causes-card .causes-content.bg-F5ECE7 .skill-bar .progress-number-mark {
  background-color: var(--primaryColor);
}
.causes-card .causes-content.bg-F5ECE7 .skill-bar .progress-content {
  background-color: var(--primaryColor);
}
.causes-card .causes-content.bg-F5ECE7 .causes-btn .default-btn {
  background-color: var(--primaryColor);
}
.causes-card .causes-content.bg-F5ECE7 .causes-btn .default-btn:hover {
  background-color: var(--secondaryColor);
}

.causes-card-ld {
  display: none;
}

.causes-inner-bottom {
  border-radius: 70px;
  background-color: #EBE7F3;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.causes-inner-bottom .content {
  display: flex;
  align-items: center;
}
.causes-inner-bottom .content h4 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 25px;
  font-family: var(--optionalfontFamily);
  margin-left: 20px;
}
.causes-inner-bottom .causes-btn .default-btn {
  background-color: #9B8DB7;
}
.causes-inner-bottom .causes-btn .default-btn:hover {
  background-color: var(--primaryColor);
}

.causes-wrap-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.causes-wrap-area .container-fluid {
  position: relative;
  left: calc((100% - 1320px) / 2);
}
.causes-wrap-area::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 830px;
  background-color: #F6F6F6;
  z-index: -1;
}

.causes-wrap-content {
  max-width: 395px;
  position: relative;
}
.causes-wrap-content .sub {
  font-size: 25px;
  color: #1297E0;
  font-weight: 700;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.1;
}
.causes-wrap-content h2 {
  font-size: 45px;
  margin-bottom: 15px;
  letter-spacing: -2.2px;
  max-width: 665px;
}
.causes-wrap-content p {
  margin-bottom: 0;
}
.causes-wrap-content .causes-btn {
  margin-top: 25px;
}
.causes-wrap-content .causes-btn .default-btn {
  background-color: var(--secondaryColor);
}
.causes-wrap-content .causes-btn .default-btn:hover {
  background-color: var(--primaryColor);
}
.causes-wrap-content .wrap-shape {
  position: absolute;
  right: -95px;
  bottom: -120px;
  z-index: -1;
}

.causes-item {
  background: var(--whiteColor);
  box-shadow: 0px 2px 25px 0px rgba(0, 0, 0, 0.04);
  border: 1px solid #f9f9f9;
  transition: var(--transition);
}
.causes-item .causes-content {
  padding: 40px 30px;
}
.causes-item .causes-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
}
.causes-item .causes-content p {
  margin-bottom: 0;
}
.causes-item .causes-content .causes-progress {
  position: relative;
  margin: 25px 0 35px 0;
}
.causes-item .causes-content .causes-progress .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 27px;
}
.causes-item .causes-content .causes-progress .info span {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
}
.causes-item .causes-content .causes-progress .info-bar {
  position: relative;
}
.causes-item .causes-content .causes-progress .info-bar .progress {
  height: 5px;
  border-radius: 50px;
  background-color: #F6F6F6;
}
.causes-item .causes-content .causes-progress .info-bar .progress .progress-bar {
  border-radius: 50px;
  background-color: #FFD025;
  width: 12%;
}
.causes-item .causes-content .causes-progress .info-bar .progress .progress-bar.two {
  background-color: #1297E0;
  width: 42%;
}
.causes-item .causes-content .causes-progress .info-bar .progress .progress-bar.three {
  background-color: #635BFF;
  width: 80%;
}
.causes-item .causes-content .causes-progress .info-bar ._tooltip {
  display: inline-block;
  padding: 1.5px 5.5px;
  position: absolute;
  left: calc(12% - 5px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  background-color: #FFD025;
  color: var(--whiteColor);
  font-weight: 700;
}
.causes-item .causes-content .causes-progress .info-bar ._tooltip.two {
  left: calc(42% - 5px);
  background-color: #1297E0;
}
.causes-item .causes-content .causes-progress .info-bar ._tooltip.three {
  left: calc(80% - 5px);
  background-color: #635BFF;
}
.causes-item .causes-content .causes-progress .skill-bar {
  margin-top: 45px;
}
.causes-item .causes-content .causes-progress .skill-bar .progress-title-holder {
  position: relative;
  margin-bottom: 0;
}
.causes-item .causes-content .causes-progress .skill-bar .progress-number-mark {
  display: inline-block;
  padding: 1.5px 5.5px;
  position: absolute;
  left: calc(12% - 5px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  background-color: #FFD025;
  color: #ffffff;
  font-weight: 700;
}
.causes-item .causes-content .causes-progress .skill-bar .progress-content-outter {
  background-color: #F6F6F6;
  border-radius: 50px;
}
.causes-item .causes-content .causes-progress .skill-bar .progress-content {
  height: 5px;
  background: #FFD025;
  border-radius: 50px;
  width: 0%;
  position: relative;
  margin: 5.5px 0 5.5px;
}
.causes-item .causes-content .causes-btn {
  margin-top: 25px;
}
.causes-item .causes-content .causes-btn .default-btn {
  width: 100%;
  background-color: #FFD025;
}
.causes-item .causes-content .causes-btn .default-btn:hover {
  background-color: var(--primaryColor);
}
.causes-item .causes-content .causes-btn .default-btn.two {
  background-color: #1297E0;
}
.causes-item .causes-content .causes-btn .default-btn.two:hover {
  background-color: var(--primaryColor);
}
.causes-item .causes-content .causes-btn .default-btn.three {
  background-color: #635BFF;
}
.causes-item .causes-content .causes-btn .default-btn.three:hover {
  background-color: var(--primaryColor);
}
.causes-item .causes-content.bg-DAE6EC .causes-btn .default-btn {
  background-color: #1297E0;
}
.causes-item .causes-content.bg-DAE6EC .causes-btn .default-btn:hover {
  background-color: var(--primaryColor);
}
.causes-item .causes-content.bg-DAE6EC .skill-bar .progress-number-mark {
  background-color: #1297E0;
}
.causes-item .causes-content.bg-DAE6EC .skill-bar .progress-content {
  background: #1297E0;
}
.causes-item .causes-content.bg-DFECDD .causes-btn .default-btn {
  background-color: var(--secondaryColor);
}
.causes-item .causes-content.bg-DFECDD .causes-btn .default-btn:hover {
  background-color: var(--primaryColor);
}
.causes-item .causes-content.bg-DFECDD .skill-bar .progress-number-mark {
  background-color: #5CC397;
}
.causes-item .causes-content.bg-DFECDD .skill-bar .progress-content {
  background: #5CC397;
}
.causes-item .causes-content.bg-F6E7E8 .skill-bar .progress-number-mark {
  background-color: #FF496F;
}
.causes-item .causes-content.bg-F6E7E8 .skill-bar .progress-content {
  background-color: #FF496F;
}
.causes-item .causes-content.bg-F6E7E8 .causes-btn .default-btn {
  background-color: #FF496F;
}
.causes-item .causes-content.bg-F6E7E8 .causes-btn .default-btn:hover {
  background-color: var(--primaryColor);
}
.causes-item .causes-content.bg-F3F2F8 .skill-bar .progress-number-mark {
  background-color: #635BFF;
}
.causes-item .causes-content.bg-F3F2F8 .skill-bar .progress-content {
  background-color: #635BFF;
}
.causes-item .causes-content.bg-F3F2F8 .causes-btn .default-btn {
  background-color: #635BFF;
}
.causes-item .causes-content.bg-F3F2F8 .causes-btn .default-btn:hover {
  background-color: var(--primaryColor);
}
.causes-item .causes-content.bg-F5ECE7 .skill-bar .progress-number-mark {
  background-color: var(--primaryColor);
}
.causes-item .causes-content.bg-F5ECE7 .skill-bar .progress-content {
  background-color: var(--primaryColor);
}
.causes-item .causes-content.bg-F5ECE7 .causes-btn .default-btn {
  background-color: var(--primaryColor);
}
.causes-item .causes-content.bg-F5ECE7 .causes-btn .default-btn:hover {
  background-color: var(--secondaryColor);
}
.causes-item:hover {
  border-bottom: 1px solid var(--secondaryColor);
}

.causes-slider {
  margin-left: 55px;
}

.causes-slider-button {
  display: flex;
  justify-content: end;
  padding-left: 0;
  padding-right: 0;
  margin-top: 120px;
  margin-bottom: 0;
}
.causes-slider-button li {
  list-style-type: none;
  margin-right: 15px;
}
.causes-slider-button li:last-child {
  margin-right: 0;
}
.causes-slider-button li i {
  font-size: 30px;
  color: var(--blackColor);
  transition: var(--transition);
}
.causes-slider-button li i:hover {
  color: var(--primaryColor);
}

.causes-full-width-area {
  overflow: hidden;
}
.causes-full-width-area .section-title .sub {
  color: #1297E0;
}
.causes-full-width-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.causes-box {
  margin-bottom: 25px;
}
.causes-box .causes-image {
  position: relative;
}
.causes-box .causes-image .default-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background-color: var(--blackColor);
  color: var(--whiteColor);
}
.causes-box .causes-image .default-btn:hover {
  background-color: var(--primaryColor);
}
.causes-box .causes-content {
  padding-top: 30px;
}
.causes-box .causes-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
}
.causes-box .causes-content p {
  margin-bottom: 0;
}
.causes-box .causes-content .causes-progress {
  position: relative;
  margin-top: 25px;
  padding-bottom: 10px;
}
.causes-box .causes-content .causes-progress .skill-bar {
  margin-top: 45px;
}
.causes-box .causes-content .causes-progress .skill-bar .progress-title-holder {
  position: relative;
  margin-bottom: 0;
}
.causes-box .causes-content .causes-progress .skill-bar .progress-number-mark {
  display: inline-block;
  padding: 1.5px 5.5px;
  position: absolute;
  left: calc(12% - 5px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  background-color: #FFD025;
  color: #ffffff;
  font-weight: 700;
}
.causes-box .causes-content .causes-progress .skill-bar .progress-content-outter {
  background-color: #F6F6F6;
  border-radius: 50px;
}
.causes-box .causes-content .causes-progress .skill-bar .progress-content {
  height: 5px;
  background: #FFD025;
  border-radius: 50px;
  width: 0%;
  position: relative;
  margin: 5.5px 0 5.5px;
}
.causes-box .causes-content .causes-progress.two .skill-bar .progress-number-mark {
  background-color: #5CC397;
}
.causes-box .causes-content .causes-progress.two .skill-bar .progress-content {
  background-color: #5CC397;
}
.causes-box .causes-content .causes-progress.three .skill-bar .progress-number-mark {
  background-color: var(--primaryColor);
}
.causes-box .causes-content .causes-progress.three .skill-bar .progress-content {
  background-color: var(--primaryColor);
}
.causes-box .causes-content .causes-progress.four .skill-bar .progress-number-mark {
  background-color: #FF496F;
}
.causes-box .causes-content .causes-progress.four .skill-bar .progress-content {
  background-color: #FF496F;
}
.causes-box .causes-content .causes-progress.five .skill-bar .progress-number-mark {
  background-color: #635BFF;
}
.causes-box .causes-content .causes-progress.five .skill-bar .progress-content {
  background-color: #635BFF;
}
.causes-box .causes-content .causes-progress .six .skill-bar .progress-number-mark {
  background-color: #1297E0;
}
.causes-box .causes-content .causes-progress .six .skill-bar .progress-content {
  background-color: #1297E0;
}
.causes-box .causes-content .causes-progress .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 27px;
}
.causes-box .causes-content .causes-progress .info span {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
}
.causes-box .causes-content .causes-progress .info-bar {
  position: relative;
}
.causes-box .causes-content .causes-progress .info-bar .progress {
  height: 5px;
  border-radius: 50px;
  background-color: #F6F6F6;
}
.causes-box .causes-content .causes-progress .info-bar .progress .progress-bar {
  border-radius: 50px;
  background-color: #FFD025;
  width: 20%;
}
.causes-box .causes-content .causes-progress .info-bar .progress .progress-bar.two {
  background-color: #5CC397;
  width: 65%;
}
.causes-box .causes-content .causes-progress .info-bar .progress .progress-bar.three {
  background-color: var(--primaryColor);
  width: 42%;
}
.causes-box .causes-content .causes-progress .info-bar .progress .progress-bar.four {
  width: 35%;
  background-color: #FF496F;
}
.causes-box .causes-content .causes-progress .info-bar .progress .progress-bar.five {
  width: 45%;
  background-color: #635BFF;
}
.causes-box .causes-content .causes-progress .info-bar .progress .progress-bar.six {
  width: 65%;
  background-color: #1297E0;
}
.causes-box .causes-content .causes-progress .info-bar ._tooltip {
  display: inline-block;
  padding: 1.5px 5.5px;
  position: absolute;
  left: calc(20% - 5px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  background-color: #FFD025;
  color: var(--whiteColor);
  font-weight: 700;
}
.causes-box .causes-content .causes-progress .info-bar ._tooltip.two {
  left: calc(65% - 5px);
  background-color: #5CC397;
}
.causes-box .causes-content .causes-progress .info-bar ._tooltip.three {
  left: calc(42% - 5px);
  background-color: var(--primaryColor);
}
.causes-box .causes-content .causes-progress .info-bar ._tooltip.four {
  background-color: #FF496F;
  left: calc(35% - 5px);
}
.causes-box .causes-content .causes-progress .info-bar ._tooltip.five {
  background-color: #635BFF;
  left: calc(45% - 5px);
}
.causes-box .causes-content .causes-progress .info-bar ._tooltip.six {
  background-color: #1297E0;
  left: calc(65% - 5px);
}

/*================================================
Causes Details Area CSS
=================================================*/
.causes-details-desc .content {
  margin-bottom: 30px;
}
.causes-details-desc .content .sub {
  font-size: 25px;
  color: var(--primaryColor);
  font-weight: 700;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.1;
}
.causes-details-desc .content h2 {
  font-size: 45px;
  margin-bottom: 0;
  letter-spacing: -2.2px;
}
.causes-details-desc .causes-details-image img {
  border-radius: 20px;
}
.causes-details-desc .causes-details-content {
  padding-left: 35px;
}
.causes-details-desc .causes-details-content .causes-progress {
  position: relative;
  margin: 25px 0 35px 0;
}
.causes-details-desc .causes-details-content .causes-progress .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 27px;
}
.causes-details-desc .causes-details-content .causes-progress .info span {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
  display: block;
  margin-bottom: 7px;
}
.causes-details-desc .causes-details-content .causes-progress .info h5 {
  margin-bottom: 0;
  font-size: 25px;
}
.causes-details-desc .causes-details-content .skill-bar {
  margin-top: 45px;
}
.causes-details-desc .causes-details-content .skill-bar .progress-title-holder {
  position: relative;
  margin-bottom: 0;
}
.causes-details-desc .causes-details-content .skill-bar .progress-number-mark {
  display: inline-block;
  padding: 1.5px 5.5px;
  position: absolute;
  left: calc(12% - 5px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  background-color: #FFD025;
  color: #ffffff;
  font-weight: 700;
}
.causes-details-desc .causes-details-content .skill-bar .progress-content-outter {
  background-color: #eeeeee;
  border-radius: 50px;
}
.causes-details-desc .causes-details-content .skill-bar .progress-content {
  height: 5px;
  background: #FFD025;
  border-radius: 50px;
  width: 0%;
  position: relative;
  margin: 5.5px 0 5.5px;
}
.causes-details-desc .causes-details-content p {
  margin-bottom: 20px;
}
.causes-details-desc .causes-details-content .default-btn {
  border: none;
  width: 100%;
}

.causes-details-information-tabs {
  margin-top: 100px;
}
.causes-details-information-tabs .nav {
  display: flex;
  justify-content: space-between;
  border: none;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}
.causes-details-information-tabs .nav .nav-item {
  border: none;
  margin-right: 20px;
}
.causes-details-information-tabs .nav .nav-item:last-child {
  margin-right: 0;
}
.causes-details-information-tabs .nav .nav-item .nav-link {
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: 20px;
  color: #748894;
  font-weight: 600;
  transition: var(--transition);
  padding-bottom: 20px;
  position: relative;
}
.causes-details-information-tabs .nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -1.5px;
  width: 100%;
  height: 4px;
  border-radius: 50px;
  background-color: var(--secondaryColor);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.causes-details-information-tabs .nav .nav-item .nav-link:hover, .causes-details-information-tabs .nav .nav-item .nav-link.active {
  color: var(--secondaryColor);
}
.causes-details-information-tabs .nav .nav-item .nav-link:hover::before, .causes-details-information-tabs .nav .nav-item .nav-link.active::before {
  opacity: 1;
  visibility: visible;
}
.causes-details-information-tabs .documents-content h3 {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 25px;
}
.causes-details-information-tabs .documents-content .documents-list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.causes-details-information-tabs .documents-content .documents-list li {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.causes-details-information-tabs .documents-content .documents-list li:last-child {
  margin-bottom: 0;
}
.causes-details-information-tabs .documents-content .documents-list li .left {
  display: flex;
  align-items: center;
}
.causes-details-information-tabs .documents-content .documents-list li .left img {
  margin-right: 30px;
}
.causes-details-information-tabs .documents-content .documents-list li .left span {
  font-weight: 500;
}
.causes-details-information-tabs .documents-content .documents-list li .right button {
  border: none;
  padding: 7px 20px;
  border-radius: 50px;
  background: #DFECDD;
  color: var(--blackColor);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  margin-right: 7px;
}
.causes-details-information-tabs .documents-content .documents-list li .right button:last-child {
  margin-right: 0;
  background: #DAE6EC;
}
.causes-details-information-tabs .documents-content .documents-list li .right button:last-child:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.causes-details-information-tabs .documents-content .documents-list li .right button:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.causes-details-information-tabs .documents-content .documents-list li .right .download-button {
  border: none;
  padding: 7px 20px;
  border-radius: 50px;
  background: #DAE6EC;
  color: var(--blackColor);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  margin-right: 7px;
}
.causes-details-information-tabs .documents-content .documents-list li .right .download-button:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.causes-details-information-tabs .maps iframe {
  display: flex;
  width: 100%;
  height: 320px;
}
.causes-details-information-tabs .donors-list h3 {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 35px;
}
.causes-details-information-tabs .donors-list .give-wrap .give-card {
  background-color: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}
.causes-details-information-tabs .donors-list .give-wrap .give-card .give-donor-container {
  position: relative;
  padding-left: 100px;
}
.causes-details-information-tabs .donors-list .give-wrap .give-card .give-donor-container .give-donor-container__image {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 7px;
}
.causes-details-information-tabs .donors-list .give-wrap .give-card .give-donor-container .give-donor-container__image img {
  border-radius: 7px !important;
}
.causes-details-information-tabs .donors-list .give-wrap .give-card .give-donor-container-variation__name {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}
.causes-details-information-tabs .donors-list .give-wrap .give-card .give-donor-container-variation {
  display: inline-block;
  justify-content: unset;
}
.causes-details-information-tabs .donors-list .give-wrap .give-card .give-donor-details__wrapper {
  display: none;
}
.causes-details-information-tabs .donors-list .give-wrap .give-card .give-donor-details__total {
  font-size: 14px;
  color: var(--primaryColor) !important;
}
.causes-details-information-tabs .donors-list .give-wrap .give-card .title {
  margin-left: 20px;
}
.causes-details-information-tabs .donors-list .give-wrap .give-card .title h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}
.causes-details-information-tabs .donors-list .give-wrap .give-card .title span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}
.causes-details-information-tabs .comments-content h2 {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 0;
}
.causes-details-information-tabs .comments-content .comments-list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.causes-details-information-tabs .comments-content .comments-list li {
  list-style-type: none;
  position: relative;
  padding-left: 100px;
  margin-top: 30px;
}
.causes-details-information-tabs .comments-content .comments-list li .image {
  position: absolute;
  left: 0;
  top: 0;
}
.causes-details-information-tabs .comments-content .comments-list li .image img {
  border-radius: 10px;
}
.causes-details-information-tabs .comments-content .comments-list li .info h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}
.causes-details-information-tabs .comments-content .comments-list li .info h4 span {
  font-weight: 500;
  font-size: 14px;
  color: #748894;
}
.causes-details-information-tabs .comments-content .comments-list li .info p {
  margin-bottom: 15px;
}
.causes-details-information-tabs .comments-content .comments-list li .info a {
  font-weight: 700;
  font-size: 14px;
  color: var(--primaryColor);
  display: flex;
  align-items: center;
  letter-spacing: 1.4px;
}
.causes-details-information-tabs .comments-content .comments-list li .info a i {
  margin-left: 7px;
  font-size: 25px;
}
.causes-details-information-tabs .comments-content .comments-list li .info a:hover {
  color: var(--secondaryColor);
}
.causes-details-information-tabs .comments-content .comments-list li:last-child {
  margin-left: 100px;
}
.causes-details-information-tabs .comments-content .comments-form {
  margin-top: 100px;
}
.causes-details-information-tabs .comments-content .comments-form h3 {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 25px;
}
.causes-details-information-tabs .comments-content .comments-form .form-group {
  margin-bottom: 25px;
}
.causes-details-information-tabs .comments-content .comments-form .form-group .form-control {
  display: inline-block;
  height: 60px;
  width: 100%;
  border-radius: 50px;
  background-color: #F5F5F5;
  font-weight: 500;
  outline: 0;
  box-shadow: unset;
  border: 1px solid #F5F5F5;
  padding: 15px 30px;
  color: var(--paragraphColor);
  transition: var(--transition);
}
.causes-details-information-tabs .comments-content .comments-form .form-group .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.causes-details-information-tabs .comments-content .comments-form .form-group .form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.causes-details-information-tabs .comments-content .comments-form .form-group .form-control:focus {
  border: 1px solid var(--primaryColor);
}
.causes-details-information-tabs .comments-content .comments-form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.causes-details-information-tabs .comments-content .comments-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.causes-details-information-tabs .comments-content .comments-form .form-group textarea.form-control {
  min-height: 155px;
  border-radius: 20px;
  display: flex;
}
.causes-details-information-tabs .comments-content .comments-form .form-group .form-check {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.causes-details-information-tabs .comments-content .comments-form .form-group .form-check .form-check-input {
  border-radius: 50px;
  border: 1px solid var(--secondaryColor);
  height: 20px;
  width: 20px;
  margin-top: -2px;
  outline: 0;
  box-shadow: unset;
}
.causes-details-information-tabs .comments-content .comments-form .form-group .form-check .form-check-label {
  color: #748894;
  font-size: 15px;
  font-weight: 500;
  margin-left: 10px;
}
.causes-details-information-tabs .comments-content .comments-form .default-btn {
  border: none;
}
.causes-details-information-tabs .donation-form {
  margin-top: 100px;
  background-color: transparent;
}
.causes-details-information-tabs .donation-form .content {
  margin-bottom: 35px;
}
.causes-details-information-tabs .donation-form .content .sub {
  font-size: 25px;
  color: var(--secondaryColor);
  font-weight: 700;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.1;
}
.causes-details-information-tabs .donation-form .content h2 {
  font-size: 45px;
  margin-bottom: 0;
  letter-spacing: -2.2px;
}
.causes-details-information-tabs .donation-form .amount-inner .amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.causes-details-information-tabs .donation-form .amount-inner .amount span {
  font-weight: 700;
  font-size: 14px;
}
.causes-details-information-tabs .donation-form .amount-inner .amount .list {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: end;
}
.causes-details-information-tabs .donation-form .amount-inner .amount .list li {
  list-style-type: none;
  margin-right: 7px;
}
.causes-details-information-tabs .donation-form .amount-inner .amount .list li:last-child {
  margin-right: 0;
}
.causes-details-information-tabs .donation-form .amount-inner .amount .list li button {
  border: none;
  padding: 7px 20px;
  border-radius: 50px;
  background: #EBE7F3;
  color: var(--blackColor);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.causes-details-information-tabs .donation-form .amount-inner .amount .list li button:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.causes-details-information-tabs .donation-form .amount-inner .form-group {
  margin-bottom: 0;
}
.causes-details-information-tabs .donation-form .form-group {
  margin-bottom: 25px;
}
.causes-details-information-tabs .donation-form .form-group .form-control {
  display: inline-block;
  height: 60px;
  width: 100%;
  border-radius: 50px;
  background-color: #F5F5F5;
  font-weight: 500;
  outline: 0;
  box-shadow: unset;
  border: 1px solid #F5F5F5;
  padding: 15px 30px;
  color: var(--paragraphColor);
  transition: var(--transition);
}
.causes-details-information-tabs .donation-form .form-group .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.causes-details-information-tabs .donation-form .form-group .form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.causes-details-information-tabs .donation-form .form-group .form-control:focus {
  border: 1px solid var(--primaryColor);
}
.causes-details-information-tabs .donation-form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.causes-details-information-tabs .donation-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.causes-details-information-tabs .donation-form .form-group textarea.form-control {
  min-height: 155px;
  border-radius: 20px;
}
.causes-details-information-tabs .donation-form .middle-text {
  font-weight: 700;
  color: var(--paragraphColor);
  font-size: 14px;
  display: block;
  margin-top: 45px;
  margin-bottom: 20px;
}
.causes-details-information-tabs .donation-form .middle-text a {
  color: #1297E0;
}
.causes-details-information-tabs .donation-form .middle-text a:hover {
  color: var(--secondaryColor);
}
.causes-details-information-tabs .donation-form .default-btn {
  width: 100%;
  border: none;
}
.causes-details-information-tabs .donation-form .payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.causes-details-information-tabs .donation-form .payment span {
  font-size: 14px;
  font-weight: 700;
}
.causes-details-information-tabs .donation-form .payment .payment-list {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.causes-details-information-tabs .donation-form .payment .payment-list li {
  list-style-type: none;
  margin-right: 30px;
}
.causes-details-information-tabs .donation-form .payment .payment-list li:last-child {
  margin-right: 0;
}
.causes-details-information-tabs .donation-form .give-goal-progress {
  display: none;
}
.causes-details-information-tabs .donation-form .give_warning {
  background: transparent;
  border-left: 0;
  border: 1px solid #F6F5F5;
  clear: both;
  margin: 0 0 25px;
  padding: 10px;
  position: relative;
  box-shadow: none;
  padding-left: 55px;
}
.causes-details-information-tabs .donation-form .give_warning:before {
  position: absolute;
  left: 10px;
}
.causes-details-information-tabs .donation-form .give_warning p {
  color: var(--paragraphColor);
  font-family: var(--mainfontFamily);
}
.causes-details-information-tabs .donation-form .give_warning p strong {
  color: var(--primaryColor);
}
.causes-details-information-tabs .donation-form form[id*=give-form] .give-donation-amount {
  background-color: #EBE7F3;
  padding: 7px 20px;
  border-radius: 50px;
  width: 240px;
}
.causes-details-information-tabs .donation-form form[id*=give-form] .give-donation-amount #give-amount {
  float: left;
  margin: 0;
  border-left: none;
  border: none;
  padding: 0;
  border-radius: 50px;
  background: #EBE7F3;
  color: #132631;
  font-size: 16px;
  font-weight: 600;
  transition: 0.6s;
}
.causes-details-information-tabs .donation-form form[id*=give-form] .give-donation-amount #give-amount-text {
  background-color: transparent;
  border: none;
  padding: 0;
}
.causes-details-information-tabs .donation-form form[id*=give-form] .give-donation-amount .give-currency-symbol {
  margin: 0;
  padding: 0;
  background: transparent;
  color: #132631;
  border-right: none;
  border-radius: 50px 0 0 50px;
  border: none;
}
.causes-details-information-tabs .donation-form form[id*=give-form] legend {
  font-weight: 700;
  color: var(--paragraphColor);
  font-size: 16px;
  display: block;
  margin-top: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: var(--mainfontFamily);
  border-bottom: none;
}
.causes-details-information-tabs .donation-form form[id*=give-form] #give_checkout_user_info .give-label {
  font-size: 16px;
  font-family: var(--mainfontFamily);
  color: var(--paragraphColor);
  margin-bottom: 15px;
}
.causes-details-information-tabs .donation-form form[id*=give-form] #give_checkout_user_info .give-input {
  border-radius: 50px;
  background-color: #F5F5F5;
  font-weight: 500;
  outline: 0;
  box-shadow: unset;
  border: 1px solid #F5F5F5;
  padding: 15px 30px;
  color: #646464;
  transition: 0.6s;
}
.causes-details-information-tabs .donation-form form[id*=give-form] #give_checkout_user_info textarea {
  border-radius: 30px;
  min-height: 120px;
}
.causes-details-information-tabs .donation-form form[id*=give-form] .form-row-first .form-row .form-row-responsive .give-label {
  font-size: 16px;
  font-family: var(--mainfontFamily);
  color: var(--paragraphColor);
  margin-bottom: 15px;
}
.causes-details-information-tabs .donation-form form[id*=give-form] .form-row-first .form-row .form-row-responsive .give-input {
  display: inline-block;
  height: 60px;
  width: 100%;
  border-radius: 50px;
  background-color: #F5F5F5;
  font-weight: 500;
  outline: 0;
  box-shadow: unset;
  border: 1px solid #F5F5F5;
  padding: 15px 30px;
  color: #646464;
  transition: 0.6s;
}
.causes-details-information-tabs .donation-form form[id*=give-form] #give-final-total-wrap .give-donation-total-label {
  background-color: transparent;
  border: none;
  padding: 0;
  font-weight: 600;
  color: var(--blackColor);
  font-size: 20px;
  font-family: var(--mainfontFamily);
  border-bottom: none;
}
.causes-details-information-tabs .donation-form form[id*=give-form] #give-final-total-wrap .give-final-total-amount {
  background-color: transparent;
  border: none;
  color: var(--primaryColor);
}
.causes-details-information-tabs .donation-form .give-submit-button-wrap .give-submit, .causes-details-information-tabs .donation-form .give-submit-button-wrap [id^=give-user-login-submit] .give-submit {
  background-color: var(--primaryColor);
  border: none;
  color: var(--whiteColor);
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 16px !important;
  font-weight: 700;
  font-family: var(--mainfontFamily);
}
.causes-details-information-tabs .donation-form ul li button {
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  background: #EBE7F3;
  color: var(--blackColor);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.causes-details-information-tabs .donation-form ul li button:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.causes-details-information-tabs .donation-form .give-payment-mode-label {
  font-weight: 700;
  color: var(--paragraphColor);
  font-size: 16px;
  display: block;
  margin-top: 35px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: var(--mainfontFamily);
  border-bottom: none;
}
.causes-details-information-tabs .causes-details-side {
  background-color: var(--blackColor);
  padding: 100px 35px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 310px;
  margin-left: auto;
}
.causes-details-information-tabs .causes-details-side h2 {
  font-size: 35px;
  margin-bottom: 30px;
  color: var(--whiteColor);
  font-family: var(--optionalfontFamily);
  letter-spacing: 2px;
  line-height: 1.4;
}
.causes-details-information-tabs .causes-details-side h2 span {
  font-size: 45px;
  color: #FFD025;
}
.causes-details-information-tabs .causes-details-side .wrap-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

/*================================================
Easy Donation Area CSS
=================================================*/
.easy-donation-area {
  overflow: hidden;
}

.easy-donation-image {
  position: relative;
  padding-top: 35px;
  padding-right: 45px;
}
.easy-donation-image .wrap-one {
  margin-bottom: 45px;
  max-width: 210px;
  position: relative;
  top: -35px;
}
.easy-donation-image .wrap-one img {
  border-radius: 20px;
}
.easy-donation-image .wrap-one.without-border-radius img {
  border-radius: 0;
}
.easy-donation-image .wrap-two {
  max-width: 145px;
  position: relative;
  left: 65px;
  top: -35px;
}
.easy-donation-image .wrap-two img {
  border-radius: 20px;
}
.easy-donation-image .wrap-two.without-border-radius img {
  border-radius: 0;
}
.easy-donation-image .wrap-three img {
  border-radius: 20px;
}
.easy-donation-image .wrap-three.without-border-radius img {
  border-radius: 0;
}
.easy-donation-image .wrap-shape {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 65%;
}

.easy-donation-content {
  padding-left: 85px;
}
.easy-donation-content .sub {
  font-size: 25px;
  color: var(--secondaryColor);
  font-weight: 700;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.1;
}
.easy-donation-content h2 {
  font-size: 45px;
  margin-bottom: 15px;
  letter-spacing: -2.2px;
}
.easy-donation-content .easy-donation-btn {
  margin-top: 30px;
}
.easy-donation-content.wrap-right {
  padding-left: 0;
  padding-right: 85px;
}

/*================================================
Volunteers Area CSS
=================================================*/
.volunteers-area {
  background-image: url(../images/volunteer/volunteer-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  margin-left: 30px;
  margin-right: 30px;
}
.volunteers-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(97deg, rgba(19, 38, 49, 0.8) 4.35%, rgba(19, 38, 49, 0.56) 98.4%);
  z-index: -1;
}
.volunteers-area .section-title .sub {
  color: #FFD025;
}
.volunteers-area .section-title h2 {
  color: var(--whiteColor);
}

.volunteer-card {
  margin-bottom: 25px;
}
.volunteer-card .volunteer-image {
  position: relative;
}
.volunteer-card .volunteer-image .social-info {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  line-height: 1;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  padding-left: 0;
  padding-right: 0;
}
.volunteer-card .volunteer-image .social-info li {
  list-style-type: none;
  margin-right: 25px;
}
.volunteer-card .volunteer-image .social-info li a i {
  color: var(--blackColor);
  font-size: 18px;
  transition: var(--transition);
}
.volunteer-card .volunteer-image .social-info li a i:hover {
  color: var(--primaryColor);
}
.volunteer-card .volunteer-image .social-info li:last-child {
  margin-right: 0;
}
.volunteer-card .volunteer-image::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--whiteColor);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.volunteer-card .volunteer-image.two::before {
  border-radius: 0;
}
.volunteer-card .volunteer-content {
  text-align: center;
  margin-top: 22px;
}
.volunteer-card .volunteer-content h3 {
  font-size: 25px;
  font-weight: 600;
  color: var(--whiteColor);
  margin-bottom: 0;
}
.volunteer-card .volunteer-content span {
  color: #C7C7C7;
  font-weight: 500;
  display: block;
  margin-top: 10px;
}
.volunteer-card:hover .volunteer-image .social-info {
  opacity: 1;
  visibility: visible;
}
.volunteer-card:hover .volunteer-image::before {
  opacity: 1;
  visibility: visible;
}

.volunteers-shape {
  position: absolute;
  top: 18%;
  left: 10%;
  transform: translateY(-18%) translateX(-10%);
  z-index: -1;
}

.volunteer-item {
  margin-bottom: 25px;
}
.volunteer-item .volunteer-image {
  position: relative;
}
.volunteer-item .volunteer-image .social-info {
  position: absolute;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  line-height: 1;
  transition: var(--transition);
  background-color: var(--blackColor);
  padding: 20px 30px;
  opacity: 0;
  visibility: hidden;
}
.volunteer-item .volunteer-image .social-info li {
  list-style-type: none;
  margin-right: 25px;
}
.volunteer-item .volunteer-image .social-info li a i {
  color: var(--whiteColor);
  font-size: 18px;
  transition: var(--transition);
}
.volunteer-item .volunteer-image .social-info li a i:hover {
  color: var(--primaryColor);
}
.volunteer-item .volunteer-image .social-info li:last-child {
  margin-right: 0;
}
.volunteer-item .volunteer-content {
  margin-top: 30px;
}
.volunteer-item .volunteer-content h3 {
  font-size: 25px;
  margin-bottom: 0;
}
.volunteer-item .volunteer-content span {
  display: block;
  font-weight: 500;
  margin-top: 7px;
}
.volunteer-item:hover .volunteer-image .social-info {
  opacity: 1;
  visibility: visible;
}

/*================================================
Animation Overview Area CSS
=================================================*/
.animation-overview-area {
  overflow: hidden;
  padding-top: 20px;
}
.animation-overview-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.animation-overview-area.style-two-wrap {
  padding-top: 0;
}
.animation-overview-area.style-two-wrap .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.animation-overview-area.style-two-wrap .animation-overview-content {
  border-radius: 0;
}
.animation-overview-area.without-top {
  padding-top: 0;
}

.animation-overview-content {
  border-radius: 20px;
  background: #DFE8ED;
  overflow: hidden;
  padding: 50px;
}
.animation-overview-content h1 {
  white-space: nowrap;
  font-size: 65px;
  font-weight: 700;
  margin-bottom: 0;
  color: #1297E0;
  font-family: var(--optionalfontFamily);
  animation: marquee 5s linear infinite forwards;
}
.animation-overview-content h1:hover {
  animation-play-state: paused;
}
.animation-overview-content h1 .hashtag {
  margin: 0 25px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.6%);
  }
}
/*================================================
Donation Calculate Area CSS
=================================================*/
.donation-calculate-inner {
  border-radius: 20px;
  background-color: #F6F5F5;
}
.donation-calculate-inner.without-border-radius {
  border-radius: 0;
}
.donation-calculate-inner.without-border-radius .donation-calculate-image {
  border-radius: 0;
}
.donation-calculate-inner.without-border-radius .donation-calculate-content .middle-content .middle-recommended {
  padding: 45px 25px;
}
.donation-calculate-inner.without-border-radius .donation-calculate-content .middle-content .middle-recommended h1 {
  font-size: 36px;
  color: var(--blackColor);
}
.donation-calculate-inner.without-border-radius .donation-calculate-content .middle-content .middle-recommended span {
  font-size: 12px;
}
.donation-calculate-inner.style-two .donation-calculate-content .content .sub {
  color: #635BFF;
}
.donation-calculate-inner.style-two .donation-calculate-content .middle-content .middle-recommended {
  border-radius: 0;
}
.donation-calculate-inner.style-two .donation-calculate-content .donation-calculate-btn .default-btn {
  background: #1297E0;
}
.donation-calculate-inner.style-two .donation-calculate-content .donation-calculate-btn .default-btn:hover {
  background-color: var(--primaryColor);
}
.donation-calculate-inner .causes-progress {
  position: relative;
  margin: 25px 0 35px 0;
}
.donation-calculate-inner .causes-progress .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 27px;
}
.donation-calculate-inner .causes-progress .info span {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
  display: block;
  margin-bottom: 7px;
}
.donation-calculate-inner .causes-progress .info h5 {
  margin-bottom: 0;
  font-size: 25px;
}
.donation-calculate-inner .skill-bar {
  margin-top: 45px;
}
.donation-calculate-inner .skill-bar .progress-title-holder {
  position: relative;
  margin-bottom: 0;
}
.donation-calculate-inner .skill-bar .progress-number-mark {
  display: inline-block;
  padding: 1.5px 5.5px;
  position: absolute;
  left: calc(12% - 5px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  background-color: #1297E0;
  color: #ffffff;
  font-weight: 700;
}
.donation-calculate-inner .skill-bar .progress-content-outter {
  background-color: #ffffff;
  border-radius: 50px;
}
.donation-calculate-inner .skill-bar .progress-content {
  height: 5px;
  background: #1297E0;
  border-radius: 50px;
  width: 0%;
  position: relative;
  margin: 5.5px 0 5.5px;
}
.donation-calculate-inner .give-goal-progress, .donation-calculate-inner .give-form-title, .donation-calculate-inner .give_error, .donation-calculate-inner .give_warning, .donation-calculate-inner #give_purchase_form_wrap, .donation-calculate-inner #give-payment-mode-select {
  display: none;
}

.donation-calculate-image {
  background-image: url(../images/donation-calculate/donation-calculate1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  border-radius: 20px 0px 0px 20px;
  position: relative;
}
.donation-calculate-image.bg-two {
  background-image: url(../images/donation-calculate/donation-calculate2.jpg);
}
.donation-calculate-image.bg-three {
  background-image: url(../images/donation-calculate/donation-calculate3.jpg);
}
.donation-calculate-image .wrap-shape {
  position: absolute;
  right: 40px;
  bottom: 50px;
}

.donation-calculate-content {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 70px;
  padding-right: 100px;
}
.donation-calculate-content .content {
  margin-bottom: 35px;
}
.donation-calculate-content .content .sub {
  font-size: 25px;
  color: var(--secondaryColor);
  font-weight: 700;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.1;
}
.donation-calculate-content .content h2 {
  font-size: 45px;
  margin-bottom: 0;
  letter-spacing: -2.2px;
}
.donation-calculate-content .donation-progress {
  position: relative;
}
.donation-calculate-content .donation-progress .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 27px;
}
.donation-calculate-content .donation-progress .info span {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
}
.donation-calculate-content .donation-progress .info span:last-child {
  font-weight: 600;
  color: var(--blackColor);
  letter-spacing: 0.5px;
  position: relative;
  top: 20px;
}
.donation-calculate-content .donation-progress .info-bar {
  position: relative;
}
.donation-calculate-content .donation-progress .info-bar .progress {
  height: 5px;
  border-radius: 50px;
  background-color: var(--whiteColor);
}
.donation-calculate-content .donation-progress .info-bar .progress .progress-bar {
  border-radius: 50px;
  background-color: #1297E0;
  width: 18%;
}
.donation-calculate-content .donation-progress .info-bar ._tooltip {
  display: inline-block;
  padding: 1.5px 5.5px;
  position: absolute;
  left: calc(18% - 5px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  background-color: #1297E0;
  color: var(--whiteColor);
  font-weight: 700;
}
.donation-calculate-content .recurring-payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.donation-calculate-content .recurring-payment span {
  font-size: 14px;
  font-weight: 700;
}
.donation-calculate-content .recurring-payment .yes-no {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.donation-calculate-content .recurring-payment .yes-no li {
  list-style-type: none;
  margin-right: 10px;
}
.donation-calculate-content .recurring-payment .yes-no li button {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  border: none;
  padding: 5px 10px 5px 15px;
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
  border-radius: 50px;
  transition: var(--transition);
}
.donation-calculate-content .recurring-payment .yes-no li button i {
  font-size: 22px;
  margin-left: 5px;
}
.donation-calculate-content .recurring-payment .yes-no li button:hover {
  background-color: var(--primaryColor);
}
.donation-calculate-content .recurring-payment .yes-no li:last-child {
  margin-right: 0;
}
.donation-calculate-content .recurring-payment .yes-no li:last-child button {
  background-color: #F65147;
}
.donation-calculate-content .recurring-payment .yes-no li:last-child button:hover {
  background-color: var(--primaryColor);
}
.donation-calculate-content .middle-content {
  margin-top: 30px;
}
.donation-calculate-content .middle-content .middle-info h4 {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--paragraphColor);
  margin-bottom: 20px;
}
.donation-calculate-content .middle-content .middle-info .set-price.give-donation-amount.form-row-wide {
  font-size: 16px;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  background-color: var(--whiteColor);
  color: var(--blackColor);
  border-radius: 50px;
  transition: var(--transition);
  margin-bottom: 15px;
  display: none;
}
.donation-calculate-content .middle-content .middle-info .set-price.give-donation-amount.form-row-wide span {
  border: none;
  background-color: transparent;
  padding: 0;
}
.donation-calculate-content .middle-content .middle-info form[id*=give-form] .give-donation-amount #give-amount, .donation-calculate-content .middle-content .middle-info form[id*=give-form] .give-donation-amount #give-amount-text {
  background-color: transparent;
  padding: 0;
  border: none;
}
.donation-calculate-content .middle-content .middle-info [id*=give-form] div.give-form-content-wrap {
  display: none;
}
.donation-calculate-content .middle-content .middle-info .give-donation-levels-wrap {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.donation-calculate-content .middle-content .middle-info .give-donation-levels-wrap li {
  list-style-type: none;
  margin-right: 10px;
}
.donation-calculate-content .middle-content .middle-info .give-donation-levels-wrap li button {
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  border: none;
  padding: 15px 24px;
  background-color: var(--whiteColor);
  color: var(--blackColor);
  border-radius: 50px;
  transition: var(--transition);
}
.donation-calculate-content .middle-content .middle-info .give-donation-levels-wrap li button:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.donation-calculate-content .middle-content .middle-info .give-donation-levels-wrap li:last-child {
  margin-right: 0;
}
.donation-calculate-content .middle-content .middle-info .list {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.donation-calculate-content .middle-content .middle-info .list li {
  list-style-type: none;
  margin-right: 10px;
}
.donation-calculate-content .middle-content .middle-info .list li span {
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  border: none;
  padding: 8px 20px;
  background-color: var(--whiteColor);
  color: var(--blackColor);
  border-radius: 50px;
  transition: var(--transition);
}
.donation-calculate-content .middle-content .middle-info .list li:last-child {
  margin-right: 0;
}
.donation-calculate-content .middle-content .middle-info .give-form-group {
  margin-top: 30px;
}
.donation-calculate-content .middle-content .middle-info .give-form-group p {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}
.donation-calculate-content .middle-content .middle-info .give-form-group h5 {
  font-size: 20px;
  color: var(--primaryColor);
  margin-bottom: 0;
  text-transform: uppercase;
}
.donation-calculate-content .middle-content .middle-recommended {
  background-color: var(--whiteColor);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  margin-left: 35px;
}
.donation-calculate-content .middle-content .middle-recommended span {
  font-size: 14px;
  font-weight: 700;
  color: var(--blackColor);
  display: block;
  margin-bottom: 15px;
}
.donation-calculate-content .middle-content .middle-recommended h1 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 60px;
  font-family: var(--optionalfontFamily);
  color: var(--primaryColor);
  display: flex;
  justify-content: center;
  align-items: end;
  line-height: 1;
}
.donation-calculate-content .middle-content .middle-recommended h1 span {
  font-size: 20px;
  margin-left: 5px;
}
.donation-calculate-content .donation-calculate-btn {
  margin-top: 30px;
}
.donation-calculate-content .donation-calculate-btn .default-btn {
  width: 100%;
  border: none;
}
.donation-calculate-content .payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.donation-calculate-content .payment span {
  font-size: 14px;
  font-weight: 700;
}
.donation-calculate-content .payment .payment-list {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.donation-calculate-content .payment .payment-list li {
  list-style-type: none;
  margin-right: 30px;
}
.donation-calculate-content .payment .payment-list li:last-child {
  margin-right: 0;
}

.giveformmodal {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.giveformmodal .give-goal-progress, .giveformmodal .give-form-title, .giveformmodal .give_error, .giveformmodal .give_warning {
  display: none;
}
.giveformmodal .modal-header {
  border: none;
  margin: 0;
  padding: 20px 0 0;
}
.giveformmodal .modal-header button {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #f3f3f3;
  border-radius: 50px;
}
.giveformmodal .modal-content {
  padding: 5px 30px 30px;
}
.giveformmodal .modal-content form[id*=give-form] .give-donation-amount {
  font-size: 14px;
  font-weight: 600;
  border: none;
  padding: 15px 24px;
  background-color: #EBE7F3;
  color: var(--blackColor);
  border-radius: 50px;
  transition: var(--transition);
}
.giveformmodal .modal-content form[id*=give-form] .give-donation-amount #give-amount {
  background-color: transparent;
  border: none;
  padding: 0;
}
.giveformmodal .modal-content form[id*=give-form] .give-donation-amount .give-currency-symbol {
  background-color: transparent;
  border: none;
  padding: 0;
}
.giveformmodal .modal-content form[id*=give-form] .give-donation-amount span {
  background-color: transparent;
  border: none;
  padding: 0;
}
.giveformmodal .modal-content form[id*=give-form] .give-donation-amount #give-amount-text {
  background-color: transparent;
  border: none;
  padding: 0;
}
.giveformmodal .modal-content form[id*=give-form] legend {
  font-weight: 700;
  color: var(--paragraphColor);
  font-size: 16px;
  display: block;
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: var(--mainfontFamily);
  border-bottom: none;
}
.giveformmodal .modal-content form[id*=give-form] #give_checkout_user_info .give-label {
  font-size: 16px;
  font-family: var(--mainfontFamily);
  color: var(--paragraphColor);
  margin-bottom: 15px;
}
.giveformmodal .modal-content form[id*=give-form] #give_checkout_user_info .give-input {
  border-radius: 50px;
  background-color: #F5F5F5;
  font-weight: 500;
  outline: 0;
  box-shadow: unset;
  border: 1px solid #F5F5F5;
  padding: 15px 30px;
  color: #646464;
  transition: 0.6s;
}
.giveformmodal .modal-content form[id*=give-form] #give_checkout_user_info textarea {
  border-radius: 30px;
  min-height: 120px;
}
.giveformmodal .modal-content form[id*=give-form] .form-row-first .form-row .form-row-responsive .give-label {
  font-size: 16px;
  font-family: var(--mainfontFamily);
  color: var(--paragraphColor);
  margin-bottom: 15px;
}
.giveformmodal .modal-content form[id*=give-form] .form-row-first .form-row .form-row-responsive .give-input {
  display: inline-block;
  height: 60px;
  width: 100%;
  border-radius: 50px;
  background-color: #F5F5F5;
  font-weight: 500;
  outline: 0;
  box-shadow: unset;
  border: 1px solid #F5F5F5;
  padding: 15px 30px;
  color: #646464;
  transition: 0.6s;
}
.giveformmodal .modal-content form[id*=give-form] #give-final-total-wrap .give-donation-total-label {
  background-color: transparent;
  border: none;
  padding: 0;
  font-weight: 600;
  color: var(--blackColor);
  font-size: 20px;
  font-family: var(--mainfontFamily);
  border-bottom: none;
}
.giveformmodal .modal-content form[id*=give-form] #give-final-total-wrap .give-final-total-amount {
  background-color: transparent;
  border: none;
  color: var(--primaryColor);
}
.giveformmodal .modal-content [id*=give-form] div.give-form-content-wrap {
  display: none;
}
.giveformmodal .modal-content .give-submit-button-wrap .give-submit, .giveformmodal .modal-content .give-submit-button-wrap [id^=give-user-login-submit] .give-submit {
  background-color: var(--primaryColor);
  border: none;
  color: var(--whiteColor);
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 16px !important;
  font-weight: 700;
  font-family: var(--mainfontFamily);
}
.giveformmodal .modal-content .give-donation-levels-wrap {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.giveformmodal .modal-content .give-donation-levels-wrap li {
  list-style-type: none;
  margin-right: 10px;
}
.giveformmodal .modal-content .give-donation-levels-wrap li button {
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  border: none;
  padding: 15px 24px;
  background-color: #EBE7F3;
  color: var(--blackColor);
  border-radius: 50px;
  transition: var(--transition);
}
.giveformmodal .modal-content .give-donation-levels-wrap li button:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.giveformmodal .modal-content .give-donation-levels-wrap li:last-child {
  margin-right: 0;
}

/*================================================
Shop Area CSS
=================================================*/
.shop-inner-left-content {
  background-color: var(--blackColor);
  padding: 115px 30px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.shop-inner-left-content h2 {
  font-size: 35px;
  margin-bottom: 0;
  color: var(--whiteColor);
  font-family: var(--optionalfontFamily);
  letter-spacing: 2px;
  line-height: 1.4;
}
.shop-inner-left-content h2 span {
  font-size: 45px;
  color: #FFD025;
}
.shop-inner-left-content .shop-btn {
  margin-top: 30px;
}
.shop-inner-left-content .wrap-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.shop-card {
  margin-bottom: 25px;
}
.shop-card .shop-image {
  position: relative;
}
.shop-card .shop-image img {
  border-radius: 20px;
  border: 1.5px solid #E6ECEF;
}
.shop-card .shop-image .new {
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  padding: 2px 12px;
  border-radius: 5px;
  background-color: #635BFF;
  color: var(--whiteColor);
  position: absolute;
  left: 15px;
  top: 15px;
}
.shop-card .shop-image .sale {
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  padding: 2px 12px;
  border-radius: 5px;
  background-color: #F65147;
  color: var(--whiteColor);
  position: absolute;
  left: 15px;
  top: 15px;
}
.shop-card .shop-image .add-to-cart-bt {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.shop-card .shop-image .add-to-cart-bt .add-to-cart-btn {
  padding: 15px 35px 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition);
  background-color: var(--blackColor);
  color: var(--whiteColor);
  border: none;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
}
.shop-card .shop-image .add-to-cart-bt .add-to-cart-btn:hover {
  background-color: var(--primaryColor);
}
.shop-card .shop-image .add-to-cart-bt .add-to-cart-btn.added {
  display: none;
}
.shop-card .shop-image .add-to-cart-bt .added_to_cart {
  padding: 15px 45px 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition);
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border: none;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
}
.shop-card .shop-image .add-to-cart-bt .added_to_cart:hover {
  background-color: var(--blackColor);
}
.shop-card .shop-image .add-to-cart-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.shop-card .shop-image .add-to-cart-btn .default-btn {
  background-color: var(--blackColor);
  padding: 12.8px 20px 12px;
  font-size: 14px;
}
.shop-card .shop-image .add-to-cart-btn .default-btn:hover {
  background-color: var(--secondaryColor);
}
.shop-card .shop-content {
  text-align: center;
  margin-top: 25px;
}
.shop-card .shop-content h3 {
  font-size: 24.5px;
  margin-bottom: 0;
}
.shop-card .shop-content .price {
  margin-top: 12px;
}
.shop-card .shop-content .price span {
  font-weight: 600;
  color: #1297E0;
}
.shop-card .shop-content .price span del {
  color: #858585;
}
.shop-card:hover .shop-image .add-to-cart-bt {
  opacity: 1;
  visibility: visible;
}
.shop-card:hover .shop-image .add-to-cart-btn {
  opacity: 1;
  visibility: visible;
}
.shop-card.two .shop-image {
  background-color: #E6ECEF;
}
.shop-card.two .shop-image img {
  background-color: #E6ECEF;
}

.shop-inner-area {
  position: relative;
  padding: 0 35px;
}
.shop-inner-area .shop-button-prev {
  position: absolute;
  left: 0;
  top: 35%;
  transform: translateY(-35%);
  color: var(--blackColor);
  font-size: 25px;
  transition: var(--transition);
}
.shop-inner-area .shop-button-prev:hover {
  color: var(--primaryColor);
}
.shop-inner-area .shop-button-next {
  position: absolute;
  right: 0;
  top: 35%;
  transform: translateY(-35%);
  color: var(--blackColor);
  font-size: 25px;
  transition: var(--transition);
}
.shop-inner-area .shop-button-next:hover {
  color: var(--primaryColor);
}
.shop-inner-area.wrap-style-two {
  padding: 0 45px;
}
.shop-inner-area.wrap-style-two .shop-card .shop-image img {
  border-radius: 0;
  border: none;
}
.shop-inner-area.wrap-style-two .shop-card .shop-image .new {
  border-radius: 0;
}
.shop-inner-area.wrap-style-two .shop-card .shop-image .sale {
  border-radius: 0;
}

.shop-bottom-content {
  border-radius: 20px;
  background-color: #DAE6EC;
  padding: 35px 150px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 10px;
  margin-left: 35px;
  margin-right: 35px;
}
.shop-bottom-content p {
  font-size: 18px;
  color: var(--blackColor);
}
.shop-bottom-content .love-one {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 60px;
  z-index: -1;
}
.shop-bottom-content .love-two {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
  z-index: -1;
}
.shop-bottom-content.wrap-style-two {
  max-width: 885px;
  margin: 10px auto 0;
  background-color: #DBD3EC;
  border-radius: 0;
}

.shop-grid-box {
  margin-bottom: 25px;
}
.shop-grid-box p {
  margin-bottom: 0;
}
.shop-grid-box p span {
  color: var(--blackColor);
}
.shop-grid-box .bold {
  color: var(--blackColor);
  margin-right: 15px;
}
.shop-grid-box .form-select {
  display: inline-block;
  width: 200px;
  height: 45px;
  background-color: #F7F8F9;
  color: var(--paragraphColor);
  padding: 0 20px;
  font-size: 15px;
  border: none;
  border-radius: 50px;
  box-shadow: unset;
  outline: 0;
}

/*================================================
Shop Widget Area CSS
=================================================*/
.shop-widget-area {
  background-color: #E6ECEF;
  padding: 30px;
}
.shop-widget-area .widget {
  margin-bottom: 55px;
}
.shop-widget-area .widget .widget-title {
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 600;
}
.shop-widget-area .widget:last-child {
  margin-bottom: 0;
}
.shop-widget-area .widget_search form {
  position: relative;
}
.shop-widget-area .widget_search form .search-field {
  display: inline-block;
  height: 70px;
  border-radius: 10px;
  background: var(--whiteColor);
  border: none;
  outline: 0;
  box-shadow: unset;
  color: #939090;
  padding: 15px 25px 15px 65px;
  width: 100%;
  transition: var(--transition);
}
.shop-widget-area .widget_search form .search-field::-moz-placeholder {
  color: #939090;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.shop-widget-area .widget_search form .search-field::placeholder {
  color: #939090;
  transition: var(--transition);
}
.shop-widget-area .widget_search form .search-field:focus::-moz-placeholder {
  color: transparent;
}
.shop-widget-area .widget_search form .search-field:focus::placeholder {
  color: transparent;
}
.shop-widget-area .widget_search form button {
  border: none;
  padding: 0;
  background-color: transparent;
  font-size: 25px;
  color: var(--blackColor);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  transition: var(--transition);
  line-height: 0;
}
.shop-widget-area .widget_search form button:hover {
  color: var(--secondaryColor);
}
.shop-widget-area .widget_categories .list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.shop-widget-area .widget_categories .list li {
  list-style-type: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
}
.shop-widget-area .widget_categories .list li:last-child {
  margin-bottom: 0;
}
.shop-widget-area .widget_categories .list li a {
  font-weight: 600;
  color: var(--paragraphColor);
}
.shop-widget-area .widget_categories .list li a:hover {
  color: var(--primaryColor);
}
.shop-widget-area .widget_products .item {
  background-color: var(--whiteColor);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.shop-widget-area .widget_products .item:last-child {
  margin-bottom: 0;
}
.shop-widget-area .widget_products .item .image {
  max-width: 85px;
}
.shop-widget-area .widget_products .item .title {
  margin-left: 30px;
}
.shop-widget-area .widget_products .item .title h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.shop-widget-area .widget_products .item .title .price {
  font-weight: 700;
  font-size: 25px;
  color: var(--secondaryColor);
  font-family: var(--optionalfontFamily);
}

/*================================================
Product Details Area CSS
=================================================*/
.product-details-image .tab-content img {
  border-radius: 20px;
  border: 1.5px solid #E6ECEF;
}
.product-details-image .tab-content .tab-pane {
  position: relative;
}
.product-details-image .tab-content .tab-pane .new {
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  padding: 2px 12px;
  border-radius: 5px;
  background-color: #635BFF;
  color: var(--whiteColor);
  position: absolute;
  left: 15px;
  top: 15px;
}
.product-details-image .tab-content .tab-pane .sale {
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  padding: 2px 12px;
  border-radius: 5px;
  background-color: #F65147;
  color: var(--whiteColor);
  position: absolute;
  left: 15px;
  top: 15px;
}
.product-details-image .nav {
  max-width: 110px;
  border: none;
  margin-left: 20px;
}
.product-details-image .nav .nav-link {
  background-color: transparent;
  padding: 0;
  border-radius: 20px;
  margin-bottom: 15px;
}
.product-details-image .nav .nav-link img {
  border-radius: 20px;
  border: 1.5px solid #E6ECEF;
  transition: var(--transition);
}
.product-details-image .nav .nav-link.active {
  border: 1.5px solid var(--secondaryColor);
}
.product-details-image .nav .nav-link:last-child {
  margin-bottom: 0;
}
.product-details-image img {
  border-radius: 20px;
  border: 1.5px solid #E6ECEF;
}

.product-details-content {
  padding-left: 45px;
}
.product-details-content .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.product-details-content .top span {
  font-size: 14px;
  font-weight: 600;
}
.product-details-content .top span a {
  color: var(--paragraphColor);
  text-transform: uppercase;
}
.product-details-content .top .rating {
  margin-bottom: 0;
  display: flex;
  padding-left: 0;
  padding-right: 0;
}
.product-details-content .top .rating li {
  list-style-type: none;
  margin-right: 10px;
}
.product-details-content .top .rating li i {
  color: #E2BA2D;
}
.product-details-content .top .rating li span {
  font-weight: 600;
}
.product-details-content .top .rating li:last-child {
  margin-right: 0;
}
.product-details-content h2 {
  letter-spacing: -2.2px;
  font-size: 45px;
  margin-bottom: 15px;
}
.product-details-content .price {
  color: var(--secondaryColor) !important;
  font-weight: 700 !important;
  font-family: var(--optionalfontFamily) !important;
  font-size: 25px !important;
  margin-bottom: 15px !important;
}
.product-details-content p {
  margin-bottom: 0;
}
.product-details-content .size-list {
  margin-top: 20px;
}
.product-details-content .size-list span {
  font-size: 14px;
  letter-spacing: 1.4px;
  font-weight: 600;
  color: var(--blackColor);
  display: block;
  margin-bottom: 15px;
}
.product-details-content .size-list .info {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.product-details-content .size-list .info li {
  list-style-type: none;
  margin-right: 10px;
}
.product-details-content .size-list .info li button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 40px;
  line-height: 40px;
  border-radius: 7px;
  border: 1px solid #E6ECEF;
  background: var(--whiteColor);
  color: var(--blackColor);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.4px;
  transition: var(--transition);
}
.product-details-content .size-list .info li button:hover, .product-details-content .size-list .info li button.active {
  border: 1px solid var(--blackColor);
  background: var(--blackColor);
  color: var(--whiteColor);
}
.product-details-content .size-list .info li:last-child {
  margin-right: 0;
}
.product-details-content .product-quantity {
  display: flex;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.product-details-content .product-quantity li {
  list-style-type: none;
  margin-right: 15px;
}
.product-details-content .product-quantity li .add-to-cart-counter {
  display: flex;
}
.product-details-content .product-quantity li .add-to-cart-counter input {
  background: #F6F5F5;
  color: var(--blackColor);
  max-width: 85px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 0;
  border: none;
}
.product-details-content .product-quantity li .add-to-cart-counter .minusBtn {
  border-radius: 10px 0 0 10px;
}
.product-details-content .product-quantity li .add-to-cart-counter .plusBtn {
  border-radius: 0 10px 10px 0;
}
.product-details-content .product-quantity li .default-btn {
  border-radius: 10px;
  border: none;
}
.product-details-content .product-quantity li .wishlist-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--blackColor);
  display: flex;
  align-items: center;
}
.product-details-content .product-quantity li .wishlist-link i {
  color: #EF4136;
  font-size: 18px;
  margin-left: 7px;
}
.product-details-content .product-quantity li .wishlist-link:hover {
  color: var(--secondaryColor);
}
.product-details-content .product-quantity li:last-child {
  margin-right: 0;
}
.product-details-content .info-list {
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.product-details-content .info-list li {
  list-style-type: none;
  margin-bottom: 15px;
  font-size: 14px;
  letter-spacing: 1.4px;
}
.product-details-content .info-list li a {
  color: var(--paragraphColor);
}
.product-details-content .info-list li a:hover {
  color: var(--secondaryColor);
}
.product-details-content .info-list li span {
  font-weight: 600;
}
.product-details-content .info-list li strong {
  color: var(--secondaryColor);
  font-weight: 500;
}
.product-details-content .info-list li:last-child {
  margin-bottom: 0;
}

.product-details-information-tabs {
  margin-top: 100px;
}
.product-details-information-tabs .nav {
  display: flex;
  border: none;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}
.product-details-information-tabs .nav .nav-item {
  border: none;
  margin-right: 50px;
}
.product-details-information-tabs .nav .nav-item:last-child {
  margin-right: 0;
}
.product-details-information-tabs .nav .nav-item .nav-link {
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: 20px;
  color: #748894;
  font-weight: 600;
  transition: var(--transition);
  padding-bottom: 20px;
  position: relative;
}
.product-details-information-tabs .nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -1.5px;
  width: 100%;
  height: 4px;
  border-radius: 50px;
  background-color: var(--secondaryColor);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.product-details-information-tabs .nav .nav-item .nav-link:hover, .product-details-information-tabs .nav .nav-item .nav-link.active {
  color: var(--secondaryColor);
}
.product-details-information-tabs .nav .nav-item .nav-link:hover::before, .product-details-information-tabs .nav .nav-item .nav-link.active::before {
  opacity: 1;
  visibility: visible;
}
.product-details-information-tabs .comments-content h2 {
  font-size: 25px;
  margin-bottom: 0;
}
.product-details-information-tabs .comments-content .comments-list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.product-details-information-tabs .comments-content .comments-list li {
  list-style-type: none;
  position: relative;
  padding-left: 92px;
  margin-top: 35px;
}
.product-details-information-tabs .comments-content .comments-list li .image {
  position: absolute;
  left: 0;
  top: 0;
}
.product-details-information-tabs .comments-content .comments-list li .image img {
  border-radius: 10px;
}
.product-details-information-tabs .comments-content .comments-list li .info h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}
.product-details-information-tabs .comments-content .comments-list li .info h4 span {
  font-weight: 500;
  font-size: 14px;
  color: #748894;
}
.product-details-information-tabs .comments-content .comments-list li .info p {
  margin-bottom: 0;
}
.product-details-information-tabs .comments-content .comments-list li .info .rating {
  display: flex;
  position: absolute;
  top: -1px;
  right: 0;
}
.product-details-information-tabs .comments-content .comments-list li .info .rating span {
  margin-right: 10px;
  font-weight: 600;
}
.product-details-information-tabs .comments-content .comments-list li .info .rating span i {
  color: #E2BA2D;
}
.product-details-information-tabs .comments-content .comments-list li .info .rating span:last-child {
  margin-right: 0;
}
.product-details-information-tabs .comments-content .comments-form {
  margin-top: 100px;
}
.product-details-information-tabs .comments-content .comments-form h3 {
  font-size: 25px;
  margin-bottom: 25px;
}
.product-details-information-tabs .comments-content .comments-form .rating {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}
.product-details-information-tabs .comments-content .comments-form .rating li {
  list-style-type: none;
  margin-right: 10px;
}
.product-details-information-tabs .comments-content .comments-form .rating li:last-child {
  margin-right: 0;
}
.product-details-information-tabs .comments-content .comments-form .rating li span {
  font-size: 14px;
  letter-spacing: 1.4px;
  font-weight: 600;
}
.product-details-information-tabs .comments-content .comments-form .rating li i {
  color: #E2BA2D;
  font-size: 25px;
}
.product-details-information-tabs .comments-content .comments-form .form-group {
  margin-bottom: 25px;
}
.product-details-information-tabs .comments-content .comments-form .form-group .form-control {
  display: inline-block;
  height: 60px;
  width: 100%;
  border-radius: 50px;
  background-color: #F5F5F5;
  font-weight: 500;
  outline: 0;
  box-shadow: unset;
  border: 1px solid #F5F5F5;
  padding: 15px 30px;
  color: var(--paragraphColor);
  transition: var(--transition);
}
.product-details-information-tabs .comments-content .comments-form .form-group .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.product-details-information-tabs .comments-content .comments-form .form-group .form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.product-details-information-tabs .comments-content .comments-form .form-group .form-control:focus {
  border: 1px solid var(--primaryColor);
}
.product-details-information-tabs .comments-content .comments-form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.product-details-information-tabs .comments-content .comments-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.product-details-information-tabs .comments-content .comments-form .form-group textarea.form-control {
  min-height: 155px;
  border-radius: 20px;
  display: flex;
}
.product-details-information-tabs .comments-content .comments-form .form-group .form-check {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.product-details-information-tabs .comments-content .comments-form .form-group .form-check .form-check-input {
  border-radius: 50px;
  border: 1px solid var(--secondaryColor);
  height: 20px;
  width: 20px;
  margin-top: -2px;
  outline: 0;
  box-shadow: unset;
}
.product-details-information-tabs .comments-content .comments-form .form-group .form-check .form-check-label {
  color: #748894;
  font-size: 15px;
  font-weight: 500;
  margin-left: 10px;
}
.product-details-information-tabs .comments-content .comments-form .default-btn {
  border: none;
}
.product-details-information-tabs .product-details-side {
  background-color: var(--blackColor);
  padding: 100px 35px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 310px;
  margin-left: auto;
}
.product-details-information-tabs .product-details-side h2 {
  font-size: 35px;
  margin-bottom: 30px;
  color: var(--whiteColor);
  font-family: var(--optionalfontFamily);
  letter-spacing: 2px;
  line-height: 1.4;
}
.product-details-information-tabs .product-details-side h2 span {
  font-size: 45px;
  color: #FFD025;
}
.product-details-information-tabs .product-details-side .wrap-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.partner-item {
  text-align: center;
  margin-bottom: 25px;
}

.partner-inner-wrap {
  margin-top: 75px;
}
.partner-inner-wrap .partner-item {
  margin-top: 25px;
  margin-bottom: 0;
}

/*================================================
Blog Area CSS
=================================================*/
.blog-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.blog-area .section-title {
  max-width: 615px;
}
.blog-area.without-hidden {
  overflow: unset;
}

.blog-left-card .card-one {
  background: var(--whiteColor);
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.06);
  padding: 30px;
  margin-bottom: 25px;
  transition: var(--transition);
  border: 1px solid var(--whiteColor);
}
.blog-left-card .card-one .tag-btn {
  font-size: 14px;
  font-weight: 700;
  background-color: #F65147;
  color: var(--whiteColor);
  padding: 2px 5px;
  border-radius: 5px;
}
.blog-left-card .card-one .tag-btn:hover {
  background-color: var(--primaryColor);
}
.blog-left-card .card-one .content {
  margin-top: 90px;
}
.blog-left-card .card-one .content .sub {
  font-size: 25px;
  font-weight: 700;
  color: var(--secondaryColor);
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 15px;
}
.blog-left-card .card-one .content h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}
.blog-left-card .card-one .content .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.blog-left-card .card-one .content .meta li {
  list-style-type: none;
  display: flex;
  align-items: center;
}
.blog-left-card .card-one .content .meta li a img {
  margin-right: 7px;
}
.blog-left-card .card-one .content .meta li a span {
  font-weight: 600;
  letter-spacing: 1.3px;
  font-size: 14px;
  color: var(--paragraphColor);
  transition: var(--transition);
}
.blog-left-card .card-one .content .meta li a span:hover {
  color: var(--primaryColor);
}
.blog-left-card .card-one .content .meta li i {
  font-size: 25px;
  color: var(--primaryColor);
  margin-right: 7px;
}
.blog-left-card .card-one .content .meta li span {
  font-weight: 600;
  letter-spacing: 1.3px;
  font-size: 14px;
  color: var(--paragraphColor);
}
.blog-left-card .card-one:hover {
  border: 1px solid var(--secondaryColor);
}
.blog-left-card .card-quote {
  background-image: url(../images/blog/blog-quote.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.blog-left-card .card-quote img {
  margin-bottom: 15px;
}
.blog-left-card .card-quote h3 {
  font-size: 25px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-left-card .card-quote span {
  font-size: 20px;
  color: var(--blackColor);
  font-weight: 700;
  font-family: var(--optionalfontFamily);
}
.blog-left-card .card-quote::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 208, 37, 0.9);
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.06);
  z-index: -1;
}

.blog-large-card {
  background-image: url(../images/blog/blog-large.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}
.blog-large-card .tag-btn {
  font-size: 14px;
  font-weight: 700;
  background-color: #F65147;
  color: var(--whiteColor);
  padding: 2px 5px;
  border-radius: 5px;
  position: absolute;
  left: 30px;
  top: 30px;
}
.blog-large-card .tag-btn:hover {
  background-color: var(--primaryColor);
}
.blog-large-card .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
}
.blog-large-card .content .sub {
  font-size: 25px;
  font-weight: 700;
  color: #FFD025;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 15px;
}
.blog-large-card .content h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}
.blog-large-card .content h3 a {
  color: var(--whiteColor);
}
.blog-large-card .content h3 a:hover {
  color: var(--primaryColor);
}
.blog-large-card .content .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.blog-large-card .content .meta li {
  list-style-type: none;
  display: flex;
  align-items: center;
}
.blog-large-card .content .meta li a img {
  margin-right: 7px;
}
.blog-large-card .content .meta li a span {
  font-weight: 600;
  letter-spacing: 1.3px;
  font-size: 14px;
  color: #CBCBCB;
  transition: var(--transition);
}
.blog-large-card .content .meta li a span:hover {
  color: var(--primaryColor);
}
.blog-large-card .content .meta li i {
  font-size: 25px;
  color: var(--primaryColor);
  margin-right: 7px;
}
.blog-large-card .content .meta li span {
  font-weight: 600;
  letter-spacing: 1.3px;
  font-size: 14px;
  color: #CBCBCB;
}
.blog-large-card::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(34, 44, 51, 0) 58.42%, #222C33 100%);
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.06);
  height: 100%;
  width: 100%;
  z-index: -1;
}

.blog-right-card .simple-card {
  background-color: var(--primaryColor);
  padding: 43.5px 30px;
  margin-bottom: 25px;
  transition: var(--transition);
}
.blog-right-card .simple-card h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}
.blog-right-card .simple-card h3 a {
  color: var(--whiteColor);
}
.blog-right-card .simple-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.blog-right-card .simple-card .meta li {
  list-style-type: none;
  display: flex;
  align-items: center;
}
.blog-right-card .simple-card .meta li a img {
  margin-right: 7px;
}
.blog-right-card .simple-card .meta li a span {
  font-weight: 600;
  letter-spacing: 1.3px;
  font-size: 14px;
  color: #FFF1EA;
  transition: var(--transition);
}
.blog-right-card .simple-card .meta li i {
  font-size: 25px;
  color: #FFD025;
  margin-right: 7px;
}
.blog-right-card .simple-card .meta li span {
  font-weight: 600;
  letter-spacing: 1.3px;
  font-size: 14px;
  color: #FFF1EA;
}
.blog-right-card .simple-card:hover {
  background-color: var(--secondaryColor);
}
.blog-right-card .card-one {
  background: var(--whiteColor);
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.06);
  padding: 30px;
  transition: var(--transition);
  border: 1px solid var(--whiteColor);
}
.blog-right-card .card-one .tag-btn {
  font-size: 14px;
  font-weight: 700;
  background-color: #F65147;
  color: var(--whiteColor);
  padding: 2px 5px;
  border-radius: 5px;
}
.blog-right-card .card-one .tag-btn:hover {
  background-color: var(--primaryColor);
}
.blog-right-card .card-one .content {
  margin-top: 90px;
}
.blog-right-card .card-one .content .sub {
  font-size: 25px;
  font-weight: 700;
  color: var(--secondaryColor);
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 15px;
}
.blog-right-card .card-one .content h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}
.blog-right-card .card-one .content .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.blog-right-card .card-one .content .meta li {
  list-style-type: none;
  display: flex;
  align-items: center;
}
.blog-right-card .card-one .content .meta li a img {
  margin-right: 7px;
}
.blog-right-card .card-one .content .meta li a span {
  font-weight: 600;
  letter-spacing: 1.3px;
  font-size: 14px;
  color: var(--paragraphColor);
  transition: var(--transition);
}
.blog-right-card .card-one .content .meta li a span:hover {
  color: var(--primaryColor);
}
.blog-right-card .card-one .content .meta li i {
  font-size: 25px;
  color: var(--primaryColor);
  margin-right: 7px;
}
.blog-right-card .card-one .content .meta li span {
  font-weight: 600;
  letter-spacing: 1.3px;
  font-size: 14px;
  color: var(--paragraphColor);
}
.blog-right-card .card-one:hover {
  border: 1px solid var(--secondaryColor);
}

.blog-large-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -150px;
  z-index: -1;
}
.blog-large-shape.two {
  bottom: -300px;
}
.blog-large-shape.three {
  bottom: 0;
}

.blog-card {
  background: var(--whiteColor);
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.06);
  padding: 30px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.blog-card .tag-btn {
  font-size: 14px;
  font-weight: 700;
  background-color: #F65147;
  color: var(--whiteColor);
  padding: 2px 5px;
  border-radius: 5px;
}
.blog-card .tag-btn:hover {
  background-color: var(--primaryColor);
}
.blog-card .content {
  margin-top: 100px;
}
.blog-card .content .sub {
  font-size: 25px;
  font-weight: 700;
  color: var(--secondaryColor);
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 15px;
}
.blog-card .content h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}
.blog-card .content .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.blog-card .content .meta li {
  list-style-type: none;
  display: flex;
  align-items: center;
}
.blog-card .content .meta li a img {
  margin-right: 7px;
}
.blog-card .content .meta li a span {
  font-weight: 600;
  letter-spacing: 1.3px;
  font-size: 14px;
  color: var(--paragraphColor);
  transition: var(--transition);
}
.blog-card .content .meta li a span:hover {
  color: var(--primaryColor);
}
.blog-card .content .meta li i {
  font-size: 25px;
  color: var(--primaryColor);
  margin-right: 7px;
}
.blog-card .content .meta li span {
  font-weight: 600;
  letter-spacing: 1.3px;
  font-size: 14px;
  color: var(--paragraphColor);
}
.blog-card::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  background: var(--whiteColor);
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: var(--transition);
  visibility: visible;
}
.blog-card::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, #132631 0%, rgba(19, 38, 49, 0) 79.52%);
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.06);
  height: 100%;
  width: 100%;
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.blog-card:hover .content h3 a {
  color: var(--whiteColor);
}
.blog-card:hover .content h3 a:hover {
  color: var(--primaryColor);
}
.blog-card:hover .content .meta li a span {
  color: #BFBEBE;
}
.blog-card:hover .content .meta li a span:hover {
  color: var(--primaryColor);
}
.blog-card:hover .content .meta li span {
  color: #BFBEBE;
}
.blog-card:hover::before {
  opacity: 0;
  visibility: hidden;
}
.blog-card:hover::after {
  opacity: 1;
  visibility: visible;
}
.blog-card.two::before {
  background-image: url(../images/blog/blog2.jpg);
}
.blog-card.three::before {
  background-image: url(../images/blog/blog3.jpg);
}
.blog-card.four::before {
  background-image: url(../images/blog/blog4.jpg);
}
.blog-card.five::before {
  background-image: url(../images/blog/blog5.jpg);
}
.blog-card.six::before {
  background-image: url(../images/blog/blog6.jpg);
}
.blog-card.seven::before {
  background-image: url(../images/blog/blog7.jpg);
}
.blog-card.eight::before {
  background-image: url(../images/blog/blog8.jpg);
}
.blog-card.nine::before {
  background-image: url(../images/blog/blog9.jpg);
}
.blog-card.blog-card-bg::before {
  background-image: none;
  display: none;
}
.blog-card.blog-card-bg::after {
  display: none;
}
.blog-card.blog-card-bg:hover .content h3 a {
  color: var(--primaryColor);
}

.blog-map-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

/*================================================
Widget Area CSS
=================================================*/
.widget-area {
  background-color: #F6F5F5;
  padding: 30px;
}
.widget-area .widget {
  margin-bottom: 55px;
}
.widget-area .widget .widget-title {
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 600;
}
.widget-area .widget:last-child {
  margin-bottom: 0;
}
.widget-area .widget_search form {
  position: relative;
}
.widget-area .widget_search form .search-field {
  display: inline-block;
  height: 70px;
  border-radius: 10px;
  background: var(--whiteColor);
  border: none;
  outline: 0;
  box-shadow: unset;
  color: #939090;
  padding: 15px 25px 15px 65px;
  width: 100%;
  transition: var(--transition);
}
.widget-area .widget_search form .search-field::-moz-placeholder {
  color: #939090;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.widget-area .widget_search form .search-field::placeholder {
  color: #939090;
  transition: var(--transition);
}
.widget-area .widget_search form .search-field:focus::-moz-placeholder {
  color: transparent;
}
.widget-area .widget_search form .search-field:focus::placeholder {
  color: transparent;
}
.widget-area .widget_search form button {
  border: none;
  padding: 0;
  background-color: transparent;
  font-size: 25px;
  color: var(--blackColor);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  transition: var(--transition);
  line-height: 0;
}
.widget-area .widget_search form button:hover {
  color: var(--secondaryColor);
}
.widget-area .widget_traba_posts_thumbs .item {
  background-color: var(--whiteColor);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 15px;
}
.widget-area .widget_traba_posts_thumbs .item:last-child {
  margin-bottom: 0;
}
.widget-area .widget_traba_posts_thumbs .item .sub {
  font-size: 25px;
  font-weight: 700;
  color: var(--secondaryColor);
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 15px;
  line-height: 1;
}
.widget-area .widget_traba_posts_thumbs .item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.5;
}
.widget-area .widget_traba_posts_thumbs .item .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.widget-area .widget_traba_posts_thumbs .item .meta li {
  list-style-type: none;
  display: flex;
  align-items: center;
  color: var(--paragraphColor);
}
.widget-area .widget_traba_posts_thumbs .item .meta li i {
  font-size: 25px;
  color: var(--secondaryColor);
  margin-right: 7px;
}
.widget-area .widget_traba_posts_thumbs .item .meta li:last-child i {
  color: #1297E0;
}
.widget-area .widget_categories .list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.widget-area .widget_categories .list li {
  list-style-type: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
}
.widget-area .widget_categories .list li:last-child {
  margin-bottom: 0;
}
.widget-area .widget_categories .list li a {
  font-weight: 600;
  color: var(--paragraphColor);
}
.widget-area .widget_categories .list li a:hover {
  color: var(--primaryColor);
}
.widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 10px;
}
.widget-area .widget_tag_cloud .tagcloud a {
  display: inline-block;
  padding: 5px 7px;
  background: #F65147;
  color: var(--whiteColor);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  margin-right: 10px;
}
.widget-area .widget_tag_cloud .tagcloud a:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc {
  max-width: 850px;
  margin: auto;
}
.blog-details-desc.right-wrap {
  max-width: 100%;
  padding-right: 50px;
}
.blog-details-desc.left-wrap {
  max-width: 100%;
  padding-left: 50px;
}
.blog-details-desc .article-image {
  margin-bottom: 30px;
}
.blog-details-desc .article-top-content {
  margin-bottom: 30px;
}
.blog-details-desc .article-top-content h2 {
  font-size: 45px;
  letter-spacing: -2.2px;
  margin-bottom: 15px;
}
.blog-details-desc .article-top-content .list {
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.blog-details-desc .article-top-content .list li {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  margin-right: 55px;
  position: relative;
  font-style: normal;
}
.blog-details-desc .article-top-content .list li::before {
  position: absolute;
  content: "";
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E5ECEF;
  width: 1px;
  height: 100%;
}
.blog-details-desc .article-top-content .list li i {
  font-size: 25px;
  margin-right: 5px;
  color: var(--primaryColor);
  font-style: normal;
}
.blog-details-desc .article-top-content .list li:nth-child(2) i {
  color: var(--secondaryColor);
}
.blog-details-desc .article-top-content .list li:last-child {
  margin-right: 0;
}
.blog-details-desc .article-top-content .list li:last-child::before {
  display: none;
}
.blog-details-desc .article-top-content .list li:last-child i {
  color: #1297E0;
}
.blog-details-desc .article-content {
  margin-top: 30px;
  margin-bottom: 35px;
}
.blog-details-desc .article-content h3 {
  font-weight: 600;
  font-size: 25px;
  margin-top: 35px;
  margin-bottom: 15px;
}
.blog-details-desc .article-content .list {
  margin-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
}
.blog-details-desc .article-content .list li {
  list-style-type: none;
  font-weight: 500;
  color: #353232;
  margin-bottom: 20px;
  position: relative;
  padding-left: 32px;
  font-style: normal;
}
.blog-details-desc .article-content .list li:last-child {
  margin-bottom: 0;
}
.blog-details-desc .article-content .list li i {
  color: var(--secondaryColor);
  font-size: 25px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-style: normal;
}
.blog-details-desc .article-quote {
  position: relative;
  padding-left: 80px;
}
.blog-details-desc .article-quote .icon {
  position: absolute;
  left: 0;
  top: 10px;
}
.blog-details-desc .article-quote .title p {
  font-size: 20px;
  color: var(--blackColor);
  font-weight: bold;
}
.blog-details-desc .article-quote .title span {
  font-weight: 700;
  color: #1297E0;
}
.blog-details-desc .wp-block-quote {
  position: relative;
  padding-left: 80px;
  margin-bottom: 35px;
}
.blog-details-desc .wp-block-quote p {
  font-size: 20px;
  color: #132631;
  font-weight: bold;
}
.blog-details-desc .wp-block-quote::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  background-image: url(../images/quote.png);
  width: 58px;
  height: 40px;
}
.blog-details-desc .wp-block-quote cite strong {
  font-weight: 700;
  color: #1297E0;
}
.blog-details-desc .mt-30 {
  margin-top: 35px;
  margin-bottom: 35px;
}
.blog-details-desc .article-footer {
  border-top: 1px solid #F6F5F5;
  border-bottom: 1px solid #F6F5F5;
  padding-top: 30px;
  padding-bottom: 30px;
}
.blog-details-desc .article-footer .tags {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  margin: 0;
  padding: 0;
  padding-left: 0;
  padding-right: 0;
}
.blog-details-desc .article-footer .tags li {
  list-style-type: none;
  margin-right: 10px;
  font-style: normal;
  margin-bottom: 0;
}
.blog-details-desc .article-footer .tags li span {
  color: #353232;
  letter-spacing: 1.4px;
  font-size: 14px;
}
.blog-details-desc .article-footer .tags li a {
  display: inline-block;
  padding: 5px 8px;
  background: #F65147;
  color: var(--whiteColor);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
}
.blog-details-desc .article-footer .tags li a:hover {
  background-color: var(--secondaryColor);
}
.blog-details-desc .article-footer .tags li:last-child {
  margin-right: 0;
}
.blog-details-desc .article-footer .social {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 0;
  margin: 0;
  padding: 0;
  padding-left: 0;
  padding-right: 0;
}
.blog-details-desc .article-footer .social li {
  list-style-type: none;
  margin-right: 20px;
  margin-bottom: 0;
}
.blog-details-desc .article-footer .social li span {
  color: #353232;
  letter-spacing: 1.4px;
  font-size: 14px;
}
.blog-details-desc .article-footer .social li a {
  text-decoration: none;
}
.blog-details-desc .article-footer .social li a i {
  font-size: 20px;
  color: var(--blackColor);
  transition: var(--transition);
  display: flex;
  font-weight: normal;
  position: relative;
  top: 3px;
}
.blog-details-desc .article-footer .social li a i:hover {
  color: var(--primaryColor);
}
.blog-details-desc .article-footer .social li:last-child {
  margin-right: 0;
}
.blog-details-desc .article-previous-next-post {
  margin-top: 50px;
  clear: both;
}
.blog-details-desc .article-previous-next-post .previous-title {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #635BFF;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.blog-details-desc .article-previous-next-post .previous-title i {
  font-size: 27px;
  line-height: 0;
  margin-right: 7px;
}
.blog-details-desc .article-previous-next-post .previous-title:hover {
  color: var(--secondaryColor);
}
.blog-details-desc .article-previous-next-post .next-title {
  display: flex;
  align-items: center;
  justify-content: end;
  font-size: 14px;
  color: #635BFF;
  font-weight: 700;
  letter-spacing: 1.4px;
  font-style: normal;
}
.blog-details-desc .article-previous-next-post .next-title i {
  font-size: 27px;
  line-height: 0;
  margin-left: 7px;
  font-style: normal;
}
.blog-details-desc .article-previous-next-post .next-title:hover {
  color: var(--secondaryColor);
}
.blog-details-desc .article-previous-next-post .item {
  background-color: #EBE8F0;
  padding: 25px;
  margin-top: 25px;
  border-bottom: 1px solid #EBE8F0;
  transition: var(--transition);
  font-style: normal;
}
.blog-details-desc .article-previous-next-post .item .sub {
  font-size: 25px;
  font-weight: 700;
  color: var(--secondaryColor);
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 15px;
  line-height: 1;
}
.blog-details-desc .article-previous-next-post .item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.5;
}
.blog-details-desc .article-previous-next-post .item .meta {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.blog-details-desc .article-previous-next-post .item .meta li {
  list-style-type: none;
  display: flex;
  align-items: center;
  color: var(--paragraphColor);
  margin-right: 55px;
  position: relative;
  font-style: normal;
}
.blog-details-desc .article-previous-next-post .item .meta li::before {
  position: absolute;
  content: "";
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--whiteColor);
  width: 1px;
  height: 100%;
}
.blog-details-desc .article-previous-next-post .item .meta li i {
  font-size: 25px;
  color: var(--secondaryColor);
  margin-right: 7px;
  font-style: normal;
}
.blog-details-desc .article-previous-next-post .item .meta li:last-child {
  margin-right: 0;
}
.blog-details-desc .article-previous-next-post .item .meta li:last-child i {
  color: #1297E0;
}
.blog-details-desc .article-previous-next-post .item .meta li:last-child::before {
  display: none;
}
.blog-details-desc .article-previous-next-post .item:hover {
  border-bottom: 1px solid var(--secondaryColor);
}
.blog-details-desc .article-comments {
  margin-top: 100px;
}
.blog-details-desc .article-comments h2 {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 0;
}
.blog-details-desc .article-comments .comments-list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.blog-details-desc .article-comments .comments-list li {
  list-style-type: none;
  position: relative;
  padding-left: 100px;
  margin-top: 30px;
}
.blog-details-desc .article-comments .comments-list li .image {
  position: absolute;
  left: 0;
  top: 0;
}
.blog-details-desc .article-comments .comments-list li .image img {
  border-radius: 10px;
}
.blog-details-desc .article-comments .comments-list li .info h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}
.blog-details-desc .article-comments .comments-list li .info h4 span {
  font-weight: 500;
  font-size: 14px;
  color: #748894;
}
.blog-details-desc .article-comments .comments-list li .info p {
  margin-bottom: 15px;
}
.blog-details-desc .article-comments .comments-list li .info a {
  font-weight: 700;
  font-size: 14px;
  color: var(--primaryColor);
  display: flex;
  align-items: center;
  letter-spacing: 1.4px;
}
.blog-details-desc .article-comments .comments-list li .info a i {
  margin-left: 7px;
  font-size: 25px;
}
.blog-details-desc .article-comments .comments-list li .info a:hover {
  color: var(--secondaryColor);
}
.blog-details-desc .article-comments .comments-list li:last-child {
  margin-left: 100px;
}
.blog-details-desc .article-comments .comments-form {
  margin-top: 100px;
}
.blog-details-desc .article-comments .comments-form h3 {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 25px;
}
.blog-details-desc .article-comments .comments-form .form-group {
  margin-bottom: 25px;
}
.blog-details-desc .article-comments .comments-form .form-group .form-control {
  display: inline-block;
  height: 60px;
  width: 100%;
  border-radius: 50px;
  background-color: #F5F5F5;
  font-weight: 500;
  outline: 0;
  box-shadow: unset;
  border: 1px solid #F5F5F5;
  padding: 15px 30px;
  color: var(--paragraphColor);
  transition: var(--transition);
}
.blog-details-desc .article-comments .comments-form .form-group .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.blog-details-desc .article-comments .comments-form .form-group .form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.blog-details-desc .article-comments .comments-form .form-group .form-control:focus {
  border: 1px solid var(--primaryColor);
}
.blog-details-desc .article-comments .comments-form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.blog-details-desc .article-comments .comments-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.blog-details-desc .article-comments .comments-form .form-group textarea.form-control {
  min-height: 155px;
  border-radius: 20px;
  display: flex;
}
.blog-details-desc .article-comments .comments-form .form-group .form-check {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.blog-details-desc .article-comments .comments-form .form-group .form-check .form-check-input {
  border-radius: 50px;
  border: 1px solid var(--secondaryColor);
  height: 20px;
  width: 20px;
  margin-top: -2px;
  outline: 0;
  box-shadow: unset;
}
.blog-details-desc .article-comments .comments-form .form-group .form-check .form-check-label {
  color: #748894;
  font-size: 15px;
  font-weight: 500;
  margin-left: 10px;
}
.blog-details-desc .article-comments .comments-form .default-btn {
  border: none;
}

/*================================================
Main Slider Area CSS
=================================================*/
.main-slider-item {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 300px;
}
.main-slider-item::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(112deg, rgba(34, 44, 51, 0.5) 22.52%, rgba(34, 44, 51, 0) 49.76%);
  z-index: -1;
}
.main-slider-item .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.main-slider-content .top-content {
  max-width: 465px;
  padding-left: 30px;
  padding-bottom: 150px;
}
.main-slider-content .top-content h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--whiteColor);
  letter-spacing: 1.8px;
  margin-bottom: 15px;
}
.main-slider-content .top-content h1 span {
  font-weight: 300;
  font-size: 34px;
  display: block;
  letter-spacing: -1.5px;
}
.main-slider-content .top-content h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--whiteColor);
  letter-spacing: 1.8px;
  margin-bottom: 15px;
}
.main-slider-content .top-content h2 span {
  font-weight: 300;
  font-size: 30px;
  display: block;
  letter-spacing: -1.5px;
}
.main-slider-content .top-content h3 {
  font-size: 30px;
  font-weight: 900;
  color: var(--whiteColor);
  letter-spacing: 1.8px;
  margin-bottom: 15px;
}
.main-slider-content .top-content h3 span {
  font-weight: 300;
  font-size: 26px;
  display: block;
  letter-spacing: -1.5px;
}
.main-slider-content .top-content h4 {
  font-size: 26px;
  font-weight: 900;
  color: var(--whiteColor);
  letter-spacing: 1.8px;
  margin-bottom: 15px;
}
.main-slider-content .top-content h4 span {
  font-weight: 300;
  font-size: 22px;
  display: block;
  letter-spacing: -1.5px;
}
.main-slider-content .top-content h5 {
  font-size: 24px;
  font-weight: 900;
  color: var(--whiteColor);
  letter-spacing: 1.8px;
  margin-bottom: 15px;
}
.main-slider-content .top-content h5 span {
  font-weight: 300;
  font-size: 20px;
  display: block;
  letter-spacing: -1.5px;
}
.main-slider-content .top-content h6 {
  font-size: 20px;
  font-weight: 900;
  color: var(--whiteColor);
  letter-spacing: 1.8px;
  margin-bottom: 15px;
}
.main-slider-content .top-content h6 span {
  font-weight: 300;
  font-size: 16px;
  display: block;
  letter-spacing: -1.5px;
}
.main-slider-content .top-content p {
  color: #D7C7BF;
}
.main-slider-content .top-content a {
  font-weight: 700;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  color: var(--whiteColor);
}
.main-slider-content .top-content a i {
  margin-left: 5px;
}
.main-slider-content .top-content a:hover {
  color: var(--primaryColor);
}
.main-slider-content .bottom-content {
  background: rgba(19, 38, 49, 0.5);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  padding: 75px 30px;
  max-width: 1210px;
}
.main-slider-content .bottom-content .sub {
  color: #FFD025;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 12px;
  font-family: var(--optionalfontFamily);
}
.main-slider-content .bottom-content h2 {
  font-weight: 700;
  font-size: 70px;
  color: var(--whiteColor);
  margin-bottom: 0;
}
.main-slider-content .bottom-content .bottom-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.main-slider-content .bottom-content .bottom-btn p {
  color: #DCDCDC;
  max-width: 555px;
  margin-bottom: 0;
}
.main-slider-content .bottom-content .bottom-btn .default-btn {
  background-color: var(--secondaryColor);
}
.main-slider-content .bottom-content .bottom-btn .default-btn:hover {
  background-color: var(--primaryColor);
}

.main-slider-area {
  position: relative;
}
.main-slider-area .main-slider-button {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 9;
  margin-bottom: 0;
  display: flex;
  padding-left: 0;
  padding-right: 0;
}
.main-slider-area .main-slider-button li {
  list-style: none;
  margin-right: 12px;
}
.main-slider-area .main-slider-button li:last-child {
  margin-right: 0;
}
.main-slider-area .main-slider-button .slider-button-prev {
  display: inline-block;
  height: 85px;
  width: 85px;
  line-height: 85px;
  border-radius: 0;
  text-align: center;
  position: relative;
  left: 0;
  background-color: transparent;
  transition: var(--transition);
  border: 1px solid var(--whiteColor);
  font-size: 25px;
  color: var(--whiteColor);
}
.main-slider-area .main-slider-button .slider-button-prev::after {
  display: none;
}
.main-slider-area .main-slider-button .slider-button-prev:hover {
  background-color: var(--whiteColor);
  color: var(--blackColor);
}
.main-slider-area .main-slider-button .slider-button-next {
  display: inline-block;
  height: 85px;
  width: 85px;
  line-height: 85px;
  border-radius: 0;
  text-align: center;
  position: relative;
  right: 0;
  background-color: transparent;
  transition: var(--transition);
  border: 1px solid var(--whiteColor);
  font-size: 25px;
  color: var(--whiteColor);
}
.main-slider-area .main-slider-button .slider-button-next::after {
  display: none;
}
.main-slider-area .main-slider-button .slider-button-next:hover {
  background-color: var(--whiteColor);
  color: var(--blackColor);
}

/*================================================
Working Area CSS
=================================================*/
.working-area {
  overflow: hidden;
}
.working-area .section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: 100%;
}
.working-area .section-title .sub {
  color: #1297E0;
}
.working-area .section-title h2 {
  max-width: 875px;
}

.working-item {
  background-color: #F6F6F6;
  margin-bottom: 25px;
  transition: var(--transition);
  border-bottom: 1px solid #F6F6F6;
}
.working-item .working-image {
  position: relative;
}
.working-item .working-image .work-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-block;
  padding: 7px 12px;
  background-color: var(--whiteColor);
  font-family: var(--optionalHeadingFamily);
  font-weight: 400;
  color: #1297E0;
}
.working-item .working-image .work-btn b {
  font-weight: 700;
}
.working-item .working-image .work-btn:hover {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}
.working-item .working-content {
  padding: 40px 30px;
}
.working-item .working-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
}
.working-item .working-content p {
  margin-bottom: 0;
}
.working-item:hover {
  border-bottom: 1px solid var(--primaryColor);
}

.working-slider-button {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.working-slider-button li {
  list-style-type: none;
  margin-right: 15px;
}
.working-slider-button li:last-child {
  margin-right: 0;
}
.working-slider-button li i {
  font-size: 30px;
  color: var(--blackColor);
  transition: var(--transition);
}
.working-slider-button li i:hover {
  color: var(--primaryColor);
}

.working-slider {
  overflow: unset;
}

.working-wrap-area .section-title {
  max-width: 885px;
}

.working-more-btn {
  text-align: center;
  margin-top: 15px;
}

/*================================================
Mission Vision Area CSS
=================================================*/
.mission-vision-image {
  position: relative;
  padding-right: 45px;
}
.mission-vision-image .wrap {
  background-color: #FFD025;
  padding: 30px 50px;
  max-width: 415px;
  position: absolute;
  right: 0;
  bottom: 40px;
}
.mission-vision-image .wrap h5 {
  font-weight: 700;
  color: var(--blackColor);
  font-size: 35px;
  font-family: var(--optionalfontFamily);
  margin-bottom: 0;
}
.mission-vision-image .wrap-shape {
  position: absolute;
  right: -45px;
  bottom: 40px;
}
.mission-vision-image.border-radius img {
  border-radius: 20px;
}

.mission-vision-content {
  padding-left: 70px;
}
.mission-vision-content .sub {
  font-size: 25px;
  color: #5CC397;
  font-weight: 700;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.1;
}
.mission-vision-content h2 {
  font-size: 45px;
  margin-bottom: 15px;
  letter-spacing: -2.2px;
  max-width: 665px;
}
.mission-vision-content p {
  margin-bottom: 0;
  max-width: 565px;
}
.mission-vision-content .inner-card {
  background-color: #DAE6EC;
  padding: 40px 30px;
  margin-top: 35px;
}
.mission-vision-content .inner-card h3 {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 15px;
}
.mission-vision-content .inner-card.border-radius {
  border-radius: 20px;
}
.mission-vision-content .col-lg-6:nth-child(2) .inner-card {
  background-color: #DBD3EC;
  margin-top: 85px;
}

/*================================================
Working Video Area CSS
=================================================*/
.working-video-image {
  position: relative;
  overflow: hidden;
}
.working-video-image::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(19, 38, 49, 0.6) 0%, rgba(19, 38, 49, 0) 54.2%);
  height: 100%;
  width: 100%;
}
.working-video-image .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.working-video-image .content h3 {
  font-size: 25px;
  margin-bottom: 0;
  color: var(--whiteColor);
  font-weight: 600;
  position: relative;
  left: 20px;
  top: -20px;
}
.working-video-image .content .video-btn {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  transition: var(--transition);
}
.working-video-image .content .video-btn i {
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--primaryColor);
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
  font-size: 30px;
  margin: 5px;
  transition: var(--transition);
}
.working-video-image .content .video-btn i:hover {
  background-color: var(--secondaryColor);
  color: var(--whiteColor);
}
.working-video-image .content .video-btn:hover {
  border: 1px solid var(--primaryColor);
}

.working-video-content {
  padding-left: 65px;
}
.working-video-content .sub {
  font-size: 25px;
  color: #1297E0;
  font-weight: 700;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.1;
}
.working-video-content h2 {
  font-size: 45px;
  margin-bottom: 0;
  letter-spacing: -2.2px;
  max-width: 665px;
}

.working-video-wrap-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.working-video-wrap-area .working-video-image img {
  border-radius: 20px;
}
.working-video-wrap-area .working-video-image::before {
  border-radius: 20px;
}
.working-video-wrap-area .working-video-image .content {
  padding: 40px;
  display: block;
}
.working-video-wrap-area .working-video-image .content .video-btn {
  display: inline-block;
  margin-bottom: 30px;
}
.working-video-wrap-area .working-video-image .content h3 {
  left: 0;
  top: 0;
  margin-bottom: 0;
}

.working-video-slider {
  position: relative;
  margin-top: 65px;
  margin-left: -235px !important;
}
.working-video-slider .working-video-button {
  position: absolute;
  right: 45px;
  bottom: 45px;
  z-index: 1;
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.working-video-slider .working-video-button li {
  list-style-type: none;
  margin-right: 10px;
}
.working-video-slider .working-video-button li:last-child {
  margin-right: 0;
}
.working-video-slider .working-video-button li i {
  font-size: 25px;
  color: var(--blackColor);
  transition: var(--transition);
}
.working-video-slider .working-video-button li i:hover {
  color: var(--primaryColor);
}

.working-video-card {
  border-radius: 20px;
  background-color: #FFD025;
  padding: 50px 60px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.working-video-card .icon {
  margin-bottom: 20px;
}
.working-video-card p {
  font-size: 18px;
  color: var(--blackColor);
  margin-bottom: 0;
  font-weight: bold;
}
.working-video-card .info {
  margin-top: 25px;
}
.working-video-card .info h3 {
  font-size: 20px;
  margin-bottom: 0;
}
.working-video-card .info span {
  color: var(--primaryColor);
  font-size: 14px;
  display: block;
  margin-top: 10px;
}
.working-video-card::before {
  position: absolute;
  content: "";
  right: -45px;
  bottom: -30px;
  background-image: url(../images/vector.png);
  width: 282px;
  height: 207px;
  z-index: -1;
}

.working-video-wrap-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -200px;
  z-index: -1;
}

/*================================================
Dollar Area CSS
=================================================*/
.dollar-area {
  background-color: var(--whiteColor);
  overflow: hidden;
  z-index: 1;
}

.dollar-item {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  padding-left: 90px;
}
.dollar-item span {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  letter-spacing: 1.3px;
}
.dollar-item h2 {
  font-weight: 700;
  font-size: 60px;
  margin-bottom: 0;
}
.dollar-item h2 sup {
  font-size: 20px;
  top: -1.5em;
}
.dollar-item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/dollar/shape1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 180px;
  height: 120px;
  z-index: -1;
}
.dollar-item.two::before {
  background-image: url(../images/dollar/shape2.png);
}
.dollar-item.three::before {
  background-image: url(../images/dollar/shape3.png);
}

/*================================================
Give Your Best Area CSS
=================================================*/
.give-your-best-area {
  background-image: url(../../assets/images/give-your-best/give-your-best-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 150px;
}
.give-your-best-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(450% 50% at 50% 58.52%, rgba(68, 45, 115, 0.6) 0%, rgba(93, 69, 141, 0.9) 49.56%, rgba(66, 47, 105, 0.95) 100%);
  z-index: -1;
}

.give-your-best-content {
  max-width: 480px;
}
.give-your-best-content .sub {
  font-size: 25px;
  color: #FFD025;
  font-weight: 700;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.1;
}
.give-your-best-content h2 {
  font-size: 45px;
  margin-bottom: 15px;
  letter-spacing: -2.2px;
  color: var(--whiteColor);
}
.give-your-best-content p {
  color: #F2F2F2;
  margin-bottom: 25px;
  max-width: 410px;
}

.give-your-best-right-content {
  max-width: 390px;
  margin-left: auto;
}
.give-your-best-right-content .inner-item {
  position: relative;
  display: flex;
  border-bottom: 1.5px dashed #C3BCCD;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.give-your-best-right-content .inner-item .icon i {
  color: #FFD025;
  font-size: 65px;
  display: flex;
}
.give-your-best-right-content .inner-item .title {
  margin-left: 22px;
}
.give-your-best-right-content .inner-item .title h3 {
  font-size: 25px;
  color: var(--whiteColor);
  margin-bottom: 15px;
}
.give-your-best-right-content .inner-item .title p {
  color: #F2F2F2;
  margin-bottom: 0;
}
.give-your-best-right-content .inner-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.give-your-best-shape1 {
  position: absolute;
  top: 7%;
  left: 2%;
  transform: translateY(-7%) translateX(-2%);
  z-index: -1;
}

.give-your-best-shape2 {
  position: absolute;
  right: -10px;
  bottom: 175px;
  z-index: -1;
  max-width: 245px;
}

/*================================================
Find Help Area CSS
=================================================*/
.find-help-inner-area {
  background: #F7F7F8;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 65px;
  padding-right: 65px;
}

.find-help-content .sub {
  font-size: 25px;
  color: #1297E0;
  font-weight: 700;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.1;
}
.find-help-content h2 {
  font-size: 45px;
  margin-bottom: 20px;
  letter-spacing: -2.2px;
  max-width: 535px;
}
.find-help-content .list {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.find-help-content .list li {
  list-style-type: none;
  margin-right: 10px;
  font-size: var(--fontSize);
  font-family: var(--optionalHeadingFamily);
}
.find-help-content .list li a {
  color: var(--blackColor);
}
.find-help-content .list li a:hover {
  color: var(--primaryColor);
}
.find-help-content .list li:first-child {
  font-size: 20px;
  font-weight: 500;
}
.find-help-content .list li:last-child {
  margin-right: 0;
  text-decoration-line: underline;
}

.find-help-right-boxes {
  position: relative;
  padding: 0 55px;
}
.find-help-right-boxes .boxes-card {
  background-color: var(--whiteColor);
  padding: 25px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--whiteColor);
}
.find-help-right-boxes .boxes-card .icon {
  margin-bottom: 20px;
}
.find-help-right-boxes .boxes-card .icon i {
  display: flex;
  font-size: 55px;
  color: var(--primaryColor);
  justify-content: center;
}
.find-help-right-boxes .boxes-card .icon.two i {
  color: #1297E0;
}
.find-help-right-boxes .boxes-card .icon.three i {
  color: var(--secondaryColor);
}
.find-help-right-boxes .boxes-card .icon.four i {
  color: #635BFF;
}
.find-help-right-boxes .boxes-card h4 {
  font-weight: 600;
  margin-bottom: 0;
  font-size: 15px;
}
.find-help-right-boxes .boxes-card:hover {
  border: 1px solid var(--secondaryColor);
}
.find-help-right-boxes .col-lg-6:nth-child(2) .boxes-card {
  margin-bottom: 25px;
}
.find-help-right-boxes .wrap-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

/*================================================
Fun Facts Area CSS
=================================================*/
.fun-facts-card {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
}
.fun-facts-card::before {
  position: absolute;
  content: "";
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E5ECEF;
  width: 1px;
  height: 100%;
}
.fun-facts-card .icon {
  display: inline-flex;
  height: 120px;
  width: 120px;
  line-height: 120px;
  background-color: var(--whiteColor);
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.05);
  text-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 20px 20px 0px;
  transition: var(--transition);
}
.fun-facts-card .icon i {
  font-size: 55px;
  color: #635BFF;
  display: flex;
  justify-content: center;
  transition: var(--transition);
}
.fun-facts-card .icon::before {
  position: absolute;
  content: "";
  left: 20px;
  bottom: -20px;
  display: inline-block;
  height: 120px;
  width: 120px;
  background-color: #EBE7F3;
  z-index: -1;
}
.fun-facts-card .icon.two i {
  color: #FFD025;
}
.fun-facts-card .icon.two::before {
  background-color: #F9F3E1;
}
.fun-facts-card .icon.three i {
  color: #1297E0;
}
.fun-facts-card .icon.three::before {
  background-color: #DAE6EC;
}
.fun-facts-card .title {
  margin-left: 40px;
  position: relative;
  top: 5px;
}
.fun-facts-card .title h3 {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 10px;
}
.fun-facts-card .title p {
  font-size: 14px;
  max-width: 145px;
}
.fun-facts-card .title p span {
  display: block;
}
.fun-facts-card:hover .icon {
  background-color: var(--secondaryColor);
}
.fun-facts-card:hover .icon i {
  color: var(--whiteColor);
}

.col-lg-4:nth-child(2) .fun-facts-card {
  padding-left: 55px;
}
.col-lg-4:nth-child(2) .fun-facts-card::before {
  right: -22px;
}
.col-lg-4:nth-child(3) .fun-facts-card {
  padding-left: 85px;
}
.col-lg-4:nth-child(3) .fun-facts-card::before {
  display: none;
}

/*================================================
Events Area CSS
=================================================*/
.events-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.events-area .section-title .sub {
  color: var(--secondaryColor);
}

.events-card {
  border: 1px solid #EBE8F0;
  background-color: var(--whiteColor);
  padding: 30px;
  margin-bottom: 25px;
  transition: var(--transition);
}
.events-card .sub {
  font-size: 25px;
  color: var(--secondaryColor);
  font-weight: 700;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 15px;
  letter-spacing: 2px;
  line-height: 1.1;
}
.events-card h3 {
  font-size: 23.5px;
  margin-bottom: 0;
  letter-spacing: -0.48px;
  line-height: 1.5;
  font-weight: 600;
}
.events-card .list {
  display: flex;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.events-card .list li {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  margin-right: 55px;
  position: relative;
}
.events-card .list li::before {
  position: absolute;
  content: "";
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E5ECEF;
  width: 1px;
  height: 100%;
  transition: var(--transition);
}
.events-card .list li i {
  font-size: 25px;
  margin-right: 5px;
  color: var(--primaryColor);
}
.events-card .list li:last-child {
  margin-right: 0;
}
.events-card .list li:last-child::before {
  display: none;
}
.events-card .list li:last-child i {
  color: #1297E0;
}
.events-card:hover {
  border: 1px solid #EBE8F0;
  background: #EBE8F0;
}
.events-card:hover .list li::before {
  background-color: var(--whiteColor);
}

.events-item {
  background-image: url(../images/event/event.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 475px;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
.events-item .date {
  background-color: var(--primaryColor);
  font-weight: 700;
  font-size: 25px;
  font-family: var(--optionalfontFamily);
  color: var(--whiteColor);
  display: inline-block;
  padding: 30px 40px;
  position: absolute;
  left: 10px;
  top: 10px;
  text-align: center;
  transition: var(--transition);
}
.events-item .date span {
  display: block;
}
.events-item .date:hover {
  background-color: var(--secondaryColor);
}
.events-item .content {
  padding: 30px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.events-item .content h3 {
  font-size: 23.5px;
  margin-bottom: 0;
  letter-spacing: -0.48px;
  line-height: 1.5;
  font-weight: 600;
}
.events-item .content h3 a {
  color: var(--whiteColor);
}
.events-item .content h3 a:hover {
  color: var(--primaryColor);
}
.events-item .content .list {
  display: flex;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.events-item .content .list li {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  margin-right: 55px;
  position: relative;
  color: #CDCDCD;
}
.events-item .content .list li::before {
  position: absolute;
  content: "";
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E5ECEF;
  width: 1px;
  height: 100%;
  transition: var(--transition);
}
.events-item .content .list li i {
  font-size: 25px;
  margin-right: 5px;
  color: var(--primaryColor);
}
.events-item .content .list li:last-child {
  margin-right: 0;
}
.events-item .content .list li:last-child::before {
  display: none;
}
.events-item .content .list li:last-child i {
  color: #1297E0;
}
.events-item::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, #132631 0%, rgba(19, 38, 49, 0) 53.3%);
  box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.06);
  height: 100%;
  width: 100%;
  z-index: -1;
}

.events-shape1 {
  position: absolute;
  left: 0;
  top: 100px;
  z-index: -1;
}

.events-shape2 {
  position: absolute;
  right: 50px;
  top: 50px;
  z-index: -1;
}

/*================================================
Events Details Area CSS
=================================================*/
.events-details-desc {
  max-width: 1100px;
  margin: auto;
}
.events-details-desc .top-content {
  margin-bottom: 30px;
}
.events-details-desc .top-content h2 {
  font-size: 45px;
  letter-spacing: -2.2px;
  margin-bottom: 0;
}
.events-details-desc .top-content .list {
  display: flex;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.events-details-desc .top-content .list li {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  margin-right: 55px;
  position: relative;
}
.events-details-desc .top-content .list li::before {
  position: absolute;
  content: "";
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E5ECEF;
  width: 1px;
  height: 100%;
}
.events-details-desc .top-content .list li i {
  font-size: 25px;
  margin-right: 5px;
  color: var(--primaryColor);
}
.events-details-desc .top-content .list li:nth-child(2) i {
  color: var(--secondaryColor);
}
.events-details-desc .top-content .list li:last-child {
  margin-right: 0;
}
.events-details-desc .top-content .list li:last-child::before {
  display: none;
}
.events-details-desc .top-content .list li:last-child i {
  color: #1297E0;
}
.events-details-desc .events-details-inner-content {
  margin-top: 40px;
}
.events-details-desc .events-details-inner-content .left-content h3 {
  font-weight: 600;
  font-size: 25px;
  margin-top: 50px;
  margin-bottom: 15px;
}
.events-details-desc .events-details-inner-content .left-content .list {
  margin-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
}
.events-details-desc .events-details-inner-content .left-content .list li {
  list-style-type: none;
  font-weight: 500;
  color: #353232;
  margin-bottom: 15px;
  position: relative;
  padding-left: 32px;
}
.events-details-desc .events-details-inner-content .left-content .list li:last-child {
  margin-bottom: 0;
}
.events-details-desc .events-details-inner-content .left-content .list li i {
  color: var(--secondaryColor);
  font-size: 25px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.events-details-desc .events-details-inner-content .right-content p {
  margin-bottom: 0;
}
.events-details-desc .events-details-inner-content .right-content .details-info {
  border-radius: 10px;
  background-color: #EBE8F0;
  padding: 30px;
  margin-top: 50px;
}
.events-details-desc .events-details-inner-content .right-content .details-info h3 {
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 25px;
}
.events-details-desc .events-details-inner-content .right-content .details-info .list {
  margin-bottom: 25px;
  padding-left: 0;
  padding-right: 0;
}
.events-details-desc .events-details-inner-content .right-content .details-info .list li {
  color: var(--blackColor);
  font-weight: 600;
  list-style-type: none;
  margin-bottom: 20px;
  letter-spacing: 1.4px;
  font-size: 14px;
}
.events-details-desc .events-details-inner-content .right-content .details-info .list li:last-child {
  margin-bottom: 0;
}
.events-details-desc .events-details-inner-content .right-content .details-info .list li span {
  font-size: 14px;
  color: var(--paragraphColor);
}
.events-details-desc .events-details-inner-content .right-content .details-info .list li a {
  color: var(--blackColor);
}
.events-details-desc .events-details-inner-content .right-content .details-info .list li a:hover {
  color: var(--primaryColor);
}
.events-details-desc .events-details-inner-content .right-content .details-info .default-btn {
  background-color: #635BFF;
}
.events-details-desc .events-details-inner-content .right-content .details-info .default-btn:hover {
  background-color: var(--secondaryColor);
}

/*================================================
Page Banner Area CSS
=================================================*/
.page-banner-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--blackColor);
  padding-top: 140px;
  padding-bottom: 140px;
}
.page-banner-area::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(96deg, #132631 4.87%, rgba(19, 38, 49, 0) 54%, rgba(19, 38, 49, 0.3) 97%);
  z-index: -1;
}
.page-banner-area::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(91deg, rgba(19, 38, 49, 0.4) 3.06%, rgba(19, 38, 49, 0.3) 54.38%, rgba(19, 38, 49, 0.7) 99.3%);
  z-index: -1;
}

.page-banner-content {
  text-align: center;
}
.page-banner-content h2 {
  font-size: 50px;
  color: var(--whiteColor);
  letter-spacing: -1px;
  margin-bottom: 15px;
  line-height: 1;
}
.page-banner-content .list {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}
.page-banner-content .list li {
  color: #AFB7BC;
  list-style-type: none;
  margin-right: 35px;
  position: relative;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  white-space: inherit;
  word-break: break-all;
  text-transform: capitalize;
}
.page-banner-content .list li::before {
  position: absolute;
  content: ">";
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFD025;
}
.page-banner-content .list li a {
  color: #FFD025;
}
.page-banner-content .list li a:hover {
  color: var(--primaryColor);
}
.page-banner-content .list li:last-child {
  margin-right: 0;
}
.page-banner-content .list li:last-child::before {
  display: none;
}

.page-banner-shape1 {
  position: absolute;
  left: 0;
  top: -75px;
  z-index: -11;
}

.page-banner-shape2 {
  position: absolute;
  right: 0;
  top: -135px;
  z-index: -11;
}

.page-banner-line1 {
  position: absolute;
  left: 0;
  top: -180px;
}

.page-banner-line2 {
  position: absolute;
  right: 0;
  top: -90px;
}

/*================================================
Pricing Area CSS
=================================================*/
.pricing-area .section-title .sub {
  color: var(--secondaryColor);
}

.pricing-card {
  margin-bottom: 25px;
  background-color: #F6F5F5;
  padding: 50px;
}
.pricing-card h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 12px;
}
.pricing-card .pricing-text p {
  font-weight: 500;
  color: #353232;
  font-size: 15px;
  letter-spacing: 1.4px;
  position: relative;
  top: -2px;
  left: -2px;
  font-family: var(--mainfontFamily);
  display: inline-block;
}
.pricing-card .pricing-text span {
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  color: var(--primaryColor);
  margin-bottom: 0;
  display: inline-block;
}
.pricing-card .list {
  padding-left: 0;
  padding-right: 0;
  margin-top: 25px;
  margin-bottom: 0;
}
.pricing-card .list li {
  list-style-type: none;
  font-weight: 500;
  color: #353232;
  margin-bottom: 20px;
  position: relative;
  padding-left: 32px;
}
.pricing-card .list li:last-child {
  margin-bottom: 0;
}
.pricing-card .list li i {
  color: var(--secondaryColor);
  font-size: 25px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pricing-card .pricing-btn {
  margin-top: 30px;
}
.pricing-card .pricing-btn .default-btn {
  background-color: var(--blackColor);
  width: 100%;
}
.pricing-card .pricing-btn .default-btn:hover {
  background-color: var(--primaryColor);
}
.pricing-card.two {
  background-color: #E5EFE3;
}
.pricing-card.two .pricing-text span {
  color: var(--secondaryColor);
}
.pricing-card.two h1 {
  color: var(--secondaryColor);
}
.pricing-card.three {
  background-color: #EAE6F3;
}
.pricing-card.three h1 {
  color: #635BFF;
}
.pricing-card.three .pricing-text span {
  color: #635BFF;
}

/*================================================
Gallery Area CSS
=================================================*/
.gallery-area .section-title .sub {
  color: var(--secondaryColor);
}

.gallery-width-item {
  margin-bottom: 25px;
}
.gallery-width-item a {
  border-radius: 20px;
}
.gallery-width-item a img {
  border-radius: 20px;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-area {
  overflow: hidden;
}

.faq-image {
  position: relative;
  z-index: 1;
  padding-right: 30px;
}
.faq-image .wrap-one img {
  border-radius: 20px;
  box-shadow: 0px 4px 34px 0px rgba(91, 120, 87, 0.3);
}
.faq-image .wrap-two img {
  border-radius: 20px;
  box-shadow: 0px 4px 34px 0px rgba(91, 120, 87, 0.3);
}
.faq-image .wrap-shape {
  position: absolute;
  left: -90px;
  right: 0;
  top: -50px;
  bottom: 0;
  z-index: -1;
}

.faq-accordion {
  padding-left: 35px;
}
.faq-accordion .content {
  margin-bottom: 30px;
}
.faq-accordion .content .sub {
  font-size: 25px;
  color: var(--secondaryColor);
  font-weight: 700;
  font-family: var(--optionalfontFamily);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.1;
}
.faq-accordion .content h2 {
  font-size: 45px;
  margin-bottom: 0;
  letter-spacing: -2.2px;
}
.faq-accordion .accordion-item {
  margin-bottom: 20px;
  background-color: #F8F8F9;
  border: none;
  border-radius: 7px;
  transition: var(--transition);
}
.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion-item .accordion-button {
  color: #353232;
  position: relative;
  text-align: start;
  box-shadow: unset;
  margin-bottom: 0;
  display: block;
  width: 100%;
  font-size: var(--fontSize);
  font-weight: 500;
  padding: 25px 65px 25px 25px;
  transition: var(--transition);
  background-color: #F8F8F9;
  border-radius: 7px;
}
.faq-accordion .accordion-item .accordion-button::before {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "tabler-icons";
  content: "\ea5f";
  font-size: 22px;
  color: #7A8095;
  font-weight: 400;
}
.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--secondaryColor);
}
.faq-accordion .accordion-item .accordion-button:not(.collapsed)::before {
  content: "\ea62";
  color: var(--secondaryColor);
}
.faq-accordion .accordion-item .accordion-button.collapsed {
  border-radius: 7px;
}
.faq-accordion .accordion-item .accordion-body {
  padding: 25px;
  border-top: 1px solid var(--whiteColor);
}
.faq-accordion .accordion-item .accordion-body p {
  font-weight: 400;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-info-content {
  padding-right: 45px;
}
.contact-info-content h2 {
  letter-spacing: -2.2px;
  font-size: 45px;
  margin-bottom: 15px;
}
.contact-info-content p {
  margin-bottom: 0;
  max-width: 480px;
}
.contact-info-content .info-card {
  border-radius: 20px;
  background-color: #DAE6EC;
  padding: 30px;
  margin-top: 35px;
}
.contact-info-content .info-card.bg-DBD3EC {
  background-color: #DBD3EC;
}
.contact-info-content .info-card h3 {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 20px;
}
.contact-info-content .info-card .list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.contact-info-content .info-card .list li {
  list-style-type: none;
  font-size: 14px;
  color: #3C5159;
  margin-bottom: 12px;
  line-height: 1.7;
}
.contact-info-content .info-card .list li:last-child {
  margin-bottom: 0;
}
.contact-info-content .info-card .list li span {
  font-weight: bold;
  color: var(--blackColor);
}
.contact-info-content .info-card .list li a {
  color: #3C5159;
}
.contact-info-content .info-card .list li a:hover {
  color: var(--primaryColor);
}

.contact-form {
  padding-left: 30px;
}
.contact-form h3 {
  font-size: 25px;
  margin-bottom: 25px;
}
.contact-form .form-group {
  margin-bottom: 25px;
}
.contact-form .form-group .form-control {
  display: inline-block;
  height: 60px;
  width: 100%;
  border-radius: 50px;
  background-color: #F5F5F5;
  font-weight: 500;
  outline: 0;
  box-shadow: unset;
  border: 1px solid #F5F5F5;
  padding: 15px 30px;
  color: var(--paragraphColor);
  transition: var(--transition);
}
.contact-form .form-group .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.contact-form .form-group .form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.contact-form .form-group .form-control:focus {
  border: 1px solid var(--primaryColor);
}
.contact-form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.contact-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.contact-form .form-group textarea.form-control {
  min-height: 155px;
  border-radius: 20px;
  display: flex;
}
.contact-form .form-group .form-check {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.contact-form .form-group .form-check .form-check-input {
  border-radius: 50px;
  border: 1px solid var(--secondaryColor);
  height: 20px;
  width: 20px;
  margin-top: 5px;
  outline: 0;
  box-shadow: unset;
}
.contact-form .form-group .form-check .form-check-label {
  color: #748894;
  font-size: 15px;
  font-weight: 500;
  margin-left: 10px;
}
.contact-form .default-btn {
  border: none;
}

/*================================================
Authentication Area CSS
=================================================*/
.authentication-form {
  border-radius: 20px;
  background-color: #F5F5F5;
  padding: 55px;
}
.authentication-form h3 {
  letter-spacing: -2.2px;
  margin-bottom: 30px;
  font-size: 45px;
}
.authentication-form .form-group {
  margin-bottom: 20px;
  position: relative;
}
.authentication-form .form-group label {
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.authentication-form .form-group .form-control {
  display: inline-block;
  width: 100%;
  height: 70px;
  outline: 0;
  box-shadow: unset;
  border-radius: 50px;
  background-color: var(--whiteColor);
  border: none;
  font-weight: 500;
  color: var(--paragraphColor);
  transition: var(--transition);
  padding: 15px 30px 15px 30px;
}
.authentication-form .form-group .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.authentication-form .form-group .form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.authentication-form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.authentication-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.authentication-form .form-group .eye-off {
  position: absolute;
  right: 30px;
  bottom: 25px;
  line-height: 0;
  cursor: pointer;
}
.authentication-form .form-group .eye-off i {
  font-size: 20px;
  color: var(--blackColor);
}
.authentication-form .form-bottom {
  margin-bottom: 20px;
}
.authentication-form .form-bottom .form-check {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.authentication-form .form-bottom .form-check .form-check-input {
  border-radius: 50px;
  border: 1px solid var(--secondaryColor);
  height: 20px;
  width: 20px;
  margin-top: -2px;
  outline: 0;
  box-shadow: unset;
}
.authentication-form .form-bottom .form-check .form-check-label {
  font-size: 15px;
  font-weight: 500;
  margin-left: 10px;
  color: var(--paragraphColor);
}
.authentication-form .form-bottom .form-check .form-check-label a {
  color: var(--blackColor);
  font-weight: 600;
}
.authentication-form .form-bottom .form-check .form-check-label a:hover {
  color: var(--secondaryColor);
}
.authentication-form .form-bottom .forgot-password {
  font-weight: 500;
  color: var(--paragraphColor);
  text-decoration-line: underline;
}
.authentication-form .form-bottom .forgot-password:hover {
  color: var(--secondaryColor);
}
.authentication-form .default-btn {
  border: none;
  width: 100%;
}
.authentication-form.register-wrap .default-btn {
  background-color: var(--blackColor);
}
.authentication-form.register-wrap .default-btn:hover {
  background-color: var(--secondaryColor);
}

/*================================================
Privacy Policy Area CSS
=================================================*/
.privacy-policy-content {
  max-width: 1140px;
  margin: auto;
}
.privacy-policy-content .h1, .privacy-policy-content .h2, .privacy-policy-content .h3, .privacy-policy-content .h4, .privacy-policy-content .h5, .privacy-policy-content .h6, .privacy-policy-content h1, .privacy-policy-content h2, .privacy-policy-content h3, .privacy-policy-content h4, .privacy-policy-content h5, .privacy-policy-content h6 {
  font-size: 22px;
  margin-bottom: 15px;
}
.privacy-policy-content .h1:not(:first-child), .privacy-policy-content .h2:not(:first-child), .privacy-policy-content .h3:not(:first-child), .privacy-policy-content .h4:not(:first-child), .privacy-policy-content .h5:not(:first-child), .privacy-policy-content .h6:not(:first-child), .privacy-policy-content h1:not(:first-child), .privacy-policy-content h2:not(:first-child), .privacy-policy-content h3:not(:first-child), .privacy-policy-content h4:not(:first-child), .privacy-policy-content h5:not(:first-child), .privacy-policy-content h6:not(:first-child) {
  margin-top: 30px;
}
.privacy-policy-content strong {
  color: var(--primaryColor);
  font-weight: 500;
}
.privacy-policy-content p a {
  color: var(--primaryColor);
}
.privacy-policy-content p a:hover {
  text-decoration: underline;
}
.privacy-policy-content ul li, .privacy-policy-content ol li {
  color: var(--paragraphColor);
  margin-bottom: 20px;
}
.privacy-policy-content ul li a, .privacy-policy-content ol li a {
  color: var(--paragraphColor);
}
.privacy-policy-content ul li a:hover, .privacy-policy-content ol li a:hover {
  text-decoration: underline;
}
.privacy-policy-content ul li:last-child, .privacy-policy-content ol li:last-child {
  margin-bottom: 0;
}

/*================================================
Terms & Conditions Area CSS
=================================================*/
.terms-conditions-content {
  max-width: 1140px;
  margin: auto;
}
.terms-conditions-content .h1, .terms-conditions-content .h2, .terms-conditions-content .h3, .terms-conditions-content .h4, .terms-conditions-content .h5, .terms-conditions-content .h6, .terms-conditions-content h1, .terms-conditions-content h2, .terms-conditions-content h3, .terms-conditions-content h4, .terms-conditions-content h5, .terms-conditions-content h6 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.terms-conditions-content .h1:not(:first-child), .terms-conditions-content .h2:not(:first-child), .terms-conditions-content .h3:not(:first-child), .terms-conditions-content .h4:not(:first-child), .terms-conditions-content .h5:not(:first-child), .terms-conditions-content .h6:not(:first-child), .terms-conditions-content h1:not(:first-child), .terms-conditions-content h2:not(:first-child), .terms-conditions-content h3:not(:first-child), .terms-conditions-content h4:not(:first-child), .terms-conditions-content h5:not(:first-child), .terms-conditions-content h6:not(:first-child) {
  margin-top: 25px;
}
.terms-conditions-content strong {
  color: var(--primaryColor);
  font-weight: 500;
}
.terms-conditions-content p a {
  color: var(--primaryColor);
}
.terms-conditions-content p a:hover {
  text-decoration: underline;
}
.terms-conditions-content ul li, .terms-conditions-content ol li {
  color: var(--paragraphColor);
  margin-bottom: 20px;
}
.terms-conditions-content ul li a, .terms-conditions-content ol li a {
  color: var(--primaryColor);
}
.terms-conditions-content ul li a:hover, .terms-conditions-content ol li a:hover {
  text-decoration: underline;
}
.terms-conditions-content ul li:last-child, .terms-conditions-content ol li:last-child {
  margin-bottom: 0;
}

/*================================================
Not Found Area CSS
=================================================*/
.not-found-content .image {
  margin-bottom: 35px;
}
.not-found-content h3 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}
.not-found-content .default-btn {
  margin-top: 15px;
}

/*================================================
Cart Area CSS
=================================================*/
.cart-table-inner {
  padding-right: 30px;
}

.cart-buttons {
  text-align: end;
  margin-top: 20px;
}
.cart-buttons .link-title {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 14px;
  color: #635BFF;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.cart-buttons .link-title i {
  font-size: 27px;
  line-height: 0;
  margin-right: 7px;
}
.cart-buttons .link-title:hover {
  color: var(--secondaryColor);
}
.cart-buttons .default-btn {
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid #F6F5F5;
  color: var(--primaryColor);
}
.cart-buttons .default-btn:hover {
  border: 1px solid var(--primaryColor);
}

.cart-totals {
  border-radius: 20px;
  background: #F5F5F5;
  padding: 30px;
}
.cart-totals h3 {
  font-weight: 600;
  font-size: 23.5px;
  margin-bottom: 15px;
}
.cart-totals .coupon-code {
  position: relative;
}
.cart-totals .coupon-code .form-control {
  display: inline-block;
  height: 55px;
  width: 100%;
  border: none;
  background-color: var(--whiteColor);
  color: #939090;
  font-weight: 600;
  border-radius: 10px;
  font-size: 14px;
  outline: 0;
  box-shadow: unset;
  padding: 12px 85px 10px 20px;
  letter-spacing: 1.4px;
}
.cart-totals .coupon-code .form-control::-moz-placeholder {
  color: #939090;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.cart-totals .coupon-code .form-control::placeholder {
  color: #939090;
  transition: var(--transition);
}
.cart-totals .coupon-code .form-control:focus::-moz-placeholder {
  color: transparent;
}
.cart-totals .coupon-code .form-control:focus::placeholder {
  color: transparent;
}
.cart-totals .coupon-code .default-btn {
  border: none;
  border-radius: 10px;
  background-color: var(--secondaryColor);
  height: 55px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px 15px;
}
.cart-totals .coupon-code .default-btn:hover {
  background-color: var(--primaryColor);
}
.cart-totals .list {
  margin-top: 30px;
  margin-bottom: 100px;
  padding-left: 0;
  padding-right: 0;
}
.cart-totals .list li {
  list-style-type: none;
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1.4px;
  font-weight: 600;
}
.cart-totals .list li span {
  color: var(--blackColor);
}
.cart-totals .list li:last-child {
  margin-bottom: 0;
}
.cart-totals .default-btn {
  font-size: 15px;
  padding: 15.8px 28px 17px;
}

/*================================================
Wishlist Area CSS
=================================================*/
.wishlist-table-inner {
  max-width: 1080px;
  margin: auto;
}
.wishlist-table-inner .link-title {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 14px;
  color: #635BFF;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-top: 25px;
}
.wishlist-table-inner .link-title i {
  font-size: 27px;
  line-height: 0;
  margin-right: 7px;
}
.wishlist-table-inner .link-title:hover {
  color: var(--secondaryColor);
}

.wishlist-table .table {
  margin-bottom: 0;
}
.wishlist-table .table thead tr {
  border: none;
  border-bottom: 1px solid #E0E8EE;
}
.wishlist-table .table thead tr th {
  color: var(--paragraphColor);
  vertical-align: middle;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  background-color: transparent;
  border: none;
  padding: 0 25px 20px 25px;
}
.wishlist-table .table thead tr th:first-child {
  padding-left: 0;
}
.wishlist-table .table thead tr th:last-child {
  padding-right: 0;
}
.wishlist-table .table tbody tr {
  border: none;
  margin-bottom: 25px;
  border-bottom: 1px solid #E0E8EE;
}
.wishlist-table .table tbody tr td {
  vertical-align: middle;
  white-space: nowrap;
  padding: 25px;
  border: none;
  background-color: transparent;
}
.wishlist-table .table tbody tr td:first-child {
  padding-left: 0;
}
.wishlist-table .table tbody tr td:last-child {
  padding-right: 0;
  text-align: end;
}
.wishlist-table .table tbody tr td.product-thumbnail {
  display: flex;
  align-items: center;
}
.wishlist-table .table tbody tr td.product-thumbnail .image {
  width: 110px;
}
.wishlist-table .table tbody tr td.product-thumbnail .image img {
  border-radius: 15px;
}
.wishlist-table .table tbody tr td.product-thumbnail .title {
  margin-left: 25px;
}
.wishlist-table .table tbody tr td.product-thumbnail .title h3 {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.5;
}
.wishlist-table .table tbody tr td.product-price .unit-amount {
  color: var(--paragraphColor);
}
.wishlist-table .table tbody tr td .default-btn {
  border-radius: 10px;
  padding: 12.8px 45px 14px;
}
.wishlist-table .table tbody tr td span {
  color: var(--secondaryColor);
}
.wishlist-table .table tbody tr td.remove a i {
  font-size: 20px;
  color: #EA3118;
  transition: var(--transition);
}
.wishlist-table .table tbody tr td.remove a i:hover {
  color: var(--primaryColor);
}
.wishlist-table .table tbody:not(:first-child) {
  border-top: unset;
}

/*================================================
Checkout Area CSS
=================================================*/
.checkout-inner {
  padding-right: 50px;
}

.checkout-info-form h3 {
  letter-spacing: -2.2px;
  margin-bottom: 30px;
  font-size: 45px;
}
.checkout-info-form .form-group {
  margin-bottom: 20px;
}
.checkout-info-form .form-group .form-control {
  display: inline-block;
  width: 100%;
  height: 70px;
  outline: 0;
  box-shadow: unset;
  border-radius: 50px;
  background-color: #F5F5F5;
  border: none;
  font-weight: 500;
  color: var(--paragraphColor);
  transition: var(--transition);
  padding: 15px 30px 15px 30px;
}
.checkout-info-form .form-group .form-control::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.checkout-info-form .form-group .form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}
.checkout-info-form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
}
.checkout-info-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.checkout-info-form .form-group textarea.form-control {
  min-height: 155px;
  border-radius: 20px;
  display: flex;
}
.checkout-info-form .form-group .form-select {
  background-position: right 30px center;
}
.checkout-info-form .form-check {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.checkout-info-form .form-check .form-check-input {
  border-radius: 50px;
  border: 1px solid var(--secondaryColor);
  height: 20px;
  width: 20px;
  margin-top: -2px;
  outline: 0;
  box-shadow: unset;
}
.checkout-info-form .form-check .form-check-label {
  font-size: 15px;
  font-weight: 500;
  margin-left: 10px;
  color: var(--paragraphColor);
}
.checkout-info-form .form-check .form-check-label a {
  color: var(--blackColor);
  font-weight: 600;
}
.checkout-info-form .form-check .form-check-label a:hover {
  color: var(--secondaryColor);
}

.payment-method {
  margin-top: 100px;
}
.payment-method h3 {
  letter-spacing: -2.2px;
  margin-bottom: 30px;
  font-size: 45px;
}
.payment-method p {
  border-radius: 10px;
  border: 1px solid #F5F5F5;
  padding: 20px;
  max-width: 745px;
}
.payment-method p [type=radio]:checked, .payment-method p [type=radio]:not(:checked) {
  display: none;
}
.payment-method p span {
  display: block;
  padding-left: 32.8px;
  padding-top: 8px;
}
.payment-method p [type=radio]:checked + label, .payment-method p [type=radio]:not(:checked) + label {
  display: flex;
  align-items: center;
  padding-left: 32.8px;
  cursor: pointer;
  display: block;
  position: relative;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
}
.payment-method p [type=radio]:checked + label::before, .payment-method p [type=radio]:not(:checked) + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--secondaryColor);
  border-radius: 50%;
  background: transparent;
}
.payment-method p [type=radio]:checked + label::after, .payment-method p [type=radio]:not(:checked) + label::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%) !important;
  left: 0;
  right: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--primaryColor);
  border-radius: 50%;
  transition: var(--transition);
}
.payment-method p [type=radio]:not(:checked) + label::after {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}
.payment-method p [type=radio]:checked + label {
  color: var(--blackColor);
}
.payment-method p [type=radio]:checked + label::after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.checkout-info-sidebar {
  border-radius: 20px;
  background: #F5F5F5;
  padding: 30px;
}
.checkout-info-sidebar h3 {
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 25px;
}
.checkout-info-sidebar .list {
  margin-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
}
.checkout-info-sidebar .list li {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.checkout-info-sidebar .list li:last-child {
  margin-bottom: 0;
}
.checkout-info-sidebar .list li .info {
  display: flex;
  align-items: center;
}
.checkout-info-sidebar .list li .info img {
  border-radius: 10px;
  max-width: 90px;
}
.checkout-info-sidebar .list li .info .title {
  margin-left: 20px;
}
.checkout-info-sidebar .list li .info .title h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.checkout-info-sidebar .list li .info .title span {
  font-weight: 600;
  font-size: 14px;
}
.checkout-info-sidebar .list li .price {
  font-size: 14px;
  font-weight: 600;
  color: var(--blackColor);
  letter-spacing: 1.4px;
}
.checkout-info-sidebar .order-list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.checkout-info-sidebar .order-list li {
  list-style-type: none;
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1.4px;
  font-weight: 600;
}
.checkout-info-sidebar .order-list li span {
  color: var(--blackColor);
}
.checkout-info-sidebar .order-list li:last-child {
  margin-top: 35px;
  margin-bottom: 0;
}
.checkout-info-sidebar .order-btn {
  margin-top: 25px;
}
.checkout-info-sidebar .order-btn .default-btn {
  border: none;
  width: 100%;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  background-color: var(--blackColor);
}

.single-footer-widget {
  margin-bottom: 25px;
}
.single-footer-widget .widget-logo {
  margin-bottom: 40px;
}
.single-footer-widget .widget-info h4 {
  margin-bottom: 0;
  font-family: var(--optionalfontFamily);
  color: var(--primaryColor);
  font-weight: bold;
}
.single-footer-widget .widget-info h4 span {
  font-size: 20px;
}
.single-footer-widget .widget-info h4 a {
  font-size: 30px;
  color: var(--primaryColor);
  font-weight: bold;
}
.single-footer-widget .widget-info h4 a:hover {
  color: var(--secondaryColor);
}
.single-footer-widget .widget-info h4 .botton-calls {
  color: #BCCCD6;
  font-size: 20px;
  display: block;
  margin-top: 5px;
  line-height: 1.2;
  display: block;
}
.single-footer-widget .widget-payment {
  margin-top: 40px;
}
.single-footer-widget .widget-payment span {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
  color: #BCCCD6;
}
.single-footer-widget .widget-payment .payment-list {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.single-footer-widget .widget-payment .payment-list li {
  list-style-type: none;
  margin-right: 30px;
}
.single-footer-widget .widget-payment .payment-list li:last-child {
  margin-right: 0;
}
.single-footer-widget h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--whiteColor);
}
.single-footer-widget .list {
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.single-footer-widget .list li {
  list-style-type: none;
  margin-bottom: 18px;
}
.single-footer-widget .list li:last-child {
  margin-bottom: 0;
}
.single-footer-widget .list li a {
  color: #BCCCD6;
  font-weight: 500;
  position: relative;
}
.single-footer-widget .list li a::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: var(--primaryColor);
  transition: var(--transition);
}
.single-footer-widget .list li a:hover {
  color: var(--primaryColor);
}
.single-footer-widget .list li a:hover::before {
  width: 100%;
}
.single-footer-widget ul {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-right: 0;
}
.single-footer-widget ul li {
  list-style-type: none;
  margin-bottom: 18px;
}
.single-footer-widget ul li:last-child {
  margin-bottom: 0;
}
.single-footer-widget ul li a {
  color: #BCCCD6;
  font-weight: 500;
  position: relative;
}
.single-footer-widget ul li a::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: var(--primaryColor);
  transition: var(--transition);
}
.single-footer-widget ul li a:hover {
  color: var(--primaryColor);
}
.single-footer-widget ul li a:hover::before {
  width: 100%;
}
.single-footer-widget .newsletter-form .form-control {
  display: inline-block;
  height: 55px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  font-size: 15px;
  color: var(--whiteColor);
  padding: 15px 25px;
  outline: 0;
  box-shadow: unset;
}
.single-footer-widget .newsletter-form .form-control::-moz-placeholder {
  color: var(--whiteColor);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.single-footer-widget .newsletter-form .form-control::placeholder {
  color: var(--whiteColor);
  transition: var(--transition);
}
.single-footer-widget .newsletter-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.single-footer-widget .newsletter-form .form-control:focus::placeholder {
  color: transparent;
}
.single-footer-widget .newsletter-form .default-btn {
  border: none;
  width: 100%;
  margin-top: 15px;
}
.single-footer-widget .newsletter-form p {
  color: #BCCCD6;
  font-size: 14px;
  margin-top: 15px;
}

.col-lg-3:nth-child(2).single-footer-widget {
  padding-left: 140px;
}
.col-lg-3:nth-child(3).single-footer-widget {
  padding-left: 90px;
}

/*================================================
Copyright Area CSS
=================================================*/
.copyright-area {
  background-color: #405561;
  padding-top: 35px;
  padding-bottom: 35px;
}

.copyright-area-content {
  text-align: center;
}
.copyright-area-content p {
  color: #B8B8B8;
}
.copyright-area-content p span {
  color: var(--whiteColor);
}
.copyright-area-content p a {
  color: var(--whiteColor);
  font-weight: 600;
}
.copyright-area-content p a:hover {
  color: var(--primaryColor);
}

/*================================================
Back to Top CSS
=================================================*/
#back-to-top {
  opacity: 0;
  right: 20px;
  z-index: 99;
  bottom: 20px;
  height: 45px;
  width: 45px;
  line-height: 45px;
  font-size: 25px;
  transition: 0.5s;
  background: var(--secondaryColor);
  color: var(--whiteColor);
  border-radius: 50px;
  position: relative;
  z-index: 111;
}
#back-to-top::before {
  position: absolute;
  content: "";
  height: 45px;
  width: 45px;
  line-height: 45px;
  border-radius: 50px;
  left: 0;
  right: 0;
  top: 0;
  background: var(--primaryColor);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
#back-to-top:hover {
  color: var(--whiteColor);
}
#back-to-top:hover::before {
  opacity: 1;
  visibility: visible;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 30px;
  text-align: center;
}
.pagination-area .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-area .page-numbers {
  width: 40px;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  color: var(--blackColor);
  background: #F6F5F5;
  transition: var(--transition);
  font-size: 15px;
  font-weight: 600;
  margin-left: 5px;
  margin-right: 5px;
}
.pagination-area .page-numbers:hover, .pagination-area .page-numbers.active, .pagination-area .page-numbers.current {
  color: var(--whiteColor);
  background: var(--primaryColor);
}
.pagination-area .next, .pagination-area .prev {
  line-height: 40px;
  font-size: 25px;
  color: #DAD5E1;
  transition: var(--transition);
  margin: 0 5px;
  background-color: transparent;
}
.pagination-area .next:hover, .pagination-area .prev:hover {
  color: var(--blackColor);
  background-color: transparent;
}

.load-more-btn {
  margin-top: 15px;
  text-align: center;
}
.load-more-btn .default-btn {
  background-color: var(--blackColor);
}
.load-more-btn .default-btn:hover {
  background-color: var(--primaryColor);
}

.map-area iframe {
  display: flex;
  width: 100%;
  border-radius: 20px;
  height: 320px;
}

.et-demo-options-toolbar {
  position: fixed;
  top: 50%;
  width: 40px;
  right: 0;
  line-height: 60px;
  border: 1px solid #eee;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  z-index: 99999;
  background: #fff;
  text-align: center;
  box-shadow: -3px 0 10px -2px rgba(0, 0, 0, 0.1);
}

.et-demo-options-toolbar a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #111;
}

.et-demo-options-toolbar a:focus, .et-demo-options-toolbar a:hover {
  color: #111 !important;
}

[class*=hint--] {
  position: relative;
  display: inline-block;
}

[class*=hint--]:before,
[class*=hint--]:after {
  position: absolute;
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  transition: 0.3s ease;
  transition-delay: 0ms;
}

[class*=hint--]:hover:before,
[class*=hint--]:hover:after {
  visibility: visible;
  opacity: 1;
}

[class*=hint--]:hover:before,
[class*=hint--]:hover:after {
  transition-delay: 0.1s;
}

[class*=hint--]:before {
  content: "";
  position: absolute;
  background: 0 0;
  border: 7px solid transparent;
  z-index: 1000001;
}

[class*=hint--]:after {
  background: #000;
  color: #fff;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 15px;
  white-space: nowrap;
  border-radius: 5px;
}

[class*=hint--][aria-label]:after {
  content: attr(aria-label);
}

[class*=hint--][data-hint]:after {
  content: attr(data-hint);
}

[aria-label=""]:before,
[aria-label=""]:after,
[data-hint=""]:before,
[data-hint=""]:after {
  display: none !important;
}

.hint--top-left:before {
  border-top-color: #000;
}

.hint--top-right:before {
  border-top-color: #000;
}

.hint--top:before {
  border-top-color: #000;
}