/* width */
::-webkit-scrollbar {
  width: 5px; }

/* Track */
::-webkit-scrollbar-track {
  background: #333; }

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(57, 255, 20, 0.7);
  border-radius: 10px; }

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #a569bd; }

.container {
  max-width: 1280px;
  padding: 0 1.5rem;
  margin: auto;
  overflow: hidden; }

.btn-main, .btn-light, .btn-dark {
  display: inline-block;
  padding: 0.8rem 2rem;
  transition: all 0.5s;
  border: none;
  cursor: pointer; }

.btn-main {
  color: #333;
  background-color: #ddd; }
.btn-light {
  color: #333;
  background-color: #f4f4f4; }
.btn-dark {
  color: #f4f4f4;
  background-color: #333; }

button[class^="btn-"]:hover,
a[class^="btn-"]:hover,
input[class^="btn-"]:hover {
  background-color: #a569bd; }

.bg-main {
  background: #ddd;
  color: #aaa; }
.bg-dark {
  background: #333;
  color: #fff; }
.bg-light {
  background: #f4f4f4;
  color: #aaa; }
.bg-medium {
  background: #ccc;
  color: #aaa; }

.lead {
  font-size: 1.3rem;
  margin-bottom: 2rem; }

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

.py-1 {
  padding: 1rem 0; }
.py-2 {
  padding: 2rem 0; }
.py-3 {
  padding: 3rem 0; }
.py-4 {
  padding: 4rem 0; }

.my-1 {
  margin: 1rem 0; }
.my-2 {
  margin: 2rem 0; }
.my-3 {
  margin: 3rem 0; }
.my-4 {
  margin: 4rem 0; }

.section-title {
  font-size: 2rem;
  display: block;
  padding-bottom: 0.5rem;
  text-align: center;
  font-weight: 100;
  text-transform: uppercase; }

.bottom-line {
  height: 2px;
  width: 3rem;
  background: #a569bd;
  display: block;
  margin: 0 auto 1rem auto; }

.items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3); }

.item {
  position: relative;
  background: #a569bd;
  overflow: hidden; }
  .item:after {
    content: "";
    position: absolute;
    display: block;
    background: inherit;
    opacity: 0.9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(2) translateX(-75%) translateY(-75%) rotate(-28deg);
    transition: transform 3s cubic-bezier(0.2, 1, 0.3, 1); }
  .item:hover:after {
    transform: scale(2) translateX(0) translateY(0) rotate(-28deg); }
  .item:hover .item-image {
    transform: scale(1.2); }
  .item:hover .item-text {
    opacity: 1;
    transform: translateY(0); }
  .item-image {
    height: auto;
    transform: translateZ(0);
    display: block;
    transition: transform 750ms cubic-bezier(0.2, 1, 0.3, 1); }
  .item-image:before {
    content: "";
    display: block;
    padding-top: 75%;
    overflow: hidden; }
  .item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 0; }
  .item-text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    text-align: center;
    z-index: 1;
    color: #fff;
    transform: translateY(-20%);
    transition: opacity 500ms cubic-bezier(0.2, 1, 0.3, 1), transform 500ms cubic-bezier(0.2, 1, 0.3, 1);
    transition-delay: 350ms; }
  .item-text-wrap {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }
  .item-text-title {
    font-size: 2rem;
    padding: 0 1rem;
    margin: 5px 0 0 0; }
  .item-text-category {
    text-transform: uppercase;
    font-size: 1.2rem;
    opacity: 0.7;
    margin: 0; }

* {
  margin: 0;
  padding: 0; }

body {
  background: white;
  font-family: "Dosis", sans-serif;
  line-height: 1.6; }

a {
  text-decoration: none;
  color: #f4f4f4; }

h2,
h3,
h4 {
  text-transform: uppercase; }

img {
  width: 100%; }

#logo {
  width: 70px;
  height: 70px;
  transform: translateY(-10px);
  color: light-color;
  text-transform: uppercase;
  filter: invert(100%) sepia(31%) saturate(5885%) hue-rotate(44deg) brightness(90%) contrast(126%); }

#main-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  width: 100%;
  text-shadow: 0 0 9px #6ee650; }
  #main-nav img {
    opacity: 0.5; }

ul {
  display: flex; }

li {
  padding: 1rem 1.5rem;
  list-style: none; }

.metamask {
  border-style: none;
  border-radius: 15px;
  height: 40px;
  width: 100px;
  font-family: "Dosis", sans-serif;
  background-color: #a569bd;
  text-decoration: none;
  color: #f4f4f4;
  text-transform: uppercase;
  border: 3px transparent solid;
  transition: border-color 0.5s;
  opacity: 0.7; }
  .metamask:hover {
    border-color: #f4f4f4; }

.showfoot {
  background-color: rgba(98, 18, 136, 0.9);
  height: 30px;
  margin-bottom: 90px;
  width: auto; }

a {
  border-radius: 3px;
  text-decoration: none;
  color: #f4f4f4;
  border-bottom: 3px transparent solid;
  padding-bottom: 0.5rem;
  transition: border-color 0.5s;
  opacity: 0.7; }
  a .glo {
    text-transform: lowercase; }
  a:hover {
    border-color: #a569bd; }
  a.current {
    border-color: #ddd; }
    a.current:hover {
      border-color: #a569bd; }

.textbox {
  height: auto;
  width: auto;
  background-color: white;
  font-size: 1.3rem;
  margin-right: 45px;
  margin-top: 150px; }

.snoc {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  max-width: 40%; }

.snoc3 {
  display: grid;
  grid-template-columns: 1fr 1fr; }

.sn0 {
  border-style: none;
  border-radius: 15px;
  height: 40px;
  width: 100px;
  font-family: "Dosis", sans-serif;
  background-color: #a569bd;
  text-decoration: none;
  color: #f4f4f4;
  text-transform: uppercase;
  border: 3px transparent solid;
  margin: 2px;
  margin-top: 20px;
  transition: border-color 0.5s;
  opacity: 0.7; }
  .sn0:hover {
    border-color: #333; }

.heart {
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: black;
  color: #a569bd;
  padding: 2rem;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  position: relative;
  transition: all 1s; }
  .heart:hover {
    background: #a569bd;
    color: pink;
    width: 90px;
    height: 90px;
    line-height: 90px; }
    .heart:hover .process-step {
      background: #333; }

#header-home {
  background: url("../img/SDlogo7.jpg") no-repeat center right/cover;
  height: 100vh;
  color: light-color;
  position: relative; }
  #header-home .container {
    position: relative;
    height: 100%;
    overflow: hidden; }
  #header-home .header-content {
    text-align: center;
    padding-top: 10%;
    padding-bottom: 10%;
    font-family: "Source Code Pro", monospace;
    color: #fff;
    align-items: center; }
    #header-home .header-content h1 {
      font-size: 2rem;
      line-height: 1.2;
      text-shadow: 0 0 9px #6ee650; }
    #header-home .header-content .lead {
      text-shadow: 0 0 9px #6ee650; }
#header-inner {
  background: url("../img/SDlogo7.jpg") no-repeat 20% 30%/cover;
  height: 5.5rem;
  border-bottom: 3px solid #a569bd; }
  #header-inner .shade {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5.5rem; }

.imgo {
  opacity: 0.8; }

#home-a .specials {
  margin-top: 3rem;
  display: grid;
  grid-gap: 15rem;
  grid-template-columns: repeat(2, 1fr);
  font-size: 1.3rem; }
  #home-a .specials .fas {
    color: #a569bd;
    padding-bottom: 0.4rem; }
#home .mis {
  background: #ccc; }
#home-b {
  background-color: white; }
  #home-b .stats {
    width: 95%;
    font-size: 1.3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr); }
    #home-b .stats:nth-child(even) {
      background: #ccc; }
    #home-b .stats ul {
      display: grid;
      grid-template-columns: repeat(1fr, 3); }
    #home-b .stats li {
      line-height: 1; }
      #home-b .stats li.stats-title {
        font-size: 1.5rem; }
      #home-b .stats li.stats-number {
        font-size: 2rem;
        font-weight: bold; }
    #home-b .stats div {
      padding: 3rem 0; }
      #home-b .stats div:nth-child(odd) {
        background: white; }
      #home-b .stats div:nth-child(even) {
        background: white; }
#home-c .process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.5rem;
  text-align: center; }
  #home-c .process-step {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 24px;
    background: #a569bd;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    line-height: 35px;
    padding: 1 rem;
    transition: all 1s; }
  #home-c .process-icon {
    border-radius: 50%;
    background: #333;
    color: #fff;
    padding: 2rem;
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    position: relative;
    transition: all 1s; }
    #home-c .process-icon:hover {
      background: #a569bd;
      width: 90px;
      height: 90px;
      line-height: 90px; }
      #home-c .process-icon:hover .process-step {
        background: #333; }

#about-a .about-info {
  display: grid;
  grid-template-areas: "bioimage bio bio" "award1 award2 award3";
  grid-gap: 1.2rem; }
#about-a .bio-image {
  grid-area: bioimage; }
#about-a .bio {
  grid-area: bio;
  border-left: 3px solid #a569bd;
  padding: 0.8rem; }
#about-a .award-1 {
  grid-area: award1; }
#about-a .award-2 {
  grid-area: award2; }
#about-a .award-3 {
  grid-area: award3; }
#about-a .award-1 .fas,
#about-a .award-2 .fas,
#about-a .award-3 .fas {
  color: #a569bd;
  margin: 1rem; }
#about-b .progress {
  overflow: hidden;
  height: 20px;
  background: #ccc;
  border-radius: 5px;
  margin-bottom: 0.6rem; }
  #about-b .progress div {
    height: 100%;
    color: #fff;
    text-align: center;
    background: #a569bd; }
#about-c .about-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem; }
  #about-c .about-logos img {
    width: 70%; }
#about-d .testimonials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.5rem; }
  #about-d .testimonials ul {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    align-items: center; }
  #about-d .testimonials p {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.5rem; }
  #about-d .testimonials img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 0.5rem; }

#contact-a {
  display: grid;
  grid-template-columns: 1fr 1fr; }
  #contact-a .text-fields {
    grid-gap: 1.2rem;
    margin-bottom: 1.2rem; }
#contact-b .contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center; }
#contact-c h1 {
  text-align: center;
  font-size: 2rem; }

#main-footer {
  background: #333;
  color: #fff;
  height: 5rem; }
  #main-footer .footer-content {
    display: flex;
    justify-content: space-between;
    height: 5rem;
    align-items: center; }
    #main-footer .footer-content .social .fab {
      margin-right: 1rem;
      border: 2px #fff solid;
      border-radius: 50%;
      height: 20px;
      width: 20px;
      line-height: 20px;
      text-align: center;
      padding: 0.5rem; }
      #main-footer .footer-content .social .fab:hover {
        background: #a569bd; }

.daoDashHead {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  width: 100%; }
  .daoDashHead h1 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    margin-bottom: 1rem; }
  .daoDashHead p {
    margin-top: 3rem;
    margin-bottom: 5rem;
    margin-left: 6rem;
    margin-right: 6rem; }

.dashContainer {
  width: 100%;
  height: 10rem;
  background: #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around; }

.providerContainer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .providerContainer h1 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    margin-bottom: 1rem; }
  .providerContainer .daoProject {
    width: 90%;
    max-width: 1000px;
    background: #a569bd;
    transition: 0.3s;
    height: 200px;
    margin-bottom: 50px;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center; }
    .providerContainer .daoProject:hover {
      background: #9a57b5; }
    .providerContainer .daoProject .dpiContainer {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-around; }
      .providerContainer .daoProject .dpiContainer .daoProjectIMG {
        height: 120px;
        width: 120px;
        border-radius: 30px; }
      .providerContainer .daoProject .dpiContainer .daoProjectName {
        margin-top: 10px; }
    .providerContainer .daoProject .dpButtons {
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      .providerContainer .daoProject .dpButtons .dpButton {
        border-style: none;
        border-radius: 15px;
        height: 45px;
        width: 100px;
        font-family: "Dosis", sans-serif;
        background-color: #f4f4f4;
        text-decoration: none;
        color: #a569bd;
        font-size: 1.3rem;
        text-transform: uppercase;
        border: 3px transparent solid;
        margin: 2px;
        transition: border-color 0.5s;
        opacity: 0.7; }
        .providerContainer .daoProject .dpButtons .dpButton:hover {
          border-color: #333; }
      .providerContainer .daoProject .dpButtons .dpFund {
        margin-bottom: 15px; }

.addProject {
  margin-bottom: 3rem;
  border-style: none;
  border-radius: 15px;
  height: 60px;
  width: 150px;
  font-family: "Dosis", sans-serif;
  background-color: #a569bd;
  text-decoration: none;
  color: #f4f4f4;
  font-size: 1.3rem;
  text-transform: uppercase;
  border: 3px transparent solid;
  margin: 2px;
  transition: border-color 0.5s;
  opacity: 0.7; }
  .addProject:hover {
    border-color: #333; }

.blank {
  height: 30px; }

.topLR {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #a569bd; }

.headText {
  font-size: 8rem !important;
  margin-top: -50px; }

.customInput {
  margin-left: 10px; }

.customSpan {
  margin-left: 25px;
  margin-top: 15px;
  color: #a569bd; }

.customTextColor {
  color: #333; }

.customH1 {
  transform: translateY(15px); }

.customInput2 {
  width: 45px;
  margin-left: 30px;
  margin-bottom: 25px;
  transform: translateY(-10px); }

.larger {
  font-size: 1.4rem; }

@media (max-width: 800px) {
  #header-home {
    height: 30rem; }
    #header-home .header-content {
      padding-top: 5rem; } }
@media (max-width: 500px) {
  #main-nav {
    flex-direction: column;
    align-items: center; }
    #main-nav li {
      padding: 1rem; }

  #header-home {
    height: 100vh;
    border-bottom: 3px solid #a569bd;
    background-position: 20% 30%; }
  #header-inner {
    height: 10rem; }
    #header-inner .shade {
      height: 10rem; }

  #home-a .specials,
  #home-b .stats,
  #home-c .process,
  #about-d .testimonials,
  .items,
  #contact-b .contact-info {
    grid-template-columns: 1fr; }

  #home-a .specials div {
    border-bottom: 1px #a569bd solid;
    padding-bottom: 1rem; }
    #home-a .specials div:last-child {
      padding: none;
      border-bottom: none; }
  #home-b .stats div {
    padding: 2rem 0 1rem 0; }

  #about-a .about-info {
    grid-template-areas: "bioimage" "bio" "award1" "award2" "award3"; }

  #work-a .items {
    grid-gap: 1rem; }

  #contact-a .text-fields {
    grid-template-areas: "name" "subject" "email" "phone" "message"; }
  #contact-b div {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px #f4f4f4 solid; }
    #contact-b div:last-child {
      border: none;
      margin-bottom: 0;
      padding: 0; }
  #contact-c h1 {
    font-size: 2rem; }

  #main-footer {
    height: 7rem; }
    #main-footer .footer-content {
      flex-direction: column;
      padding: 1rem;
      height: 5rem; } }
@media (max-width: 580px) {
  #header-home .header-content {
    padding-top: 3rem; } }
@media (max-height: 330px) {
  #header-home .header-content h1 {
    font-size: 2rem; }

  #home-c .process,
  #about-d .testimonials {
    grid-template-columns: repeat(2, 1fr); } }

/*# sourceMappingURL=main.css.map */
