/* ========================================================================
1. Typography  
======================================================================== */
@font-face {
    font-family: 'Roboto';
    src: url('/_assets/fonts/Roboto-Regular.eot');
    src: url('/_assets/fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
        url('/_assets/fonts/Roboto-Regular.svg') format('svg'),
        url('/_assets/fonts/Roboto-Regular.woff') format('woff'),
        url('/_assets/fonts/Roboto-Regular.woff2') format('woff2'),
        url('/_assets/fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('/_assets/fonts/Roboto-Bold.eot');
    src: url('/_assets/fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
        url('/_assets/fonts/Roboto-Bold.svg') format('svg'),
        url('/_assets/fonts/Roboto-Bold.woff') format('woff'),
        url('/_assets/fonts/Roboto-Bold.woff2') format('woff2'),
        url('/_assets/fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

h1,
h2,
h3,
h4 {
    font-weight: 500;
}

h1 {
    font-size: 46px;
    line-height: 1.4em;
}

h2 {
    font-size: 28px;
    line-height: 1;
}

.navbar-brand {
    padding: 0 15px;
}

@media only screen and (min-width : 992px) {
    .top-margin{
        margin-top: 65px;
    }
    .navbar-brand {
        padding: 15px 15px;
    }
}

@media only screen and (min-width : 450px) {
    h2 {
        font-size: 32px;
    }
}

h3 {
    font-size: 28px;
    line-height: 1.4em;
}

h5 {
    font-size: 18px;
    line-height: 1.4em;
}

h6 {
    font-size: 16px;
    line-height: 1.4em;
}

p {
    font-size: 16px;
    line-height: 1.4em;
}

/* ========================================================================
2. Global 
======================================================================== */
body * {
    font-family: 'Roboto', sans-serif;
    color: #231F20;
}

.blue {
    color: #075892;
}

/* Centered col layout */
.row-centered {
    text-align: center;
}

.col-centered {
    display: inline-block;
    float: none;
    text-align: left;
    margin-right: -4px;
}

/* Vertical centered col layout */
.row-v-center {
    display: table;
}

.dropdown-menu {
    background-color: #eee;
    border: 0;
}

.dropdown-menu li:hover,
.dropdown-menu li:focus {
    background-color: transparent;
}

@media only screen and (min-width : 768px) {
    .row-v-center .col-v-centered  {
        display: table-cell;
        vertical-align: top;
    }
}

.row-v-center .col-v-centered,
.row-v-center [class*="col-v-centered"] + [class*="col-v-centered"]:last-child {
    float: none;
}

.row-images img{
    margin-bottom: 35px;
}

@media only screen and (min-width : 991px) {
    .row-images img{
        margin-bottom: 35px;
    }
}

.padding{
    padding: 45px 0;
} 

.main h2{
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* ========================================================================
3. Buttons 
======================================================================== */
.btn {
    border-radius: 20px;
    font-weight: bold;
    padding: 10px 15px;
    font-size: 17px;
    border: 0 none;
}

.btn-primary {
    background: #FFC200;
}

.btn-primary:hover {
    background: #E2A700;
}

.btn-lg {
    padding: 20px 35px;
    border-radius: 200px;
}

/* ========================================================================
4. Forms 
======================================================================== */

/* ========================================================================
5. Header 
======================================================================== */
#masthead {
    background: #F8F8FF;
    border-bottom: 1px solid #D1D4D8;
    position: fixed;
    z-index: 10;
    width: 100%;
    top: 0;
    transition: all 0.3s;
    opacity: 0.95;
}

#masthead.fixed .request-demo{
    display: none;
}

#masthead.fixed .primary-nav{
    padding-top: 20px;
}

#masthead.fixed .navbar-right.secondary-nav{
    padding-top: 0 !important;
}

#masthead.fixed .navbar-brand img {
    width: 150px !important;
}

#masthead.fixed .navbar-toggle{
    margin-top: 20px;
} 

.navbar-brand {
    height: auto;
    width: calc(100% - 65px);
    overflow: hidden;
    /*transition: all 0.3s;*/
}

.navbar-brand img{
    /*transition: all 0.3s;*/
}

.swipe-effect{
    position: relative;
}

.swipe-effect::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.swipe-effect:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}

@media only screen and (min-width : 768px) {
    .navbar-brand {
        width: 100%;
    }
    .navbar-brand img{
        width: 250px !important;
    }
}

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

.navbar {
    margin-bottom: 0;
    border-radius: 0;
    transition: all 0.3s;
}

.navbar-toggle{
    float: none;
    clear: both;
    margin-top: 30px;
}

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

.nav>li>a{
    color: #000;
    border-bottom: 2px solid transparent;
}

.nav>li>a:focus,
.nav>li>a:hover {
    background: transparent;
    border-bottom: 2px solid #FFC200;
}

@media only screen and (min-width : 768px) {
    .navbar-right .dropdown{
        display: inline-block;
    }
}

.navbar-right .dropdown button{
    font-size: 14px;
    width: 100%;
    border-radius: 20px;
}

.navbar-right .dropdown-toggle {
    background-color: #F8F8FF;
    border-radius: 0 !important;
}

.navbar-right .login-dropdown .dropdown-menu {
    right: 0 !important;
    left: auto;
    padding: 15px;
    width: 500px;
}

.navbar-right .login-dropdown .dropdown-menu button:hover{
    background:#E2A700;
}

@media only screen and (min-width : 768px) {
    .navbar-right .dropdown button{
        width: auto;
    }
}

.navbar-right .dropdown button:hover,
.navbar-right .dropdown button:active,
.navbar-right .dropdown button:focus{
    background: transparent;
}

.navbar-right .dropdown .dropdown-menu{
    border-radius: 0;
}

.navbar-right .dropdown .dropdown-menu li a{
    font-size: 14px !important;
    padding: 10px 0;
}

.navbar-right.nav>li>a,
.navbar-right.nav>li>a {
    border-bottom: none;
}


.navbar-right .dropdown .flag{
    text-align: center;
}

@media only screen and (min-width : 768px) {
    .navbar-right .dropdown .flag{
        text-align: left;
    }
}

.navbar-right .dropdown a.flag-link:before{
    content: "";
    background-size: cover !important;
    height: 20px;
    display: inline-block;
    background-position: 50% !important;
    margin-right: 15px;
    vertical-align: -25%;
}

#masthead{
    text-align: center;
}

#masthead .request-demo {
    position: relative;
    margin-bottom: 15px;
}

.col-lg-9.navmenu {
    padding-left: 0;
}

@media only screen and (min-width : 768px) {

    #masthead{
        text-align: left;
    }

    #masthead .request-demo {
        position: absolute;
        right: 0;
        top: 5px;
        margin-bottom: 0;
        padding: 5px 15px;
    }
}

@media only screen and (min-width : 768px) {
    #primary-navigation {
        padding-left: 0;
    }
}

@media only screen and (min-width : 1200px) {
    #primary-navigation .primary-nav {
        padding-top: 34px;
    }
}

#primary-navigation .primary-nav a {
    font-size: 15px;
    padding: 15px 8px;
}

@media only screen and (min-width : 992px) {
    #primary-navigation .secondary-nav {
        padding-top: 0;
        margin-top: 0;
    }
}

#primary-navigation .secondary-nav a {
    font-weight: bold;
    font-size: 12px;
    padding: 5px 15px;
}
#primary-navigation .navbar-nav {
    float: none;
}
#primary-navigation .navbar-right {
    float: none !important;
}
#masthead.fixed #primary-navigation .navbar-right {
    float: right !important;
}
#masthead.fixed #primary-navigation .navbar-nav {
    float: left;
}

/* ========================================================================
6. Page Hero 
======================================================================== */
.page-hero {
    margin-top: 129px;
    margin-bottom: 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
}

.page-hero h2 {
    font-size: 32px;
    line-height: 1.2;
}

.page-hero.jumbotron.home {
    background-image:url('/_assets/_promo/images/home-carousel.png');
}
.page-hero.jumbotron.pms {
    background-image:url('/_assets/_promo/images/pms-carousel.png');
}
.page-hero.jumbotron.be {
    background-image:url('/_assets/_promo/images/be-carousel.png');
}
.page-hero.jumbotron.cm {
    background-image:url('/_assets/_promo/images/cm-carousel.png');
}
.page-hero.jumbotron.payments {
    background-image:url('/_assets/_promo/images/payments-carousel.png');
}
.page-hero.jumbotron.contact {
    background-image:url('/_assets/_promo/images/contact-carousel.png');
}

@media only screen and (min-width : 768px) {
    .page-hero h2 {
        font-size: 38px;
    }
}

@media only screen and (min-width : 768px) {
    .page-hero h2 {
        font-size: 54px;
    }
}

.page-hero p.lead {
    font-size: 19px;
    max-width: 600px;
}

.page-hero .banner-cta {
    font-size: 17px;
}

.page-hero .banner-cta {
    font-size: 17px;
}

.page-hero .banner-cta i {
    color: #075892;
}

.page-hero {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ========================================================================
7. Feature strip
======================================================================== */
.features {
    background: #404041;
    color: #ffffff;
    padding:15px 0 10px 0;
}

.features h4 {
    background:#404041;
    color: #ffffff;
    font-weight: bold;
    font-size: 19px;
}

.features ul.feature-list {
    list-style: none;
    margin:10px 0;
    padding:0;
}

.features ul.feature-list li {
    color: #ffffff;
    display: inline-block;
    padding:5px;
    font-size:20px;
}

.features ul.feature-list li i {
    color: #FFC200;
}

/* ========================================================================
END. Homepage Feature
======================================================================== */
#homepage-feature .logo{
    display: none;
}

.feature-selector .arrow-bg {
    display: none;
}

@media only screen and (min-width: 768px) {

    #homepage-feature .logo{
        width: 300px;
        margin: auto;
        display: block;
    }

    .feature-selector .arrow-bg {
        height: 97px;
        background-image: url('/_assets/_promo/images/home-arrow-0.png');
        background-size: 100%;
        background-repeat: no-repeat;
        max-width: 770px;
        margin: 0 auto;
        transition: 0.1s background-image ease-in-out;
        -webkit-transition: 0.1s background-image ease-in-out;
        -moz-webkit-transition: 0.1s background-image ease-in-out;
        -o-webkit-transition: 0.1s background-image ease-in-out;
        display: block;
    }
}

.single-feature-wrap {
    padding: 0 0 150px;
}

@media only screen and (min-width: 1200px) {
    .single-feature-wrap {
        padding: 0 90px 150px;
    }
}

.single-feature-wrap a {
    font-size: 16px;
    color: #000000;
    font-weight: bold;
    line-height: 1;
    display: block;
}

.single-feature-wrap a:hover {
    color: #075892;
    text-decoration: none;
}

.single-feature-wrap i {
    font-size: 45px;
    color: #075892;
    margin: 20px 0;
}

@media only screen and (min-width: 768px) {
    .single-feature-wrap i {
        margin: 0;
    }
}

.single-feature,
.single-feature:hover {
    cursor: pointer;
}

.feature-screen-wrap{
    background: #ffffff;
    position: relative;
    max-width: 100%;
}

.feature-screen-wrap img{
    width: 100%;
}

@media only screen and (min-width: 992px) {
    .feature-screen-wrap img{
        width: 65%;
    }
}

.single-feature-screen {
    display: none;
    position:relative;
}

.single-feature-screen{
    margin-top: -125px;
}

.single-feature-screen.active {
    display: block;
}


.single-feature-screen-desc-wrap {
    position: relative;
}

.single-feature-screen-desc {
    position: relative;
    background: #075892;
    padding: 15px 20px 15px 15px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin: 1em 0 3em;
}

@media only screen and (min-width: 992px) {
    .single-feature-screen-desc-wrap {
        position: absolute;
        top: 50%;
        left: 10%;
        margin-top: -150px;
    }

    .single-feature-screen-desc {
        max-width: 290px;
    }

    .single-feature-screen-desc:before {
        display: block;
        content: "";
        position: absolute;
        width: 0;
        top: 38%;
        bottom: auto;
        left: auto;
        right: -30px;
        border-style: solid;
        border-width: 25px 0 25px 30px;
        border-color: transparent #075892;
    }
}

@media only screen and (min-width: 1200px) {
    .single-feature-screen-desc-wrap {
        left: 15%;
    }
}

.single-feature-screen-desc p,
.single-feature-screen-desc p a,
.single-feature-screen-desc p strong {
    color: #ffffff;
}

.single-feature-screen-desc p a {
    text-decoration: underline;
}

.single-feature-screen-desc p a:hover {
    color: #f7f7f7;
    text-decoration: underline;
}

#homepage-feature .call-to-action {
    padding: 50px 0;
}

/* ========================================================================
8. Features & Benefits
======================================================================== */
#features-benefits {
    padding:30px 0;
}

.light-blue-bg {
    background: #E4EBF4;
}

.blue-bg{
    background: #075892;
}

.light-yellow-bg{
    background: #fff9e5;
}

.yellow-bg{
    background: #ffc200;
}

#features-benefits .section-header {
    margin: 20px 0 50px;
}

.single-benefit {
    margin-bottom: 20px;
}

.single-benefit-underline{
    border-bottom: 1px solid #cccccc;
}

.single-benefit-underline:last-of-type {
    border-bottom: 0 none;
}

.single-benefit h5 {
    font-weight: bold;
}

.single-benefit .icon-col {
    padding: 10px;
    text-align:center;
}

.single-benefit .icon-col i{
    font-size: 35px;
}

@media only screen and (min-width: 450px) {
    .single-benefit .icon-col i{
        font-size: 70px;
    }
}

/* ========================================================================
9. User Flow Banner
======================================================================== */
.user-flow-banner {
    color: #ffffff;
    padding: 15px 0 10px 0;
}

.user-flow-banner-blue {
    background: #075892;
}

.user-flow-banner-yellow {
    background: #FFC200;
}

.user-flow-banner p {
    color: #FFF;
    font-size: 17px;
    line-height: 1.1;
}

.user-flow-banner i {
    font-size: 52px;
}

.user-flow-banner-blue i {
    color: #FFC200;
}

.user-flow-banner-yellow i {
    color: #075892;
} 

.user-flow-banner ul.user-flow-list {
    list-style: none;
    margin: 10px auto;
    padding:0;
}

.user-flow-banner ul.user-flow-list li {
    color: #ffffff;
    padding: 5px;
    font-size: 20px;
    min-height: 130px;
}

.user-flow-banner-four-col .arrow{
    display: none !important;
}

@media only screen and (min-width: 992px) {
    .user-flow-banner-four-col .arrow{
        display: list-item !important;
    }
    .user-flow-banner-four-col .arrow img{
        width: 100px !important;
    }
}

.user-flow-banner .arrow{
    display: none;
}

@media only screen and (min-width: 768px) {
    .user-flow-banner .arrow{
        display: list-item;
    }
}

.user-flow-banner .arrow img{
    height: auto;
    width: 100px;
}

@media only screen and (min-width: 992px) {
    .user-flow-banner .arrow img{
        width: 200px;
    }
}

.user-flow-banner-four-col .arrow img{
    height: auto;
    width: 100px;
}

@media only screen and (min-width:  1200px) {
    .user-flow-banner-four-col .arrow img{
        width: 200px;
    }
}

/* ========================================================================
END. Feature Slider - Slick slider
======================================================================== */
#feature-slider-wrap {
    background-image: url('/_assets/_promo/images/icon-background.jpg');
    position: relative;
}

/* Main Slider */
.feature-slider .jumbotron {
    background: none;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 0;
}

@media only screen and (min-width: 768px) {
    .feature-slider .jumbotron {
        padding-right: 0;
        padding-left: 0;

    }
}

.feature-slider .jumbotron img{
    padding: 35px;
}

@media only screen and (min-width: 768px) {
    .feature-slider .jumbotron img{
        padding: 0;
    }
}

.feature-slider .slick-slide {
    outline: none !important;
}

.feature-slider h2,
.feature-slider p {
    color: #ffffff;
    text-align: center;
}

@media only screen and (min-width: 992px) {
    .feature-slider h2,
    .feature-slider p {
        color: #ffffff;
        text-align: left;
    }
}

/* Slider arrows */

#feature-slider-wrap .slick-arrow {
    display: none !important;
}

@media only screen and (min-width: 992px) {
    #feature-slider-wrap .slick-arrow {
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: none;
        border: 0 none;
        color: #FFF;
        position: absolute;
        display: inline-block !important;
    }

    #feature-slider-wrap .slick-arrow i {
        color: #ffffff;
        font-size: 100px;
    }

    #feature-slider-wrap .slick-arrow.next {
        top: 40%;
        right: 10px;
    }

    #feature-slider-wrap .slick-arrow.previous {
        top: 40%;
        left: 10px;
    }

    #feature-slider-wrap .slick-arrow:focus {
        outline: none;
    }
}

/* Slider Nav */
.feature-slider-slider-nav {
    text-align: center;
}

.feature-slider-slider-nav p:focus,
.feature-slider-slider-nav div:focus {
    outline: none;
}

.feature-slider-slider-nav div.slick-current p {
    color: #ffffff;
}

.feature-slider-slider-nav p {
    font-size: 19px;
    color: #FFC200;
    font-weight: bold;
    margin: 20px 0;
    cursor: pointer;
}

.feature-slider-slider-nav.slick-slider .slick-track,
.feature-slider-slider-nav .slick-slider .slick-list {
    margin: 0 auto !important;
    width: auto !important;
    text-align: center;
    transform: translate3d(0,0,0) !important;
}

.feature-slider-slider-nav .slick-slide {
    float: none !important;
    display: inline-block !important;
    margin: 0px 20px;
    outline: none !important;
}

/* ========================================================================
END. Testimonials Slider
======================================================================== */
#testimonial-slider-wrap {
    background: #075892;
    position: relative;
}

#testimonial-slider-wrap p {
    color:#FFF;
}

.testimonial-slider .testimonial {
    font-size: 26px;
}

.testimonial-slider .slick-slide {
    padding:30px 0;
}

.testimonial-slider .person {
    font-size: 15px;
}

/* Slider arrows */

#testimonial-slider-wrap .slick-arrow {
    display: none !important;
}

@media only screen and (min-width: 992px) {
    #testimonial-slider-wrap .slick-arrow {
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: none;
        border: 0 none;
        color: #FFF;
        position: absolute;
        display: inline-block !important;
    }

    #testimonial-slider-wrap .slick-arrow i {
        color: #ffffff;
        font-size: 100px;
    }

    #testimonial-slider-wrap .slick-arrow.next {
        top: 20%;
        right: 10px;
    }

    #testimonial-slider-wrap .slick-arrow.previous {
        top: 20%;
        left: 10px;
    }

    #testimonial-slider-wrap .slick-arrow:focus {
        outline: none;
    }
}

/* ========================================================================
Software Slider
======================================================================== */

.software-slider .slick-track{
    height: 500px;
}

.software-slider .slick-slide img{
    position: absolute;
    top: 50px;
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .software-slider .slick-track{
        height: 350px;
    }
    .software-slider .slick-slide img{
        top: 100px;
    }
}

@media only screen and (min-width: 992px) {
    .software-slider .slick-track{
        height: 400px;
    }
    .software-slider .slick-slide img{
        top: 90px;
    }
}

.slick-slider, .slick-list, .slick-track {
    height: 100%;
}

.software-slider .slick-slide{
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    transform: scale(0.7);
    transition: all 0.6s ease;
    opacity: 0.5;
}

.software-slider .slick-center {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    transition: all 0.6s ease;
    opacity: 1;
}

@media only screen and (min-width: 768px) {
    .software-slider .slick-center {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        transform: scale(1.5);
    }
}


#software-slider-wrap{
    position: relative
}

#software-slider-wrap button{
    display: none;
}

@media only screen and (min-width: 768px) {
    #software-slider-wrap button{
        display: block;
    } 
}

#software-slider-wrap .slick-arrow {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    border: 0 none;
    color: #FFF;
    position: absolute;
}

#software-slider-wrap .slick-arrow i {
    color: #000000;
    font-size: 100px;
}

#software-slider-wrap .slick-arrow.next {
    top: 50%;
    right: 10px;
    margin-top: -50px;
}

#software-slider-wrap .slick-arrow.previous {
    top: 50%;
    left: 10px;
    margin-top: -50px;
}

#software-slider-wrap .slick-arrow:focus {
    outline: none;
}

/* Booking Engine Slider */

#booking-engine-slider-wrap{
    position: relative;
}

#booking-engine-slider-wrap .slick-arrow {
    display: none !important;
}

@media only screen and (min-width: 992px) {
    #booking-engine-slider-wrap .slick-arrow {
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: none;
        border: 0 none;
        color: #FFF;
        position: relative;
        display: inline-block !important;
    }

    #booking-engine-slider-wrap .slick-arrow i {
        color: #075892;
        font-size: 50px;
    }

    #booking-engine-slider-wrap .slick-arrow.next {
        float: right;
    }

    #booking-engine-slider-wrap .slick-arrow.previous {
        float: left; 
    }

    #booking-engine-slider-wrap .slick-arrow:focus {
        outline: none;
    }
}

/* ========================================================================
  Gif Section
======================================================================== */

.gif-section{
    padding: 15px 0;
}

.gif-section p{
    text-align: center;
}

.gif-section h2{
    margin-top: 25px;
    text-align: center;
}

@media only screen and (min-width: 992px) {
    .gif-section{
        padding: 45px 0;
    }
    .gif-section p{
        text-align: left;
    }
    .gif-section h2{
        text-align: left;
    }
}


/* ========================================================================
END. 3 Col CTA Grid
======================================================================== */
#three-col-grid  {
    padding: 50px 0;
}

#three-col-grid {
    padding: 50px 0;
}

#three-col-grid .section-header {
    padding: 30px 0;
}

#three-col-grid .single-grid-item  {
    padding:0 30px;
    border-bottom: 1px solid #D1D4D8;
}

@media only screen and (min-width: 768px) {
    #three-col-grid .single-grid-item  {
        min-height: 310px;
    }
}

@media only screen and (min-width: 992px) {

    #three-col-grid .single-grid-item  {
        border-right: 1px solid #D1D4D8;
    }

    #three-col-grid .row:last-of-type .single-grid-item {
        border-bottom: 0 none;
    }
    #three-col-grid .single-grid-item:last-of-type {
        border-right: 0 none;
    }
}

#three-col-grid .single-grid-item {
    vertical-align: top;
}

#three-col-grid .single-grid-item i {
    font-size: 60px;
    color: #075892;
    margin: 20px 0 15px;
}

#three-col-grid .single-grid-item h5 {
    font-size: 19px;
    font-weight: bold;
}

#three-col-grid .single-grid-item p {
    font-size: 15px;
    margin-bottom:30px;
}

/* ========================================================================
END. Trusted Logos
======================================================================== */
#trusted-logos {
    background: #ffffff;
    padding: 50px 0;
}

#trusted-logos p {
    padding: 15px 0 25px 0;
}

#trusted-logos ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#trusted-logos ul li {
    display: block;
    margin: 0 0 45px 0;
}

#trusted-logos h3{
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
    #trusted-logos ul li {
        display: inline-block;
        margin: 0 45px 45px 0;
    }
}

@media only screen and (min-width: 1200px) {
    #trusted-logos ul li {
        margin: 0 45px 0 0;
    }
}

#trusted-logos ul li:last-of-type {
    margin: 0 0 0 0;
}

#trusted-logos h5 {
    color: #404041;
    margin-bottom: 30px;
}


/* ========================================================================
 Hotel List
======================================================================== */

#hotel-list ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 25px;
}

#hotel-list ul li{
    margin: 5px 0;
} 

#hotel-list ul li:before {
    content: "\f054";
    font-family: "FontAwesome";
    color: #075892;
    margin-right: 5px;
}

/* ========================================================================
 Contact form
======================================================================== */
#contact ul {
    padding-left: 0;
    list-style-type: none;

}

#contact ul li {
    padding: 15px 0;
    border-bottom: solid 1px #f2f2f2;
}

#contact .form-control {
    border: solid 2px #f2f2f2;
    border-radius: 0;
    color: #555;
    height: 50px;
}

#contact textarea.form-control{
    height: auto;
    resize: none;
}

#contact a i {
    color: inherit;
}

::-webkit-input-placeholder { 
    color: #aaa !important;
}
::-moz-placeholder { 
    color: #aaa !important;
}
:-ms-input-placeholder { 
    color: #aaa !important;
}
:-moz-placeholder { 
    color: #aaa !important;
}

button[type='submit']{
    width: 100%;
}


/* ========================================================================
END. Footer
======================================================================== */
footer {
    background-color: #404041;
    color: #ffffff;
    padding: 50px 15px;
}

footer p,
footer a {
    color: #ffffff;
}

footer a:hover {
    color: #ffffff;
}

footer p {
    font-size: 15px;
}

footer h4 {
    color: #FFC200;
    font-size:14px;
}

footer h5 {
    color: #ffffff;
    font-weight: bold;
}

footer strong {
    color: #ffffff;
}

.footer-brand {
    display:block;
    margin-bottom: 20px;
}

.news-coloumn {
    padding-top: 20px;
}

.contact-column {
    padding-top: 20px;
}

.policy-footer {
    padding: 30px 15px 0;
}

.policy-footer img {
    margin-bottom: 30px;
}

.policy-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.policy-footer ul li {
    margin: 0;
    padding: 0;
    color: #ffffff;
}

.policy-footer ul li {
    display: inline-block;
    margin-right: 15px;
}

/* ========================================================================
Footer Navigation
======================================================================== */

nav#footer{
  background:#6c6c6c;
}

nav#footer a{
  color: #ffffff;
}

nav#footer a:hover{
  color: #ffffff;
  border-bottom: 0;
}

nav#footer ul > li > a{
  border-bottom: none;
  text-align: center;
}

/* ========================================================================
END. Responsive
======================================================================== */
@media screen and (max-width: 767px) {
    .row.content {height:auto;}
}

/* ========================================================================
Apo Styles
======================================================================== */
.font-yellow-light {
    color: #fff9e5;
}

.thunder-blue {
    background: #6497b1;
}