@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;800&display=swap');

body{
  margin:0;
  padding:0;
  font-family: 'Poppins', sans-serif;
  background-color: #95ff00;
  height: 100%; 
  width: 100%;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
}

header {
  background: #ff7e00;
  width:100%;
  padding:20px 0;
  color:white;
  text-align:center;
}

a {
  text-decoration:none;
  color:inherit;
  font-size: 30px;
  font-weight: bold;
}

nav ul {
  background-color:#379ad6;
  overflow:hidden;
  color:white;
  padding:0;
  margin:0;
  text-align:center;
  -webkit-transition:max-height 0.4s;
  -ms-transition:max-height 0.4s;
  -moz-transition:max-height 0.4s;
  -o-transition:max-height 0.4s;
  transition:max-height 0.4s;
}

nav ul li {
  display:inline-block;
  padding:20px;
}

nav ul li:hover {
  background-color:#ff7e00;
}

section {
  line-height: 1.5em;
  font-size:0.9em;
  padding:40px;
  width:75%;
  margin:0 auto;
}


@media screen and (max-width:580px){
  
  nav ul {
    max-height: 1000px;
  }
  
  nav ul li {
    width:100%;
    box-sizing:border-box;
    padding:15px;
    text-align:left;
  }
   

}

.wrapper{
  margin: 100px auto;
  max-width: 1100px;
}
.wrapper nav{
  display: flex;
  justify-content: center;
}
.wrapper .items{
  display: flex;
  max-width: 1120px;
  width: 100%;
  justify-content: space-between;
}
.items span{
  padding: 7px 25px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  border-radius: 50px;
  border: 2px solid #ff7e00;
  transition: all 0.3s ease;
}
.items span.active,
.items span:hover{
  color: #fff;
  background: #ff7e00;
}

.gallery{
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.gallery .image{
  width: calc(200% / 9);
  padding: 10px;
}
.gallery .image span{
  display: flex;
  width: 100%;
  overflow: hidden;
}
.gallery .image img{
  width: 100%;
  
  transition: all 0.3s ease;
}
.gallery .image:hover img{
  transform: scale(1.1);
}
.gallery .image.hide{
  display: none;
}
.gallery .image.show{
  animation: animate 0.4s ease;
}
@keyframes animate {
  0%{
    transform: scale(0.5);
  }
  100%{
    transform: scale(1);
  }
}

.preview-box{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: 500px;
  width: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 0 5px 5px 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}
.preview-box.show{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}
.preview-box .details{
  padding: 13px 15px 13px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.details .title{
  display: flex;
  font-size: 18px;
  font-weight: 400;
}
.details .title p{
  font-weight: 500;
  margin-left: 5px;
}
.details .icon{
  color: #007bff;
  font-style: 22px;
  cursor: pointer;
}
.preview-box .image-box{
  width: 100%;
  display: flex;
}
.image-box img{
  width: 100%;
  border-radius: 0 0 3px 3px;
}
.shadow{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: none;
  background: rgba(0,0,0,0.4);
}
.shadow.show{
  display: block;
}

@media (max-width: 1000px) {
  .gallery .image{
    width: calc(100% / 3);
  }
}
@media (max-width: 800px) {
  .gallery .image{
    width: calc(100% / 2);
  }
}
@media (max-width: 700px) {
  .wrapper nav .items{
    max-width: 600px;
  }
  nav .items span{
    padding: 7px 15px;
  }
}
@media (max-width: 600px) {
  .wrapper{
    margin: 30px auto;
  }
  .wrapper nav .items{
    flex-wrap: wrap;
    justify-content: center;
  }
  nav .items span{
    margin: 5px;
  }
  .gallery .image{
    width: 100%;
  }
}

.buyphotonow{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    max-width: 600px;
    padding: 20px;
    border-radius: 5px;
    margin-left: 470px;
    margin-top: -100px;
}

@media (max-width: 1000px){
    .buyphotonow{
        margin-left: 0px;
        max-width: 300px;
        margin-top: 0px;
    }

    .footer-content h3{
        font-size: 20px;
        font-weight: 400;
    }
}

footer{
    position:relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ff7e00;
    height: auto;
    width: 100%;
    font-family: "Open Sans";
    padding-top: 40px;
    color: #fff;
    margin-top: 100px;
}
.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.footer-content h3{
    font-size: 20px;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 3rem;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

.footer-content a{
    font-size: 16px;
}

.footer-content img{
  width: 130px;
  height: 130px;
}

.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 19px;
    margin-top: -20px;
    font-family: 'Poppins', sans-serif;
}

.footer-bottom{
    background: #379ad6;
    width: 100%;
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}
.footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;font-family: 'Poppins', sans-serif;

}

.section1{
    position:relative;
    height:600px;
    background:#F1F5F8;
    padding:10px 0px;
    width:100%;
  }
  .section1 h2{
    text-align:center;
    font-size:40px;
  }
  .section1 p{
    text-align:center;
    padding:0px 70px;
    color:grey;
  }
  .sticky-social{
    position:fixed;
    top:200px;
    left:-40px;
    padding:0px;
    margin:0px;
  }
  .social{
    list-style:none;
  }
  .social li{
    padding:10px 10px;
    font-size:25px;
    transition:all 0.8s ease-in-out;
  }
  .social li:hover{
      margin-right:-30px;
   box-shadow:2px 5px 10px grey;
  }
  .social li:hover .fa{
      margin-left:20px;
    
  }
  .fa{
    color:#fff;
    transition:all 0.8s ease-in-out;
  }
  .fb{
    background-color:#3C5A98;
  }
  .twitter{
    background-color: #ea4c89;
  }
  .insta{
      background-color:#DC4F42;
  }
  .pin{
      background-color:#CB2128;
  }
  .vim{
      background-color:#59BFBE;
  }

  .fab{
      color: white;
     
  }