h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Volkhov", serif;
  color: #181e4b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #5e6282;
  background-color: white;
  margin: 0;
  padding: 0;
}

.button__group {
  display: flex;
  gap: 52px;
}
@media screen and (max-width: 768px) {
  .button__group {
    flex-direction: column;
    gap: 32px;
  }
}

.button {
  display: inline-block;
  padding: 0.75em 2em;
  background: #f1a501;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-weight: 500;
  border-radius: 8px;
  box-shadow: 0 20px 35px -15px rgba(241, 165, 1, 0.3);
  transform: scale(1);
  transform-origin: center;
  text-align: center;
}
.button:hover {
  background-color: #e79e01;
  color: white;
  transform: scale(1.02);
}
.button.button--secondary {
  background: white;
  color: #f1a501;
}
.button.button--secondary:hover {
  background-color: #fafafa;
  color: #f1a501;
}

.section__base {
  padding: 120px 0;
  overflow: hidden;
}

.hero {
  display: flex;
  align-items: center;
  position: relative;
  padding: 180px 0 120px 0;
}
.hero .hero__bg {
  width: 50%;
  height: 80%;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../img/hero__decore.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero .row {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .hero .row {
    flex-wrap: wrap;
  }
}
.hero .hero__subtitle {
  font-family: "Poppins", sans-serif;
  color: #df6951;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.25rem;
}
.hero .hero__title {
  font-family: "Volkhov", serif;
  font-size: 4.5rem;
  color: #181e4b;
  line-height: 1.3;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .hero .hero__title {
    font-size: 3.25rem;
  }
}
.hero .hero__title span {
  font-family: "Volkhov", serif;
  position: relative;
}
.hero .hero__title span:after {
  content: "";
  width: 100%;
  height: 30px;
  position: absolute;
  bottom: -20px;
  left: 0;
  background-image: url("../img/decore.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.hero p {
  color: #5e6282;
  font-size: 1.25rem;
}

header {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0);
}
@media screen and (max-width: 768px) {
  header {
    padding: 12px;
  }
}
header.is-fixed {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
header.is-fixed .header__inner .header__logo img {
  width: 60px;
}
@media screen and (min-width: 1096px) {
  header .nav__toggle {
    display: none;
  }
}
header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header__inner .header__logo img {
  width: 80px;
  transition: all 0.3s ease-in-out;
}
header .header__inner .nav {
  display: flex;
  gap: 52px;
  align-items: center;
}
@media screen and (max-width: 1096px) {
  header .header__inner .nav {
    position: fixed;
    bottom: 0;
    top: 0;
    right: 0;
    background: #fff;
    width: 100%;
    padding: 20px;
    z-index: 10;
    max-width: 400px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  }
  header .header__inner .nav:before {
    content: "";
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: all 0.8s ease-in-out;
    pointer-events: none;
    display: none;
  }
}
header .header__inner .nav .nav__item {
  font-size: 1.125rem;
  font-weight: 600;
  color: #5e6282;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
header .header__inner .nav .nav__item:hover {
  color: #f1a501;
}

header.is-open .nav {
  transform: translateX(0);
}
header.is-open .nav:before {
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
}

.nav__toggle {
  position: fixed;
  z-index: 9999;
  top: 32px;
  right: 32px;
  padding: 0;
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

#nav-icon1 {
  width: 40px;
  height: 32px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
#nav-icon1 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #181e4b;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#nav-icon1 span:nth-child(1) {
  top: 0px;
}
#nav-icon1 span:nth-child(2) {
  top: 12px;
}
#nav-icon1 span:nth-child(3) {
  top: 24px;
}

#nav-icon1.open span:nth-child(1) {
  top: 18px;
  transform: rotate(135deg);
}
#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
#nav-icon1.open span:nth-child(3) {
  top: 18px;
  transform: rotate(-135deg);
}

.heading__title h2 {
  font-size: 3.25rem;
  margin: 12px 0 0 0;
}
@media screen and (max-width: 768px) {
  .heading__title h2 {
    font-size: 2.5rem;
  }
}
.heading__title span {
  text-transform: uppercase;
  color: #5e6282;
  font-size: 1.25rem;
  font-weight: 500;
}
.heading__title p {
  max-width: 900px;
  margin: 12px auto 20px auto;
}

.section__presentation {
  text-align: center;
}
.section__presentation .container {
  position: relative;
}
.section__presentation .container:before {
  content: "";
  width: 160px;
  height: 160px;
  position: absolute;
  right: -52px;
  top: -52px;
  background-image: url("../img/cross.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  z-index: 5;
}
.section__presentation .card-xs {
  background: #fafafa;
  border-radius: 12px;
  padding: 20px;
}
.section__presentation .card-xs p {
  text-align: left;
  display: inline-flex;
}
.section__presentation .card-xs p:before {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("../img/tick.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 12px;
  flex-basis: 32px;
}

.section__actions {
  text-align: center;
}
.section__actions .row {
  margin: 52px auto;
}
.section__actions .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 32px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}
.section__actions .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.12);
}
.section__actions p {
  max-width: 900px;
  margin: 0 auto;
}

.section__verse .blockquote__verse {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
  position: relative;
}
.section__verse .blockquote__verse:before {
  content: "";
  width: 72px;
  height: 72px;
  background-image: url("../img/quote.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: -72px;
  transform: translate(-50%, 0);
}
.section__verse .blockquote__verse h2 {
  font-family: "Volkhov", serif;
  font-size: 2.5rem;
  text-align: center;
  font-weight: bold;
}
.section__verse .blockquote__verse span {
  font-size: 1.25rem;
}

.section__ministry .row {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .section__ministry .row {
    flex-wrap: wrap;
  }
}
.section__ministry .ministry__img {
  text-align: center;
  position: relative;
}
.section__ministry .ministry__img img {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section__ministry .ministry__img:after {
  content: "";
  background: #59b1e6;
  width: 500px;
  height: 500px;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
  filter: blur(100px);
  transform: translate(-50%, -50%);
}
.section__ministry .ministry__img:before {
  content: "";
  width: 160px;
  height: 160px;
  position: absolute;
  left: -52px;
  top: -52px;
  background-image: url("../img/cross.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  z-index: 5;
}
.section__ministry .ministry__content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.section__ministry .ministry__content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  padding: 12px;
  background-color: white;
  transition: all 0.3s ease-in-out;
  border-radius: 12px;
  font-size: 1.125rem;
}
.section__ministry .ministry__content ul li:before {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("../img/tick.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 12px;
}
.section__ministry .ministry__content ul li:hover {
  background: #f8f8f8;
}

.section__testimony .swiper {
  height: 300px;
}
.section__testimony .swiper .swiper-slide {
  display: flex;
  align-items: center;
  max-width: 80%;
  width: 100%;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .section__testimony .swiper .swiper-slide {
    margin-left: 0;
    max-width: unset;
  }
}
.section__testimony .swiper .swiper-slide .testimony__card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 35px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.section__testimony .swiper .swiper-slide .testimony__card p {
  text-align: left;
  display: inline-flex;
  margin: 0 0 20px 0;
  padding: 0;
}
.section__testimony .swiper .swiper-slide .testimony__card span {
  font-size: 1.125rem;
  font-weight: 500;
}
.section__testimony .swiper .swiper-pagination .swiper-pagination-bullet {
  background: black;
}
.section__testimony .swiper .swiper__button {
  width: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 32px;
  top: 8px;
  bottom: 0;
  gap: 32px;
  z-index: 50;
}
@media screen and (max-width: 768px) {
  .section__testimony .swiper .swiper__button {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    display: none;
  }
}
.section__testimony .swiper .swiper__button .swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  transform: rotate(270deg);
  color: black;
  width: 32px;
}
.section__testimony .swiper .swiper__button .swiper-button-next:after {
  font-size: 24px;
}
.section__testimony .swiper .swiper__button .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  transform: rotate(-90deg);
  color: black;
  width: 32px;
}
.section__testimony .swiper .swiper__button .swiper-button-prev:after {
  font-size: 24px;
}

.section__about .about__img {
  text-align: center;
  position: relative;
}
.section__about .about__img img {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section__about .about__img:after {
  content: "";
  background: #59b1e6;
  width: 300px;
  height: 300px;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
  filter: blur(100px);
  transform: translate(-50%, -50%);
}
.section__about .about__img:before {
  content: "";
  width: 160px;
  height: 160px;
  position: absolute;
  right: 0px;
  top: 0;
  background-image: url("../img/cross.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
}

.section__donate .section__donate--inner {
  background-color: rgba(223, 215, 249, 0.2);
  border-radius: 52px 20px 20px 20px;
  padding: 52px;
  text-align: center;
  position: relative;
}
.section__donate .section__donate--inner:after {
  content: "";
  width: 160px;
  height: 160px;
  position: absolute;
  bottom: -52px;
  left: -52px;
  background-image: url("../img/cross.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
}
.section__donate .donate__methods {
  display: flex;
  gap: 52px;
  justify-content: center;
  align-items: center;
  margin-top: 52px;
}
@media screen and (max-width: 768px) {
  .section__donate .donate__methods {
    flex-wrap: wrap;
  }
}
.section__donate .donate__methods .donate__methods--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 32px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.02);
}
.section__donate .donate__methods .donate__methods--item img {
  width: 82px;
  height: auto;
}

footer {
  padding: 120px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}
footer:after {
  content: "";
  background: #59b1e6;
  width: 300px;
  height: 300px;
  position: absolute;
  bottom: -100px;
  right: -100px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
  filter: blur(100px);
}
footer .copyright {
  margin-top: 120px;
}
footer .copyright span {
  color: #5e6282;
}
footer .footer__bg {
  width: 80%;
  height: 80%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../img/footer__decore.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  z-index: 1;
}
footer .container {
  position: relative;
  z-index: 2;
}/*# sourceMappingURL=style.css.map */