/*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #111111;
    padding: 0.2em 0;
}





/* ==========================================================================
   General styles
   ========================================================================== */

body,html{
    width: 100%;
    height: 100%
}


body{
    font: 400 16px/24px 'PT Sans', sans-serif;
    color: #000000;

    -webkit-font-smoothing:antialiased;
    font-smoothing:antialiased;
}

h1, 
h2, 
h3, 
h4{
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
}



img{
    max-width: 100%;
    height: auto;
}

a:link,
a:visited{
    text-decoration: none;
}

.section-padding{
    padding: 50px 0;
}

b{
    font-weight: 700;
}

p.margin-10{
    margin-top: 20px;
    margin-bottom: 10px;
}
/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
    padding: 20px 0;
    background: #373737;
}
.index-header{
    background: rgba(0,0,0,0.5);
}

.navbar {
    border: 1px solid transparent;
    margin-bottom: 0;
    min-height: auto;
    position: relative;
}

h1.logo{
    width: 160px;
    margin: 0;
    font-size: 23px;
    line-height: 20px;
    margin-left: 15px;
}

h1.logo a{
    display: block;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

h1.logo a small{
    font-size: 14px;
    letter-spacing: 3px;
    display: block;
    color: #9a9999;
    text-transform: none;
}


.nav > li > a {
    display: inline-block;
    font: 400 12px/18px 'Lato', sans-serif;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 15px;
}




.book a{
    font: 400 12px/18px 'Lato', sans-serif;
    text-transform: uppercase;
    color: #53efd3;
    display: inline-block;
    min-width: 145px;
    padding: 8px 15px;
    margin-left: 15px;
    cursor: pointer;
    text-align: center;
    border: 1px solid #53efd3;
    

}
.book a:hover{
    color: #000;    
    background: #53efd3;
    text-decoration: none;
}

.button-book a{
    color: #000;
    border: 1px solid #000;
    margin-left: 0;
}
.button-book a:hover{
    color: #fff;
    border: 1px solid #000;
    background: #000;
}

.button-gift a{
    color: #fff;    
    background: #000;    
    border: 1px solid #000;   
    margin-left: 0;
}
.button-gift a:hover{
    color: #000;    
    background: transparent;    
    border: 1px solid #000;
}

.nav > li:nth-last-child(-n+2) > a{
    padding: 0;
    margin-top: 7px;
    margin-left: 15px;
    width: 23px;
}

.nav > li:nth-last-child(-n+2) > a img{
    display: block;
    width: 100%;
}


.nav > li > a:hover,
.nav > li > a.active {
    background: transparent;
    color: #53efd3;
    text-decoration: underline;
}

.nav > li.book > a:hover,
.book a {    
    text-decoration: none;
}

.navbar-toggle{
    margin-top: 0;
    padding-right: 0;

}

.navbar-toggle .icon-bar {
    background: #53efd3;
}




/*************************************************************
 Home-page
**************************************************************/

.home-page{   
    background: #fff url(img/banner.jpg) no-repeat center center / cover;   
}

.home-page h2{
    color: #fff;
    text-transform: uppercase;
   
}

.home-banner{
    position: absolute;
    top: 0;
    display: table;
    width: inherit;
    height: inherit;
    text-align: center;
    z-index: -1;
}
.home-banner .container{
    display: table-cell;
    width: inherit;
    height: 100%;
    vertical-align: middle;
}
    
/*************************************************************
 About-page
**************************************************************/
.section-about{
    background: url(img/page-bg.png) no-repeat top left;
}

/*************************************************************
 Services-page
**************************************************************/











/*************************************************************
 Contact-page
**************************************************************/



.contact a{
    color: #141414;
    text-decoration: none;
}

.contact a:hover{
    text-decoration: underline;
    color: #000;
}







/*************************************************************
 Responsive styles Less-than-767px
**************************************************************/

@media screen and (min-width: 480px){
    .services h5 span{
       float: none;
    }
}


@media screen and (min-width: 768px){
    body{
       font-size: 18px;
       line-height: 27px;
    }

    h1.logo{
        margin-left: 0;
    }

    .home-banner h2{
       font-size: 66px;
       line-height: 66px;
       font-weight: 300;
    } 


    .content-box{
        width: 85%;
        margin: auto;
    }

    .section-padding{
        padding: 100px 0;
    }

    p{
        margin-bottom: 30px;
    }

}

@media screen and (min-width: 768px) and (max-width: 991px){
  .container{
    width: 98%;
  }

  .home-banner h2{
     font-size: 46px;
     line-height: 46px;
  } 

  .nav > li > a {
      padding: 10px 10px;
  }

}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers:
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
