@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar {
  background-color: #fff;
  padding: 1rem;
}
.navbar .hamburger-menu {
  visibility: hidden;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
}
.navbar .btn1 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: none;
  background: none;
  position: relative;
  padding: 1px;
  text-decoration: none;
  transition: all 0.18s ease-in-out;
  transform: translate3d(0, 0, 0);
  width: 200px;
  height: 65px;
}
.navbar .btn1 .btnInner1 {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: var(--size-sm) var(--size-default);
  border: none;
  border-radius: 50px;
  background: #C74A42;
  color: white;
  font-weight: 500;
  font-size: 22px;
  z-index: 2;
  transition: all 0.18s ease;
  cursor: pointer;
}
.navbar .btn1 .btnInner1 .icon1 {
  font-size: 20px;
  margin-right: 10px;
  color: white;
}
.navbar .btn1:hover .btnInner1 {
  background-color: #fff;
  color: #C74A42;
  border: solid 1px #C74A42;
}
.navbar .btn1:hover .icon1 {
  color: #C74A42;
}
.navbar .btn1:hover .pulsing:before {
  animation: pulsing 2.5s linear infinite;
}
.navbar .btn1:hover .pulsing:after {
  animation: pulsing1 2.5s linear infinite;
}
.navbar .btn1:active {
  transform: scale(0.95);
}
.navbar .btn1:active .btnInner1 {
  transform: scale(0.95);
}

.pulsing {
  width: 99%;
  height: 99%;
  border-radius: 50px;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pulsing:before, .pulsing:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: inherit;
  top: 0;
  left: 0;
  z-index: 0;
  background: #C74A42;
  border-radius: inherit;
  animation: pulsing 2.5s linear infinite;
}
.pulsing:after {
  animation: pulsing1 2.5s linear infinite;
}

@keyframes pulsing {
  0% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
  }
  20% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.2;
    transform: scaleY(1.8) scaleX(1.4);
  }
  80% {
    opacity: 0;
    transform: scaleY(1.8) scaleX(1.4);
  }
  90% {
    opacity: 0;
    transform: scaleY(1) scaleX(1);
  }
}
@keyframes pulsing1 {
  0% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
  }
  20% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.2;
    transform: scaleY(1.3) scaleX(1.15);
  }
  80% {
    opacity: 0;
    transform: scaleY(1.3) scaleX(1.15);
  }
  90% {
    opacity: 0;
    transform: scaleY(1) scaleX(1);
  }
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

.navbar-nav {
  list-style: none;
  display: flex;
}
.navbar-nav li {
  margin-left: 40px;
}
.navbar-nav li a {
  color: #333;
  text-decoration: none;
  font-size: 1rem;
}
.navbar-nav li a:hover {
  color: #ff5a5a;
  cursor: pointer;
}

#hero {
  background-image: url("/Images/HeroImg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  border-radius: 30px;
  margin: 0 110px 0 110px;
}
#hero .hero-content {
  position: relative;
  margin: 0 auto;
  display: grid;
}
#hero .hero-content h1 {
  margin-top: 250px;
  font-size: 6rem;
  font-weight: 500;
  padding: 5px 0;
}
#hero .hero-content p {
  font-size: 3rem;
}
#hero .hero-content .stem {
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  orphans: auto;
  text-align: start;
  text-indent: 0px;
  text-transform: none;
  white-space: normal;
  widows: auto;
  word-spacing: 0px;
  margin-bottom: 1rem;
}
#hero .hero-content .stem2 {
  visibility: hidden;
}
#hero .hero-content img {
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 80px;
  left: 500px;
}

.about-section {
  height: -moz-max-content;
  height: max-content;
  padding: 4rem 0;
}
.about-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 7rem;
}
.about-section .container .aboutCtn {
  margin-bottom: 3rem;
  font-size: 3rem;
  font-weight: 600;
  color: darkred;
}
.about-section .container .infoCtn .info {
  display: flex;
  align-items: center;
  flex-direction: row;
  overflow: hidden;
  background-color: #000;
}
.about-section .container .infoCtn .letter {
  width: 500px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 1px;
}
.about-section .container .infoCtn .letter p {
  width: 400px;
  padding: 3%;
}
.about-section .container .infoCtn .letter span {
  font-size: 2rem;
}
.about-section .container .infoCtn img {
  width: 500px;
  height: 400px;
  transition: 0.3s ease transform;
}
.about-section .container .infoCtn img:hover {
  transform: scale(1.1);
}

.donation-section {
  overflow: hidden;
  display: flex;
  position: relative;
  height: 100vh;
  width: 68vw;
  margin: 0 auto;
}
.donation-section::after {
  content: "";
  background-image: url("/Images/shaun-darwood-TC6u_HnDDqs-unsplash.jpg");
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  filter: blur(5px);
  z-index: -1;
}
.donation-section .container {
  margin: 0 auto;
  height: 100vh;
  max-width: 1500px;
}
.donation-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: darkred;
  margin: 45px 0;
}
.donation-section p {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 200;
}
.donation-section .donationDetail {
  display: flex;
  margin-top: 50px;
  justify-content: space-around;
  text-decoration: none;
}
.donation-section .donationDetail span {
  font-weight: 700;
}
.donation-section span p {
  text-align: center;
  max-width: 1200px;
  margin-top: 20px;
}

.quotation-section {
  max-height: 100vh;
  height: 100vh;
  padding: 4rem 0;
  background-image: url(/Images/matteo-fusco-m94kn8Rp61Q-unsplash.jpg);
  background-position: center;
  background-size: cover;
  color: #fff;
  position: relative;
  display: grid;
  align-items: center;
  width: 68vw;
  margin: 0 auto;
}
.quotation-section::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #fff;
  opacity: 20%;
  border: none solid rgba(225, 225, 225, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 0;
}
.quotation-section .container {
  max-width: 1200px;
  position: relative;
  z-index: 99;
  align-items: center;
  justify-content: center;
  display: grid;
  gap: 20px;
}
.quotation-section .container p {
  font-size: 1.8rem;
  letter-spacing: 1px;
}
.quotation-section .container span {
  font-size: 2rem;
}
.quotation-section .dot1 {
  position: absolute;
  top: 35px;
  left: 35px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
}
.quotation-section .dot3 {
  position: absolute;
  top: 35px;
  right: 35px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
}
.quotation-section .dot2 {
  position: absolute;
  bottom: 35px;
  right: 35px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
}
.quotation-section .dot4 {
  position: absolute;
  bottom: 35px;
  left: 35px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
}

.careers-section {
  height: 100vh;
  background-image: url(/Images/tom-cleary-MFZYwRJnKAo-unsplash.jpg);
  background-position: center;
  background-size: cover;
  color: #fff;
  align-content: center;
  width: 68vw;
  margin: 0 auto;
}
.careers-section .container {
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid #909090;
  border-radius: 20px;
  padding: 20px;
}
.careers-section .container h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 20px;
  font-weight: 600;
  color: darkred;
}
.careers-section .container p {
  font-size: 1rem;
}
.careers-section .container ul {
  max-width: 850px;
  margin: 0 150px;
  text-align: left;
}
.careers-section .container ul p {
  text-align: left;
  font-weight: 600;
  margin: 30px 0 20px 0;
}
.careers-section .container ul li {
  margin-bottom: 10px;
  font-weight: 600;
}
.careers-section .container p {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 600;
}
.careers-section .container span {
  font-weight: 700;
}
.careers-section .container a {
  text-decoration: underline;
  color: #fff;
  font-weight: 700;
}
.careers-section .container .email {
  margin-top: 20px;
}
.careers-section .container .email p {
  line-height: 25px;
  max-width: 900px;
  font-weight: 400;
  text-align: left;
}

.blog-section {
  padding: 4rem 0;
  height: 100vh;
  width: 68vw;
  margin: 0 auto;
}
.blog-section .container {
  position: relative;
  text-align: center;
  width: auto;
}
.blog-section .container h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: darkred;
  margin-bottom: 1rem;
}
.blog-section .container::after {
  position: absolute;
  content: "";
  top: 115px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #424242;
  z-index: 0;
}
.blog-section .container .view-all-blogs {
  position: absolute;
  top: 120px;
  right: 0;
  width: 130px;
  height: 30px;
  border: 1px solid #C74A42;
  font-size: 12px;
  color: #000;
  cursor: pointer;
  border-radius: 5px;
  background: #fff;
}
.blog-section .container .view-all-blogs:hover {
  background-color: #C74A42;
  color: #fff;
}
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 150px 0;
}
.blog-section .blog-post {
  border: 1px solid #424242;
  padding: 1rem;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-section .blog-post h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}
.blog-section .blog-post a {
  color: #C74A42;
  text-decoration: none;
}
.blog-section .blog-post a:hover {
  text-decoration: underline;
}
.blog-section .read-more {
  margin-top: auto;
  font-weight: bold;
}
.blog-section .placeholder {
  color: #888;
  font-style: italic;
  text-align: center;
}

#footer {
  padding: 2rem 0;
  background-color: rgb(25.5, 25.5, 25.5);
  color: #fff;
  height: auto;
}
#footer .container {
  display: flex;
  justify-content: space-around;
  padding: 0 50px;
}
#footer .container .address h2 {
  color: #fff;
  font-weight: 300;
}
#footer .container .address p {
  font-weight: 100;
  color: #fff;
  font-size: small;
}
#footer .container .address a {
  text-decoration: none;
  font-weight: 100;
  color: #fff;
  font-size: small;
}
#footer .container .nav {
  margin-top: 20px;
  display: grid;
  justify-content: center;
  line-height: 6px;
}
#footer .container .nav a {
  text-decoration: none;
  font-weight: 100;
  color: #fff;
  font-size: small;
}

/* Mobile First (up to 767px) */
@media (max-width: 767px) {
  .container {
    max-width: -moz-fit-content;
    max-width: fit-content;
    overflow: hidden;
  }
  /* Navbar */
  .navbar .container {
    border: none;
    background: none;
    margin: 0;
    padding: 0;
  }
  .navbar .container .navbar-brand {
    display: none;
  }
  .navbar .container .navbar-nav {
    display: none;
  }
  .navbar .container .btn1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: #C74A42;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0;
  }
  .navbar .container .btn1 .btnInner1 {
    justify-content: center;
  }
  .navbar .container .btn1 .btnText {
    display: none;
  }
  .navbar .container .btn1 .icon1 {
    margin: 0;
  }
  .navbar .hamburger-menu {
    visibility: visible;
    z-index: 1000;
  }
  .navbar .hamburger-menu a.navbar-brand {
    font-size: 2rem;
    margin: 0 auto;
    font-weight: 500;
    display: block;
    width: -moz-max-content;
    width: max-content;
  }
  .navbar #menu__toggle {
    opacity: 0;
    position: absolute;
  }
  .navbar #menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
  }
  .navbar #menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(90deg);
  }
  .navbar #menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
  }
  .navbar #menu__toggle:checked ~ .menu__box {
    visibility: visible;
    left: 0; /* Slide in from the left */
  }
  .navbar .menu__btn {
    display: flex;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 20px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 1001;
  }
  .navbar .menu__btn span {
    display: block;
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #616161;
    transition: all 0.25s ease;
  }
  .navbar .menu__btn span::before,
  .navbar .menu__btn span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #616161;
    transition: all 0.25s ease;
  }
  .navbar .menu__btn span::before {
    top: -8px;
  }
  .navbar .menu__btn span::after {
    top: 8px;
  }
  .navbar .menu__box {
    position: fixed;
    padding: 80px 0 80px 0;
    top: 0;
    left: -100%; /* Hidden off-screen */
    z-index: 1000; /* Lower than the button so the button is clickable */
    width: 300px;
    height: 100%;
    list-style: none;
    background-color: #ECEFF1;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);
    transition: left 0.25s ease;
  }
  .navbar .menu__item {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.25s ease;
  }
  .navbar .menu__item:hover {
    background-color: #CFD8DC;
  }
  /* Hero Section */
  #hero {
    margin: 0 20px;
    height: 80vh;
  }
  #hero .hero-content h1 {
    font-size: 3rem;
    margin-top: 25px;
  }
  #hero .hero-content p {
    font-size: 1.4rem;
    padding: 0 5px;
  }
  #hero .hero-content .stem {
    display: flex;
    font-size: 0.9rem;
    margin: 0 auto;
    padding: 0 20px;
  }
  #hero .hero-content img {
    display: none;
  }
  /* About Section */
  .about-section {
    padding: 0;
  }
  .about-section .aboutCtn {
    font-size: 2rem;
  }
  .about-section .letter {
    width: 100%;
    height: auto;
    padding: 1.5rem;
  }
  .about-section .container .infoCtn .letter p {
    width: 350px;
  }
  .about-section .info {
    padding-left: 15px;
    padding-right: 15px;
  }
  .about-section .info p {
    font-size: 1rem;
  }
  .about-section .lt1 {
    background-image: url("/Images/adrian-smith-cIKBjFaQ9Ks-unsplash.jpg");
    background-size: cover;
  }
  .about-section .lt2 {
    background-image: url("/Images/nasa-Q1p7bh3SHj8-unsplash.jpg");
    background-size: cover;
  }
  .about-section .lt3 {
    background-image: url("/Images/andres-dallimonti-kjqTlMHLci4-unsplash.jpg");
    background-size: cover;
  }
  .about-section .lt4 {
    background-image: url("/Images/charles-shaffer-Pvgwp9-g99A-unsplash.jpg");
    background-size: cover;
  }
  .about-section img {
    display: none;
  }
  /* Donation Section */
  .donation-section {
    flex-direction: column;
    width: 90vw;
  }
  .donation-section .container {
    max-width: -moz-fit-content;
    max-width: fit-content;
    background-size: cover;
    align-content: center;
  }
  .donation-section .container h2 {
    font-size: 2rem;
    margin: 50px 0;
  }
  .donation-section .container p {
    font-size: 1rem;
    padding: 0 10px;
  }
  .donation-section span p {
    margin-top: 30px;
  }
  .donation-section .donation-section img {
    width: 100%;
    height: 100vh;
  }
  .donation-section .donationDetail {
    flex-direction: row;
    text-align: center;
    margin-top: 30px;
  }
  /* Quotation Section*/
  .quotation-section {
    width: 90vw;
  }
  .quotation-section .container {
    max-width: 600px;
  }
  .quotation-section .container p {
    font-size: 1rem;
  }
  .quotation-section .container span {
    font-size: 1rem;
  }
  .quotation-section .dot1 {
    width: 10px;
    height: 10px;
    top: 20px;
    left: 20px;
  }
  .quotation-section .dot2 {
    width: 10px;
    height: 10px;
    bottom: 20px;
    right: 20px;
  }
  .quotation-section .dot3 {
    width: 10px;
    height: 10px;
    top: 20px;
    right: 20px;
  }
  .quotation-section .dot4 {
    width: 10px;
    height: 10px;
    bottom: 20px;
    left: 20px;
  }
  /* Careers Section */
  .careers-section {
    width: 90vw;
  }
  .careers-section .container {
    height: 85vh;
    padding: 25px;
  }
  .careers-section .container h2 {
    font-size: 1.5rem;
    margin-top: 3px;
  }
  .careers-section .container p {
    font-size: 0.8rem;
  }
  .careers-section .container ul {
    display: contents;
    margin-top: 20px;
  }
  .careers-section .container ul p {
    margin-top: 2px;
  }
  .careers-section .container ul li {
    font-size: 0.8rem;
    line-height: 5px;
  }
  .careers-section .container .email {
    margin-top: 20px;
  }
  .careers-section .container .email p {
    font-size: 0.8rem;
    line-height: 15px;
    text-decoration: none;
  }
  /* Blog Section */
  .blog-section {
    width: 95vw;
    padding: 2rem 0;
    height: auto;
  }
  .blog-section .container h2 {
    font-size: 2rem;
  }
  .blog-section .container p {
    font-size: 1rem;
    padding: 0 10px;
  }
  .blog-section .container::after {
    top: 70px;
    display: none;
  }
  .blog-section .blog-grid {
    padding: 60px 0;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .blog-section .blog-post {
    padding: 0.75rem;
  }
  .blog-section .blog-post h3 {
    font-size: 1.25rem;
  }
  /* Footer*/
  #footer {
    margin: 0;
  }
  #footer .container {
    justify-content: space-around;
    margin: 0 auto;
    padding: 0;
  }
  #footer .address h2 {
    font-size: 1.2rem;
    padding-bottom: 5px;
  }
  #footer .address {
    padding-right: 150px;
  }
  #footer .address p {
    text-decoration: none;
  }
}
/* Tablet (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: 70%;
  }
  /* Navbar */
  .navbar .container {
    margin: 0 auto;
  }
  .navbar .container .navbar-brand {
    font-size: 1rem;
  }
  .navbar .container ul li {
    margin-left: 15px;
  }
  /* Hero Section */
  #hero {
    margin: 0 40px;
    height: 75vh;
  }
  #hero #hero h1 {
    font-size: 3rem;
  }
  #hero .hero-content .stem {
    font-size: 2.5rem;
  }
  #hero #hero p {
    font-size: 1.3rem;
  }
  /* About Section */
  .about-section .aboutCtn {
    font-size: 2.8rem;
  }
  .about-section .letter {
    width: 100%;
    height: auto;
    padding: 1rem;
  }
  /* Donation Section */
  .donation-section {
    flex-direction: row;
  }
  .donation-section .container {
    padding: 50px;
  }
  .donation-section .container h2 {
    margin: 40px 0;
  }
  .donation-section .container p {
    font-size: 1.5rem;
  }
  .donation-section img {
    width: 100%;
    height: 60vh;
  }
  .donationDetail {
    flex-direction: row;
    text-align: center;
    margin-top: 50px;
  }
  /* Quotation Section*/
  .quotation-section .container {
    max-width: 900px;
  }
  .quotation-section .container p {
    font-size: 2rem;
  }
  .quotation-section .container span {
    font-size: 1.5rem;
  }
  .quotation-section .dot1 {
    width: 10px;
    height: 10px;
    top: 20px;
    left: 20px;
  }
  .quotation-section .dot2 {
    width: 10px;
    height: 10px;
    bottom: 20px;
    right: 20px;
  }
  .quotation-section .dot3 {
    width: 10px;
    height: 10px;
    top: 20px;
    right: 20px;
  }
  .quotation-section .dot4 {
    width: 10px;
    height: 10px;
    bottom: 20px;
    left: 20px;
  }
  /* Careers Section */
  .careers-section h2 {
    font-size: 2rem;
  }
  .careers-section .container {
    padding: 30px;
    height: 90vh;
  }
  .careers-section .container ul {
    display: contents;
  }
  .careers-section .container p {
    font-size: 1rem;
  }
  .careers-section .container .email {
    margin-top: 30px;
  }
}/*# sourceMappingURL=styles.css.map */