/*
 *	### Body
 */

body {
    background: #fff;
    font-family: 'Nunito Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a:not(.btn):not(.no-effect):not([class*="carousel-control"]) {
    position: relative;
}

a:not(.btn):not(.no-effect):not([class*="carousel-control"]):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    background-color: #e50045;
    transition: transform 0.3s;
}

a:not(.btn):not(.no-effect):not([class*="carousel-control"]):hover:after {
    transform: scaleX(1);
}

a:hover {
    text-decoration: none;
}

/*!
 * Copyright (c) 2017, Froala (https://www.froala.com/),
 * with Reserved Name: Froala Design Blocks.
 * https://github.com/froala/design-blocks
 * Code and documentation copyright 2018 Froala Labs. Code released under the Froala Open Web Design License.
 * https://github.com/froala/design-blocks/blob/master/LICENSE
 */

.fdb-block {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizelegibility;
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
}

.fdb-block-transparent {
    background-color: rgba(255, 255, 255, 0.9);
}

.fdb-block .fdb-touch {
    z-index: 2;
    border-top: solid 0.3125rem #e50045;
}

.fdb-block .fdb-box {
    overflow: hidden;
    border-radius: 0.25rem;
    box-shadow: 0 0.3125rem 0.875rem 0 rgba(129, 129, 129, 0.2) !important;
    padding: 3.75rem 2.5rem;
    background: #ffffffb3;
    color: #4e4e4e;
}

.fdb-block h2,
.fdb-block h3 {
    font-size: 1.5rem;
}

.fdb-block h4 {
    font-weight: 700;
    font-size: 1rem;
}

.fdb-block p {
    /*line-height: 1.875;*/
    font-size: 1rem;
}

.fdb-block .fdb-heading {
    margin-bottom: 2em;
}

.fdb-block .fdb-heading h2 {
    color: #e50045;
}

.fdb-block .fdb-heading h3 {
    margin-bottom: 0;
    color: #8e0229;
}

.fdb-block .fdb-heading .lead {
    margin-bottom: 0;
    font-size: 1rem;
}

/*
 * Floating blocks
 */

.fdb-block .col-fill-left {
    width: 50%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.fdb-block .col-fill-left + div {
    position: relative;
    z-index: 2;
}

.fdb-block .col-fill-right {
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.fdb-block .col-fill-right + div {
    position: relative;
    z-index: 2;
}

/*
 *	### Header
 */

header {
    z-index: 100;
}

#navigation {
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;

    padding: 5px 0;
    box-shadow: 0 0.5rem 1.125rem -0.5rem rgba(88, 85, 80, 0.75);
    background: rgba(255, 255, 255, 1);
}

.navbar-fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

#navigation.navbar-fixed-top {
    background-color: rgba(255, 255, 255, 0.95);
}

#navigation.navbar-fixed-top .navbar {
    padding: 0 1rem;
}

#navigation .navbar-brand img:first-child {
    display: block;
}

#navigation .navbar-brand img:last-child {
    display: none;
}

#navigation.navbar-fixed-top .navbar-brand img:first-child {
    display: none;
}

#navigation.navbar-fixed-top .navbar-brand img:last-child {
    display: block;
}

.navbar-fixed-top .navbar {
    padding-right: 0;
    padding-left: 0;
}

.navbar-brand {
    flex: 1;
}

.navbar-toggler,
button.navbar-toggler:focus {
    border: 0;
    outline: 0;
}

.navbar-nav {
    margin-right: 0.5rem;
}

.navbar-nav .nav-item a {
    color: #000;
}

/*
 *	### Main
 */

main[role="main"] {
    position: relative;
    overflow: hidden;
    z-index: 10;
    background: #fff;
}

/*
 * Carousel
 */

#carouselHomepageBanner .carousel-item {
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    background-size: cover;
}

.carousel-item p.lead {
    font-weight: 700;
    font-size: 1.75rem;
}

.carousel-item p {
    color: #fff;
}

.carousel-indicators li:last-child {
    margin-right: 0;
}

.carousel-caption {
    bottom: 0;
    padding-bottom: 0;
}

/* Max Height and then keep ratio (object fit) */

/*
#carouselHomepageBanner.carousel img {
	max-height: 650px;
	object-fit: cover;
	width: 100%;
	object-position: center;
}
*/

/* or classic format */

#carouselHomepageBanner.carousel {
    max-height: 650px;
}

#carouselHomepageBanner .carousel-item,
#carouselHomepageBanner .carousel-inner {
    width: auto;
    height: 100%;
}

#carouselHomepageBanner .carousel-inner img {
    width: 100%;
    height: auto;
}

/* Maintain image ratio */

/*
#carouselHomepageBanner .carousel-item,
#carouselHomepageBanner .carousel-inner {
	width: auto;
	height: 100%;
}

#carouselHomepageBanner .carousel-inner img {
	width: 100%;
	height: auto;
}
*/

/* Carousel products */

#carouselProductImages .carousel-indicators {
    position: relative;
    top: 100%;
    bottom: auto;
    margin-top: 1em;
}

#carouselProductImages .carousel-indicators li {
    width: 5em;
    height: auto;
}

/* Carousel thumbnails overflow */

/*
.carousel-scroll-thumbnails .carousel-indicators {
	min-width: 15em;
	margin: 0;
}

.carousel-scroll-thumbnails .carousel-indicators {
	position: static;
	overflow: auto;
	width: 100%;
	margin: 10px 0 0;
	text-align: left;
	white-space: nowrap;
}
.carousel-scroll-thumbnails .carousel-indicators li {
	display: inline-block !important;
	width: auto;
	height: auto;
	flex: none;
	margin: 0 !important;
	border-radius: 0;
	background-color: transparent;
}
.carousel-scroll-thumbnails .carousel-indicators li img {
	display: block;
	opacity: 0.5;
}
.carousel-scroll-thumbnails .carousel-indicators li.active img {
	opacity: 1;
}
.carousel-scroll-thumbnails .carousel-indicators li:hover img {
	opacity: 0.75;
}
*/


/*
 * Section: parallax
 */

 .section-parallax .parallax-bg {
    height: 600px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-parallax h2 {
    color: #fff;
    text-shadow: 1px 1px #000;
    font-weight: 700;
}

/*
 * ### Section
 */

section {
    position: relative;
    clear: both;
    background: #fff;
}

main section.fdb-block:first-of-type {
    padding-top: 0.5rem;
}

section p,
section ul li {
    line-height: 1.5;
    color: #4a4a4a;
}

section a {
    color: #e50045
}

section a:hover {
    color: #8E0229FF;
}

section p.heading {
    font-size: 2.5rem;
}

section p.sub-heading {
    font-size: 1.75rem;
}

/*
 * Section : Current B&W Image
 */

.bw-image {
    display: flex;
    overflow: hidden;
    height: 100%;
}

.bw-image::before {
    display: block;
    content: url('../images/bw-image.png');
    font-size: 0;
}

/*
 * Section : Current
 */

.fdb-block.section-current {
    padding: 2.5rem 0;
}

.section-current .heading {
    margin: 0;
    font-size: 2.5rem;
}

/*
 *	Section : Breadcrumbs
 */

section.section-breadcrumbs {
    margin: 0 0 2em;
    padding: 0;
}

.section-breadcrumbs .breadcrumb {
    margin: 0;
    border: 0;
    padding: 0;
    background: none;
}

.section-breadcrumbs .breadcrumb span {
    color: #4e4e4e;
}

.section-breadcrumbs .breadcrumb li a:hover span {
    color: #e50045;
}

/*
 *	Section : Content
 */

.section-content h2,
.section-content h3 {
    margin-bottom: 32px;
}

.section-content p,
.section-content ul li {
    line-height: 1.75;
    font-size: 14px;
}

.section-content p:not(:last-child) {
    margin-bottom: 15px;
}

.section-content ul {
    margin: 0;
    padding: 0;
}

.section-content ul li {
    list-style-type: square;
    margin-left: 0;
}

.section-content .row:not(:last-child),
.section-content ul {
    margin-bottom: 25px;
}

.section-content ul.row li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    list-style-type: none;
}

.section-content ul.row li:before {
    position: absolute;
    top: -2px;
    left: 0;
    display: block;
    width: 7px;
    height: 15px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: #e50045;
    transform-origin: bottom left;
    transform: rotate(45deg);
    content: '';
}

/*
 *	Section : Checked list
 */

.section-content ul.checked li {
    position: relative;
    margin: 0;
    padding: 0 0 0 40px;
    list-style: none;
}

.section-content ul.checked li:before {
    position: absolute;
    top: .4em;
    left: 0;
    line-height: 1;
    font-family: 'Spartan', sans-serif;
    content: "\f00c";
    color: #e50045;
}

/*
 * Section : Ready to go
 */

.section-ready-to-go {
    padding-bottom: 0;
}

/*
 * Section : Experiences
 */

.section-experiences p {
    margin-bottom: 0;
}

/*
 * Section : About
 */

.section-about .row > .col p:last-child {
    margin-bottom: 0;
}

.section-about-middle {
    padding: 0;
}

/*
 * Section Current Van
 */

.current-van .carousel-gallery .card {
    border: 0;
}

.current-van .carousel-gallery .card-body {
    padding: 0;
}

.current-van ~ .section-content {
    margin-top: 1rem;
}

.features-list [class*="col"] p {
    margin: 0;
}

.features-list [class*="col"] p:last-child {
    margin-top: 0.5rem;
}

.features-list .badge {
    min-width: 4rem;
    padding: 0.5rem;
    font-size: 1.25rem;
}

/*
 * Section Products
 */

.section-product {
    padding-top: 0;
}

.product-details {
    margin-top: 4em;
}

.product-price,
.product-opts {
    margin-top: 2em;
}

.product-details > div {
    margin: 0.25em 0;
    padding: 0.5em 0.5em;
}

.product-details > div:nth-child(odd) {
    background: aliceblue;
}

.product-details > div > span:first-child {
    font-weight: 700;
}

.product-price p {
    font-weight: 700;
    font-size: 1.5em;
}


.btn.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    border-radius: 35px;
    border: 1px solid rgba(248, 249, 250, 0.75);     
}

.btn.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
    border-radius: 35px;
    border: 1px solid rgba(52, 58, 64, 0.75);    
  }

.btn.btn-warning {
    color: #212529;
    background-color: #e50045;
    border-radius: 35px;
    border: 1px solid rgba(255, 193, 7, 0.75);    
}

.btn.btn-outline-warning {
    color: #212529;
    background-color: #ffffff;
    border-radius: 35px;
    border: 1px solid rgba(255, 193, 7, 0.75);    
}

/*
 * Image gallery carousel
 */

.owl-carousel {
    padding: 0 10px;
}

.owl-carousel .item {
    margin: 5px;
}

.owl-carousel .item img {
    display: block;
    width: 100%;
    height: auto
}

.owl-carousel,
.owl-theme .owl-controls {
    margin: 0;
}

.owl-theme .owl-controls .owl-buttons div {
    position: absolute;
    top: 42.5%;
    margin: 0;
    border-radius: 0;
    padding: 0;
    background: none;
    color: #000;
    font-size: 1.5rem;
}

.owl-theme .owl-controls .owl-buttons div.owl-prev {
    left: -15px;
}

.owl-theme .owl-controls .owl-buttons div.owl-next {
    right: -15px;
}

/*
 * Section: Accordion
 */

.section-accordion #accordion .card,
.section-accordion #accordion .card:last-child .card-header {
    border: none;
}

.section-accordion #accordion .card-header {
    border-bottom-color: #c7c7c7;
    background: transparent;
    border-bottom-style: dotted;
}

.section-accordion .btn {
    width: 100%;
    padding: 8px 0 !important;
    white-space: normal;
    text-align: left;
    color: #8E0229FF;
}

.section-accordion .btn-link:hover,
.section-accordion .btn-link:focus {
    text-decoration: none;
    color: #000;
}

.section-accordion #accordion .card-body p {
    font-size: 0.875rem;
}

.section-accordion #accordion .card-body p:last-child {
    margin-bottom: 0;
}

/*
 * Custom colors
 */

.bg-custom,
.badge-custom {
    background: #e50045;
}

.badge-custom {
    color: #fff;
}

.badge-custom.outline {
    background: #fff;
    border: 1px solid #e50045;
    color: #e50045;
}

.text-custom {
    color: #e50045;
}

/*
 * Section: Form
 */

.fdb-block.section-form .fdb-box {
    overflow: inherit;
    padding: 1.75rem 1.5rem;
}

.fdb-block.section-form p {
    width: 100%;
    display: block;
    margin: 0;
    vertical-align: middle;
}

.section-form p a {
    display: inline-block;
    vertical-align: middle;
}

.section-form p[class*="mt"] a:not(:last-child) {
    margin-right: 0.5em;
}

/*
 * Form
 */

/*
 * Buttons
 */

.btn {
    margin-right: 4px;
    margin-bottom: 4px;
    padding: 8px 20px !important;
    font-weight: 400;
    font-size: 18px;
    border-radius: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.btn.btn-sm {
    padding: 4px 15px !important;
}

.btn.btn-md {
    padding: 8px 20px !important;
}

.btn.btn-lg {
    padding: 18px 36px !important;
}

.btn:hover,
.btn:active,
.btn:focus {
    box-shadow: none !important;
    outline: none !important;
}

.btn:hover,
.btn:active,
.btn:focus {
    box-shadow: none !important;
    outline: none !important;
}

.btn-transparent,
.btn-transparent:focus,
.btn-transparent.focus {
    color: #fff;
    background-color: transparent;
    border: 0;
}

/*
 * Custom Buttons
 */

.btn-custom {
    border-color: #e50045;
    background: #e50045;
    color: #fff;
}

.btn-custom.outline {
    background: #fff;
    color: #e50045;
}

.btn-custom:hover {
    border-color: #8E0229FF;
    background: #8E0229FF;
    color: #fff;
}

.btn.btn-shadow {
    box-shadow: 0 0.5rem 1.125rem -0.5rem rgba(88, 85, 80, 0.75);
}

/*
 * Form
 */

.form-control {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    background: transparent;
    font-size: 1rem;
    font-weight: 300;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
}

select.form-control {
    position: relative;
    padding: 0 .75rem;
}

.form-control:active,
.form-control:focus {
    border-color: #e50045;
    outline: none;
    box-shadow: none;
}

/*
 * Section form
 */

.section-form .col {
    position: relative;
}

.section-form .form-control[readonly][class*='datepicker'] {
    background-color: transparent;
}

.section-form .col label {
    font-size: 0.875rem;
}

/*
 * Captcha
 */

.frm__captcha > * {
    display: inline-block;
    vertical-align: middle;
}

.frm__captcha input {
    width: 100px;
    font-size: 0.875rem;
}

/*
 * Section: Contact
 */

.section-contact {
    padding-top: 0;
}

/*
 *	### Helpers
 */

/*
 * OpenStreetMap
 */

.OpenStreetMap {
    height: 25em;
}

.OpenStreetMap.olMap {
    margin-bottom: 0 !important;
}

.OpenStreetMap .olMapViewport {
    z-index: 0;
}

.leaflet-container.leaflet-touch-zoom {
    touch-action: auto;
}

.leaflet-tile-container {
    pointer-events: auto;
}

/*
 * Hidden email address
 */

.hiddenemail {
    color: #e50045;
}

.hiddenemail:after {
    content: attr(data-name) "@" attr(data-domain) "." attr(data-tld);
}

.hiddenemail:hover {
    color: #000;
    cursor: pointer;
}

/*
 * Responsive tables
 */

.rwd__tbl {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.rwd__tbl_cell {
    display: table-cell;
}

/*
 *	### Footer
 */

footer {
    z-index: 1;
    background: #353a40;
    color: #7b818d;
}

footer h4 {
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
}

footer p {
    margin-bottom: 0;
    line-height: 1.85;
}

footer p,
footer span,
footer a {
    font-size: 0.875rem;
}

footer a,
footer .hiddenemail {
    color: #fff;
}

footer a:hover,
footer .hiddenemail:hover {
    color: #7b818d;
}

footer ul {
    margin: 0;
    padding: 0;
}

footer ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 2;
    font-size: 1rem;
}

footer ul li .nav-link {
    padding-top: 0;
    padding-bottom: 0;
}

footer .copyright {
    padding-top: 48px;
    padding-bottom: 48px;
}

footer .copyright .social {
    margin-top: 24px;
}

footer .copyright .social a:not(:first-child) {
    margin-left: 16px;
}

/*
 *	### Media Queries
 */

@media only screen and (max-width: 575px) {
    /* font sizes */
    section p.heading,
    section p.sub-heading {
        line-height: 1.25;
    }

    h1,
    section p.heading {
        font-size: 1.75rem;
    }

    h2,
    .fdb-block h2,
    .fdb-block h3,
    section p.sub-heading {
        font-size: 1.25rem;
    }

    .fdb-block p {
        font-size: 0.875rem;
    }
}

@media only screen and (max-width: 720px) {
    /*
     *	### Header
     */
    #navigation .navbar-brand img:first-child {
        display: none;
    }

    #navigation .navbar-brand img:last-child {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    /*
     *	### Header
     */
    #navigation:not(.navbar-fixed-top) .navbar {
        align-self: center !important;
        justify-content: center !important;
    }

    .navbar-toggler i {
        font-size: 2rem;
    }

    .navbar-expand-md .navbar-nav .nav-link {
        display: inline-block;
    }

    .navbar-expand-md .navbar-collapse {
        padding-top: 60px;
    }

    /*
     * ### Section
     */
    section {
        /*padding: 2em 0;*/
    }

    /*
     *	Section : Breadcrumbs
     */
    .section-breadcrumbs .breadcrumb {
        justify-content: center;
    }

    .section-breadcrumbs .breadcrumb li {
        font-size: 0.875rem;
    }

    /*
     * Section : Current
     */
    .section-current h5 {
        font-size: 1rem;
    }

    .section-current h1,
    .section-current .heading {
        font-size: 1.5rem;
    }

    /*
     *	Carousel
     */
    @media only screen and (max-width: 767px) {
        /*#carouselHomepageBanner .carousel-item {
            max-height: 350px;
        }*/
        .carousel-caption p:not(.lead):not([class*="mt"]) {
            display: none;
        }

        .carousel-caption p.lead {
            line-height: 1;
        }

        .carousel-caption [class*="mt"] {
            margin-top: 0.5rem !important;
        }
    }
}

@media (min-width: 768px) and (max-width: 990px) {
    /*
     *	### Header
     */
    .navbar-right {
        float: left !important;
        margin-right: 0;
    }
}

@media (min-width: 992px) {
}

@media screen and (max-width: 992px) {
    /*
     * Floating blocks
     */
    .fdb-block.section-filler > div:first-child {
        display: flex;
        flex-flow: column;
    }

    .fdb-block.section-filler .col-fill-left,
    .fdb-block.section-filler .col-fill-right {
        position: relative;
        width: 100%;
        max-width: 720px;
        height: 300px;
        margin: 0 auto;
    }

    .fdb-block.section-filler .col-fill-left,
    .fdb-block.section-filler .container {
        order: 1;
    }

    .fdb-block.section-filler .col-fill-right {
        order: 2;
    }

    .section-filler-left {
        padding-top: 0;
    }

    .section-filler-right,
    .fdb-block.section-filler ~ .section-filler {
        padding-bottom: 0;
    }

    .fdb-block.section-filler .container [class*='col'] {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    /*
     *	### Footer
     */
    footer .row > div:not(:last-child) {
        margin-bottom: 2em;
    }
}
