/* 
---------- 01 TYPOGRAPHY SYSTEM
-Font sizes (px):
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

-Font weights:
default: 400
medium: 500
semi-bold: 600
bold: 700

-Line-heights: 
default: 1
small: 1.05
medium: 1.2
paragraph defualt 1.6
large: 1.8

-Letter spacing:
-0.5px
0.75px

---------- 02 COLORS
primary color: #05735f,

tints: #B4D5CF #fff7e6

shades: #01221C, #056856

accents: #fab005, #eb4d4b

background: #fff7e6 #eee9db #f9f4e8



primary text: #3A514D #343a40 #283734 #212529

secondary text: #62716E #adb5bd #868e96

grays:
#888
#767676
#686868
#555
#333




---------- 03 SHADOWS
0 2.4rem 4.8rem rgba(0, 0, 0, 0.075)


---------- 04 BORDER RADIUS
default: 5px
medium: 3px

---------- 05 WHITE SPACE
Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

 */

/* GLOBAL RESET */
:root {
  --dynamic-top--map-first-half: 0;
  --dynamic-top--map-second-half: 0;
  --dynamic-top--lg-vission: 0;
  --dynamic-top--lg-mission: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* background-color: rgba(127, 238, 255, 0.1); */
}

html {
  /* 9px / 16px * 100 */
  font-size: 56%;
}

/* DEFAULT SETTING */
body {
  font-family: 'Rubik', sans-serif;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 400;
  color: #01221c;
  overflow-x: hidden;
}

p {
  line-height: 1.6;
  color: #3a514d;
}

a {
  text-decoration: none;
  color: #01221c;
}

.card-button__read-more:hover path,
.card-button__share:hover path {
  cursor: pointer;
  fill: #05735f;
}

.user-photo {
  width: 3rem;
  height: 4rem;
  border-radius: 5px;
}

.svg-icon path {
  fill: #ffffff;
  transition: 0.3s fill ease-in-out;
}

.svg-icon:hover path {
  cursor: pointer;
  fill: #fab005;
}

.svg-icon--dark path {
  fill: #01221c;
  transition: 0.3s fill ease-in-out;
}

.svg-icon--dark:hover path {
  cursor: pointer;
  fill: #ffffff;
}

.svg-icon--dark__white-bg:hover path {
  fill: #05735f;
}

.svg-icon--light path {
  cursor: pointer;
  fill: #b4d5cf;
}

.svg-icon--light:hover path {
  cursor: pointer;
  fill: #05735f;
}

.btn-donate--menu path,
.btn--cta path {
  fill: #01221c;
  transition: 0.3s fill ease-in-out;
}

.btn-donate--menu:hover path,
.btn--cta:hover path {
  cursor: pointer;
  fill: #ffffff;
}

.alert {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(-50%);
  z-index: 9999;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 1.6rem 15rem;
  -webkit-box-shadow: 0 2rem 4rem rgb(0, 0, 0, 0.25);
  box-shadow: 0 2rem 4rem rgb(0, 0, 0, 0.25);
}

.alert--success {
  background-color: #05735f;
}

.alert--error {
  background-color: #eb4d4b;
}

.header-hero {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}

.menu {
  padding: 0 3.2rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  height: 8rem;
}

.fixed {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.logo {
  z-index: 2;
}

.nav-open .main-nav {
  margin-right: -15.2rem;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(0);
}

.nav-open .search,
.nav-open .login-button {
  /* margin-right: -19.2rem; */
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(0);
}

.logged-out {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.main-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  flex-direction: column;
  justify-content: left;
  align-items: center;
  transform: translateX(-100%);
  transition: all 1s ease-in-out;
  /* opacity: 0; */
  pointer-events: none;
  visibility: hidden;
}

.main-nav > div {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  justify-content: center;
  margin-top: 12.8rem;
  padding-left: 6.4rem;
  width: 100%;
}

.main-nav__list {
  list-style: none;
}

.main-nav__list-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-nav__list-item a {
  display: flex;
  justify-content: space-between;
  line-height: 3rem;
  font-size: 3rem;
  height: 4.8rem;
  align-items: center;
}

.main-nav__list-item a:link,
.main-nav__list-item a:visited {
  color: #ffffff;
  transition: 0.3s color ease-in-out;
}

.main-nav__list-item a:hover,
.main-nav__list-item a:active,
.main-nav__list-item a.main-nav__link.active-main-link {
  color: #fab005;
}

.menu__toggler {
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 2;
}

.menu__open #group-open-btn .ss,
.menu__open #group-open-btn .ee,
.menu__open #group-open-btn .ww,
.menu__open #group-open-btn .nn {
  transition: all 0.5s ease-in-out;
}

.nav-open .menu__open #group-open-btn .ss {
  transform: scale(0.75) translate(-25px, 15px);
}

.nav-open .menu__open #group-open-btn .ee {
  transform: scale(0.75) translate(10px, 125px);
}

.nav-open .menu__open #group-open-btn .nn {
  transform: scale(0.75) translate(120px, 85px);
}

.nav-open .menu__open #group-open-btn .ww {
  transform: scale(0.75) translate(80px, -20px);
}

.menu__close {
  display: none;
}

/* .menu__other-items__box {
  margin-left: 4.8rem;
} */

.menu__other-items {
  display: flex;
  flex-direction: column;
  gap: 3.4rem;
  align-items: start;
  /* margin: 0 3.2rem; */
}

.menu__other-items .search,
.menu__other-items .login-button {
  background-color: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  transition: 0.3s color ease-in-out;
}

.menu__other-items .search:hover,
.menu__other-items .login-button:hover {
  cursor: pointer;
  color: #fab005;
}

.menu__other-items a {
  color: #ffffff;
  transition: 0.3s color ease-in-out;
}

.menu__other-items a:hover:not(.btn) {
  color: #fab005;
}

.hero-container {
  background-color: rgba(0, 0, 0, 1);
  position: relative;
  height: 95vh;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  padding: 4.8rem 2.4rem;
}

.hero-container .hero-items picture::after {
  content: '';
  position: absolute;
  margin-top: -8rem;
  inset: 0 0 0 0;
  min-width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.hero-container .hero-items picture source,
.hero-container .hero-items picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-container .hero-item {
  position: absolute;
  inset: 0 0 0 0;
}

.hero-item__text-box {
  position: absolute;
  padding: 1.6rem;
  /* top: 50%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.text-box__description {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 500;
  color: #f9f4e8;
  display: inline-block;
}

.hero-btn-link {
  margin-top: 4.8rem;
}

.hero-link-controls {
  position: absolute;
  bottom: 8%;
  z-index: 1;
}

.hero-container .hero-items .hero-item {
  opacity: 0;
  background-color: #000000;
  transition: 0.3s opacity ease-in-out;
  transition-delay: 0.3s;
}

.hero-container .hero-items .hero-item[data-active] {
  opacity: 1;
  transition-delay: 0s;
  z-index: 1;
}

.hero-container
  .hero-items
  .hero-item[data-active]
  .hero-item__text-box
  .text-box__description,
.hero-container
  .hero-items
  .hero-item[data-active]
  .hero-item__text-box
  .heading-primary {
  transform: translateY(-100px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.8s 1s linear 1 forwards;
}

.heading-btm-margin {
  margin-bottom: 1.6rem;
}

.heading-btm-margin--md {
  margin-bottom: 3.2rem;
}

.hero-container
  .hero-items
  .hero-item[data-active]
  .hero-item__text-box
  .text-box__description {
  animation-delay: 0.3s;
}

.hero-container
  .hero-items
  .hero-item[data-active]
  .hero-item__text-box
  .heading-primary {
  animation-delay: 0.6s;
}

@keyframes showContent {
  to {
    /* transition: all 0.8s ease-in-out; */
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.header-imgs {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 390px;
}

.header-imgs .thm-breadcrumb {
  display: flex;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  color: #ffffff;
}

.header-imgs .thm-breadcrumb .active {
  color: #fab005;
}

.header-imgs .thm-breadcrumb li {
  margin: 0 0.8rem;
}

.header-imgs .thm-breadcrumb li a {
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}

.header-imgs .thm-breadcrumb li a:hover {
  color: #fab005;
}

.header-imgs .heading-secondary {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.6rem;
  color: #ffffff;
}

.header-imgs .header-img-box:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    linear-gradient(rgb(5, 115, 95), rgb(5, 115, 95));
  width: 100%;
  /* max-height: 39rem; */
}

.header-imgs .header-img-box:nth-child(1) .header-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-image: url(/img/background/header/header-img-1.jpg);
  width: 100%;
  /* max-height: 39rem; */
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: 0.6;
}

/*****************************/
/* GENERAL REUSABLE COMPONENTS */
/*****************************/

.white-text {
  color: #ffffff;
}

.dark-text {
  color: #01221c;
}

.light-text {
  color: #05735f;
}

.bright-text {
  color: #b4d5cf;
}

.yellow-text {
  color: #fab005;
}

.secondary-text {
  color: #62716e;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 800;
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 4.4rem;
  color: #ffffff;
  line-height: 1.05;
  margin-top: 2.4rem;
  text-align: center;
}

.heading-secondary {
  font-size: 3.4rem;
  line-height: 1.2;
}

.heading-tertiary {
  font-size: 2.4rem;
  line-height: 1.2;
}

.btn:link,
.btn:visited {
  width: 22rem;
  padding: 2.4rem 3.2rem;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
}

/* .btn--shrink {
  width: 18rem;
} */

.btn-container {
  display: inline-flex;
  min-width: 12.8rem;
}

.btn--cta:link,
.btn--cta:visited {
  background-color: #fab005;
  color: #01221c;
  gap: 1.2rem;
  transition: all 0.3s ease-in-out;
}

.btn--cta:hover,
.btn--cta:active {
  background-color: #01221c;
  color: #ffffff;
}

.btn-donate--menu .btn {
  padding: 1.6rem 2.4rem;
}

.btn--small:link,
.btn--small:visited {
  width: 100%;
  padding: 1.6rem 3.2rem;
  background-color: #05735f;
  color: #ffffff;
  gap: 1.2rem;
  transition: background-color 0.3s;
}

.btn--small:hover,
.btn--small:active {
  background-color: #056856;
}

.btn--small--short {
  width: 22.3rem;
}

.card-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 0 1px rgba(0, 0, 0);
  padding: 2.4rem;
}

.card-button a:link,
r.card-button a:visited {
  display: flex;
  gap: 0.8rem;
  transition: color 0.3s ease-in-out;
}

.card-button a:hover,
.card-button a:active {
  color: #05735f;
}

.btn--read-more:link,
.btn--read-more:visited {
  background-color: #ffffff;
  align-items: center;
  gap: 0.8rem;
  justify-content: start;
  padding: 1.6rem;
}

.btn--read-more:hover,
.btn--read-more:active {
  color: #056856;
}

.btn--button {
  border: none;
  background-color: #05735f;
  width: 50%;
  height: 4.8rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.5s;
}

.btn--button:hover,
.btn--button:hover {
  background-color: #056856;
}

.section__btn-container .btn {
  padding: 2.4rem 0;
}

.btn-nav {
  display: flex;
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}

.btn--border-radius {
  border-radius: 5px;
}

.btn--border-radius--left {
  border-radius: 5px 0 0 5px;
}

.btn--border-radius--right {
  border-radius: 0 5px 5px 0;
}

.section {
  padding-top: 12rem;
}

.border-radius {
  border-radius: 5px;
  overflow: hidden;
}

.container,
.container--2 {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  max-width: 76.8rem;
  margin: 0 auto;
  /* margin-bottom: 4.8rem; */
  padding: 0 2.4rem;
}

.blogs-section .container {
  margin-bottom: 8rem;
}

.section__header {
  margin: 0 0 2.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.section__header__description {
  font-size: 2.2rem;
  font-weight: 600;
  color: #05735f;
}

.grid-display {
  display: grid;
  column-gap: 4.8rem;
  row-gap: 4.8rem;
}

.grid-lg {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid-sm {
  display: grid;
  column-gap: 0.8rem;
  row-gap: 3.2rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.hidden {
  display: none;
}

.visible {
  visibility: hidden;
}

.unblur {
  -webkit-backdrop-filter: unset;
  backdrop-filter: unset;
}

.search-popup.active,
.login-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup,
.login-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition:
    opacity 500ms ease,
    -webkit-transform 500ms ease;
  transition:
    opacity 500ms ease,
    -webkit-transform 500ms ease;
  transition:
    transform 500ms ease,
    opacity 500ms ease;
  transition:
    transform 500ms ease,
    opacity 500ms ease,
    -webkit-transform 500ms ease;
}

.signup,
.login {
  width: 100vw;
  height: 100vh;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #01221c;
}

.search-popup__overlay,
.login-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.search-popup__content,
.login__content,
.signup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form,
.login__content form,
.signup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  width: 1px;
}

.search-popup__content form input[type='search'],
.search-popup__content form input[type='text'],
.login__content form input[type='email'],
.login__content form input[type='password'],
.signup__content form input[type='email'],
.signup__content form input[type='password'] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn,
.login__content .thm-btn,
.signup__content .thm-btn {
  cursor: pointer;
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: #05735f;
  border: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.profile-line {
  margin: 6rem 0;
}

.login__content .thm-btn,
.signup__content .thm-btn {
  position: unset;
  top: unset;
  right: unset;
  border-radius: 5px;
  width: 100%;
}

.login-form,
.signup-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.8rem;
}

.form__photo-upload {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
}

.form__user-photo {
  height: 10rem;
  width: 7.5rem;
  border-radius: 10px;
  margin-right: 2rem;
}

.form__upload + label {
  color: #05735f;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #05735f;
  padding: 3px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}

.form__upload + label:hover {
  background-color: #05735f;
  color: #fff;
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.login-form form,
.signup-form form,
.profile-items form {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  width: 100%;
  background: transparent;
}

.login-form .heading-secondary,
.signup-form .heading-secondary {
  color: #ffffff;
  z-index: 1;
  margin-bottom: 4.8rem;
}

.form__group.form__btn {
  display: flex;
  justify-content: flex-end;
}

.login-form .form__group,
.signup-form .form__group,
.profile-form .form__group:not(.form__photo-upload) {
  border-radius: 5px;
  overflow: hidden;
  background-color: #f9f4e8;
}

.login-form .login-form__others,
.signup-form .signup-form__others {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.signup-form .signup-form__others {
  justify-content: center;
}

.login-form .login-form__others .link,
.signup-form .signup-form__others .link {
  color: #ffffff;
  z-index: 1;
}

.login-form .login-form__others .link:hover,
.signup-form .signup-form__others .link:hover {
  color: #fab005;
}

/* .login .login-form .login-form__others .link,
.signup .signup-form .signup-form__others .link {
  text-decoration: none;
  color: #01221c;
}

.login .login-form .login-form__others .link:hover,
.signup .signup-form .signup-form__others .link:hover {
  color: #05735f;
} */

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  outline: none !important;
  background-color: #05735f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  padding: 1.5rem 1.5rem 1.5rem;
  transition: all 0.3s linear;
  overflow: hidden;
  z-index: 1;
}

.thm-btn:hover {
  background-color: #056856;
}

.thm-btn:before {
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: '';
  top: -230%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background-color: #01221c;
}

.profile-btn {
  width: 100%;
}

.search-popup__content .thm-btn i,
.login__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: #ffffff;
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer {
  background-color: #01221c;
  padding: 8rem 0 0 0;
}

.footer__container {
  margin-bottom: 0;
}

.footer p {
  color: #b4d5cf;
}

.footer__section {
  margin-top: 0;
}

.final-words {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

.footer__line {
  height: 1px;
  background-color: #ffffff;
  width: 100%;
}

.footer__section .heading-tertiary {
  color: #ffffff;
}

.footer__section .link-list {
  margin-top: 2.4rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer__section .link {
  color: #b4d5cf;
}

.footer__section--layout {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.contact p {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  color: #ffffff;
}

.contact i {
  font-size: 2.4rem;
}

.contact .contact__address {
  font-size: 1.3rem;
  color: #b4d5cf;
}

.social-media {
  margin-top: 2.4rem;
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.footer__section .link--social {
  color: #ffffff;
  font-size: 2.4rem;
}

.footer .footer__section__copyright {
  display: flex;
  justify-content: center;
  margin: 2.4rem 0;
  font-size: 1.4rem;
  color: #3a514d;
}

/*****************************/
/*        ABOUT SECTION      */
/*****************************/
.about-section .container {
  margin-bottom: 8rem;
}

.about-section .section__header .section__header__content {
  margin-top: 2.4rem;
}

.about-content i {
  color: #05735f;
}

.vision-mission__heading {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  margin-bottom: 1.6rem;
}

.vision-heading > i {
  margin-right: 0.6rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  padding: 0 2.4rem;
}

.feature {
  position: relative;
  background-color: rgba(255, 247, 230, 0.6);
}

.feature__img {
  display: flex;
  position: relative;
}

.feature__img img {
  width: 100%;
}

.feature__img::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.feature__img:hover::before {
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)); */
  opacity: 0.65;
}

.feature__img svg path {
  fill: #fff;
  transition: fill 0.3s ease;
}

.feature__img:hover svg path {
  fill: #fab005;
}

.feature__header {
  width: 100%;
  position: absolute;
  top: 4rem;
  left: 2rem;
  margin-top: 4.8rem;
}

.feature__header p {
  padding-right: 2.4rem;
  font-size: 2.4rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.feature__header > :first-child {
  font-weight: 700;
}

.feature__header > :last-child {
  font-weight: 500;
}

.feature__logo {
  position: absolute;
  top: 20px;
  right: 20px;
}

/*****************************/
/*        CAUSES SECTION      */
/*****************************/

.causes-section {
  background-color: #f9f4e8;
  padding-bottom: 8rem;
  overflow: hidden;
}

.causes-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 4.8rem;
}

.causes__content {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.causes__list-container {
  width: 100%;
  /* margin-right: 5rem; */
}

.causes__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  list-style: none;
  position: relative;
}

.causes__list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: '';
  width: 0.5rem;
  background-color: #eee9db;
}

.causes__list-item {
  display: flex;
  align-items: center;
  color: #3a514d;
}

.causes__list .causes__list-item span {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 1.6rem 0 2.4rem 4.8rem;
}

.causes__list .causes__list-item.active-item span::before {
  position: absolute;
  left: 4.8rem;
  right: 0;
  bottom: 1.6rem;
  height: 0.4rem;
  content: '';
  background-color: #fab005;
}

.causes__list .causes__list-item.active-item span::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  content: '';
  background-color: #05735f;
}

.active-item {
  color: #01221c;
  font-weight: 500;
}

.causes__card-container {
  display: flex;
  width: 100%;
  transform: translateX(0);
  transition: transform 0.5s ease-in-out;
}

.causes {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.causes__card {
  height: fit-content;
  flex-basis: 100%;
  width: 100%;
  box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.4);
  opacity: 0.8; /* Start with cards semi-transparent */
  transition: opacity 0.5s ease-in-out;
  /* transition-delay: 0.6s; */
}

.causes__card:not(.grey-card) {
  opacity: 1; /* Fully visible when active */
}

.causes__card-img {
  display: flex;
  position: relative;
  background-color: #05735f;
}

.causes__card-img img {
  width: 100%;
}

.causes__cat {
  position: absolute;
  padding: 0.2rem 1.2rem;
  background: #fab005;
  border-radius: 0 50px 50px 0;
  bottom: -16px;
  left: 0;
}

.causes__cat p {
  color: #01221c;
  font-weight: 600;
}

.causes__card-content {
  padding: 4.8rem 2.4rem 2.4rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  background-color: #05735f;
}

.causes__card-content .causes__card-title.heading-tertiary a:link,
.causes__card-content .causes__card-title.heading-tertiary a:visited {
  text-decoration: none;
  color: #ffffff;
}

.causes__card-content .causes__card-title.heading-tertiary a:hover,
.causes__card-content .causes__card-title.heading-tertiary a:active {
  color: #01221c;
}

.causes__card-content p {
  color: #ffffff;
}

.causes__card__progress-box {
  background-color: #f9f4e8;
  /* padding: 1.6rem 2.4rem; */
  padding: 4.8rem 2.4rem 2rem;
}

.causes__card__progress-box,
.causes__card__progress-box p {
  color: #3a514d;
}

.causes__card__bar {
  height: 0.7rem;
  background: #ffffff;
  border-radius: 5px;
  margin-bottom: 0.5rem;
}

.causes__card__bar-inner {
  position: relative;
  width: 0px;
  height: 0.7rem;
  border-radius: 0.5rem;
  background: #05735f;
}

.causes__card__count-text {
  position: absolute;
  right: 0;
  bottom: 1.1rem;
  color: #05735f;
  line-height: 2rem;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
}

.causes__card__count-text::before {
  content: '';
  position: absolute;
  left: 1.2rem;
  top: 2.4rem;
  height: 0.6rem;
  width: 0.6rem;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: 1;
}

.causes__card__count-text::after {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 1.7rem;
  height: 2rem;
  width: 2rem;
  background-color: #05735f;
  border-radius: 50%;
}

.causes__card__goals {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.causes__card__goals p {
  font-size: 1.4rem;
  color: #3a514d;
}

.causes__card__goals > p > span {
  font-size: 1.4rem;
  color: #01221c;
  font-weight: 500;
  line-height: 2.8rem;
}

.grey-card.causes__card {
  box-shadow: none;
}

.grey-card img {
  opacity: 0.8;
}

.grey-card .causes__card-img {
  position: relative;
}

.grey-card .causes__card-img::before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
  z-index: 1;
}

/* .grey-card p,
.grey-card span {
  color: #555555;
} */

.grey-card p,
.grey-card span,
.grey-card a,
.grey-card h3 {
  opacity: 0.5;
}

.grey-card .causes__cat {
  background-color: #b8b8b8;
  z-index: 2;
}

.grey-card .causes__card-title.heading-tertiary a:link,
.grey-card .causes__card-title.heading-tertiary a:visited {
  pointer-events: none;
}

.grey-card .causes__card-title.heading-tertiary a:hover,
.grey-card .causes__card-title.heading-tertiary a:active {
  color: #ffffff;
}

.grey-card .causes__card__count-text {
  color: #686868;
}

.grey-card .causes__card-content,
.grey-card .causes__card__bar-inner,
.grey-card .causes__card__count-text::after {
  background-image: linear-gradient(
    rgba(249, 244, 232, 0.2),
    rgba(249, 244, 232, 0.2)
  );
  background-color: #686868;
}

.grey-card .causes__card__progress-box,
.grey-card .causes__card__count-text::before {
  background-color: #cccccc;
}

.cause-container.event-page {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 6.4rem;
}

/*****************************/
/*        EVENTS SECTION      */
/*****************************/
.events-section {
  background-color: #f9f4e8;
  padding-bottom: 12rem;
  overflow-x: hidden;
}

.events-container {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.events {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.causes-page.page.details .events {
  gap: 1.4rem;
  width: fit-content;
}

.causes-page.page.details .events__card {
  display: flex;
  z-index: 1;
  margin-bottom: 3.2rem;
}

.events__card {
  box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.4);
}

.events__card-img {
  display: flex;
  position: relative;
  background-color: #05735f;
}

.causes-page.page.details .events__card-img {
  width: 120%;
}

.events__card-img img {
  width: 100%;
  height: auto;
}

.events__card-date {
  width: 12rem;
  display: flex;
  position: absolute;
  padding: 0.2rem 1.2rem;
  background: #fab005;
  border-radius: 0 50px 50px 0;
  rotate: -90deg;
  bottom: 4.65rem;
  right: -3.2rem;
}

.events__card-date p {
  font-size: 1.4rem;
  color: #01221c;
  font-weight: 600;
}

.events__card-box {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 2.4rem;
}

.events__card-info {
  display: flex;
  gap: 2.4rem;
}

.events__card-info p {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-size: 14px;
}

.events__card-info p i {
  color: #e19e05;
}

.events__card-title a:hover {
  color: #056856;
}

.events__card-content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

/* .events-details {
  position: relative;
}

.events-details__top {
  position: relative;
} */

.event-details__date {
  width: fit-content;
  background-color: #fab005;
  padding: 0.6rem 2.5rem;
  border-radius: 5px;
  margin-bottom: 1.4rem;
}

.event-details__title {
  margin-top: 1.4rem;
  margin-bottom: 2.4rem;
}

.event-details__date p {
  font-size: 18px;
  color: #01221c;
  font-family: 'Caveat', cursive;
  font-weight: 700;
}

.event-details .events__card-img {
  margin-bottom: 4.8rem;
}

.card-text__heading {
  font-size: 2.4rem;
  font-weight: 800;
}

.card-text__list {
  list-style-type: circle;
  padding-left: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.card-text__list {
  line-height: 1.5;
}

.card-text--special {
  font-weight: 600;
  color: #05735f;
}

/* .cause-details__img-box, */
.event-details__img-box,
.blog-details__img-box {
  padding: 4.8rem 0;
}

.cause-gallery-grid,
.event-gallery-grid,
.blog-gallery-grid {
  display: grid;
  gap: 2.4rem;
}

.cause-details__img-single,
.event-details__img-single,
.blog-details__img-single {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.cause-details__img-single img,
.event-details__img-single img,
.blog-details__img-single img {
  width: 100%;
  object-fit: cover;
}

.cause-details__img-single .img-caption,
.event-details__img-single .img-caption,
.blog-details__img-single .img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #05735f;
  padding: 2.4rem;
}

.cause-details__img-single .img-caption p,
.event-details__img-single .img-caption p,
.blog-details__img-single .img-caption p {
  color: #ffffff;
}

.cause-details__btn-box,
.event-details__btn-box,
.blog-details__btn-box {
  margin-top: 3.2rem;
}

.cause-details__btn-box button,
.event-details__btn-box button,
.blog-details__btn-box button {
  border: none;
  cursor: pointer;
}

/*****************************/
/*        BLOGS SECTION      */
/*****************************/
.blogs-header .section__header {
  align-items: center;
}

.blogs-content {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

.blogs-featured .blog__card {
  background-color: #01221c;
}

.blogs-featured
  .blog__card
  .blog__card-box
  .blog__card-title.heading-tertiary
  a:link,
.blogs-featured
  .blog__card
  .blog__card-box
  .blog__card-title.heading-tertiary
  a:visited {
  color: #ffffff;
}

.blogs-featured
  .blog__card
  .blog__card-box
  .blog__card-title.heading-tertiary
  a:hover,
.blogs-featured
  .blog__card
  .blog__card-box
  .blog__card-title.heading-tertiary
  a:active {
  color: #05735f;
}

.blogs-featured .blog__card .blog__card-box .blog__card-info p {
  color: #b4d5cf;
}

.blogs-featured .blog__card .card-button {
  background-color: #01221c;
}

.blogs-featured .blog__card .card-button a:link,
.blogs-featured .blog__card .card-button a:visited {
  display: flex;
  gap: 0.8rem;
  color: #b4d5cf;
}

.blogs-featured .blog__card .card-button a:hover,
.blogs-featured .blog__card .card-button a:active {
  color: #05735f;
}

.blog__card-info p i {
  color: #e19e05;
}

.blog__card-info p span {
  font-weight: 500;
}

.blogs {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}

.blog__card {
  box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.4);
}

.blog__card-img {
  display: flex;
  position: relative;
  background-color: #05735f;
}

.blog__card-img img {
  width: 100%;
  height: auto;
}

.blog__card-date {
  width: 12rem;
  display: flex;
  position: absolute;
  padding: 0.2rem 1.2rem;
  background: #fab005;
  border-radius: 50px;
  bottom: 1.6rem;
  left: 1.6rem;
}

.blog__card-date p {
  font-size: 1.4rem;
  color: #01221c;
  font-weight: 600;
}

.blog__card-box {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 2.4rem;
}

.blog__card-info {
  display: flex;
  gap: 2.4rem;
}

.blog__card-info p {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-size: 1.4rem;
}

.blog__card-title.heading-tertiary a:hover,
.blog__card-title.heading-tertiary a:active {
  color: #05735f;
}

/*******************************/
/*        COLLABS SECTION      */
/*******************************/
.collabs {
  background-color: #fab005;
  background-image: linear-gradient(
      rgba(85, 85, 85, 0.1),
      rgba(85, 85, 85, 0.1)
    ),
    linear-gradient(rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35));
  padding: 3.2rem;
  display: flex;
  justify-content: space-between;
}

/*******************************/
/*******************************/
/*          ABOUT PAGE         */
/*******************************/
/*******************************/
.section.about-section.about-page {
  padding-bottom: 12rem;
}

.section.about-section.about-page .container {
  margin-bottom: 0;
}

.section.about-section.about-page .container .about-imgs {
  position: relative;
}

.section.about-section.about-page .container .about-imgs .vertical-bar {
  display: none;
}

.section.about-section.about-page .container .about-imgs .about-bg-lg {
  width: 100%;
  border-radius: 5px;
}

.section.about-section.about-page .container .about-imgs .about-bg-sm {
  display: none;
}

.section.about-section.about-page .container .about-imgs::after {
  content: 'Help us today';
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 3.6rem;
  color: #fab005;
  position: absolute;
  bottom: 8%;
  left: 30%;
}

.section.testimonial-section {
  background-color: #01221c;
  padding-bottom: 12rem;
}

.section.section.testimonial-section .container {
  margin-bottom: 0;
}

.section.about-page .content {
  display: grid;
  row-gap: 17rem;
}

.about-header-box {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.section.testimonial-section .section__header__content {
  margin-top: 2.4rem;
}

/* .section.section.testimonial-section .btn-about-testimonial {
  width: 43.5rem;
} */

.section.testimonial-section .testimonials-box {
  position: relative;
}

.section.testimonial-section .testimonials {
  padding-bottom: 2.4rem;
}

.section.testimonial-section .testimonial-box {
  position: relative;
  width: 100%;
}

.section.testimonial-section .testimonial-quote-arrow {
  position: absolute;
  top: -4.1rem;
  left: 20rem;
}

.section.testimonial-section .testimonial-img {
  border: 5px solid #fab005;
  border-radius: 14px;
  overflow: hidden;
  position: absolute;
  top: -10rem;
  left: 3.2rem;
  height: 20rem;
}

.section.testimonial-section .testimonial-img img {
  width: 14.5rem;
  /* height: 19rem; */
  object-fit: cover;
  object-position: bottom;
}

.section.testimonial-section .testimonial-details {
  position: absolute;
  top: -9rem;
  left: 20rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.section.testimonial-section .testimonial-details .name {
  color: #eee9db;
  font-size: 1.8rem;
  font-weight: 600;
}

.section.testimonial-section .testimonial-details .role {
  color: #fab005;
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  font-weight: 600;
}

.quote-icon {
  position: absolute;
  top: -3.2rem;
  right: 3.2rem;
  background-color: #05735f;
  border-radius: 200px;
  width: fit-content;
  height: fit-content;
  padding: 1.8rem;
}

.quote-icon img {
  width: 2em;
  height: 2em;
}

.section.testimonial-section .testimonial {
  background-color: #ffffff;
  border: 5px solid #fab005;
  border-radius: 10px;
  padding: 12rem 3.2rem 2.4rem 3.2rem;
}

.section.testimonial-section .testimonial-nav {
  position: absolute;
  bottom: 0;
  right: 2.4rem;
  z-index: 1;
}

.section.become-a-volunteer-section {
  position: relative;
  padding-bottom: 12rem;
}

.section.become-a-volunteer-section .become-a-volunteer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #05735f;
  z-index: -1;
}

.section.become-a-volunteer-section .bg {
  background-image: url(/img/background/about-page/group-volunteers.jpg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: 0.6;
}

.section.become-a-volunteer-section .become-a-volunteer__shape {
  background-image: url(/img/shapes/become-a-volunteer.png);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 106px;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  z-index: -1;
}

.section.become-a-volunteer-section .become-a-volunteer__content {
  text-align: center;
}

.section.become-a-volunteer-section .section__header__description {
  color: #ffffff;
}

.section.become-a-volunteer-section .heading-secondary {
  color: #ffffff;
}

.section.become-a-volunteer-section .section__header {
  align-items: center;
}

.section.become-a-volunteer-section .section__header .btn-container {
  margin-top: 2.4rem;
}

.section.faq-section {
  background-color: #f9f4e8;
  padding-bottom: 12rem;
}

.section.faq-section .container {
  margin-bottom: 0;
}

.section.faq-section.about-page .content {
  gap: 4.8rem;
}

.section.faq-section .section__header__content {
  margin-top: 2.4rem;
  color: #3a514d;
}

.section.faq-section .faq-item__header,
.section.faq-section .faq-item__body {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 1.2rem;
}

.section.faq-section .faq-item__header {
  padding-top: 0.6rem;
  cursor: pointer;
}

.section.faq-section
  .faq-item
  .faq-item__header[data-faq-active]
  .faq-item__question {
  color: #05735f;
}

.section.faq-section .faq-item .faq-item__header .faq-item__ctrl {
  padding: 0.8rem;
  cursor: pointer;
  border-style: none;
  border-radius: 7px;
  margin-top: 0.6rem;
}

.section.faq-section
  .faq-item
  .faq-item__header:not([data-faq-active])
  .faq-item__ctrl {
  background-color: #05735f;
}

.section.faq-section
  .faq-item
  .faq-item__header[data-faq-active]
  .faq-item__ctrl {
  background-color: #fab005;
}

.section.faq-section .faq-item .faq-item__header .faq-item__ctrl .ctrl {
  display: flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  background-size: cover;
  border-radius: 3px;
}

.section.faq-section
  .faq-item
  .faq-item__header[data-faq-active]
  .faq-item__ctrl
  .ctrl {
  background-image: url(/img/shapes/negetive.png);
}

.section.faq-section
  .faq-item
  .faq-item__header:not([data-faq-active])
  .faq-item__ctrl
  .ctrl {
  background-image: url(/img/shapes/positive.png);
}

.section.faq-section .faq-item .faq-item__question {
  font-weight: 700;
}

.section.faq-section .faq-section__body {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.section.faq-section .faq-item {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 2px solid #05735f;
  border-radius: 1rem;
}

.section.faq-section .faq-item[data-faq-active] {
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.05);
}

.section.faq-section .faq-item .faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease;
}

.section.faq-section .faq-item__body {
  padding-top: 0;
}

.section.faq-section .faq-item__body .faq-item__ans {
  padding-top: 1.2rem;
}

.section.team-section.about-page {
  padding-bottom: 12rem;
  background-color: #f9f4e8;
}

.section.team-section.about-page .container {
  margin-bottom: 0;
}

.section.team-section.about-page .content {
  row-gap: 4.8rem;
}

.section.team-section.about-page .content .team {
  display: grid;
  row-gap: 6.4rem;
}

.section.section.team-section.about-page .team__member {
  max-width: 43.5rem;
  margin: 0 auto;
}

.section.team-section.about-page .about-header-box {
  align-items: center;
  text-align: center;
}

.section.team-section.about-page .member-img {
  position: relative;
}

.section.team-section.about-page .member-img .profile-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.section.team-section.about-page .member-img .social-media {
  background-color: #fab005;
  width: fit-content;
  padding: 0.8rem;
  border-radius: 5px 5px 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.section.team-section.about-page .member-img .social-media .icon {
  width: 2.4rem;
}

.section.team-section.about-page .member-img .social-media .icon img {
  width: 100%;
}

/* .section.team-section.about-page .member-details-box {
  width: 100%;
} */

.section.team-section.about-page .member-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background-color: #01221c;
  color: #ffffff;
  width: 90%;
  margin: 0 auto;
  align-items: center;
  padding: 2.4rem;
  border-radius: 0 0 10px 10px;
}

.section.team-section.about-page .member-details span:nth-child(2) {
  color: #fab005;
  font-family: 'Caveat', cursive;
  font-size: 2.4rem;
}

.section.contact-section.section.about-page {
  padding-bottom: 12rem;
  margin-bottom: 6.4rem;
  position: relative;
  height: 60rem;
}

.section.contact-section.section.about-page .container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  padding: unset;
}

.section.contact-section.section.about-page .map {
  position: absolute;
  inset: 0 0 0 0;
  z-index: -1;
  height: 80%;
}

.section.contact-section.section.about-page .contact {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.4);
  padding: 2.4rem;
}

.section.contact-section.section.about-page .contact .contact__info {
  display: flex;
  gap: 2rem;
}

.section.contact-section.section.about-page .contact .contact__info .icon {
  margin-top: 0.4rem;
  color: #05735f;
}

.section.contact-section.section.about-page .contact .contact__info .info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.section.contact-section.section.about-page .contact .contact__info .info {
  line-height: 1.5;
}

.section.section-about-profile.profile-page {
  padding-bottom: 3.2rem;
}

.section.section-about-profile.profile-page .container,
.section.section-socials.profile-page .container {
  padding: 0 2.4rem;
  margin-bottom: unset;
}

.section.section-about-profile.profile-page .profile-img-box {
  position: relative;
  max-width: 43.5rem;
  margin: -17rem auto 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.4);
}

.section.section-about-profile.profile-page .profile-img-box::before {
  content: '';
  position: absolute;
  inset: 0 0 0 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
}

.section.section-about-profile.profile-page .profile-img-box .icon-edit {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  color: #ffffff;
  font-size: 2.4rem;
}

.section.section-about-profile.profile-page .profile-img-box img {
  width: 100%;
}

.section.section-about-profile.profile-page .profile-img-box .profile-summary {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: absolute;
  bottom: 2.4rem;
  left: 2.4rem;
}

.section.section-about-profile.profile-page
  .profile-img-box
  .profile-summary
  .name-status {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: #ffffff;
  font-weight: 600;
}

.section.section-about-profile.profile-page
  .profile-img-box
  .profile-summary
  .contact {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  color: #ffffff;
  font-weight: 600;
}

.section.section-about-profile.profile-page
  .profile-img-box
  .profile-summary
  .name-status
  span:nth-child(2) {
  color: #fab005;
  font-family: 'Caveat', cursive;
}

.section.section-about-profile.profile-page
  .profile-img-box
  .profile-summary
  .contact
  span:nth-child(1) {
  color: #05735f;
}

.section.section-about-profile.profile-page .fav-quote {
  position: relative;
  border: 5px solid #fab005;
  border-radius: 10px;
  padding: 1.6rem;
  padding-top: 6rem;
  margin: 0 auto;
}

.section.section-about-profile.profile-page .fav-quote .quote-icon {
  right: 2.4rem;
}

.section.profile-page .container {
  margin-bottom: unset;
}

.section.section-about-profile.profile-page .profile-info {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.section.section-about-profile.profile-page .fav-quote,
.section.section-about-profile.profile-page .profile-info,
.section.section-socials.profile-page .socials {
  max-width: 64rem;
}

.section.profile-page .heading-secondary {
  margin-bottom: 1.2rem;
}

.section.section-about-profile.profile-page ul {
  line-height: 1.6;
  margin-left: 1.8rem;
}

.section.section-socials.profile-page {
  background-color: #f9f4e8;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.section.section-socials.profile-page .icons {
  padding: 0.8rem;
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.section.section-socials.profile-page .icons li {
  width: 3.2rem;
}

.section.section-socials.profile-page .icons li img {
  width: 100%;
}

.section.become-a-volunteer-section.profile-page .become-a-volunteer__shape {
  background-image: url(/img/shapes/become-a-volunteer-dark.png);
}

.causes-box {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

.page .container {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.list-page .summary {
  padding: 0 2.4rem 2.4rem 2.4rem;
}

.list-page .all-items {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.causes-page.page.details .all-items {
  gap: 0;
  margin-bottom: 3.2rem;
}

.all-items.event-page .card-button {
  padding: 0;
  box-shadow: none;
  font-weight: 500;
}

.all-items .table-container {
  width: 100%;
}

.all-items ul {
  list-style: none;
}

.all-items .table.search-results {
  display: table;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #05735f;
}

.all-items .table.search-results .row.header {
  background-color: #05735f;
  color: #ffffff;
  font-weight: 500;
}

.all-items .table.search-results .row {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #05735f;
}

.all-items .table.search-results .row > a {
  display: flex;
  width: 100%;
  transition: background-color 0.3s ease;
}

.all-items .table.search-results .row > a:hover {
  background-color: #b4d5cf;
}

.all-items .table.search-results .row:last-child {
  border-bottom: none;
}

.all-items .table.search-results .row .cell {
  display: inline-block;
  padding: 2.4rem;
  text-align: left;
  width: -webkit-fill-available;
  font-weight: 400;
}

.all-items .table.search-results .row .cell:first-child {
  width: 12rem;
  border-right: 1px solid #05735f;
}

.all-items .table.search-results .row .cell img {
  width: 7rem;
  border-radius: 5px;
}

.list-page .blog__card,
.list-page .events__card {
  box-shadow: 0 0 1px rgba(0, 0, 0);
}

.list-page .causes__card:not(.donate-now .causes__card),
.list-page.details .blog__card {
  box-shadow: unset;
}

.details .card-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2.4rem;
}

.details .donation-details__donate {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #f9f4e8;
  border: 1px solid #eee9db;
  border-radius: 5px;
  align-items: center;
  justify-content: space-between;
  padding: 36px 39px 36px;
  overflow: hidden;
  margin-top: 52px;
  margin-bottom: 52px;
  z-index: 1;
}

.details .donation-details__donate-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 270px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: 0.2;
  z-index: -1;
}

.details .donation-details__donate-left {
  position: relative;
  display: block;
}

.details .donation-details__donate-list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.4rem;
}

.details .donation-details__donate-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.details .donation-details__donate-list li + li {
  margin-left: 1rem;
  margin-top: 20px;
}

.details .donation-details__donate-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.details .donation-details__donate-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 5.5rem;
  color: #05735f;
}

.details .donation-details__donate-list li .icon span path {
  fill: #05735f;
}

.details .donation-details__donate-list li .text {
  margin-left: 2rem;
}

.details .donation-details__donate-list li .text span {
  font-size: 1.8rem;
  font-weight: 400;
}

.details .donation-details__donate-list li .text p {
  font-size: 1.6rem;
  color: #01221c;
  font-weight: 700;
  line-height: 2.5rem;
}

.details .causes__card-img,
.details .blog__card-img {
  border-radius: 5px;
  overflow: hidden;
}

.details .causes__cat {
  box-shadow: 0 7px 8px rgba(0, 0, 0, 0.4);
  bottom: 1.6rem;
  left: 1.6rem;
  border-radius: 0.5rem;
}

.details__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0 30px;
  margin-top: 48px;
  margin-bottom: 48px;
  border-top: 1px solid #f9f4e8;
}

.details__tags span,
.details__social-list span {
  color: #01221c;
  font-size: 2rem;
  margin-right: 0.8rem;
  font-weight: 900;
}

.sidebar {
  margin-bottom: 7.8rem;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type='search'] {
  display: block;
  border: none;
  outline: none;
  background-color: #05735f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  padding-left: 50px;
  height: 70px;
  width: 100%;
  padding-right: 80px;
  border-radius: 5px;
}

.sidebar__search-form input[type='search']::placeholder {
  color: #ffffff;
}

.sidebar__search-form button[type='submit'] {
  cursor: pointer;
  background-color: transparent;
  color: #ffffff;
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.sidebar__single {
  position: relative;
  display: block;
  margin-top: 3.2rem;
  padding: 4.6rem 2rem 3rem;
  background-color: #f9f4e8;
  border-radius: 5px;
  overflow: hidden;
  /* z-index: 1; */
}

.sidebar__background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: luminosity;
  opacity: 0.3;
  z-index: -1;
}

.sidebar__title {
  /* margin: 0; */
  font-size: 24px;
  /* margin-bottom: 4px;
  font-weight: 900;
  letter-spacing: -0.04em; */
}

.sidebar__post-list {
  list-style: none;
}

.sidebar__post-list li {
  margin-top: 10px;
  padding: 1.4rem 2rem 1.5rem;
  padding-right: 1.8rem;
  -webkit-transition: all 500ms ease;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.sidebar__post-list > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sidebar__post-list li:hover {
  background-color: #ffffff;
}

.sidebar__post-image {
  margin-right: 2rem;
}

.sidebar__post-image > img {
  width: 7rem;
  border-radius: 5px;
}

.sidebar__post-content {
  position: relative;
  top: -1px;
}

.sidebar__post-content h3 {
  font-size: 1.8rem;
  margin: 0;
  line-height: 2.6rem;
}

.sidebar__post-content-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 600;
  color: #3a514d;
  /* font-family: "Manrope", sans-serif; */
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-content-meta i {
  color: #05735f;
  font-size: 1.4rem;
  padding-right: 1px;
}

.sidebar__post-content h3 a {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.sidebar__category .sidebar__title {
  margin-bottom: 1.2rem;
}

.sidebar__category-list {
  list-style: none;
}

.sidebar__category-list li:hover {
  border-radius: 5px;
}

.sidebar__category-list li a {
  color: #3a514d;
  /* font-size: 16px; */
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: flex;
  align-items: center;
  background: none;
  padding: 1rem 1rem 1rem;
  margin: 0.5rem 0;
  border-radius: 5px;
}

.sidebar__category-list li a:hover {
  background-color: #ffffff;
}

.sidebar__category-list li.active a {
  background-color: #ffffff;
  color: #01221c;
}

.sidebar__category-list li a .svg-arrow {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%) scale(0);
  transition: all 500ms ease;
  color: #05735f;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.sidebar__category-list li a:hover .svg-arrow {
  transform: translateY(-50%) scale(1);
  color: #05735f;
}

.sidebar__category-list li.active a .svg-arrow {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.profile-nav__list__item a {
  gap: 2rem;
}

.sidebar__tags .sidebar__title {
  margin-left: 5px;
  margin-bottom: 24px;
}

.sidebar__tags-list {
  margin-top: -10px;
}

.sidebar__share-list {
  display: flex;
  justify-content: space-between;
}

.sidebar__tags-list a,
.sidebar__share-list a,
.details__tags a {
  font-size: 10px;
  color: #01221c;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #ffffff;
  display: inline-block;
  padding: 2rem;
  margin-left: 0.5rem;
  margin-top: 1rem;
  font-weight: 600;
  border-radius: 5px;
  text-transform: uppercase;
}

.sidebar__tags-list .active-tag {
  background-color: #fab005;
}

.details__tags a {
  background-color: #f9f4e8;
}

.details__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1.8rem;
}

.details__social-list a:hover,
.details__social-list a:active {
  color: #ffffff;
  background-color: #fab005;
}

.details__social-list a + a {
  margin-left: 10px;
}

.details__social-list a {
  position: relative;
  height: 4.8rem;
  width: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  background-color: #f9f4e8;
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.sidebar__share-list a {
  font-size: 2rem;
}

.sidebar__tags-list a:hover,
.sidebar__tags-list a:active,
.sidebar__share-list a:hover,
.sidebar__share-list a:active,
.details__tags a:hover,
.details__tags a:active {
  background-color: #fab005;
}

.event-details__info {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow:
    0px 10px 60px 0px rgba(0, 0, 0, 0.1),
    inset 0px 4px 0px 0px rgba(0, 113, 93, 0.004);
  border-radius: 5px;
  margin-top: 3.2rem;
  padding: 3.6rem 6rem 4rem;
  border-top: 4px solid #05735f;
}

.event-details__info-list {
  list-style: none;
  position: relative;
  display: block;
}

.event-details__info-list li + li {
  margin-top: 2.4rem;
}

.event-details__info-list li span {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4rem;
}

.event-details__info-list li p {
  font-size: 1.6rem;
  color: var(--oxpins-black);
  font-weight: 800;
  line-height: 1.9rem;
}

.event-details__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 2.4rem;
}

.event-details__social a {
  position: relative;
  height: 4rem;
  width: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: #01221c;
  background-color: #f9f4e8;
  font-size: 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.event-details__social a + a {
  margin-left: 1rem;
}

.event-details__social a:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  opacity: 0;
  z-index: -1;
}

.event-details__social a:hover {
  color: #ffffff;
  background-color: #fab005;
}

.event-details__map {
  background-color: #f9f4e8;
  height: 44rem;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 3.2rem;
}

.event-details-map__one {
  border: none;
  height: 43rem;
  width: 100%;
  mix-blend-mode: luminosity;
  border-radius: 5px;
}

.comment__title,
.comment-form__title {
  margin-bottom: 5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.comment__single,
.reply__single {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.comment__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #f9f4e8;
  padding-bottom: 2.4rem;
  margin-bottom: 4.8rem;
}

.comment__single.reply__single {
  border-bottom: none;
  border-left: #f9f4e8 1px solid;
  padding-left: 2.4rem;
}

.reply__single {
  padding-top: 3.6rem;
  padding-bottom: 1.6rem;
  margin-left: 2.4rem;
  margin-bottom: 0;
}

.comment__heading,
.reply__heading {
  display: flex;
  gap: 2.4rem;
}

/* .comment__image,
.reply__image {
  border-radius: 50%;
} */

.comment__image img,
.reply__image img {
  height: 10rem;
  width: 7.5rem;
  border-radius: 10px;
}

.comment__content,
.reply__content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.comment__heading h3,
.reply__heading h3 {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.comment__btn {
  padding: 1rem 1.5rem;
  margin: 1.4rem 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 5px;
  text-transform: uppercase;
  align-self: end;
}

.comment-form,
.reply-form {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}

.comment-form .row {
  display: flex;
  flex-wrap: wrap;
}

.comment-form .row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}

.comment-form__input-box {
  margin-bottom: 2.4rem;
}

.comment-form__input-box input[type='text'],
.comment-form__input-box input[type='email'] {
  height: 6rem;
  width: 100%;
  border: none;
  background-color: #f9f4e8;
  padding-left: 3.2rem;
  padding-right: 3.2rem;
  outline: none;
  font-size: 14px;
  color: #707876;
  border-radius: 5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.comment-form__input-box textarea {
  font-size: 14px;
  color: #707876;
  height: 15rem;
  width: 100%;
  background-color: #f9f4e8;
  padding: 1.6rem 3.2rem 3.2rem;
  border: none;
  border-radius: 5px;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
}

.comment-form__input-box.text-message-box {
  height: 15rem;
}

.reply-form-box {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.5s ease,
    opacity 0.5s ease;
}

.reply-form-box.active {
  max-height: 400px;
  opacity: 1;
}

/* Become a volunteer page */
.become-volunteer-page {
  padding-bottom: 12rem;
}

.section-title {
  margin-top: 0.4rem;
  margin-bottom: 4.8rem;
}

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

.become-volunteer-page .row {
  display: flex;
  flex-wrap: wrap;
}

.become-volunteer-page__left {
  background-color: #f9f4e8;
  margin-bottom: 3.2rem;
  padding: 3.2rem;
  border-radius: 5px;
}

.become-volunteer-page__img {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}

.become-volunteer-page__img img {
  width: 100%;
}

.become-volunteer-page__content {
  margin-top: 3.2rem;
}

.become-volunteer-page__text {
  padding-top: 1rem;
  padding-bottom: 3.2rem;
}

.become-volunteer-page__title {
  margin-bottom: 2.4rem;
}

.become-volunteer__points li {
  display: flex;
  align-items: start;
  margin-bottom: 1.4rem;
}

.become-volunteer__points li .icon {
  height: 1.4rem;
  width: 1.4rem;
  background-color: #05735f;
  border-radius: 50%;
  margin-top: 0.6rem;
}

.become-volunteer__points li .text {
  margin-left: 1.2rem;
  width: 100%;
}

.become-volunteer__points li .text p {
  color: #283734;
  font-weight: 400;
}

.become-volunteer__call {
  display: flex;
  align-items: center;
  border-top: 1px solid #eee9db;
  padding-top: 3.2rem;
}

.become-volunteer__call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.4rem;
  width: 6.4rem;
  background-color: #fab005;
  border-radius: 50%;
  font-size: 35px;
  color: #01221c;
}

.become-volunteer__call-icon .icon-chat svg {
  height: 35px;
  width: 35px;
}

.become-volunteer__call-content {
  margin-left: 2.4rem;
  top: -2px;
}

.become-volunteer__call-content span {
  font-size: 18px;
  color: #05735f;
  font-weight: 700;
  font-family: 'Caveat', cursive;
}

.become-volunteer__call-content p {
  font-size: 20px;
  font-weight: 800;
}

.become-volunteer-page__right {
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee9db;
  padding: 3.2rem;
}

.become-volunteer-page__form .row {
  display: flex;
}

.become-volunteer-page__form .row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

.become-volunteer-page__input {
  margin-bottom: 2.4rem;
}

.become-volunteer-page__input input[type='text'],
.become-volunteer-page__input input[type='password'],
.become-volunteer-page__input input[type='email'],
.become-volunteer-page__input input[type='tel'] {
  height: 6.4rem;
  width: 100%;
  border: none;
  outline: none;
  background-color: #f9f4e8;
  color: #707876;
  font-size: 14px;
  padding: 0 30px;
  border-radius: 5px;
  font-weight: 400;
}

.become-volunteer-page__input.become-volunteer__message-box {
  height: 15rem;
}

.become-volunteer-page__input textarea {
  height: 150px;
  width: 100%;
  border: none;
  outline: none;
  background-color: #f9f4e8;
  color: #707876;
  font-size: 14px;
  padding: 1.8rem 3.2rem 3.2rem;
  border-radius: 5px;
  font-weight: 400;
}

/* DONATE NOW PAGE */
.section.donate-now {
  padding-bottom: 12rem;
}

.donate-now .row {
  display: flex;
  flex-wrap: wrap;
}

.donate-now .row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}

.donate-now__title {
  letter-spacing: -0.04em;
  margin-bottom: 3.2rem;
}

.donate-now__enter-donation-input {
  position: relative;
}

.donate-now__enter-donation-input .bootstrap-select {
  position: absolute;
  width: auto !important;
  left: 0;
  top: 0;
  margin-top: 0;
}

.donate-now__payment-info-btn {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.bootstrap-select > select {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  display: block !important;
  width: 0.5px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none;
  z-index: 0 !important;
}

.donate-now__enter-donation-input .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 13rem;
  width: 14.5rem;
  outline: none;
  border-radius: 5px;
  border: 0;
  background-color: #05735f;
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: 5rem;
  line-height: 13.5rem;
  font-weight: 400;
  /* box-shadow: none;
  background-repeat: no-repeat; */
  /* font-family: var(--oxpins-font-two); */
  text-align: center;
  letter-spacing: -0.04em;
}

.donate-now__enter-donation-input
  .bootstrap-select
  .dropdown-toggle
  .filter-option {
  text-align: center;
}

.bootstrap-select .dropdown-toggle .filter-option {
  position: static;
  top: 0;
  left: 0;
  float: left;
  height: 100%;
  width: 100%;
  text-align: left;
  overflow: hidden;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.donate-now__enter-donation-input input[type='text'] {
  height: 13rem;
  width: 100%;
  border: none;
  outline: none;
  background-color: #05735f;
  border-radius: 5px;
  padding-left: 15rem;
  padding-right: 5rem;
  font-size: 5rem;
  color: #ffffff;
  /* font-family: var(--oxpins-font-two); */
  text-align: right;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.donate-now__personal-info-box {
  margin-top: 6.4rem;
  margin-bottom: 6.4rem;
}

.donate-now__personal-info-input {
  margin-bottom: 3.2rem;
}

.profile-form .form__group {
  display: flex;
  align-items: center;
}

.donate-now__personal-info-input input[type='text'],
.donate-now__personal-info-input input[type='email'],
.login__content form input[type='email'],
.login__content form input[type='password'],
.signup__content form input[type='text'],
.signup__content form input[type='email'],
.signup__content form input[type='password'],
.profile-form input[type='text'],
.profile-form input[type='tel'],
.profile-form input[type='email'],
.profile-form input[type='checkbox'],
.profile-form input[type='password'] {
  height: 3.2rem;
  width: 100%;
  border: none;
  outline: none;
  background-color: #f9f4e8;
  color: #707876;
  font-size: 1.4rem;
  margin: 1rem 0 1rem 3rem;
  border-radius: 5px;
  font-weight: 500;
}

.profile-form input[type='checkbox'] {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
  appearance: none;
  cursor: pointer;
  background-color: #ffffff;
  outline: none;
  transition: background-color 0.3s ease;
}

/* .profile-form input[type='checkbox']:hover {
  background-color: #b4d5cf;
} */

.profile-form input[type='checkbox']:checked {
  background-color: #05735f;
}

.profile-form input[type='checkbox']::after {
  position: absolute;
  inset: 0 0 0 0;
  content: '✔';
  font-size: 22px;
  color: #ffffff;
  opacity: 0;
  text-align: center;
  transition: opacity 0.3s ease;
}

.profile-form input[type='checkbox']:checked::after {
  opacity: 1;
}

/* .overlay form input[type='email'],
.overlay form input[type='password'] {
  background-color: #fff;
} */

.donate-now__personal-info-form .bootstrap-select {
  position: relative;
  width: 100%;
}

.bootstrap-select > select {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 0.5px;
  height: 100%;
  padding: 0;
  opacity: 0;
  border: none;
  z-index: 0;
}

.donate-now__personal-info-form .bootstrap-select > .dropdown-toggle {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 6.4rem;
  outline: none;
  border-radius: 5px;
  border: 0;
  background-color: #f9f4e8;
  margin: 0;
  padding: 0;
  padding-left: 3.2rem;
  padding-right: 3.2rem;
  color: #707876;
  font-size: 1.4rem;
  line-height: 6.4rem;
  font-weight: 500;
  box-shadow: none;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}

.donate-now__personal-info-form .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 26px;
  font-family: 'Font Awesome 5 Free';
  content: '\f107';
  font-weight: 900;
  font-size: 1.4rem;
  color: #707876;
}

.bootstrap-select .dropdown-toggle .filter-option {
  position: static;
  top: 0;
  left: 0;
  float: left;
  height: 100%;
  width: 100%;
  text-align: left;
  overflow: hidden;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  overflow: hidden;
}

.donate-now__personal-info-input.donate-now__personal-info-message-box {
  height: 18rem;
  margin-bottom: 0;
}

.donate-now__personal-info-input textarea {
  height: 18rem;
  width: 100%;
  border: none;
  outline: none;
  background-color: #f9f4e8;
  color: #707876;
  font-size: 1.4rem;
  padding: 1.8rem 3.2rem 3.2rem;
  border-radius: 5px;
  font-weight: 500;
}

.donate-now__payment-info-input {
  margin-bottom: 3.2rem;
}

.donate-now__payment-info-input input[type='text'] {
  height: 6.4rem;
  width: 100%;
  border: none;
  outline: none;
  background-color: #f9f4e8;
  color: #707876;
  font-size: 1.4rem;
  padding: 0 3.2rem;
  border-radius: 5px;
  font-weight: 500;
}

.donate-now__payment-info-form
  .bootstrap-select:not([class*='col-']):not([class*='form-control']):not(
    .input-group-btn
  ) {
  position: relative;
  display: block;
  /* width: 100% !important; */
}

.donate-now__payment-info-form .bootstrap-select > .dropdown-toggle {
  position: relative;
  cursor: pointer;
  height: 6.4rem;
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: 0;
  background-color: #f9f4e8;
  margin: 0;
  padding: 0;
  padding-left: 3.2rem;
  padding-right: 3.2rem;
  color: #707876;
  font-size: 1.4rem;
  line-height: 6.4rem;
  font-weight: 500;
  box-shadow: none;
  background-repeat: no-repeat;
  background-size: 1.4rem 1.2rem;
  background-position: right 25.75px center;
}

.donate-now__payment-info-form .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.4rem;
  font-family: 'Font Awesome 5 Free';
  content: '\f107';
  font-weight: 900;
  font-size: 1.4rem;
  color: #707876;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu > li.selected > a {
  background: #fab005;
  color: #fff;
}

.bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu > li > a {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.4rem 2.4rem;
  color: #ffffff;
  background: #05735f;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 5px;
}

.donate-now__right {
  margin-top: 3.2rem;
}

.error-page__title-box {
  position: relative;
  display: block;
  /* z-index: 2; */
}

.error-page__title {
  position: relative;
  display: inline-block;
  font-size: 8.4rem;
  line-height: 8.4rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #05735f;
  font-family: 'Caveat', cursive;
  z-index: 1;
}

.error-page__title--2 {
  position: absolute;
  font-size: 8.4rem;
  line-height: 8.4rem;
  font-weight: 700;
  color: #fab005;
  top: 5px;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: 'Caveat', cursive;
}

.error-page__tagline {
  margin-top: 2.4rem;
}
