* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body, html {
	font: normal 16px sans-serif;
	color: #555;
	width: 100%;
	height: 100%;
	background-image: url("assets/img/white_texture.jpg");
}

ul,

.logo {
   height: 80px;
   width: 80px;
   align-items: flex-start;
   
 }
 
 .logo img {
   width: 100%;
 }
 
 nav {
   display: flex;
   justify-content: space-around;
   align-items: center;
   min-height: 10vh;
   background-color: #000;
   font-family: 'Poppins', sans-serif;
   /*
   background: url(../img/purpback.jpg) center no-repeat;*/
 }
 
 .nav-links {
   display: flex;
   justify-content: space-around;
   align-items: center;
   width: 70%;
 }
 
 .nav-links a {
   color: rgb(226, 226, 226);
   text-decoration: none;
   letter-spacing: 3px;
   font-weight: bold;
   font-size: 16px;
   color: #FFD700;
 
 }
 
 .burger div {
   width: 25px;
   height: 3px;
   background-color: rgb(226, 226, 226);
   margin: 5px;
   transition: all 0.3s ease;
 }
 
 .burger {
   display: none;
 }
 
 .navbar-link {
   font-size: 1.5rem;
   margin: 2rem 0;
   font-weight: 600;
   color: #777;
   letter-spacing: 0.3rem;
   text-transform: uppercase;
   transition: color 0.3s;
 }
 
 .navbar-link:hover {
   color: #111;
 }


a {
	text-decoration: none;
	opacity: 0.75;
	color: #fff;
}

a:hover {
	opacity: 1;
}

a.btn {
	border-radius: 4px;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	background-color: #3f51b5;
	opacity: 1;
}

section {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 100px 80px;
}

section: not(.hero):nth-child(even) {
	background-color: #fff;
}

/*Hero Styles */

.hero {
	position: relative;
	justify-content: center;
	text-align: center;
	min-height: 75vh;
	color: #fff;
}

.hero .background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	z-index: -1;
	background-color: #80a3db;

}

.hamburger-menu {
	z-index: 100;
}

/* Header Styles */

header {
	position: absolute;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 35px 100px 0;
	animation: 1s fadein 0.5s forwards;
	opacity: 0;
	color: #fff;
}

@keyframes fadein {
	100% {
		opacity: 1;
	}
}

header h2 {
	font-family: "Quicksand", sans-serif;
}

header nav {
	display: flex;
	margin-right: 15px;
}

header nav li {
	margin: 0 15px;
}

@media (max-width: 800px) {
	header {
		padding: 20px 50px;
		flex-direction: column;
	}
	header h2 {
		margin-bottom: 15px;
	}
   
}

.hero h1 {
	font: bold 60px "Open Sans", sans-serif;
	margin-bottom: 40px;
	color: #000;
}

.hero h3 {
	font: normal 28px "Open Sans", sans-serif;
	margin-bottom: 40px;
	color: #000;
}
.hero a.btn {
	padding: 20px 46px;
}

.hero-content-area {
	opacity: 0;
	margin-top: 100px;
	animation: 1s slidefade 1s forwards;
}

@keyframes slidefade {
	100% {
		opacity: 1;
		margin: 0;
	}
}

@media (max-width: 800px) {
	.hero {
		min-height: 600px;
	}
	.hero h1 {
		font-size: 48px;
	}
	.hero h3 {
		font-size: 24px;
	}
	.hero a.btn {
		padding: 15px 40px;
	}
}

@media screen and (max-width: 768px) {
   body {
       overflow-x: hidden;
   }

   .section-heading {
       margin: 50px;
   }
   .nav-links {
       position: absolute;
       right: 0px;
       height: 92vh;
       top: 8vh;
       background-color: #5d4954;
       z-index: 100;
       display: flex;
       flex-direction: column;
       align-items: center;
       transform: translateX(100%);

   }
   div.polaroid {
       width: 45%;
   }

   .galleryName {
       font-size: 15px;
   }

   .nav-links li {
       opacity: 0;
   }
   .burger {
       display: block;
       cursor: pointer;
   }
   .main {
       display: grid;
        grid-template-columns: 1fr ;
        margin: 0px;
   
     }
     .section-heading {
       font-size: 5rem;
       margin: 0px;
       padding: 0px;
   }
   .title {
       text-align: center;
       padding-bottom: 20px;
       margin: 0px;
       font-size: 5rem;
       color: #fff;
       text-shadow: 0.3rem 0.3rem 0.5rem #555;
       background: url(../img/purpback.jpg) center no-repeat;
   
   }
   
   
}

.nav-active {
   transform: translateX(0%);
   transition: transform 0.5s ease-in;
   
}

@keyframes navLinkFade {
   from {
       opacity: 0;
       transform: translateX(50px);
   }
   to {
       opacity: 1;
       transform: translateY(0px);
   }
}

.toggle .line1 {
   transform: rotate(-45deg) translate(-5px,6px);
}

.toggle .line2 {
   opacity: 0;
}

.toggle .line3 {
   transform: rotate(45deg) translate(-5px,-6px);
}

.box {
	background: #fff;
	border-radius: 6px;
	margin: 0 0 2em 0;
	padding: 3em;
	width: 800px;
}

.box:hover {
	box-shadow: 0 0 11px #ff69b4;
}

.view-tenth img {
   -webkit-transform: scaleY(1);
   -moz-transform: scaleY(1);
   -o-transform: scaleY(1);
   -ms-transform: scaleY(1);
   transform: scaleY(1);
   -webkit-transition: all 0.7s ease-in-out;
   -moz-transition: all 0.7s ease-in-out;
   -o-transition: all 0.7s ease-in-out;
   -ms-transition: all 0.7s ease-in-out;
   transition: all 0.7s ease-in-out;
   margin: auto 0;
}

.view-tenth .mask {
background: url("../img/white_texture.jpg");
   -webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
   -o-transition: all 0.5s linear;
   -ms-transition: all 0.5s linear;
   transition: all 0.5s linear;
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
}

.first {
  margin: 0 auto;
  background-color: #daa520;
   
}
.view-tenth h2 {
   background: transparent;
   margin: 20px, 40px, 0px, 40px;
   -webkit-transform: scale(0);
   -moz-transform: scale(0);
   -o-transform: scale(0);
   -ms-transform: scale(0);
   transform: scale(0);
   color: #333;
   -webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
   -o-transition: all 0.5s linear;
   -ms-transition: all 0.5s linear;
   transition: all 0.5s linear;
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
}
.view-tenth p {
   color: #333;
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   -webkit-transform: scale(0);
   -moz-transform: scale(0);
   -o-transform: scale(0);
   -ms-transform: scale(0);
   transform: scale(0);
   -webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
   -o-transition: all 0.5s linear;
   -ms-transition: all 0.5s linear;
   transition: all 0.5s linear;
}
.view-tenth a.info {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   -webkit-transform: scale(0);
   -moz-transform: scale(0);
   -o-transform: scale(0);
   -ms-transform: scale(0);
   transform: scale(0);
   -webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
   -o-transition: all 0.5s linear;
   -ms-transition: all 0.5s linear;
   transition: all 0.5s linear;
}
.view-tenth:hover img {
   -webkit-transform: scale(10);
   -moz-transform: scale(10);
   -o-transform: scale(10);
   -ms-transform: scale(10);
   transform: scale(10);
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
}
.view-tenth:hover .mask {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
}
.view-tenth:hover h2,.view-tenth:hover p,.view-tenth:hover a.info {
   -webkit-transform: scale(1);
   -moz-transform: scale(1);
   -o-transform: scale(1);
   -ms-transform: scale(1);
   transform: scale(1);
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
}

.view {
   width: 500px;
   height: 333px;
   margin: 10px;
   float: left;
   border: 10px solid #fff;
   overflow: hidden;
   position: relative;
   text-align: center;
   -webkit-box-shadow: 1px 1px 2px #e6e6e6;
   -moz-box-shadow: 1px 1px 2px #e6e6e6;
   box-shadow: 1px 1px 2px #e6e6e6;
   cursor: default;
}
.view .mask,.view .content {
   width: 500px;
   height: 333px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
}
.view img {
   display: block;
   position: relative;
}
.view h2 {
   text-transform: uppercase;
   color: #000;
   text-align: center;
   position: relative;
   font-size: 22px;
   font-weight: bold;
   padding: 10px;
   margin: 20px 0 0 0;
}
.view p {
   font-family: Georgia, serif;
   font-style: italic;
   font-size: 20px;
   position: relative;
   color: #000;
   padding: 10px 20px 20px;
   text-align: center;
   margin-left: 8%;
   margin-right: 8%;
}
.view a.info {
   display: inline-block;
   text-decoration: none;
   padding: 7px 14px;
   background: #000;
   color: #fff;
   text-transform: uppercase;
   -webkit-box-shadow: 0 0 1px #000;
   -moz-box-shadow: 0 0 1px #000;
   box-shadow: 0 0 1px #000;
}
.view a.info hover {
   -webkit-box-shadow: 0 0 5px #000;
   -moz-box-shadow: 0 0 5px #000;
   box-shadow: 0 0 5px #000;
}

.main {
  display: grid;
   grid-template-columns: 1fr 1fr;
   grid-template-rows: 1fr 1fr;
   justify-items: center;
   align-items: center;
   grid-gap: 25px;
   z-index: -1;
   background: #fff url('../img/white_texture.jpg');
   padding: 20px 20px
}

.contain {
   z-index: -1;
}

@media (max-width: 1024px) {
	.main {
		display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 1fr;
      justify-items: center;
   align-items: center;
	}
}
/*Footer Section */

footer {
	display: flex;
	align-items: center;
	justify-content: space-around;
	background-color: #301934;
	color: #fff;
	padding: 20px 0;
	clear: both;
}

footer ul {
	display: flex;
}

footer ul li {
	margin-left: 16px;
}

footer p {
	text-transform: uppercase;
	font-size: 14px;
	opacity: 0.6;
	align-self: center;
}

@media (max-width: 1100px) {
	footer {
		flex-direction: column;
	}
	footer p {
		text-align: center;
		margin-bottom: 20px;
	}
	footer ul li {
		margin: 0 8px;
	}
}

.banner {
   width: 100%;
   height: 100vh;
   background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/notes2.jpg) center no-repeat;
   background-size: cover;
}

@media (max-width:1100px) {
   .hero {
      width: 100%;
      height: auto;
   }
}

@media (max-width: 768px) {
   .view-tenth img {
      width: 100%;
      height: auto;
    
   }
}

@media (max-width: 550px) {
   .view-tenth {
      max-width: 100%;
      height: auto;
      max-width: 400px;
      text-align: center;
   }

   .hero {
     width: 100%;
   }

}


@media (max-width: 375px) {
   .view-tenth {
      max-width: 100%;
      height: auto;
   }

   h2 {
      width: 55%;
      align-items: center;
      margin: 0 auto;
   }

   .hero {
     width: 100%;
   }
   .wed {
      max-width: 80%;
      text-align: center;
   }
   hr {

    
     margin: 0 auto;
     text-align: center;
   

   }

   p.wed {
      text-align: center;
   }

   .view-tenth {
      width: 90%;
      margin: 0 auto;
   }

}