/* Header Navigation Menu */
* {
    font-family: "Montserrat", sans-serif;
}


/* -------------------------- Logo and banner -------------------------- */
.menu_logo {
  width: 100%;
  height: 110px;
  background-color: rgb(33, 151, 33);
}
.logo img{
  display: block;
  height: 110px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 860px) {
    .logo img {
      height: 100px;
    }
}

/* -------------------------- Sidebar -------------------------- */
.sidebar{
  position: fixed;
  width: 300px;
  left: -300px;
  height: 100%;
  background: #08520b;
  transition: all .5s ease;
  z-index: 10;
}
.sidebar header{
  font-size: 28px;
  color: white;
  line-height: 70px;
  text-align: center;
  background: #08520b;
  user-select: none;
  font-family: 'Montserrat', sans-serif;
}
.sidebar a {
  display: block;
  height: 65px;
  width: 100%;
  color: white;
  line-height: 65px;
  padding-left: 30px;
  box-sizing: border-box;
  border-bottom: 1px solid black;
  border-top: 1px solid rgba(255,255,255,.1);
  border-left: 5px solid transparent;
  font-family: 'Open Sans', sans-serif;
  transition: all .5s ease;
}
a.active, .sidebar a:hover {
  border-left: 5px solid #b93632;
  color: #b93632;
}
.sidebar a i{
  font-size: 23px;
  margin-right: 16px;
}
.sidebar a span{
  letter-spacing: 1px;
  text-transform: uppercase;
}
#check{
  display: none;
}
label #btn,label #cancel{
  position: fixed;
  cursor: pointer;
  color: white;
  border-radius: 5px;
  border: 1px solid #262626;
  margin: 15px 30px;
  font-size: 29px;
  background: #262626;
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 45px;
  transition: all .5s ease;
  z-index: 10;
}
label #cancel{
  opacity: 0;
  visibility: hidden;
}
#check:checked ~ .sidebar{
  left: 0;
  z-index: 10;
}
#check:checked ~ label #btn{
  margin-left: 245px;
  opacity: 0;
  visibility: hidden;
}
#check:checked ~ label #cancel{
  margin-left: 300px;
  opacity: 1;
  visibility: visible;
}
@media(max-width : 860px){
  .sidebar{
    height: auto;
    width: 70px;
    left: 0;
    margin: 100px 0;
  }
  header, #btn, #cancel{
    display: none;
  }
  span {
    position: absolute;
    margin-left: 23px;
    opacity: 0;
    visibility: hidden;
  }
  .sidebar a{
    height: 60px;
  }
  .sidebar a i{
    margin-left: -10px;
  }
  a:hover {
    width: 200px;
    background: inherit;
  }
  .sidebar a:hover span{
    opacity: 1;
    visibility: visible;
  }
}

/* -------------------------- Hero -------------------------- */
 .hero {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15%;
 }
 .hero::before {
    content: "";
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(Images/sod_lander.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    filter: brightness(60%);
 }
 .hero-content {
    position: relative;
    color: white;
    text-align: center;
    margin: 0.625rem;
 }
 .hero-subtitle {
    font-size: 3rem;
    font-weight: 200;
    margin-top: 9rem;
 }
 .hero-button {
    background-color: rgb(33, 151, 33);
    color: white;
    border: 2px solid rgb(33, 151, 33);
    margin-top: 3rem;
    padding: 10px 20px;
    font-size: 1.125rem;
    font-weight: 200;
    cursor: pointer;
 }
 .hero-button:hover {
    background-color: rgb(62, 189, 62);
    border: 2px solid rgb(62, 189, 62);
 }

/* -------------------------- Profile Section -------------------------- */
 .team-box-container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width:100%;
}
.team-box{
  width:700px;
  box-shadow: 2px 2px 30px rgba(0,0,0,0.1);
  background-color: #ffffff;
  padding: 20px;
  margin: 30px;
  cursor: pointer;
}
.team-img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.team-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.team {
  display: flex;
  align-items: center;
}
.username{
  display: flex;
  flex-direction: column;
}
.username strong{
  color: #3d3d3d;
  font-size: 2rem;
  letter-spacing: 0.5px;
}
.username span{
  color: #979797;
  font-size: 0.8rem;
}
.box-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.team-description p{
  font-size: 0.9rem;
  color: #4b4b4b;
}

/* -------------------------- Form -------------------------- */
.main-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 73vh;
    background: rgb(30, 94, 30);
    margin-left: 25%;
    margin-right: 25%;
    border-radius: 50px;
}
form {
    padding: 25px;
    margin: 25px;   
    border-radius: 30px;
}
input, textarea {
    width: calc(100% - 18px);
    padding: 8px;
    margin-bottom: 20px;
    border: 1px solid #042e00;
    outline: none;
}
label {
  color: white;
  font-size: 20px;
}
input::placeholder {
    color: #666;
}
input[type=submit] {
    width: 50%;
    padding: 10px;
    border: 2px solid rgb(1, 39, 10);
    border-radius: 10px;
    background: #042e00; 
    font-size: 16px;
    color: #fff;
}
input[type=submit]:hover {
    background: rgb(5, 129, 36);
}    

@media(max-width : 860px) {
  .main-block {
    margin-left: 2%;
    margin-right: 2%;
  }
}

/* -------------------------- About -------------------------- */
.column2 {
  box-sizing: border-box;
  float: left;
  width: 50%;
  padding: 10px;
}
.row2::after {
  box-sizing: border-box;
  content: "";
  clear: both;
  display: table;
}
@media screen and (max-width: 860px) {
  .column2 {
    width: 100%;
  }
}

.column {
  float: left;
  width: 23.9%;
  padding: 10px;
}
.column img {
  margin-top: 12px;
}
.row3:after {
  content: "";
  display: table;
  clear: both;
}

/* -------------------------- Review Section -------------------------- */
#reviews{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width:100%;
}
.review-box-container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width:100%;
}
.review-box{
  width:500px;
  box-shadow: 2px 2px 30px rgba(0,0,0,0.1);
  background-color: #ffffff;
  padding: 20px;
  margin: 15px;
  cursor: pointer;
}
.profile-img{
  width:50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.profile-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.profile{
  display: flex;
  align-items: center;
}
.username{
  display: flex;
  flex-direction: column;
}
.username strong{
  color: #3d3d3d;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
.username span{
  color: #979797;
  font-size: 0.8rem;
}
.reviews{
  color: #f9d71c;
}
.box-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.review-comment p{
  font-size: 0.9rem;
  color: #4b4b4b;
}
.review-box:hover{
  transform: translateY(-10px);
  transition: all ease 0.3s;
}
/* -------------------------- Slideshow -------------------------- */
.mySlides {
  display: none;
}
img {
  vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Number text (1/8 etc) */
.numbertext {
  color: #ff0000;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {opacity: 0.5} 
  to {opacity: 1}
}

/* -------------------------- Process & Maintenance -------------------------- */
.tab {
  overflow: hidden;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: transparent;
  border: 2px solid rgb(33, 104, 33);
  float: left;
  outline: none;
  cursor: pointer;
  padding: 20px 16px;
  transition: 0.3s;
  font-size: 17px;
  width: 40%;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: rgb(62, 189, 62);
  border: 2px solid white;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: rgb(33, 151, 33);
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 3px dotted rgb(33, 104, 33);
  border-top: none;
  line-height: 30px;
}
/* -------------------------- Footer -------------------------- */
footer {
  background-color: rgb(33, 151, 33);
  padding: 90px 0 0;
}
footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
footer .footer-container p, a, h4 {
  color: #FFFFFF;
}
footer .footer-container h4 {
  margin: 0 0 10px;
}
footer .footer-container p, a {
  font-size: .875rem;
}
footer .footer-container img {
  max-width: 200px;
}
footer .footer-container .footer-col {
  margin: 0 15px 60px;
  padding: 30px;
  border-radius: 4px;
  background: #042e00;
  box-shadow: 2px 2px 2px #15232D;
  box-shadow: inset 2px 2px 2px hsla(0,0%,100%,.25), inset -2px -2px 2px rgba(0,0,0,.25);
}
footer .footer-container .footer-col ul li {
  list-style: none;
}
@media (min-width: 768px) {
  footer .footer-container {
    display: flex;
    justify-content: space-between;
  }
  footer .footer-container .footer-col {
    flex-basis: 32%;
  }
}
footer .bottombar {
  padding: 20px 15px;
  background-color: #042e00;
  text-align: center;
  font-style: italic;
  color: #FFFFFF;
}