/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}

footer,
header,
nav {
  display: block;
}

a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

h1 {
  margin: .67em 0;
  font-size: 2em;
}

small {
  font-size: 80%;
}

img {
  border: 0;
}

hr {
  height: 0;
  box-sizing: content-box;
}

h1, h2 {
    font-family: 'Lobster';
    color: #c52a4c;
    font-size: 35px;
    text-decoration: underline;
    letter-spacing: 1.2px;
    margin: 0;
}
h1.inner {
  text-decoration: none;
}
h2 {
    text-decoration: none;
    text-align: center;
}
h3 {
  font-family: 'Lobster';
  color: #c52a4c;
  font-size: 20px;
  margin-top: 15px;
}

.active {
  color: #c52a4c;
}
/**********************************
 *end of normalize
 *********************************/


body {
   background: #2a2525;
   background-image: url('img/noise1.png');
   font-family: 'PT Sans';
   color: #222222;
   font-size: 16px;
   padding-bottom: 15px;
}

p {
    margin-bottom: 25px;
    padding: 0 !important;
}

.container, header, footer {
   width: 100%;
   max-width: 1100px;
   margin: 0 auto;
   padding-left: 15px;
   padding-right: 15px;
   box-sizing: border-box;
   overflow: hidden;
}
.container {
   background: white;
   border-radius: 20px;
   padding-top: 15px;
   padding-bottom: 15px;
   box-shadow: 0 0 6px 3px rgba(0, 0, 0, .4);
}

header {
    height: 80px;
}

.logo {
    height: 80px;
    width: 272px;
    padding-top: 15px;
    float: left;
}



nav {
    float: right;
}
nav ul {
    list-style: none;
    height: 60px;
    line-height: 80px;
    margin: 0;
    margin-top: 15px;
    padding: 0;
    overflow: hidden;
}
nav li {
    float: left;
    padding: 0 15px;
    margin-right: 0;
    position: relative;
}
nav li:before {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 12px;
    width: 2px;
    background: white;
}
nav li:last-of-type:before {
    display: none;
    width: 0px;
}
nav a {
    color: white;
    text-decoration: none;
    margin: 0;
    padding: 0;
    font-family: 'Lobster';
    font-size: 23px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, .6);
    -webkit-transition: color .15s ease-out;
            transition: color .15s ease-out;
}
nav a:hover {
    color: #c52a4c;
}
/******************************
 *end of header section
 *****************************/


/*******************************
 *footer
 ******************************/
footer {
    color: white;
    text-align: center;
    font-family: 'Lobster';
    font-size: 20px;
    letter-spacing: 1.1px;
    padding-top: 25px;
}
footer p, footer small {
    margin: 0;
}
footer p {
    margin-bottom: 10px;
}
footer a {
    color: #ac3434;
}
footer small {
    font-family: 'PT Sans';
    font-size: 12px;
    color: #a39f9f;
    padding-bottom: 5px;
}



/*****************************
 *gallery on home page
 ****************************/
.gallery {
    background: #cc2e51;
    margin-left: -15px;
    margin-right: -15px;
    padding: 15px;
    overflow: hidden;
}
.gallery div {
    float: left;
    width: calc((100% - 45px) / 4);
    margin-right: 15px;
}
.gallery div:last-of-type {
    margin-right: 0;
}
.gallery img {
    width: 100%;
}

/******************************
 *main content section
 *****************************/

.photo {
    float: left;
    margin: 15px;
    margin-left: 0;
}




@media screen and (max-width: 919px) {
  .logo {
    width: 200px;
  }
  .logo img {
    width: 100%;
  }
  nav a {
    font-size: 18px;
  }
  .container {
    border-radius: 0;
  }
}

@media screen and (max-width: 748px) {
  .logo {
    width: 100%;
    position: relative;
    height: 50px;
    
  }
  .logo img {
    width: 200px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  header {
    height: 100px;
  }
  nav {
    right: 15px;
    display: block;
    margin-top: 25px;
    position: absolute;
  }
  nav a {
    font-size: 14px;
  }
  .container {
    border-radius: 0;
  }
}


