/* ==================================================================
	CSS Reset
================================================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ==================================================================
	Basic Document Styles
================================================================== */

body {
    line-height: 1;
    min-width: 1005px;
    color: #fff;
    font-size: 14px;
    font-family: 'Open Sans Condensed', sans-serif;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    background: #000;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    white-space: normal;
    position: relative;
}

input,
select,
textarea {
    font-size: 16px;
    font-family: 'Open Sans Condensed', sans-serif;
    font-style: normal;
    font-weight: 300;
}


/* ==================================================================
	Typography
================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 100;
    margin-bottom: 10px;
    line-height: 1.2em;
}

h1 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 50px;
    font-weight: 200;
    position: relative;
    margin-bottom: 0px;
    /*text-transform: uppercase;*/
}

h2 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 24px;
    position: relative;
    font-weight: 200;
}

h3 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 20px;
    font-weight: 200;
}

h4 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 17px;
    font-weight: 200;
}

h5 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 15px;
    font-weight: 400;
}

h6 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

p {
    margin-bottom: 20px;
    font-family: 'Open Sans Condensed', sans-serif;
}

p.lead {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 19px;
    padding: 0;
    font-weight: 300;
}

.section-title {
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 20px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    color: #fff;
    font-weight: 100;
    position: relative;
}

*:focus {
    outline: 0;
}

a, a > * {
    color: rgba(255,233,70,1);
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a:hover, a > *:hover, a:focus {
    text-decoration: none;
    outline: 0;
}

em {
    font-style: italic;
}

strong {
    font-weight: 700;
}

.color-white {
    color: #fff;
}
.color-malina {
    color: #a60344;
}
.color-sand {
    color: #fdc689;
}
.color-tirkiz{
    color: #92dbea;
}
.color-yellow{
    color: rgba(255,233,70,1);
}
/* ==================================================================
	Basic Layout Styles
================================================================== */

section {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-justify {
    text-align: justify !important;
}

.font-thin {
    font-weight: 100 !important;
}

.font-light {
    font-weight: 400 !important;
}

.font-normal {
    font-weight: 400 !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-bold {
    font-weight: 700 !important;
}

.font-semibold {
    font-weight: 800 !important;
}

.font-ultrabold {
    font-weight: 900 !important;
}

.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.center {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.clear {
    clear: both;
}

.all-margin {
    margin: 20px !important;
}

.left-margin {
    margin-left: 20px !important;
}

.right-margin {
    margin-right: 20px !important;
}

.top-margin {
    margin-top: 20px !important;
}

.bottom-margin {
    margin-bottom: 20px !important;
}

.no-margin {
    margin: 0 !important;
}

.no-left-margin {
    margin-left: 0 !important;
}

.no-right-margin {
    margin-right: 0 !important;
}

.no-top-margin {
    margin-top: 0 !important;
}

.no-bottom-margin {
    margin-bottom: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.no-left-padding {
    padding-left: 0 !important;
}

.no-right-padding {
    padding-right: 0 !important;
}

.no-top-padding {
    padding-top: 0 !important;
}

.no-bottom-padding {
    padding-bottom: 0 !important;
}

.opacity-50{
    opacity: 0.5;
}

.opacity-60{
    opacity: 0.6;
}

.opacity-70{
    opacity: 0.7;
}

.opacity-80{
    opacity: 0.8;
}

.opacity-90{
    opacity: 0.9;
}

.opacity-100{
    opacity: 1;
}
/*.csstransitions .animated,
.animated {
    visibility: hidden;
}*/

/*.csstransitions .visible {
    visibility: visible;
}*/

.video-container {
    width: 100%;
    height: 100%;
}

.img-rounded {
    border-radius: 100%;
}

.img-center {
    display: block;
    margin: 0 auto;
}

.position-relative {
    position: relative;
}

/* ==================================================================
	Main Box
================================================================== */
.fullpage{
    position: fixed;
    bottom: 0;
    background-image: url(../images/pattern/bg_trans_70.png), url(../images/kvadrat_bg.png), url(../images/pattern/18.png);
    background-repeat: repeat, no-repeat, repeat;
    background-position: top left, bottom right, top left;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    /*display: none;*/
    visibility: hidden;
}

/* ==================================================================
	Preloader
================================================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-color: #ffffff;*/
    background: url(../images/splash_bg.png) repeat;
    z-index: 10001;
}

#loading-animation {
    width: 36px;
    height: 36px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(../images/spinner.gif);
    background-repeat: no-repeat;
    background-position: center;
    margin: -18px 0 0 -18px;
    opacity: 0.5;
}

/* ==================================================================
	Video Background
================================================================== */

#video_background {
    position: fixed;
    bottom: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
}

/* ==================================================================
	Header Styles
================================================================== */

.header{
    position: absolute;
    top: 0;
    width: 100%;
    min-width: 1105px;
    height: 70px;
    /*background: rgba(0,0,0,0.8);*/
    line-height: 50px;
    background: -moz-linear-gradient(top,  rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,1)), color-stop(100%,rgba(0,0,0,0)));
    background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
    background: -o-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
    background: -ms-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );

}
.logo{
    width: 149px;
    height: 151px;
    position: absolute;
    top: -60px;
    left: 10px;
    background: url("../images/kvadrat_logo.png") center center no-repeat;
    transition: all 0.3s ease-in-out 0s;
}
.logo:hover{
    transform: rotate(-45deg);
    transition: all 0.5s ease-in-out 0s;
}

/* ==================================================================
	Header Menu Style 1 - With Images
================================================================== */
.menu{
    height: 50px;
    min-width: 750px;
    width: 900px;
    float:left;
    margin-left: 150px;
}
ul.topnav {
    list-style: none;
    padding: 0 0px;
    margin: 10px 10px 0 0;
    float: left;
}
ul.topnav li {
    float: left;
    z-index:100;
    margin: 0px 10px 0px 10px;
    padding: 0 0px 1px 0;
    position: relative;
}
ul.topnav li a{
    font-size:25px;
    color: #fff;
    display: block;
    text-decoration: none;
    float: left;
    padding: 0px 0px 0px 0px;
    text-shadow: 1px 1px 0 #000;
}
ul.topnav li a.active{
    /*color: #92dbea;*/
    border-bottom: 1px solid #ffe946;
}
ul.topnav li a:hover{
    /*color: #FDC689;*/
    border-bottom: 1px solid #ffe946;
}
.has_child{
    background: url(../images/navarr.png) center bottom no-repeat;
}
ul.topnav li ul.subnav {
    list-style: none;
    position: absolute;
    left: 0px; top: 50px;
    margin: 0; padding: 10px 5px 10px 5px;
    display: none;
    height: 120px;
    background: rgba(255,255,255,1);
    z-index: 9999;
}
ul.topnav li ul.subnav li{
    margin: 0;
    padding: 0px 5px;
    width: 120px;
    height:120px;
    display: inline;
    position: relative;
    text-align: center;
}

ul.topnav li ul.subnav li a{
    text-align: center;
    font-size:13px;
    color: #000;
    opacity: 1;
    line-height: 20px;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
ul.topnav li ul.subnav li a span{
    /*background: rgba(255,255,255,0.9);*/
    margin-top: 5px;
    /*padding: 5px 5px;*/
}
ul.topnav li ul.subnav li a.active > span {
    color: rgba(253, 198, 137,1);
}
ul.topnav li ul.subnav li a:hover > span{
    color: rgba(253, 198, 137,1);
}
ul.topnav li ul.subnav li a div{
    text-align: center;
}
ul.topnav li ul.subnav li a div img{
    width: 120px;
	height: 100px;
    /*-webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;*/
    /*-webkit-box-shadow: 0 0 0 5px rgba(220,220,220,0.5);
    box-shadow: 0 0 0 5px rgba(220,220,220,0.5);*/
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
}
ul.topnav li ul.subnav li a.active > div img {
    -webkit-box-shadow: 0 0 0 4px rgba(253, 198, 137,0.8);
    box-shadow: 0 0 0 4px rgba(253, 198, 137,0.8);
}
ul.topnav li ul.subnav li a:hover > div img{
    -webkit-box-shadow: 0 0 0 4px rgba(253, 198, 137,0.8);
    box-shadow: 0 0 0 4px rgba(253, 198, 137,0.8);
}

/* ==================================================================
	Article Styles
================================================================== */
.article{
    width: 550px; height: 600px;
    position: absolute;
    /*top: 200px;*/
    left: 200px;
}
.article .article-post{
    padding: 20px;
}
.article .article-post h1{
    margin-bottom: 10px;
}
.article .article-post .article-text {
    font-size: 16px;
    line-height: 19px;
    overflow: auto;
    height: 400px;
}
.article .article-post .article-text ul{
    margin: 0px 0px 15px 0px;
}
.article .article-post .article-text ul li{
    padding: 0px 0px 0px 20px;
    margin: 7px 0px 7px 0px;
    height: 20px;
    line-height: 21px;
    background: url("../images/list_style_malina.png") left no-repeat;
}
.article .article-post .article-text ul.tirkiz li{
    background: url("../images/list_style_tirkiz.png") left no-repeat;
}
.article .article-post .article-text ul.sand li{
    background: url("../images/list_style_sand.png") left no-repeat;
}
.article .article-post .article-text ul.malina li{
    background: url("../images/list_style_malina.png") left no-repeat;
}
.left-box{
    width: 300px;
    height: 300px;
    position: absolute;
    top: 50%; margin-top: -220px;
    left: 0;
}
.left-box::before{
    content: "";
    width: 400px;
    height: 400px;
    position: absolute;
    top: inherit; margin-top: inherit;
    left: -250px;
    /*background: rgba(255,255,255,0.8);*/
    /*background: rgba(211,178,86,1);*/
    background: rgba(146,219,234,0.8);
    /*background: rgba(0,0,0,0.8);*/
    -ms-transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
    z-index: -1;
}
.left-box .left-box-in{
    padding: 10px 0px 0px 20px;
    color: #fff;
}
.left-box .left-box-in ul li a{
    color: #fff;
    text-shadow: 1px 1px 1px #999;
}
.left-box .left-box-in ul li a:hover{
    margin-left: 5px;
    color: #A60344;
    text-shadow: 1px 1px 1px #fff;
}

/* ==================================================================
	Contact Form Styles
================================================================== */
#msgholder{
    position: absolute;
    width: 270px;
    padding: 15px;
    background: rgba(0,0,0,0.8);
    bottom: 60px;
    right: -300px;
    z-index: 999999;
    /*display: none;*/
}
#msgholder h6{
    font-size: 15px;
    color: red;
    font-weight: 700;
}
#msgholder h6.alert{
    color: #ffd800;
}
#msgholder h6.success{
    color: #38ae35;
}
#msgholder ul li{
     font-size: 16px;
     line-height: 18px;
     margin: 0;
     padding: 0;
 }
#msgholder p{
    font-size: 16px;
    line-height: 18px;
    margin: 0;
    padding: 0;
}
.contact-page{
    width: 600px;
    height: 424px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -212px;
    margin-left: -300px;
}
.contact-page h1{
    font-size: 50px;
    margin-bottom: 20px;
}
.contact-in{

}
.contact_form{

}
.contact-fields{
    width: 60%;
    float: left;
    font-size: 16px;
    font-family: 'Open Sans Condensed', sans-serif;
}
.contact-fields h3{
    font-size: 20px;
    font-weight: 300;
    margin: 0;
    padding: 0;
}
.form-right{
    margin-left: 3%;
    width: 37%;
}
.contact-fields p{
    margin:0;
    padding: 0;
}
.contact_form .field{
    position: relative;
    margin-bottom: 15px;
}
.contact_form .field .captcha_img{
    position: absolute;
    right: 5px;
    top: 4px;
}
.contact_form .field input{
    font-family: 'Open Sans Condensed', sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    width: 91%;
    height: 30px;
    line-height: 30px;
    padding: 0px 10px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.8);
}
.contact_form .field textarea{
    font-family: 'Open Sans Condensed', sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    width: 91%;
    max-width: 91%;
    height: 60px;
    max-height: 60px;
    padding: 10px 10px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.8);
}
.contact_form button{
    color: #fff;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 16px;
    font-weight: 400;
    max-width: 100%;
    height: 40px;
    padding: 5px 20px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.8);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.contact_form button:hover{
    border: 1px solid rgba(255, 233, 70,0.8);
    cursor: pointer;
    color: rgba(255, 233, 70,0.8);
}
.contact_form .field textarea:focus, .contact_form .field input:focus{
    outline: 0;
    border: 1px solid rgba(255, 233, 70,0.8);
}
::-webkit-input-placeholder {
    color: #999;
}
:-moz-placeholder {
    color: #999;
}
::-moz-placeholder {
    color: #999;
}
:-ms-input-placeholder {
    color: #999;
}

/* ==================================================================
	Article Gallery Styles
================================================================== */
.article-gallery{
    width: 300px;
    height: 210px;
    padding: 10px;
    /*background: rgba(255,255,255,1);*/
    position: absolute;
    top: 50%; margin-top: -150px;
    left: 1000px;
}
.article-gallery::before{
    content: "";
    width: 330px;
    height: 230px;
    /*background: rgba(166,3,68,0.5);*/
    background: rgba(255,255,255,0.9);
    position: absolute;
    top: 50%; margin-top: -100px;
    left: 1000; margin-left: -25px;
    ms-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);

}
.article-gallery .gallery {
    width:300px;
    float:left;
    margin:0 40px 0 0}

.article-gallery .gallery_images {
    overflow:hidden}

.article-gallery .gallery_images,
.article-gallery .gallery_image_item,
.article-gallery .gallery_image_item a {
    width:300px;
    height:210px;
}
.gallery_image_item {
    position:relative;
}
.gallery_image_item a {
    display:block;
    position:absolute;
    top:0;
    right:0;
    z-index:2;
    color:#fff;
}
.gallery_image_item a span {
    display:block;
    width:270px;
    height:20px;
    line-height:20px;
    padding:15px;
    position:absolute;
    top: 0;
    font-size:12px;
    text-align: right;
    color:#fff;
}

.gallery_thumbs {
    width: 300px;
    height:42px;
    position:absolute;
    bottom: 10px;
    background:#fff;
    padding:5px 0;
    z-index: 9999;

}
.gallery_thumbs a {
    display:block;
    float:left;
    width:60px;
    height:42px;
    margin:0 1px;
    border:1px solid #141414;
    opacity:0.6;
    filter:alpha(opacity=60);
}
.gallery_thumbs a img{
    width: inherit;
}

.gallery_thumbs a.selected {
    border:1px solid #999;
    opacity:1;
    filter:alpha(opacity=100);}

.gallery_thumbs .prev,
.gallery_thumbs .next {
    display:block;
    width:15px;
    height:77px;
    position:absolute;
    top:12px;
    z-index:2;
    background:url(images/arrows_gallery.png) 0 center no-repeat;
    border:none}

.gallery_thumbs .prev {
    left:1px}
.gallery_thumbs .next {
    right:1px;
    background-position:-15px center}

.gallery_thumbs .prev:hover {
    background-position:-30px center}
.gallery_thumbs .next:hover {
    background-position:-45px center}

.gallery_thumbs .prev.disabled,
.gallery_thumbs .next.disabled {
    cursor:default;
    background:none}

/* ==================================================================
	BIOGRAPHY PLUGIN
================================================================== */
.biography{
    width:700px;
    height: 400px;
    position:absolute;
    top: 50%;
    left: 50%;
    margin-top: -200px;
    margin-left: -350px;
}
.biography h1 {
    font-size: 50px;
}
.biography_item {
    width:700px;
    height:375px;
    float:left;
    margin: 0 10px;
}
#biography {
    margin:15px 0 0 0;
}
.biography_portret{
    float: left;
    margin: 10px 10px 0px 0px;
}
.biography_portret img{
    border: 5px solid rgba(255,255,255,0.7);
    /*-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 1);*/
}
.biography_portret .biography_social{
    margin: 0px 0px 0px 0px;
}
.biography_portret .biography_social ul{
    margin: 0;
    padding: 0;
}
.biography_portret .biography_social ul li{
    list-style: none;
    display: inline;
    margin-right: 10px;
}
.biography_portret .biography_social ul li a i{
    font-size: 18px;
    color: #ccc !important;
}
.biography_portret .biography_social ul li a#linkedin i{
    font-size: 20px;
}
.biography_portret .biography_social ul li a i:hover{
    color: #fff !important;
}
.biography_text{
    float: left;
    width: 480px;
    height: 310px;
    overflow: auto;
    margin-top: 10px;
}
.biography_paragraph{
    padding: 10px 10px 30px 5px;
    margin: 0;
    line-height: 25px;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 24px;
    /*color: #ffe946;*/
}
.biography_text p{
    padding: 0px 10px 0px 5px;
    margin: 0;
    line-height: 25px;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 16px;
}
.biography_text h3{
    padding: 10px 10px 10px 5px;
    margin: 15px 0 0 0;
    line-height: 25px;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 24px;
    /*color: #ffe946;*/
}

.biography .prev {
    position: absolute;
    top: 210px;
    left: -60px;
    background: url(../images/panel_left.png) center center no-repeat;
    width: 38px;
    height: 38px;
    text-align: center;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}
.biography .prev:hover {
    background: url(../images/panel_left_over.png) center center no-repeat;
}
.biography .next {
    position: absolute;
    background: url(../images/panel_right.png) center center no-repeat;
    width: 38px;
    height: 38px;
    text-align: center;
    right: -55px;
    top: 210px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}
.biography .next:hover {
    background: url(../images/panel_right_over.png) center center no-repeat;
}

.biography .prev.disabled,
.biography .next.disabled {
    opacity:0.3;
    filter:alpha(opacity=30);
    cursor:default;
}

/* ==================================================================
	Right Plugin Styles
================================================================== */
.bottom_plugin{
    width:100%;
    height: 220px;
    /*background: rgba(255,255,255,1);*/
    position: fixed;
    bottom: 110px;
    left: 0px;
}
.bottom_plugin h2{
    padding: 0 0 0 15px;
    font-size: 50px;
}
.bottom_gallery {
    width:100%;
    position:relative;
}
.bottom_gallery_item {
    width: 252px;
    height: 168px;
    text-align: center;
    float: left;
    margin: 0px 12px;
    font-size: 13px;
    position: relative;
    padding: 10px 0 10px 0;
}
.bottom_gallery_image {
    width: 252px;
    height: 168px;
    float:left;
    position: relative;
}
.bottom_gallery_image .gall-title{
    font-size: 25px;
    position: absolute;
    bottom: 0px;
    left:0;
    padding: 0px 10px 5px 10px;
    background: rgba(0,0,0, 0.8);
}
.bottom_gallery_image img {
    width: 252px;
    -webkit-box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
    opacity: 0.8;
}
.bottom_gallery_image a:hover img {
    /*-webkit-box-shadow: 0 0 20px 0 rgba(166,3,68,0.8);
    box-shadow: 0 0 20px 0 rgba(166,3,68,0.8);*/
    -webkit-box-shadow: 0 0 0 4px rgba(255, 255, 255,1);
    box-shadow: 0 0 0 4px rgba(255, 255, 255,1);
    opacity: 1;
}
.bottom_gallery .prev {
    position: absolute;
    top: -56px;
    left: 350px;
    background: url(../images/panel_left.png) center center no-repeat;
    width: 38px;
    height: 38px;
    text-align: center;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}
.bottom_gallery .prev:hover {
    background: url(../images/panel_left_over.png) center center no-repeat;
}
.bottom_gallery .next {
    position: absolute;
    background: url(../images/panel_right.png) center center no-repeat;
    width: 38px;
    height: 38px;
    text-align: center;
    left: 400px;
    top: -56px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}
.bottom_gallery .next:hover {
    background: url(../images/panel_right_over.png) center center no-repeat;
}
.bottom_gallery .prev.disabled,
.bottom_gallery .next.disabled {
    opacity:0.3;
    filter:alpha(opacity=30);
    cursor:default;
}
/* ==================================================================
	Sound Controls
================================================================== */
.sound-controls{
    margin: 0 20px;
    color: rgba(204,204,204,1);
    cursor: pointer;
    font-family: Arial, Helvetica, Verdana, Tahoma;
    font-size: 11px;
}
.sound-controls i{
    margin-left: 5px;
    color: rgba(204,204,204,1);
}
.sound-controls:hover{
    color: rgba(255, 233, 70,1);
}
.sound-controls:hover i{
    color: rgba(255, 233, 70,1);
}

/* ==================================================================
	Footer Styles
================================================================== */

.footer{
    width: 100%;
    min-width: 800px;
    height: 70px;
    line-height: 100px;
    /*background: rgba(0,0,0,0.80);*/
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,1)));
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
    background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
    position: fixed;
    bottom: 0px;
}
ul.language{
    font-size: 13px;
    list-style: none;
    padding: 0;
    margin:  0;
    display: inline;
    float:left;
}
ul.language li{
    list-style: none;
    padding: 0;
    margin:  0 10px;
    display: inline;
    font-family: Arial, Helvetica, Verdana, Tahoma;
    font-size: 11px;
}
ul.language li:first-child{
    margin: 0 10px 0 20px;
}
ul.language li a{
    color:#fff;
    opacity: 0.5;
}
ul.language li a:hover{
    color:#fdc689;
    opacity: 1;
}
ul.language li.active{
    opacity: 1;
    padding-bottom: 13px;
    background: url(../images/navarr.png) no-repeat center bottom;
}
ul.language li img{
    width: 18px;
    vertical-align: middle;
    margin-top: -1px;
}
.f_powered{
    color: rgba(204, 204, 204, 1);
    width: 475px;
    height: 70px;
    line-height: 100px;
    float: right;
    font-size: 11px;
    font-family: Arial, Helvetica, Verdana, Tahoma;
    text-align: right;
    margin-right: 20px;
}
.f_powered a{
    color: rgba(204, 204, 204, 1);
}
.f_powered a:hover{
    color: #ffe946;
}
.f_powered span.privacy-policy{
    margin-right: 30px;
}
.f_powered span.privacy-policy a{
    color: rgba(204, 204, 204, 1);
}
.f_powered span.privacy-policy a:hover{
    color: #ffe946;
}
.f_powered span.impressum{
    margin-right: 30px;
}
.f_powered span.impressum a{
    color: rgba(204, 204, 204, 1);
}
.f_powered span.impressum a:hover{
    color: #ffe946;
}
.f_powered span.copyright{
    margin-right: 30px;
}
.f_powered span.copyright a{
    color: rgba(204, 204, 204, 1);
}
.f_powered span.copyright a:hover{
    color: #ffe946;
}
/* ==================================================================
 INTRO PAGE
================================================================== */
.intro{
    position: fixed;
    bottom: 0;
    background: url(../images/splash_bg.png) repeat;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
}
.intro_logo{
    width: 350px;
    height: 350px;
    position: absolute;
    top: 50%; margin-top: -185px;
    left: 50%; margin-left: -185px;
    background: rgba(0,0,0,0.1) url(../images/logo1.png) center center no-repeat;
    -webkit-border-radius: 185px;
    -moz-border-radius: 185px;
    border-radius: 185px;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    border: 10px solid rgba(255,255,255,0.2);
    -webkit-box-shadow: 0 0 0 0px rgba(255,255,255,0.2);
    box-shadow: 0 0 0 0px rgba(255,255,255,0.2);
}
.intro_logo:hover{
    background: rgba(0,0,0,0.95) url(../images/logo1.png) center center no-repeat;
    border: 10px solid rgba(255,233,70,0.7);
    -webkit-box-shadow: 0 0 70px 10px rgba(255,233,70,0.5);
    box-shadow: 0 0 70px 10px rgba(255,233,70,0.5);
}
.intro_logo .enter-text{
    color: #ccc;
    font-size: 25px;
    position: absolute;
    bottom: 80px;
    left: 50%;
    margin-left: -30px;
}
.intro_lang_en, .intro_lang_hr{
    color: #fff;
    text-align: center;
    line-height: 100px;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%; margin-top: -50px;
    left: 50%; margin-left: -280px;
    background: rgba(0,0,0,0.4);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.intro_lang_hr{
    top: 50%; margin-top: -50px;
    left: 50%; margin-left: 180px;
}
.intro_lang_en:hover, .intro_lang_hr:hover{
    background: rgba(166,3,68,0.9);
    -webkit-box-shadow: 0 0 0 5px rgba(255,255,255,0.6);
    box-shadow: 0 0 0 5px rgba(255,255,255,0.6);
}

/* ==================================================================
 INTRO PAGE LANG MENU
================================================================== */
.intro{
    position: fixed;
    bottom: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
}
.intro a.intro-lang{
    color: #fff;
    font-weight: 500;
    text-shadow: 0 0 1px #000000;
    text-align: center;
    line-height: 80px;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    /*background: rgba(0,0,0,0.4);*/
    background: rgba(146, 219, 234,0.8);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -webkit-box-shadow: 0 0 0 5px rgba(255,255,255,0.2);
    box-shadow: 0 0 0 5px rgba(255,255,255,0.2);
}
.intro a.intro-lang:hover{
    background: rgba(253, 198, 137,0.8);
    -webkit-box-shadow: 0 0 0 10px rgba(255,255,255,0.2);
    box-shadow: 0 0 0 10px rgba(255,255,255,0.2);
}
.position-0{
    margin-top: -23px;
    margin-left: -239px;
}
.position-1{
    margin-top: -158px;
    margin-left: -201px;
}
.position-2{
    margin-top: -229px;
    margin-left: -106px;
}
.position-3{
    margin-top: -234px;
    margin-left: 10px;
}
.position-4{
    margin-top: -173px;
    margin-left: 111px;
}
.position-5{
    margin-top: -63px;
    margin-left: 159px;
}
.position-6{
    margin-top: 55px;
    margin-left: 137px;
}
.position-7{
    margin-top: 137px;
    margin-left: 52px;
}
.position-8{
    margin-top: 160px;
    margin-left: -69px;
}
.position-9{
    margin-top: 102px;
    margin-left: -181px;
}
/*==========================================
    Facebook Like Box
==========================================*/
.fb-slide-box {
    background: url(../images/facebook-slide-icon.png) no-repeat scroll left 0px rgba(0, 0, 0, 0) !important;
    display: block;
    float: right;
    height: 200px;
    padding: 0 0px 0 40px;
    /*width: 235px;*/
	width: 280px;
    z-index: 99999;
    position: fixed;
    right: -280px;
    top: 20%;
    /*margin-top: -100px;*/
}
.fb-slide-box:hover {
    background: url(../images/facebook-slide-icon-hover.png) no-repeat scroll left 0px rgba(0, 0, 0, 0) !important;
}
.fb-slide-box div {
    border: none;
    position: relative;
    display: block;
    background: rgba(0,0,0,0.6);
}
/*==========================================
    Coockie Law
==========================================*/
#accept_cookies {
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    position: fixed;
    padding: 0 0 10px 0;
    width: 100%;
    text-align: center;
    left: 0;
    color: rgb(255, 255, 255);
    font-family: 'Open Sans', sans-serif;
    bottom: 0px;
}
.euinner {
    padding: 15px;
    width: 98%;
    margin: 0 auto;
}
.notice-txt{
    width: 100%;
    float:left;
    font-size: 12px;
    text-align: center;
}
.notice-btn{
    /*width: 15%;*/
    float:left;
}
#accept_cookies button {
    color: rgb(255, 255, 255);
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 400;
    width: 40px;
    height: 30px;
    margin-left: 20px;
    /*padding: 10px 20px;*/
    cursor: pointer;
    background: rgba(0, 0, 0, 0);
    border: 2px solid rgba(255, 255, 255, 0.5);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
#accept_cookies button:hover {
    color: rgb(255, 233, 70);
    background: rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 233, 70, 0.8);
}
/*==========================================
    Intro test
==========================================*/
/*.test{
    color: #fff;
    text-align: center;
    line-height: 80px;
    width: 80px;
    height: 80px;
    position: absolute;
    background: rgba(0,0,0,0.4);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -webkit-box-shadow: 0 0 0 10px rgba(255,255,255,0.2);
    box-shadow: 0 0 0 10px rgba(255,255,255,0.2);
}
.circle-1{
    top: 0px;
    left: 0px;
}
.circle-1{
    top: 100px;
    left: 0px;
}
.circle-2{
    top: 200px;
    left: 0px;
}
.circle-3{
    top: 300px;
    left: 0px;
}
.circle-4{
    top: 400px;
    left: 0px;
}
.circle-5{
    top: 500px;
    left: 0px;
}
.circle-6{
    top: 600px;
    left: 0px;
}
.circle-7{
    top: 700px;
    left: 0px;
}
.circle-8{
    top: 800px;
    left: 0px;
}
.circle-9{
    top: 900px;
    left: 0px;
}*/