*{
padding: 0;
margin: 0;
text-decoration: none;
list-style: none;
box-sizing: border-box;
}
h1{
font-size: 250%;
text-align:center;
font-family: "Times New Roman", Times, serif;
}
p
{
font-size:170%;
text-align:left;
padding-left:20px;
width:80%;
}
body{
font-family: montserrat;
  }
.imagec{
display: block;
margin-left: auto;
margin-right: auto;
padding: 10px;
border: 5px dashed black;
}
.imaged{
max-width: 100%;  
max-height:60%;  
padding: 5px;
}
.imagee{
margin-left: auto;
margin-right: auto;
max-width: 50%;  
max-height:30%;  
padding: 5px;
}
nav{
  display: flex;
  height: 80px;
  width: 100%;
  background: #1b1b1b;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
}
nav .logo{
  color: #fff;
  font-size: 35px;
  font-weight: 600;
}
nav .navigation-menu-bar ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
nav .navigation-menu-bar ul li{
  margin: 0 5px;
}
nav .navigation-menu-bar ul li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
nav ul li a.active,
nav ul li a:hover{
  color: #111;
  background: #fff;
}
input[type="checkbox"]{
  display: none;
}
nav .hide-navigation-menu-bar{
  display: none;
}
@media (max-width: 952px){
label.logo{
      font-size: 30px;
      padding-left: 50px;
    }
nav ul li a{
      font-size: 16px;
    }
  }
@media (max-width: 920px){
nav .navigation-menu-bar{
    display:none;
  }
  nav .hide-navigation-menu-bar .menu-btn i{
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: block;
  }
  nav .hide-navigation-menu-bar{
    display: block;
  }
  #click:checked ~ .hide-navigation-menu-ba .menu-btn i:before{
    content: "\f00d";
  }
  nav .hide-navigation-menu-bar ul{
    display: flex;
    position:absolute;
    top: 80px;
    left: -100%;
    background: #111;
    height:500px;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    z-index: 1;
  }
  #click:checked ~ ul{
    left: 0;
  }
  nav .hide-navigation-menu-bar ul li{
    width: 100%;
    margin: 40px 0;
  }
  nav .hide-navigation-menu-bar ul li a{
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a{
    margin-left: 0px;
  }
  nav .hide-navigation-menu-bar ul li a.active,
  nav .hide-navigation-menu-bar ul li a:hover{
    background: none;
    color: cyan;
  }
  nav .hide-navigation-menu-bar ul li a{
    color: #f2f2f2;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
}
section{
    background: url(bg1.jpg) no-repeat;
    background-size: cover;
    height: calc(100vh - 80px);
  }

footer{
    position:relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    height: auto;
    width: 100vw;
    font-family: "Open Sans";
    padding-top: 40px;
    color: #fff;
}
.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.footer-content h3{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}
.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}
.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}
.socials li{
    margin: 0 10px;
}
.socials a{
    text-decoration: none;
    color: #fff;
}
.socials a i{
    font-size: 1.1rem;
    transition: color .4s ease;

}
.socials a:hover i{
    color: aqua;
}

.footer-bottom{
    background: #000;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}
.footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}