/*........nav........*/

.themeToggle{
  position: absolute;
  right: 20px;
  top: 25%;
}
/*.......Header...............*/
.darkWrapper #header{
  width: 100%;
  height: 662px;
}
.darkWrapper .lightMode{
  background-image: url("../img/man_smoke.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.darkWrapper .nlight{
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 6px black;
  position: relative;
}
.darkWrapper .nlight ul{
  display: flex;
  padding: 20px 10px;
  justify-content: center;
}
.darkWrapper .nlight ul li{
  list-style: none;
}
.darkWrapper .nlight ul li a{
  margin: 5px 10px;
  padding: 21px 20px;
  text-decoration: none;
  color: white;
  font-size: 24px;
}
.darkWrapper .nlight ul li a:hover{
  color: black;
  background-color: white;
}
.darkWrapper .logo{
  position: absolute;
  top: 38%;
  left: 40%;
}
.darkWrapper .logo img{
  width: 250px;
  height: 250px;
}
.darkWrapper .socialBtns{
  position: fixed;
  top: 45%;
  left: 1%;
}
.darkWrapper .socialBtns img{
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.darkWrapper .socialBtns img:hover{
  width: 35px;
  height: 35px;
}
h2{
  text-align: center;
  font-weight: bold;
  margin: 5px 0;
  padding: 10px;
  font-size: 3rem;
}

/*.........ABOUT...........*/
.darkWrapper #about{
  width: 90%;
  margin: 10px auto;
  display: flex;
  /*border: 1px solid red;*/

}
.darkWrapper .aboutImgs{
  flex-basis: 50%;
  padding: 5px;
  border-right: 2px solid grey;
  text-align: center;
}
.darkWrapper .aboutImgs img{
  width: 95%;
}
.darkWrapper .aboutContent{
  flex-basis: 50%;
  justify-content: center;
}
.darkWrapper .aboutContent p{
  margin: 5px 15px;
  padding: 10px;
  font-size: 20px;
  text-align: justify;
  color: darkgray;
}
.darkWrapper .aboutContent h2{
  color: darkgray;
}

/*............SHOWCASE..........*/
.darkWrapper #showcase{
  width: 90%;
  /*height: 250px;*/
  margin: 10px auto;
  /*background-color: grey;*/
}
.darkWrapper #showcase .showGrid{
  display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    margin-left: 20px;
}
.darkWrapper #showcase .showGrid .column {
  flex: 32%;
  max-width: 32%;
  padding: 0 4px;
}
.darkWrapper #showcase .showGrid .column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/*.............SERVICES.........*/
.darkWrapper #services{
  width: 90%;
  display: flex;
  margin: 10px auto;
}
.darkWrapper .serviceSection{
  flex-basis: 50%;
}
.darkWrapper .serviceSection ul{
  padding: 10px;
  width: 95%;
}
.darkWrapper .serviceSection ul li{
  list-style: none;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 25px 5px;
  width: 100%;
  text-align: center;
}
/*.darkWrapper .even{
  color: darkgray;
}
.darkWrapper .odd{
  background-color: #292929;
  color: darkgray;
}*/
.darkWrapper .serviceImg{
  flex-basis: 50%;
  padding: 5px;
  border-left: 2px solid grey;
  text-align: center;
}
.darkWrapper .serviceImg img{
  width: 95%;
}
.darkWrapper .serviceSection h2{
  color: darkgray;
}

/*........CONTACT.........*/
.darkWrapper #contact{
  width: 90%;
  margin: 10px auto;
  background-color: #292929;
}
.darkWrapper #contact h2{
  color: darkgray;
}
.darkWrapper .lightContact{
  text-align: center;
  width: 80%;
  margin: 10px auto;
}
.darkWrapper .lightContact input{
  width: 90%;
  height: 50px;
  margin: 10px auto;
  background-color: #292929;
  border: 2px solid darkgray;
  padding: 5px 10px;
  font-size: 16px;
  color: white;
}
.darkWrapper .lightContact button{
  border: none;
  background-color: darkgray;
  margin: 10px 0;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
  height: 50px;
  width: 60px;
}

.darkWrapper #scrollBtn{
  font-size: 24px;
  font-weight: bold;
  /*padding: 20px;*/
  background-color: darkgray;
  border: 0;
  /*border-radius: 40px;*/
  width: 50px;
  height: 50px;
  position: fixed;
  right: 14px;
  bottom: 20px;
  cursor: pointer;
}

.darkWrapper #scrollBtn:hover{
  background-color: lightgrey;
 }

 /*........toggle......*/
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}
input:checked + .slider {
  background-color: #2196F3;
}
input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
  transform: translateX(26px);
}
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
