/*------------------------------------------------*/
/* WP BUILDER BASE STYLE AND COMMON CLASS         */
/*------------------------------------------------*/
/*
    Version 1.5
*/

body { 
   overflow-x: hidden;
   overflow-Y: auto;
}
a, a:hover, a:focus, a:active, a.active {  
    outline: 0;
    text-decoration: none;
}
a:hover { cursor: pointer; }
a { transition: 0.5s; }

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.bullet, main ul { 
    list-style: disc;
    margin-left: 3em;
}

img, picture { 
    max-width: 100%;
    height: auto;
}
sup {
    top: -1em;
    font-size: 45%;
}
/*
embed, iframe, object, video { 
    max-width: 100%; 
}
*/

/*------------------------------------------------*/
/* DEFAULT : COMMON                               */
/*------------------------------------------------*/

/*------------------------------------------------*/
/* EXTRA - TOP SCROLLER                           */
/*------------------------------------------------*/

.scroll-up a {
    background-color: rgba(100, 100, 100, 0.50);
    display: block;
    width: 38px;
    height: 38px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 38px;
    opacity: 0.7;
    border-radius: 2px;
}
.scroll-up {
    position: fixed;
    display: none;
    z-index: 999;
    bottom: 1.8em;
    right: 1.8em;
}

/* vid thumb */
.vid-thumb { width: 100%; }

/*------------------------------------------------*/
/* BACKGROUND / OVERLAYS                          */
/*------------------------------------------------*/
.bg-img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.bg-gray-7 {
    background-color: rgba(200,200,200,0.7);
}
.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    /* background-color: rgba(0,0,0,1); */
    /* background-image: url(images/grid-bg.png); */
    top: 0px;
    left: 0px;
    z-index: 1;
}
/* parallax */
.bg-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: 50% 90%;
    position: relative;
}

/*------------------------------------------------*/
/* HERO                                           */
/*------------------------------------------------*/
.head {
    position: relative;
    height: 650px; /* init-size */
}
.head-sub {
    position: relative;
    height: 300px; /* init-size */
}
/* hero video */
.hero-vid {
    overflow: hidden;
}
.hero-vid video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);  
}
.head-sub .hero, .head .hero {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 0;
}
/* hero slider */
.hero-slider {
    top: 0px;
    left: 0px;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-slider .slider {
    visibility: hidden;
}
.hero-slider .slide {
    height: 650px; /* init-size */
}
/* hero image */
.hero-img {
    background-color: #f4f4f4;
    top: 0px;
    left: 0px;
}

/*------------------------------------------------*/
/* POSITIONS                                      */
/*------------------------------------------------*/
.abcenter {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translateX(-50%) translateY(-50%); 
}
.on-dbtm {
    position: relative;
    z-index: 5;
}
.on-dtop {
    position: relative;
    z-index: 10;
}
.on-dtop-m {
    z-index: 20;
}

/*------------------------------------------------*/
/* CONTENT                                        */
/*------------------------------------------------*/
.cover-fit-img {
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden
}

/*------------------------------------------------*/
/* DOMS                                           */
/*------------------------------------------------*/
.no-bullet, .no-bullets {
    list-style: none;
}

/* disc */
.bullet li {
    font-size: 15px;
    color: #666666;
    position: relative;
    margin-left: 23px;
    line-height: 135%;
    margin-bottom: 16px;
}
.bullet li:before { 
    content: "\2022";
    font-size: 20px;
    color: #F36B22;
    display: inline-block;
    margin-left: -21px;
    margin-right: 13px;
    position: relative;
    top: 4px;
}

/*------------------------------------------------*/
/* TEXT                                           */
/*------------------------------------------------*/
.light-text {
    font-weight: 300;
}

.novisual, span.novisual, label.novisual { 
    border: 0; 
    clip: rect(0 0 0 0); 
    height: 1px; 
    margin: -1px; 
    overflow: hidden; 
    padding: 0; 
    position: absolute; 
    width: 1px; 
}

/*------------------------------------------------*/
/* IMAGE                                          */
/*------------------------------------------------*/
/* image */
.hide-alt {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0px;
}

.grayscale {
    filter: grayscale(100%);
    opacity: 0.7;    
}
.grayscale img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.5s;
}
.grayscale img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/*------------------------------------------------*/
/* FLOAT                                          */
/*------------------------------------------------*/
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/*------------------------------------------------*/
/* FLEX                                           */
/*------------------------------------------------*/
.dflex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.dflex-space {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*------------------------------------------------*/
/* ANIMATION                                      */
/*------------------------------------------------*/
.ani-hide { 
    visibility: hidden; 
}
.ani-appear { 
    visibility: visible !important;
}

/*------------------------------------------------*/
/* ICONS / SVG                                    */
/*------------------------------------------------*/
.svg-inline--fa, .svgicon { display: inline-block;}
.top-search svg {  
    width: 14px;
    height: 14px;
}
.fa-14 {
    width: 14px;
    height: 14px;
}
.fa-16 {
    width: 16px;
    height: 16px;
}

/*------------------------------------------------*/
/* CONTAINER                                      */
/*------------------------------------------------*/
.max-1200 { 
    max-width: 1200px; 
}

/*------------------------------------------------*/
/* RESPONSIVE                                     */
/*------------------------------------------------*/
.desktop-view { 
    display: block; 
}

.mobile-view { 
    display: none; 
}

/*------------------------------------------------*/
/* STATIC PAGE                                    */
/*------------------------------------------------*/
.static-page p {
    line-height: 180%;
}

/*------------------------------------------------*/
/* SLICK SLIDER                                   */
/*------------------------------------------------*/

.slick-dots {
    bottom: 75px;    
}
.slick-dots li {
    z-index: 6;
}
.slick-prev { 
    left: 20px;
}
.slick-next { 
    right: 20px;
}
.slick-prev:before, .slick-next:before { 
    display: none;
}
.slick-arrow {
    z-index: 6;
    font-size: 0px;
    line-height: 100%;
    transition: 0.5s;
}
.slick-arrow i,
.slick-arrow svg {
    font-size: 30px;
    color: rgba(24,164,184,0.3);
}
.slick-arrow:hover i,
.slick-arrow:hover svg {
    font-size: 30px;
    color: rgba(24,164,184,1);
}
.slick-dots li button {
    background-color: rgba(24,164,184,0.4);
    border-radius: 100%;
    width: 15px;
    height: 15px;
}
.slick-dots li.slick-active button { 
    background-color: rgba(24,164,184,1);
}
.slick-dots li button:before {
    display: none;
}

/*------------------------------------------------*/
/* SLIDER                                         */
/*------------------------------------------------*/
/* Prevent Slider from Overflowing*/

.whatever .slider {
    max-height: 100px; /* enter height */
    overflow: hidden;
}

.whatever .slider.slick-initialized {
    overflow: inherit;
    max-height: none;
}

/*------------------------------------------------*/
/* WP ARTICLE                                     */
/*------------------------------------------------*/

article .alignleft { 
    float: left;
    margin: 0px 20px 20px 0px;
}

article .alignright { 
    float: right;
    margin: 0px 0px 20px 20px;
}

article .aligncenter { 
    display: block;
    margin: 0px auto;
}

article ul {
    margin-bottom: 1rem;    
}

article .entry-content ul li { 
    margin-left: 20px;
}

.alignleft { float: left; }
.alignright { float: right; }
.aligncenter { text-align: center; }

/*------------------------------------------------*/
/* DROP DOWN MENU                                 */
/*------------------------------------------------*/

/* for mobile */
.m-toggler {
    position: absolute;
    right: 0px;
    top: 5px;
}

.dropdown-menu li:hover {
    background-color: #f5f5f5;
}

.dnavbar .dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: -1px;    
}

.dropdown-menu .dropdown-menu {
    left: calc(100% - 5%);
    top: 0px;
}    

.dropdown-menu .dropdown  a:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;

    position: absolute;
    right: 15px;
    top: 10px;
    
    content: "";
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid;
    
}

.dropdown-menu .dropdown-menu a:after {
    display: none;
}

/*------------------------------------------------*/
/* FLOATING MENU                                  */
/*------------------------------------------------*/

/* floating menu */
.cc-float-menu .navbar-brand {
    max-width: 225px;
}

.cc-float-menu .nav-link {
    padding: 0.3rem 1rem;
}

.cc-float-menu {
    top: -80px;
    height: 80px;
    transition: 0.3s;    
}

.float-menu-show {
    top: 0px;
    transition: 0.3s;
}

.navbar-fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

/*------------------------------------------------*/
/* MOBILE MENU : OFF CANVASS                      */
/*------------------------------------------------*/

#menu-oc-right {
    top: 0px;
    right:  -320px;
    /* left: -205px /* if this goes left */
    width: 320px;
    height: 100%;
    position: fixed;
    z-index: 1100;
    background-color: #eee;
    transition: 0.5s;
}
#menu-oc-right.active {
    right: 0px;
}
#menu-oc-right .box {
    height: 100%;
    margin: 0;
    padding: 10px;
    overflow: auto;
    position: relative;
}
#menu-oc-right .box .closer,
#menu-push-left .box .closer {
    color: #aaa;
}
#menu-oc-right .dropdown-menu {
    width: 96.5%;
}
.mobile-menu .dropdown-toggle {
    max-width: 80%;
}
.mobile-menu .dropdown-toggle:after {
    display: none;
}

.mobile-menu .menu-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 5px 0;
}
.mobile-menu .menu-item.show {
    border-bottom: none;
}
.mobile-menu .menu-item:last-child {
    border: none;
}

.mobile-menu .dropdown-menu {
    position: relative !important;
    float: none;
    margin-bottom: 0 !important;
    border: 0;
    transform: none !important;    
}
.mobile-menu .dropdown-menu li {
    
}
#menu-oc-right .dropdown-menu .dropdown-menu {
    left: 15px;
    width: 88%;
    padding: 0;
    margin: 0;
}
.dropdown-level-2 .dropdown-menu {
    display: block;
}
.dropdown-menu .dropdown a.dropdown-item-1 {
    width: 80%;
    display: inline-block;
}
.mobile-menu .dropdown-menu a:after {
    display: none;
}
.mobile-menu .dropdown .m-toggler-2 {
    float: right;
    margin-right: 15px;
}
.oc-menu-991 {
    display: none;
}

/*------------------------------------------------*/
/* MENU SEARCH                                    */
/*------------------------------------------------*/

.top-search {
    position: relative;
}
.top-search .i-close {
    display: none;
}
.top-search .active .i-close {
    display: block;
}
.top-search .active .i-search {
    display: none;
}

.dnavbar .show-search {
    background: #fff;
    position: absolute;
    z-index: 10000;
    top: 100%;
    right: 0;
    padding: 15px;
    border-top: 3px solid #999;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
    display: none;
}

.mob-show-search input, .show-search input {
    display: block;
    font-size: 13px;
    width: 200px;
    padding: 10px 13px;
    border-radius: 0;
    background: #f4f4f4;
    font-weight: 300;
    box-shadow: 0 5px 4px -4px rgba(190, 190, 190, 0.1);
    border: 1px solid #e8e8e8;
}
.mob-show-search input {
    width: 100%;
}
.mob-show-search {
    position: relative;
}
.mob-show-search .btn {
    position: absolute;
    top: 1px;
    right: 0;
    padding-top: 7px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

/*------------------------------------------------*/
/* PAGINATION                                     */
/*------------------------------------------------*/

.post-pagination ul li a { 
    color: #444;
    background: rgba(150,150,150,0.5);
}
.post-pagination ul li.active a,
.post-pagination ul li.active a:hover,
.post-pagination ul li a:hover {
    background: rgba(150,150,150,1);
    color: #fff;    
}
.post-pagination {
    padding: 10px 0;
}
.post-pagination ul {
    justify-content: center; 
}
.post-pagination ul li {
    display: inline-block;
    margin-left: 4px; 
}
.post-pagination ul li:first-child {
    margin-left: 0; 
}
.post-pagination ul li a {
    padding: 6px 13px;
    -webkit-box-shadow: 0 0 2px 0 rgba(51, 51, 51, 0.08), 0 0 2px 0 rgba(51, 51, 51, 0.08);
    box-shadow: 0 0 2px 0 rgba(51, 51, 51, 0.08), 0 0 2px 0 rgba(51, 51, 51, 0.08); 
}
.post-pagination svg {
    margin: 0 !important;
}


/*------------------------------------------------*/
/* IE Hack 10 and above                           */
/*------------------------------------------------*/

@media all and (-ms-high-contrast:none) {
    _:-ms-lang(x), .sample-class, .classtofix {
        opacity: 1;
    }    
}

/*------------------------------------------------*/
/* RESPONSIVE                                     */
/*------------------------------------------------*/

@media all and (-ms-high-contrast:none) {
    _:-ms-lang(x), .sample-class, .tofix {
        /* max-height: 355px; */
    }    
}

@media only screen and (max-width : 991px) { 
    .oc-menu-991 { display: block; }
}

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

@media only screen and (max-width : 480px) {
    .desktop-view { 
        display: none; 
    }

    .mobile-view { 
        display: block; 
    }
    
    .navbar-brand {
        max-width: 200px;
    }
    
    .row-cols-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
