/* ====================================== _____________ Variables Styles _____________ ====================================== */
/* ====================================== _____________ Variables Styles _____________ ====================================== */
/* ====================================== _____________ Mixin Styles _____________ ====================================== */
/* ====================================== _____________ Mixin Styles _____________ ====================================== */
/* ====================================== _____________ Classes Styles _____________ ====================================== */
.leftContainer {
  margin-left: auto;
  padding: 0 15px;
  padding-right: 0;
}
@media (max-width: 576px) {
  .leftContainer {
    width: 100%;
    padding-right: 15px;
    margin-left: auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .leftContainer {
    width: calc(540px + (100vw - 540px) / 2);
    padding-right: 15px;
    margin-left: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .leftContainer {
    width: calc(720px + (100vw - 720px) / 2);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .leftContainer {
    width: calc(960px + (100vw - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  .leftContainer {
    width: calc(1140px + (100vw - 1140px) / 2);
  }
}

.rightContainer {
  margin-right: auto;
  padding: 0 15px;
  padding-left: 0;
}
@media (max-width: 576px) {
  .rightContainer {
    width: 100%;
    padding-left: 15px;
    margin-left: auto;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .rightContainer {
    width: calc(540px + (100vw - 540px) / 2);
    padding-left: 15px;
    margin-right: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .rightContainer {
    width: calc(720px + (100vw - 720px) / 2);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .rightContainer {
    width: calc(960px + (100vw - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  .rightContainer {
    width: calc(1140px + (100vw - 1140px) / 2);
  }
}

.orangeColor {
  color: #F74F22 !important;
}

.mainColor {
  color: #E42B1B !important;
}

.secColor {
  color: #222 !important;
}

.whtColor {
  color: #fff !important;
}

.blkColor {
  color: #000 !important;
}

.mainBgColor {
  background-color: #E42B1B !important;
}

.secBgColor {
  background-color: #222 !important;
}

.whtBgColor {
  background-color: #fff !important;
}

.blkBgColor {
  background-color: #000 !important;
}

.mainImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

p,
.p {
  font-size: 0.95rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 1rem;
}

a,
.a,
.link {
  font-size: 0.95rem;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.mainHover {
  transition: all 0.3s ease-in-out;
}
.mainHover:hover {
  color: #E42B1B;
}

.mainTitle {
  color: #42BD9A;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 8px;
}
.mainTitle::before {
  content: "";
  bottom: 0px;
  width: 27px;
  height: 3px;
  position: absolute;
  border-radius: 10px;
  background-color: #42BD9A;
}

.mindatory {
  color: #E12A2A;
  font-size: 0.9rem;
  font-weight: 700;
}

.pulse-soft {
  animation: pulseSoft 2s infinite;
}

@keyframes pulseSoft {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
.selectBoxx {
  border-radius: 6px;
  border: 1px solid #D9D9D9;
  background: transparent;
}
.selectBoxx select {
  background: transparent !important;
}

.amount-input {
  font-size: 0.9rem;
  font-weight: 500;
  color: #474747;
  background: none;
  border: none;
}

/* ====================================== _____________ Classes Styles _____________ ====================================== */
/* ====================================== _____________ Reset Styles _____________ ====================================== */
* {
  outline: 0 !important;
  box-shadow: none !important;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background-color: transparent;
}

html {
  font-size: 100%;
  overflow-x: hidden;
}
@media (max-width: 576px) {
  html {
    font-size: 85%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  html {
    font-size: 88%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 90%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 95%;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 100%;
  }
}

body {
  font-size: 1rem;
  font-weight: 400;
  overflow-x: hidden;
  font-family: "GE SS Two";
  direction: rtl;
  text-align: right;
}

textarea {
  resize: none;
}

.modal-dialog {
  max-width: 900px;
}

.typeDonation {
  color: #F74F22;
}

.full-container {
  display: flex;
  background: #FFF;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  /* Remove arrow/spin buttons from input number */
}
.full-container .image-side {
  flex: 1;
  background-image: url("../img/global/side-image.png");
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (max-width: 568px) {
  .full-container .image-side {
    display: none;
  }
}
.full-container .form-side {
  flex: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.full-container .form-group {
  margin-bottom: 30px;
  /* Space between inputs 30px */
  display: flex;
  flex-direction: column;
}
.full-container label {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  color: #333;
  font-size: 0.9rem;
}
.full-container select,
.full-container input {
  width: 100%;
  padding: 9.929px 15.276px;
  border: 1px solid #CECBCB;
  border-radius: 4.583px;
  font-family: "Tajawal", sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
}
.full-container select:focus,
.full-container input:focus {
  /* Remove focus border color as requested, but keeping border consistent or default */
  border-color: #CECBCB;
}
.full-container select {
  color: #ef4444;
  /* Keep text color for type */
  appearance: none;
  /* Updated arrow color to #979797 in SVG */
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23979797%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: left 12px top 50%;
  background-size: 10px;
}
.full-container .action-btn {
  background: #42BD9A;
  border: 1px solid #42BD9A;
  color: white;
  padding: 8px 30px;
  border-radius: 180px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  /* Adjust spacing */
  margin-bottom: 2rem;
  transition: background-color 0.2s;
  font-family: "Tajawal", sans-serif;
  font-size: 1rem;
  width: auto;
  /* Not full width */
  align-self: flex-start;
  /* Right aligned in RTL (flexbox direction is column) */
}
.full-container .action-btn:hover {
  background-color: #3aa889;
}
.full-container .result-container {
  margin-top: 0;
  text-align: center;
  font-weight: 700;
  color: #474747;
  font-size: 1.1rem;
  min-height: 27px;
}
.full-container .hidden {
  display: none;
}
.full-container input::-webkit-outer-spin-button,
.full-container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.full-container input[type=number] {
  -moz-appearance: textfield;
}

.close-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 20px;
  color: #ff6b6b;
  cursor: pointer !important;
  background: none;
  border: none;
  font-weight: bold;
  z-index: 999;
}

.dropdown-menu {
  background-color: rgba(0, 0, 0, 0.6);
}

.dropdown-item {
  color: white;
}
.dropdown-item:focus, .dropdown-item:hover {
  color: white;
  background-color: transparent;
}

.dropdown-item.active,
.dropdown-item:active {
  color: white;
  background-color: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.tabForm {
  /* Custom Checkbox */
}
.tabForm .input-group {
  margin-bottom: 20px;
}
.tabForm .input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.tabForm input[type=text],
.tabForm input[type=tel],
.tabForm select {
  width: 100%;
  padding: 12px;
  border: 2px solid var(#ddd);
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  transition: var(all 0.3s ease);
  box-sizing: border-box;
}
.tabForm input:focus,
.tabForm select:focus {
  border-color: var(#007bff);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
.tabForm .payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.tabForm .method-card {
  border: 2px solid var(#ddd);
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  transition: var(all 0.3s ease);
  position: relative;
  border: 1px solid #CECBCB;
}
.tabForm .method-card.active {
  border-color: #1a5c1a;
  background-color: #f0fdf0;
}
.tabForm .method-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tabForm .method-text {
  font-weight: 600;
  font-size: 15px;
}
.tabForm .method-icon img {
  height: 30px;
}
.tabForm .nbe-icon img {
  height: 25px;
}
.tabForm .static-logos {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 10px 0;
  padding: 10px;
  background: #fdfdfd;
  border-radius: 8px;
}
.tabForm .static-logos img {
  height: 30px;
  filter: grayscale(20%);
}
.tabForm .hidden {
  display: none;
}
.tabForm .terms-group {
  margin-top: 10px;
}
.tabForm .checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
  gap: 10px;
}
.tabForm .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.tabForm .checkmark {
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 4px;
  border: 1px solid #ccc;
  position: relative;
}
.tabForm .checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}
.tabForm .checkbox-container input:checked ~ .checkmark {
  background-color: var(#28a745);
  border-color: var(#28a745);
}
.tabForm .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.tabForm .checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.tabForm .checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.tabForm .terms-link {
  color: #42BD9A;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 0;
}
.tabForm .terms-link:hover {
  text-decoration: underline;
}
.tabForm .submit-btn {
  width: 100%;
  padding: 14px;
  background: var(#007bff);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 25px;
  transition: var(all 0.3s ease);
}
.tabForm .submit-btn:hover {
  background: #0056b3;
}

.otherAmountInput {
  border: none !important;
  font-family: sans-serif;
}

/* ====================================== _____________ Reset Styles _____________ ====================================== */
@font-face {
  font-family: "GE SS Two";
  src: url("font/GESSTwoLight-Light.eot");
  src: url("font/GESSTwoLight-Light.eot?#iefix") format("embedded-opentype"), url("font/GESSTwoLight-Light.woff2") format("woff2"), url("font/GESSTwoLight-Light.woff") format("woff"), url("font/GESSTwoLight-Light.ttf") format("truetype"), url("font/GESSTwoLight-Light.svg#GESSTwoLight-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GE SS Two";
  src: url("font/GESSTwoBold-Bold.eot");
  src: url("font/GESSTwoBold-Bold.eot?#iefix") format("embedded-opentype"), url("font/GESSTwoBold-Bold.woff2") format("woff2"), url("font/GESSTwoBold-Bold.woff") format("woff"), url("font/GESSTwoBold-Bold.ttf") format("truetype"), url("font/GESSTwoBold-Bold.svg#GESSTwoBold-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GE SS Two";
  src: url("font/GESSTwoLight-Light_1.eot");
  src: url("font/GESSTwoLight-Light_1.eot?#iefix") format("embedded-opentype"), url("font/GESSTwoLight-Light_1.woff2") format("woff2"), url("font/GESSTwoLight-Light_1.woff") format("woff"), url("font/GESSTwoLight-Light_1.ttf") format("truetype"), url("font/GESSTwoLight-Light_1.svg#GESSTwoLight-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GE SS Text";
  src: url("font/GESSTextMedium-Medium.eot");
  src: url("font/GESSTextMedium-Medium.eot?#iefix") format("embedded-opentype"), url("font/GESSTextMedium-Medium.woff2") format("woff2"), url("font/GESSTextMedium-Medium.woff") format("woff"), url("font/GESSTextMedium-Medium.ttf") format("truetype"), url("font/GESSTextMedium-Medium.svg#GESSTextMedium-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GE SS Two";
  src: url("font/GESSTwoMedium-Medium.eot");
  src: url("font/GESSTwoMedium-Medium.eot?#iefix") format("embedded-opentype"), url("font/GESSTwoMedium-Medium.woff2") format("woff2"), url("font/GESSTwoMedium-Medium.woff") format("woff"), url("font/GESSTwoMedium-Medium.ttf") format("truetype"), url("font/GESSTwoMedium-Medium.svg#GESSTwoMedium-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GE SS Two";
  src: url("font/GESSTwoMedium-Medium_1.eot");
  src: url("font/GESSTwoMedium-Medium_1.eot?#iefix") format("embedded-opentype"), url("font/GESSTwoMedium-Medium_1.woff2") format("woff2"), url("font/GESSTwoMedium-Medium_1.woff") format("woff"), url("font/GESSTwoMedium-Medium_1.ttf") format("truetype"), url("font/GESSTwoMedium-Medium_1.svg#GESSTwoMedium-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GE SS Two";
  src: url("font/GESSTwoBold-Bold_1.eot");
  src: url("font/GESSTwoBold-Bold_1.eot?#iefix") format("embedded-opentype"), url("font/GESSTwoBold-Bold_1.woff2") format("woff2"), url("font/GESSTwoBold-Bold_1.woff") format("woff"), url("font/GESSTwoBold-Bold_1.ttf") format("truetype"), url("font/GESSTwoBold-Bold_1.svg#GESSTwoBold-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GE SS Two";
  src: url("font/GESSTwoBold-Bold_2.eot");
  src: url("font/GESSTwoBold-Bold_2.eot?#iefix") format("embedded-opentype"), url("font/GESSTwoBold-Bold_2.woff2") format("woff2"), url("font/GESSTwoBold-Bold_2.woff") format("woff"), url("font/GESSTwoBold-Bold_2.ttf") format("truetype"), url("font/GESSTwoBold-Bold_2.svg#GESSTwoBold-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tajawal";
  src: url("font/Tajawal-Regular.eot");
  src: url("font/Tajawal-Regular.eot?#iefix") format("embedded-opentype"), url("font/Tajawal-Regular.woff2") format("woff2"), url("font/Tajawal-Regular.woff") format("woff"), url("font/Tajawal-Regular.ttf") format("truetype"), url("font/Tajawal-Regular.svg#Tajawal-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ====================================== _____________ Global Styles _____________ ====================================== */
/* ====================================== _____________ Global Styles _____________ ====================================== */
/* ====================================== _____________ Header Styles _____________ ====================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
header nav {
  background-color: transparent !important;
}
header .navbar-brand {
  width: 58px;
  height: 67px;
}
@media (max-width: 1200px) {
  header .navbar-brand {
    margin-bottom: 1rem;
  }
}
header .buttons {
  gap: 20px;
}
@media (min-width: 1200px) {
  header .buttons {
    align-items: center;
  }
}
header a {
  margin-bottom: 0;
}
header .color,
header .white {
  width: 58px;
  height: 58px;
}
header .nav-link {
  margin-bottom: 0;
  color: #FFF;
  font-size: 0.9rem;
  font-weight: 500;
  padding-bottom: 0;
  padding-top: 0;
}
header .nav-link:hover {
  color: #fff !important;
}
@media (min-width: 1400px) {
  header .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 28px;
    padding-right: 28px;
  }
}
@media (max-width: 1400px) {
  header .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1200px) {
  header .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 13px;
    padding-right: 13px;
  }
}
@media (min-width: 991px) {
  header .numberItem {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
header .number {
  color: #FFF;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.6px;
}
header .number svg {
  margin-inline-start: 5px;
}
@media (max-width: 1200px) {
  header .greenButton,
  header .lightButton {
    width: 130px;
    padding: 8px 20px;
  }
  header .lightButton {
    color: white;
    background-color: #F74F22;
  }
}
@media (max-width: 1200px) and (max-width: 991px) {
  header .lightButton {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 991px) {
  header {
    background: #FFF;
    box-shadow: 0 3px 3px 0 rgba(71, 71, 71, 0.09) !important;
  }
  header .nav-link,
  header .number {
    color: #474747;
  }
  header .nav-link {
    margin-bottom: 8px;
  }
  header .number svg,
  header .number svg path {
    fill: #474747;
  }
}
header.scrolled {
  background: #FFF;
  box-shadow: 0 3px 3px 0 rgba(71, 71, 71, 0.09) !important;
}
header.scrolled .nav-link,
header.scrolled .number {
  color: #474747 !important;
}
header.scrolled .number svg,
header.scrolled .number svg path {
  fill: #474747 !important;
}
header.internalHeader {
  background: #FFF;
  box-shadow: 0 3px 3px 0 rgba(71, 71, 71, 0.06) !important;
}
header.internalHeader .nav-link {
  color: #474747;
}
header.internalHeader .nav-link:hover {
  color: #474747 !important;
}
header.internalHeader .nav-link,
header.internalHeader .number {
  color: #474747;
}
header.internalHeader .number svg,
header.internalHeader .number svg path {
  fill: #474747;
}

/* ====================================== _____________ Header Styles _____________ ====================================== */
/* ====================================== _____________ Footer Styles _____________ ====================================== */
footer .footer {
  background-image: url("../img/global/footer.png");
  background-size: cover;
  padding: 50px 0;
  background-position: bottom;
}
footer .footer_content {
  text-align: center;
}
footer .footer_content_icon {
  margin-bottom: 10px;
}
footer .footer_content_desc {
  color: #FFF;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
footer .footer_content_title {
  color: #F7F7F7;
  font-size: 1rem;
  margin-bottom: 0.85rem;
  font-weight: 700;
}
footer .footer_about {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .footer_about_link {
  color: #F7F7F7;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}
footer .footer_about_link:hover {
  color: white;
}
footer .footer_about_link_span {
  color: #F7F7F7;
  font-size: 13px;
  font-weight: 300;
  margin-top: 8px;
  margin-bottom: 0;
}
footer .footer_about_desc {
  color: #F7F7F7;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0;
}
footer .footer_about_smallLink {
  color: #F7F7F7;
  font-size: 0.85rem;
  font-weight: 400;
  display: block;
  margin-top: 6px;
  margin-bottom: 0;
  font-family: "Tajawal";
}
footer .footer_about_smallLink:hover {
  color: white;
}
footer .footer_about2 {
  gap: 0;
}
footer .footer_about2 .footer_about_link {
  margin-bottom: 1rem;
}
footer .footer_about2 .footer_about_desc {
  margin-bottom: 12px;
}
footer .footer_about2 .footer_about_desc:last-child {
  margin-bottom: 0;
}
footer .footer_map {
  width: 100%;
  height: 220px;
  border-radius: 7px;
}
footer .copyright {
  padding: 16px 0;
  text-align: center;
  background: #42BD9A;
}
footer .copyright_desc {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}
footer .copyright_desc a {
  margin-bottom: 0;
  font-family: "Tajawal";
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0;
}
footer .copyright_desc img {
  width: 49px;
}
@media (max-width: 991px) {
  footer .copyright_desc img {
    width: 35px;
  }
}

/* ====================================== _____________ Footer Styles _____________ ====================================== */
/* ====================================== _____________ Buttons Styles _____________ ====================================== */
.greenButton {
  border-radius: 180px;
  border: 1px solid #42BD9A;
  background: #42BD9A;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 8px 30px;
  color: white;
  font-size: 0.75rem;
  width: 148px;
  height: 38px;
  font-weight: 700;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.greenButton:hover, .greenButton.active {
  color: #42BD9A;
  background-color: white;
}
.greenButton:hover {
  border: 1px solid #D9D9D9;
}

.lightButton {
  border-radius: 180px;
  border: 1px solid white;
  background: transparent;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 8px 30px;
  color: white;
  font-size: 0.75rem;
  width: 148px;
  height: 38px;
  font-weight: 700;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.lightButton:hover {
  color: #F74F22;
  border-color: white;
  background-color: white;
}
.lightButton.active {
  color: white;
  background-color: #F74F22;
}

.lightGreenButton {
  display: flex;
  height: 47px;
  padding: 8px 30px;
  border-radius: 36px;
  border: 1px solid #42BD9A;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  color: #42BD9A;
  justify-content: center;
  align-items: center;
}
.lightGreenButton:hover {
  background-color: #42BD9A;
  color: white;
}

/* ====================================== _____________ Buttons Styles _____________ ====================================== */
.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
}

thead {
  color: white;
}
thead tr {
  background-color: #42BD9A;
}

tr {
  background: rgb(247, 247, 247);
}

th,
td {
  padding: 20px 18px;
  text-align: center;
}

tbody tr:hover {
  background-color: #f2f2f2;
}

.phone-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}

.phone-cell img {
  width: 40px;
  height: 40px;
}

.pagination {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.pagination button {
  padding: 5px 10px;
  border: 1px solid #ddd;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.pagination button:hover {
  background-color: #FF6840;
  color: #fff;
  border-color: #FF6840;
}

/* ====================================== _____________ Slider Styles _____________ ====================================== */
.swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper.swiper-rtl .swiper-button-prev, .swiper.swiper-rtl ~ .swiper-button-prev, .swiper ~ .swiper-button-next,
.swiper .swiper-button-next,
.swiper .swiper-button-next,
.swiper .swiper-button-prev,
.swiper ~ .swiper-button-next,
.swiper ~ .swiper-button-prev {
  top: 95%;
}
@media (max-width: 991px) {
  .swiper.swiper-rtl .swiper-button-prev, .swiper.swiper-rtl ~ .swiper-button-prev, .swiper ~ .swiper-button-next,
  .swiper .swiper-button-next,
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev,
  .swiper ~ .swiper-button-next,
  .swiper ~ .swiper-button-prev {
    top: 90%;
  }
}
@media (max-width: 568px) {
  .swiper.swiper-rtl .swiper-button-prev, .swiper.swiper-rtl ~ .swiper-button-prev, .swiper ~ .swiper-button-next,
  .swiper .swiper-button-next,
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev,
  .swiper ~ .swiper-button-next,
  .swiper ~ .swiper-button-prev {
    top: 85% !important;
  }
}
.swiper.swiper-rtl .swiper-button-prev svg, .swiper.swiper-rtl ~ .swiper-button-prev svg, .swiper ~ .swiper-button-next svg,
.swiper .swiper-button-next svg,
.swiper .swiper-button-next svg,
.swiper .swiper-button-prev svg,
.swiper ~ .swiper-button-next svg,
.swiper ~ .swiper-button-prev svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 991px) {
  .swiper.swiper-rtl .swiper-button-prev svg, .swiper.swiper-rtl ~ .swiper-button-prev svg, .swiper ~ .swiper-button-next svg,
  .swiper .swiper-button-next svg,
  .swiper .swiper-button-next svg,
  .swiper .swiper-button-prev svg,
  .swiper ~ .swiper-button-next svg,
  .swiper ~ .swiper-button-prev svg {
    width: 20px;
    height: 20px;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination {
  top: 93%;
  z-index: -1;
}
@media (max-width: 991px) {
  .swiper-pagination {
    top: 88% !important;
  }
}
@media (max-width: 568px) {
  .swiper-pagination {
    top: 82% !important;
  }
}

.swiper-pagination-bullet {
  border-radius: 4px;
  background: #D9D9D9;
  width: 32px;
  height: 7px;
  opacity: 1;
  margin: 7px !important;
}
@media (max-width: 568px) {
  .swiper-pagination-bullet {
    width: 25px;
    height: 5px;
  }
}

.swiper-pagination-bullet-active {
  background: #F74F22;
  width: 44px;
  height: 7px;
}
@media (max-width: 568px) {
  .swiper-pagination-bullet-active {
    width: 35px;
    height: 5px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: #F74F22;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  color: #D9D9D9;
  opacity: 1;
}

.mySwiper2 {
  margin-bottom: 28px;
}
.mySwiper2 .swiper-slide {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
}

.thumbsSlider {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .thumbsSlider {
    width: 70%;
    margin-left: auto;
    margin-right: 0;
  }
}
.thumbsSlider .swiper-slide {
  height: 103px;
  border-radius: 15px;
  overflow: hidden;
}

/* ====================================== _____________ Slider Styles _____________ ====================================== */
/* ====================================== _____________ cards Styles _____________ ====================================== */
/*  _____________ cards Styles _____________  */
.campaigns_card {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.campaigns_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 71.5%, #000 100%);
  transition: all 0.3s ease-in-out;
}
.campaigns_card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.campaigns_card_title {
  color: #FFF;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 20px;
  padding: 0 1rem;
  width: 100%;
}
.campaigns_card_desc {
  color: #FFF;
  text-align: start;
  font-size: 1rem;
  font-weight: 500;
  position: absolute;
  top: 50%;
  padding: 24px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.campaigns_card:hover .campaigns_card_title {
  opacity: 0;
}
.campaigns_card:hover::before {
  background: rgba(0, 0, 0, 0.7) 0%;
}
.campaigns_card:hover .campaigns_card_desc {
  opacity: 1;
}

.video_card {
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 591px;
  width: 100%;
}
.video_card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .video_card {
    height: 300px;
  }
}

.news_card {
  border-radius: 10px;
  box-shadow: 0 8.35px 20.876px 0 rgba(0, 0, 0, 0.04);
  position: relative;
  height: 100%;
}
.news_card_img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.news_card_content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.news_card_content_title {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.news_card_content_date {
  color: #FFF;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.news_card_content_desc {
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  width: 80%;
}
.news_card_content_link {
  color: #F74F22;
  font-size: 0.9rem;
  font-weight: 500;
}
.news_card_content_link:hover {
  color: #F74F22;
}

.activity_card {
  padding: 20px 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 247, 247, 0.92) 100%);
  text-align: start;
}
.activity_card_img {
  height: 292px !important;
  width: 100% !important;
  border-radius: 10px 10px 0 0;
  margin-bottom: 1rem;
}
.activity_card_title {
  color: #42BD9A;
  font-size: 1.375rem;
  font-weight: 500;
  min-height: 52px;
  display: flex;
  align-items: center;
}
.activity_card_desc {
  color: #9C9999;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 12px;
}
.activity_card_desc:last-of-type {
  margin-bottom: 26px;
}

.shares_card {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .shares_card {
    margin-bottom: 50px;
  }
}
.shares_card .campaigns_card {
  margin-bottom: 1rem;
  height: 255px;
}
.shares_card .campaigns_card:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 71.5%, #000 100%);
}
.shares_card .campaigns_card:hover .campaigns_card_title {
  opacity: 1;
}
.shares_card_content {
  padding: 0 20px;
}
.shares_card_content_desc {
  color: #474747;
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1rem;
  text-align: center;
}
.shares_card_content_controls {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  margin-bottom: 24px;
}
.shares_card_content_controls_box, .shares_card_content_controls_counter {
  padding: 13px 11px;
  border-radius: 6px;
  border: 1px solid #D9D9D9;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 0 0 48%;
  width: 50%;
  display: flex;
}
.shares_card_content_controls_box span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #474747;
}
.shares_card_content .greenButton {
  width: 100%;
  font-size: 0.9rem;
  height: 47px;
  margin-bottom: 0;
}

.projects {
  margin: 80px 0;
}
@media (max-width: 768px) {
  .projects {
    margin: 50px 0;
  }
}
.projects .shares_card {
  margin-bottom: 0;
}
.projects .shares_card .campaigns_card {
  margin-bottom: 0;
}
.projects .shares_card .campaigns_card .campaigns_card_img {
  height: 300px;
  object-fit: cover;
}
.projects .shares_card .campaigns_card .campaigns_card_title {
  font-size: 1.1rem;
  margin-bottom: 0;
  padding: 0 20px;
}

.apps_card {
  display: flex;
  padding: 30px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 2px solid #F7F7F7;
}
.apps_card_img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .apps_card_img {
    height: 80px;
  }
}
.apps_card_desc {
  color: #474747;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 991px) {
  .apps_card {
    padding: 15px;
  }
}

.outlets_card {
  border-radius: 10px 10px;
  border-top: 2px solid #F7F7F7;
  border-right: 2px solid #F7F7F7;
  border-left: 2px solid #F7F7F7;
  background: #F7F7F7;
  height: 100%;
}
.outlets_card_img {
  padding: 8px;
  border-radius: 6px 6px 0 0;
  width: 100%;
  background-color: white;
  height: 168px;
  object-fit: cover;
  object-position: top;
}
.outlets_card_content {
  display: flex;
  padding: 25px 23px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 95px;
  border-radius: 0 0 10px 10px;
  border-right: 1px solid #F7F7F7;
  border-bottom: 1px solid #F7F7F7;
  border-left: 1px solid #F7F7F7;
  background: #F7F7F7;
}
.outlets_card_content_desc {
  color: #474747;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}

.acountBank_card {
  border-radius: 10px 10px 0 0;
  border-top: 2px solid #F7F7F7;
  border-right: 2px solid #F7F7F7;
  border-left: 2px solid #F7F7F7;
  background: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.acountBank_card_top {
  padding: 20px;
  text-align: center;
}
.acountBank_card_top_img {
  height: 100px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 10px;
}
.acountBank_card_top_desc {
  color: #474747;
  font-size: 1rem;
  font-weight: 500;
}
.acountBank_card_content {
  display: flex;
  padding: 18px 23px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 10px 10px;
  border-right: 1px solid #F7F7F7;
  border-bottom: 1px solid #F7F7F7;
  border-left: 1px solid #F7F7F7;
  background: #F7F7F7;
  width: 100%;
}
.acountBank_card_content_desc {
  color: #F74F22;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.acountBank_card_content_number {
  color: #474747;
  font-size: 1.1rem;
  font-weight: 400;
  font-family: Arial;
}

/*  _____________ cards Styles _____________  */
/* ====================================== _____________ cards Styles _____________ ====================================== */
/*  _____________ donationBar Styles _____________  */
.donation_bar {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  margin: 130px 0 50px 0;
}
.donation_bar_step {
  width: 20%;
  flex: 0 0 20%;
  position: relative;
  cursor: pointer;
  text-align: center;
}
.donation_bar_step::before {
  background: rgba(255, 255, 255, 0.726);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.donation_bar_step::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
}
.donation_bar_step_title {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 0;
}
.donation_bar_step_img {
  width: 100%;
  height: 133px;
  object-fit: cover;
}
.donation_bar_step:hover::after {
  background-color: #F74F22;
}
.donation_bar_step:hover .donation_bar_step_title {
  color: #F74F22;
}
.donation_bar_step.active::before {
  background-color: rgba(66, 189, 154, 0.8);
}
.donation_bar_step.active .donation_bar_step_title {
  color: white;
}
.donation_bar_step.active::after {
  display: none;
}

/*  _____________ donationBar Styles _____________  */
.shares .select-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-bottom: 40px;
}
.shares .select-wrapper select {
  width: 100%;
  padding: 16px 22px;
  border-radius: 6px;
  border: none;
  background: #f7f7f7;
  color: #42BD9A;
  font-size: 1rem;
  appearance: none;
  cursor: pointer;
}
.shares .select-wrapper::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #999;
  pointer-events: none;
}

.contactUsForm {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .contactUsForm {
    padding: 50px 0;
  }
}
.contactUsForm_form_label {
  color: #000;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.contactUsForm_form_input,
.contactUsForm_form textarea {
  border-radius: 4.583px;
  border: 1px solid #CECBCB;
  background: #FFF;
  color: #474747;
  font-size: 0.9rem;
  width: 100%;
  padding: 7px 12px;
  text-align: right;
}
.contactUsForm_form textarea {
  height: 151px;
}
.contactUsForm_form .greenButton {
  width: 90%;
}
.contactUsForm_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.internalBanner {
  height: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 83px;
}
@media (max-width: 1200px) {
  .internalBanner {
    margin-top: 97px;
  }
}
.internalBanner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(66, 189, 154, 0.8);
}
.internalBanner_title {
  position: absolute;
  color: white;
  margin-bottom: 0;
  font-size: 1.75rem;
}
.internalBanner_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.donationNow {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 90px;
  height: 90px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
  z-index: 999999;
}
.donationNow img {
  width: 70px;
  height: 65px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .donationNow {
    width: 70px;
    height: 70px;
  }
  .donationNow img {
    width: 50px;
    height: 50px;
  }
}

/* ====================================== _____________ Home Page Styles _____________ ====================================== */
/*  _____________ banner Styles _____________  */
.banner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.banner_content {
  position: absolute;
  right: 0;
  width: 100%;
  top: 55%;
}
.banner_content_title {
  color: white;
  margin-bottom: 26px;
  font-size: 2.625rem;
  font-weight: 700;
}
.banner_content .greenButton {
  margin-inline-end: 1rem;
}

/*  _____________ banner Styles _____________  */
/*  _____________ about Styles _____________  */
.about_content {
  padding: 53px 100px 53px 55px;
  background-color: #F9F9F9;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
@media (max-width: 1200px) {
  .about_content {
    padding: 40px 80px 40px 40px;
  }
}
@media (max-width: 991px) {
  .about_content {
    padding: 30px 60px 30px 30px;
  }
}
@media (max-width: 768px) {
  .about_content {
    padding: 20px;
  }
}
.about_content_title {
  color: #F74F22;
  padding-bottom: 8px;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
}
.about_content_title::before {
  content: "";
  bottom: 0px;
  width: 27px;
  height: 3px;
  position: absolute;
  border-radius: 10px;
  background-color: #F74F22;
}
.about_content_desc {
  color: #474747;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.about_content_link {
  color: #474747;
  font-size: 0.9rem;
  font-weight: 300;
  display: inline-block;
}
.about_ourMessage {
  background-color: #42BD9A;
}
.about_ourMessage .about_content_title,
.about_ourMessage .about_content_desc {
  color: white;
}
.about_ourMessage .about_content_title::before,
.about_ourMessage .about_content_desc::before {
  background-color: white;
}
.about .services {
  padding: 50px 0;
  text-align: center;
}
.about .services_box svg {
  margin-bottom: 20px;
}
.about .services_box_note {
  color: #474747;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.about .services_box_title {
  color: #F74F22;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.about .services_box_title span {
  color: #8C8C8C;
  font-size: 1rem;
  font-weight: 300;
  display: block;
  margin-top: 6px;
}
.about .services_box_desc {
  color: #8C8C8C;
  font-size: 0.9rem;
  font-weight: 500;
  width: 80%;
  margin: 0 auto 0;
}

/*  _____________ about Styles _____________  */
/*  _____________ activity Styles _____________  */
.activity {
  padding: 80px 0;
  background-attachment: fixed;
  background: linear-gradient(180deg, rgba(79, 177, 149, 0.5) 0%, rgba(247, 79, 34, 0.11) 100%), #D9D9D9;
}
@media (max-width: 568px) {
  .activity {
    padding: 50px 0;
  }
}
.activity_content {
  margin-bottom: 88px;
}
@media (max-width: 768px) {
  .activity_content {
    margin-bottom: 30px;
  }
}
.activity_content_title {
  color: white;
  padding-bottom: 8px;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  position: relative;
}
.activity_content_title::before {
  content: "";
  bottom: 0px;
  width: 27px;
  height: 3px;
  position: absolute;
  border-radius: 10px;
  background-color: white;
}
.activity_content_desc {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 500;
}
.activity_content_link {
  color: #FFF;
  font-size: 1rem;
  font-weight: 300;
}
.activity_content_link:hover {
  color: white;
}
.activity_donation {
  margin-top: 50px;
}
.activity_donation .activity_content_desc {
  margin-bottom: 64px;
}
.activity_donation_links {
  border-radius: 15.234px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(9px);
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 38px 0;
}
@media (max-width: 568px) {
  .activity_donation_links {
    gap: 18px 0;
  }
}
.activity_donation_links_link {
  width: 33.3333333333%;
  flex: 0 0 33.3333333333%;
  text-align: center;
}
@media (max-width: 568px) {
  .activity_donation_links_link {
    width: 50%;
    flex: 0 0 50%;
  }
}
.activity_donation_links_link_img {
  margin-bottom: 34px;
}
@media (max-width: 568px) {
  .activity_donation_links_link_img {
    margin-bottom: 18px;
  }
}
.activity_donation_links_link_title {
  color: #FFF;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
}

/*  _____________ activity Styles _____________  */
/*  _____________ start campaigns Styles _____________  */
.campaigns {
  padding: 80px 0;
}
@media (max-width: 568px) {
  .campaigns {
    padding: 50px 0;
    margin: 0 15px;
  }
}

/*  _____________ start campaigns Styles _____________  */
/*  _____________ start history Styles _____________  */
.history {
  padding: 0 0 50px 0;
}
.history .swiper {
  padding-bottom: 80px;
}

/*  _____________ end history Styles _____________  */
/*  _____________ start news Styles _____________  */
.news {
  padding: 0 0 50px 0;
}
.news_list_item {
  border-bottom: 2px solid #D9D9D9;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.news_list_item:last-child {
  border: none;
  padding: 0;
  margin: 0;
}
.news_list_item_title {
  color: #474747;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.news_list_item_date {
  color: #F74F22;
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}
.news_list_item_desc {
  color: #797979;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.news_list_item_link {
  color: #F74F22;
  font-size: 0.9rem;
  font-weight: 500;
}

/*  _____________ end news Styles _____________  */
/*  _____________ start branches Styles _____________  */
.branches {
  background-image: url("../img/home/bg.png");
  background-size: cover;
  padding: 40px 0;
  position: relative;
  background-position: bottom;
}
.branches_list {
  max-height: 350px;
  overflow-y: scroll;
  padding-inline-end: 1rem;
}
.branches_list::-webkit-scrollbar {
  width: 8px;
}
.branches_list::-webkit-scrollbar-track {
  background: rgba(217, 217, 217, 0.4);
  border-radius: 10px;
}
.branches_list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(206, 206, 206, 0.5);
}
.branches_list::-webkit-scrollbar-thumb:hover {
  background: rgb(206, 206, 206);
}
.branches_list_item {
  border-radius: 6px;
  padding: 7px 18px;
  margin-bottom: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid transparent;
  cursor: pointer;
}
.branches_list_item.active {
  border: 2px solid #42BD9A;
  background: #FFF;
}
.branches_list_item_title {
  color: #474747;
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.branches_list_item_title svg {
  margin-inline-end: 8px;
}
.branches_list_item_desc {
  color: #474747;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 8px;
  padding-inline-start: 30px;
}
.branches_list_item_links {
  display: flex;
  justify-content: space-between;
}
.branches_list_item_links svg {
  margin-inline-end: 8px;
}
.branches_list_item_links_link {
  color: #474747;
  font-size: 1rem;
  font-weight: 500;
}
.branches_list_item_links_link2 {
  color: #7C7C7C;
  font-size: 0.9rem;
  font-weight: 300;
}
.branches_list_item_links_link2 svg {
  margin-inline-start: 8px;
}
.branches_card {
  height: 100%;
}
@media (max-width: 991px) {
  .branches_card {
    height: 400px;
  }
}
@media (max-width: 568px) {
  .branches_card {
    height: 300px;
  }
}

/*  _____________ end branches Styles _____________  */
/* ====================================== _____________ Home Page Styles _____________ ====================================== */
.shares_title {
  color: #474747;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.representative {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .representative {
    padding-bottom: 50px;
  }
}
.representative_img {
  border-radius: 10px;
  width: 100%;
}
.representative_content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.representative_content_title {
  color: #F74F22;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.representative_content_desc {
  color: #474747;
  font-size: 1.75;
  font-weight: 500;
}
.representative_content_note {
  color: #474747;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5;
}

.apps_title {
  color: #FF6840;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.acountBank {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .acountBank {
    padding-bottom: 50px;
  }
}
.acountBank_list {
  display: flex;
  gap: 100px;
  position: relative;
  margin-bottom: 3rem;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 500;
}
.acountBank_list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 100%;
  background: #DFDFDF;
}
.acountBank_list_item {
  border-bottom: 1px solid transparent;
  cursor: pointer;
  color: #AFAFAF;
  opacity: 0.7;
}
.acountBank_list_item:hover, .acountBank_list_item.active {
  color: #F74F22;
  border-bottom: 1px solid #F74F22;
  opacity: 1;
}

.tabSection {
  display: none;
}
.tabSection.active {
  display: block;
}

.banking {
  display: none;
}
.banking.active {
  display: block;
}

.newsDetails {
  margin: 150px 0 80px 0;
}
@media (max-width: 768px) {
  .newsDetails {
    margin: 150px 0 50px 0;
  }
}
.newsDetails_content_img {
  border-radius: 10px;
  box-shadow: 0 8.35px 20.876px 0 rgba(0, 0, 0, 0.04);
  height: 502px;
  margin-bottom: 40px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .newsDetails_content_img {
    height: 350px;
  }
}
.newsDetails_content_date {
  color: #9C9999;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}
.newsDetails_content_title {
  color: #474747;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.newsDetails_content_desc {
  color: #9C9999;
  font-size: 1rem;
  font-weight: 300;
}

/*  _____________ aboutUs Styles _____________  */
.aboutUs {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .aboutUs {
    padding: 50px 0;
  }
}
.aboutUs_content {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .aboutUs_content {
    padding-bottom: 50px;
  }
}
.aboutUs_content_desc {
  color: #474747;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0;
}
.aboutUs_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*  _____________ aboutUs Styles _____________  */
/*  _____________ ourMessage Styles _____________  */
.ourMessage {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .ourMessage {
    padding-bottom: 50px;
  }
}
.ourMessage .aboutUs_content {
  padding-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*  _____________ ourMessage Styles _____________  */
/*  _____________ projectDetails Styles _____________  */
.projectDetails_back {
  padding-top: 22px;
  padding-bottom: 34px;
  color: #474747;
  font-size: 1rem;
  font-weight: 500;
}
.projectDetails_title {
  margin-bottom: 1rem;
  color: #474747;
  font-size: 2rem;
  font-weight: 700;
}
.projectDetails_content {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .projectDetails_content {
    padding-bottom: 50px;
  }
}
.projectDetails_content_title {
  color: #474747;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.projectDetails_content_list_item {
  padding-bottom: 1rem;
  color: #9C9999;
  font-size: 1rem;
  font-weight: 300;
}
.projectDetails_content_list_item:last-of-type {
  padding-bottom: 0;
}
.projectDetails_content_list_item_title {
  color: #474747;
  font-size: 1rem;
  font-weight: 500;
  padding-inline-end: 5px;
}

/*  _____________ projectDetails Styles _____________  */
/*  _____________ projectDetails Styles _____________  */
.activitySection {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .activitySection {
    padding: 50px 0;
  }
}
.activitySection .projectDetails_back {
  padding-bottom: 25px;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .activitySection .thumbsSlider {
    width: 100%;
    margin-left: auto;
    margin-right: 0;
  }
}
.activitySection .projectDetails_content_title {
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.activitySection .projectDetails_content_list_item {
  font-size: 1rem;
}
.activitySection_filter {
  border-radius: 15px;
  border: 1px solid #F3F3F3;
  padding: 20px 16px;
}
.activitySection_filter_title {
  color: #000;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.activitySection_filter_img {
  margin-bottom: 1rem;
  width: 100%;
}
.activitySection_filter_list {
  margin-bottom: 0;
}
.activitySection_filter_list_item {
  padding-bottom: 14px;
}
.activitySection_filter_list_item:last-of-type {
  padding-bottom: 0;
}
.activitySection_filter_list_item_link {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  position: relative;
}
.activitySection_filter_list_item_link_img {
  position: absolute;
  right: -20px;
  transition: all 0.3s ease-in-out;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.activitySection_filter_list_item_link_title {
  color: #474747;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.activitySection_filter_list_item_link_number {
  color: #939393;
  font-size: 1rem;
  font-weight: 500;
}
.activitySection_filter_list_item_link:hover .activitySection_filter_list_item_link_title {
  transform: translateX(-20px);
  padding-inline-start: 10px;
}
.activitySection_filter_list_item_link:hover .activitySection_filter_list_item_link_img {
  transform: translate(-20px, -50%);
  opacity: 1;
}
.activitySection .shares_card,
.activitySection .campaigns_card {
  margin-bottom: 0;
}

/*  _____________ projectDetails Styles _____________  */
.booking {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .booking {
    padding: 50px 0;
  }
}
.booking .select-wrapper {
  margin-bottom: 0;
}

/*# sourceMappingURL=style.css.map */
