/*****************************************/
/**************ANIMATION***************/
/*****************************************/
.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
  }
  .reveal.active{
    transform: translateY(0);
    opacity: 1;
  }

p, a{
    font-family: 'Karla', sans-serif;
}

h1{
    font-family: 'Karla', sans-serif;}
h2{
    font-family: 'Karla', sans-serif;
}

body{
    display:flex;
    flex-direction:column;
}


/*****************************************/
/**************DONATE TOP STYLE***********/
/*****************************************/
img#mining_circle{
    height:28vh;
    margin-right:5vw;
    margin-left: -2vw;
}
.donate-top div.right{
    margin-left:2vw;
}

.donate-top, .donate-mid, .donate-bottom{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 12vh 12vw 12vh 12vw;
}
.donate-top{
    padding-top: 18vh;
    padding-bottom: 0vh;
}

/*****************************************/
/**************DONATE MID STYLE***********/
/*****************************************/
.donate-mid{
    padding-top:0vh;
    transform: translateY(-18vh);
    
}

.donate-top h1{
    margin-bottom:4vh;
}
.donatedots{
    width: 45vw;
    z-index: -1;
}

@media (max-width: 576px) {
    .mc_rings {
        width: 0vw;
        height: auto;
        
    }
    .pad {
        padding-top: 5vh;
    }
  }
  @media (min-width: 577px) {
    .mc_rings {
        margin-right: 5vw;
        width: 20vw;
        height: auto;
        
    }
    .pad {
        padding: 5vh;
    }
  }

.donate-mid div.right{
    margin-left: 2vw;
    transform: translateY(-5vh);
}
.donate-mid div.right h1{
    margin-bottom: 5vh;
}
.donate-mid div.right .one, .donate-mid div.right .two, .donate-mid div.right .three{
    margin-bottom: 7vh;
}

.donate-mid div.right h1, .donate-mid div.right .one {
    margin-left: -4vw;
}

.donate-mid div.right .two{
    margin-left: -2vw;
}

img.donatedots{
    transform: translateY(-10vh);
}

h4{
    font-family:'Karla', sans-serif;
    font-size: 28pt;
}

h4 p{
    font-family:'Karla', sans-serif;
    font-size: 28pt;
    color:#72A08D;
}

.ring1{
    transform: translate(43px, -765px);
    text-align: center;
    width: 150px;
}
.ring2{
    transform: translate(75px, -470px);
    text-align: center;
}
.ring3{
    transform: translate(155px, -160px);
    text-align: center;
}

/*****************************************/
/*************DONATE BOTTOM STYLE*********/
/*****************************************/
.donate-bottom{
    padding-top:0px;
}

/*****************************************/
/**************BUTTONS STYLE***************/
/*****************************************/
.donate-button{
    color: white;
    background-color: #72A08D;
    border: none;
    padding: 1.5vh 3vw;
    border-radius: 5px;
    font-family: 'Karla', sans-serif;
    margin-top: 5vh;
}

button{
    font-weight: bold;
}
/*****************************************/
/**************HEADER STYLE***************/
/*****************************************/
.nav-link {
    color: rgb(0, 0, 0) !important;
    font-family: 'Karla', sans-serif !important;
}
.navbar .dropdown-menu {
    background-color: #387EA5;
  }
  
  .navbar .dropdown-item:hover {
      background-color: #2B6180;
      color: rgb(255, 255, 255);
    }
  .navbar .dropdown-item {
      color: rgb(255, 255, 255);
      font-family: 'Karla', sans-serif;
  }


a.nav-link{
    font-family: 'Karla', sans-serif;
    font-size: 18px;

}
a.dropdown-item{
    font-size: 18px;
}

.navbar .left{
    display: flex;
    flex-direction: row;
    align-items: center;
}
#logo{
    height: 7vh;
    margin: 2vh 1vw 2vh 1vw;
}
.container-fluid{
    display: block;
    position: sticky;
    top: 0;
    z-index: 20;
}
/*****************************************/
/**************FOOTER STYLE***************/
/*****************************************/
.footer{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer .top{
    display: flex;
    flex-direction: row;
    padding: 10vh 10vw 10vh 10vw;
    background: #3B3B3B;
}
.footer .top p, h3{
    color:white;
    font-family: 'Karla', sans-serif;

}
.footer .bottom{
    padding-bottom: 3vh;
    padding-top: 5vh;
}
.footer img{
    height:5vh;
}
img.ocf{
    height:8vh;
}

.footer .left, .footer .mid, .footer .right{
    margin: 0vh 5vw 0vh 5vw;
    text-align: center;
}

.footer .left, .footer .right{
    text-align: left;
}

.footer .left{
    white-space: nowrap;
}

.footer .left p{
    margin:0;
}

img.ocf, .footer h3{
    padding-bottom:2vh;
}

.socials{
    display: flex;
    justify-content: space-evenly;
}

img.ocf{
    margin-left:3vw;
}

.footer a{
    text-decoration: none;
}

/*****************************************/
/**************POPUP STYLE***************/
/*****************************************/

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 60%; /* Could be more or less, depending on screen size */
    display:flex;
    flex-direction: row;
    line-height: 150%;
  }

  #donate-popup{
      width: 60%;
      padding:6vw;
      padding-bottom: 2vw;
  }

  #dp-top{
    display: flex;
    flex-direction: row;
  }
  
  #donate-popup h3{
      color:#6B9B87;
      text-align: center;
      margin-bottom:3vh;
      font-family: 'Lora';
  }

  .check{
      width:80%;
      margin-left: 1vw;
  }
  .online{
      margin-right: 1vw;
      margin-left: 1vw;
      border-right: gray;
      border-right-style: solid;
      border-right-width: 1px;
      padding-right:4vw;
  }
  .check p{
      margin-bottom:0px;
  }

  li {
      font-family: 'Karla';
  }

  #ty{
      margin-top:3vh;
      color:#6B9B87;
  }

  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    transform: translate(5vh, -6vh);
    text-align: end;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }