@charset "UTF-8";

html, body {
	height: 100%;
  	display: flex;
  	flex-direction: column;
	font-family: "Candara","Trebuchet MS", Helvetica, sans-serif;
	font-size: 18px;
	margin: 0;
	padding: 0;
}

/*--------------------------------*/

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

.center-image {
  	display: block;
  	margin-left: auto;
  	margin-right: auto;
  	width: 80%;
}

button {
	background-color: #1034A6;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 20px;
	cursor: pointer;
	font-family: "Candara","Trebuchet MS", Helvetica, sans-serif;
	font-size: 18px;
  }

/*--------------------------------*/

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	width: 100%;
	height: 12vh;
	min-height: 6rem;
	display: flex;
	justify-content: space-between;
	background: #000000;
	padding: 10px 20px;
	align-items: center;
	white-space: nowrap;
  }

.navbar .logo {
	width: 12rem;
	margin-right: -50px;
  }

.navbar button {
	display: none;
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-left: 2rem;
}

.nav-links a {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 20px;
	position: relative;
}

.nav-links a:hover {
	color: #6E8DF1;
}

/* Veggieburger Menu */
.veggieburger {
	margin-right: 50px;
  	display: none;
  	cursor: pointer;
}

.bar {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	background-color: white;
	transition: all 0.3s ease;
}

/* %%%% want to switch to mobile first design!!
/* Mobile Responsive Styles */
@media only screen and (max-width: 768px) {
  /* Show veggieburger menu on mobile */
  .veggieburger {
	  display: block;
  }

  /* Animate veggieburger to X when menu is active */
  .veggieburger.active .bar:nth-child(1) {
	  transform: translateY(8px) rotate(45deg);
  }

  .veggieburger.active .bar:nth-child(2) {
	  opacity: 0;
  }

  .veggieburger.active .bar:nth-child(3) {
	  transform: translateY(-8px) rotate(-45deg);
  }

  /* Position the nav menu for mobile */
  .nav-menu {
	  position: fixed;
	  top: 70px; /* Height of the navbar */
	  top: -100%;
	  width: 100%;
	  margin-left: -20px;
	  background-color: #1034A6;
	  text-align: center;
	  transition: 0.3s;
	  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }

  /* Show nav menu when active class is added */
  .nav-menu.active {
    top: 0;
  }

  /* Stack nav links vertically */
  .nav-links {
    flex-direction: column;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 10px 0;
  }
}

/*--------------------------------*/

.main-content {
	display: flex;
	flex-direction: column;
    margin-top: 17vh;
	margin-left: auto;
	margin-right: auto;
}

.main-content h1 {
	padding-top: 5%;
	text-align: center;
	color: #717070;
	font-weight: bold;
	text-transform: uppercase;
}

.main-content h2 {
	text-align: center;
}

.main-content p {
	margin-left: auto;
	margin-right: auto;
	line-height: 1.5;
	color: #B3B3B3;
}

.main-content p a:link{
	text-decoration: none;
	color: #1034A6;
}

.main-content p a:visited {
	color: #6E8DF1;
}

.main-content p a:hover {
	color: #000000;
}

.main-content button {
	min-width: 150px;
}

.main-content button:hover {
	background-color: #000000;
	color: #FFFFFF;
}

.language-button {
	min-width: 150px;
}

@media (max-width: 300px) {
	.he-language-buttons {
		flex-direction: column;	
	}
}

.lesson-buttons-english {
	margin-left: 5vh;
}

.lesson-buttons {
	margin-left: -20vh;
}

/*--------------------------------*/

.index-content {
	position: relative;
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
	line-height: 1.5;
}

.index-content p {
	color: #B3B3B3;
}

.index-content button {
	position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
	white-space: nowrap;
}

.index-hero {
	position: relative;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://concernhelpinganimalsinisrael.org/images/omer-orit-and-dikla.jpg");
	height: 50vh;
	background-position: 50% 25%;
	background-repeat: no-repeat;
	background-size: cover;
	color:#FFFFFF;
	padding: 50px 0px;
}

.index-hero .index-hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	min-width: 80%;
}

.index-hero h1 {
	color:#FFFFFF
}

.index-hero p {
	color:#FFFFFF
}

#index-hero-caption {
	font-size: 12px;
}

/*--------------------------------*/

.about-content {
	display: flex;
	flex-direction: column;
    margin-top: 17vh;
	margin-left: auto;
	margin-right: auto;
}

.about-content h1 {
	padding-top: 5%;
	text-align: center;
	color: #717070;
	font-weight: bold;
	text-transform: uppercase;
}

.about-content h2 {
	text-align: center;
}

.about-content p {
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
	line-height: 1.5;
	color: #B3B3B3;
}

.about-content p a:link{
	text-decoration: none;
	color: #1034A6;
}

.about-content p a:hover {
	color: #000000;
}

.about-content p a:visited {
	color: #6E8DF1;
}

.image-row {
	display: flex;
  	flex-wrap: wrap;
  	padding: 0 4px;
}

.image-column {
  flex: 32;
  max-width: 32%;
  padding: 0 4px;
}

.image-column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/*--------------------------------*/

.footer {
	margin-top: auto;
  	background-color: #000000;
	text-align: center;
	margin-left: -40px;
}

.footer ul {
	list-style-type: none;
}

.footer ul li {
	margin: 10px 0;
  }

.footer ul li a {
	text-decoration: none;
	color: #FFFFFF;
  }

.footer ul li a:hover {
	color: #6E8DF1;
  }

/*--------------------------------*/

/* desktop width settings */
@media (min-width: 768px){
	
	
	
	.center-image {
  		width: 50%;
	}
	
	.veggieburger {
		display: none;
  	}
	
	#donate-link {
		display: none;
	}
	
	.navbar button {
		display: block;
		margin-right: 50px;
}
	
	.index-content {
		max-width: 60%;
	}
	
	.index-hero {
		padding: 0px;
	}
	
	.main-content {
		margin-top: 12vh;
	}
	
	.about-content {
		margin-top: 12vh;
	}
	
	.about-content p {
		max-width: 60%;
	}
	
	.footer ul li {
		margin: 0;
  	}
}