@charset "utf-8";

/* CSS Document */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

:root {
  /* #8783CE */
  --primary: #2d368f;
  --white: #ffffff;
  --black: #000000;
  --fonts: "Barlow Condensed", sans-serif !important;
}

body {
  width: 100%;
  font-family: var(--fonts);
  font-size: 16px;
}

.section {
  width: 100%;
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.logo {
  margin: 50px 0;
}

h1 {
  color: var(--white);
  font-size: 68px;
  font-weight: 600;
  text-align: center;
  line-height: 100px;
  margin-bottom: 50px;
}

.btn-dropdown {
  background-color: var(--white);
  color: var(--primary);
  line-height: 44px;
  font-weight: 500;
  font-size: 24px;
  display: inline-block;
  padding: 5px 15px 8px 15px;
  border-radius: 50px;
  margin-bottom: 15px;
  transition: all 0.4s;
}

.btn-dropdown:hover,
.btn-dropdown.active {
  background-color: #8783ce;
  color: #fff;
  transition: all 0.4s;
}

.btn-dropdown img {
  transform: rotate(360deg);
  transition: all 0.4s;
}

.btn-dropdown:hover img {
  filter: brightness(0) invert(1);
}

.btn-dropdown.active img {
  transform: rotate(180deg);
  transition: all 0.4s;
  filter: brightness(0) invert(1);
}

.dropdown-div {
  background-color: var(--white);
  padding: 40px;
  border-radius: 20px;
  display: none;
}

.link-div {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  padding: 15px 15px 15px 85px;
  border-radius: 20px;
  border: 1px solid #8783ce;
  text-align: left;
  position: relative;
  transition: all 0.3s;
}

.link-div img {
  position: absolute;
  left: 15px;
  transition: all 0.3s;
}

.link-div h4 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
  transition: all 0.3s;
}

.link-div p {
  color: #666666;
  font-size: 16px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif !important;
  transition: all 0.3s;
}

.link-div:hover {
  background-color: #8783ce;
  transition: all 0.3s;
}

.link-div:hover img {
  filter: brightness(0) invert(1);
  transition: all 0.3s;
}

.link-div:hover p,
.link-div:hover h4 {
  color: #fff;
  transition: all 0.3s;
}

.btn-donate {
  font-size: 24px !important;
  line-height: 26px;
  padding: 8px 30px;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #f34b61;
  margin: 70px 0 40px 0;
  transition: all 0.4s;
}

.btn-donate span {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}

.btn-donate:hover {
  background-color: #8783ce;
  color: #fff;
  transition: all 0.4s;
}
