*{box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1580px;
  position: relative;

}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: red;
  font-weight: bold;
  font-size: 18px;
  transition: 0.4s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.7);
}

/* Caption text */
.text {
  color: black;
  font-size: 25px;
  position: absolute;
  bottom: 0px;

}
/* Number text (1/3 etc) */
.numbertext {
  color: red;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}




/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color:grey;
}

/* Fading animation */
.fade {

  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

/* Style the header */
.header {
  background-color:white;
  padding: 2px;
  text-align: center;
  color:red;
  font-family: Georgia;
  font-size: 30px;
  font-weight: bold;
}

/* Style the top navigation bar */
.navbar {
  overflow: hidden;
  background-color:white;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color:black;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover  .dropbtn{
  background-color: red;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.hero{
  text-align: center;
  font-size: 20px;
  color: red;
 font-family: "Times New Roman", Times, serif;
}

.para{
color:black;
text-align: center;
font-size: 16px;
padding: 10px 25px 25px 10px;
 font-family: "Times New Roman", Times, serif;

}
.heading{
  text-align: center;
  font-size: 15px;
  color: grey;
}

/*image style vehicles*/
.container {
  position: relative;
  width:350px;
}

.image {
  display: block;
  width:350px;
  height:230px;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 100%;
  right: 0;
  background-color:red;
  overflow: hidden;
  width: 0;
  height: 100%;
  transition: .6s ease;
  opacity:0.5;
}

.container:hover .overlay {
  width: 350px;
  left: 0;
}
/*image gallery*/
* {
  box-sizing: border-box;
}

.column {
  float: left;
    width: 33.3%;
    padding: 5px;

}
.col{
  float: left;
  padding: 10px;
}

/* Middle column */
.col.large{
  width: 40%;
}
/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}
.text {
  color: white;
  font-size: 17px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-align:center;
}
.footer {
  width:100%;

  padding-top:20px;
  background-color:grey;
  color:white;
  opacity: 5;
  font-size:14px;
  text-align:center;

  bottom:0;          /*to the bottom of the body/page*/

}
/* Responsive layout*/
@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }



