* {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
@font-face {
  font-family: "samarn";
  src: url("./fonts/samarn_font.TTF");
}
p {
  font-weight: 300;
  color: #111;
}
.banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(cover.jpg);
  background-size: cover;
}
.banner .content {
  max-width: 900px;
  text-align: center;
}
.banner .content h2 {
  font-size: 5em;
  color: #05392e;
}
.banner .content p {
  font-size: 2em;
  color: #ffffff;
}
.btn {
  font-size: 1em;
  color: white;
  background: #410200;
  display: inline-block;
  padding: 25px 50px;
  margin-top: 20px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  transition: 0.5s;
}
.btn:hover {
  letter-spacing: 6px;
}

header {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  padding: 40px 100px;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}
header.sticky {
  background: white;
  padding: 10px 100px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.logo {
  color: #ffffff;
  font-size: 2em;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(to right, #ff671f, wheat, #046a38);
  background-size: 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate-gradient 2.5s linear infinite;
  font-family: "samarn", sans-serif;
}
.logo span {
  color: #410200;
}
header .navigation {
  position: relative;
  display: flex;
}
header .navigation li {
  list-style: none;
  margin-left: 30px;
}
header .navigation li a {
  text-decoration: none;
  list-style: none;
  color: #fff;
  font-weight: 300;
}
header.sticky .navigation li a {
  color: #410200;
}

header.sticky .logo {
  color: #410200;
}
header .navigation li a:hover {
  color: #046a38;
}
section {
  padding: 100px;
}
.row {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.row .col50 {
  position: relative;
  width: 48%;
}
.titleText {
  color: #111;
  font-size: 2em;
  font-weight: 300;
}
.titleText span {
  color: #410200;
  font-weight: 700;
  font-size: 1.5em;
}
.row .col50 .shreeyamuna {
  position: relative;
  width: 100%;
  height: 100%;
}
.row .col50 .shreeyamuna img {
  position: relative;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.causes .content {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  margin-top: 40px;
}
.causes .content .box {
  width: 340px;
  margin: 20px;
  border: 15px solid #fff;
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.08);
}
.causes .content .box .imgBx {
  position: relative;
  width: 100%;
  height: 300px;
}
.causes .content .box .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 425px) {
  .about {
    padding: 16px;
  }
  .row {
    flex-direction: column;
    width: 90%;
  }
  .row .col50 {
    width: 100%;
  }
  .shreeyamuna {
  }
}
