﻿/* Custom CSS - If poss, change this rather than style.css, responsive.css, etc.  */

.modal-dialog {
    margin-top: 100px;
}

.feature-icons i {
    font-size: 20px;
    margin-right: 5px;
}

/* Home Carousel */
#carousel-home {
    position: relative;
}
#carousel-home .owl-carousel {
    position: relative;
}

.slide-text {
    padding-top: 30px;
}
.slide-text h2, .slide-text h3 {
    font-size: 46px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}
.slide-text p {
    font-size: 21px;
    font-weight: 300;
    line-height: 1.4;
}
#icon_drag_mobile {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: url(/Content/img/drag_icon.svg) 0 0 no-repeat;
    width: 50px;
    height: 30px;
    opacity: .6;
    z-index: 99;
    display: none;
}
@media (max-width: 767px) {
    #carousel-home .owl-carousel .owl-slide {
        height: 460px;
    }
    .slide-text {
        padding-top: 0;
    }
    .slide-text h2, .slide-text h3 {
        font-size: 36px;
    }
    #icon_drag_mobile {
        display: block;
    }
}

#carousel-home .owl-carousel .owl-slide {
    height: 650px;
    position: relative;
}
#carousel-home .cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    max-height: none !important;
    z-index: 2;
    opacity: 1 !important;
}

.opacity-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}
#carousel-home .static {
    position: static;
}
.slide-text.white {
    color: #fff;
}

#carousel-home .owl-carousel .owl-slide-animated {
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 50ms ease;
    -o-transition: all 50ms ease;
    -webkit-transition: all 50ms ease;
    -ms-transition: all 50ms ease;
    transition: all 50ms ease;
}

.slide-text.white h2, .slide-text.white h3 {
    color: #fff;
}

.ratings {
    width: 86px;
    height: 16px;
    display: inline-block;
    background: url(/Assets/images/sprites/ratings-small3.png) no-repeat;
    background-position: 0 0;
}

.ratings .ratings-result {
    height: 16px;
    background: url(/Assets/images/sprites/ratings-small3.png) no-repeat;
    background-position: 0 -16px;
}

.ratings-amount {
    color: #ccc;
    font-size: 14px;
    line-height: 16px;
    white-space: nowrap;
}

/*!---------- 23. IMAGE GALLERIES ----------*/



.lightbox-grid,
.lightbox-grid ul,
.lightbox-grid li {
    position: relative;
    overflow: hidden;
}

    .lightbox-grid li {
        width: 20%;
        float: left;
        border: 8px solid rgba(0, 0, 0, 0);
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        opacity: 1;
    }

        .lightbox-grid li:hover {
            opacity: .9;
        }

.square-thumbs li {
    height: 140px;
    border-left-width: 0;
}

.third-thumbs li {
    width: 33.33333vw;
    height: 33vw;
    border: none;
}

@media all and (max-width: 1190px) {
    .square-thumbs li {
        height: 110px;
    }
}

@media all and (max-width: 990px) {
    .lightbox-grid li {
        width: 25%;
    }

    .square-thumbs li {
        height: 140px;
    }
}

@media all and (max-width: 767px) {
    .lightbox-grid li {
        width: 33.3333%;
    }

    .third-thumbs li {
        height: 50vw;
    }

    .square-thumbs li {
        height: 140px;
    }
}

.lb-outerContainer {
    background: none;
    border-radius: 0;
}

.lightbox .lb-image {
    border-radius: 0;
}

.lb-data .lb-close,
.lb-nav a.lb-next,
.lb-nav a.lb-prev {
    background: none;
}

    .lb-data .lb-close:before,
    .lb-nav a.lb-next:before,
    .lb-nav a.lb-prev:before {
        /*content: "\e646";*/
        font-family: 'themify';
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 24px;
        color: #fff;
    }

    .lb-nav a.lb-next:before,
    .lb-nav a.lb-prev:before {
        position: absolute;
        top: 50%;
        font-size: 32px;
        margin-top: -16px;
    }

    .lb-nav a.lb-next:before {
        /*content: "\e649";*/
        right: 16px;
    }

    .lb-nav a.lb-prev:before {
        /*content: "\e64a";*/
        left: 16px;
    }

.background-image-holder {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: #292929;
    background-size: cover !important;
    background-position: 50% 50% !important;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    opacity: 0;
}

.background-image-holder img {
    display: none;
}

.background-multiply .background-image-holder {
    background-color: #333347 !important;
    background-blend-mode: multiply;
}

.background-image-holder.fadeIn {
    opacity: 1;
}

