/**
* Principles of writing consistent, idiomatic CSS https://github.com/necolas/idiomatic-css
*
* Standard colors
* blue:     #16262E     rgba(22, 38, 46, 1.0)
* orange:   #EB5E00     rgba(235, 94, 0, 1.0)
* gold:     #E4B315     rgba(228, 179, 21, 1.0)
*
* text:
*/

/* lobster-two-regular - latin */
@font-face {
  font-family: 'Lobster Two';
  font-style: normal;
  font-weight: 400;
  src: local('Lobster Two'), local('LobsterTwo'),
       url('../fonts/LobsterTwo/lobster-two-v10-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/LobsterTwo/lobster-two-v10-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* lobster-two-italic - latin */
@font-face {
  font-family: 'Lobster Two';
  font-style: italic;
  font-weight: 400;
  src: local('Lobster Two Italic'), local('LobsterTwo-Italic'),
       url('../fonts/LobsterTwo/lobster-two-v10-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/LobsterTwo/lobster-two-v10-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* lobster-two-700 - latin */
@font-face {
  font-family: 'Lobster Two';
  font-style: normal;
  font-weight: 700;
  src: local('Lobster Two Bold'), local('LobsterTwo-Bold'),
       url('../fonts/LobsterTwo/lobster-two-v10-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/LobsterTwo/lobster-two-v10-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* lobster-two-700italic - latin */
@font-face {
  font-family: 'Lobster Two';
  font-style: italic;
  font-weight: 700;
  src: local('Lobster Two Bold Italic'), local('LobsterTwo-BoldItalic'),
       url('../fonts/LobsterTwo/lobster-two-v10-latin-700italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/LobsterTwo/lobster-two-v10-latin-700italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


/* ek-mukta-200 - latin_latin-ext */
@font-face {
    font-family: 'Ek Mukta';
    font-style: normal;
    font-weight: 200;
    src: local('Ek Mukta ExtraLight'), local('EkMukta-ExtraLight'),
 url('../fonts/EkMukta/ek-mukta-v7-latin_latin-ext-200.woff2') format('woff2'),
 url('../fonts/EkMukta/ek-mukta-v7-latin_latin-ext-200.woff') format('woff');
}
/* ek-mukta-300 - latin_latin-ext */
@font-face {
    font-family: 'Ek Mukta';
    font-style: normal;
    font-weight: 300;
    src: local('Ek Mukta Light'), local('EkMukta-Light'),
 url('../fonts/EkMukta/ek-mukta-v7-latin_latin-ext-300.woff2') format('woff2'),
 url('../fonts/EkMukta/ek-mukta-v7-latin_latin-ext-300.woff') format('woff');
}
/* ek-mukta-regular - latin_latin-ext */
@font-face {
    font-family: 'Ek Mukta';
    font-style: normal;
    font-weight: 400;
    src: local('Ek Mukta'), local('EkMukta-Regular'),
 url('../fonts/EkMukta/ek-mukta-v7-latin_latin-ext-400.woff2') format('woff2'),
 url('../fonts/EkMukta/ek-mukta-v7-latin_latin-ext-400.woff') format('woff');
}
/* ek-mukta-medium - latin_latin-ext */
@font-face {
    font-family: 'Ek Mukta';
    font-style: normal;
    font-weight: 500;
    src: local('Ek Mukta'), local('EkMukta-Medium'),
 url('../fonts/EkMukta/ek-mukta-v7-latin_latin-ext-500.woff2') format('woff2'),
 url('../fonts/EkMukta/ek-mukta-v7-latin_latin-ext-500.woff') format('woff');
}
/* ek-mukta-600 - latin_latin-ext */
@font-face {
    font-family: 'Ek Mukta';
    font-style: normal;
    font-weight: 600;
    src: local('Ek Mukta Semibold'), local('EkMukta-Semibold'),
 url('../fonts/EkMukta/ek-mukta-v7-latin_latin-ext-600.woff2') format('woff2'),
 url('../fonts/EkMukta/ek-mukta-v7-latin_latin-ext-600.woff') format('woff');
}
/* ek-mukta-700 - latin_latin-ext */
@font-face {
    font-family: 'Ek Mukta';
    font-style: normal;
    font-weight: 700;
    src: local('Ek Mukta Bold'), local('EkMukta-Bold'),
 url('../fonts/EkMukta/ek-mukta-v7-latin_latin-ext-700.woff2') format('woff2'),
 url('../fonts/EkMukta/ek-mukta-v7-latin_latin-ext-700.woff') format('woff');
}


body {
    background: #F7F7F7 url('../img/backgrounds/wallpapers/bg-abstract-2.jpg') no-repeat center center fixed;
    background: #F7F7F7 url('../img/backgrounds/wallpapers/bg-paint-1.jpg') no-repeat center center fixed;
    font-family: 'Ek Mukta',sans-serif;
    font-weight: 300;
    color: #474747;
    z-index: 0;
}
h1,h2,h3,h4,h5,h6 {
    display: block;
    font-weight: 300;
    color: #db7f59;
    color: #EB5E00;
    font-family: "Playfair Display", Georgia, serif;
    text-transform: uppercase;
}
h1 {
    margin-top: 1em;
    margin-bottom: 0.5em;
}
h2 {
    margin-top: 1.2em;
}
p {
    font-size: 1.2rem;
}
p b,
li b {
    font-weight: 500;
}
p.lead-text {
    margin-bottom: 0.7rem;
    font-weight: 200;
}
.lead-text {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 0;
}
.small-text {
    font-size: 0.95rem;
}
.smaller-text {
    font-size: 1.05rem;
}
.normal-text {
    font-size: 1.2rem;
}
ul.text-list {
    font-size: 1.25em;
    line-height: 1.7;
    margin-top: 5px;
}
.no-margin {
    margin: 0;
}
.red {
    color: #eb0000;
}
.dark-blue{
    color: #16262E ;
}
.gold {
    color: #E4B315;
}
.orange {
    color: #EB5E00;
}
.blue-bg {
    background: rgba(22, 38, 46, 1.0);
}
.slogan-text {
    font-family: 'Ek Mukta',sans-serif;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 200;
    text-transform: none;
}
::selection {
	color: #fff;
	background: #16262E ; /* CSS3 ::selection Selector, IE9+, Opera, Google Chrome and Safari */
}
::-moz-selection{
	color: #fff;
	background: #16262E ; /* CSS3 Firefox text selection color */
}

/* ==========================================================================
    HEADER & NAVBAR
   ========================================================================== */
/* Header */
.header {
    width: 100%;
    position: relative;
    white-space: nowrap;
}
/* Navbar colors */
.navbar,
.dropdown-menu {
    color: #fff;
    background-color: rgba(22, 38, 46, 0.8);
}

/* Navbar main */
.navbar {
    padding: 22px 0 20px 0;
    font-family: 'Ek Mukta', sans-serif;
}
.sticky-navbar {
    background: #16262E;
    -webkit-box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.7);
       -moz-box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.7);
            box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.7);
}
/* Brand & Logo */
.navbar-brand {
    font-family: "Lobster Two", "Playfair Display", Georgia, serif;
    text-transform: normal;
    font-style: italic;
    font-size: 35px;
    line-height: 1;
    color: #fff !important;
    margin: -5px 0 0 0;
}
.navbar-brand a {
    position: relative;
    color: #fff;
    padding: 0;
    display: inline-block;
    text-align: left;
}
.navbar-brand a:hover {
    text-decoration: none;
}
.navbar-brand img {
    height: 35px;
    margin-top: 0;
}
/* Navbar collapse */
.navbar-collapse {

}
/* Navbar links */
.navbar .navbar-nav .nav-link {
    color: #fff;
    margin: 0 0 0 15px;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.navbar .navbar-toggle {
    border-color: transparent;
}
.navbar .navbar-toggle:hover,
.navbar .navbar-toggle:focus {
    background-color: transparent;
}
.navbar .navbar-toggle .navbar-toggler-icon {
    color: #fff;
}
.navbar .navbar-link {
    color: #fff;
}
.navbar .navbar-link:hover {
    color: #fff;
}
.nav-link .fa {
    font-size: 1.5rem;
    margin-top: -7px;
}
/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 140%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 12rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 1.1rem;
    text-align: left;
    text-transform: uppercase;
    list-style: none;
    background-clip: padding-box;
    border: none;
    border-radius: 0 0 0.25rem 0.25rem;
}
.dropdown-menu.show {
    margin-top: 0.15rem;
}
a.dropdown-item {
    color: #fff !important;
    line-height: 2rem;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #fff;
    text-decoration: none;
background-color: rgba(22, 38, 46, 0.9);
}
.collapse.show {
    margin-top: 1.55rem;
}
.collapse.show li,
.collapse.show .dropdown-item {
    text-align: left;
}
/* Hide default dropdown toggle icon and display Fontawesome icon */
a.dropdown-toggle:after {
    display: none;
}
.fa-angle-down {
    font-size: 20px;
}
/* Toggler - Hamburger menu */
.navbar-toggler {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: .25rem;
}
.navbar-toggler-icon {
    background: transparent url('../img/toggler-white_32.svg') no-repeat center center;
    outline: none;
}
.navbar-nav {
    color: #fff;
    background-color: transparent;
}
.navbar-expand .navbar-nav .show .dropdown-menu .dropdown-item {
    color: #fff;
}
.navbar-expand .navbar-nav .show .dropdown-menu .dropdown-item:hover,
.navbar-expand .navbar-nav .show .dropdown-menu .dropdown-item:focus {
    color: #fff;
}
.navbar-expand .navbar-nav .show .dropdown-menu .dropdown-item.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.6);
}
/* Flag icons */
.flag-icon {
    margin: 7px 0 0 30px;
    background-color: transparent;
    border: 0;
    width: 30px;
    height: auto;
    vertical-align:middle;
}
.hidden-flag {
    display: none !important;
}

/* Font awesome 4 icons*/
.contact .fa {
    color: #16262E;
}

/* ==========================================================================
    JSSOR SLIDER
   ========================================================================== */
#slider-wrapper {
        position:relative;
        top:0;
        left:0;
        width:100%;
        height:100%;
        overflow:hidden;
}

/* jssor full-window styles
========================================*/
.jsslider_full-window,
.jsslides_full-window  {
        width: 1920px;
        height: 1080px;
}
.jsslider_full-window {
        position:relative;
        margin:0 auto;
        top:0px;
        left:0px;
        overflow:hidden;
        visibility:hidden;
}
.jsslides_full-window {
        cursor:default;
        position:relative;
        top:0px;
        left:0px;
        overflow:hidden;
}

/* jssor slider text captions
========================================*/
.jssor-caption {
        font-family: "Playfair Display", Georgia, serif;
        word-wrap: break-word;
        position: relative;
        top: 44%;
        margin: 0 auto;
        padding: 0;
        text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
        font-size: 4rem;
        color: #ffffff;
        text-align: center;
        line-height: 1.5;
        font-style: normal;
        text-transform: uppercase;
}

/* jssor breakpoints
========================================*/
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
        .jssor-caption {
                max-width: 1100px;
                top: 47%;
                font-size: 3rem;
        }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
        .jssor-caption {
                max-width: 970px;
                font-size: 2.4em;
        }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
        .jssor-caption {
                max-width: 740px;
                font-size: 2.1em;
        }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
        .jssor-caption {
                max-width: 460px;
                font-size: 1.9em;
        }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
        .jssor-caption {
                max-width: 300px;
                font-size: 1.7em;
        }
}


/* jssor slider loading skin spin css
========================================*/
.jssor-spin {
        position:absolute;
        top:0px;
        left:0px;
        width:100%;
        height:100%;
        text-align:center;
        background-color:rgba(0,0,0,0.7);
}
.jssor-spin img {
        margin-top:-19px;
        position:relative;
        top:50%;
        width:38px;
        height:38px;
        animation-name: jssor-spin;
        animation-duration: 1.6s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
}
@keyframes jssor-spin {
        from {
                transform: rotate(0deg);
        }
        to {
                transform: rotate(360deg);
        }
}

/* jssor Bullet Navigator
========================================*/
.jssor-bullet-navigator {position:absolute;bottom:12px;right:12px}
.jssor-bullet-navigator .i {position:absolute;cursor:pointer;width:40px;height:40px;}
.jssor-bullet-navigator .i .b {fill:#000;fill-opacity:.5;stroke:#fff;stroke-width:400;stroke-miterlimit:10;stroke-opacity:0.5;}
.jssor-bullet-navigator svg {position:absolute;top:0;left:0;width:100%;height:100%;}
.jssor-bullet-navigator .i:hover .b {fill-opacity:.8;}
.jssor-bullet-navigator .iav .b {fill:#FFFFFF;fill-opacity:1;stroke:#FFFFFF;stroke-opacity:.7;stroke-width:2000;}
.jssor-bullet-navigator .iav:hover .b {fill-opacity:.6;}
.jssor-bullet-navigator .i.idn {opacity:.3;}
/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
    .jssor-bullet-navigator {display: none;}
}

/* jssor Arrow Navigator
========================================*/
.jssor-arrow-navigator {display:block;position:absolute;cursor:pointer;width:80px;height:80px;top:0px;}
.jssor-arrow-navigator-left {left:25px;}
.jssor-arrow-navigator-right {right:25px;}
.jssor-arrow-navigator .a {fill:none;stroke:#fff;stroke-width:360;stroke-miterlimit:10;}
.jssor-arrow-navigator:hover {opacity:.8;}
.jssor-arrow-navigator svg {position:absolute;top:0;left:0;width:100%;height:100%;}
/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
    .jssor-arrow-navigator {display: none;}
}

/* ==========================================================================
    quote rotator  https://tympanus.net/codrops/2013/03/29/quotes-rotator/
   ========================================================================== */
.cbp-qtrotator {
    position: relative;
    margin: 2.5em auto 0.5em auto;
    max-width: 1170px;
    width: 100%;
    min-height: 150px;
}
.cbp-qtrotator .cbp-qtcontent {
    position: absolute;
    min-height: 150px;
    border-top: 1px solid #BDBDBD;
    border-bottom: 1px solid #BDBDBD;
    padding: 2em 0;
    top: 0;
    z-index: 0;
    opacity: 0;
    width: 100%;
}
.no-js .cbp-qtrotator .cbp-qtcontent {
    border-bottom: none;
}
/* Currently visible */
.cbp-qtrotator .cbp-qtcontent.cbp-qtcurrent,
.no-js .cbp-qtrotator .cbp-qtcontent {
    position: relative;
    z-index: 100;
    pointer-events: auto;
    opacity: 1;
}
.cbp-qtrotator .cbp-qtcontent:before,
.cbp-qtrotator .cbp-qtcontent:after {
    content: " ";
    display: table;
}
.cbp-qtrotator .cbp-qtcontent:after {
    clear: both;
}
.cbp-qtprogress {
    position: absolute;
    background: #ff7518;
    height: 1px;
    width: 0%;
    top: 0;
    z-index: 1000;
}
.cbp-qtrotator blockquote {
    margin: 0;
    padding: 0;
}
/*
.cbp-qtrotator p.cbp-quote:before {
    padding: 0;
    padding: 0;
    font-size: 4em;
    color: #707070;
    content:'\201C';
    vertical-align: -0.4em;
}
*/
.cbp-qtrotator p.cbp-quote {
    font-size: 1.1em;
    line-height: 1.7;
    color: #707070;
    font-weight: 200;
    margin: 0.4em 0 1em;
}
.cbp-qtrotator p.cbp-footer {
    font-size: 1em;
    color: #ff7518;
    font-style: normal;
    margin-bottom: 0;
}
.cbp-qtrotator p.cbp-footer:before {
    /* https://css-tricks.com/snippets/html/glyphs */
    content:"\2014 ";
}
.cbp-qtrotator .cbp-qtcontent img {
    float: right;
    margin-left: 2em;
    border: 1px solid #fff;
    background: #E6E6E6;
    padding: 20px;
    width: 100px;
}
/* Example for media query */
@media screen and (max-width: 30.6em) {

    .cbp-qtrotator {
        font-size: 70%;
    }

    .cbp-qtrotator img {
        width: 80px;
    }

}

/* ==========================================================================
    FANCY LINE
   ========================================================================== */
.fancy-line{
    overflow: hidden;
    text-align: center;
    margin-bottom: 1rem;
}
.fancy-line span{
    position: relative;
}
.fancy-line span:before,
.fancy-line span:after{
    content: "";
    position: absolute;
    top: 50%;
    margin-top: 0;
    height: 0;
    border-top: 1px solid #16262E;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    width: 200em;
}
.fancy-line span:before {
    right: 100%;
    margin-right: .5em;
}
.fancy-line span:after {
    left: 100%;
    margin-left: .5em;
}

/* ==========================================================================
    IMAGES STYLES
   ========================================================================== */
.bordered {
    margin: 0;
    position: relative;
    border: 5px solid #FFFFFF;
    background-color: transparent;
}
.bordered-2 {
    margin: 0;
    position: relative;
    border: 1px solid #E3E3E3;
    background-color: transparent;
}
.hover-animate-zoom {
    background: rgba(0, 0, 0, 0.9) url(../img/zoom-icon-white-2.png) no-repeat center center;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}
.hover-animate-zoom a:hover {
    border: 0;
    outline: none;
}
.one-edge-shadow {
    -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.8);
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.8);
}
.inner-shadow img {
    display: block;
}
.inner-shadow {
    display: block;
    position: relative;
}
.inner-shadow::before {
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5) inset;
    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5) inset;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5) inset;
}

/* ==========================================================================
    PRICE TABLE
   ========================================================================== */
.price-table{
    font-size: 1.2rem;
}
.price-header{
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 1);
    padding: 15px 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}
.price-body-one,
.price-body-two{
    background: rgba(230, 230, 230, 0.7);
    padding: 15px 0;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.95);
}
.price-body-one{
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.price-footer{
    font-size: 1.4rem;
    background: rgba(22, 38, 46, 1.0);
    color: #F7F7F7;
    padding: 15px 0;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}
.price-body-one .circle{
    font-size: 1.4rem;
    position: relative;
    vertical-align: middle;
    background: rgba(255,255,255,1);
    border-radius: 30px;
    width: 60px;
    height: 60px;
    padding-top: 15px;
    margin: 0 auto;
    text-align: center;
    -moz-box-shadow:    0 0 3px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    box-shadow:         0 0 3px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
    Add the transparent pattern overlay to images
   ========================================================================== */
/* 1. way https://stackoverflow.com/questions/28926475/pixel-pattern-overlay-on-website-section-how-is-it-done */
.overlay-dots:after {
    position: absolute;
    background: url(../img/overlays/white-small-checks.png) center repeat;
    content: "";
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: .1;
    z-index: -1;
}
.zindex-1 {
    z-index: -2;
}
/* 2. way https://stackoverflow.com/questions/22993173/how-to-create-a-pattern-overlay-on-top-of-an-image */
.parallax-window {
    position: relative;
}
.pixel-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .15;
    background: url(../img/overlays/white-small-checks.png) center repeat;
}

/* ==========================================================================
    PARALAX WINDOW https://github.com/pixelcog/parallax.js/
   ========================================================================== */
.parallax-window {
    background: transparent;
    z-index: -20;
    margin-bottom: 25px;
}
.paralax-text {
    font-family:  "Playfair Display", "Libre Baskerville", Georgia, serif;
    font-weight: 400;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
    font-size: 3em;
    color: #fff;
    text-align: center;
    margin: 0 auto 0 auto;
    z-index: 20;
    /* http://zerosixthree.se/vertical-align-anything-with-just-3-lines-of-css/ */
    position: relative;
    top: 55%;
    -webkit-transform: perspective(1px) translateY(-60%);
    -ms-transform: perspective(1px) translateY(-60%);
    -moz-transform: perspective(1px) translateY(-60%);
    -o-transform: perspective(1px) translateY(-60%);
    transform: perspective(1px) translateY(-60%);
}
/* Portrait phones and smaller */
@media (max-width: 480px) {
    .paralax-text {
        font-size: 1.8em;
    }
}

.parallax-window-2 {
    min-height: 260px;
    background: transparent;
}
a.btn-custom {
    z-index: 20;
    text-align: center;
    margin: auto;
    padding: 10px 30px 10px 30px;
    color: rgba(255, 255, 255, 1);
    background: rgba(0, 0, 0, .6);
    font-family: 'Ek Mukta',sans-serif;
    font-weight: 300;
    font-size: 2.2em;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    /* http://zerosixthree.se/vertical-align-anything-with-just-3-lines-of-css/ */
    position: relative;
    top: 40%;
    -webkit-transform: perspective(1px) translateY(-50%);
    -ms-transform: perspective(1px) translateY(-50%);
    -moz-transform: perspective(1px) translateY(-50%);
    -o-transform: perspective(1px) translateY(-50%);
    transform: perspective(1px) translateY(-50%);
}
a.btn-custom:hover,
a.btn-custom:focus {
    background: rgba(0, 0, 0, .9);
    border: 3px solid rgba(235, 94, 0, .8);
}

/* ==========================================================================
    SITE IMAGES STYLES
    show only corner border: https://stackoverflow.com/questions/14387690/css-show-only-corner-border
   ========================================================================== */
.img-promo {
    border: 2px solid #fff;
    background: #fff;
    transition: border-color .7s ease;
}
.img-promo:hover {
    border: 2px solid #16262E;
}

/* ==========================================================================
    SCROLL TO THE TOP
   ========================================================================== */
#cd-top {
    display: inline-block;
    z-index: 100;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 80px;
    right: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    /* image replacement properties */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: rgba(22, 38, 46, 0.8) url(../img/cd-top-arrow.svg) no-repeat center 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}
#cd-top.cd-is-visible, #cd-top.cd-fade-out, .no-touch #cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}
#cd-top.cd-is-visible {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
}
#cd-top.cd-fade-out {
    /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
    opacity: .5;
}
.no-touch #cd-top:hover {
    background-color: #FF0033;
    opacity: 1;
}
@media only screen and (min-width: 767px) {
    #cd-top {
        right: 20px;
        bottom: 20px;
    }
}
@media only screen and (min-width: 1199px) {
    #cd-top {
        height: 60px;
        width: 60px;
        right: 30px;
        bottom: 80px;
    }
}

/* ==========================================================================
    APARTMENT CONTENT
   ========================================================================== */
.apartment-list {
    font-size: 1.2rem;
    list-style-type: none;
    margin: 0;
    padding-left: 0;
}
.apartment-list li:before {
    content: "▪";
    color: #EB5E00;
    font-size: 30px;
    padding-right: 10px;
    vertical-align: middle;
    line-height: 25px;
}

/* ==========================================================================
    GOOGLE MAP
   ========================================================================== */
.map {
    width: 100%;
    height: 600px;
    border: 5px solid #fff;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    margin-top: 25px;
    z-index: 100;
    overflow: hidden;
    text-align: center;
}
#map:hover {
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}
.gMap-popup {
    font-size: 1rem;
    width: 170px;
    height: 22px;
    padding: 3px;
}
#map_canvas img, .google-maps img, #map img {
    max-width: none;
}


/* ==========================================================================
    FOOTER
   ========================================================================== */
footer {
    position: relative;
    background: rgba(22, 38, 46, 1);
    color: #FFFFFF;
    width: 100%;
    margin-top: 2rem;
    padding: 2rem 0 0 0;
    font-size: 1.1rem;
    -webkit-box-shadow: 0 -3px 2px rgba(50, 50, 50, 0.65);
}
footer .list-inline-item:not(:last-child),
footer .list-inline-item:last-child {
    margin: 0;
}
footer .list-inline-item {
    padding: .5rem .3rem;
}
footer .social-buttons li {
    padding: 0 .6rem;
}
footer .divider {
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 0px 1px 1px rgba(89, 150, 207, 0.7);
}
.copyright-logo {
    font-family: "Lobster Two", "Playfair Display", Georgia, serif;
    text-transform: normal;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1;
    color: #fff !important;
    margin: 0 0 0 10px;
}

.social-buttons {
}
.quicklinks {
    font-size: 0.85rem;
}
.letterpress {
    font-weight: 600;
    color: #889A19;
    text-shadow: 0px 1px 1px rgba(213, 230, 101, 0);
}

.qr-code {
    max-width: 275px;
}

/* ==========================================================================
    SITE LINKS & LINKS ANIMATIONS
   ========================================================================== */
a:link,
a:active,
a:visited,
a:hover,
a:focus  {
    color: #ff7518;
    text-decoration: none;
    border: 0;
    outline: none;
}

footer a:link,
footer a:active,
footer a:visited,
footer a:hover,
footer a:focus  {
    color: #EB5E00;
    text-decoration: none;
    border: 0;
}

.nav a:link,
.nav a:active,
.nav a:visited,
.nav a:hover,
.nav a:focus  {
    color: #fff;
    text-decoration: none;
    border: 0;
}

.white a:link,
.white a:active,
.white a:visited,
.white a:hover,
.white a:focus  {
    color: #fff;
    text-decoration: none;
    border: 0;
}
/* White sliding links  */
.sliding-middle-out-white {
    /* display: inline-block;*/
    position: relative;
    padding-bottom: 2px;
}
    .sliding-middle-out-white:after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        height: 1px;
        width: 0;
        background: transparent;
        transition: width .5s ease, background-color .5s ease, left .5s ease;
    }
    .sliding-middle-out-white:hover:after {
        width: 100%;
        left: 0;
        background: #fff;
    }
/* Blue sliding links  */
.sliding-middle-out-blue {
    /* display: inline-block;*/
    position: relative;
    padding-bottom: 2px;
}
    .sliding-middle-out-blue:after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        height: 1px;
        width: 0;
        background: transparent;
        transition: width .5s ease, background-color .5s ease, left .5s ease;
    }
    .sliding-middle-out-blue:hover:after {
        width: 100%;
        left: 0;
        background: #295d8d;
    }
/* Red sliding links  */
.sliding-middle-out-orange {
    /* display: inline-block;*/
    position: relative;
    padding-bottom: 2px;
}
    .sliding-middle-out-orange:after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        height: 1px;
        width: 0;
        background: transparent;
        transition: width .5s ease, background-color .5s ease, left .5s ease;
    }
    .sliding-middle-out-orange:hover:after {
        width: 100%;
        left: 0;
        background: #EB5E00;
    }
/* Orange sliding links  */
.sliding-middle-out-gold {
    /* display: inline-block;*/
    position: relative;
    padding-bottom: 2px;
}
    .sliding-middle-out-gold:after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        height: 1px;
        width: 0;
        background: transparent;
        transition: width .5s ease, background-color .5s ease, left .5s ease;
    }
    .sliding-middle-out-gold:hover:after {
        width: 100%;
        left: 0;
        background: #E4B315;
    }

/* =======================================================================================
   simpleWeather  http://simpleweatherjs.com/
   ==================================================================================== */
@font-face {
    font-family: 'weather';
    src: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/93/artill_clean_icons-webfont.eot');
    src: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/93/artill_clean_icons-webfont.eot?#iefix') format('embedded-opentype'),
         url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/93/artill_clean_icons-webfont.woff') format('woff'),
         url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/93/artill_clean_icons-webfont.ttf') format('truetype'),
         url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/93/artill_clean_icons-webfont.svg#artill_clean_weather_iconsRg') format('svg');
    font-weight: normal;
    font-style: normal;
}
#weather {
    font-size: 20px;
    color: #fff;
    width: auto;
    margin: 0px auto;
    text-align: center;
    vertical-align: middle;
}
#weather h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    text-align: center;
}
#weather ul {
    margin: 0;
    padding: 0;
}
#weather li {
    background: transparent;
    padding: 0 10px;
    display: inline-block;
    border-radius: 5px;
}
#weather .currently {
    margin: 0 20px;
}
i {
  color: #FFFFFF;
  font-family: weather;
  font-size: 40px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.0;
  text-transform: none;
  vertical-align: middle;
  margin-right: 3px;
}
.icon-0:before { content: ":"; }
.icon-1:before { content: "p"; }
.icon-2:before { content: "S"; }
.icon-3:before { content: "Q"; }
.icon-4:before { content: "S"; }
.icon-5:before { content: "W"; }
.icon-6:before { content: "W"; }
.icon-7:before { content: "W"; }
.icon-8:before { content: "W"; }
.icon-9:before { content: "I"; }
.icon-10:before { content: "W"; }
.icon-11:before { content: "I"; }
.icon-12:before { content: "I"; }
.icon-13:before { content: "I"; }
.icon-14:before { content: "I"; }
.icon-15:before { content: "W"; }
.icon-16:before { content: "I"; }
.icon-17:before { content: "W"; }
.icon-18:before { content: "U"; }
.icon-19:before { content: "Z"; }
.icon-20:before { content: "Z"; }
.icon-21:before { content: "Z"; }
.icon-22:before { content: "Z"; }
.icon-23:before { content: "Z"; }
.icon-24:before { content: "E"; }
.icon-25:before { content: "E"; }
.icon-26:before { content: "3"; }
.icon-27:before { content: "a"; }
.icon-28:before { content: "A"; }
.icon-29:before { content: "a"; }
.icon-30:before { content: "A"; }
.icon-31:before { content: "6"; }
.icon-32:before { content: "1"; }
.icon-33:before { content: "6"; }
.icon-34:before { content: "1"; }
.icon-35:before { content: "W"; }
.icon-36:before { content: "1"; }
.icon-37:before { content: "S"; }
.icon-38:before { content: "S"; }
.icon-39:before { content: "S"; }
.icon-40:before { content: "M"; }
.icon-41:before { content: "W"; }
.icon-42:before { content: "I"; }
.icon-43:before { content: "W"; }
.icon-44:before { content: "a"; }
.icon-45:before { content: "S"; }
.icon-46:before { content: "U"; }
.icon-47:before { content: "S"; }

/* ==========================================================================
    PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license
    Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
    pswp = photoswipe
        background-image: url('../img/photoswipe/default-skin.svg'); }
   ========================================================================== */
.photoswipe-gallery figure{
    margin-bottom: 25px;
}
.photoswipe-gallery figcaption{
    text-align: center;
    font-size: 1rem;
}
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
  box-sizing: border-box; }
  .pswp img {
  max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
      transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
  Background is added as a separate element.
  As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
    user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
      transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
      transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
      transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
      transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
  stretched thumbnail or div placeholder element (see below)
  style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
  div element that matches size of large image
  large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
  Error message appears when image is not loaded
  (JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }


/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

  Contents:

  1. Buttons
  2. Share modal and links
  3. Index indicator ("1 of X" counter)
  4. Caption
  5. Loading indicator
  6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

  1. Buttons

 */
/*  css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
      transition: opacity 0.2s;
  box-shadow: none; }
  .pswp__button:focus,
  .pswp__button:hover {
  opacity: 1; }
  .pswp__button:active {
  outline: none;
  opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url('../img/photoswipe/default-skin.png') 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
  background-image: url('../img/photoswipe/default-skin.svg'); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
  background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
  Arrow buttons hit area
  (icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1); }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

  2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
    user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
      transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
      transition: -webkit-transform 0.25s;
      transition: transform 0.25s;
      transition: transform 0.25s, -webkit-transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px; }
  .pswp__share-tooltip a:hover {
    text-decoration: none;
    color: #000; }
  .pswp__share-tooltip a:first-child {
    /* round corners on the first/last list item */
    border-radius: 2px 2px 0 0; }
  .pswp__share-tooltip a:last-child {
    border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
      transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download {
  display: none;}
a.pswp__share--download:hover {
  background: #DDD;}

/*

  3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*

  4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
  font-size: 11px;
  color: #BBB; }

.pswp__caption__center {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 14px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

  5. Loading indicator (preloader)

  You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
      transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url('../img/photoswipe/preloader.gif') 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
      animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
      animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /*
    The idea of animating inner circle is based on Polymer ("material") loading indicator
     by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
  */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
  position: relative;
  left: auto;
  top: auto;
  margin: 0;
  float: right; } }

@-webkit-keyframes clockwise {
  0% {
  -webkit-transform: rotate(0deg);
      transform: rotate(0deg); }
  100% {
  -webkit-transform: rotate(360deg);
      transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
  -webkit-transform: rotate(0deg);
      transform: rotate(0deg); }
  100% {
  -webkit-transform: rotate(360deg);
      transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
  -webkit-transform: rotate(0);
      transform: rotate(0); }
  50% {
  -webkit-transform: rotate(-140deg);
      transform: rotate(-140deg); }
  100% {
  -webkit-transform: rotate(0);
      transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
  -webkit-transform: rotate(0);
      transform: rotate(0); }
  50% {
  -webkit-transform: rotate(-140deg);
      transform: rotate(-140deg); }
  100% {
  -webkit-transform: rotate(0);
      transform: rotate(0); } }

/*

  6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
      transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
  pswp__ui--hidden class is added when controls are hidden
  e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }


/* =======================================================================================
   jssocials - v1.3.1 - 2016-08-20   |  * http://js-socials.com
   Copyright (c) 2016 Artem Tabalin; Licensed MIT
   jssocials.css
======================================================================================= */
.social-buttons {
    margin: 0 auto;
    text-align: center;
}
.jssocials-shares {
    margin: 0 auto;
    text-align: center;
}
.jssocials-shares * {
  box-sizing: border-box; }

.jssocials-share {
  display: inline-block;
  vertical-align: top;
  margin: 0.3em; }

.jssocials-share:first-child {
  margin-left: 0; }

.jssocials-share:last-child {
  margin-right: 0; }

.jssocials-share-logo {
  width: 1em;
  vertical-align: middle;
  font-size: 1.5em; }

img.jssocials-share-logo {
  width: auto;
  height: 1em; }

.jssocials-share-link {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  line-height: 1; }
  .jssocials-share-link.jssocials-share-link-count {
    padding-top: .2em; }
    .jssocials-share-link.jssocials-share-link-count .jssocials-share-count {
      display: block;
      font-size: .6em;
      margin: 0 -.5em -.8em -.5em; }
  .jssocials-share-link.jssocials-share-no-count {
    padding-top: .5em; }
    .jssocials-share-link.jssocials-share-no-count .jssocials-share-count {
      height: 1em; }

.jssocials-share-label {
  padding-left: 0.3em;
  vertical-align: middle; }

.jssocials-share-count-box {
  display: inline-block;
  height: 1.5em;
  padding: 0 0.3em;
  line-height: 1;
  vertical-align: middle;
  cursor: default; }
  .jssocials-share-count-box.jssocials-share-no-count {
    display: none; }

.jssocials-share-count {
  line-height: 1.5em;
  vertical-align: middle; }


/* #jSocials flat theme jssocials-theme-flat.css
============================================= */
.jssocials-share-twitter .jssocials-share-link {
  background: #00aced; }
  .jssocials-share-twitter .jssocials-share-link:hover {
    background: #0087ba; }

.jssocials-share-facebook .jssocials-share-link {
  background: #3b5998; }
  .jssocials-share-facebook .jssocials-share-link:hover {
    background: #2d4373; }

.jssocials-share-googleplus .jssocials-share-link {
  background: #dd4b39; }
  .jssocials-share-googleplus .jssocials-share-link:hover {
    background: #c23321; }

.jssocials-share-linkedin .jssocials-share-link {
  background: #007bb6; }
  .jssocials-share-linkedin .jssocials-share-link:hover {
    background: #005983; }

.jssocials-share-pinterest .jssocials-share-link {
  background: #cb2027; }
  .jssocials-share-pinterest .jssocials-share-link:hover {
    background: #9f191f; }

.jssocials-share-email .jssocials-share-link {
  background: #3490F3; }
  .jssocials-share-email .jssocials-share-link:hover {
    background: #0e76e6; }

.jssocials-share-stumbleupon .jssocials-share-link {
  background: #eb4823; }
  .jssocials-share-stumbleupon .jssocials-share-link:hover {
    background: #c93412; }

.jssocials-share-whatsapp .jssocials-share-link {
  background: #29a628; }
  .jssocials-share-whatsapp .jssocials-share-link:hover {
    background: #1f7d1e; }

.jssocials-share-telegram .jssocials-share-link {
  background: #2ca5e0; }
  .jssocials-share-telegram .jssocials-share-link:hover {
    background: #1c88bd; }

.jssocials-share-line .jssocials-share-link {
  background: #25af00; }
  .jssocials-share-line .jssocials-share-link:hover {
    background: #1a7c00; }

.jssocials-share-link {
  padding: .5em .6em;
  color: #fff;
  -webkit-transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
          transition: background 200ms ease-in-out, border-color 200ms ease-in-out; }
  .jssocials-share-link:link, .jssocials-share-link:visited, .jssocials-share-link:hover, .jssocials-share-link:focus, .jssocials-share-link:active {
    color: #fff; }

.jssocials-share-count-box {
  position: relative;
  height: 2.5em;
  padding: 0 .3em;
  margin-left: 0.3em;
  background: #f5f5f5;
  -webkit-transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
          transition: background 200ms ease-in-out, border-color 200ms ease-in-out; }
  .jssocials-share-count-box:hover {
    background: gainsboro; }
    .jssocials-share-count-box:hover:after {
      border-color: transparent gainsboro transparent transparent; }
  .jssocials-share-count-box:after {
    content: "";
    display: block;
    position: absolute;
    top: 0.85em;
    left: -0.3em;
    width: 0;
    height: 0;
    border-width: 0.4em 0.4em 0.4em 0;
    border-style: solid;
    border-color: transparent #f5f5f5 transparent transparent;
    -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
            transition: background 200ms ease-in-out, border-color 200ms ease-in-out; }
  .jssocials-share-count-box .jssocials-share-count {
    line-height: 2.5em;
    color: #444; }

/* ==========================================================================
    COOKIECONSENT  https://cookieconsent.insites.com
   ========================================================================== */
.cc-window {
	opacity: 1;
	transition: opacity 1s ease
}
.cc-window.cc-invisible {
	opacity: 0
}
.cc-animate.cc-revoke {
	transition: transform 1s ease
}
.cc-animate.cc-revoke.cc-top {
	transform: translateY(-2em)
}
.cc-animate.cc-revoke.cc-bottom {
	transform: translateY(2em)
}
.cc-animate.cc-revoke.cc-active.cc-bottom,
.cc-animate.cc-revoke.cc-active.cc-top,
.cc-revoke:hover {
	transform: translateY(0)
}
.cc-grower {
	max-height: 0;
	overflow: hidden;
	transition: max-height 1s
}
.cc-link,
.cc-revoke:hover {
	text-decoration: underline
}
.cc-revoke,
.cc-window {
	position: fixed;
	overflow: hidden;
	box-sizing: border-box;
	font-family: inherit, sans-serif;
	font-size: 16px;
	line-height: 1.5em;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	z-index: 9999
}
.cc-window.cc-static {
	position: static
}
.cc-window.cc-floating {
	padding: 2em;
	max-width: 24em;
	-ms-flex-direction: column;
	flex-direction: column
}
.cc-window.cc-banner {
	padding: 1em 1.8em;
	width: 100%;
	-ms-flex-direction: row;
	flex-direction: row
}
.cc-revoke {
	padding: .5em
}
.cc-header {
	font-size: 18px;
	font-weight: 700
}
.cc-btn,
.cc-close,
.cc-link,
.cc-revoke {
	cursor: pointer
}
.cc-link:link,
.cc-link:active,
.cc-link:visited {
	color: #EB5E00;
	display: inline-block;
	padding: .2em;
	text-decoration: underline;
}
.cc-link:hover,
.cc-link:focus {
	display: inline-block;
	padding: .2em;
	text-decoration: underline;
}
.cc-btn {
	display: block;
	padding: .4em .8em;
	font-size: .9em;
	font-weight: 700;
	border-width: 2px;
	border-style: solid;
	text-align: center;
	white-space: nowrap
}
.cc-banner .cc-btn:last-child {
	min-width: 140px
}
.cc-highlight .cc-btn:first-child {
	background-color: transparent;
	border-color: transparent
}
.cc-highlight .cc-btn:first-child:focus,
.cc-highlight .cc-btn:first-child:hover {
	background-color: transparent;
	text-decoration: underline
}
.cc-close {
	display: block;
	position: absolute;
	top: .5em;
	right: .5em;
	font-size: 1.6em;
	opacity: .9;
	line-height: .75
}
.cc-close:focus,
.cc-close:hover {
	opacity: 1
}
.cc-revoke.cc-top {
	top: 0;
	left: 3em;
	border-bottom-left-radius: .5em;
	border-bottom-right-radius: .5em
}
.cc-revoke.cc-bottom {
	bottom: 0;
	left: 3em;
	border-top-left-radius: .5em;
	border-top-right-radius: .5em
}
.cc-revoke.cc-left {
	left: 3em;
	right: unset
}
.cc-revoke.cc-right {
	right: 3em;
	left: unset
}
.cc-top {
	top: 1em
}
.cc-left {
	left: 1em
}
.cc-right {
	right: 1em
}
.cc-bottom {
	bottom: 1em
}
.cc-floating>.cc-link {
	margin-bottom: 1em
}
.cc-floating .cc-message {
	display: block;
	margin-bottom: 1em
}
.cc-window.cc-floating .cc-compliance {
	-ms-flex: 1;
	flex: 1
}
.cc-window.cc-banner {
	-ms-flex-align: center;
	align-items: center
}
.cc-banner.cc-top {
	left: 0;
	right: 0;
	top: 0
}
.cc-banner.cc-bottom {
	left: 0;
	right: 0;
	bottom: 0
}
.cc-banner .cc-message {
	-ms-flex: 1;
	flex: 1
}
.cc-compliance {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-line-pack: justify;
	align-content: space-between
}
.cc-compliance>.cc-btn {
	-ms-flex: 1;
	flex: 1
}
.cc-btn+.cc-btn {
	margin-left: .5em
}
@media print {
	.cc-revoke,
	.cc-window {
		display: none
	}
}
@media screen and (max-width: 900px) {
	.cc-btn {
		white-space: normal
	}
}
@media screen and (max-width: 414px) and (orientation: portrait),
screen and (max-width: 736px) and (orientation: landscape) {
	.cc-window.cc-top {
		top: 0
	}
	.cc-window.cc-bottom {
		bottom: 0
	}
	.cc-window.cc-banner,
	.cc-window.cc-left,
	.cc-window.cc-right {
		left: 0;
		right: 0
	}
	.cc-window.cc-banner {
		-ms-flex-direction: column;
		flex-direction: column
	}
	.cc-window.cc-banner .cc-compliance {
		-ms-flex: 1;
		flex: 1
	}
	.cc-window.cc-floating {
		max-width: none
	}
	.cc-window .cc-message {
		margin-bottom: 1em
	}
	.cc-window.cc-banner {
		-ms-flex-align: unset;
		align-items: unset
	}
}
.cc-floating.cc-theme-classic {
	padding: 1.2em;
	border-radius: 5px
}
.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
	text-align: center;
	display: inline;
	-ms-flex: none;
	flex: none
}
.cc-theme-classic .cc-btn {
	border-radius: 5px
}
.cc-theme-classic .cc-btn:last-child {
	min-width: 140px
}
.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
	display: inline-block
}
.cc-theme-edgeless.cc-window {
	padding: 0
}
.cc-floating.cc-theme-edgeless .cc-message {
	margin: 2em 2em 1.5em
}
.cc-banner.cc-theme-edgeless .cc-btn {
	margin: 0;
	padding: .8em 1.8em;
	height: 100%
}
.cc-banner.cc-theme-edgeless .cc-message {
	margin-left: 1em
}
.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn {
	margin-left: 0
}


/*==========  Non-Mobile First Method  ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {

}
/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {


}
/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
    .navbar-brand {
        font-size: 30px;
    }
    a.btn-custom {
        font-size: 1.4rem;
        top: 45%;
    }
    .copyright {
        font-size: 1.35rem;
    }
    .map {
        height: 400px;
    }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
    .navbar {
        padding-left: 15px;
        padding-right: 15px;
    }
    .navbar-brand {
        font-size: 28px;
    }
    .navbar-brand img {
        height: 30px;
        margin-top: 0;
    }
    a.btn-custom {
        font-size: 1.2rem;
        top: 45%;
    }
    .map {
        height: 400px;
    }
}
/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {
    .navbar {
        padding-left: 15px;
        padding-right: 15px;
    }
    .navbar-brand {
        font-size: 24px;
    }
    .navbar-brand img {
        height: 28px;
        margin-top: 0;
    }
    a.btn-custom {
        font-size: 1rem;
        top: 45%;
    }
    .map {
        height: 300px;
    }
}