*{

  margin: 0;

  padding: 0;

}



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;

}





/**Image*/

.row {

  display: -ms-flexbox; /* IE10 */

  display: flex;

  -ms-flex-wrap: wrap; /* IE10 */

  flex-wrap: wrap;

  padding: 0 4px;

}



/* Create four equal columns that sits next to each other */

.column {

  -ms-flex: 25%; /* IE10 */

  flex: 25%;

  max-width: 25%;

  padding: 0 4px;

  height: 600px;

}



@media screen and (max-width: 600px) {

  .column {

    height: 450px;

  }

  

}



.column img {

  margin-top: 8px;

  vertical-align: middle;

  width: 100%;

}



/* Create four equal columns that sits next to each other */

.column {

  -ms-flex: 25%; /* IE10 */

  flex: 25%;

  max-width: 33%;

  padding: 0 4px;

}







/* Responsive layout - makes a two column-layout instead of four columns */

@media screen and (max-width: 800px) {

  .column {

    -ms-flex: 50%;

    flex: 50%;

    max-width: 100%;

  }

}



/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */

@media screen and (max-width: 600px) {

  .column {

    -ms-flex: 100%;

    flex: 100%;

    max-width: 100%;

  }

}





/*Sticky Header*/



.sticky {

  position: fixed;

  top: 0;

  width: 100%;

}



.sticky + .content {

  padding-top: 102px;

}



/*slider*/



* {box-sizing: border-box;}

body {font-family: Verdana, sans-serif;}

.mySlides {display: none;}

img {vertical-align: middle;}



/* Slideshow container */

.slideshow-container {

  background-color: black;

  position: relative;

  margin: auto;

}



.active {

  background-color: #717171;

}



/* Fading animation */

.fade {

  animation-name: fade;

  animation-duration: 1.5s;

}



@keyframes fade {

  from {opacity: .4} 

  to {opacity: 1}

}



/* On smaller screens, decrease text size */

@media only screen and (max-width: 300px) {

  .text {font-size: 11px}

}







/**Image2*/

.row1 {

  display: -ms-flexbox; /* IE10 */

  display: flex;

  -ms-flex-wrap: wrap; /* IE10 */

  flex-wrap: wrap;

  padding: 0 4px;

}



/* Create four equal columns that sits next to each other */

.column1 {

  -ms-flex: 25%; /* IE10 */

  flex: 25%;

  max-width: 25%;

  padding: 0 4px;

}



.column1 img {

  margin-top: 8px;

  vertical-align: middle;

  width: 100%;

}



/* Create four equal columns that sits next to each other */

.column1 {

  -ms-flex: 25%; /* IE10 */

  flex: 25%;

  max-width: 50%;

  padding: 0 4px;

}







/* Responsive layout - makes a two column-layout instead of four columns */

@media screen and (max-width: 800px) {

  .column1 {

    -ms-flex: 50%;

    flex: 50%;

    max-width: 100%;

  }

}



/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */

@media screen and (max-width: 600px) {

  .column1 {

    -ms-flex: 100%;

    flex: 100%;

    max-width: 100%;

  }

}





input[type=text], input[type=number] {

  width: 100%;

  padding: 13px;

  margin: 4px;

  border: none;

  background: #f1f1f1;

}



select{

  width: 100%;

  padding: 13px;

  font-weight: normal;

  margin: 4px;

  border: none;

  background: #f1f1f1;

}



.btn1{

  height: 40px;

  width: 150px;

  background-color: #fb5958;

  border: none;

  font-size: 20px;

  color: white;

  cursor: pointer;

  

  font-weight: bold;

}



.btn1:hover{

  background-color: white;

  color: #fb5958;

  border: 1px solid;

  font-weight: bold;

  border-color: #fb5958;

}





/*Footer*/



@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,300,700);



* {

  font-family: Roboto;

}





.footer-distributed {

  background-color: black;

  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);

  box-sizing: border-box;

  width: 100%;

  text-align: left;

  font: normal 16px sans-serif;

  position: relative;

  

  padding: 45px 50px;

}



.footer-distributed .footer-left p {

  color: #fff;

  font-size: 14px;

  text-align: center;

  margin: 0;

}

/* Footer links */



.footer-distributed p.footer-links {

  font-size: 18px;

  font-weight: bold;

  color: #ffffff;

  margin: 0 0 10px;

  padding: 0;

  transition: ease .25s;

}



.footer-distributed p.footer-links a {

  display: inline-block;

  line-height: 1.8;

  text-decoration: none;

  color: inherit;

  transition: ease .25s;

}



.footer-distributed .footer-links a:before {

  content: "·";

  font-size: 20px;

  left: 0;

  color: #fff;

  display: inline-block;

  padding-right: 5px;

}



.footer-distributed .footer-links .link-1:before {

  content: none;

}



.footer-distributed .footer-right {

  float: right;

  margin-top: 6px;

  max-width: 180px;

}



.footer-distributed .footer-right a {

  display: inline-block;

  width: 35px;

  height: 35px;

  

  border-radius: 2px;

  font-size: 20px;

  color: #ffffff;

  text-align: center;

  line-height: 35px;

  margin-left: 3px;

  transition:all .25s;

}



.footer-distributed .footer-right a:hover{transform:scale(1.5); -webkit-transform:scale(1.5);}



.footer-distributed p.footer-links a:hover{text-decoration:underline;}



/* Media Queries */



@media (max-width: 600px) {

  .footer-distributed .footer-left, .footer-distributed .footer-right {

    text-align: center;

  }

  .footer-distributed .footer-right {

    float: none;

    margin: 0 auto 20px;

  }

  .footer-distributed .footer-left p.footer-links {

    line-height: 1.8;

  }

}



/*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;

}





 /*popup*/



 .popup{

  width:475px;

  background: #fff;

  border-radius: 6px;

  position: fixed;

  top: 0%;

  left: 50%;

  transform: translate(-50%,-50%) scale(0.1);

  text-align: center;

  padding: 0 30px 30px;

  color: #333;

  visibility: hidden;

  transition: transform 0.4s, top 0.4s;

  box-shadow: 0 1rem 2rem hsl(0 0% 0% / 80%)

}



.open-popup{

  visibility: visible;

  top: 27%;

  transform: translate(-50%,-50%) scale(1);

}



.popup img{

  width: 100px;

  margin-top: -50px;

  border-radius: 50%;

  box-shadow: 0 2px 5px rgba(0,0,0,0.2);

}



.popup h2{

  font-size: 45px;

  font-weight: 500;

  margin: 309x 0 10px;

}



.popup button{

  width: 100%;

  margin-top: 50px;

  padding: 10px 0;

  background:#6fd649 ;

  color: #fff;

  border: 0;

  outline: none;

  font-size: 25px;

  border-radius: 4px;

  cursor: pointer;

  box-shadow: 0 5px 5px rgba(0,0,0,0.2);

}



.div1{

  text-align: center;padding-top: 60px;

}



.div2{

  padding-top: 80px;

}



.div3{

  padding-top: 60px;text-align: center;

}



.gif_div{

  text-align: center;background-color: #000;
  margin-top: 100px;

}



.img1{

  width:70% !important;

}



.img2{

  width: 40% !important;

}



@media screen and (max-width: 600px) {

  .column {

    height: 400px;

  }

  .div3 {

    padding-top: 50px;

  } 

  .div2 {

    padding-top: 100px;

  }

  .gif_div{

    background-color: #000;

    margin-top: 210px;

  }

  .img1{

    width: 100% !important;

  }

  .img2{

    width: 100% !important;

  }

}