/************ Custom **************/

/**** Background Slider ****/
.cb-slideshow li {
    list-style-type: none;
}
.cb-slideshow,
.cb-slideshow:after { 
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0; 
}
/*.cb-slideshow:after { 
    content: '';
	background: transparent url(../../../../images/bg-slider/pattern.png) repeat top left; 
}*/
.cb-slideshow li span { 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 18s linear infinite 0s;
    -moz-animation: imageAnimation 18s linear infinite 0s;
    -o-animation: imageAnimation 18s linear infinite 0s;
    -ms-animation: imageAnimation 18s linear infinite 0s;
    animation: imageAnimation 18s linear infinite 0s; 
}
.cb-slideshow li div { 
    z-index: 1000;
    position: absolute;
    bottom: 30px;
    left: 0px;
    width: 100%;
    text-align: center;
    opacity: 0;
    color: #fff;
    -webkit-animation: titleAnimation 18s linear infinite 0s;
    -moz-animation: titleAnimation 18s linear infinite 0s;
    -o-animation: titleAnimation 18s linear infinite 0s;
    -ms-animation: titleAnimation 18s linear infinite 0s;
    animation: titleAnimation 18s linear infinite 0s; 
}
.cb-slideshow li div h3 { 
    font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
    font-size: 240px;
    padding: 0;
    line-height: 200px; 
}
.cb-slideshow li:nth-child(1) span { 
    background-image: url(../../../../images/bg-slider/1nn.jpg) 
}
.cb-slideshow li:nth-child(2) span { 
    background-image: url(../../../../images/bg-slider/2nn.jpg);
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s; 
}
.cb-slideshow li:nth-child(3) span { 
    background-image: url(../../../../images/bg-slider/3nn.jpg);
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s; 
}
/*.cb-slideshow li:nth-child(4) span { 
    background-image: url(../../../../images/bg-slider/4n.jpg);
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s; 
}
.cb-slideshow li:nth-child(5) span { 
    background-image: url(../../../../images/bg-slider/5n.jpg);
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s; 
}
/*.cb-slideshow li:nth-child(6) span { 
    background-image: url(../../../../images/bg-slider/6n.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s; 
}*/
.cb-slideshow li:nth-child(2) div { 
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s; 
}
.cb-slideshow li:nth-child(3) div { 
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s; 
}
/*.cb-slideshow li:nth-child(4) div { 
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s; 
}
.cb-slideshow li:nth-child(5) div { 
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s; 
}
.cb-slideshow li:nth-child(6) div { 
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s; 
}*/
/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation { 
    0% { opacity: 0;
    -webkit-animation-timing-function: ease-in; }
    8% { opacity: 1;
         -webkit-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    40% { opacity: 0 }
    100% { opacity: 0 }
}
@-moz-keyframes imageAnimation { 
    0% { opacity: 0;
    -moz-animation-timing-function: ease-in; }
    8% { opacity: 1;
         -moz-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    40% { opacity: 0 }
    100% { opacity: 0 }
}
@-o-keyframes imageAnimation { 
    0% { opacity: 0;
    -o-animation-timing-function: ease-in; }
    8% { opacity: 1;
         -o-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    40% { opacity: 0 }
    100% { opacity: 0 }
}
@-ms-keyframes imageAnimation { 
    0% { opacity: 0;
    -ms-animation-timing-function: ease-in; }
    8% { opacity: 1;
         -ms-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    40% { opacity: 0 }
    100% { opacity: 0 }
}
@keyframes imageAnimation { 
    0% { opacity: 0;
    animation-timing-function: ease-in; }
    8% { opacity: 1;
         animation-timing-function: ease-out; }
    17% { opacity: 1 }
    40% { opacity: 0 }
    100% { opacity: 0 }
}
/* Animation for the title */
@-webkit-keyframes titleAnimation { 
    0% { opacity: 0 }
    8% { opacity: 1 }
    17% { opacity: 1 }
    19% { opacity: 0 }
    100% { opacity: 0 }
}
@-moz-keyframes titleAnimation { 
    0% { opacity: 0 }
    8% { opacity: 1 }
    17% { opacity: 1 }
    19% { opacity: 0 }
    100% { opacity: 0 }
}
@-o-keyframes titleAnimation { 
    0% { opacity: 0 }
    8% { opacity: 1 }
    17% { opacity: 1 }
    19% { opacity: 0 }
    100% { opacity: 0 }
}
@-ms-keyframes titleAnimation { 
    0% { opacity: 0 }
    8% { opacity: 1 }
    17% { opacity: 1 }
    19% { opacity: 0 }
    100% { opacity: 0 }
}
@keyframes titleAnimation { 
    0% { opacity: 0 }
    8% { opacity: 1 }
    17% { opacity: 1 }
    19% { opacity: 0 }
    100% { opacity: 0 }
}
/* Show at least something when animations not supported */
.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}

@media screen and (max-width: 1140px) { 
    .cb-slideshow li div h3 { font-size: 140px }
}
@media screen and (max-width: 600px) { 
    .cb-slideshow li div h3 { font-size: 80px }
}

/**** END B Slider ****/

.vpf-topbar {
    background-color: rgba(255,2555,255,0.8);
    border-bottom: 1px solid #eeeeee;
    position: fixed;
    top: 0;
    left: 0;
    float: left;
    height: 100%;
    padding: 20px 60px;
}

html, .mm-page.mm-slideout, .vpf-wrapper {
    height: 100%;
}
#mainbody {
    padding-bottom: 0;
}

.vpf-topbar .nav > li {
    display: block;
    padding: 0;
}
.nav-stacked>li {
    float: none;
}
p.logo {
    margin-bottom: 45px;
}
.c-mainmenu li.menuitem {
    margin: 6px 0;
}
.c-mainmenu li.menuitem a {
    padding: 0;
  	font-size: 16px;
    letter-spacing: 0.5px;
  	-webkit-transition: all 0.2s ease-in-out;
  	-moz-transition: all 0.2s ease-in-out;
  	-o-transition: all 0.2s ease-in-out;
  	transition: all 0.2s ease-in-out;
}
.c-mainmenu li.menuitem a:hover,
.c-mainmenu li.menuitem a:active {
    text-decoration: underline;
  	-webkit-transition: all 0.2s ease-in-out;
  	-moz-transition: all 0.2s ease-in-out;
  	-o-transition: all 0.2s ease-in-out;
  	transition: all 0.2s ease-in-out;
}
.c-footer {
  	position: fixed;
    bottom: 30px;
}
div#mainbody {
    background: #fff;
}
.itemid-101 div#mainbody {
    background: transparent;
}
#mainbody .container .inner-container {
    padding-top: 10px;
}
.item-page {
    border-bottom: 1px solid #000 !important;
    padding-bottom: 20px;
}
.page-header > h1, .page-header > h2 {
    font-weight: bold;
}
.nav-pills>li.active>a, .nav-pills>li.active>a:hover, .nav-pills>li.active>a:focus {
    color: inherit;
    background-color: transparent;
}
.logo img {
    max-width: 210px;
}
.item-page hr {
	border-style: dashed;
  	border-color: #666;
}
#right-aside a {
    background: #141d26;
    text-align: center;
    padding: 18px 30px;
    display: block;
    color: #fff;
    font-size: 17px;
}
#right-aside a:hover {
    background: #444444;  
}
#right-aside a i {
    margin-right: 5px;
}
.cwgallery a.cimage.overlay {
    border: 1px solid #666;
    padding: 1px;
    margin: 3px;
    border-radius: 5px;
}
.cwgallery {
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
}
.mn-ph img {
    width: 15px;
    margin-right: 6px;
}
.c-mainmenu span.separator {
    color: #000 !important;
    padding: 0 !important;
}
.mm-menu {
    background: #141d26;
    color: rgba(255,255,255,.9);
}
#footer-toolbar {
    padding-top: 5px;
}
.btn-base, .feature-icon-hover .icon {
    color: #ffffff;
    background-color: #141d26;
    border-color: #141c26;
}
.btn-base.active, .btn-base.focus, .btn-base:active, .btn-base:focus, .btn-base:hover, .open > .dropdown-toggle.btn-base, .over .vp-dropmod-anchor > .btn-base, .feature-icon-hover:hover .icon, .feature-icon-hover:focus .icon {
    color: #141d26;
    background-color: #ffffff;
    border-color: #141d26;
}
div#fox-container-c235 .btn {
    background-image: none;
    background: #141d26;
    text-shadow: none;
}
div#fox-container-c235 .btn span {
    color: #ffffff;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.itemid-279 .item-page p {
    display: none;
}
ul.lang-inline {
    list-style-type: none;
}
.lang-inline li {
    float: left;
}
.lb-dataContainer span.lb-caption {
    display: none !important;
}

@media screen and (min-width: 1200px) { 
    .vpf-wrapper {
    	padding-left: 350px;
	}
  	.container {
    	width: 96%;
    	margin: auto;
	}
}

@media (min-width: 992px) {
  	.container {
    	width: 96%;
    	margin: auto;
	}
  	.vpf-wrapper {
    padding-left: 350px;
	}
  	.item-page {
    	max-width: 85%;
    	position: relative;
    	top: -70px;
    	background: #fff;
    	padding: 10px 20px;
	}
  	aside#right-aside {
    	top: 30px;
	}
  	p.logo {
    margin-bottom: 5px;
	}
}

@media (min-width: 1500px) {
  	.item-page {
    	max-width: 70%;
    	position: relative;
    	top: -70px;
    	background: #fff;
    	padding: 10px 20px;
	}
  	p.logo {
    	margin-bottom: 35px;
	}
}

@media (max-width: 767px) {
	
  	ul.cb-slideshow {
    		display: none;
	}
  	.vpf-topbar {
    	width: 100%;
	}
  	.mm-page.mm-slideout {
    	background-image: none;
  	}
  	.itemid-101 .mm-page.mm-slideout {
    	background-image: url(../../../../images/bg-slider/3n.jpg);
		background-size: cover;
	}
  	.c-footer {
    	bottom: 46px;
    	width: calc(100% - 150px);
    	margin: auto;
	}
  	.vpf-topbar {
    	position: relative;
    	height: auto;
      	padding: 5px 60px;
	}
 	.itemid-101 .vpf-topbar {
    	position: fixed;
    	height: 100%;
	}
  	.moduletable.c-mainmenu, .c-footer, .mob-map {
    	display: none;
  	}
  	.itemid-101 .moduletable.c-mainmenu, .itemid-101 .c-footer, .itemid-101 .mob-map {
    	display: block;
  	}
  	.vpfrs-cont {
    	width: 100%;
	}
  	p.logo {
    	margin-bottom: 10px;
	}
	.itemid-101 p.logo {
    	margin-bottom: 40px !important;
	}
  	.itemid-101 .offcanvas-toggle-container {
    	display: none  !important;
	}
	aside#right-aside {
    	margin-bottom: 30px;
	}
  	.c-mainmenu li.menuitem a {
    	font-size: 18px;
  	}
  
  .mob_footer_eot .c-footer{
        display: block !important;
        margin: 80px auto 0;
        width: 100%;
        position: relative;
  }
  
 a#tacon, 
  a#fbcon {
        font-size: 15px;
        padding: 3px 0 !important;
        text-align: left;
        color: #333333;
        background: none !important;
    }

}
  
 