*{
	box-sizing: border-box;
	overflow-x: hidden;
}

::-webkit-scrollbar {
	width: 6px;
	height: 12px;
}

::-webkit-scrollbar-track {
	background: #8B8989	;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: #18191c;  
}

body{
	margin: 0;
	padding: 0;
}

.navbar{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #333;
	color: white;
}

.brand-title{
	font-size: 1.5rem;
	margin: .5rem;
}

.navbar-links ul{
	margin: 0;
	padding: 15px;
	display: flex;
}

.navbar li{
	list-style: none;
}

.navbar li a{
	text-decoration: none;
	color: white;
	padding: 1rem;
	display: block;
}

.navbar-links li:hover {
    color: white;
}

.navbar-links li::before {
    content: "";
    display: block;
    height: 3px;
    background-color: white;
    position: relative;
    top: 45px;
  	width: 0%;
    transition: all ease-in-out 400ms;
}

.navbar-links li:hover::before {
    width: 100%;
}

.toggle-button{
	position: absolute;
	top: .5rem;
	right: 1rem;
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
}

.toggle-button .bar{
	height: 3px;
	width: 100%;
	background-color: white;
	border-radius: 10px;
}


@media (max-width: 1024px){
	.toggle-button{
		display: flex;
	}

	.toggle-button .bar{

	}

	.navbar-links{
		display: none;
		width: 100%;
	}

	.navbar{
		flex-direction: column;
		align-items: flex-start;
	}

	.navbar-links ul{
		width: 100%;
		flex-direction: column;
	}

	.navbar-links li{
		text-align: center;
	}

	.navbar-links li a{
		padding: .9rem 1rem;
	}

	.navbar-links.active{
		display: flex;
		transition: 0.9s ease;
	}
}

body{
	background-color: #f1f1f1;
}

.home{
	padding: 50px
}

.home h1{
	text-align: left;
	padding: 2px;
	margin: 40px 25px 5px;
	font-size: 40px
}

.home h{
	font-size: 25px;
	font-weight: bold;
	margin: 0 30px;
}

.home p{
	font-size: 20px;
	text-align: left;
	padding: 20px;
	margin: 0 10px;
	color: #8B8989;
}

@media (max-width: 363px){
	.home{
		padding: 8px;
	}

	.home h1{
		font-size: 30px;
	}

	.home h{
		font-size: 20px;
	}

	.home p{
		font-size: 15px
	}
}

@media (max-width: 284px){
	.home{
		padding: 4px;
	}

	.home h1{
		font-size: 30px;
	}

	.home h{
		font-size: 15px;
	}

	.home p{
		font-size: 15px
	}

	.btn a{
		font-size: 10px;
		color: white;
		text-decoration: none;
		margin: 4px 2px;
		margin-top: 10px;
		padding: 2px;
		border: 2px solid #F36A6A;
		border-radius: 10px;
		text-align: center;
		background-color: #F36A6A;
		font-weight: 1;
		transition: 0.9s ease;
	}

	.btn a:hover{
		border: 2px solid #EE2C2C;
		background-color: #EE2C2C;
		color: white;
	}
}

.btn a{
	font-size: 20px;
	color: white;
	text-decoration: none;
	margin: 4px 2px;
	margin-top: -10px;
	padding: 10px;
	border: 2px solid #F36A6A;
	border-radius: 10px;
	text-align: center;
	line-height: 100px;
	background-color: #F36A6A;
	font-weight: 1;
	transition: 0.9s ease;
}

.btn a:hover{
	border: 2px solid #EE2C2C;
	background-color: #EE2C2C;
	color: white;
}

.container h2{
	text-align: center;
	font-size: 40px;
	font-family: Arial;
	margin-top: -6px
}

/* Float four columns side by side */
.column {
  float: left;
  width: 33.3%;
  padding: 0 10px;
}

/* Remove extra left and right margins, due to padding */
.row {margin: 0 -5px;}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns */
@media screen and (max-width: 800px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

/* Style the counter cards */
.card {
  	box-shadow: 1px 6px 18px 0 rgba(0.5, 0.5, 0.5, 0.9);
  	padding: 10px;
  	text-align: center;
  	background-color: #f1f1f1;
}

#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  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.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}
