:root {
  --primary: #f073ab;
  --secondary: #393186;
  --white: #ffffff;
}
* {
  margin: 0;
  padding: 0;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  display: block;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  background-color: var(--white) !important;
  color: #000;
  scroll-behavior: smooth;
  font-family: sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
  font-family: Eurostile;
  font-weight: 500;
  src: url(../fonts/Eurostile.ttf) format("truetype");
}
@font-face {
  font-family: Eurostile;
  font-weight: 800;
  src: url(../fonts/Eurostile-Bold.otf) format("truetype");
}
#web_display {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--primary);
  padding: 0;
}
#web_display .headers {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.headers .navbar-brand {
  position: relative;
  padding-right: 50px;
  margin-right: 0;
  z-index: 1;
}
.headers .navbar-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--white);
  -webkit-clip-path: polygon(0 0, 80% 0, 100% 72%, 0 86%);
  clip-path: polygon(0 0, 80% 0, 100% 72%, 0 86%);
  width: 100%;
  height: 178px;
  z-index: -1;
}
.headers .navbar-brand::after {
  content: "";
  position: absolute;
  inset: 0 0 0 -18px;
  background-color: orange;
  -webkit-clip-path: polygon(0 0, 77% 0, 100% 72%, 0 86%);
  clip-path: polygon(0 0, 77% 0, 100% 72%, 0 86%);
  width: 300px;
  height: 178px;
  transform: rotate(-8deg);
  z-index: -2;
}
.navbar-nav .nav-item {
  padding: 10px 40px;
  border-right: 2px dashed var(--white);
}
.navbar-nav .nav-item:last-child {
  border-right: none;
}
.navbar-nav .nav-item a {
  color: var(--white);
  letter-spacing: 2px;
  font-size: 16px;
}
.navbar-nav .active a {
  font-weight: 700;
}
.navbar-nav .active a,
.navbar-nav .nav-item a:hover {
  padding: 8px 8px 0 8px;
  border-bottom: 3px solid #fdd0af;
}
.navbar-nav .nav-link {
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
}
.navbar-brand .logo {
  height: 100%;
  width: auto;
  padding: 20px 0 0px 26px;
}
.navbar-nav .dropdown-menu {
  max-width: 280px;
  min-width: 280px;
  border: none;
  transition: all 0.5s ease;
  box-shadow: 0 0 40px rgb(0 0 0 / 20%);
}
.navbar-nav .dropdown-menu .dropdown-item {
  white-space: pre-wrap;
}
.navbar-nav .dropdown-menu .dropdown-item a::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  top: 85%;
  position: absolute;
  left: 30px;
  transform: rotate(45deg);
  z-index: 11;
}
.dropdown-toggle::after {
  display: none;
}
.navbar-nav .dropdown .dropdown-toggle i {
  margin-left: 5px;
  font-size: 12px;
  color: #000;
}
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block !important;
}
.navbar-nav .dropdown-menu .dropdown-item {
  white-space: pre-wrap;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-align: left;
}
.navbar .donate {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.navbar .donate button {
  position: relative;
  color: var(--secondary);
  background-color: var(--white);
  border-radius: 10px;
  padding: 5px 25px;
  border: none;
  font-weight: bold;
  font-size: 20px;
  width: auto;
  min-width: 210px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.navbar .donate button::before {
  content: "\f4be";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 15px;
  top: 50%;
  bottom: 0;
  opacity: 0;
  font-size: 15px;
  transform: translateY(-50%);
}
.navbar .donate button:hover {
  background: var(--secondary);
  transition: all 0.5s;
  border-radius: 50px;
  box-shadow: 0px 0px 15px #0000ff61;
  color: #ffffff;
  padding-left: 40px;
}
.navbar .donate button:hover::before {
  transition: all 0.1s;
  opacity: 1;
  left: 20px;
} 
.main_content {
  position: relative; 
}
 
.contactus {
  min-width: 300px;
  max-width: 450px;
  width: auto;
  margin: 40px auto;
}
.contactus .submit{
  width: 100%;
  display: block;
  margin-top: 20px;
  background-color: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 10px;
  color: var(--white);
  font-weight: bold;
}
.aboutus {
  position: relative;
  background-image: url(../images/img_2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: contain;
  padding: 50px 0;
  margin: 50px 0;
  color: white;
}
.aboutus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
}
.aboutus .about_box {
  position: relative;
  z-index: 1;
}
.aboutus .about_box h3,.contactus h3 {
  font-size: 45px;
  font-family: Eurostile;
}
.needus {
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background-color: #dfdfdf;
  overflow: hidden;
  position: relative;
  margin: 30px auto;
}
.needus h3,
.making_diff h3 {
  font-size: 25px;
  text-align: center;
  font-family: Eurostile;
  font-weight: bold;
  margin-bottom: 20px;
}
.needus img {
  width: 100%;
  margin-bottom: 30px;
}
.needus p {
  font-size: 18px;
  color: var(--secondary);
}
.making_diff_inner {
  position: relative;
}
.making_diff_inner .content_box {
  position: relative;
  overflow: hidden;
}
.making_diff_inner .content_box h5,
.your_help .content_box h5 {
  font-size: 25px;
  font-family: Eurostile;
  font-weight: 600;
  color: var(--primary);
}
.making_diff_inner .content_box p,
.your_help .content_box p {
  font-size: 16px;
  color: #3d3d3d;
  text-align: justify;
}
.your_help .content_box button {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  padding: 5px 25px;
  border: none;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  display: block;
}
.footer {
  position: relative;
  bottom: 0;
  background-color: #a54f76;
  width: 100%;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer ul {
  list-style: none;
  display: flex;
  margin-bottom: 0;
  gap: 20px;
  padding: 0;
  margin: 0;
}
.footer ul li a {
  text-decoration: none;
}
.footer ul li a i {
  color: #a54f76;
  background-color: var(--white);
  border-radius: 50px;
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0;
}
.footer .mailto {
  font-family: "Arial", sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
}
