/*! 
    Version: 1.8
*/
html,

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Almarai1', sans-serif;
  font-size: 62.5%;
  font-size: 10px;
  height: 100%;
}
@font-face {
  font-family: 'Almarai1';
  src: url('fonts/Almaraithin.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Almarai1';
  src: url('fonts/Almaraiextrabold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Almarai1';
  src: url('fonts/Almaraibold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Almarai1';
  src: url('fonts/Almarai.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*--------------------------------------------------------------
# Nav Sections
--------------------------------------------------------------*/
.nav {
  width: 100%;
  height: 65px;
  top: 00px;
  line-height: 65px;
  text-align: center;
  z-index: 10;
}
.nav div.logo {
  float: left;
  max-width: 75px;
  max-height: 75px;
}
.nav div.logo a {
  text-decoration: none;
  font-size: 2.5rem;
}
@media (hover: hover) {
  .nav div.logo a:hover {
    color: #25a8b9;
  }
}
.nav div.main_list {
  height: 75px;
  float: right;
}
.nav div.main_list ul {
  width: 100%;
  height: 75px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav div.main_list ul li {
  width: auto;
  height: 75px;
  padding: 0;
  padding-right: 3rem;
}
.nav div.main_list ul li a {
  text-decoration: none;
  color: white;
  line-height: 75px;
  font-size: 2.4rem;
}
@media (hover: hover) {
  .nav div.main_list ul li a:hover {
    color: #25a8b9 !important;
  }
}

.btn {
  border: none;
  cursor: pointer;
  border-radius: 0px;
  background-color: #25a8b9;
  color: #1b1b1b;
  position: relative;
  /* overflow: hidden; */
}

.btn:hover {
  color: #fff;
}
.btn::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -7px;
  /* background: red; */
  width: 25%;
  height: 60%;
  border-top: solid rgba(37, 168, 185, 1) 3px;
  border-left: solid rgba(37, 168, 185, 1) 3px;
  transition: 0.5s;
}

.btn::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: -7px;
  width: 25%;
  height: 60%;
  border-bottom: solid rgba(37, 168, 185, 1) 3px;
  border-right: solid rgba(37, 168, 185, 1) 3px;
  transition: 0.5s;
}

.btn:hover::after,
.btn:hover::before {
  transition: 0.5s;
  width: 100%;
  height: 100%;
}
/*--------------------------------------------------------------
# BurgerMenu Sections
--------------------------------------------------------------*/
.navcontainer {
  cursor: pointer;
  stroke: #fff;
}
svg {
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.active svg {
  transform: rotate(90deg);
}
path {
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
path:nth-child(1) {
  transform-origin: 36% 40%;
}
path:nth-child(2) {
  stroke-dasharray: 29 299;
}
path:nth-child(3) {
  transform-origin: 35% 63%;
}
path:nth-child(4) {
  stroke-dasharray: 29 299;
}
path:nth-child(5) {
  transform-origin: 61% 52%;
}
path:nth-child(6) {
  transform-origin: 62% 52%;
}
.active path:nth-child(1) {
  transform: translateX(9px) translateY(1px) rotate(45deg);
}
.active path:nth-child(2) {
  stroke-dasharray: 225 299;
  stroke-dashoffset: -72px;
}
.active path:nth-child(3) {
  transform: translateX(9px) translateY(1px) rotate(-45deg);
}
.active path:nth-child(4) {
  stroke-dasharray: 225 299;
  stroke-dashoffset: -72px;
}
.active path:nth-child(5) {
  transform: translateX(9px) translateY(1px) rotate(-45deg);
}
.active path:nth-child(6) {
  transform: translateX(9px) translateY(1px) rotate(45deg);
}
@media (hover: hover) {
  .navcontainer:hover {
    stroke: #25a8b9 !important;
  }
}

/*--------------------------------------------------------------
# Hero Sections
--------------------------------------------------------------*/
.headerimg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(https://safj.org/wp-content/uploads/2025/06/hero-image.jpg);
  background-size: cover;
  position: relative;
  background-position: center center;
  height: 100%;
}
.nav {
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.line-one h1 {
	font-size:6vmax;
}

@media screen and (min-width: 768px) {
  .navTrigger {
    display: none;
  }
}

@media screen and (max-width: 768px) {

  .navcontainer {
    display: block;
  }
  .nav div.logo {
    margin-left: 15px;
  }
  .nav div.main_list {
    width: 100%;
    height: 0;
    overflow: hidden;
  }
  .nav div.show_list {
    height: auto;
    display: none;
  }
  .nav div.main_list ul {
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #ffffff;
    background-position: center top;
  }
  .nav div.main_list ul li {
    width: 100%;
    text-align: right;
  }
  .nav div.main_list ul li a {
    text-align: center;
    width: 100%;
    color: black;
    font-size: 3rem;
    padding: 20px;
  }
  .nav div.media_button {
    display: block;
  }
}
.navTrigger {
  width: 75px;
  height: 75px;
  margin: auto;
  position: absolute;
  right: 30px;
  transform-origin: center;
}
.affix {
  padding-top: 15px;
  margin: 0;
  z-index: 999;
}
.backcover {
  background-color: #ffffff;
  border-radius: 30px;
}
.nav.affix div.main_list ul li a {
  color: #1b1b1b; 
}

.wrapper {
  position: relative;
  height: 100%;
}
.blackcolor {
  stroke: #0d0c0c !important;
}
.isNavOpen {
  overflow: hidden;
}
.full-height {
  height: 100%;
}
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.line-one-wrapper {
  position: relative;
}
.line-one {
  text-align: center;
}
.line-two {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10em;
  font-size: 1.2em;
}
a.herobutton {
  padding: 15px 60px;
  font-size: 2vmax;
}
/*--------------------------------------------------------------
# Donation Sections
--------------------------------------------------------------*/
#donation.section {
  padding: 60px 0;
  height: 600px;
}
.donationimage {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(https://safj.org/wp-content/uploads/2025/06/donationbackground-1.jpg);
  background-size: cover;
  position: relative;
  background-position: center center;
  background-clip: content-box;
  height: 100%;
  z-index: 111;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 80px 0px 80px 0px;
}
.donation-center{
	position: unset !important;
	align-content:center;
	align-items:center;
	z-index:99;
}
.donation-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
#abouttext .section {
  padding: 60px 0;
}
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);

  scroll-margin-top: 100px;
  overflow: clip;
}

.section-bg {
  background-color: transparent;
  padding: 160px 0;
  position: relative;
}

.section-bg:before {
  content: "";
  background-color: var(--background-color);
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

.section-bg .container {
  position: relative;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

.dark-background {
  --background-color: #1b1b1b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #353535;
  --contrast-color: #ffffff;
}
@keyframes infiniteLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-100px * 10), 0, 0);
  }
}
.brandsCarousel {
  scroll-margin-top: 100px;
  padding-top: 30px;
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  position: relative;
}
#about {
  scroll-margin-top: 65px;
}
#contact-us {
  scroll-margin-top: 65px;
}

.brandLogo {
  max-height: 150px; /* or whatever max you want */
  margin: 0 auto; /* center images inside their columns */
  display: block;
  padding: 10px;
}
html {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: #25a8b9;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 4vh;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}
.stats .col-lg-3,
.stats .col-md-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats .stats-item {
  flex-grow: 1;
  width: 100%;
}

.heading-section {
  font-size: 4em;
  font-weight: 600;
}

@media (min-width: 769px) {
  .info-side {
    margin-right: -45px;
  }
}
@media (max-width: 768px) {
  .info-side {
    margin: 0px 20px 20px 20px;
  }
}
/*--------------------------------------------------------------
# Contact Sections
--------------------------------------------------------------*/
.cardcontact {
  background: white;
  border-radius: 1px;
  transition: border-radius 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.shadowcontact {
  background: #1b1b1bed;
  box-shadow: inset 0 -3em 3em rgba(0, 0, 0, 0.1),
    0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
}

.cardcontact1 {
  background: #1b1b1bed;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  height: 200px;
  background: #25a8b9;
  color: white;
  padding: 20px;
  z-index: 99;
  border-radius: 1px;
  transition: border-radius 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}
.wpforms-field-label {
  color: white !important;
}

.info-item i {
  color: var(--accent-color);
  font-size: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.info-item h1 {
  font-size: 3vh;
  font-weight: 700;
  margin: 10px 0;
}

.info-item p {
  font-size: 2vh;
  padding: 0;
  margin-bottom: 0;
}
.contact-side {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .contact-side {
    margin-top: 0px;
  }
}
/*--------------------------------------------------------------
# Footer Sections
--------------------------------------------------------------*/
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  min-height: 100px;
  max-height: 150px;
}

.content {
  position: relative;
  height: 20vh;
  text-align: center;
  background-color: white;
}

@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
  .content {
    height: 30vh;
  }
}
.wavecontainer {
  margin: 0px;
  width: 100%;
}
.wpforms-submit{background-color:#25a8b9 !important;}
