/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/


/*************** ADD CUSTOM CSS HERE.   ***************/

.header-bg-container {
    border-bottom: 1px solid #E1B131;
}

.transparent #logo img {
    max-height: 100px !important;
    padding-top: 10px;
}

.header-nav-main li {
    margin: 0;
}

.header-nav-main>li:not(:nth-child(1)):not(:nth-child(4))>a::before {
    content: "";
    width: 1px;
    height: 14px;
    position: absolute;
    top: 50%;
    display: block;
    background-color: rgba(195, 195, 195, 0.8);
    left: 0;
    margin-top: -7px;
    -webkit-transform: rotate(42deg);
    transform: rotate(42deg);
    opacity: 1;
}

.header-nav-main li a {
    padding: 0 15px;
    color: #fff !important;
}

.header-nav-main li a:hover {
    color: #eac263 !important;
}

.header-nav-main .sub-menu {
    padding: 6px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.header-nav-main .sub-menu li {
    padding: 0 6px;
}

.header-nav-main .sub-menu li a {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0px;
    font-weight: 600;
    padding: 10px;
    white-space: nowrap;
}

.header-nav-main .sub-menu li a:hover {
    color: #eac263 !important;
}

.banner-slider-home .box {
    cursor: grab;
}

.banner-slider-home .box::before {
    position: absolute;
    content: '';
    left: 15px;
    top: 15px;
    right: 15px;
    bottom: 15px;
    background-color: rgba(15, 15, 15, 1);
    opacity: 0;
    z-index: 2;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.banner-slider-home .box:hover::before {
    opacity: 0.4;
}

.banner-slider-home .box img {
    min-height: 100%;
    max-width: 100%;
    width: auto;
    min-width: 105.5%;
    object-fit: cover;
    -webkit-transform: translateX(-5%);
    -moz-transform: translateX(-5%);
    -ms-transform: translateX(-5%);
    transform: translateX(-5%);
    -webkit-transition: -webkit-transform 0.6s;
    -moz-transition: -moz-transform 0.6s;
    transition: transform 0.6s;
}

.banner-slider-home .box:hover img {
    -webkit-transform: translateX(-2%);
    -moz-transform: translateX(-2%);
    -ms-transform: translateX(-2%);
    transform: translateX(-2%);
}

.banner-slider-home .box .box-text {
    position: absolute;
    left: 30px;
    right: 30px;
    top: auto;
    bottom: 30px;
    z-index: 2;
    padding: 15px;
    width: auto;
}

.banner-slider-home .box .box-text h5 {
    opacity: 0;
    top: 10px;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    color: #fff;
    font-weight: normal;
}

.banner-slider-home .box:hover .box-text h5 {
    opacity: 1;
    top: 0;
}

@media only screen and (max-width: 48em) {
    /*************** ADD MOBILE ONLY CSS HERE  ***************/
}