@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
:root {
  --general-color: #1F8036;
  --base-font-size: 16px;
}

html {
  font-size: 16px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

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

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

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #534F4E;
}

p {
  margin: 0;
  color: #534F4E;
}

input,
textarea,
a,
button {
  outline: none !important;
}

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

a {
  color: #A71517;
}

a:hover {
  color: #8d1113;
}

h2 {
  font-size: 2rem;
}

@media (max-width: 991px) {
  h2 {
    font-size: 1.5rem;
  }
}
h3 {
  font-size: 1.55rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

a {
  text-decoration: none;
}

body {
  font-weight: 400;
  line-height: 1.7;
  background-color: #fff;
  color: #534F4E;
  overflow-x: hidden;
  font-family: "Tajawal", sans-serif;
  background: url(../images/bg-body.png);
  background-repeat: repeat;
  background-size: auto;
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.font-semi-bold {
  font-weight: 600;
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  height: 48px;
  background-color: #fff;
  border: 1px solid #534F4E;
  border-radius: 6px;
  padding: 10px 15px;
}
.form-control:focus {
  background-color: #F5F5F5;
  border-color: #1F8036 !important;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
}

.bg-primary {
  background-color: #1F8036 !important;
}

.text-primary {
  color: #1F8036 !important;
}

.text-primary-2 {
  color: #047985;
}

.bg-primary-2 {
  background-color: #047985;
}

.border-primary {
  border-color: #1F8036 !important;
}

button {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
}

.input-icon {
  position: relative;
}

.input-icon .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}

.input-icon.icon-right .icon {
  inset-inline-start: 20px;
}

.input-icon.icon-right .form-control {
  padding-inline-start: 55px;
}

.input-icon.icon-left .icon {
  inset-inline-end: 20px;
}

.input-icon.icon-left .form-control {
  padding-inline-end: 55px;
}

::-moz-placeholder {
  color: #C3C3C3 !important;
  font-size: 16px;
}

::placeholder {
  color: #C3C3C3 !important;
  font-size: 16px;
}

.btn {
  padding: 10px 30px;
  font-size: 1rem;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}
@media (max-width: 991px) {
  .btn {
    font-size: 1.2rem;
  }
}

.btn-primary {
  color: #fff;
  background: #1F8036;
  border-color: #1F8036;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background: #166127;
  border-color: #1F8036;
}
.btn-primary:hover, .btn-primary:focus {
  color: #fff !important;
  border-color: #1F8036;
  background: #1F8036 !important;
  box-shadow: none !important;
}
.btn-primary:hover::before, .btn-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-secondary {
  color: #fff;
  background: #727272;
  border-color: #727272;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-secondary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #1F8036 !important;
  border-color: #1F8036;
}
.btn-secondary:hover, .btn-secondary:focus {
  color: #fff !important;
  border-color: #727272;
  background-color: #727272 !important;
  box-shadow: none !important;
}
.btn-secondary:hover::before, .btn-secondary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-primary-2 {
  color: #fff;
  background: #A71517;
  border-color: #A71517;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary-2::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #8d1113 !important;
  border-color: #8d1113;
}
.btn-primary-2:hover, .btn-primary-2:focus {
  color: #fff !important;
  border-color: #A71517;
  background-color: #A71517 !important;
}
.btn-primary-2:hover::before, .btn-primary-2:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-white {
  color: #000;
  background: #FFF;
  border-color: #FFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-white::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 6px;
  z-index: -1;
  background-color: #1F8036;
}
.btn-white:hover, .btn-white:focus {
  color: #fff !important;
  border-color: #1F8036;
  background-color: #FFF !important;
  box-shadow: none !important;
}
.btn-white:hover::before, .btn-white:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-outline-primary {
  color: #1F8036;
  background: transparent;
  border-color: #1F8036;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-outline-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #1F8036;
}

.btn-outline-primary img {
  transition: filter 0.4s ease-in-out;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  color: #000 !important;
  border-color: #1F8036;
  background-color: transparent !important;
  box-shadow: none !important;
  color: #FFF !important;
}

.btn-outline-primary:hover::before, .btn-outline-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-outline-white {
  color: #FFF;
  background: transparent;
  border-color: #FFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: none;
}

.btn-outline-white::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #FFF;
}

.btn-outline-white:hover, .btn-outline-white:focus {
  color: #000 !important;
  border-color: #1F8036;
  background-color: transparent !important;
  box-shadow: none !important;
}

.btn-outline-white:hover::before, .btn-outline-white:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.pagination .page-item {
  margin: 0px 7px;
}
.pagination .page-item .page-link {
  color: #172A30;
  background-color: transparent;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  height: 36px;
  border: 0;
  min-width: 36px;
  border-radius: 8px;
}
.pagination .page-item .page-link:hover {
  color: #fff;
  background-color: #1F8036 !important;
  border-color: #1F8036;
}
.pagination .page-item.active .page-link {
  color: #fff;
  background-color: #1F8036 !important;
  border-color: #1F8036;
}
@media (max-width: 991px) {
  .pagination .page-item {
    margin: 0px 4px;
  }
  .pagination .page-item .page-link {
    min-width: 40px;
    padding: 6px 14px;
  }
}

.checkbox {
  position: relative;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #000000;
  padding-inline-start: 30px;
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox .checkmark {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #BEC2C5;
  background-color: #FFF;
  top: 50%;
  inset-inline-start: 0;
  display: block;
  transform: translateY(-50%);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark {
  border-color: #1F8036;
}

.checkbox input:checked ~ .checkmark:after {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox .checkmark:after {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  color: #1F8036;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  font-weight: bold;
  content: "";
  font-size: 12px;
  background-color: #1F8036;
}
@media (max-width: 991px) {
  .checkbox .checkmark:after {
    width: 8px;
    height: 8px;
  }
}

.radio {
  position: relative;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #000000;
  padding: 10px 20px;
  text-align: center;
}
.radio.lg {
  min-width: 150px;
}

.radio .checkmark {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  left: 0;
  top: 0%;
  border: 1px solid #000;
}

.radio .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Hide the browser's default radio */
.radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Show the checkmark when checked */
.radio input:checked ~ .checkmark {
  border-color: #1F8036;
}

.radio input:checked ~ .text {
  color: #fff;
  position: relative;
  z-index: 1;
}

.radio input:checked ~ .checkmark:after {
  opacity: 1;
}

.radio .checkmark:after {
  top: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #1F8036;
}

.main-header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 25px 0;
}
.main-header .container {
  border-bottom: 4px solid rgba(127, 127, 127, 0.431372549);
}
.main-header .navbar-brand img {
  height: 80px;
}
.main-header .overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.main-header .overlay:not(.collapsed) {
  visibility: visible;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .main-header {
    padding: 10px 0;
  }
  .main-header .toggleMenu {
    max-width: 20px;
  }
}
@media (max-width: 991px) {
  .main-header .navbar .navbar-collapse {
    position: fixed;
    width: 100%;
    z-index: 11111;
    background: rgb(255, 255, 255);
    top: 0px;
    inset-inline-end: -100%;
    box-shadow: rgba(41, 41, 41, 0.1098039216) 0px 20px 20px;
    display: block;
    transition: all 0.2s ease-in-out;
    height: 100%;
  }
  .main-header .navbar .navbar-collapse .navbar-toggler {
    position: absolute;
    inset-inline-end: 32%;
    top: 3%;
    z-index: 22;
  }
  .main-header .navbar .navbar-collapse .navbar-nav {
    padding: 20px 20px 0;
  }
  .main-header .navbar .navbar-collapse.show {
    inset-inline-end: -30%;
  }
  .main-header .navbar .navbar-collapse.show .ss {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.7;
  }
}
.main-header .navbar .navbar-collapse .nav-item {
  position: relative;
}
.main-header .navbar .navbar-collapse .nav-link {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px;
  font-size: 1.2rem;
  color: #000;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.main-header .navbar .navbar-collapse .nav-link.active {
  color: #1F8036;
  font-weight: 600;
}
.main-header .navbar .navbar-collapse .nav-item:hover .nav-link {
  color: #1F8036;
}
@media (max-width: 991px) {
  .main-header .navbar-brand img {
    max-height: 50px;
  }
  .main-header .navbar-toggler:focus {
    box-shadow: none !important;
  }
}

.navbar-toggler {
  border: 0;
}

.navbar-toggler {
  position: relative;
}
.navbar-toggler img {
  height: 20px;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .navbar .navbar-collapse .nav-link {
    padding: 9px 7px;
    font-size: 10px;
  }
}
@media (min-width: 992px) {
  .main-header .navbar-nav .nav-item .submenu {
    position: absolute;
    top: 100%;
    background: #A8A8A8;
    min-width: 160px;
    padding: 4px 4px 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
  }
  .main-header .navbar-nav .nav-item .submenu li:not(:last-of-type) {
    border-bottom: 1px solid #FFF;
  }
  .main-header .navbar-nav .nav-item .submenu li a {
    color: #fff;
    display: block;
    padding: 5px 12px;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
  }
  .main-header .navbar-nav .nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 991px) {
  .main-header .navbar-nav .nav-item .submenu {
    padding: 4px 20px;
    display: none;
  }
}
@media (max-width: 991px) {
  .main-header .navbar-nav .nav-item .submenu li a {
    padding: 4px 0;
    display: block;
    border-bottom: 1px solid #e4e4e4;
    color: #405776;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1280px;
    max-width: 100%;
  }
}
.section {
  padding: 50px 0px;
  position: relative;
}
@media (max-width: 991px) {
  .section {
    padding: 30px 0;
  }
}

.section-home .home-title {
  font-size: 2.8rem;
}
@media (max-width: 991px) {
  .section-home .home-title {
    font-size: 2rem;
  }
}

.widget_item-project {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  background-color: #f5f5f5;
}
.widget_item-project .widget_item-content .form-control {
  border: 1px solid #000000;
}
.widget_item-project .widget_item-content .form-control,
.widget_item-project .widget_item-content .btn {
  border-radius: 4px;
  height: 33px;
  padding: 4px;
}
.widget_item-project .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 70%;
}
.widget_item-project .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.bg {
  background: url(../images/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 991px) {
  .bg {
    height: 500px;
  }
}

.section-title {
  font-size: 2.6rem;
}
@media (max-width: 991px) {
  .section-title {
    font-size: 2.2rem;
  }
}

.widget_item-number .widget_item-content {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.widget_item-number .widget_item-content .widget_item-icon img {
  height: 60px;
}
.widget_item-number .widget_item-content::before {
  position: absolute;
  content: "";
  width: 95%;
  top: 50%;
  left: 50%;
  height: 95%;
  border: 8px solid #534f4e;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.widget_item-number .widget_item-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 10px;
  background: conic-gradient(#1F8036 0deg 180deg, transparent 180deg 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 20px), black 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 20px), black 0);
  z-index: 0;
}

.page {
  overflow-y: hidden;
}

.swiper-action .swiper-next,
.swiper-action .swiper-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
.swiper-action .swiper-next {
  inset-inline-end: 40px;
}
.swiper-action .swiper-prev {
  inset-inline-start: 40px;
}
@media (max-width: 991px) {
  .swiper-action {
    display: none;
  }
}

.text-danger {
  color: #a71517 !important;
}

.widget_item-blog {
  background-color: #e6e6e6;
  border-radius: 20px;
  overflow: hidden;
}
.widget_item-blog .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 70%;
}
.widget_item-blog .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget_item-blog .widget_item-content {
  padding: 15px;
}
.widget_item-blog .widget_item-title {
  height: 38px;
  overflow: hidden;
}
.widget_item-blog .widget_item-desc {
  height: 48px;
  overflow: hidden;
}
.widget_item-blog .btn img {
  height: 15px;
}

.widget_item-contact {
  border: 2px solid #000000;
  border-radius: 10px;
  padding: 10px;
}
.widget_item-contact .widget_item-icon img {
  height: 20px;
}

.progress-bar {
  background-color: #a71517;
}

.progress {
  background-color: #f4f4f4;
  border: 1px solid #534f4e;
  height: 25px;
  border-radius: 30px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.widget_item-blog-2 .widget_item-image img {
  width: 170px;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget_item-blog-2 .widget_item-desc {
  overflow: hidden;
  height: 48px;
  font-size: 14px;
}

.tab-project li {
  margin: 0px 10px;
}
.tab-project li a {
  background-color: #989898;
  color: #fff;
  border-radius: 30px;
  display: block;
  font-size: 1.3rem;
  padding: 10px 40px;
}
@media (max-width: 991px) {
  .tab-project li a {
    padding: 5px 20px;
  }
}
.tab-project li a.active, .tab-project li a:hover {
  background-color: #534f4e;
}

.widget_item-project-2 {
  position: relative;
}
.widget_item-project-2 .form-control {
  height: 38px;
  border-radius: 5px;
}
.widget_item-project-2 .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 77%;
}
.widget_item-project-2 .widget_item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget_item-project-2 .widget_item-content {
  background-color: #f5f5f5;
  border-radius: 0 0 5px 5px;
}
.widget_item-project-2 .social-media {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 15px;
  border-radius: 0 0 0 30px;
}
.widget_item-project-2 .social-media li:not(:last-of-type) {
  margin-inline-end: 12px;
}
.widget_item-project-2 .social-media li a {
  width: 25px;
  height: 25px;
}
.widget_item-project-2 .social-media li a img {
  width: 14px;
  height: 14px;
}

.widget_item-single-project {
  position: relative;
  height: 0;
  padding-top: 86%;
  margin-bottom: 25px;
}
.widget_item-single-project img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  border-radius: 10px;
}

.section-projects-single .section:nth-child(odd) {
  position: relative;
}
.section-projects-single .section:nth-child(odd)::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 75%;
  top: 0;
  left: 0;
  background-color: rgba(33, 33, 33, 0.1);
}

.login-content {
  background-color: #efefef;
  border-radius: 10px;
}

.table {
  font-size: 20px;
  --bs-table-striped-bg: #f2f2f2;
  border-top: 10px solid #205374;
}

.widget_item-report {
  background-color: #fff;
  border: 1px solid #534f4e;
  padding: 12px;
  border-radius: 5px;
}
.widget_item-report .btn img {
  height: 18px;
}

.bg-gray {
  background-color: #efefef;
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 1000px;
  }
}
.fast-donation .overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: all 0.4s ease-in-out;
}
.fast-donation.is-open .overlay {
  opacity: 0.4;
  visibility: visible;
}

@media (min-width: 991px) {
  .fast-donation {
    position: fixed;
    top: 30%;
    transition: all 0.3s ease-in-out;
    z-index: 10;
    inset-inline-end: 0px;
  }
  .fast-donation .fast-donation-btn {
    border-end-end-radius: 0;
    border-start-end-radius: 0;
    width: 100px;
    z-index: 5;
  }
  .fast-donation .fast-donation-content {
    z-index: 5;
    background-color: #ebebeb;
    border-radius: 5px;
    padding: 20px;
    width: 450px;
    inset-inline-end: -450px;
    position: absolute;
  }
  .fast-donation.is-open {
    inset-inline-end: 450px;
  }
}
@media (max-width: 991px) {
  .fast-donation .close-donation {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
  }
  .fast-donation .fast-donation-btn {
    position: fixed;
    bottom: 20px;
    inset-inline-end: 20px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
  }
  .fast-donation .fast-donation-content {
    position: fixed;
    bottom: -100%;
    width: 100%;
    background-color: #EBEBEB;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    z-index: 5;
    transition: all 0.4s ease-in-out;
  }
  .fast-donation.is-open .fast-donation-content {
    bottom: 0;
  }
}
.donation-qr .donation-qr-image img {
  height: 200px;
  margin: auto;
}
.donation-qr .btn img {
  height: 35px;
}
.donation-qr .btn:hover img {
  filter: brightness(0) invert(1);
}

.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #1F8036;
}

#map {
  width: 100%;
  height: 400px;
}

.main-footer .link-footer a {
  color: #000;
  display: inline-block;
  font-size: 18px;
  padding: 7px 8px;
  margin: 0px 5px;
  position: relative;
  transition: color 200ms;
}
.main-footer .link-footer a:hover {
  color: #1F8036 !important;
}

.social-media {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.social-media li:not(:last-of-type) {
  margin-inline-end: 30px;
}
.social-media li a {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #19345A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background-color 0.3s ease-in-out;
  border: 1px solid #000000;
}
.social-media li a img {
  max-width: 20px;
  max-height: 20px;
}
.social-media li a:hover {
  color: #fff;
  background-color: #1F8036;
}
.social-media li a:hover img {
  filter: brightness(0) invert(1);
}

.form .icon {
  inset-inline-start: 20px !important;
}
.form .form-control {
  background-color: #fff;
  border-radius: 24px 4px;
  padding-inline-start: 50px !important;
}
.form .btn-submit {
  background-color: #5FB446;
  color: #FFF;
  padding: 5px 55px 5px 25px;
  margin-inline-start: -18px;
  border-radius: 24px 0 0px 4px;
}

@media (max-width: 991px) {
  html {
    font-size: 14px;
  }
}
html[dir=ltr] .swiper-action .swiper-next img, html[dir=ltr] .swiper-action .swiper-prev img {
  transform: scaleX(-1);
}/*# sourceMappingURL=main.css.map */