@font-face {
	font-family: 'fontawesome';
	src: url('../fonts/fontawesome/fontawesome.eot?-ulzwqn');
	src: url('../fonts/fontawesome/fontawesome.eot?#iefix-ulzwqn') format('embedded-opentype'),
		 url('../fonts/fontawesome/fontawesome.woff?-ulzwqn') format('woff'),
		 url('../fonts/fontawesome/fontawesome.ttf?-ulzwqn') format('truetype'),
		 url('../fonts/fontawesome/fontawesome.svg?-ulzwqn#fontawesome') format('svg');
	font-weight: normal;
	font-style: normal;
}

::selection {
    background: #008da4;
    color: #fff;
}
::-moz-selection {
	background: #008da4; /* Firefox */
    color: #fff;
}
::-webkit-selection {
	background: #008da4; /* Safari */
    color: #fff;
}
::-o-selection {
	background: #008da4; /* Opera */
    color: #fff;
}

::-webkit-scrollbar {
    width:5px;
    height:5px
}

::-webkit-scrollbar-track-piece {
    background-color:#2e2f31;
    -webkit-border-radius:0px;
    -moz-border-radius:0px;
    -ms-border-radius:0px;
    -o-border-radius:0px;
    border-radius:0px;
}

::-webkit-scrollbar-thumb:vertical, ::-webkit-scrollbar-thumb:horizontal {
    height:5px;
    background-color:#008da4;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    -ms-border-radius:3px;
    -o-border-radius:3px;
    border-radius:3px;
}

::-webkit-scrollbar-thumb:vertical:hover {
    background-color:#02acc7
}

::-webkit-scrollbar-thumb:horizontal:hover {
    overflow:hidden;
}

body {
	color: #2e2f31;
	font-size: 16px;
	line-height: 1.25;
	font-family: 'Arimo', Helvetica, Arial, sans-serif;
    min-height: 100%;
    margin: 0;
    padding: 0;
    background: #2e2f31;
    overflow: hidden;
}

.white-body {
    background: #fff;
}

@media (max-height: 600px) {
    .y-hidden {
        overflow-y: hidden;
    }
}

a, button, .hover-overlay, .icon-hashtag > .hashtag-friends, .event-body, .close-event, input, textarea {
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
}

a, a:visited, a:focus {
    color: #008da4;
    text-decoration: none;
}

a:hover {
    color: #f44336;
    text-decoration: none;
}

.clr { 
    clear: both;
}

.col-center {
    float: none;
    margin: 0 auto;
}

.fullwidth {
    width: 100%;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

@media (min-width: 640.1px) {
    .visible-640 {
        display: none;
    }
}

.wrapper {
    opacity: 0;
}

.loader {
    height: 10px;
    background-color: #008da4;
    position: fixed;
    z-index: 100;
}

.wrapper {
    transition: 1s ease-in-out;
    -webkit-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -ms-transition: 1s ease-in-out;
}

.container, .fw-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 0.5em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box; 
}

@media (min-width: 768px) {
   .container {
        width: 750px;
        margin: 0 auto;
        padding: 0;
    } 
}

@media (min-width: 992px) {
   .container {
        width: 970px;
    } 
}

@media (min-width: 1200px) {
   .container {
        width: 1170px;
    } 
}

.nav-trigger {
    position: fixed;
    z-index: 70;
    top: 2.2em;
    right: 0;
    background: #008da4;
    width: 100px;
    padding-left: 1em;
    height: 30px;
    line-height: 30px;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.nav-trigger .menu-text {
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
}

.nav-trigger .menu-icon {
    /* this span is the central line of the menu icon */
    display: inline-block;
    position: absolute;
    top: 50%;
    bottom: auto;
    width: 18px;
    height: 2px;
    background-color: white;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    left: auto;
    right: 1em;
    -webkit-transform: translateX(0) translateY(-50%);
    -moz-transform: translateX(0) translateY(-50%);
    -ms-transform: translateX(0) translateY(-50%);
    -o-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
    /* these are the upper and lower lines in the menu icon */
}

.nav-trigger .menu-icon::before, .nav-trigger .menu-icon:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: white;
    right: 0;
    -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
    -moz-transition: -moz-transform .3s, top .3s, background-color 0s;
    transition: transform .3s, top .3s, background-color 0s;
}

.nav-trigger .menu-icon::before {
    top: -5px;
}

.nav-trigger .menu-icon::after {
    top: 5px;
}

.nav-trigger .menu-icon.is-clicked {
    background-color: rgba(255, 255, 255, 0);
}

.nav-trigger .menu-icon.is-clicked::before, .nav-trigger .menu-icon.is-clicked::after {
    background-color: white;
}

.nav-trigger .menu-icon.is-clicked::before {
    top: 0;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.nav-trigger .menu-icon.is-clicked::after {
    top: 0;
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
}

@media (min-width: 768px) {
    .nav-trigger {
        right: 0.6em;
        background: rgba(0,0,0,0.25);
    }
}

.main-nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 47, 49, 0.96);
    z-index: 2;
    text-align: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.main-nav > ul {
    padding: 0;
    width: 100%;
    list-style: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    .main-nav {
        max-width: 300px;
        border-left: 2px solid #008da4;
        background: rgba(46, 47, 49, 1);
    }
}

@media (max-height: 380px) {
    .main-nav > ul a {
        font-size: 0.9em !important;
    }
    
    .main-nav > ul {
        margin-top: -0.5em;
    }
}

.main-nav > ul li {
    font-size: 1.4em;
    margin: .2em 0;
    text-transform: capitalize;
}

.main-nav > ul a {
    display: inline-block;
    padding: .4em 1em;
    border-radius: 0.25em;
    font-weight: bold;
    font-size: 1.1em;
}

.no-touch .main-nav > ul a:hover {
    background-color: #f44336;
}

.main-nav > .menu-socials {
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    padding: .8em 0 .8em;
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: 1.7em;
}

.main-nav > .menu-socials a {
    color: #fff;
    margin: 0 0.1em;
}

.main-nav > .menu-socials a:hover {
    color: #f44336;
}

@media (min-width: 768px) {
    .main-nav > .menu-socials {
        padding: 2.4em 0 .8em;
    }
}

.main-nav.is-visible {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.choose-lang {
    position: absolute;
    top: 0;
    left: 5%;
    z-index: 70;
}

.choose-lang a {
    background: #008da4;
    padding: 0.25em;
    padding-right: 0.75em;
    float: left;
    font-size: 1em;
    color: #fff;
    transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    margin-top: -0.25em;
}

.choose-lang a.active {
    background: #fff;
    color: #008da4;
    cursor: default;
    margin-top: 0.25em;
    padding: 0.25em 0.5em;
}

.choose-lang a:hover {
    margin-top: 0em;
}

.choose-lang a:hover.active {
    margin-top: 0.25em;
}

.home-intro {
    position: relative;
    min-height: 600px;
    min-height: 100vh;
    background: transparent;
}

.overlay {
    background: rgba(0,0,0,0.7);
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.friends-bg {
    position: absolute;
    width: 100%;
    height: 600px;
    height: 100vh;
    background: url("../images/friends-bg.jpg") no-repeat center top;
    z-index: -2;
}

@media (orientation: portrait) {
    .friends-bg {
        background: url("../images/friends-bg.jpg") no-repeat 25% top;
    }
}

.friends-bg {
    background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -webkit-background-size: cover;
}

.friends-logo {
    width: 25%;
    position: relative;
    top: 50px;
    padding: 2em;
    text-align: center;
}

.friends-logo img {
    width: 70%;
}

@media (max-width: 1199.9px) {    
    .friends-logo {
        width: 35%;
    }
}

@media (max-width: 991.9px) {    
    .friends-logo {
        width: 40%;
    }
}

@media (max-width: 767.9px) {    
    .friends-logo {
        width: 50%;
    }
}

@media (max-width: 480px) {    
    .friends-logo {
        width: 80%;
    }
}

@media (max-height: 270px) {
    .friends-logo {
        top: 300px;
        top: 50vh;
        transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -webkit-padding: 0 2em;
    }
}

.scroll-down {
    text-transform: uppercase;
    font-size: 2em;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 1.33em;
    width: 100%;
}

.scroll-down a {
    color: #fff;
}

.scroll-down > a i:before {
    border-radius: 50%;
    border: 2px solid #fff;
    padding: .1em .3em;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
}

.scroll-down > a:hover i:before {
    border-color: #008da4;
    color: #008da4;
}

.main-content {
    position: relative;
    z-index: 1;
}

.main-block-2e {
    background: #000 !important;
}

.main-block-1 {
    background: url("../images/friends-bg-1.jpg") no-repeat center top;
}

.main-block-2 {
    background: url("../images/friends-bg-2.jpg") no-repeat center top;
}

.main-block-3 {
    background: url("../images/friends-bg-3.jpg") no-repeat center top;
}

.main-block-4 {
    background: url("../images/friends-bg-4.jpg") no-repeat center top;
}

@media (orientation: portrait) {
    .main-block-1 {
        background: url("../images/friends-bg-1.jpg") no-repeat 60% top;
    }
}

.main-block {
    position: relative;
    min-height: 600px;
    min-height: 100vh;
    background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -webkit-background-size: cover;
    z-index: 1;
}

@media (max-height: 400px) {
    .main-block {
        min-height: 400px;
    }
    
    .scroll-down {
        display: none;
    }
}

@media (orientation: portrait) {
    .scroll-down {
        bottom: 3.33em;
    }
    
    .menu-socials {
        padding-bottom: 2em !important;
    }
}

.main-block-24 {
    background: #242424 !important;
}

.main-block-info {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.info-text {
    margin: 0 auto;
    width: 70%;
    text-align: center;
    font-size: 1.7em;
}

.home-contacts {
    width: 90%;
}

.address, .nums-socials {
    width: 100%;
    text-align: center;
    font-size: 1.7em;
}

.address {
    padding-bottom: 2em;
}

@media (min-width: 768px) {
    .nums-socials span {
        letter-spacing: .1em;
    }
}

.nums-socials a {
    position: relative;
    top: 0.2em;
    padding: 0 0.1em;
    font-size: 1.2em;
}

@media (max-width: 991.9px) {
    .info-text {
        width: 80%;
        font-size: 1.6em;
    }
    
    .address, .nums-socials {
        font-size: 1.6em;
    }
}

@media (max-width: 767.9px) {
    .info-text {
        width: 90%;
        font-size: 1.5em;
    }
    
    .address, .nums-socials {
        font-size: 1.5em;
    }
}

.phone-num a {
    color: #fff;
}

/* PAGES */

.page-intro {
    position: relative;
    min-height: 300px;
    min-height: 40vh;
    background: transparent;
}

.page-overlay {
    background: rgba(0,0,0,0.7);
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 300px;
    height: 40vh;
}

.friends-page-bg {
    position: absolute;
    width: 100%;
    height: 300px;
    height: 40vh;
    background: url("../images/friends-bg-5.jpg") no-repeat left bottom;
    z-index: -2;
}

@media (orientation: portrait) {
    .friends-page-bg {
        background: url("../images/friends-bg-5.jpg") no-repeat center bottom;
    }
}

.friends-page-bg {
    background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -webkit-background-size: cover;
}

.page-intro > .friends-logo {
    top: 150px;
    top: 20vh;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    padding: 0;
}

@media (max-height: 530px) {
    .page-intro, .friends-page-bg, .page-overlay {
        height: 200px;
        min-height: 200px;
    }
    
    .page-intro > .friends-logo {
        top: 0px;
        top: 0vh;
        transform: translateY(-0%);
        -o-transform: translateY(-0%);
        -ms-transform: translateY(-0%);
        -moz-transform: translateY(-0%);
        -webkit-transform: translateY(-0%);
        padding: 15px;
    }
    
    .page-intro > .friends-logo img {
        height: 170px;
        width: auto;
    }
}

.page-container {
    background: #edefed;
    padding-bottom: 3em;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    min-height: calc(60vh - 62px);
    min-height: -o-calc(60vh - 62px);
    min-height: -moz-calc(60vh - 62px);
    min-height: -ms-calc(60vh - 62px);
    min-height: -webkit-calc(60vh - 62px);
    
}

.bg-fixed {
    background-attachment: fixed;
    -o-background-attachment: fixed;
    -ms-background-attachment: fixed;
    -moz-background-attachment: fixed;
    -webkit-background-attachment: fixed;
}

.page-block {
    padding-top: 2em;
    text-align: center;
}

.page-title {
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    margin-bottom: 1em;
    display: inline-block;
    background: #008da4;
    padding: 0.3em 1em;
    border-radius: 0.6em;
    margin-top: 1.5em;
}

@media (max-width: 767.9px) {
    .page-title {
        font-size: 1.5em;
    }
}

/* ABOUT */

.about-us-left {
    width: 44%;
    padding: 1em;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}

.about-us-left > h2 {
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    margin-bottom: 1em;
    display: inline-block;
    background: #008da4;
    padding: 0.3em 1em;
    border-radius: 0.6em;
}

@media (max-width: 767.9px) {
    .about-us-left > h2 {
        margin: 0.5em 0em 1em 0em;
        font-size: 1.5em;
    }
}

.about-us-text {
    text-align: center;
    font-size: 1.1em;
}

.about-us-right {
    display: inline-block;
    vertical-align: middle;
    width: 55%;
    padding: 1em;
    text-align: center;
}

.about-us-pics > img {
    width: 50%;
    padding: 0.5em;
    float: left;
}

.about-us-pics > img:nth-child(2) {
    margin-top: 1.5em;
}

.about-us-pics.about-us-food-pics > img:nth-child(2) {
    margin-top: -1.5em;
}

@media (min-width: 768px) {
    .about-us-pics.about-us-food-pics {
        display: inline-block;
        vertical-align: middle;
        width: 49%;
    }

    .about-us-pics.about-us-food-pics img {
        width: 100%;
    }

    .about-us-pics.about-us-food-pics > img:nth-child(2) {
        margin-top: 0.5em;
    }
}

@media (max-width: 991.9px) {
    .about-us-left, .about-us-right { 
        width: 100%;
    }

    .about-us-pics {
        padding-top: 0;
    }
}

@media (max-width: 767.9px) {
    .about-us-pics > img {
        width: 100%;
        margin: 0em !important;
    }
    
    .page-block {
        padding: 0;
    }
}

@media (min-width: 992px) {
    .about-us-right.switch-float, .about-us-left.switch-float {
        float: right;
    }
}

@media (min-width: 992px) {
    .cabinets-block > .switch-float:nth-child(1) {
        margin-top: 0px;
    }
    
    .cabinets-block > .switch-float:nth-child(2) {
        margin-top: 0px;
    }
}

@media (min-width: 1200px) {
    .cabinets-block > .switch-float:nth-child(1) {
        margin-top: 55px;
    }
    
    .cabinets-block > .switch-float:nth-child(2) {
        margin-top: 0px;
    }
}

@media (min-width: 992px) {
    .staff-block > .switch-float:nth-child(1) {
        margin-top: 0px;
    }
    
    .staff-block > .switch-float:nth-child(2) {
        margin-top: 35px;
    }
}

@media (min-width: 1200px) {
    .staff-block > .switch-float:nth-child(1) {
        margin-top: 9.5px;
    }
    
    .staff-block > .switch-float:nth-child(2) {
        margin-top: 0px;
    }
}

.contact-us {
    width: 90%;
    text-align: center;
    margin: 0 auto;
    padding-top: 1em;
    margin-top: 1em;
}

.contact-us span {
    padding: 0.6em;
    border-radius: 0.6em;
    font-size: 1.1em;
}

@media (min-width: 768px) {
    .contact-us span {
       border: 2px dashed #008da4;
    } 
}

.about-us-left, .about-us-right, .about-us-pics, .about-us-pics > img {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

/* OWL CAROUSEL */

.owl-image {
    width: 100%;
    display: block;
}

.owl-next, .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    padding: 0.5em;
    background: rgba(0, 141, 164, 0.5);
    color: #fff;
    font-family: fontawesome;
    font-size: 1.5em;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
}

.owl-next:before {
    content: '\f105';
}

.owl-prev:before {
    content: '\f104';
}

.owl-next {
    right: 0;
}

.owl-prev {
    left: 0;
}

.owl-next:hover, .owl-prev:hover {
    background: rgba(0, 141, 164, 1);
}

/* MENU */

.menu-block {
    text-align: center;
}

.menu-iframe {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.menu-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .menu-block {
        overflow-x: hidden;
        max-width: 100%;
    }
}

/* EVENTS */

.event-block {
    float: left;
    width: 100%;
    padding: 0.5em;
    position: relative;
}

@media (min-width: 768px) {
    .event-block {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .event-block {
        width: 33.3%;
    }
}

.event-block, .event-cover-title {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box; 
}

.event-cover {
    width: 100%;
    position: relative;
    text-align: center;
    line-height: 0;
    cursor: pointer;
}

.event-cover-title {
    padding: 0.5em;
    line-height: 1.25;
    width: 100%;
    position: absolute;    
    border-top: 5px solid #008da4;
    color: #fff;
    background: rgba(46, 47, 49, 0.8);
    font-weight: bold;
    bottom: 0;    
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;    
    -o-border-top-left-radius: 50%;
    -o-border-top-right-radius: 50%;    
    -ms-border-top-left-radius: 50%;
    -ms-border-top-right-radius: 50%;    
    -moz-border-top-left-radius: 50%;
    -moz-border-top-right-radius: 50%;    
    -webkit-border-top-left-radius: 50%;
    -webkit-border-top-right-radius: 50%;
}

.event-label {
    background: rgba(46, 47, 49, 0.8);
    color: #fff;
    border-bottom-right-radius: 0.5em;
    border-top-right-radius: 0.5em;
    -o-border-bottom-right-radius: 0.5em;
    -o-border-top-right-radius: 0.5em;
    -ms-border-bottom-right-radius: 0.5em;
    -ms-border-top-right-radius: 0.5em;
    -moz-border-bottom-right-radius: 0.5em;
    -moz-border-top-right-radius: 0.5em;
    -webkit-border-bottom-right-radius: 0.5em;
    -webkit-border-top-right-radius: 0.5em;
    position: absolute;
    top: 1em;
    left: 0;
    line-height: 1.25;
    padding: 0.5em;
    border: 3px solid #008da4;
    border-left: 0;
}

.hover-overlay {
    background: rgba(46, 47, 49, 0.6);
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
}

.icon-hashtag {
    font-size: 2em;
    color: #2e2f31;
    display: inline-block;
    line-height: 1.25;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

.hashtag-friends {
    opacity: 0;
}

.event-cover:hover > .hover-overlay, .event-cover:hover > .icon-hashtag > .hashtag-friends {
    opacity: 1;
}

.event-body {
    position: fixed;
    opacity: 0;
    display: none;
    width: 100%;
    height: 100%;    
    top: 0;
    left: 0;
    background: #edefed;    
    z-index: 99;
    text-align: center;
    overflow-y: auto;
}

.event-body:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.event-body.event-is-open  {
    opacity: 1;
}

.close-event {    
    font-size: 2em;
    position: absolute;
    top: 1em;
    line-height: 0;
    right: 1em;
    color: #edefed;
    cursor: pointer;
    padding: 0.2em 0.3em;
    background: #008da4;
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.close-event:hover {
    background: #f44336;
}

.events-y-hidden {
    overflow-y: hidden !important;
}

.event-body-inner {
    width: 90%;
    display: inline-block;
    vertical-align: middle;
    padding: 2em 0;
}

.event-img {
    width: 100%;
    text-align: center;
    margin-bottom: 2em;
}

.event-info {
    text-align: center;
    color: #2e2f31;    
    width: 100%;
    margin: 0 auto;
    font-size: 1.1em;
}

@media (min-width: 768px) {
    .event-body-inner {
        width: 750px;
    }

    .event-img, .event-info {
        width: 70%;
    }
}

@media (min-width: 992px) {
    .event-body-inner {
        width: 970px;
    }

    .event-img, .event-info {
        width: 70%;
    }
}

@media (min-width: 1200px) {
    .event-body-inner {
        width: 1170px;
    }
}

/* CONTACT */

.contact-info {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box; 
    font-size: 1.1em;
}

.contact-us-man {
    font-weight: bold;
    margin-top: 1.5em;
} 

.follow-us-baby {
    font-size: 2em;
    margin-top: 0.5em;
}

.contact-form {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box; 
    font-size: 1.1em;
}

@media (min-width: 768px) {
    .contact-info {
        width: auto;
        display: inline-block;
        padding: 1em;
        vertical-align: top;
        text-align: left;
    }
    
    .contact-form {
        width: 500px;
        display: inline-block;
        padding: 1em;
        vertical-align: top;
    }
}

/* FOOTER */

.footer {
    background: rgb(4, 4, 7);
    padding: 1em 0em;
    color: #fff;
    font-size: 1.2em;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.footer > .developed-by {
    text-align: center;
    width: 100%;
}

.go-up {
    position: absolute;
    font-size: 2em;
    right: .5em;
    bottom: .4em;
    z-index: 4;
}

.footer > .developed-by a, .go-up a {
    color: #fff;
}

.footer > .developed-by a:hover, .go-up a:hover {
    color: #008da4;
}

.page-footer {
    position: relative;
}

.page-footer > .go-up {
    bottom: 0.3em;
    z-index: 1;
}

/* FORMS, INPUTS, BUTTONS */

button {
    padding: 1em;
    text-align: center;
    border: 0;
    margin: 1em;
    cursor: pointer;
}

button:focus {
    outline: none;
}

.button-01 {
    background: #2e2f31;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
}

.button-01:hover {
    background: #f44336;
}

.contact-form {
    font-size: 0.8em;
    line-height: 1.3;
    padding: 1em;
}

.form-part {
    padding: 1em;  
    width: 100%;
}

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

.form-part, .contact-form, .contact-form form, input, textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box; 
}

@media (min-width: 768px) {
    .form-part.form-half {
        width: 50%;
        float: left;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box; 
    }
}

@media (min-width: 768px) {
    .contact-form {
        padding-top: 0;
    }
}

input, textarea {
    width: 100%;
    font-size: 1.4em;
    padding: 0.5em;
    color: #fff;
    background: rgba(46,47,49,0.5);
    border: 2px solid #2e2f31;
    font-family: 'Arimo', Helvetica, Arial, sans-serif;
}

.message-sent {
    background: #008da4;
    text-align: center;
    padding: 1em;
    display: inline-block;
    color: #fff;
    margin-top: 1em;
}

@media(max-width: 768px) {
    .message-sent {
        display: block;
    }
    
    .button-01.pull-left {
        float: none;
        margin-bottom: 1em;
    }
}

input:focus, textarea:focus {
    outline: none;
    border-color: #008da4;
    background: rgba(0, 141, 164, 0.5);
}

textarea {
    resize: none;
}

::-webkit-input-placeholder {
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    color: #2e2f31;
}

::-moz-placeholder {
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    color: #2e2f31;
}

:-moz-placeholder {
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    color: #2e2f31;
}

:-ms-input-placeholder {
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    color: #2e2f31;
}

:focus::-webkit-input-placeholder {
    color: #008dae;
}

:focus::-moz-placeholder {
    color: #008dae;
}

:focus:-moz-placeholder {
    color: #008dae;
}

:focus:-ms-input-placeholder {
    color: #008dae;
}