/* CSS Document */
/* Initialization */
body {
  margin: 0;
  background-color: #F5F5F5;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

h1 {
  font-weight: 900;
  font-size: 2.75em;
}

h2 {
  font-weight: 700;
  text-align: center;
  color: black;
}

h3 {
  font-weight: 500;
  color: #707070;
}

p {
  font-size: 18px;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

table {
  color: #707070;
  text-align: center;
  width: 100%;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

._shadow_box {
  box-shadow: 1px 1px 7px 0 rgba(0,0,0,.5);
}

._full_width {width:100%;}

._slide_anim_page_load {visibility:hidden;}
._slide_anim_page_scroll {visibility:hidden;}
._slide_anim_from_right {visibility:hidden;}
._slide_anim_from_left {visibility:hidden;}
._slide_anim_from_right_scroll {visibility:hidden;}
._slide_anim_from_left_scroll {visibility:hidden;}
.slide_up {
  animation-name: slide_up;
  -webkit-animation-name: slide_up;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  visibility: visible;
}
@keyframes slide_up {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@-webkit-keyframes slide_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}

.slide_from_right {
  animation-name: slide_from_right;
  -webkit-animation-name: slide_from_right;
  animation-duration: 1.8s;
  -webkit-animation-duration: 1.8s;
  visibility: visible;
}
@keyframes slide_from_right {
  0% {
    opacity: 0;
    transform: translateX(80%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@-webkit-keyframes slide_from_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(80%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}
.slide_from_left {
  animation-name: slide_from_left;
  -webkit-animation-name: slide_from_left;
  animation-duration: 1.8s;
  -webkit-animation-duration: 1.8s;
  visibility: visible;
}
@keyframes slide_from_left {
  0% {
    opacity: 0;
    transform: translateX(-80%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@-webkit-keyframes slide_from_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-80%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
  }
}

#loading {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: flex;
  opacity: 0.7;
  background-color: #f1f1f1;
  z-index: 99;
  justify-content: center;
  align-items: center;
}

#loading-image {
  height: auto;
  width: 60%;
  z-index: 100;
  animation-name: loading;
  -webkit-animation-name: loading;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
}

@keyframes loading {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes loading {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Certain elements can only be displayed on mobile screens less than 768px */
.mobile {
  display: none;
}

.small-mobile {
  display: none;
}

/* Side Navigation Menu */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #DEDEDE;
  overflow-x: hidden;
  padding-top: 60px;
  transition: 0.5s;
}

.sidenav p {
  font-size: 14px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 16px;
  color: #707070;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #E05959;
}

.login-join {
  float: left;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#main {
  transition: margin-left .5s;
  padding: 20px;
}

/* Navigation Bar */
nav {
  padding: 0 15px 0 15px;
  height: 64px;
}

nav a {
  font-size: 14px;
  color: #707070;

}

nav a:hover {
  color: #E05959;
}

.not-home {
  border-bottom: 0.3px solid #707070;
}

.not-home .nav-bar-brand {
  position: relative;
  left: 35%;
}

.nav-bar {
  float: left;
  padding: 22px 30px 22px 30px;
}

.nav-bar-top {
  height: 90px;
  background-color: black;
}

.nav-bar-menu {
  position: relative;
  top: 10px;
}

.nav-bar-nav {
  float: right;
  position: relative;
  top: 10px;
}

.nav-link {
  padding: 0 15px;
  color: white;
}

.nav-link button {
  font-size: 16px;
  color: white;
  background-color: white;
  background-color: rgba(0,0,0,0);
  border: 1px solid #707070;
  border-radius: 12px;
  padding: 5px 30px;
  transition: background-color .3s linear;
}

.nav-link button:hover {
  background-color: #E05959;
  border-color: #E05959;
  color: white;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  width: 100%;
  float: left;
}

.container {
  text-align: center;
  margin-top: 2.5em;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.social {
  background-color: #E05959;
  width: 50px; /*50px*/
  position: fixed;
  bottom: 50vh;
  left: -35px;
  font-size: 1.65em;
  z-index: 1;
  transition: left 0.8s;
}
.social-insta {
  border-top: 1px solid #F5F5F5;
}
.social a {
  color: #F5F5F5;
}
.social i {
  margin-left: 25px; /*25px*/
  margin-top: 10px;
  margin-bottom: 10px;
}
.social .social-insta i {
  margin-left: 18px;
}
.social:hover {
  left: 0;
}

#welcome-video {
  margin-top: 3%;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 90%;
  margin: 0 5%;
}

/****HOME STYLE****/
/* Banner */
.banner {
  height: 70vh;
  background-color: white;
  background-image: url("background images/Capture.JPG");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-text {
  width: 30%;
  padding: 15% 5% 5%;
  word-break: keep-all;
}
.banner-text h1 {
  margin: 0;
  width: max-content;
  text-transform: uppercase;
  color: white;
}
.banner-text p {
  color: white;
  padding-bottom: 30px;
}
.banner-text a button {
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  color: white;
  border: 1px solid white;
  border-radius: 20px;
  padding: 10px 35px;
  transition: background-color .3s linear;
}
.banner-text a button:hover {
  background-color: #E05959;
  border-color: #E05959;
}

/* Menu Bar */
.menu-bar {
  text-transform: uppercase;
  background-color: #E05959;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, .25);
}
.menu-bar a:hover {
  color: black;
}
.menu-bar .nav-bar {
  width: 95%;
}
.menu-wrapper {
  padding: 0;
  text-align: center;
}

/* Rest of Home Page */
.box {
  background-color: transparent;
  /*border: 5px solid #E05959;*/
  border-bottom: 5px solid #E05959;
  border-right: 5px solid #E05959;
  width: 30%;
  margin-left: auto;
  margin-right: auto;
  margin-block-start: 4.25em;
  margin-block-end: 5.25em;
}
.home-col {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5em;
}
.home-col h2 {
  border-bottom: 3px solid #E05959;
}
.home-col img {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  border-radius: 50%;
  transition: width 0.8s;
}
.home-col img:hover {
  width: 93%;
}
.home-col p {
  text-align: left;
  line-height: 1.55em;
}

/********JOIN NOW FOOTER************/
.join-now-row {
  height: auto;
  background-color: #E05959;
  padding-bottom: 4%;
}
.join-now-row h2 {
  padding-top: 50px;
  text-align: center;
  color: white;
}
.join-now-row a button {
  text-transform: uppercase;
  background-color: #E05959;
  color: white;
  border: 1px solid white;
  border-radius: 20px;
  padding: 10px 35px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.social-footer {
  width: auto;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 2%;
}
.social-footer i {
  color: #F5F5F5;
  font-size: 1.65em;
  padding: 0 1%;
}
#line {
  border: 0.3px solid #707070;
  opacity: 0.15;
}

/********ABOUT PAGE**************/
.about .row {
  display: flex;
  align-items: center;
}
.about h1 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-bottom: 5px solid #E05959;
  padding-bottom: 0.5em;
  margin-block-start: 2em;
  margin-block-end: 2.25em;
}
.about p {
  text-align: left;
  line-height: 1.55em;
  margin-top: auto;
  margin-bottom: auto;
}
.about img {
  width: 80%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

/********MISSION*******/
.mission {
  margin-block-start: 4.75em;
  margin-block-end: 4.75em;
}
.mission h1 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-bottom: 5px solid #E05959;
  padding-bottom: 0.5em;
  margin-block-start: 2.25em;
  margin-block-end: 2.25em;
}
.mission .row {
  display: flex;
  align-items: center;
  margin-block-start: 4.75em;
  margin-block-end: 4.75em;
}
.mission p {
  text-align: left;
  line-height: 1.55em;
}
.mission img {
  width: 90%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.mission table {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-block-start: 4.75em;
}
.mission table td {
  width: 33.33%;
}

/*********CONTACT PAGE************/
.contact#main {
  padding: 0;
}
.contact h1 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-bottom: 5px solid #E05959;
  padding-bottom: 0.5em;
  margin-block-start: 2.25em;
  margin-block-end: 2.25em;
}
.contact p {
  text-align: center;
  color: #707070;
}
.contact form {
  margin: 5% 25%;
}
.contact input {
  height: 25px;
  padding-left: 5px;
  margin-bottom: 5%;
  border: .3px solid #707070;
  border-radius: 5px;
}
.contact input#fname {
  width: 44%;
  margin-right: 8%;
}
.contact input#lname {
  width: 45%
}
.contact input#email {
  width: 98.9%;
}
.contact textarea {
  width: 98.9%;
  border: 0.3px solid #707070;
  border-radius: 5px;
}
.contact form button {
  background-color: #707070;
  color: white;
  border: 1px solid #707070;
  border-radius: 20px;
  padding: 10px 35px;
  position: relative;
  top: 25px;
  left: 41%;
}

/**********JOIN NOW PAGE***********/
.join {
  margin-bottom: 5%;
}
.join h1 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-bottom: 5px solid #E05959;
  padding-bottom: 0.5em;
  margin-block-start: 2.25em;
  margin-block-end: 2.25em;
}
.join form {
  padding: 0 30%;
}
.join label {
  padding-right: 15%;
  color: #707070;
}
.join-choice-div {
  float: left;
  width: 50%;
}
#reveal-for-burundian, #reveal-for-non-burundian {
  display: none;
  padding-top: 8%;
}
.join #fname, .join #lname, .join #email {
  width: 100%;
  height: 28px;
  padding-left: 5px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 0.3px solid #DEDEDE;
  background-color: #DEDEDE;
}
.join #password, .join #conf-password {
  width: 100%;
  height: 28px;
  padding-left: 5px;
  margin-bottom: 15px;
  border: 0.3px solid #DEDEDE;
  background-color: #DEDEDE;
}
.join-icon {
  height: 28px;
}
.join button {
  background-color: #E05959;
  color: white;
  border: 1px solid #E05959;
  border-radius: 20px;
  padding: 10px 35px;
  position: relative;
  top: 15px;
  left: 41.5%;
}

/*************INPUT CONTAINER******************/
/* Style the input container */
.input-container {
  display: flex;
  width: 100%;
}
/* Style the form icons */
.icon {
  padding: 2px 10px;
  background: #DEDEDE;
  color: grey;
  text-align: center;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
/* Style the input fields */
.input-field {
  width: 100%;
  padding: 10px;
  outline: none;
  border-radius: 5px 0 0 5px;
}
.input-field:focus {
  border: 2px solid dodgerblue;
}



/***********VISION & VALUES PAGE*************/
.values {
  text-align: left;
  line-height: 1.55em;
}
.values h1 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-bottom: 5px solid #E05959;
  padding-bottom: 0.5em;
  margin-block-start: 2.25em;
  margin-block-end: 2.25em;
}
.values img {
  width: 100%;
  margin-bottom: 2%;
}

/**************DONATE PAGE*******************/
.donate {
  text-align: left;
  line-height: 1.55em;
}
.donate .row {
  display: flex;
  align-items: center;
}
.donate h1 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-bottom: 5px solid #E05959;
  padding-bottom: 0.5em;
  margin-block-start: 2.25em;
  margin-block-end: 2.25em;
}
.donate img {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.donate-button {
  width: 60%;
  margin-top: 2.25em;
  margin-left: auto;
  margin-right: auto;
}
.donate-button button {
  width: 100%;
  background-color: transparent;
  border: 0.3px solid #707070;
  border-radius: 20px;
  padding: 10px 35px;
  color: #E05959;
  font-size: 20px;
  transition: background-color .3s linear;
}
.donate-button button:hover {
  background-color: #E05959;
  border-color: #E05959;
  color: white;
}

/*************ABOUT BURUNDI PAGE*****************/
.burundi {
  text-align: left;
  line-height: 1.55em;
}
.burundi h1 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-bottom: 5px solid #E05959;
  padding-bottom: 0.5em;
  margin-block-start: 2.25em;
  margin-block-end: 2.25em;
}
.burundi a {
  text-decoration: underline;
}
.burundi img {
  width: 45%;
}

/****************IMAGE FLOATS**********************/
.float-right{
  float: right;
  margin-left: 2%;
}

.float-left{
  float: left;
  margin-right: 2%;
}

/*******************PHOTO LIGHTBOX**************************/
.lightbox {
  padding: 5%;
}
.lightbox-row {
  padding: 0 5%;
  display: flex;
  flex-wrap: wrap;
}
.lightbox-row > .lightbox-column {
  padding: 8px;
}
.lightbox-row::after {
  content: "";
  display: table;
  clear: both;
}
.lightbox-column img {
  height: 200px;
  width: auto;
  cursor: pointer;
}
.lightbox-column video {
  height: 200px;
  width: auto;
  cursor: pointer;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}
.modal-content {
  position: relative;
  padding: 0;
  width: 100%;
}
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}
.close:hover, .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
.mySlides {
  display: none;
  height: 90vh;
  margin-left: auto;
  margin-right: auto;
}
.mySlides img {
  height: 100%;
  width: auto;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 30%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.thumbnails {
  margin: 3%;
  overflow-x: auto;
}
.thumb-column {
  float: left;
  width: auto;
}
img.demo, video.demo {
  opacity: 0.6;
  height: 150px;
  padding: 0 2px;
}
.active, .demo:hover {
  opacity: 1;
}
img.hover-shadow {
  transition: 0.3s;
}
.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/**********LOGIN PAGE***************/
.login-wrapper {
  margin: 0 25%;
}
.login-wrapper input#email, .login-wrapper input#password {
  width: 100%;
  margin: 4px 0 4px;
  padding: 12px 5px;
  border: 0.3px solid #DEDEDE;
  background-color: #DEDEDE;
}
.login-wrapper input#email {
  border-radius: 5px;
}
.login-icon {
  padding: 10px;
  margin: 4px 0 4px;
}
.login-wrapper h1 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-bottom: 5px solid #E05959;
  padding-bottom: 0.5em;
  margin-block-start: 2.25em;
  margin-block-end: 2.25em;
}
.login-wrapper form {
  margin: 0 10% 0 15%;
}
.login-wrapper form a {
  font-size: 14px;
  padding-top: 8px;
  word-spacing: 0.1em;
}
.login-wrapper form label {
  font-size: 15px;
  padding-left: 5px;
}
.login-wrapper form button {
  background-color: #707070;
  color: white;
  border: 1px solid #707070;
  border-radius: 20px;
  padding: 10px 35px;
  position: relative;
  top: 25px;
  left: 35%;
}

.line-break {
  position: relative;
  left: 20%;
}

.short-line, .or {
  float: left;
  width: auto;
  margin: 0 5px;
}

.short-line {
  height: 1px;
  width: 25%;
  background-color: #707070;
  position: relative;
  top: 25px;
}


/******************FORGOT PASSWORD**********************/
.forgot-password-wrapper {
  margin: 10% 0%;
  text-align: center;
}
.forgot-password-wrapper .input-container {
  width: 30%;
  margin-left: auto;
  margin-right: auto;
}
.forgot-password-wrapper input {
  margin: 4px 0 4px;
  padding: 12px 5px;
  border-radius: 5px 0 0 5px;
  border: 0.3px solid #DEDEDE;
  background-color: #DEDEDE;
}
.forgot-password-wrapper button {
  background-color: #707070;
  color: white;
  border: 1px solid #707070;
  border-radius: 20px;
  padding: 10px 35px;
  font-size: 16px;
}



/********************SETTINGS PAGE***********************/
.settings p {
  color: green;
  text-align: center;
}
.settings form {
  text-align: center;
}
.settings form .input-container {
  justify-content: center;
}
.settings form label {
  color: #707070;
  font-size: 15px;
  padding-left: 5px;
}
.settings form input {
  width: 50%;
  margin: 4px 0 4px;
  padding: 12px 5px;
  border-radius: 5px;
  border: 0.3px solid #DEDEDE;
}
.settings-icon {
  background: white;
  padding: 10px;
  margin: 4px 0 4px;
}
.settings form button {
  background-color: #707070;
  color: white;
  border: 1px solid #707070;
  border-radius: 20px;
  padding: 10px 35px;
  font-size: 16px;
}
.settings-img-container {
  position: relative;
  max-width: 200px;
  margin: 0 auto;
}
.settings-img-container img {
  max-width: 200px;
  object-fit: cover;
}
.settings-img-container .content {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0);
  background: rgba(0,0,0,0.5);
  color: white;
  width: 100%;
  padding: 2%;
  cursor: pointer;
}
/* The Modal (background) */
.change-img-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: #474e5d;
  padding-top: 50px;
}
/* Modal Content/Box */
.change-modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}
/* The Modal Close Button (x) */
.change-img-close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #f1f1f1;
}
.change-img-close:hover,
.change-img-close:focus {
  color: #f44336;
  cursor: pointer;
}


/*************ADMIN FORGOT PWD*********************/
.admin-wrapper .forgot-password{
  margin: 10% 0%;
  text-align: center;
}
.admin-wrapper .forgot-password input {
  width: 30%;
  margin: 4px 0 4px;
  padding: 12px 5px;
  border-radius: 5px;
  border: 0.3px solid #DEDEDE;
  background-color: #DEDEDE;
}
.admin-wrapper .forgot-password button {
  background-color: #707070;
  color: white;
  border: 1px solid #707070;
  border-radius: 20px;
  padding: 10px 35px;
  font-size: 16px;
}



/* Medium devices (landscape tablets, 768px to 1024px) */
@media only screen and (max-width: 1024px) {

  /* Contact Page */
  .contact input#fname, .contact input#lname {
    width: 98.9%;
  }

  /* Join Now page */
  .join form {
    padding: 0 20%;
  }

}

* {box-sizing: border-box}

/* Set a style for all buttons */
.delete-modal button {
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  opacity: 0.9;
}
.delete-modal button:hover {
  opacity:1;
}
/* Float cancel and delete buttons and add an equal width */
.cancelbtn, .deletebtn {
  float: left;
  width: 50%;
}
/* Add a color to the cancel button */
.cancelbtn {
  background-color: #ccc;
  color: black;
}
/* Add a color to the delete button */
.deletebtn {
  background-color: #f44336;
}
/* Add padding and center-align text to the container */
.delete-container {
  padding: 16px;
  text-align: center;
}
/* The Modal (background) */
.delete-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: #474e5d;
  padding-top: 50px;
}
/* Modal Content/Box */
.delete-modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}
/* The Modal Close Button (x) */
.delete-close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #f1f1f1;
}
.delete-close:hover,
.delete-close:focus {
  color: #f44336;
  cursor: pointer;
}

/* Style the horizontal ruler */
hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}

/* Clear floats */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Change styles for cancel button and delete button on extra small screens */
@media screen and (max-width: 300px) {
  .cancelbtn, .deletebtn {
    width: 100%;
  }
}

@media screen and (max-width: 850px) {
  .banner-text {
    width: 100%;
    padding: 10% 5% 5%;
  }
}

@media only screen and (min-width: 1440px) {
  .col-lg-1 {width: 8.33%;}
  .col-lg-2 {width: 16.66%;}
  .col-lg-3 {width: 25%;}
  .col-lg-4 {width: 33.33%;}
  .col-lg-5 {width: 41.66%;}
  .col-lg-6 {width: 50%;}
  .col-lg-7 {width: 58.33%;}
  .col-lg-8 {width: 66.66%;}
  .col-lg-9 {width: 75%;}
  .col-lg-10 {width: 83.33%;}
  .col-lg-11 {width: 91.66%;}
  .col-lg-12 {width: 100%;}
}

@media only screen and (min-width: 1024px) {
  .col-md-1 {width: 8.33%;}
  .col-md-2 {width: 16.66%;}
  .col-md-3 {width: 25%;}
  .col-md-4 {width: 33.33%;}
  .col-md-5 {width: 41.66%;}
  .col-md-6 {width: 50%;}
  .col-md-7 {width: 58.33%;}
  .col-md-8 {width: 66.66%;}
  .col-md-9 {width: 75%;}
  .col-md-10 {width: 83.33%;}
  .col-md-11 {width: 91.66%;}
  .col-md-12 {width: 100%;}
}

@media only screen and (min-width: 768px) {
  .col-sm-1 {width: 8.33%;}
  .col-sm-2 {width: 16.66%;}
  .col-sm-3 {width: 25%;}
  .col-sm-4 {width: 33.33%;}
  .col-sm-5 {width: 41.66%;}
  .col-sm-6 {width: 50%;}
  .col-sm-7 {width: 58.33%;}
  .col-sm-8 {width: 66.66%;}
  .col-sm-9 {width: 75%;}
  .col-sm-10 {width: 83.33%;}
  .col-sm-11 {width: 91.66%;}
  .col-sm-12 {width: 100%;}
}

/* Small devices (portrait tablets and large phones, 600px to 768px) */
@media only screen and (max-width: 768px) {
  .col-xs-1 {width: 8.33%;}
  .col-xs-2 {width: 16.66%;}
  .col-xs-3 {width: 25%;}
  .col-xs-4 {width: 33.33%;}
  .col-xs-5 {width: 41.66%;}
  .col-xs-6 {width: 50%;}
  .col-xs-7 {width: 58.33%;}
  .col-xs-8 {width: 66.66%;}
  .col-xs-9 {width: 75%;}
  .col-xs-10 {width: 83.33%;}
  .col-xs-11 {width: 91.66%;}
  .col-xs-12 {width: 100%;}

  .about .row, .mission .row, .donate .row {
    display: block;
  }

  .about img, 
  .mission table, 
  .mission img,
  .donate img,
  .box,
  .burundi img,
  .banner-text,
  .banner-text h1 { 
    width: 100%;
  }

  .donate h1, .values h1, .burundi h1 {
    line-height: 1.15em;
    width: 100%;
  }

  .banner {
    height: auto;
  }

  .sidenav a {
    font-size: 26px;
    text-align: center;
  }

  .login-join {
    float: none;
  }

  .no-mobile,
  .no-small-mobile,
  .row.no-small-mobile,
  .nav-bar-nav,
  .social {
    display: none;
  }

  .social-footer {
    margin-top: 2.5%;
  }
  .social-footer i {
    padding: 0 5%;
  }

  .small-mobile,
  .mobile {
    display: block;
  }

  .mobile-nav-link {
    text-decoration: none;
    height: 15vh;
  }

  .mobile-nav-link p {
    width: 80%;
    font-size: 28px;
    position: relative;
    top: 50%;
    left: 20px;
  }

  .go-btn {
    float: right;
    width: 10%;
    position: relative;
    bottom: 50px;
  }

  /* Join Now page */
  .join form {
    padding: 0 10%;
  }
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

  .not-home .nav-bar-brand {
    left: 0;
  }

  .lightbox-column video {
    width: 100%;
    height: auto;
  }

  .lightbox-column img {
    width: 100%;
    height: auto;
  }

  .mySlides {
    display: none;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .mySlides img {
    height: auto;
    width: 100%;
  }

  .prev, .next {
    top: 5%;
    margin-top: auto;
  }

  .forgot-password-wrapper .input-container {
    width: 80%;
  }

  .join-now-row a button {
    width: 80%;
  }

  .not-home .nav-bar-brand {
    position: inherit;
    font-size: 5vw;
  }

  .nav-bar {
    padding: 22px 5% 22px 5%;
  }

  .contact form {
    margin: 5%;
  }

  .contact form button {
    width: 100%;
    position: relative;
    top: 25px;
    left: 0;
  }

  .login-wrapper {
    margin: 0 5%;
  }

  .login-wrapper form button {
    left: 0;
    width: 100%;
  }

  .donate-button {
    padding: 2%;
    width: 100%;
  }

  .donate-button button {
    width: 100%;
  }

  .banner {
    height: auto;
    background-position: inherit;
  }

  .banner-text {
    width: auto;
    text-align: center;
  }

  .banner-text a button {
    width: 100%;
  }

  .banner-text h1 {
    font-size: 5.5vw;
    width: auto;
  }

  .join-choice-div {
    float: none;
    width: auto;
  }

  .join button {
    width: 100%;
    left: 0;
  }

  .settings form input {
    width: 100%;
  }
}
