*{
  margin: 0;
  padding: 0;
}
a{
  text-decoration: none;
  color: inherit;
}

nav {
  float: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a {
  font-weight: bold;
  font-size: 15px;
  display: block;
  padding: 0 20px;
  line-height: 70px;
  color: white;
  text-decoration: none;
  /*
  The full path of this code is nav ul li a:not(:only-child):after. This means that the code will apply to any a tag in our nav list that is NOT an only child, aka any dropdown. The :after means it comes after the output of the tag. I’ve decided that to specify any nav item as a dropdown, it will be followed by a unicode arrow – ▾ (#9662).
  */
}
nav ul li a:hover {
  color: #fb5958;
}
nav ul li a:not(:only-child):after {
  padding-left: 4px;
  content: ' ▾';
}
nav ul li ul li {
  min-width: 190px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav-dropdown {
  position: absolute;
  z-index: 1;
  /* Guarantees that the dropdown will display on top of any content. */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  height: 70px;
  width: 70px;
}

@media only screen and (max-width: 800px) {
  .nav-mobile {
    display: block;
  }

  nav {
    width: 100%;
    padding: 70px 0 15px;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #463f3f;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 800px) {
  .nav-list {
    display: block !important;
  }
}
/* 
.navigation – the outer wrapper for the navbar. Specifies the height and color, and will stretch the full width of the viewport.
*/
.navigation {
  height: 70px;
  background:#212529 ;
}

/*
.nav-container – the inner wrapper for the navbar. Defines how far the actual content should stretch.
*/
.nav-container {
  max-width: 1000px;
  margin: 0 auto;
}

.brand {
  position: absolute;
  padding-left: 20px;
  color: white;
  float: left;
  line-height: 70px;
  font-size: 1.4em;
}
.brand a,
.brand a:visited {
  color: #463f3f;
  text-decoration: none;
}


body, html {
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

.bg-img {

  background-image: url("collage.jpg");
  width: 100%;

  min-height: 768px;
  object-fit:contain ;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover
}

.bg-img background-image{
  width: 70%;
}

/* Add styles to the form container */
.container {
  float: right;
  border-radius: 30px;
  right: 0;
  margin: 20px;
  max-width: 440px;
  padding: 16px;
  background-color: white;
  opacity: 0.8;
}

/* Full-width input fields */
input[type=text], input[type=password], input[type=number] {
  width: 100%;
  height: 50px;
  font-size: 25px;
  padding: 15px;
  margin: 5px 0 10px 0;
  border: none;
  background: #000000cc;
  color: white;
}

/*Placeholder fonts*/
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: white;
  font-weight: bold;
  font-size: 15px;
  opacity: 1; /* Firefox */
}

/*Hide Input Number Arrows*/

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


select{
  width: 100%;
  padding: 15px;
  height: 50px;
  margin: 5px 0 10px 0;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: bold;
  background: #000000cc;
}

input[type=text]:focus, input[type=password]:focus {
  background-color: #000000cc;
  outline: none;
  color: white;
}

/* Set a style for the submit button */
.btn {
  background-color: green;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: initial;
  font-weight: bold;
  font-size: 25px;
  opacity: 0.9;
}

.btn:hover {
  opacity: 1;
}

.terms{
  color: black;
  text-align: left;
  font-size: 13px;
  padding: 10px 0px;
  line-height: 1.5;
}

.terms a{color: blue;}

/*slider*/
.container1 {
  position: relative;
  text-align: center;
  color: white;
}
.container1 .top-right {
  position: absolute;
  top: 26px;
  right: 16px;
}
.container1 .top-left{
  color: white;position: absolute;
  top: 222px;left: 36px;text-align: left;font-size: 60px;
}

@media only screen and (max-width: 1100px) {
  .container1 .top-left{
    color: white;position: absolute;
    top: 222px;left: 36px;text-align: left;font-size: 50px;
  }
}
@media only screen and (max-width: 970px) {
  .container1 .top-left{
    color: white;position: absolute;
    top: 222px;left: 36px;text-align: left;font-size: 35px;
  }
}
@media only screen and (max-width: 840px) {
  .container1 .top-left{
    visibility: hidden;
  }
}

/*button animation*/

.text-shadow {
	text-transform: uppercase;
  padding: 10px;
	-webkit-text-stroke: #F96302;
	-webkit-text-stroke-width: 1px;
	text-shadow: 2px 2px 10px #F96302;
	transition: all 0.5s ease-in-out;
	text-align: center;
	letter-spacing: 0.2em;
	animation: flicker 0.5s ease-in-out infinite alternate;
/*
	&:hover {
		color: red;
	}*/
}

.tags small {
	@media (max-width: 768px) {
		font-size: 0.5em;
	}
}

@keyframes flicker {
	0% {
		opacity: 0.5;
		text-shadow: 2px 2px 10px #F96302;
	}
	100% {
		opacity: 1;
		text-shadow: 2px 2px 20px #F96302;
	}
}
