/* This Privacy policy includes CSS and HTML that found and slighly modified from 
   'CSS Snap Points Example' of Micheal Gearon's http://codepen.io/michaelgearon/pen/EVqjXg
   Please see Copyright below for information of original.
   Other modifications made by vazed.com fall under same License
Original License
<!-
Copyright (c) 2015 by Michael Gearon (http://codepen.io/michaelgearon/pen/EVqjXg)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-->
*/

body{
  font-family: 'Playfair Display', serif;
  font-size: 100%;
  color: #333;
}
img {
  width: 500px;
  height: 250px;
}

.snap-section {
  width: 500px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-scroll-snap-points-x: repeat(100%);
      -ms-scroll-snap-points-x: repeat(100%);
          scroll-snap-points-x: repeat(100%);
  -webkit-scroll-snap-type: mandatory;
      -ms-scroll-snap-type: mandatory;
          scroll-snap-type: mandatory;
}
h1 {
  font-size: 7vw;
  font-weight: 400;
  line-height: 1.2;
}
h2 {
  font-size: 3.4vh;
  padding-top: 20px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
p {
  font-size: 1.1em;
  line-height: 1.5;
  font-family: 'PT Sans', sans-serif;
  font-weight: 400;
}
.container{
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
hr{
  border: 2px solid #C4D7ED;
  margin-top: 40px;
}
blockquote{
  line-height: 1.5;
  border-left: 2px solid lightgrey;
  padding-left: 10px;
  font-size: 1.2em;
}
a{
  color: #375D81 ;
}
a:hover{
  color: #183152;
}
.btn{padding: 14px 24px; font-size: 14px; color: #375D81; border: 2px solid #375D81; text-transform: uppercase; font-weight: 800; line-height: 50px; -webkit-transition: background-color 0.5s ease; transition: background-color 0.5s ease; text-decoration: none; font-family: 'PT Sans', sans-serif;}

.btn:hover {background-color: #375D81; border: 2px solid #52616D; color: white !important; }
