body{
    font-size:16px;
    font-weight:normal;
    line-height:20px;
    padding:0px 0px 0px 0px;
    margin:0px 0px 0px 0px;
    overflow-x:hidden;
}

body,
html{
    height:100%;
}
.clear{
    clear:both;
}
*:focus {
    outline: none;
}
a{
    outline:medium none !important;
}
img{
    padding:0px 0px 0px 0px;
    margin:0px 0px 0px 0px;
    border:none;
}
p{
    padding:0px 0px 0px 0px;
    margin:0px 0px 0px 0px;
    line-height:20px;
}
h1, h2, h3, h4, h5, h6{
    padding:0px 0px 0px 0px;
    margin:0px 0px 0px 0px;
    line-height:20px;
    font-weight:normal;
}
.w-content-area div:empty,
.w-content-area span:empty{
    display:none !important;
}
:root { 
    --main-color-one:#a61124;
    --main-color-one-hover:#880011;
    --main-color-two:#fc9928;
    --main-color-two-hover:#ea7d00;
    --main-color-three:#021f6a;
    --main-color-three-hover:#001752;
} 
.v-middle {
    width:900px;
    height:400px;
    background-color:#F00;
    margin:auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

}

.v-middle:before{
    content:'';
    margin-bottom: auto;
}
.v-middle:after{
    content:'';
    margin-top: auto;
}
/* ==================================================*/
/*MENU STYLE START*/
/* ==================================================*/
.w-menu .container{
    position:relative;
}
@media (max-width:1200px) {
    .w-menu ul li a {
        font-size: 13px;
        padding:0px 10px;  
    }
}
@media (min-width:992px) {

    .w-menu{
        margin:0px 0px 0px 0px;
        padding:0px 0px 0px 0px;
        position:relative;
        z-index:99;
        background-color:var(--main-color-one);
    }
    .w-menu ul {
        list-style-type:none;
        margin:0;
        padding:0;
        text-align:center;
    }
    .w-menu ul li {
        display:inline-block;
        position:relative;
        font-size:14px;

    }
    .w-menu ul li a {
        line-height:40px;
        padding:14px 25px 14px 15px;
        margin:0px 0px;
        text-decoration:none;
        color:#FFF;
        text-transform:uppercase;
        cursor:pointer;
    }

    .w-menu ul li:hover > a{
        color:#ffbdc5;
    }
    .w-menu ul li ul{
        text-align:left;
        background-color:var(--main-color-one);
    }
    .w-menu ul li ul li a {
        line-height:15px;
        padding:7px 20px 7px 10px;
        margin:0px 0px;
        text-decoration:none;
        font-size:13px;
        text-transform:none;
        width:100%;
        display:block;
    }
    /*
    .w-menu ul li:after{
            content: '';
        display: block;
        width: 0;
        height:3px;
        background:var(--main-color-one-hover);
        transition: width .3s;
            }
    .w-menu ul li:hover::after {
        width: 100%;
    }
    .w-menu ul li ul li::after{
            content: '';
        display: block;
        width: 0;
        height:0px;
        background: #0292d8;
        transition: width .3s;
            }*/
    .w-menu ul li ul li:hover{
        background:var(--main-color-one-hover);
    }

    /*ZOOM IN EFFECTS START*/

    /*
    .w-menu ul.sub-menu {
        display:none;
    }
    .w-menu li:hover > ul{
        display: block;
        -moz-animation: zoomIn .3s ease-in;
        -webkit-animation: zoomIn .3s ease-in ;
        animation: zoomIn .3s ease-in;
     
    }
     
    .w-menu ul li:hover > ul{
        display:block;
        -moz-animation: zoomIn .3s ease-in ;
        -webkit-animation: zoomIn .3s ease-in ;
        animation: zoomIn .3s ease-in;
    }
    /*ZOOM IN EFFECTS END*/

    /*SLIDE DOWN EFFECTS START*/
    .have-sub-menu{
        position:relative;
    }
    ul.sub-menu { 
        visibility: hidden; /* hides sub-menu */
        opacity: 0;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        transform: translateY(-2em);
        z-index: -1;
        transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    }

    .have-sub-menu:focus > .sub-menu,
    .have-sub-menu:focus-within > .sub-menu,
    .have-sub-menu:hover > .sub-menu {
        visibility: visible; /* shows sub-menu */
        opacity: 1;
        z-index: 1;
        transform: translateY(0%);
        transition-delay: 0s, 0s, 0.3s; /* this removes the transition delay so the menu will be visible while the other styles transition */
    }
    /*SLIDE DOWN EFFECTS END*/


    /*FLIP EFFECTS START*/
    /*
    .w-menu ul.sub-menu {
        display:none;
    }
    .w-menu li:hover > ul{  
        display: block;
        -moz-animation: flipInX .3s ease-in;
        -webkit-animation: flipInX .3s ease-in ;
        animation: flipInX .3s ease-in;
     
    }
     
    .w-menu ul li:hover > ul{
        display:block;
        -moz-animation: flipInY .3s ease-in ;
        -webkit-animation: flipInY .3s ease-in ;
        animation: flipInY .3s ease-in;
    }
    */

    /*FLIP EFFECTS END*/

    /* sub navigation */
    .w-menu li ul {    
        position:absolute;
        left:0;
        top:40px;
        width:200px;
    }
    .w-menu li ul.right {    
        right:0px;
        left:auto;
    }
    .w-menu li li {
        position:relative;
        margin:0;
        display:block;
    }
    .w-menu li li ul {
        position:absolute;
        top:0;
        left:200px; /* make this equal to the width of the sub nav above */
        margin:0;
    }
    .w-menu li li ul.right,
    .w-menu li li ul.right li ul {
        right:180px; /* make this equal to the width of the sub nav above */
        left:auto;
    }

    .w-menu ul li span.arrow-plus{
        position:relative;
        display:inline-block;
        z-index:99;
        right:20px;
        top:0px;
        cursor:pointer;
        text-align:center;
        height:auto;
    }
    .w-menu ul li span.arrow-plus:after{
        font-family: FontAwesome;
        content: "\f107";
        color:var(--main-color-one);
        font-size:14px;
        color:#FFF;
    }
    .w-menu ul li li span.arrow-plus{
        position:absolute;
        top:5px;
        right:7px;
    }
    .w-menu ul li li span.arrow-plus:after{
        font-family: FontAwesome;
        content: "\f105";
        color:#FFF;
        font-size:14px;
    }

    /*OTHER MENU STYLE START*/
    .w-menu ul li.other-menus > ul{
        /*max-height:200px;
        overflow-x: hidden;
        overflow-y: scroll;*/
    }
    .w-menu ul li.other-menus:hover{
        background-color:transparent;
    }
    .w-menu ul li.other-menus:before{
        font-family: FontAwesome;
        content: "\f0c9";
        color:#FFF;
        position:absolute;
        top:50%;
        margin-top:-11px;
        margin-left:-7px;
    }

    .w-menu ul li.other-menus > a{
        display:block;
        width:50px;
        padding:0px;
        margin:0px;
        text-indent:-99999px;
    }
    .w-menu ul li.other-menus ul li a {
        padding-left:20px;
    }
    .w-menu ul li.other-menus li:after{
        height:0px;
        display:none !important;
    }
    .w-menu ul li.other-menus > .arrow-plus{
        display:none;
    }
    .w-menu ul li.other-menus ul{
        left:-160px;
    }
    .w-menu ul li.other-menus ul li ul,
    .w-menu ul li.other-menus ul li ul li ul,
    .w-menu ul li.other-menus ul li ul li ul li ul {
        position: absolute;
        top: 0;
        left:-200px;
        margin: 0;
    }
    .w-menu ul li.other-menus span.arrow-plus {
        position: absolute;
        top: 9px;
        left: 3px;
        right: auto;
    }
    .w-menu ul li.other-menus span.arrow-plus:after{
        font-family: FontAwesome;
        content: "\f104";
    }
    .w-menu ul li.other-menus > ul::-webkit-scrollbar {
        width:3px;
    }
    .w-menu ul li.other-menus > ul::-webkit-scrollbar-thumb {
        background:var(--main-color-two);
    }
    .w-menu ul li.other-menus{
        cursor:pointer;
        position:relative;
    }
    /*OTHER MENU STYLE END*/
    /*MEGA MENU STYLE START*/
    .w-menu ul li.mega-menus{
        cursor:pointer;
        position:static;

    }
    .w-menu ul li.mega-menus > ul{
        position:absolute;
        width:1170px;
        left:0%;
        right:0%;
        padding:20px;
    }
    .w-menu ul li.mega-menus > ul > li{
        width:20%;
        float:left;
        line-height:10px;
        padding:0px 10px;
    }

    .w-menu ul li.mega-menus  ul li:hover{
        background-color:transparent;
    }
    .w-menu ul li.mega-menus > ul li a:hover{
        color:#000;
    }
    .w-menu ul li.mega-menus ul.sub-menu ul.sub-menu {
        display: block;
        left:0px;
        width:100%;
        position:static;
    }

    .mega-menus ul span.arrow-plus{
        display:none !important;
    }
    .w-menu ul li.megamenu-li > a,
    .w-menu ul li.megamenu-with-out-sub > a{
        font-size:13px !important;
        text-transform:uppercase !important;
        font-weight:bold !important;
        /*margin-bottom:5px !important;
        padding-bottom:10px !important;
        border-bottom:solid 1px #1b69a9 !important;*/
        display:block !important;
        line-height:16px !important;
        color:#FFFFFF !important;

    }
    /*.megamenu-with-out-sub > a{
            border-bottom:none !important;
            padding-bottom:0px !important;
            margin-bottom:0px !important;
            }*/
    .megamenu-li > a:hover{
        color:#FFF !important;
        cursor:default;
    }
    .megamenu-li ul{
        margin-bottom:20px !important;
        display:inline-block !important;
    }
    .w-menu li.mega-menus:hover ul{
        display: block;
        -moz-animation: zoomIn .3s ease-in;
        -webkit-animation: zoomIn .3s ease-in ;
        animation: none !important;

    }
    .w-menu ul li.mega-menus ul li{
        /*display:inline-block;
        vertical-align:top;
        float:left;*/
    }
    .w-menu ul li.mega-menus ul li a{
        line-height:20px;
        padding:5px 0px;
        font-size:14px;
        color:#98d0ff;
    }
    .w-menu ul li.mega-menus ul li ul li a{
        line-height:20px;
        padding:1px 0px;
        font-size:13px;
    }

    /*MEGA MENU STYLE END*/

    /*VERTICAL MENU STYLE START*/
    .w-menu.vertical-menu ul li{
        float:none;
        display:block;
        width:100%;
        text-align:left;
    }
    .w-menu.vertical-menu ul li ul.sub-menu{
        right:-200px;
        left:auto;
        top:0px;
    }
    .w-menu.vertical-menu .container{
        padding-left:0px;
        padding-right:0px;
    }
    /*VERTICAL MENU STYLE END*/
}
@media (max-width:1200px) and (min-width:991px) {
    .w-menu ul li.mega-menus > ul{
        width:960px;
        margin-left:-480px;
    }
}
@media (max-width:991px) {
    .mobile-menu-icon{
        position:fixed;
        width:35px;
        height:35px;
        background-color:var(--main-color-one);
        display: block;
        left:0px;
        cursor:pointer;
        top:0px;
        z-index:99;
        text-align:center;
        transition: 0.3s;
        padding-top:7px;
    }
    .mobile-menu-icon:after{
        font-family: FontAwesome;
        content: "\f0c9";
        line-height:20px;
        font-size:18px;
        font-weight:400;
        color:#FFF;	
    }
    .mobile-menu-icon.icon-open{
        transition: 0.3s;
        left:300px;
    }
    .mobile-menu-icon.icon-open:after{
        content: "\f00d";
    }
    .mobile-menu{
        position: fixed;
        z-index: 9999;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100%;
        overflow-x: hidden;
        overflow-y: scroll;
        background: var(--main-color-one);
        transition: 0.3s;
    }
    .mobile-menu.menu-open{
        left:0px; 
        transition: 0.3s;
    }

    .w-menu ul{
        padding:0px;
        margin:0px;
    }
    .w-menu ul li{
        float:none;
        list-style:none;
        position:relative;
    }
    .w-menu ul li a {
        color: #fefefe;
        font-size: 14px;
        display: block;
        padding:10px;
        border-top: 1px solid rgba(255,255,255,0.045);
        border-bottom: 1px solid rgba(0,0,0,0.045);
    }
    .w-menu ul li a:hover,
    .w-menu ul li a:focus{
        text-decoration:none;
    }
    .w-menu ul li.active{
        background: rgba(0, 0, 0, .2) none repeat scroll 0 0;
    }
    .w-menu ul li ul{
        display:none;
    }
    .w-menu ul li span.arrow-plus{
        position:absolute;
        width:40px;
        height:40px;
        border:solid 1px #FFF;
        display:block;
        z-index:99;
        right:2px;
        top:0px;
        cursor:pointer;
        text-align:center;
        padding-top:8px;
    }
    .w-menu ul li span.arrow-plus:after{
        font-family: FontAwesome;
        content: "\f067";
        color:#FFF;
        font-size:14px;
    }
    .w-menu ul li span.arrow-minimize:after{
        font-family: FontAwesome;
        content: "\f068";
        font-size:14px;
    }
    .w-submenu{
        display:block !important;
        background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0;
    }

}
@media (max-width:479px) {
    .mobile-menu{
        width:280px;
    }
    .mobile-menu-icon.icon-open {
        left: 280px;
    }
}
/* ==================================================*/
/*MENU STYLE END*/
/* ==================================================*/


/* ==================================================*/
/*BANNER STYLE START*/
/* ==================================================*/
.banner-section,
.bs-slider .carousel-item{
    padding-top:32.14285714285714%; /*Image Size 450px / 1400px = 32.14285714285714%*/
    background-size: contain !important;
}
.banner-section{
    position:relative;
}
.bs-slider .carousel-item{
    overflow: hidden;
    background: #FFFFFF;
    background-position: center center; 
    background-repeat:no-repeat; 
    background-size:  cover;
}
.weberge-slider{
    position:absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;

}
.bs-slider:hover {
    cursor: -moz-grab;
    cursor: -webkit-grab;
}
.bs-slider:active {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}
.bs-slider .bs-slider-overlay,
.weberge-slider .weberge-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}
.bs-slider > .carousel-inner > .carousel-item > img,
.bs-slider > .carousel-inner > .carousel-item > a > img {
    margin: auto;
    width: 100% !important;
}

.weberge-slider:hover {
    cursor: -moz-grab;
    cursor: -webkit-grab;
}
.weberge-slider:active {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

.weberge-slider > .carousel-inner > .carousel-item > img,
.weberge-slider > .carousel-inner > .carousel-item > a > img {
    margin: auto;
    width: 100% !important;
}

/********************
*****Slide effect
**********************/

/*.fade {
    opacity: 1;
}
.fade .item {
    top: 0;
    z-index: 1;
    opacity: 0;
    width: 100%;
    position: absolute;
    left: 0 !important;
    display: block !important;
    -webkit-transition: opacity ease-in-out 1s;
    -moz-transition: opacity ease-in-out 1s;
    -ms-transition: opacity ease-in-out 1s;
    -o-transition: opacity ease-in-out 1s;
    transition: opacity ease-in-out 1s;
}
.fade .item:first-child {
    top: auto;
    position: relative;
}
.fade .item.active {
    opacity: 1;
    z-index: 2;
    -webkit-transition: opacity ease-in-out 1s;
    -moz-transition: opacity ease-in-out 1s;
    -ms-transition: opacity ease-in-out 1s;
    -o-transition: opacity ease-in-out 1s;
    transition: opacity ease-in-out 1s;
}*/


.carousel-fade {
    opacity: 1;
}
.carousel-fade .carousel-item {
    top: 0;
    z-index: 1;
    opacity: 0;
    width: 100%;
    position: absolute;
    left: 0 !important;
    display: block !important;
    -webkit-transition: opacity ease-in-out 1s;
    -moz-transition: opacity ease-in-out 1s;
    -ms-transition: opacity ease-in-out 1s;
    -o-transition: opacity ease-in-out 1s;
    transition: opacity ease-in-out 1s;
}
.carousel-fade .carousel-item:first-child {
    top: auto;
    position: relative;
}
.carousel-fade .carousel-item.active {
    opacity: 1;
    z-index: 2;
    -webkit-transition: opacity ease-in-out 1s;
    -moz-transition: opacity ease-in-out 1s;
    -ms-transition: opacity ease-in-out 1s;
    -o-transition: opacity ease-in-out 1s;
    transition: opacity ease-in-out 1s;
}


/*---------- LEFT/RIGHT ROUND CONTROL ----------*/
.control-round .carousel-control {
    top: 50%;
    opacity: 0;
    width: 44px;
    height: 44px;
    margin-top:-22px;
    z-index: 100;
    color: #ffffff;
    display: block;
    font-size: 24px;
    cursor: pointer;
    overflow: hidden;
    line-height: 42px;
    text-shadow: none;
    position: absolute;
    font-weight: normal;
    background: transparent;
    -webkit-border-radius: 100px;
    border-radius: 100px;
}
.control-round:hover .carousel-control{
    opacity: 1;
    background-color:var(--main-color-one);
}
.control-round .carousel-control.left {
    left: 1%;
    text-align:center;
}
.control-round .carousel-control.right {
    right: 1%;
    text-align:center;

}
.control-round .carousel-control.left:hover,
.control-round .carousel-control.right:hover{
    color: #fdfdfd;
    border: 0px transparent;
}
.control-round .carousel-control.left>span:nth-child(1){
    left: 45%;
}
.control-round .carousel-control.right>span:nth-child(1){
    right: 45%;
}


/*---------- SLIDE CAPTION ----------*/


.slide-text {
    padding: 10px;
    position:absolute;
    padding: 10px 0px;
    width:760px; /*same width like container*/
    z-index:1;
    top: 0;
    bottom: 0;
    left:50%;
    margin-left:-380px;
}

.slide_style_left {
    text-align: left;
}
.slide_style_right {
    text-align: right;
}
.slide_style_center {
    margin: auto;
    left: 0;
    right: 0;
    text-align:center;
}
.slide-text.text_style_top_center,
.slide-text.slide_style_middle,
.slide-text.text_style_bottom_center{
    margin: auto;
    left: 0;
    right: 0;
    text-align:center;
}
.slide-text.text_style_top_left,
.slide-text.slide_style_middle_left,
.slide-text.text_style_bottom_left{
    text-align:left;
}
.slide-text.text_style_top_right,
.slide-text.slide_style_middle_right,
.slide-text.text_style_bottom_right{
    text-align:right;
}
.slide-text.text_style_top_center,
.slide-text.text_style_top_left,
.slide-text.text_style_top_right{
    top:0px;
}
.slide-text.text_style_bottom_center .slide-text-inner,
.slide-text.text_style_bottom_left .slide-text-inner,
.slide-text.text_style_bottom_right .slide-text-inner{
    bottom:0px;
    position:absolute;
    width:100%;
}
.slide_style_middle,
.slide_style_middle_left,
.slide_style_middle_right{
    height:100%;
    margin:auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    left:0px;
    right:0px;
}
.slide_style_middle:before,
.slide_style_middle_left:before,
.slide_style_middle_right:before{
    content:'';
    margin-bottom: auto;
}
.slide_style_middle:after,
.slide_style_middle_left:after,
.slide_style_middle_right:after{
    content:'';
    margin-top: auto;
}

.slide-text h1, .slide-text h3 {
    padding: 0;
    color: #ffffff;
    font-size:50px;
    font-style: normal;
    line-height:50px;
    margin-bottom: 10px;
    display: inline-block;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
    text-transform:uppercase;
    font-weight:600;
    font-family: 'Roboto Slab', serif;
}
.slide-text h1 span, .slide-text h3 span {
    color:var(--main-color-two);
}
.slide-text p {
    padding: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 23px;
    font-weight: 300;
    margin-bottom: 25px;
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
    display:inline-block;
    width:100%;
}
.slide-text a.btn-default{
    color: #000;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    margin-right: 10px;
    text-align: center;
    padding: 17px 30px;
    white-space: nowrap;
    letter-spacing: 1px;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;

}
.slide-text a.btn-primary{
    color: #ffffff;
    cursor: pointer;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    margin-left: 0px;
    text-align: center;
    padding: 17px 30px;
    white-space: nowrap;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.slide-text a:hover,
.slide-text a:active {
    color: #ffffff;
    background: #222222;
    -webkit-transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
    transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
}




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

@media (max-width:1200px) and (min-width:992px) {
    .slide-text {
        width:970px; /*same width like container*/
        margin-left:-485px;
        padding-left:15px;
        padding-right:15px;
    }
}

@media (max-width: 991px) {
    .banner-section,
    .bs-slider .item{
        padding-top:0%;
        height:115px;
    }
    .carousel-inner,
    .carousel-item{
        height:100%;
    }
    .slide-text {
        width:98%; /*same width like container*/
        margin-left:0px;
        left:0px;
        right:0px;
        padding-left:15px;
        padding-right:15px;
    }

    .slide_style_left,
    .slide_style_right,
    .slide_style_center,
    .slide-text.text_style_top_center,
    .slide-text.slide_style_middle,
    .slide-text.text_style_bottom_center,
    .slide-text.text_style_top_left,
    .slide-text.slide_style_middle_left,
    .slide-text.text_style_bottom_left,
    .slide-text.text_style_top_right,
    .slide-text.slide_style_middle_right,
    .slide-text.text_style_bottom_right {
        text-align:center;
    }

}

/*---------- MEDIA 480px ----------*/
@media  (max-width: 768px) {
    .slide-text h1 {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .slide-text p{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
        padding-right: 55px;
    }

    .slide-text > p{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .control-round .carousel-control{
        display: none;
    }
}
@media  (max-width: 480px) {
    .slide-text {
        padding: 10px 30px;
    }
    .slide-text h1 {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 5px;
        padding-left: 0px;
        padding-right: 70px;
    }
    .slide-text p {
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 10px;
        padding-left: 10px;
        padding-right: 80px;
    }
    .slide-text > a.btn-default, 
    .slide-text > a.btn-primary {
        font-size: 10px;
        line-height: 10px;
        margin-right: 10px;
        text-align: center;
        padding: 10px 15px;
    }
    .indicators-line > .carousel-indicators{
        display: none;
    }
    .bs-slider > .carousel-inner > .item > img,
    .bs-slider > .carousel-inner > .item > a > img {
        margin: auto;
        width: auto !important;
    }
}
/* ==================================================*/
/*BANNER STYLE END*/
/* ==================================================*/
.w-social-media{
    margin-top:20px;
}
.w-social-media a {
    background-color:var(--main-color-one);
    color: #FFF ;
    border-radius: 100px;
    display: inline-block;
    float: none;
    font-size:16px;
    height:35px;
    width:35px;
    line-height:20px;
    list-style: outside none none;
    margin: 0 5px;
    padding:8px 0 0;
    text-align: center;
    font-family: 'FontAwesome';
    font-style:normal;
}
.facebook:before {
    content: "\f09a";
}
.twitter:before {
    content: "\f099";
}
.linkedin:before {
    content: "\f0e1";
}
.youtube:before {
    content: "\f167";
}
.googleplus:before {
    content: "\f0d5";
}
.pinterest:before {
    content: "\f0d2";
}
.rssfeed:before {
    content: "\f09e";
}
.instagram:before {
    content: "\f16d";
}
.skype:before {
    content: "\f17e";
}
.w-social-media a:hover{
    color:#FFF;
    text-decoration:none !important;
    background-color:var(--main-color-one-hover);
}	
/* ==================================================*/
/*INNER PAGE CONTENT AREA STYLE START*/
/* ==================================================*/
.inner-banner{
    padding:0px 0px 0px 0px;
    margin:0px 0px 0px 0px;
    background-position: center center; 
    background-repeat:no-repeat; 
    background-size:  cover;
    padding-top:14.285714%; /*Image Size 1400px X 400px = 28.571428%*/

}
.inner-banner img{
    max-width:100%;
    width:100%;
    height:auto;
    padding:0px 0px 0px 0px;
    margin:0px 0px 0px 0px;
}
.w-content-area,
.w-side-bar,
.contact-page,
.content_section{
    padding:20px 0px 0px 0px;
    margin:0px 0px 0px 0px;
}
.w-content-title{
    width:100%;
    display:inline-block;
}
.w-content-area h1,
.gallery-outer h1,
.contact-page h1{
    padding:0px 0px 10px 0px;
    margin:0px 0px 0px 0px;
    color:#a61124;
    /*color:#111111;*/
    font-size:35px;
    line-height:40px;
    font-weight:400;
}
.w-content-area h2{
    padding:0px 0px 15px 0px;
    margin:0px 0px 0px 0px;
    color:var(--main-color-one);
    font-size:26px;
    line-height:32px;
    font-weight:400;
}
.w-content-area h3{
    padding:0px 0px 15px 0px;
    margin:0px 0px 0px 0px;
/*    color:#111111;*/
 color:#a61124;
    font-size:26px;
    line-height:32px;
    font-weight:400;
}
.w-content-area h4{
    padding:0px 0px 15px 0px;
    margin:0px 0px 0px 0px;
    color:var(--main-color-one);
    font-size:24px;
    line-height:30px;
    font-weight:400;
}
.w-content-area h5{
    padding:0px 0px 15px 0px;
    margin:0px 0px 0px 0px;
/*    color:#111111;*/
color:#a61124;
    font-size:24px;
    line-height:30px;
    font-weight:400;
}
.w-content-area h6{
    padding:0px 0px 15px 0px;
    margin:0px 0px 0px 0px;
    color:var(--main-color-two);
    font-size:22px;
    line-height:26px;
    font-weight:400;
}
.w-content-area h1.color,
.w-content-area h2.color,
.w-content-area h3.color,
.w-content-area h4.color,
.w-content-area h5.color,
.w-content-area h6.color{
    color:#2a90ac;
}
.w-content-area h1.uppercase,
.w-content-area h2.uppercase,
.w-content-area h3.uppercase,
.w-content-area h4.uppercase,
.w-content-area h5.uppercase,
.w-content-area h6.uppercase{
    text-transform:uppercase;
}
.w-content-area p{
    padding:0px 0px 20px 0px;
    margin:0px 0px 0px 0px;
    color:#000000;
    font-size:16px;

    line-height:26px;
    font-weight:400;
    text-align:justify;
}	
.w-content-area p em {
    color:var(--main-color-one);
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
    text-align: justify;
}
.w-content-area ul{
    padding:0px 0px 20px 0px;
    margin:0px 0px 0px 0px;
}
.w-content-area ul li{
    padding:0px 0px 10px 40px;
    margin:0px 0px 0px 0px;
    color:#000;
    font-size:16px;
    line-height:24px;
    font-weight:400;
    list-style:none;
    position:relative;
}
.w-content-area ul li a{
    color:#565656;
    text-decoration:none;
}
.w-content-area ul li::before,
.w-content-area ul li ul li::before {
    content: "\f138";
    display: inline-block;
    font-family: FontAwesome;
    font-feature-settings: normal;
    font-kerning: auto;
    font-language-override: normal;
    font-size: inherit;
    font-size-adjust: none;
    font-stretch: normal;
    font-style: normal;
    font-synthesis: weight style;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-rendering: auto;
    margin-left:-25px;
    top:5px;
    position:absolute;
    color:var(--main-color-one);
}

.w-content-area ul ul{
    padding:0px 0px 0px 0px;
    margin:10px 0px 0px 0px;
}
.w-content-area ul li ul li,
.w-content-area ul li ul li ul li{
    padding:0px 0px 5px 15px;
    margin:0px 0px 0px 0px;
    color:#000;
    font-size:15px;
    line-height:20px;
    font-weight:400;
    list-style:none;
    position:relative;
}
.w-content-area ul li ul li a{
    color:#747474;
    text-decoration:none;
}
.w-content-area ul li ul li::before {
    content: "\f101";
    margin-left:-15px;
    top:3px;
    font-size:14px;
}
.w-content-area ul ul ul{
    padding:0px 0px 0px 0px;
    margin:10px 0px 0px 0px;
}
.w-content-area ul li ul li ul li,
.w-content-area ul li ul li ul li a{
    color:#a1a1a1;
    text-decoration:none;
}
.w-content-area ul li ul li ul li::before {
    content: "\f105";
    margin-left:-15px;
    top:3px;
    font-size:14px;
}

.w-content-area ul li ol{
    padding:0px 0px 0px 0px;
    margin:10px 0px 0px 0px;
}
.w-content-area ul li ol li ul li {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 10px 40px;
}


.w-content-area ol{
    counter-reset: myCounter;
    padding:0px 0px 0px 0px;
    margin:0px 0px 0px 0px;
}

.w-content-area ol li{
    list-style: none;
    color: #565656;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    padding:0px 0px 10px 0px;
}
.w-content-area ol li a{
    color: #565656;
    text-decoration:none;
}


.w-content-area ol li ol{
    padding:0px 0px 0px 0px;
    margin:10px 0px 0px 25px;
}
.w-content-area ol li ol li{
    font-size:15px;
    line-height:20px;
    color:#828282;
}	
.w-content-area ol li ol li,
.w-content-area ol li ol li a{
    color:#828282;
    text-decoration:none;
}

.w-content-area ol li ol li ol{
    padding:0px 0px 0px 0px;
    margin:10px 0px 0px 25px;
}
.w-content-area ol li ol li ol li{
    font-size:15px;
    line-height:20px;
    color:#828282;
}
.w-content-area ol li ol li ol li,
.w-content-area ol li ol li ol li a{
    color:#a1a1a1;
    text-decoration:none;
}




.w-content-area ul li ol li{
    padding:0px 0px 0px 0px;
    margin:0px 0px 10px 25px;
}
.w-content-area ol li ul{
    padding:0px 0px 0px 0px;
    margin:10px 0px 0px 0px;
}

.w-content-area ol li ul li{
    padding:0px 0px 0px 0px;
    margin:0px 0px 10px 40px;
    color: #828282;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    list-style: none;
    position: relative;
}
.w-content-area ol li ol{
    margin:10px 0px 0px 0px;
}
.w-content-area ol li ol li{
    margin:0px 0px 0px 25px;
}
.w-content-area ol li ul li ul{
    margin:0px 0px 10px 0px;
}
.w-content-area ol li ul li ul li{
    margin:10px 0px 10px 15px;
}
.w-content-area ol li ul li {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 10px 25px;
}
.w-content-area ol li ul li::before {
    display: inline-block;
    font-family: FontAwesome;
    font-feature-settings: normal;
    font-kerning: auto;
    font-language-override: normal;
    font-size: inherit;
    font-size-adjust: none;
    font-stretch: normal;
    font-style: normal;
    font-synthesis: weight style;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-rendering: auto;
    margin-left: -25px;
    top: 5px;
    position: absolute;
    color: var(--main-color-one);
    background:none;
}

.w-content-area ol li ul li::before {
    content: "\f101";
    margin-left: -15px;
    top: 3px;
    font-size: 14px;
}
.w-content-area ol li ul li ul li::before {
    content: "\f105";
    margin-left: -15px;
    top: 3px;
    font-size: 14px;
}

.w-content-area ol li:before,
.w-content-area ol li ol li:before {
    counter-increment: myCounter;
    content:counter(myCounter);
    color: white;
    font-size:12px;
    background:var(--main-color-one);
    display: inline-block;
    text-align: center;
    margin:0px 10px 0px 0px;
    line-height:14px;
    width:15px;
    height:15px;
    border-radius:100px;
    position:relative;
    top:-2px;
}

.w-content-area p strong,
.w-content-area strong,
.w-content-area p strong a,
.w-content-area strong a{
    color:var(--main-color-one);
    font-weight:normal;
}

blockquote {
    color:#000000 !important;
    font-size: 18px;
    font-style: italic;
    margin: 0 0 30px;
    padding-left: 40px;
    position: relative;
    border-left:none;
    line-height:20px;
}
blockquote p{
    color:#000000 !important;
    font-size:18px !important;
}
blockquote::before {
    content: "â€œ";
    display: block;
    font-family: "Times New Roman", Georgia, Serif;
    font-size:40px;
    font-style: normal;
    left: 0;
    line-height:20px;
    padding:0px 10px 0;
    position: absolute;
    color:#565656;
    font-weight:bold;
}
blockquote p::after {
    content: "â€?";
    font-family: "Times New Roman", Georgia, Serif;
    font-size: 40px;
    font-style: normal;
    left: 0;
    line-height:10px;
    padding:0px 10px 0;
    color:#565656;
    font-weight:bold;
    position:relative;
    top:20px;
}

blockquote.color::before {
    color: #2a90ac;
}

.content-row{
    display:inline-block;
    width:100%;
}
.content-outer{
    display:flex;
}
.content-row::after,
.content-row::before,
.weg-col-1::after,
.weg-col-1::before{
    clear:both;
    display: table;
    content: " ";
    margin-bottom:5px;
}
.weg-col-1 iframe{
	width: 100%;
}
.content-row iframe{
	width: 100%;
}
.w-content-area iframe{
	width: 100%;
}
.weg-slider-content iframe{
	width: 100%;
}
.weg-col-1{
    width:100%;
    padding:0px 0px 0px;
}
.weg-col-2{
    width:49%;
    float:left;
    padding:15px;
    margin-right:2%;
}
.weg-col-3{
    width:32%;
    float:left;
    padding:15px;
    margin-right:2%;
}
.weg-col-4{
    width:23.5%;
    float:left;
    padding:15px;
    margin-right:2%;
}
.weg-col-2:last-child,
.weg-col-3:last-child,
.weg-col-4:last-child{
    margin-right:0%;
}
.weg-col-2,
.weg-col-3,
.weg-col-4{
    background-color: #f6f8f9;
    border: solid 1px #f0f0f0;
}
.weg-col-1,
.weg-col-2,
.weg-col-3,
.weg-col-4{
    margin-bottom:10px;
}
.weg-col-1 img,
.weg-col-2 img,
.weg-col-3 img{
    float:left;
    margin-right:10px;
    margin-bottom:10px;
    max-width:100%;
    height:auto;
}
.weg-col-4 img{
    float:none;
    margin-right:0px;
    margin-bottom:5px;
    max-width:100%;
    height:auto;
}
.weg-col-4{
    text-align:center;
}
.weg-col-1.left-image,
.weg-col-1.right-image{
    padding-bottom:10px;
    margin-bottom:5px;
    border-bottom:solid 1px #f0f0f0;
}
.weg-col-1.left-image ul,
.weg-col-1.right-image ul{
    float: none;
    display: flow-root;
}
.weg-col-1.left-image img{
    float:left;
    margin-bottom:10px;
    margin-right:20px;
    margin-left:0px;
}
.weg-col-1.right-image img{
    float:right;
    margin-bottom:10px;
    margin-left:20px;
    margin-right:0px;
}
.weg-col-2 h1,
.weg-col-3 h1,
.weg-col-4 h1{
    padding:0px 0px 10px 0px;
    margin:0px 0px 0px 0px;
    color:#000;
    font-size:26px;
    line-height:30px;
    font-weight:300;
}
.weg-col-2 h2,
.weg-col-3 h2,
.weg-col-4 h2{
    padding:0px 0px 10px 0px;
    margin:0px 0px 0px 0px;
    color:#000;
    font-size:24px;
    line-height:26px;
    font-weight:400;
}
.weg-col-2 h3,
.weg-col-3 h3,
.weg-col-4 h3{
    padding:0px 0px 10px 0px;
    margin:0px 0px 0px 0px;
    color:#000;
    font-size:20px;
    line-height:24px;
    font-weight:400;
}
.weg-col-2 h4,
.weg-col-3 h4,
.weg-col-4 h4{
    padding:0px 0px 10px 0px;
    margin:0px 0px 0px 0px;
    color:#000;
    font-size:19px;
    line-height:22px;
    font-weight:400;
}
.weg-col-2 p,
.weg-col-3 p,
.weg-col-4 p{
    padding:0px 0px 15px 0px;
    margin:0px 0px 0px 0px;
    color:#000000;
    font-size:16px;
    line-height:26px;
    font-weight:400;
    text-align:left;
}
.weg-col-4 p{
    text-align:center;
}
.weg-col-2 ul,
.weg-col-3 ul,
.weg-col-4 ul{
    padding:0px 0px 0px 0px;
    margin:0px 0px 15px 0px;
}
.weg-col-2 ul li,
.weg-col-3 ul li,
.weg-col-4 ul li{
    padding:0px 0px 7px 18px;
    margin:0px 0px 0px 0px;
    color:#000000;
    font-size:14px;
    line-height:24px;
    font-weight:400;
    list-style:none;
    position:relative;
    text-align:left;
}
.weg-col-2 ul li::before,
.weg-col-3 ul li::before,
.weg-col-4 ul li::before{
    content: "\f0da";
    display: inline-block;
    font-family: FontAwesome;
    font-feature-settings: normal;
    font-kerning: auto;
    font-language-override: normal;
    font-size: inherit;
    font-size-adjust: none;
    font-stretch: normal;
    font-style: normal;
    font-synthesis: weight style;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-rendering: auto;
    color:#0292d8;
    margin-left:-15px;
    top:5px;
    position:absolute;
}
.weg-col-2 ul li a,
.weg-col-3 ul li a,
.weg-col-4 ul li a{
    color:#000;
    text-decoration:none;
}

.weg-col-1 input[type="text"],
.weg-col-1 input[type="email"],
.weg-col-1 input[type="tel"],
.weg-col-1 select,
.weg-col-2 input[type="text"],
.weg-col-2 input[type="email"],
.weg-col-2 input[type="tel"],
.weg-col-2 select,
.weg-col-3 input[type="text"],
.weg-col-3 input[type="email"],
.weg-col-3 input[type="tel"],
.weg-col-3 select,
.weg-col-4 input[type="text"],
.weg-col-4 input[type="email"],
.weg-col-4 input[type="tel"],
.weg-col-4 select{
    border:solid 2px #62bbd3;
    border-radius:4px;
    padding:12px 7px;
    margin:0px 0px 10px 0px;
    width:100%;
    display:inline-block;
    font-size:18px;
    color:#111111;
    font-weight:400;
    height:50px;
}
.weg-col-1 select,
.weg-col-2 select,
.weg-col-3 select,
.weg-col-4 select{
    height:55px;
}
.weg-col-1 textarea,
.weg-col-2 textarea,
.weg-col-3 textarea,
.weg-col-4 textarea{
    border:solid 2px #62bbd3;
    border-radius:4px;
    padding:12px 7px;
    margin:0px 0px 10px 0px;
    width:100%;
    display:inline-block;
    height:100px;
    font-size:18px;
    color:#111111;
    font-weight:400;
}
.weg-col-1 input[type="submit"],
.weg-col-1 input[type="button"],
.weg-col-1 button[type="submit"],
.weg-col-1 button[type="button"],
.weg-col-2 input[type="submit"],
.weg-col-2 input[type="button"],
.weg-col-2 button[type="submit"],
.weg-col-2 button[type="button"],
.weg-col-3 input[type="submit"],
.weg-col-3 input[type="button"],
.weg-col-3 button[type="submit"],
.weg-col-3 button[type="button"],
.weg-col-4 input[type="submit"],
.weg-col-4 input[type="button"],
.weg-col-4 button[type="submit"],
.weg-col-4 button[type="button"]{
    background-color:#026c88;
    border:none;
    border-radius:4px;
    padding:15px 0px;
    margin:0px 0px 10px 0px;
    width:100%;
    display:inline-block;
    font-size:20px;
    text-transform:uppercase;
    font-weight:600;
    color:#FFF;
}

/* ==================================================*/
/*INNER PAGE CONTENT AREA STYLE START*/
/* ==================================================*/
/*COMMON CSS STYLE*/



/* ==================================================*/
/*TABLE STYLE START*/
/* ==================================================*/

.table-outer{
    overflow-x:scroll;
    margin-bottom:20px;
}
.w-table{
    border:solid 1px var(--main-color-one);
    border-top:none;
    margin:0px 0px 20px 0px;
    width:100%;
}
.table-outer::-webkit-scrollbar-track
{
    background-color: #F5F5F5;
    height:5px;
}

.table-outer::-webkit-scrollbar{
    width:5px;
    height:5px;
    background-color: #F5F5F5;
}
.table-outer::-webkit-scrollbar-thumb
{
    background-color: var(--main-color-one);
}
.w-table p {
    padding:0px 0px 0px 0px !important;
    margin:0px 0px 0px 0px !important;
}
.w-table th,
.w-table th{
    background-color:var(--main-color-one);
    color:#000;
    font-size:13px;
    font-weight:600 !important;
    line-height:20px;
    padding:0px 0px;
    margin:0px 0px 0px 0px;

}
.w-table > thead > tr > th, 
.w-table > tbody > tr > th, 
.w-table > tfoot > tr > th, 
.w-table > thead > tr > td, 
.w-table > tbody > tr > td, 
.w-table > tfoot > tr > td{
    border-top: 1px solid var(--main-color-one-hover);
    border-right: 1px solid var(--main-color-one-hover);
    line-height: 16px;
    padding:10px 5px;
    vertical-align: top;
    text-align:left;
    font-size:13px;
    font-weight:400;

}
.w-table tr:first-child,
.w-table tr th{
    background-color:var(--main-color-one);
    font-size:18px;
    font-weight:400;
    padding:10px;
}
.w-table tr td .td-text{
    padding:5px;
}
.w-table tr:first-child td,
.w-table tr th{
    padding:15px 10px;
    font-size:16px;
    color:#FFF;
}
.w-table > thead > tr > th:last-child, 
.w-table > tbody > tr > th:last-child, 
.w-table > tfoot > tr > th:last-child, 
.w-table > thead > tr > td:last-child, 
.w-table > tbody > tr > td:last-child, 
.w-table > tfoot > tr > td:last-child{
    border-right:none;
}

@media (max-width: 1024px) {
    .w-table{
        width:1000px;
    }
}


/* ==================================================*/
/*TABLE STYLE END*/
/* ==================================================*/
/* ==================================================*/
/*4 NOT 4 STYLE START*/
/* ==================================================*/
.f-not-f{
    width:100%;
    display:inline-block;
    padding:150px 0; 
    line-height:1.6em; 
    text-align:center; 
    font-family: Georgia,"Times New Roman",Times,serif;
    color:var(--main-color-one);
}

.f-not-f h1,
.f-not-f h2{
    margin:0 0 0 0px; 
    padding:0;  
    text-transform:uppercase;
    display:inline-block;
    width:100%;
}
.f-not-f h2{
    float:left;
}
.f-not-f h1{
    font-size:250px;
    color:var(--main-color-one);
}
.f-not-f h2{
    font-size:60px;
    padding-top: 50px;
    line-height: 40px;
}
.f-not-f h2 span{
    display:block; 
    font-size:30px;
}
.f-not-f p{
    margin:30px 0 0 0; 
    padding:0; 
    font-size:16px;
    width:100%;
    display:inline-block;
    color:#979797;
}
/* ==================================================*/
/*4 NOT 4 STYLE END*/
/* ==================================================*/

/* ==================================================*/
/*ACCORDION STYLE STAET*/
/* ==================================================*/
.wp-accordion{
    width:100%;
    display:inline-block;
    margin-bottom:20px;
}
.wp-accordion-section{
    width:100%;
    display:inline-block;
}
.wp-accordion-title{
    width:100%;
    display:block;
    background-color:var(--main-color-one);
    color:#FFF !important;
    font-size:18px;
    font-weight:400;
    line-height:22px;
    padding:10px;
    border:none;
    margin-bottom:1px;
    text-decoration:none;
    min-height:42px;
}
.wp-accordion-title:after{
    content:'';
    clear:both;
    display:block;
}
.wp-accordion-title:hover,
.wp-accordion-title.active{
    background-color:var(--main-color-one-hover);
    color:#FFFFFF;
    text-decoration:none;
}
.wp-accordion-title:focus{
    text-decoration:none;
}
.wp-accordion-title:after,
.wp-accordion-title.active:after{
    font-family: 'FontAwesome';
    content: "\f067";
    font-size:13px;
    color:#FFF;
    float:right;
}
.wp-accordion-title:hover:after{
    color:#FFF;
}
.wp-accordion-title.active:after{
    content: "\f068";
    color:#FFF;
}
.wp-accordion-content {
    padding: 15px;
    display: none;
    background-color:#f5f5f5;
}
.wp-accordion-content:after{
    content:'';
    display:block;
    clear:both;
}
.wp-accordion-content img{
    float:left;
    width:150px;
    height:auto;
    margin-right:20px;
    margin-bottom:10px;
}
.wp-accordion-content p{
    font-size:16px;
    line-height:26px;
}
/* ==================================================*/
/*ACCORDION STYLE END*/
/* ==================================================*/

/* ==================================================*/
/*TAB STYLE STAET*/
/* ==================================================*/
.wp-tabs-container,
.wp-tabs-menu-outer{
    display:inline-block;
    width:100%;
    line-height:0px;
}
.wp-tabs-container{
    margin-bottom:20px;
}
.wp-tabs-menu-outer{
    position:relative;
    z-index:1;
}
.wp-tab-menu {
    padding:10px 10px;
    line-height: 30px;
    float: left;
    background-color:var(--main-color-one);
    border: solid 1px var(--main-color-one);
    list-style:none;
    color:#FFFFFF;
    text-decoration:none;
    line-height:20px;
    font-size:16px;
    font-weight:500;
    margin-right:1px;
    position:relative;
    top:1px;
    min-height:42px;
}
.wp-tab-menu:focus{
    text-decoration:none;
}
.wp-tab-menu:hover,
.wp-tab-menu.active{
    background-color:#FFFFFF;
    color:#333;
    text-decoration:none;
    border-bottom: solid 1px #FFFFFF;
}

.wp-tab-content {
    width:100%;
    padding:10px 10px;
    display:none;
    clear:both;
    border: solid 1px var(--main-color-one);
}
.wp-tab-content:after{
    content:'';
    display:block;
    clear:both;
}
.wp-tab-content img{
    padding:0px 0px 0px 0px;
    margin:0px 10px 10px 0px;
    max-width:100%;
    height:auto;
    float:left;
}

#tab1 {
    display: block;   
}
.tabactive {
    display: block;   
}
.wp-tab-menu::after, 
.wp-tab-menu.active::after{
    display:none;
}
.tab-mobile-heading{
    display:none;
}


@media (min-width:991px) {
    .wp-tabs-container.vertical-tab{
        display: -moz-box;
        display: -webkit-box;
        display: box;
    }
    .wp-tabs-container.vertical-tab .wp-tabs-menu-outer,
    .wp-tabs-container.vertical-tab .wp-tab-menu{
        width:150px;
    }
    .wp-tabs-container.vertical-tab .wp-tab-menu{
        top:0px;
        border-bottom: solid 1px var(--main-color-one);
        border-right:none;
        right:-1px;
    }
    .wp-tabs-container.vertical-tab .wp-tab-content{
        -moz-box-flex: 1; 
        -webkit-box-flex: 1;
        box-flex: 1; 
    }
}
@media (max-width:991px) {
    .wp-tabs-menu-outer{
        display:none;
    }
    .tab-mobile-heading{
        display:block;
    }

    .wp-tab-menu{
        width:100%;
        display:inline-block;
    }

    .wp-tab-menu:hover, .wp-tab-menu.active {
        color: #FFF;
        text-decoration: none;
        background-color: var(--main-color-one);
        border: solid 1px var(--main-color-one);
    }
    .wp-tab-menu{
        background-color:var(--main-color-one-hover);
        border: solid 1px var(--main-color-one-hover);
        top:0px;
        margin-top:1px;
    }
    .tab-mobile-heading:first-child{
        margin-top:0px;
    }
    .wp-tab-menu::after, 
    .wp-tab-menu.active::after {
        font-family: 'FontAwesome';
        content: "\f067";
        font-size: 16px;
        color: #FFF;
        float: right;
        display:block;
    }
    .wp-tab-menu.active{
        top:0px;
    }
    .wp-tab-menu.active::after {
        content: "\f068";
    }
}
/* ==================================================*/
/*TAB STYLE END*/
/* ==================================================*/



/* ==================================================*/
/*CONTENT AREA SLIDER START*/
/* ==================================================*/
.content-area-slider{
    width:100%;
    margin:auto;
    margin-bottom:20px;
}
.content-area-slider{
    display:none;
}
.content-area-slider .weg-outer {
    padding: 0 !important
}
.content-area-slider :focus{
    outline:medium none !important;
}
.content-area-slider .weg-outer [hidden] {
    display: none !important
}
.content-area-slider .weg-outer [aria-controls], .weg-outer [data-action] {
    cursor: pointer
}
.content-area-slider .ms-touch {
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none;
    -ms-scroll-chaining: none;
    -ms-scroll-snap-type: mandatory;
    -ms-scroll-snap-points-x: snapInterval(0%, 100%)
}
.content-area-slider .weg-slider {
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    transition: all 0s
}
.content-area-slider .weg-slider>.weg-item {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.content-area-slider .weg-horizontal.weg-subpixel {
    white-space: nowrap
}
.content-area-slider .weg-horizontal.weg-subpixel>.weg-item {
    display: inline-block;
    vertical-align: top;
    white-space: normal
}
.content-area-slider .weg-horizontal.weg-no-subpixel:after {
    content: '';
    display: table;
    clear: both
}
.content-area-slider .weg-horizontal.weg-no-subpixel>.weg-item {
    float: left;
    margin-right: -100%
}
.content-area-slider .weg-no-calc {
    position: relative;
    left: 0
}
.content-area-slider .weg-gallery {
    position: relative;
    left: 0;
    min-height: 1px
}
.content-area-slider .weg-gallery>.weg-item {
    position: absolute;
    left: -100%;
    -webkit-transition: transform 0s, opacity 0s;
    -moz-transition: transform 0s, opacity 0s;
    transition: transform 0s, opacity 0s
}
.content-area-slider .weg-gallery>.weg-moving {
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s
}
.content-area-slider .weg-lazy-img {
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    transition: opacity 0.6s;
    opacity: 0.6
}
.content-area-slider .weg-lazy-img.loaded {
    opacity: 1
}
.content-area-slider .weg-ah {
    -webkit-transition: height 0s;
    -moz-transition: height 0s;
    transition: height 0s
}
.content-area-slider .weg-ovh {
    overflow: hidden
}
.content-area-slider .weg-hdx {
    overflow-x: hidden
}
.content-area-slider .weg-hdy {
    overflow-y: hidden
}
.content-area-slider .weg-visually-hidden {
    position: absolute;
    left: -10000em
}
.content-area-slider .weg-transparent {
    opacity: 0;
    visibility: hidden
}
.content-area-slider .weg-fadeIn {
    opacity: 1;
    filter: alpha(opacity=100);
    z-index: 0
}
.content-area-slider .weg-normal, 
.content-area-slider .weg-fadeOut {
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: -1
}

pre[class*="language-"] > code[data-language] { overflow: auto !important; }

.content-area-slider .visually-hidden {
    position: fixed;
    left: -10000px;
    opacity: 0;
}
.content-area-slider .customize-tools { position: relative; }
.content-area-slider .thumbnails { 
    margin: 20px 0;
    text-align: center;
}
.content-area-slider .thumbnails li {
    display: inline-block;
    cursor: pointer;
    border: 5px solid #fff;
}
.content-area-slider .thumbnails [aria-selected="true"] {
    background: none;
    border-color: #000;
}
.content-area-slider .thumbnails img { vertical-align: bottom; }
.content-area-slider .controls { text-align: center; }
.content-area-slider .controls li {
    display: block;
    position: absolute;
    top: 50%;
    height: 60px;
    line-height: 60px;
    margin-top: -30px;
    padding: 0 15px;
    cursor: pointer;
    transition: background 0.3s;
}
.content-area-slider .controls li img { display: inline-block; vertical-align: middle; }
.content-area-slider .controls .prev { left: 0; }
.content-area-slider .controls .next { right: 0; }
.content-area-slider .controls li:hover { background: #f2f2f2; }

.content-area-slider .weg-slider img { width: 100%; border:solid 5px var(--main-color-one); border-bottom:none; }
.content-area-slider .weg-controls { text-align: center; margin-bottom: 10px; }
.content-area-slider .weg-controls [aria-controls] {
    margin: 0 5px;
    color: #000;
    background:var(--main-color-one);
    border-radius: 3px;
    border: 0;
    border-radius: 4px;
    text-align: center;
    width: 30px;
    height: 30px;
}
.content-area-slider .weg-controls [data-controls="prev"]:after,
.content-area-slider .weg-controls [data-controls="next"]:after {
    color: #fff;
    content: "\f053";
    font-family: FontAwesome;
    font-size: 14px;
}
.content-area-slider .weg-controls [data-controls="next"]:after{
    content: "\f054";
}
.content-area-slider .lt-ie9 .weg-controls > [aria-controls] {
    line-height: 2.5em;
}
.content-area-slider [data-action] {
    display: block;
    margin: 10px auto;
    font-size: 17px;
    min-width: 3em;
    text-align: center;
    background: transparent;
    border: 0;
}
.content-area-slider .weg-controls [disabled] { 
    background: var(--main-color-one);
    opacity:.2;
    cursor: not-allowed !important;
}
.content-area-slider .weg-nav {
    text-align: center;
    margin: 10px 0;
}
.content-area-slider .weg-nav > [aria-controls] {
    width: 9px;
    height: 9px;
    padding: 0;
    margin: 0 5px;
    border-radius: 50%;
    background: #ddd;
    border: 0;
}
.content-area-slider .weg-nav > [aria-selected="true"] { background: var(--main-color-one); }
.content-area-slider .playbutton-wrapper { text-align: center; }
.content-area-slider .playbutton-wrapper button { height: 34px; padding: 0 10px; font-size: 14px; background: #fff; border-radius: 3px; border: 1px solid  #ccc; cursor: pointer; }
.content-area-slider .wrapper { padding: 0 5em; }
.content-area-slider .customize-tools [hidden] { display: none; }
.inner-slider-content{
    background-color:var(--main-color-one);
    display:block;
    width:100%;
    margin:0px 0px 0px 0px;
    max-height:63px;
    min-height:63px;
}

a.slide-a .inner-slider-content:hover,
a.slide-a:hover .inner-slider-content{
    text-decoration:none !important;
    background-color:var(--main-color-one-hover);
}
.slider-details{
    margin-bottom:20px;
}
.slider-details,
.slider-details p,
.slider-details h1,
.slider-details h2,
.slider-details h3,
.slider-details h4,
.slider-details h4,
.slider-details h5{
    width:100%;
    display:inline-block;
    margin:0px 0px 5px 0px;
    padding:0px 0px 0px 0px;
}
.slider-details.left,
.slider-details.left p{
    text-align:left;
}
.slider-details.center,
.slider-details.center p{
    text-align:center;
}
.slider-details.right,
.slider-details.right p{
    text-align:right;
}
.inner-slider-content span{
    position:relative;
    z-index:9999;
    color:#FFF;
    font-size:14px;
    line-height:18px;
    font-weight:400;
    text-align:center;
    min-height:63px;
    padding:5px;
    margin:auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.inner-slider-content span:before{
    content:'';
    margin-bottom: auto;
}
.inner-slider-content span:after{
    content:'';
    margin-top: auto;
}
/*LIGHT BOX START*/

.slide-a {
    display: inline-block;
    font-size: 0;
    width:100%;

    height: auto;
    background-clip: padding-box;
}
.slide-a > .slide-image {
    display: block;
    cursor: pointer;
    height: 0;
    padding-bottom:	70%;
    background-size: cover;	
    background-position: center center;
    border:7px solid var(--main-color-one);
}


.lcl_minimal #lcl_window, 
.lcl_minimal.lcl_txt_under #lcl_txt, 
.lcl_minimal.lcl_txt_rside:not(.lcl_force_txt_over) #lcl_txt, 
.lcl_minimal.lcl_txt_lside:not(.lcl_force_txt_over) #lcl_txt{
    background-color: #3d3d3d;
}
.lcl_minimal #lcl_nav_cmd::before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    height: 42px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
/* (1) basic styles */
#lcl_wrap {
    bottom: 0;
    left: 0;
    position: fixed;
    top: 0;
    right: 0;
    text-align: center;
    overflow-x: hidden;
    overflow-y: hidden;
    z-index: 999999999;
    -webkit-overflow-scrolling: touch;
}
#lcl_wrap:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;	
}
#lcl_wrap > * {
    text-align: left;	
    box-sizing: border-box;
}
#lcl_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background-position: top left;
    background-repeat: repeat;

    -webkit-transform: 	translateZ(0);
    transform: 			translateZ(0);
}
#lcl_wrap:not(.lcl_pre_show) {
    -webkit-transition: all .35s ease-in; 
    transition: 		all .35s ease-in; 	
}


/* (3) loader */
#lcl_loader {
    display: block;
    opacity: 0;
    height: 40px;
    width: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    z-index: -1;

    /* timing overrided by JS */
    -webkit-transition: opacity .3s ease-out;
    transition: 		opacity .3s ease-out;
}
#lcl_loader.lcl_loader_pre_first_el {
    opacity: 0 !important;	
}
.lcl_first_sizing #lcl_loader:not(.no_loader),
.lcl_loading_iframe #lcl_loader:not(.no_loader),
.lcl_loading_videojs #lcl_loader:not(.no_loader),
.lcl_switching_elem #lcl_loader:not(.no_loader) {
    opacity: 1;
    z-index: 99999;	
}
#lcll_1, #lcll_2 {
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    margin-top: -50%;
    margin-left: -50%;
    background: transparent;

    border-color: #aaa #aaa transparent;
    border-width: 3px;
    border-style: solid;

    -webkit-animation:	lcl-loader 1.4s infinite linear;
    animation: 			lcl-loader 1.4s infinite linear; 
}
#lcll_2 {
    width: 50%;	
    height: 50%;
    margin-left: -25%;
    margin-top: -25%;
    border-right-color: transparent !important;

    -webkit-animation-duration: 1.15s;
    animation-duration: 1.15s;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
@-webkit-keyframes lcl-loader {
    100% {-webkit-transform: rotate(360deg) translateZ(0);} 
}
@keyframes lcl-loader {
    100% {transform: rotate(360deg) translateZ(0);} 
}



/* (2) window */
#lcl_subj.lcl_switching_el > * {
    opacity: 0;	
}
#lcl_contents_wrap { /* timing overrided by JS */
    -webkit-transition: opacity .3s ease;  
    transition: 		opacity .3s ease;		
}
.lcl_first_sizing #lcl_contents_wrap,
.lcl_loading_iframe #lcl_contents_wrap,
.lcl_loading_videojs #lcl_contents_wrap,
.lcl_switching_elem #lcl_contents_wrap,
.lcl_toggling_fs #lcl_contents_wrap {
    opacity: 0 !important;	
}
.lcl_first_sizing #lcl_contents_wrap *,
.lcl_loading_iframe #lcl_contents_wrap *,
.lcl_loading_videojs #lcl_contents_wrap *,
.lcl_switching_elem #lcl_contents_wrap *,
.lcl_toggling_fs #lcl_contents_wrap * {
    -webkit-transition: none !important; 
    transition: 		none !important; 
}
#lcl_window {
    display: inline-block;
    text-align: left;
    z-index: 30;
    vertical-align: middle;

    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    min-width: 50px;
    min-height: 50px;
    line-height: 0 !important;
    overflow: visible;
    position: relative;
    top: 0;
    left: 0;

    -webkit-transform: 	translateZ(0);
    transform: 			translateZ(0);
}
.lcl_image_elem,
#lcl_elem_wrap:not(.lcl_image_elem) .lcl_elem { /* timing overrided by JS */
    -webkit-transition: all .3s ease-out;  
    transition: 		all .3s ease-out;
}
.lcl_toggling_fs#lcl_wrap, /* fullscreen switch - fast transition */
.lcl_toggling_fs #lcl_window,
.lcl_toggling_fs .lcl_image_elem,
.lcl_toggling_fs #lcl_elem_wrap .lcl_elem {
    -webkit-transition: all .05s linear;  
    transition: 		all .05s linear;
}
.lcl_is_resizing:not(.lcl_first_sizing):not(.lcl_toggling_txt):not(.lcl_toggling_tn):not(.lcl_toggling_fs) #lcl_window,
.lcl_is_resizing:not(.lcl_toggling_txt):not(.lcl_toggling_tn) .lcl_image_elem,
.lcl_is_resizing:not(.lcl_toggling_txt):not(.lcl_toggling_tn) #lcl_elem_wrap:not(.lcl_image_elem),
.lcl_show_already_shaped #lcl_window {
    -webkit-transition: none !important;   
    transition: 		none !important; 	
}
.lcl_tn_hidden #lcl_window {
    margin-top: 0 !important;	
}
.lcl_pre_first_el:not(.lcl_show_already_shaped) #lcl_window {
    width: 100px;
    height: 100px;
    max-width: 85px !important;
    max-height: 85px !important;	
}
.lcl_is_closing #lcl_window {
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;	
}


/* (5) contents wrap */
#lcl_contents_wrap,
#lcl_subj {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}
#lcl_subj {
    z-index: 10;
}
#lcl_wrap:not(.lcl_switching_elem) #lcl_subj {
    -webkit-transition: border-width .35s ease;   
    transition: 		border-width .35s ease;	
}

.lcl_toggling_txt #lcl_subj {
    -webkit-transition-delay: 	.55s !important; /* delay to allow sizing on text hiding */ 
    transition-delay: 			.55s !important;
}
#lcl_elem_wrap {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;	
}
.lcl_image_elem,
.lcl_html_elem {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.lcl_image_elem img {
    left: -99999px;
    position: fixed !important;
}
.lcl_html_elem {
    line-height: normal;
    padding: 15px;
    overflow-y: auto;
    background: #fdfdfd;	
}

/* (4) BUTTONS */
#lcl_nav_cmd {
    position: absolute;
    top: 0;	
    z-index: 100;
    overflow: visible;
    height: 0; 
}
.lcl_corner_close.lcl_inner_cmd:not(.lcl_txt_rside):not(.lcl_forced_outer_cmd) #lcl_nav_cmd,
.lcl_corner_close.lcl_no_txt:not(.lcl_forced_outer_cmd) #lcl_nav_cmd,
.lcl_corner_close.lcl_hidden_txt:not(.lcl_forced_outer_cmd) #lcl_nav_cmd,
.lcl_corner_close.lcl_force_txt_over:not(.lcl_forced_outer_cmd) #lcl_nav_cmd {
    padding-right: 24px !important
}

.lcl_first_sizing #lcl_nav_cmd,
.lcl_loading_iframe #lcl_nav_cmd,
.lcl_loading_videojs #lcl_nav_cmd,
.lcl_switching_elem #lcl_nav_cmd,
.lcl_toggling_txt.lcl_inner_cmd #lcl_nav_cmd,
.lcl_toggling_fs #lcl_nav_cmd {
    opacity: 0 !important;	
}

#lcl_nav_cmd {
    right: 0;
    left: 0;	
}
.lcl_outer_cmd #lcl_nav_cmd {
    z-index: 99999;
    margin: 0 !important;
    padding: 10px 15px;	
}
.lcl_outer_cmd:not(.lcl_first_sizing):not(.lcl_first_sizing):not(.lcl_loading_iframe):not(.lcl_switching_elem):not(.lcl_toggling_txt):not(.lcl_toggling_fs):not(.lcl_is_closing) #lcl_nav_cmd {
    opacity: 1 !important;
}
.lcl_is_closing.lcl_outer_cmd #lcl_nav_cmd {
    -webkit-transition: all .2s ease;  
    transition: 		all .2s ease;	

    opacity: 0 !important;
}

#lcl_nav_cmd .lcl_icon {
    display: inline-block;
    border-radius: 3px;
    background: #fefefe;

    box-shadow: 0 0 2px rgb(20, 20, 20, 0.05);

    border: 1px solid #eaeaea;
    text-align: center;	
    vertical-align: top;
    margin: 4px;
    width: 24px;
    height: 24px;
    color: #6f6f6f;
    position: relative;
}

.lcl_outer_cmd .lcl_close {
    right: 0 !important;
    top: 0 !important;
}
@media screen and (min-width:450px) { 
    .lcl_inner_cmd:not(.lcl_on_mobile) #lcl_nav_cmd .lcl_icon {
        opacity: 0;
        -webkit-transform:	scale(0.7);
        -ms-transform: 		scale(0.7);
        transform: 			scale(0.7);

        -webkit-transition: opacity .2s ease-in .5s, box-shadow .2s ease-in .5s, -webkit-transform .2s ease-in .5s; 
        transition: 		opacity .2s ease-in .5s, box-shadow .2s ease-in .5s, transform .2s ease-in .5s;
    }
    #lcl_window:not(.lcl_on_mobile):hover #lcl_nav_cmd .lcl_icon {
        opacity: 1;

        -webkit-transition: all .2s ease-in 0s; 
        transition: 		all .2s ease-in 0s;

        -webkit-transform: 	scale(1);
        -ms-transform: 		scale(1);
        transform: 			scale(1);
    }
}

.lcl_icon:before,
.lcl_tn_prev:before,
.lcl_tn_next:before,
#lcl_corner_close:before,
.lcl_postered_video:not(.lcl_poster_clicked):before {
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-align: center;
    display: block;
    font-size: 16px;
    line-height: 27px;
    z-index: 10;
    position: relative;

    -webkit-transition: all .15s ease; 
    transition: 		all .15s ease;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;	 
}

.lcl_nav_btn_middle .lcl_next:after, 
.lcl_nav_btn_middle .lcl_prev:after {
    -webkit-transition-duration: .15s; 
    transition-duration: .15s;	
}
.lcl_nav_btn_middle.lcl_inner_cmd .lcl_next:after {
    right: 0 !important;	
}
.lcl_nav_btn_middle.lcl_inner_cmd .lcl_prev:after {
    left: 0 !important;	
}
.lcl_prev:before	{font-family: 'FontAwesome'; content: "\f053"; text-indent: -1px;}
.lcl_next:before 	{font-family: 'FontAwesome'; content: "\f054"; text-indent: 1px;}
.lcl_play:before	{font-family: 'FontAwesome'; content: "\f04b"; font-size: 14px; line-height: 24px; text-indent: 1px;}
.lcl_is_playing .lcl_play:before	{font-family: 'FontAwesome'; content: "\f04c"; font-size:14px; line-height: 24px; text-indent: 0;}
.lcl_close:after, #lcl_corner_close:before	{font-family: 'FontAwesome'; content: "\f00d"; font-size: 20px; line-height: 22px;text-indent: 1px; }

.lcl_txt_toggle:before		{font-family: 'FontAwesome'; content: "\f10e"; font-size: 14px; line-height:25px;}
.lcl_thumbs_toggle:before	{font-family: 'FontAwesome'; content: "\f009"; font-size: 14px; line-height: 26px; text-indent: -1px;}

.lcl_tn_prev:before {font-family: 'FontAwesome'; content: "\f137";}
.lcl_tn_next:before {font-family: 'FontAwesome'; content: "\f138";}

.lcl_right_icon {
    float: right;
}
.lcl_close {
    margin-left: 36px !important;	
}

.lcl_first_elem:not(.lcl_on_mobile) #lcl_window:hover .lcl_prev {
    opacity: 0.5 !important;	
    cursor: default !important;
}
.lcl_last_elem:not(.lcl_on_mobile) #lcl_window:hover  .lcl_next {
    opacity: 0.5 !important;	
    cursor: default !important;
}
.lcl_last_elem .lcl_play {
    display: none !important;	
}
#lcl_thumb_prev div:before,
#lcl_thumb_next div:before {
    font-size: 20px;	
}
.lcl_icon {
    cursor: pointer;	
    display: inline-block;	
    height: 24px;
    width: 24px;
    border-radius: 2px;
    box-sizing: content-box !important;

    -webkit-transition: all .2s linear;
    transition: 		all .2s linear;
}


/* button status */
.lcl_no_carousel[lc-lelem="0"] .lcl_prev:before,
.lcl_no_carousel.lcl_last_elem .lcl_next:before,
.lcl_hidden_txt .lcl_txt_toggle:before,
.lcl_tn_hidden .lcl_thumbs_toggle:before,
.lcl_zoom_icon.lcl_zoom_disabled:before {
    opacity: .6 !important;	
}
.lcl_no_carousel[lc-lelem="0"] .lcl_prev,
.lcl_no_carousel.lcl_last_elem .lcl_next {
    cursor: default !important;	
}
.lcl_no_carousel[lc-lelem="0"] .lcl_prev:after,
.lcl_no_carousel.lcl_last_elem .lcl_next:after {
    display: none !important;	
}

.lcl_close:before, 
#lcl_corner_close:before{
    display:none !important;
}
/* manage btn margins on mobile screens*/
@media screen and (max-width:450px) { 
    #lcl_nav_cmd .lcl_icon {
        margin: 0;	
    }
    .lcl_close {
        margin-left: 26px !important;
    }
}


/* (6) TEXTS */
#lcl_txt {
    padding: 12px 10px;
    line-height: 20px;
    z-index: 50;
    position: absolute;
    overflow: hidden;
    box-sizing: border-box;
}
.lcl_toggling_txt #lcl_txt {
    -webkit-transition: -webkit-transform .45s ease .1s, opacity .35s ease .1s; 
    transition: 		transform .45s ease .1s, opacity .35s ease .1s;
}

.lcl_no_txt #lcl_txt {
    display: none !important;	
    color:#FFF;
}

#lcl_title {
    font-size: 16px;
    font-weight: bold;
    line-height: normal;
    margin-bottom: 4px;
    color:#FFF;
}

.lcl_comments_wrap {
    min-width: 178px;	
}
.lcl_txt_rside:not(.lcl_force_txt_over) #lcl_txt .lcl_txt_border,
.lcl_txt_lside:not(.lcl_force_txt_over) #lcl_txt .lcl_txt_border {
    border-bottom: 1px dashed #cfcfcf;
    margin-bottom: 12px;
    padding-bottom: 17px;		
}

#lcl_descr {
    font-size: 13px;
    line-height:18px;	
    color:#FFF;
    font-weight:normal;
}


/* text under/over element */
.lcl_txt_under #lcl_txt,
.lcl_txt_over #lcl_txt {
    left: 0;
    bottom: 0;	
}

/* text under */
.lcl_txt_under #lcl_txt {
    background: #fff;	
}
.lcl_txt_under:not(.lcl_force_txt_over) #lcl_txt {
    padding: 18px 25px 22px;
    margin-bottom: 0 !important;	
}
.lcl_txt_under.lcl_is_resizing:not(.lcl_force_txt_over) #lcl_txt,
.lcl_txt_under.lcl_toggling_txt:not(.lcl_force_txt_over) #lcl_txt {
    opacity: 0 !important;
}
.lcl_txt_under.lcl_hidden_txt.lcl_toggling_txt:not(.lcl_force_txt_over) #lcl_txt {
    visibility: hidden !important;
}
.lcl_txt_under:not(.lcl_force_txt_over) #lcl_txt:after {
    height: 7px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

/* text over */
.lcl_force_txt_over #lcl_txt,
.lcl_txt_over #lcl_txt {
    background-clip: padding-box !important;
    border: 15px solid transparent;
    border-radius: 0 17px 17px 0;
    max-height: calc(100% - 42px);
    padding:12px;
    overflow: auto;
    bottom: 0;
}
.lcl_txt_over #lcl_txt{
    background-color:rgba(0, 0, 0, 0.5);
}
/* hide texts */
.lcl_hidden_txt.lcl_txt_under:not(.lcl_force_txt_over) #lcl_txt {
    height: 0 !important;
    padding: 0 !important;

    -webkit-transform: 	translateY(100%);
    -ms-transform:		translateY(100%);
    transform: 			translateY(100%);	
}
.lcl_hidden_txt:not(.lcl_fullscreen_mode).lcl_txt_over #lcl_txt,
.lcl_hidden_txt:not(.lcl_fullscreen_mode).lcl_force_txt_over #lcl_txt {
    opacity: 0 !important;	
    z-index: -1;

    -webkit-transform:  translateY(30px) scale(.95);
    -ms-transform:		translateY(30px) scale(.95);
    transform: 			translateY(30px) scale(.95);
}
.lcl_hidden_txt.lcl_fullscreen_mode.lcl_txt_over #lcl_txt,
.lcl_hidden_txt.lcl_fullscreen_mode.lcl_force_txt_over #lcl_txt {
    -webkit-transform: 	translateX(-110%) scale(.8);
    -ms-transform:		translateX(-110%) scale(.8);
    transform: 			translateX(-110%) scale(.8);	
}

.lcl_hidden_txt.lcl_txt_rside:not(.lcl_force_txt_over) #lcl_subj,
.lcl_hidden_txt.lcl_txt_lside:not(.lcl_force_txt_over) #lcl_subj {
    border-width: 0 !important;
}
.lcl_hidden_txt.lcl_txt_rside:not(.lcl_force_txt_over) #lcl_txt {
    -webkit-transform: 	translateX(100%);
    -ms-transform:		translateX(100%);
    transform: 			translateX(100%);	
}
.lcl_hidden_txt.lcl_txt_lside:not(.lcl_force_txt_over) #lcl_txt {
    -webkit-transform: 	translateX(-100%);
    -ms-transform:		translateX(-100%);
    transform: 			translateX(-100%);	
}

/* (7) THUMBS NAVIGATOR */
#lcl_thumbs_nav {
    margin: 10px 0px 0px; 
    position: fixed;
    bottom: 0;
    left: 0;
    right:0;
    box-sizing: content-box !important;
    z-index: 60;

    -webkit-transition: -webkit-transform .35s ease-in, opacity .5s ease, margin .35s ease, left .4s ease .2s, right .4s ease .2s;
    transition: 		transform .35s ease-in, opacity .5s ease, margin .35s ease, left .4s ease .2s, right .4s ease .2s;	

}
#lcl_thumbs_nav, #lcl_thumbs_nav * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.lcl_playing_video.lcl_fullscreen_mode #lcl_thumbs_nav {
    margin-bottom: 50px;	
}
.lcl_tn_hidden #lcl_thumbs_nav,
.lcl_pre_first_el #lcl_thumbs_nav {
    opacity: 0;

    -webkit-transform: 	translateY(150%);
    -ms-transform:		translateY(150%);
    transform: 			translateY(150%);	
}

#lcl_thumbs_nav .lcl_tn_inner {
    position: absolute;
    z-index: 10;	
    left:0px;
    right:0px;
    bottom: 0;
    top: 0;
    list-style: none !important;
    margin: 0 !important;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    background:rgba(0, 0, 0, 0.5);
    padding:15px 20px;

}
.lcl_on_mobile .lcl_tn_inner {
    overflow: auto !important;	
    touch-action: pan-x;
}
.lcl_tn_inner li {
    height: 100%;
    margin: 0 0 0 10px;
    display: inline-block;
    border: 2px solid #999;
    border-radius: 2px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;	
    background-clip: content-box;	
    cursor: pointer;
    overflow: hidden;

    -webkit-transform: scale(0.83) translateZ(0);
    -ms-transform: scale(0.83) translateZ(0);
    transform: scale(0.83) translateZ(0);

    -webkit-transition: all .25s ease;
    transition: 		all .25s ease;	 
}
.lcl_tn_inner li:first-child {
    margin: 0;	
}
.lcl_tn_inner li.lcl_sel_thumb,
#lcl_wrap:not(.lcl_on_mobile) .lcl_tn_inner li:not(.lcl_sel_thumb):hover {
    -webkit-transform: scale(.97);
    -ms-transform: scale(.97);
    transform: scale(.97);
    border: 2px solid var(--main-color-one);
}
.lcl_tn_inner li.lcl_tn_preload,
.lcl_tn_inner li.lcl_sel_thumb.lcl_tn_preload {
    margin: 0 !important;	
    width: 0 !important;
    height: 0 !important;

    -webkit-transform: scale(0) !important;
    -ms-transform: scale(0) !important;
    transform: scale(0) !important;	
}
.lcl_thumb_title_tt {
    padding: 7px 10px;	
}
#lcl_thumbs_nav span {
    position: absolute;
    cursor: pointer;
    width: 23px;
    height: 23px;
    top: 50%;
    margin-top: -12px;
    z-index: 15;
    color: #f5f5f5;
}
#lcl_thumbs_nav:not(.lcl_tn_has_arr) span {
    display: none !important;
}
#lcl_thumbs_nav.lcl_tn_has_arr span {
    display: inline-block !important;
}
#lcl_thumbs_nav.lcl_tn_has_arr span:before {
    font-size: 23px;	
}
#lcl_thumbs_nav span.lcl_tn_prev {
    left: 0;	
}
#lcl_thumbs_nav span.lcl_tn_next {

    right: 0;	
}

/* (8) PROGRESSBAR */
#lcl_progressbar {
    position: fixed;
    z-index: 99999;
    top: 0;
    height: 2px;
    left: 0;
    width: 0;
    background: #fff;
    box-shadow: 0px 2px 2px 0 rgba(0, 0, 0, 0.4);

    -webkit-transition: opacity .6s ease;
    transition: 		opacity .6s ease;		
}
.lcl_loading_videojs #lcl_progressbar,
.lcl_loading_iframe #lcl_progressbar {
    opacity: 0; !important;	

    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}


/* ==================================================*/
/*CONTENT AREA SLIDER END*/
/* ==================================================*/








/* ==================================================*/
/*IMAGE CONTENT BOX*/
/* ==================================================*/

.image-content-box-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}
.image-content-box-1{
    width:50%;
    margin:auto;
}
.image-content-box-2,
.image-content-box-3,
.image-content-box-4,
.image-content-box-5{

    padding-right: 10px;
    padding-left: 10px;
    margin-bottom:10px;
}
.image-content-box-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;

}
.image-content-box-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    width: 33.333333%;
}
.image-content-box-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
}
.image-content-box-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    width:20%;
}
.image-content-box-1 img,
.image-content-box-2 img,
.image-content-box-3 img,
.image-content-box-4 img,
.image-content-box-5 img{
    max-width:100%;
    width:100%;
    height:auto;
}
.image-content-box-style{
    background-color: var(--main-color-one);
    height:100%;
}
.image-content-box-content{
    margin:auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color:#FFF;
    text-align:center;
    min-height:60px;
    padding:10px;
    font-weight:400;
    font-size:15px;
    line-height:20px;
}
.image-content-box-2:hover .image-content-box-style,
.image-content-box-3:hover .image-content-box-style,
.image-content-box-4:hover .image-content-box-style,
.image-content-box-5:hover .image-content-box-style{
    background-color: var(--main-color-one-hover);
}
.image-content-box-content:before{
    content:'';
    margin-bottom: auto;
}
.image-content-box-content:after{
    content:'';
    margin-top: auto;
}
.image-content-box-content a{
    color:#FFF;
    text-decoration:none;
}
@media (max-width:991px) {
    .image-content-box-1,
    .image-content-box-2,
    .image-content-box-3,
    .image-content-box-4,
    .image-content-box-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        width: 50%;
    }
}
@media (max-width:600px) {
    .image-content-box-1,
    .image-content-box-2,
    .image-content-box-3,
    .image-content-box-4,
    .image-content-box-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        width: 100%;
    }
}
/* ==================================================*/
/*IMAGE CONTENT BOX*/
/* ==================================================*/


/* ==================================================*/
/*IMAGE GALLERY START*/
/* ==================================================*/

.image-gallery-lightbox-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}
.image-gallery-lightbox-1{
    width:50%;
    margin:auto;
}
.image-gallery-lightbox-2,
.image-gallery-lightbox-3,
.image-gallery-lightbox-4,
.image-gallery-lightbox-5{
    cursor:pointer;
    padding-right: 5px;
    padding-left: 5px;
    margin-bottom:10px;

}
.image-gallery-lightbox-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    width: 50%;
}
.image-gallery-lightbox-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    width: 33.333333%;
}
.image-gallery-lightbox-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    width: 25%;
}
.image-gallery-lightbox-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    width:20%;
}
.image-gallery-lightbox-1 img,
.image-gallery-lightbox-2 img,
.image-gallery-lightbox-3 img,
.image-gallery-lightbox-4 img,
.image-gallery-lightbox-5 img{
    max-width:100%;
    width:100%;
    height:auto;
    border:solid 7px var(--main-color-one);
}
.image-gallery-lightbox-style{
    overflow:hidden;
    height:100%;
}
.image-gallery-lightbox-content{
    margin:auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color:#FFF;
    text-align:center;
    min-height:60px;
    padding:10px;
}
.image-gallery-lightbox-2:hover .image-content-box-style,
.image-gallery-lightbox-3:hover .image-content-box-style,
.image-gallery-lightbox-4:hover .image-content-box-style,
.image-gallery-lightbox-5:hover .image-content-box-style{
    background-color: var(--main-color-one-hover);
}
.image-gallery-lightbox-content:before{
    content:'';
    margin-bottom: auto;
}
.image-gallery-lightbox-content:after{
    content:'';
    margin-top: auto;
}

.image-gallery-lightbox-image {
    position: relative;
    overflow:hidden;
}
.image-gallery-lightbox-image a{
    overflow:hidden;
    display:block;
}

.image-gallery-lightbox-image img {
    display: block;
    width: 100%;
    height: auto;
}

.gallery-lightbox-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color:var(--main-color-one-hover);
    opacity:.9;
    overflow: hidden;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.image-gallery-lightbox-image:hover .gallery-lightbox-overlay {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.gallery-lightbox-overlay-text {
    color: #FFF;
    font-size:16px;
    font-weight:400;
    line-height:20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}
@media (max-width:991px) {
    .image-gallery-lightbox-1,
    .image-gallery-lightbox-2,
    .image-gallery-lightbox-3,
    .image-gallery-lightbox-4,
    .image-gallery-lightbox-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        width: 50%;
    }
}
@media (max-width:600px) {
    .image-gallery-lightbox-1,
    .image-gallery-lightbox-2,
    .image-gallery-lightbox-3,
    .image-gallery-lightbox-4,
    .image-gallery-lightbox-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        width: 100%;
    }
}
/* ==================================================*/
/*IMAGE GALLERY END*/
/* ==================================================*/

.quick-links ul,
.faculty-menu ul{
    list-style:none;
    padding:0px 0px 0px 0px;
    margin:0px 0px 0px 0px;
}
.quick-links ul li,
.faculty-menu ul li{
    font-size:16px;
    line-height:20px;
    color:#000;
    padding:7px 0px 7px 10px;
    margin:0px 0px 0px 0px;
    border-bottom:solid 1px #f0f0f0;
}
.quick-links ul li:last-child,
.faculty-menu ul li:last-child{
    border-bottom:none;
}
.quick-links ul li a,
.faculty-menu ul li a{
    color:#000;
}
.quick-links,
.widgets-area,
.side-bar-gallery,
.faculty-menu{
    background-color:#f6f8f9;
    border:solid 1px #f0f0f0;
    padding:20px;
    margin-bottom:20px;
}
.widgets-area:after,
.side-bar-gallery:after{
    content:'';
    display:block;
    clear:both;
}
.w-side-bar span.heading{
    font-size:24px;
    line-height:30px;
    font-weight:400;
    text-transform:uppercase;
    color:#333333;
    margin:0px 0px 10px 0px;
    padding:0px 0px 0px 0px;
    display:block;
}
.side-bar-gallery{
    text-align:center;
}
.side-bar-gallery .gallery-image{
    width:46%;
    height:auto;
    float:none;
    display:inline-block;
    margin-bottom:10px;
    margin-left:1%;
    margin-right:1%;
}
.side-bar-gallery .gallery-image img{
    width:100%;
    height:auto;
}
.side-bar-gallery span.heading{ 
    display:inline-block;
    width:100%;
    margin-bottom:10px;
}
@media (max-width:991px) {
    .inner-banner{
        height:200px;
    }
    .content-outer {
        display: block;
    }
    .weg-col-1, 
    .weg-col-2, 
    .weg-col-3, 
    .weg-col-4{
        width:100%;
        padding:20px;
        margin-bottom:10px;
    }
    .weg-col-1{
        padding:0px 0px;
    }
}

@media (max-width: 767px) {
    .weg-col-1.left-image img{
        float:none;
        margin-bottom:10px;
        margin-right:0px;
    }
    .weg-col-1.right-image img{
        float:none;
        margin-bottom:10px;
        margin-left:0px;
    }
    .slide_style_middle_right,
    .slide_style_middle_left {
        text-align:center;
    }
}
div.wpcf7-response-output{
    margin:0px !important;
}
.wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
    color: #D8000C;
    background-color: #FFBABA;
    border: 0;
    padding: 10px;
    font-size:14px;
}
.wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
    color: #4F8A10;
    background-color: #DFF2BF;
    border: 0;
    padding: 10px;
    font-size:14px;
}
div.wpcf7-mail-sent-ok:before,div.wpcf7-validation-errors:before {
    font: 26px/30px dashicons;
    margin-right: 16px;
    vertical-align: middle;
}
div.wpcf7-mail-sent-ok:before {
    content: "\f147";
}
div.wpcf7-validation-errors:before {
    content: "\f158";
}

.wpcf7-form-control-wrap{
    position:relative;
}
.wpcf7-not-valid-tip{
    position:absolute;
    background-color:#cc0404 !important;
    right:0px;
    bottom:-25px;
    padding:2px 7px !important;
    font-size:12px !important;
    color:#FFF !important;
    border-radius:4px;
    z-index:9;
}
.wpcf7-not-valid-tip:before{
    content:'\f0d8';
    font-family: 'FontAwesome';
    font-size:20px;
    top:-14px;
    right:6px;
    display:block;
    position:absolute;
    color:#cc0404;
}

/* ==================================================*/
/*PAGE LOADER START*/
/* ==================================================*/	
.page-loader-wrap {
    width:100%;
    height: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color:var(--main-color-one);
    z-index:99999999999;
}

.page-loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 40px;
    width: 80px;
    box-sizing: border-box;
}
.page-loader .page-loader-item {
    position: relative;
    float: left;
    height: 30px;
    width: 4px;
    margin: 0 2px;
    background-color: #ffffff;
}
.page-loader .page-loader-item:nth-child(1) {
    -webkit-animation: loader-item-1 2s linear infinite;
    animation: loader-item-1 2s linear infinite;
}
.page-loader .page-loader-item:nth-child(2) {
    -webkit-animation: loader-item-2 2s linear infinite;
    animation: loader-item-2 2s linear infinite;
}
.page-loader .page-loader-item:nth-child(3) {
    -webkit-animation: loader-item-3 2s linear infinite;
    animation: loader-item-3 2s linear infinite;
}
.page-loader .page-loader-item:nth-child(4) {
    -webkit-animation: loader-item-4 2s linear infinite;
    animation: loader-item-4 2s linear infinite;
}
.page-loader .page-loader-item:nth-child(5) {
    -webkit-animation: loader-item-5 2s linear infinite;
    animation: loader-item-5 2s linear infinite;
}
.page-loader .page-loader-item:nth-child(6) {
    -webkit-animation: loader-item-6 2s linear infinite;
    animation: loader-item-6 2s linear infinite;
}
.page-loader .page-loader-item:nth-child(7) {
    -webkit-animation: loader-item-7 2s linear infinite;
    animation: loader-item-7 2s linear infinite;
}
.page-loader .page-loader-item:nth-child(8) {
    -webkit-animation: loader-item-8 2s linear infinite;
    animation: loader-item-8 2s linear infinite;
}
.page-loader .page-loader-item:nth-child(9) {
    -webkit-animation: loader-item-9 2s linear infinite;
    animation: loader-item-9 2s linear infinite;
}
.page-loader .page-loader-item:nth-child(10) {
    -webkit-animation: loader-item-10 2s linear infinite;
    animation: loader-item-10 2s linear infinite;
}
.page-loader:after {
    content: 'Loading...';
    font-size:14px;
    font-family: "Arial";
    color: #ffffff;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    margin: auto;
}
@-webkit-keyframes loader-item-1 {
    1% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    11% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    21% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@keyframes loader-item-1 {
    1% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    11% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    21% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@-webkit-keyframes loader-item-2 {
    7% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    17% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    27% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@keyframes loader-item-2 {
    7% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    17% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    27% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@-webkit-keyframes loader-item-3 {
    13% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    23% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    33% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@keyframes loader-item-3 {
    13% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    23% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    33% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@-webkit-keyframes loader-item-4 {
    19% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    29% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    39% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@keyframes loader-item-4 {
    19% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    29% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    39% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@-webkit-keyframes loader-item-5 {
    25% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    35% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    45% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@keyframes loader-item-5 {
    25% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    35% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    45% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@-webkit-keyframes loader-item-6 {
    31% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    41% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    51% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@keyframes loader-item-6 {
    31% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    41% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    51% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@-webkit-keyframes loader-item-7 {
    37% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    47% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    57% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@keyframes loader-item-7 {
    37% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    47% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    57% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@-webkit-keyframes loader-item-8 {
    43% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    53% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    63% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@keyframes loader-item-8 {
    43% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    53% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    63% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@-webkit-keyframes loader-item-9 {
    49% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    59% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    69% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@keyframes loader-item-9 {
    49% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    59% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    69% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@-webkit-keyframes loader-item-10 {
    55% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    65% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    75% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
@keyframes loader-item-10 {
    55% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    65% {
        -webkit-transform: scaleY(1.4);
        transform: scaleY(1.4);
    }
    75% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
/* ==================================================*/
/*PAGE LOADER START*/
/* ==================================================*/

/* ==================================================*/
/*THEME COLOR START*/
/* ==================================================*/





/* ==================================================*/
/*THEME COLOR END*/
/* ==================================================*/

/*SLIDER VIEW ALL PAGE END*/


.grievance-redressal-form .wpcf7-not-valid-tip {
    /*    padding: 2px 7px !important;
        font-size: 15px !important;*/



    padding: 2px 7px !important;
    font-size: 12px !important;
    color: #f00 !important;
    background-color: transparent !important;

    position: initial;
    bottom: -25px;
}
.grievance-redressal-form .wpcf7-not-valid-tip:before{
    display: none;
}
.grievance-redressal-form label{
    font-size: 14px;
    font-weight: bold;
}


.caste-discrimination-form .wpcf7-not-valid-tip {
    /*    padding: 2px 7px !important;
        font-size: 15px !important;*/



    padding: 2px 7px !important;
    font-size: 12px !important;
    color: #f00 !important;
    background-color: transparent !important;

    position: initial;
    bottom: -25px;
}
.caste-discrimination-form .wpcf7-not-valid-tip:before{
    display: none;
}
.caste-discrimination-form label{
    font-size: 14px;
    font-weight: bold;
}

.bs-example {

    background-color: #f3f2f1;
    border-radius: 10px;
    margin: 15px;
    border: 1px solid #dee2e6;
}
.bs-example .nav-link{
    color: #a61124;
}
.bs-example .nav-tabs .nav-link.active {
    color: #fafafb;
    background-color: #a61124;
}

h1, h2, h3, h4, h5, h6{
    color: #a61124 ;
}
.content_section h1{
      color: #a61124 ;
}