/*
Theme Name: Tawazon
Author: Sara Alrayes (SaraIAlrayes@gmail.com)
Version: 1.0.2
Text Domain: tawazon
*/

/* Colors Platee:
#6D3A64 
#3eb1b6
#ffffff
*/

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

/* General */
body {
  font-family: "Tajawal", sans-serif;
  overflow-x: hidden;
}

.row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

a {
  transition: .75s !important;
}

a:hover {
  opacity: 0.7;
}

/* NavBar */
.custom-navbar {
  background: #ffffff;
  border-radius: 0 0 2.5rem 2.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  padding: 1.5rem 1rem;
  margin: 0 3rem;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}

.custom-navbar .dropdown-menu {
  text-align: right;
}

.navbar-brand img {
  height: 3.25rem;
}

.custom-navbar .nav-link,
.custom-navbar .dropdown-item {
  color: #6d3a64 !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: .25rem 1rem;
}

.custom-navbar .dropdown-item {
  padding: .5rem 1rem;
}

.custom-navbar .nav-link.active-link,
.custom-navbar .dropdown-item.active,
.dropdown-item:active {
  font-weight: 700;
}

.custom-navbar .dropdown-item.active,
.dropdown-item:active {
  font-weight: 700;
  background-color: #3b7dcc;
}

.custom-navbar .dropdown-toggle::after {
  vertical-align: 2px;
}

.custom-toggler {
  border: none;
  background: #f4f4fa;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #6d3a64;
  transition: all 0.2s;
}

.custom-toggler:focus {
  box-shadow: none;
  outline: none;
}

.custom-toggler .fa-xmark {
  display: none;
}

.custom-toggler.open .fa-bars {
  display: none;
}

.custom-toggler.open .fa-xmark {
  display: inline-block;
}

/* Social Sidebar */
.social-sidebar {
  position: fixed;
  top: 50%;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.social-sidebar__icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease;
  text-decoration: none;
}

.social-sidebar__icon:hover {
  transform: scale(1.08);
}

.social-sidebar__icon i {
  font-size: 1.2rem;
  color: #6d3a64;
}

/* Donation Button */
.donate-sticky-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  border-radius: 50px;
  padding: 6px 6px 6px 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.donate-sticky-btn:hover {
  transform: translateY(-3px);
}

.donate-sticky-btn .icon {
  width: 2rem;
  height: 2rem;
  background: #45cfc9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.donate-sticky-btn .icon i {
  color: #ffffff;
  font-size: 1rem;
}

.donate-sticky-btn .text {
  color: #45cfc9;
  font-size: 1rem;
  white-space: nowrap;
}

.modal-content {
  border: none;
  border-radius: 1.5rem;
}

.bank-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 1rem;
  width: 100%;
}

.bank-card__qr img {
  width: 10rem;
  height: 10rem;
  display: block;
}

.bank-card__info {
  position: relative;
  text-align: right;
  flex: 1;
}

.bank-card__info p {
  color: #000;
  opacity: 0.7;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.bank-card__logo {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.25rem;
}

.bank-card__logo img {
  width: 3rem;
  height: 3rem;
}

.modal button {
  color: #000;
  width: 0;
}

/* Home Header */
header#home {
  position: relative;
  width: 100%;
  height: 100vh;
  /* background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: hero-zoom 20s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes hero-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.15);
  }
}

header#home .overlay {
  position: absolute;
  inset: 0;
  background: rgba(68, 68, 68, 0.4);
  background: linear-gradient(180deg, rgba(37, 69, 102, 0.25) 0%, rgba(18, 34, 51, 0.6) 100%);
  z-index: 1;
}

header#home .content {
  position: relative;
  z-index: 2;
  padding: 0 3rem;
  text-align: center;
  transform: translateY(22vh);
}

header#home .content .title {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

header#home .content .subtitle {
  font-size: 1rem;
  color: #4fd1c5;
  margin: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scroll-bounce 5s ease-in-out infinite;
}

.scroll-indicator__arrow {
  width: 16px;
  height: 16px;
  border-bottom: 2.5px solid #ffffff;
  border-right: 2.5px solid #ffffff;
  transform: rotate(45deg);
  display: inline-block;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* About */
.about {
  padding: 7rem 0;
  text-align: center;
}

.main-about-title {
  color: #427cbe;
  font-weight: 800;
  font-size: 1.7rem;
  margin-bottom: 2rem;
}

.main-about-content {
  max-width: 70vw;
  margin: 0 auto 6rem;
  font-size: 1.15rem;
  line-height: 2;
  color: #646464;
}

.main-about-content p {
  margin: 0;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 20rem));
  justify-content: center;
  gap: 4rem;
  align-items: stretch;
}

.about-card-wrap {
  position: relative;
  width: 20rem;
  display: flex;
}

/* .about-card-glow {
  position: absolute;
  inset: -100px;
  width: calc(100% + 140px);
  height: calc(100% + 140px);
  object-fit: contain;
  pointer-events: none;
}

.about-card-wrap:nth-child(1) .about-card-glow {
  transform: rotate(-15deg);
  animation: glow-rotate-1 15s ease-in-out infinite;
}

.about-card-wrap:nth-child(2) .about-card-glow {
  transform: rotate(30deg);
  animation: glow-rotate-2 15s ease-in-out infinite;
}

.about-card-wrap:nth-child(3) .about-card-glow {
  transform: rotate(-45deg);
  animation: glow-rotate-3 15s ease-in-out infinite;
}

@keyframes glow-rotate-1 {

  0%,
  100% {
    transform: rotate(-15deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

@keyframes glow-rotate-2 {

  0%,
  100% {
    transform: rotate(30deg);
  }

  50% {
    transform: rotate(45deg);
  }
}

@keyframes glow-rotate-3 {

  0%,
  100% {
    transform: rotate(-45deg);
  }

  50% {
    transform: rotate(-25deg);
  }
} */

.about-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  width: 100%;
  text-align: right;
  display: flex;
  flex-direction: column;
  z-index: 5;
}

.about-card__icon-badge {
  position: absolute;
  top: -1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  z-index: 6;
}

.about-card__icon-badge i {
  font-size: 1.5rem;
  color: #ffffff;
}

/* لون مختلف لكل بطاقة (دائرة الأيقونة + العنوان) */
.about-card-wrap:nth-child(1) .about-card__icon-badge {
  background: #3ecccc;
  /* تركوازي */
}

.about-card-wrap:nth-child(1) .about-card__title {
  color: #3ecccc;
}

.about-card-wrap:nth-child(2) .about-card__icon-badge {
  background: #427cbe;
  /* أزرق */
}

.about-card-wrap:nth-child(2) .about-card__title {
  color: #427cbe;
}

.about-card-wrap:nth-child(3) .about-card__icon-badge {
  background: #6d3568;
  /* بنفسجي */
}

.about-card-wrap:nth-child(3) .about-card__title {
  color: #6d3568;
}

.about-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.about-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  /* color: #3ecccc; */
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
  margin: 0;
}

/* .about-card__icon img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
} */

.about-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #646464;
  font-size: 1rem;
}

.about-card__content ul {
  text-align: right;
  padding-right: 18px;
  list-style: disc;
  margin: 0;
}

.about-card__content ul li {
  margin-bottom: 6px;
}

.about-card__content p {
  margin: 0;
}

/* Projects (Home Page) */
.projects-section {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  background: #efefef;
  box-shadow: 0px 0px 74px rgba(0, 0, 0, 0.25);
}

.projects-section__title {
  color: #6d3a64;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 5rem;
}

.projects-carousel-wrap {
  position: relative;
}

.projects-carousel {
  direction: rtl;
}

.project-card {
  /* background: linear-gradient(135deg, #6d3568 0%, #b090ad 100%); */
  /* color: #ffffff; */
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem;
  text-align: right;
  transform: scale(0.82);
  opacity: 0.75;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  position: relative;

  /* New Design */
  background: linear-gradient(135deg, rgba(109, 53, 104, 0.06) 0%, rgba(176, 144, 173, 0.03) 100%);
  border: 1px solid #e7dde6;
  /*border-top: 4px solid #6d3568;*/
  color: #6d3568;
}


.projects-carousel-wrap .owl-item.center .project-card {
  transform: scale(1);
  opacity: 1;
  padding: 2.25rem 2rem;

  /* New Design */
  /*border-top-width: 6px;*/
  background: linear-gradient(135deg, rgba(109, 53, 104, 0.1) 0%, rgba(176, 144, 173, 0.05) 100%);
}

.project-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1rem;
  text-align: center;
}

.projects-carousel-wrap .owl-item.center .project-card__title {
  font-size: 1.5rem;
}

.project-card__desc {
  font-size: 0.95rem;
  opacity: 0.95;
  text-align: justify;
}

.projects-carousel-wrap .owl-item.center .project-card__desc {
  font-size: 1.05rem;
}

.project-card__btn {
  background: #6d3568;
  color: #ffffff;
  border-radius: 5rem;
  padding: 0.25rem 1.5rem;
  text-decoration: none;
  width: 100%;
  display: block;
  text-align: center;
}

.project-card__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  display: flex;
  gap: 3px;
  padding: 6px;
  margin: -6px;
}


.project-card__dots span {
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  border: 1.5px solid transparent;
  background:
    linear-gradient(115.72deg,
      rgba(217, 217, 217, 0.3) 4.45%,
      rgba(217, 217, 217, 0) 97.63%) padding-box,
    linear-gradient(115.72deg,
      rgba(255, 255, 255, 1) 4.45%,
      rgba(255, 255, 255, 0) 97.63%) border-box;
}

.projects-carousel .owl-nav,
.other-projects-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: -6px;
  right: -6px;
  display: flex !important;
  flex-direction: row;
  direction: ltr;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 4;
  margin: 0;
}

.projects-carousel .owl-nav .owl-prev,
.projects-carousel .owl-nav .owl-next,
.other-projects-carousel .owl-nav .owl-prev,
.other-projects-carousel .owl-nav .owl-next {
  pointer-events: all;
  background: transparent !important;
  border: none;
  width: 36px;
  height: 36px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0;
  opacity: 1 !important;
}

.projects-carousel .owl-arrow,
.other-projects-carousel .owl-arrow {
  width: 20px;
  height: 20px;
  border-top: 2.5px solid;
  border-right: 2.5px solid;
  /* border-image: linear-gradient(135deg, #9c7397, rgba(156, 115, 151, 0.15)) 1; */
  border-image: linear-gradient(135deg, #9c7397, #9c7397) 1;
  display: inline-block;
}

.projects-carousel .owl-arrow--prev,
.other-projects-carousel .owl-arrow--prev {
  transform: rotate(-135deg);
}

.projects-carousel .owl-arrow--next,
.other-projects-carousel .owl-arrow--next {
  transform: rotate(45deg);
}

.projects-carousel .owl-nav .owl-prev:hover .owl-arrow,
.projects-carousel .owl-nav .owl-next:hover .owl-arrow,
.other-projects-carousel .owl-nav .owl-prev:hover .owl-arrow,
.other-projects-carousel .owl-nav .owl-next:hover .owl-arrow {
  opacity: 0.7;
}

.projects-carousel .owl-nav.disabled {
  display: flex !important;
}

/* News (Home Page) */
.news-section {
  position: relative;
  padding: 5rem 0;
  text-align: center;
}

.news-section__title {
  color: #427cbe;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 5rem;
}

.news-carousel-wrap {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
}

.news-carousel {
  direction: rtl;
}

.news-card {
  background: linear-gradient(115.72deg,
      rgba(62, 204, 204, 0.6) 4.45%,
      rgba(62, 204, 204, 0.1) 97.63%);
  border-radius: 1.5rem;
  overflow: hidden;
  text-align: right;
  transform: scale(0.82);
  opacity: 0.75;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;

  /* New Design */
  background: linear-gradient(135deg, rgba(66, 124, 190, 0.05) 0%, rgba(62, 204, 204, 0.04) 100%);
  border: 1px solid #e4eef5;
  /*border-bottom: 4px solid #427cbe;*/
}

.news-card__media {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  padding: 0.75rem;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
}

.news-card__body {
  padding: 1.25rem 1.25rem 2.5rem;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-card__title {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #427cbe;
  margin: 0 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #427cbe;
  width: 100%;
  text-align: center;
}

.news-card__desc {
  font-size: 0.9rem;
  margin: 0;
  color: #427cbe;
  text-align: justify;
}

.owl-item.center .news-card {
  transform: scale(1);
  opacity: 1;
  flex-direction: row;
  /*border-bottom-width: 6px;*/
  background: linear-gradient(135deg, rgba(66, 124, 190, 0.08) 0%, rgba(62, 204, 204, 0.07) 100%);
}

.owl-item.center .news-card__media {
  order: 1;
  width: 42%;
  aspect-ratio: unset;
  height: auto;
}

.owl-item.center .news-card__body {
  order: 2;
  width: 58%;
  padding: 2rem 0.25rem 2rem 0.95rem;
}

.owl-item.center .news-card__title {
  font-size: 1.4rem;
  text-align: right;
}

.owl-item.center .news-card__desc {
  font-size: 1rem;
}

.news-card__btn {
  background: #427cbe;
  color: #ffffff;
  border-radius: 5rem;
  padding: 0.25rem 1.5rem;
  text-decoration: none;
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 1rem;
}

.news-card__dots {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  display: flex;
  gap: 3px;
  padding: 6px;
  margin: -6px;
}

.news-card__dots span {
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: linear-gradient(115.72deg,
      rgba(62, 204, 204, 0.3) 4.45%,
      rgba(62, 204, 204, 0) 97.63%);
}

.news-carousel .owl-nav,
.other-news-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: -6px;
  right: -6px;
  display: flex !important;
  flex-direction: row;
  direction: ltr;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 4;
  margin: 0;
}

.news-carousel .owl-nav .owl-prev,
.news-carousel .owl-nav .owl-next,
.other-news-carousel .owl-nav .owl-prev,
.other-news-carousel .owl-nav .owl-next {
  pointer-events: all;
  background: transparent !important;
  border: none;
  width: 36px;
  height: 36px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0;
  opacity: 1 !important;
}

.news-carousel .owl-arrow,
.other-news-carousel .owl-arrow {
  width: 20px;
  height: 20px;
  border-top: 2.5px solid;
  border-right: 2.5px solid;
  /* border-image: linear-gradient(135deg, #3ecccc, rgba(47, 111, 168, 0.15)) 1; */
  border-image: linear-gradient(135deg, #7aa3d1 , #7aa3d1) 1;
  display: inline-block;
}

.news-carousel .owl-arrow--prev,
.other-news-carousel .owl-arrow--prev {
  transform: rotate(-135deg);
}

.news-carousel .owl-arrow--next,
.other-news-carousel .owl-arrow--next {
  transform: rotate(45deg);
}

.news-carousel .owl-nav .owl-prev:hover .owl-arrow,
.news-carousel .owl-nav .owl-next:hover .owl-arrow,
.other-news-carousel .owl-nav .owl-prev:hover .owl-arrow,
.other-news-carousel .owl-nav .owl-next:hover .owl-arrow {
  opacity: 0.7;
}

.news-carousel .owl-nav.disabled {
  display: flex !important;
}

/* Statistics */
.stats-section {
  background: #fcf7f0;
  box-shadow: 0px 0px 74px rgba(0, 0, 0, 0.25);
  padding: 7rem 0;
  position: relative;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem 1.5rem;
}

.stat-item {
  flex: 0 0 auto;
  width: calc(20% - 1.5rem);
  min-width: 140px;
  text-align: center;
}

.stat-item__number,
.project-stats__number {
  font-size: 2.75rem;
  font-weight: 800;
  color: #6d3a64;
  margin-bottom: 0.4rem;
  direction: ltr;
  unicode-bidi: isolate;
}

.stat-item__label,
.project-stat__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 1rem;
  color: #6d3a64;
  font-weight: 500;
}

.stat-item__label i,
.project-stat__label i {
  font-size: 0.95rem;
  color: #6d3a64;
}

/* Partners */
.partners-section {
  position: relative;
  padding: 7rem 0;
  text-align: center;
}

.partners-section__title {
  color: #6d3a64;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 5rem;
}

.partners-carousel .item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-carousel.owl-carousel .owl-item img {
  width: 60%;
  margin: 0 auto;
}

/* Testimonials */
.testims-section {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  background: #efefef;
  box-shadow: 0px 0px 74px rgba(0, 0, 0, 0.25);
  border-radius: 3rem;
  z-index: 1;
}

.testims-section__title {
  color: #6d3a64;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 5rem;
}

.quote-card {
  margin: auto;
  text-align: center;
  padding: 0 2rem;
}

/* .quote-card__icon {
  width: 2.5rem;
  margin: 0 auto 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.quote-card__icon i {
  color: #6d3568;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* .quote-card__icon svg {
  width: 100%;
  height: auto;
  display: block;
} */

.quote-card__text {
  border-top: 2px solid #6d3a64;
  padding-top: 0.7rem;
  color: #6d3a64;
  text-align: justify;
}

.quote-card__name {
  padding-top: 0.5rem;
  color: #6d3a64;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
}

/* Contact */
.contact-section {
  position: relative;
  padding: 5rem 0 3rem;
  margin-bottom: -9.5rem;
  overflow: hidden;
}

.contact-section__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-section__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-section__map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(68, 68, 68, 0.4);
  pointer-events: none;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-card,
.project-form,
.job-form {
  position: relative;
  background: #ffffff;
  border-radius: 2rem;
  box-shadow: 0px 0px 74px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.contact-card__info {
  flex: 1 1 20%;
  background: #ffffff;
  padding: 2rem;
  text-align: right;
}

.contact-card__title,
.project-form__title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #6d3a64;
  margin: 0 0 1rem;
}

.project-form__title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #427cbe;
  margin: 0 0 1rem;
}

.contact-card__desc {
  color: #6d3a64;
  margin: 0;
}

.contact-card__form {
  flex: 1 1 68%;
  padding: 2rem;
}

.project-form,
.job-form,
.forminator-custom-form {
  padding: 2rem;
}

.contact-card__form .forminator-row,
.project-form .forminator-row,
.job-form .forminator-row,
.forminator-custom-form .forminator-row {
  margin-bottom: 0.25rem !important;
}

.contact-card__form label,
.project-form label,
.job-form label,
.forminator-custom-form label,
.forminator-custom-form .forminator-label {
  color: #6d3a64;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}

.forminator-custom-form input,
.forminator-custom-form select,
.forminator-custom-form textarea,
.forminator-custom-form .forminator-select {
  border-radius: 0.6rem !important;
  background: #ffffff !important;
  padding: 0.25rem 0.5rem;
  color: #6d3a64 !important;
  font-size: 0.9rem !important;
}

.forminator-custom-form span.select2-selection.select2-selection--single {
  background: #ffffff !important;
}

.forminator-custom-form .forminator-radio-bullet,
.forminator-custom-form .forminator-checkbox-box {
  background: #ffffff !important;
  border-radius: .35rem !important;
}

.contact-card__form input,
.contact-card__form select,
.contact-card__form textarea,
.contact-card__form .forminator-select,
.contact-card__form .forminator-radio-bullet,
.contact-card__form .forminator-checkbox-box,
.project-form input,
.project-form select,
.project-form textarea,
.project-form .forminator-select,
.project-form .forminator-radio-bullet,
.project-form .forminator-checkbox-box,
.job-form input,
.job-form select,
.job-form textarea,
.job-form .forminator-select,
.job-form .forminator-radio-bullet,
.job-form .forminator-checkbox-box,
.join-form input,
.join-form select,
.join-form textarea,
.join-form .forminator-select,
.join-form .forminator-radio-bullet,
.join-form .forminator-checkbox-box {
  background: linear-gradient(115.72deg,
      rgba(217, 217, 217, 0.3) 4.45%,
      rgba(217, 217, 217, 0.6) 97.63%) !important;
}


.contact-card__form span.select2-selection.select2-selection--single,
.project-form span.select2-selection.select2-selection--single,
.job-form span.select2-selection.select2-selection--single,
.join-form span.select2-selection.select2-selection--single {
  background: linear-gradient(115.72deg,
      rgba(217, 217, 217, 0.3) 4.45%,
      rgba(217, 217, 217, 0.6) 97.63%) !important;
}

.forminator-custom-form .forminator-radio.forminator-radio-inline,
.forminator-custom-form .forminator-checkbox.forminator-checkbox-inline {
  margin-right: 0 !important;
  margin-left: 20px !important;
}

.contact-card__form .select2-selection__rendered,
.project-form .select2-selection__rendered,
.job-form .select2-selection__rendered,
.forminator-custom-form .select2-selection__rendered {
  color: #6d3a64 !important;
  font-size: 0.9rem !important;
}

.forminator-custom-form .forminator-button.forminator-button-upload {
  border-radius: 0.6rem !important;
  color: #6d3a64 !important;
  background: #ffffff !important;
}

.contact-card__form .forminator-button.forminator-button-upload,
.project-form .forminator-button.forminator-button-upload,
.job-form .forminator-button.forminator-button-upload,
.join-form .forminator-button.forminator-button-upload {
  background: linear-gradient(115.72deg,
      rgba(217, 217, 217, 0.3) 4.45%,
      rgba(217, 217, 217, 0.6) 97.63%) !important;
}

.contact-card__form .forminator-button-submit,
.project-form .forminator-button-submit,
.job-form .forminator-button-submit,
.forminator-custom-form .forminator-button-submit {
  margin-top: 1rem !important;
  background: #6d3a64 !important;
  font-weight: 600 !important;
  color: #ffffff;
  border-radius: 1rem !important;
  border: none !important;
  padding: 0.5rem 2rem !important;
  width: 100% !important;
}

.project-form .forminator-button-submit {
  background: #427cbe !important;
}

/* Footer  */
.site-footer {
  position: relative;
  background-color: #6D3A64;
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 2.5rem;
}

.site-footer__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
}

.site-footer__pattern svg {
  display: block;
  width: 100%;
  height: 100%;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.site-footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  text-align: right;
}

.footer-col--logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-logo {
  width: 10rem;
}

.footer-col__title {
  display: inline-block;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #3ECCCC;
}

.footer-contact-list,
.footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact-list a,
.footer-contact-list span,
.footer-links-list a {
  color: #ffffff;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.footer-contact-list p,
.footer-links-list a {
  /* text-decoration: underline;
  text-underline-offset: 4px; */
  margin-bottom: 0;
}

.footer-contact-list i {
  color: #3ECCCC;
  text-decoration: none;
  font-size: 0.9rem;
}

.site-footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 3rem 0 2rem;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  order: 2;
}

.footer-social__icon {
  width: 2rem;
  height: 2rem;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease;
  text-decoration: none;
}

.footer-social__icon:hover {
  background: rgba(255, 255, 255, 0.25);
}

.footer-social__icon i {
  color: #6D3A64;
  font-size: 1rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  order: 1;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  order: 0;
}

.footer-rating__label {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-rating .rmp-rating-widget .rmp-icon--ratings {
  font-size: 1.5rem;
  /* color: rgba(255, 255, 255, .5); */
}

.footer-rating .rmp-rating-widget .rmp-rating-widget__results {
  display: none;
}

/* Pages */
header.page {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10rem 0 1.5rem;
  /* background-color: #efefef; */
}

header.page .title {
  color: #6D3A64;
  font-weight: 700;
  margin-bottom: 0;
}

.page-section {
  padding: 3rem 0;
  background-color: #efefef;
  border-top: 1px solid rgba(109, 58, 100, 0.1);
}

.page-section {
  color: #6D3A64;
}

.page-section h1,
.page-section h2,
.page-section h3,
.page-section h4,
.page-section h5 {
  font-weight: 600;
}

.section-title {
  text-decoration: underline;
  text-underline-offset: .5rem;
  margin-bottom: 3.5rem;
  color: #6d3568;
  font-size: 1.25rem;
}

/* Projects Page & News Page */
.projects-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.projects-page-section .project-card,
.news-page-section .news-card,
.other-projects-carousel .project-card,
.other-news-carousel .news-card {
  transform: scale(1);
  opacity: 1;
}

.project-single,
.news-single {
  padding: 15rem 0 4rem;
}

.project-single__grid,
.news-single__top {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  align-items: start;
}

.news-single__top {
  grid-template-columns: 6fr 6fr;
  align-items: center;
}

.project-single__media {
  position: sticky;
  top: 2rem;
}

.project-single__media,
.project-single__content {
  min-width: 0;
}

.project-gallery {
  border-radius: 1.5rem;
  overflow: hidden;
}

.news-gallery {
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  overflow: hidden;
  margin-bottom: -2rem;
}

.project-gallery__slide img,
.news-gallery__slide img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  display: block;
}

.project-gallery .owl-dots,
.news-gallery .owl-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.news-gallery .owl-dots {
  bottom: 2.75rem;
}

.project-gallery .owl-dot span,
.news-gallery .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.project-gallery .owl-dot.active span,
.news-gallery .owl-dot.active span {
  background: #ffffff;
}

.project-single__content,
.news-single__info {
  text-align: right;
}

.project-single__title,
.news-single__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #6d3568;
  margin: 0 0 0.5rem;
}

.news-single__title {
  color: #3b7dcc;
}

.project-single__date,
.news-single__date {
  color: #3ECCCC;
  font-size: 0.9rem;
  margin: 0 0 2rem;
  direction: ltr;
  unicode-bidi: isolate;
}

.project-single__body h3,
.project-single__section-title {
  color: #6d3568;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 1.75rem 0 0.5rem;
}

.project-single__body h3:first-child {
  margin-top: 0;
}

.project-single__body p {
  color: #4a4a4a;
  line-height: 1.9;
  margin: 0 0 1rem;
}

.news-single__body {
  background: #EFEFEF;
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: right;
  color: #3b7dcc;
  line-height: 2;
  font-size: 1rem;
  z-index: 1;
  position: relative;
}

.news-single__body p {
  margin: 0 0 1rem;
}


.project-single__bottom {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 3rem;
  align-items: start;
}

.project-stats,
.project-reports {
  margin: 0;
  padding: 0;
  border: 0;
}

.project-stats {
  margin-top: 2.5rem;
}

.project-stats__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1rem;
}

.project-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f7f4f6;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  min-width: 120px;
  flex: 1 1 120px;
}

.project-stats__number {
  font-size: 2rem;
  margin-bottom: 0;
}

.project-reports {
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.project-reports__item {
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 0.9rem 1.25rem;
  transition: 0.2s ease;
}

.project-reports__item p {
  font-size: 1.1rem;
  margin-bottom: 1.35rem;
}

.project-reports__item img {
  width: 3rem;
}

.project-reports__item:hover {
  opacity: .7;
}

.project-reports__title {
  color: #6d3568;
  font-weight: 700;
  font-size: 0.95rem;
}

.projects-more-section,
.news-more-section {
  padding: 5rem 0;
  background: #efefef;
}

.other-projects-carousel-wrap,
.other-news-carousel-wrap {
  position: relative;
  padding: 0 3rem;
}


.other-projects-carousel .owl-nav,
.other-news-carousel .owl-nav {
  left: -3rem;
  right: -3rem;
}

.other-projects-carousel .owl-nav .owl-prev,
.other-projects-carousel .owl-nav .owl-next,
.other-news-carousel .owl-nav .owl-prev,
.other-news-carousel .owl-nav .owl-next {
  pointer-events: all;
  background: transparent !important;
  border: none;
  width: 36px;
  height: 36px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.news-single__media,
.news-single__info {
  min-width: 0;
}

/* Gallery */
.page-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.page-gallery__item {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: none;
  border-radius: 1.25rem;
  padding: 0;
  cursor: pointer;
  background: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

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

.page-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 90, 168, 0.35);
  transition: all 0.2s ease;
  pointer-events: none;
}

.page-gallery__item:hover .page-gallery__overlay {
  background: rgba(23, 66, 162, 0.15);
}

.page-gallery__lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9999;
  padding: 2rem;
}

.page-gallery__lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.page-gallery__lightbox-body {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  text-align: center;
}

.page-gallery__lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 1rem;
  display: block;
  margin: 0 auto;
}

.page-gallery__lightbox-caption {
  color: #ffffff;
  margin-top: 1rem;
  font-size: 1rem;
}

.page-gallery__close {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}

.page-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.page-gallery__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.page-gallery__nav--prev {
  right: 1.5rem;
}

.page-gallery__nav--next {
  left: 1.5rem;
}

.page-gallery__arrow {
  width: 14px;
  height: 14px;
  border-top: 2.5px solid #ffffff;
  border-right: 2.5px solid #ffffff;
  display: inline-block;
}

.page-gallery__nav--prev .page-gallery__arrow {
  transform: rotate(45deg);
}

.page-gallery__nav--next .page-gallery__arrow {
  transform: rotate(-135deg);
}

/* Live */
.live-stream__player {
  width: 100%;
}

.live-stream__player iframe {
  width: 100%;
  border: 0;
  border-radius: 1.5rem;
  display: block;
}

/* Career & Governance & Research & Members */
.jobs-list__grid,
.governance__grid,
.files__grid,
.members__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.governance__section {
  margin-bottom: 3.5rem;
}

.job-card,
.governance-card,
.file-card,
.member-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;

  gap: 16px;
  padding: .25rem;
  background: #ffffff;
  border-radius: 5rem;
}


.job-card:hover,
.governance-card:hover,
.file-card:hover {
  opacity: .7;
}

.job-card__content,
.governance-card__content,
.file-card__content,
.member-card__content {
  flex: 1;
}

.job-card__title,
.file-card__title,
.member-card__name,
.governance-card__title {
  margin: 0;
  color: #427cbe;
  font-size: 1.15rem;
  font-weight: 500 !important;
}

.executive .member-card__role,
.executive .member-card__contact {
  margin: 0;
  font-size: .8rem;
}

.job-card__status,
.file-card__date,
.member-card__role,
.member-card__contact {
  margin-top: .4rem;
  margin-bottom: 0;
  color: #3ECCCC;
}

.file-card__date,
.member-card__contact {
  font-size: .8rem;
}

.job-card__icon,
.governance-card__icon,
.file-card__icon,
.member-card__icon {
  /* flex-shrink: 0;
  margin-left: 1rem; */

  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #2f6db3;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.job-card__icon i,
.governance-card__icon i,
.file-card__icon i,
.member-card__icon i {
  font-size: 1.75rem;
}

/* .job-card__icon img,
.governance-card__icon img,
.file-card__icon img,
.member-card__icon img {
  width: 4rem;
  height: auto;
  display: block;
} 
  
.governance-card__icon img {
  width: 1.65rem;
}

.file-card__icon img {
  width: 3rem;
} */

.job-card--disabled {
  cursor: default;
  opacity: .7;
}

.job-card__status.is-active {
  color: #3ECCCC;
}

.job-card__status.is-closed {
  color: #999;
}

/* Q & A & Gallery Folders */
.faq__list, .gallery__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item, .gallery__item {
  border: 1px solid #E5E5E5;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
}

.faq__question, .gallery__title {
  width: 100%;
  padding: 1.5rem 2rem;
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: right;
  font-size: 1.15rem;
  font-weight: 700;
  color: #6d3568;
}

.faq__question-text, .gallery__title-text {
  flex: 1;
}

.faq__icon, .gallery__icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after,
.gallery__icon::before,
.gallery__icon::after {
  content: "";
  position: absolute;
  background: #6d3568;
  transition: .25s;
}

.faq__icon::before, 
.gallery__icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

.faq__icon::after,
.gallery__icon::after {
  width: 2px;
  height: 18px;
  left: 8px;
  top: 0;
}

.faq__item.is-open .faq__icon::after, .gallery__item.is-open .gallery__icon::after {
  transform: scaleY(0);
}

.faq__answer, .gallery__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq__answer-inner, .gallery__content-inner {
  padding: 0 2rem 2rem;
  color: #737273;
  line-height: 1.9;
}

.gallery__content-inner {
  padding: 0 1rem 2rem;
}

.faq__answer p:last-child {
  margin-bottom: 0;
}

/* General Assembly & Board & Executive */
.general-assembly .section-title,
.board .section-title,
.executive .section-title {
  color: #427cbe;
}

.general-assembly section,
.board section,
.executive section {
  margin-bottom: 5rem;
}

.join-btn {
  padding: 0.25rem 1.5rem;
  text-decoration: none;
  color: #ffffff;
  border-radius: 5rem;
  background-color: #427cbe;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.general-assembly .modal-body h4 {
  padding: 2rem 2rem 1rem;
  color: #6d3568;
  text-align: center;
}

.general-assembly .join-form {
  padding: 2rem;
}


.general-assembly p:not(.member-card__role) {
  color: #427cbe;
  font-size: 1.15rem;
}

@media (max-width: 575.98px) {
  .bank-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .bank-card__logo {
    justify-content: center;
  }

  .bank-card__info .bank-card__number,
  .bank-card__iban {
    text-align: center;
  }

  .about-cards {
    overflow: hidden;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }


  /* .about-card-glow {
    inset: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
  } */

  .news-card__media img {
    height: 12rem;
  }

  .stats-section {
    padding: 2.5rem 0;
  }

  .stat-item {
    width: calc(50% - 1.5rem);
  }

  .stat-item__number {
    font-size: 2.1rem;
  }

  .stat-item__label {
    font-size: 0.9rem;
  }

  .contact-section {
    padding: 2.5rem 0;
    margin-bottom: -5.5rem;
  }

  .contact-card {
    border-radius: 1.25rem;
  }

  .contact-card__info,
  .contact-card__form {
    padding: 1.75rem 1.5rem;
  }

  .contact-card__title {
    font-size: 1.5rem;
  }

  .project-single,
  .news-single {
    padding: 10rem 0 5rem;
  }

  .project-single__title,
  .news-single__title {
    font-size: 1.6rem;
  }

  .news-single__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .news-single__info {
    text-align: center;
  }

  .news-single__body {
    padding: 1.5rem;
  }

  .page-gallery__nav {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 768px) {
  .custom-navbar {
    margin: 0 1rem;
  }

  .navbar-collapse {
    margin-top: 16px;
    border-top: 1px solid #eeeef3;
    padding-top: 12px;
  }

  .custom-navbar .navbar-nav {
    width: 100%;
    align-items: stretch !important;
    gap: 4px !important;
    padding: 0;
  }

  .custom-navbar .nav-link {
    padding: 10px 8px;
    border-radius: 10px;
  }

  .custom-navbar .nav-link:hover,
  .custom-navbar .nav-link.active-link {
    background: #f4f4fa;
  }

  .custom-navbar .dropdown-menu {
    border: none;
    background: #f9f9fc;
    box-shadow: none;
    padding: 4px 12px;
    margin-right: 12px;
  }

  .contact-link {
    background: #6d3a64;
    color: #ffffff !important;
    border-radius: 10px;
    text-align: center;
    margin-top: 6px;
  }

  .social-sidebar {
    left: 15px;
    gap: 10px;
  }

  .social-sidebar__icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .social-sidebar__icon i {
    font-size: 0.95rem;
  }

  .donate-sticky-btn {
    bottom: 16px;
    right: 16px;
    padding: 5px;
  }

  .donate-sticky-btn .icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .donate-sticky-btn .icon i {
    font-size: 0.8rem;
  }

  .donate-sticky-btn .text {
    font-size: 0.8rem;
  }

  .projects-section {
    padding: 3rem 0;
  }

  .projects-section__title {
    font-size: 1.5rem;
  }

  .project-card,
  .projects-carousel-wrap .owl-item.center .project-card {
    transform: scale(0.82);
    opacity: 1;
    min-height: auto;
  }

  .news-section {
    padding: 3rem 0;
  }

  .news-section__title {
    font-size: 1.5rem;
  }

  .news-card,
  .owl-item.center .news-card {
    transform: scale(0.82);
    opacity: 1;
    min-height: auto;
    flex-direction: column;
  }

  .owl-item.center .news-card__media,
  .owl-item.center .news-card__body {
    width: 100%;
  }

  .owl-item.center .news-card__body {
    padding: 2rem 1rem;
  }

  .site-footer {
    padding-top: 4rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-col--logo {
    justify-content: center;
    order: -1;
  }

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-rating {
    order: 1;
  }

  .footer-social {
    order: 2;
  }

  .footer-copyright {
    order: 3;
  }

  .project-single__media {
    order: 1;
  }

  .project-single__content {
    order: 2;
  }
}

@media (max-width: 991.98px) {

  .projects-carousel .owl-nav,
  .news-carousel .owl-nav {
    left: 0;
    right: 0;
  }

  .stat-item {
    width: calc(33.333% - 1.5rem);
  }

  .contact-card {
    flex-direction: column;
  }

  .contact-card__info,
  .contact-card__form {
    flex: 1 1 100%;
  }

  .project-single__grid {
    grid-template-columns: 1fr;
  }

  .project-single__bottom {
    grid-template-columns: 1fr;
  }

  .project-single__media {
    position: static;
  }

  .project-gallery__slide img {
    height: 280px;
  }
}