@charset "utf-8";
* {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    box-sizing: border-box;
}
body {
    background-color: rgba(41,45,51,1.00);
    font-family: viga;
    font-style: normal;
    font-weight: 400;
    
}

/*nav Style*/

.navUp{
    height: 100px;
    width: 100%;
    background-color: rgba(47,51,58,1.00);
    position: fixed;
}
.social{
    width: 30%;
    font-size: 30px;
    position: fixed;
    display: inline-block;
    top: 30px;
    left: 30px;
}

.social img{
    width: 35px;
    transition: 1s;
}
.social img:hover{
    transform: scale(1.2)
}
.logoDiv{
    width: 25%;
    padding-top: 15px;
    padding-left: 45%;
    float: left;
}
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #111;
    color: white;
    padding: 10px 15px;
    border: none;
    float: right;
    margin-top: 10px;
    margin-right: 7px;
}


.openbtn:hover {
  background-color: #444;
}


/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
}

/*header style*/

header {
    width: 100%;
    min-height: 400px;
}
header .mySlides{
    display: none;
}
header img {
    vertical-align: middle;
}

/* Slideshow container */
header .slideshow-container {
  position: relative;
  margin: auto;
    z-index: -1;
}
/* Fading animation */
header .fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
header .divHeader{
  width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/*main Style*/

main{
    width: 400px;
    height: auto;
    color: white;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 150px;
}

.contact{
    position: relative;
    z-index: -1;
}
input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.contact {
  border-radius: 5px;
  background-color: rgba(47,51,58,1.00);
  padding: 20px;
}
footer {
    width: 100%;
    height: 100px;
    background-color: rgba(47,51,58,1.00);
    text-align: center;
    line-height: 100px;
    color: white;
    bottom: 0px;
    position: fixed;
    z-index: -1;
}
