@import url('https://fonts.googleapis.com/css?family=Russo+One&subset=latin-ext');

@font-face {
    font-family: 'Glyphicons Halflings';

    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

*{
    margin: 0;
    padding: 0;
}

root { 
    display: block;
}

body {
    overflow-x: hidden;
    color: #332566;
    font-family: 'Russo One', sans-serif;
    background: #fff;

}

::-moz-selection {
    background: #ddd;
    text-shadow: none;
}

::selection {
    background: #ddd;
    text-shadow: none;
}

input::-webkit-input-placeholder {
    color: #c8e38c !important;
}
input:-moz-placeholder {
    color: #c8e38c !important;
}
input::-moz-placeholder {
    color: #c8e38c !important;
}
input:-ms-input-placeholder {
    color: #c8e38c !important;
}

.header{
    position: absolute;
    top: 0px;
    z-index: 999;
    width: 100%;
}

.logo-container{
    width: 236px;
    display: block;
    margin: 0 auto;
    background: #fff;
    padding: 16px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(76,74,72,0.5);
    -moz-box-shadow: 0px 0px 20px 0px rgba(76,74,72,0.5);
    box-shadow: 0px 0px 20px 0px rgba(76,74,72,0.5);
}

img.logo{
    height: 148px;
    float: left;
}

.languages{
    float: right;
    display: block;
}


.languages > a{
    width: 100%;
    display: block;
    width: 40px;
    font-size: 16px;
    margin-bottom: 16px;
    background: #bcb8b1;
    padding: 8px 10px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    outline-width: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.languages > a.lang-active, .languages > a:hover{
    background: #fbb040;
}

.languages > a:last-of-type, .languages > a:last-child{
    margin: 0;
}

.section-title{
    margin: 0;
    padding: 32px 12px;
    background: #00a79d;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.gallery-item{
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border: 1px solid #fff;
}

.gallery-thumb{
    width: 100%;
    min-height: 300px;
    object-fit: cover;
    transition: transform .3s;
}

.gallery-thumb:hover{
    transform: scale(1.2);
}

.promo-section{
    padding: 6rem 0;
    background: #eee;
}

.promo-text{
    text-align: center;
    display: block;
    max-width: 80rem;
    margin: 0 auto;
    color: #111;
}

.promo-text p{
    font-size: 2rem;
}

.main-footer{
    background: #00a79d;
    padding: 36px 0px 48px 0px;
}

.main-footer *{
    color: #fff;
    text-align: center;
}

.contacts > a{
    display: block;
    margin: 4px 2px;
    background: #00a79d;
    padding: 16px;
    font-size: 18px;
    border: 2px solid #fff;
    text-decoration: none;
    outline-width: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.contacts > a:hover{
    color: #fff;
    background: #fbb040;
}

span.flag-icon{
    display: inline-block;
    width:  28px;
    line-height: 1em;
    margin-left: 6px;
    padding-top: 2px;
    vertical-align: top;
}

.flag-icon > img{
    width: 100%;
    border: 1px solid #fff;

}

.contact-link{
    text-align: center;
}

.contact-link > a{
   
    display: inline-block;
    padding: 10px 16px;
    font-size: 16px;
    background:  #fbb040;
    text-transform: uppercase;
    text-decoration: none;
    outline-width: 0;
    color: #fff;
}

video{
    max-width: 100%;
}

@media (min-width:460px){
    .gallery-item{
        float: left;
        width: 50%;
    }


}

@media (max-width:768px){

    .logo-container{
        width: 176px;
        padding: 4px;
    }
    
    img.logo{
        width: 112px;
        height: 112px;
        margin: 0px;
        padding: 2px;
        margin: 6px;
    }
    
    .languages{
        width: 44px;
        float: right;
        padding: 0px 6px;
    }
    
    .languages > a{
        display: block;
        
        width: 100%;
        padding: 5px;
        font-size: 14px;
        margin: 9px 0px;
    }
}



@media (min-width:768px){

    .gallery-item{
        width: 33.3%;
    }

    .contacts > a{
        display: inline-block;
        min-width: 300px;
    }

}


@media (min-width:992px){

    .gallery-item{
        width: 25%;
    }


}

@media (min-width:1200px){
    .gallery-item{
        width: 20%;
    }
}

@media (min-width:1600px){
    .gallery-item{
        width: 12.5%;
    }
}


