@charset "utf-8";
/* CSS Document */

/* Table of Contents
-----------------------------------------------------------------------------
1. Clean Base
2. Base Typography
3. Images
4. Links
5. Forms
6. Tables
7. Framework
*/

/* 1. Clean Base
------------------------------------------------------------------------------*/
html, body, br, hr, div, span, a, object, iframe, ul, ol, dl, li, dt, dd, h1, h2, h3, h4, h5, h6, p, blockquote, q, address,
small, big, cite, dfn, ins, del, i, em, b, strong, sup, sub, strike, pre, code, samp, kbd, var, tt, form, fieldset, legend, label,
input, textarea, option, .nobox {background: transparent; border: 0; font-size: 100%; margin: 0; outline: 0; padding: 0; vertical-align: baseline;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
audio,canvas,progress,video {display: inline-block;vertical-align: baseline;}
blockquote, q {quotes: none;}
br {height: 0;}
ul, ol, dl, li {margin:0; padding:0;}
html, body{height: 100%; border:none; -webkit-appearance:none;-ms-appearance:none; -webkit-text-size-adjust:none;-ms-text-size-adjust:none;}

/* Class for clearing floats */
.clear {clear:both; display:block; overflow:hidden; visibility:hidden; width:0; height:0;}
.cf:after,.cf:before{display: table;content: ''}
.cf:after{clear: both;}
*, *:before, *:after {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}

/* 2. Base Typography
------------------------------------------------------------------------------*/
body {
    /* Typography */
    color: #333333;
    font: 400 15px/22px 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    /* Typography */
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

h1 {
    /* Typography */
    font-size: 47px;
    line-height: 54px;
}

h2 {
    /* Box-model */
    margin-bottom: 15px;

    /* Typography */
    font-size: 37px;
    line-height: 42px;
    color: #000000;
}

h2 a { color: #000;}

h3 {
    /* Box-model */
    margin-bottom: 10px;

    /* Typography s*/
    font-size: 22px;
    line-height: 30px;
}

h3 span {
    /* Typography */
    font-family: 'Lato', sans-serif;
    font-weight: 900;
}

h4 {
    /* Box-model */
    margin-bottom: 20px;

    /* Typography */
    font-size: 24px;
    line-height: 28px;
    color: #000;
}

h5 {
    /* Box-model */
    margin-bottom: 20px;

    /* Typography */
    font-size: 27px;
    line-height: 30px;
    color: #ea7617;
}

h6 {
    /* Box-model */
    margin-bottom: 10px;

    /* Typography */
    font-size: 16px;
    line-height: 20px;
    color: #ea7617;
}

blockquote {
    /* Box-model */
    padding: 20px 20px;
    margin: 0 0 20px;

    /* Typography */
    font-size: 17px;

    /* Visual */
    border-left: 5px solid #ebebeb;
    background-color: #f5f3f2;
}

blockquote p { margin-bottom: 0;}

p {
    /* Box-model */
    margin-bottom: 20px;

    /* Typography */
    color: #333333;
    font: 400 15px/22px 'Lato', sans-serif;
}

.content-block div{
    margin-bottom: 20px;
    color: #333333;
    font: 400 15px/22px 'Lato', sans-serif;
}

.text-large p,
p.text-large {
    /* Typography */
    font-size: 17px;
    line-height: 24px;
}

p strong {
    /* Box-model */
    display: block;

    /* Typography */
    font-weight: 700;
}

p a {
    /* Typography */
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

p span {
    /* Typography */
    color: inherit;
    font-weight: 700;
}

ul {
    /* Box-model */
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
    margin-left: 18px;
}

ul li {
    /* Positioning */
    position: relative;

    /* Box-model */
    padding: 0;
    margin: 0 0 22px 0;

    /* Typography */
    font-size: 15px;
    color: #333333;
    font-weight: 400;
    line-height: 22px;

    /* Visual */
    list-style: none;
}

ul li:before {
    /* Typography */
    position: absolute;
    top: 8px;
    left: -18px;

    /* Box-model */
    width: 7px;
    height: 7px;

    /* Typography */
    content: "";

    /* Visual */
    border-radius: 100%;
    background-color: #e97517;
}

ol {
    /* Box-model */
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    margin-left: 18px;
}

ol li {
    /* Box-model */
    padding: 0;
    margin: 0;

    /* Typography */
    font-size: 15px;
    color: #333333;
    font-weight: 400;
    line-height: 22px;
}

hr {
    /* Box-model */
    margin-top: 20px;
    margin-bottom: 20px;

    /* Visual */
    border: 0;
    border-top: 1px solid #eee;
}

/* 3. Images
------------------------------------------------------------------------------*/
img {
    /* Box-model */
    display: block;
    max-width: 100%;
    vertical-align: middle;

    /* Visual */
    border: none;
    border-style: none;
}

.alignleft {
    /* Box-model */
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    /* Box-model */
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter,
.alignnone {
    /* Box-model */
    float: none;
    margin: 0 auto 20px;
}


/* 4. Link
------------------------------------------------------------------------------*/
a {
    /* Typography */
    color: #ea7617;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    /* Visual */
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

a:hover,
a:focus {
    /* Typography */
    color: #cb003d;

    /* Visual */
    outline: none;
}

/* 5. Forms
------------------------------------------------------------------------------*/
input,
button,
select,
textarea {
    /* Typography */
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: inherit;
    line-height: inherit;

    /* Visual */
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border: none;
    -webkit-text-size-adjust: none;
    outline: none
}

input[type='email'],
input[type='text'],
input[type='search'],
input[type='tel'],
input[type='password'],
textarea {
    /* Box-model */
    padding: 0 10px 0 22px!important;
    display: block;
    width: 100%;
    height: 42px;

    /* Typography */
    font-size: 14px !important;
    line-height: 42px !important;
    color: #aeaeae !important;

    /* Visual */
    background-color: #fff;
    border: 1px solid #dbdbdb;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    border-radius: 22px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
}

@-moz-document url-prefix() {
    ::-webkit-input-placeholder { line-height: 38px !important;}
    ::-moz-placeholder { line-height: 38px !important;}
    :-ms-input-placeholder { line-height: 38px !important;}
    :-moz-placeholder { line-height: 38px !important;}

    textarea::-webkit-input-placeholder { line-height: 24px !important;}
    textarea::-moz-placeholder { line-height: 24px !important;}
    textarea:-ms-input-placeholder { line-height: 24px !important;}
    textarea:-moz-placeholder { line-height: 24px !important;}
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus { border: 1px solid #dbdbdb;}

textarea {
    /* Box-model */
    padding: 15px 22px;
    height: 122px;

    /* Typography */
    line-height: 24px !important;

    /* Visual */
    overflow: auto;
    resize: none;
}

/*Datepicker available date background color*/
.event a {
    /*background-color: #e97517 !important;*/
    background-image :none !important;
    color: #e97517 !important;
    font-weight: 800;
    border: 2px solid #e97517;
}

.event a.ui-state-active,
.event a:hover { color: #fff !important;}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .gf_browser_ie.gform_wrapper .gform_footer input.button { padding-top: 0 !important; padding-bottom: 0 !important;}
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    /* Box-model */
    display: inline-block;
    padding: 0 18px;
    height: 42px;
    padding-left: 0 !important;
    padding-right: 0 !important;

    /* Typography */
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 39px;
    text-transform: uppercase;
    color: #ea7617;
    line-height: 42px;

    /* Visual */
    outline: none;
    border: 2px solid #ea7617;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-border-radius: 21px;
    -moz-border-radius: 21px;
    -ms-border-radius: 21px;
    -o-border-radius: 21px;
    border-radius: 21px;
    -webkit-appearance: none;
}

button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
    /* Typography */
    color: #fff !important;

    /* Visual */
    background-color: #ea7617;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }

::-webkit-input-placeholder { color: #aeaeae; font: 300 14px/42px 'Lato', sans-serif; position: relative; z-index: 0;}
::-moz-placeholder { color: #aeaeae; font: 300 14px/42px 'Lato', sans-serif; position: relative; z-index: 0;}
:-ms-input-placeholder { color: #aeaeae; font: 300/42px 14px 'Lato', sans-serif; position: relative; z-index: 0;}
:-moz-placeholder { color: #aeaeae; font: 300 14px/42px 'Lato', sans-serif; position: relative; z-index: 0;}

textarea::-webkit-input-placeholder { line-height: 24px;}
textarea::-moz-placeholder { line-height: 24px;}
textarea:-ms-input-placeholder { line-height: 24px;}
textarea:-moz-placeholder { line-height: 24px;}


/* 6. Tables
------------------------------------------------------------------------------*/
table {
    /* Visual */
    border-spacing: 0;
    border-collapse: collapse;
}

td {
    /* Typography */
    text-align: left;
    font-weight: normal;
}

/* 7. Layout Framework
------------------------------------------------------------------------------*/

/* commomn css */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-justify { text-align: justify; }
.left { float: left;}
.right { float: right;}
.gray-bg { background-color: #f5f3f2;}

.gradient-bg {
    /* Visual */
    opacity: .9;
    background: rgb(234, 118, 24);
    background: -webkit-linear-gradient(left, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    background: -o-linear-gradient(left, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    background: linear-gradient(to right, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea7618', endColorstr='#ca003d', GradientType=1);
}

#wrapper {
    /* Box-model */
    width: 100%;
    min-height: 100%;
    overflow: hidden;
     padding-top: 106px;
}

.container {
    /* Box-model */
    margin: 0 auto;
    max-width: 1180px;
    width: 100%;
}

/* button */
.btn {
    /* Box-model */
    display: inline-block;
    padding: 0 18px;
    height: 42px;
    min-width: 110px;

    /* Typography */
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 39px;
    text-transform: uppercase;
    color: #ea7617;

    /* Visual */
    cursor: pointer;
    border:  2px solid #ea7617;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}

.btn.small {
    /* Box-model */
    padding: 0 23px;
    height: 34px;

    /* Typography */
    line-height: 32px;
}

.btn.white {
    /* Typography*/
    color: #fff;

    /* Visual */
    border-color: #fff;
}

.btn:hover,
.btn:focus {
    /* Typography */
    color: #fff;

    /* Visual */
    background-color: #ea7617;
}

.btn.white:focus,
.btn.white:hover {
    /* Typography */
    color: #ea7617;

    /* Visual */
    background-color: #fff;
}

/* header */
header {
    /* Positioning */
    position: fixed;
    top: 0;
    z-index: 99999;

    /* Box-model */
    width: 100%;
    height: auto;

    /* Visual */
    background-color: #fff;
}

header:after {
    /* Positioning */
    position: absolute;
    bottom: 0;
    left: 0;

    /* Box-model */
    width: 100%;
    height: 3px;

    /* Typography */
    content: "";

    /* Visual */
    background: rgb(234, 118, 24);
    background: -webkit-linear-gradient(left, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    background: -o-linear-gradient(left, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    background: linear-gradient(to right, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea7618', endColorstr='#ca003d', GradientType=1);
}

header .logo {
    /* Box-model */
    float: left;
    padding: 26px 0 24px;

    /* Typography */
    line-height: 0;
}

header .logo a { display: inline-block;}
header .logo a img { width: 175px;}
header .header-right { float: right; }

header .header-right .header-links {
    /* Box-model */
    float: right;
    padding: 31px 0 30px 31px;
    margin-left: 20px;

    /* Visual */
    border-left: 1px solid #f4f4f4;
}

header .header-right .header-links nav {
    /* Box-model */
    padding: 0;
    width: 100%;
}

header .header-right .header-links nav ul { line-height: 0;}
header .header-right .header-links nav li { margin: 0;}

header .header-right .header-links nav li a,
header .header-right .header-links .btn {
    /* Box-model */
    float: left;
    margin-left: 9px;
    padding: 0 18px;
    height: 42px;
    min-width: 110px;

    /* Typography */
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 39px;
    text-transform: uppercase;
    color: #ea7617;

    /* Visual */
    cursor: pointer;
    border:  2px solid #ea7617;
    -webkit-border-radius: 21px;
    -moz-border-radius: 21px;
    -ms-border-radius: 21px;
    -o-border-radius: 21px;
    border-radius: 21px;
}

header .header-right .header-links nav li.current-menu-item a,
header .header-right .header-links nav li a:hover {
    /* Typography */
    color: #fff;

    /* Visual */
    background-color: #ea7617;
}

header nav {
    /* Box-model */
    float: right;
    padding: 40px 0;
}

nav ul {
    margin: 0;
}

nav ul li {
    /* Box-model */
    display: inline-block;
    margin: 0 15px;
}

nav ul li.mobile_nav_buttons { display: none;}

nav ul li:before { display: none;}

nav ul li a {
    /* Box-model */
    display: block;

    /* Typography */
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
}

nav ul li a .icon { display: none;}

nav ul > li.current-menu-item > a,
nav ul > .current-menu-ancestor > a,
nav ul li:hover > a { color: #ea7617;}

nav ul li.menu-item-has-children a:before {
    /* Positioning */
    position: absolute;
    top: 100%;

    /* Box-model */
    display: block;
    width: 100%;
    height: 40px;

    /* Typography */
    content: "";
}

nav ul li .sub-menu li a { white-space: nowrap;}
nav ul li > ul {
    /* Positioning */
    position: absolute;
    top: 65px;
    left: -24px;
    z-index: 99;

    /* Box-model */
    width: auto;
    min-width: 230px;
    height: auto;
    margin: 10px 0px 0px 0px;
    padding: 0;

    /* Visual */
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all .6s ease 0s;
    -webkit-transition: all .6s ease 0s;
    -moz-transition: all .6s ease 0s;
    -ms-transition: all .6s ease 0s;
    -o-transition: all .6s ease 0s;
    -webkit-box-shadow: 0px 1px 5px 0px #efefef;
    box-shadow: 0px 1px 5px 0px #efefef;
    box-shadow: 0px 1px 5px 0px #efefef;
}

nav ul li:hover > ul {
    /* Box-model */
    margin: 0;

    /* Visual */
    opacity: 1;
    visibility: visible;
}

nav ul li > ul > li {
    /* Positioning */
    position: relative;

    /* Box-model */
    width: 100%;
    margin: 0px;
    padding: 0;

    /* Typography */
    text-align: left;

    /* Visual */
    border-top: 1px solid #efefef;
    list-style: none;
}

nav ul li > ul > li:first-child { border-top: 0;}

nav ul li > ul > li > a {
    /* Box-model */
    display: block;
    margin: 0px;
    padding: 12px 24px;
}

nav ul li > ul > li > ul {
    /* Positioning */
    position: absolute;
    top: 0px;
    left: 230px;
    z-index: 99;

    /* Box-model */
    width: auto;
    min-width: 230px;
    height: auto;
    margin: 10px 0px 0px 0px;
    padding: 0;

    /* Visual */
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all .6s ease 0s;
    -webkit-transition: all .6s ease 0s;
    -moz-transition: all .6s ease 0s;
    -ms-transition: all .6s ease 0s;
    -o-transition: all .6s ease 0s;
    -webkit-box-shadow: 0px 1px 5px 0px #efefef;
    box-shadow: 0px 1px 5px 0px #efefef;
}
nav ul li:hover > ul > li:hover > ul {
    /* Box-model */
    margin: 0;

    /* Visual */
    opacity: 1;
    visibility: visible;
}

nav ul li > ul > li > ul > li > ul{
    /* Positioning */
    position: absolute;
    top: 0px;
    left: 160px;
    z-index: 99;

    /* Box-model */
    width: auto;
    min-width: 160px;
    height: auto;
    margin: 30px 0px 0px 0px;
    padding: 0px 0px 11px;

    /* Visual */
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all .6s ease 0s;
    -webkit-transition: all .6s ease 0s;
    -moz-transition: all .6s ease 0s;
    -ms-transition: all .6s ease 0s;
    -o-transition: all .6s ease 0s;
}

nav ul li:hover > ul > li:hover > ul > li:hover > ul {
    /* Box-model */
    margin: 0;

    /* Visual */
    opacity: 1;
    visibility: visible;
}

#nav-icon1 {
    /* Box-model */
    display: none;
    float: right;
    width: 30px;
    height: 20px;
    padding: 0;
    margin: 33px 15px 33px 0;

    /* Typography */
    text-align: center;

    /* Visual */
    cursor: pointer;
    background-color: transparent;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

#nav-icon1 span {
    /* Positioning */
    position: absolute;
    left: 0;

    /* Box-model */
    display: block;
    width: 100%;
    height: 3px;

    /* Visual */
    background: #000;
    border-radius: 0;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) { top: 0; }
#nav-icon1 span:nth-child(2) { top: 8px; }
#nav-icon1 span:nth-child(3) { top: 16px; }

.mm-slideout { z-index: inherit;}

.mm-opened #nav-icon1 span:nth-child(1) {
    /* Positioning */
    top: 8px;

    /* Visual */
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.mm-opened #nav-icon1 span:nth-child(2) {
    /* Positioning */
    left: -60px;

    /* Visual */
    opacity: 0;
}

.mm-opened #nav-icon1 span:nth-child(3) {
    /* Positioning */
    top: 8px;

    /* Visual */
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.mm-menu { background: #f5f3f2;}

.mm-menu .mm-btn:after,
.mm-menu .mm-btn:before { border-color: #ffffff; }

.mm-panel.mm-hasnavbar .mm-navbar {
    /* Box-model */
    padding: 0 25px;
    height: auto;

    /* Visual */
    border-bottom: 0;
    background: rgb(234, 118, 24);
    background: -webkit-linear-gradient(left, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    background: -o-linear-gradient(left, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    background: linear-gradient(to right, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea7618', endColorstr='#ca003d', GradientType=1);
}

.mm-menu .mm-navbar > a {
    /* Box-model */
    padding: 12px 0;

    /* Typography */
    text-align:left;
    color: #fff;
    font-weight: 700;
}

.mm-panels > .mm-panel > .mm-listview:first-child,
.mm-panels > .mm-panel > .mm-navbar + .mm-listview { margin-top: -17px;}

.mm-listview > li:not(.mm-divider):after { display: none; }

.mm-listview > li {
    /* Box-model */
    margin: -1px 0 0 0;

    /* Visual */
    border-bottom: 1px solid #d6d6d6;
}

.mm-listview > li:hover a, .mm-listview > li.current-menu-item > a { color: #fe0000;}

.mm-listview .mm-next {
    /* Positioning */
    top: 1px;

    /* Box-model */
    height: 41px;

    /* Typography */
    color: #fff;

    /* Visual */
    background: #ea7617;
}

.mm-menu .mm-listview > li .mm-next:after { border-color: #fff;}
.mm-btn { width: 17px;}

.mm-next:after, .mm-prev:before {
    /* Box-model */
    width: 7px;
    height: 7px;
}

.mm-prev:before {
    /* Positioning */
    left: 0;
    top: 9px;
}

.mm-navbar .mm-btn:first-child {
    /* Positioning */
    top: -2px;
    left: 9px;
}


/* footer */
footer {
    /* Typography */
    color: #fff;

    /* Visual */
    background-color: #000;
}

footer .footer-main { padding: 67px 0 45px;}
footer .footer-bottom { border-top: 1px solid #161616;}

footer .footer-block {
    /* Positioning */
    position: relative;

    /* Box-model */
    padding: 0 30px 0 58px;
    float: left;
    width: 27.97%;
}

footer .footer-block:before {
    /* Positioning */
    position: absolute;
    top: 0;
    left: -2px;

    /* Box-model */
    width: 1px;
    height: calc(100% - 5px);

    /* Typography */
    content: "";

    /* Visual */
    background-color: #161616;
}

footer .footer-block.address {
    /* Box-model */
    width: 18.14%;
    padding-left: 0;
}

footer .footer-block.last {
    /* Box-model */
    padding-right: 0;
    width: 25.92%;
}

footer .footer-block:first-child:before,
footer .footer-block.last:before { display: none;}

footer .footer-title {
    /* Box-model */
    margin-bottom: 14px;

    /* Typography */
    text-transform: uppercase;
    font: 700 16px/20px 'Raleway', sans-serif;
}

footer p,
footer a {
    /* Box-model */
    margin-bottom: 0;

    /* Typography */
    color: #fff;
    font-size: 16px;

}

footer .footer-logo {
    /* Box-model */
    float: left;
    padding: 50px 0 65px;
}

footer .footer-logo a { display: inline-block;}
footer .footer-logo a img { width: 142px;}

footer .copyright {
    /* Box-model */
    float: right;
    padding: 60px 0;
}

footer .copyright p { font-size: 15px;}

/*--------- home page ------------*/
.banner {
    position: relative;
    overflow: hidden;
    height: 630px;
}

.banner-slider h1,
.banner-slider h2 {
    /* Box-model */
    margin-bottom: 0;

    /* Typography */
    font-size: 30px;
    line-height: 40px;
}

.banner-slider .slide {
    /* Positioning */
    position: relative;

    /* Box-model */
    min-height: 630px;

    /* Visual */
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}

.slick-arrow {
    /* Positioning */
    position: absolute;
    z-index: 99;

    /* Box-model */
    padding: 0;

    /* Typography */
    font-size: 0;
    color: #cb003d;

    /* Visual */
    background-color: #fff;
    border-radius: 30px;
    border: 0;
}

.slick-arrow:before {
    /* Positioning */
    position: absolute;
    top: 13px;

    /* Typography */
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 14px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-arrow.slick-prev:before { content: "\f053";}
.slick-arrow.slick-next:before { content: "\f054";}

.slick-slider .slick-arrow {
    /* Positioning */
    top: 50%;

    /* Box-model */
    width: 36px;
    height: 38px;
    margin-top: -19px;
    outline: none !important;
}

.slick-slider .slick-arrow.slick-prev {
    /* Positioning */
    left: 0;

    /* Visual */
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.slick-slider .slick-arrow.slick-next {
    /* Positioning */
    right: 0;

    /* Visual */
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.slick-slider .slick-arrow.slick-prev:before { left: 10px;}
.slick-slider .slick-arrow.slick-next:before {right: 10px;}

.slick-slider .slick-arrow:focus,
.slick-slider .slick-arrow:hover {
    /* Typography */
    color: #fff;
    background-color: #cb003d;
}

.banner-text {
    /* Positioning */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;

    /* Box-model */
    width: 100%;
    height: 100%;
}

.banner-text .banner-text-block {
    /* Box-model */
    display: table;
    width: 100%;
    height: 100%;
    max-width: 624px;
    margin: 0 auto;
    padding: 0 15px;
}

.banner-text .banner-text-inner {
    /* Box-model */
    display: table-cell;
    vertical-align: middle;
}

.banner-text .banner-content {
    /* Box-model */
    padding: 37px 45px 39px;

    /* Visual */
    border-radius: 200px;
}

.banner-text * { color: #fff;}

.inner-banner-text h1,
.banner-text h1 { color: #fff;}

.banner-text p {
    /* Box-model */
    padding: 0 20px;
    margin-bottom: 5px;

    /* Typography */
    font: 700 18px/28px 'Raleway', sans-serif;
    color: #fff;
    /*text-transform: uppercase;*/
    letter-spacing: .06em;
}

.banner-text .btn {
    /* Box-model */
    height: 41px;
    margin-top: 15px;

    /* Typography */
    line-height: 39px;
}

@-moz-document url-prefix() {
  .banner-text .btn {
     line-height: 37px;
  }
}

.banner .down-arrow {
    /* Positioning */
    position: absolute;
    bottom: 50px;
    left: 50%;
    z-index: 99;

    /* Box-model */
    width: 43px;
    height: 43px;

    /* Typography */
    color: #fff;

    /* Visual */
    border: 2px solid #fff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    cursor: pointer;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.banner .down-arrow i {
    /* Positioning */
    position: absolute;
    top: 50%;
    left: 50%;

    /* Box-model */
    width: 16px;
    height: 11px;

    /* Typography */
    font-size: 17px;
    line-height: 7px;

    /* Visual */
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.banner .down-arrow:focus,
.banner .down-arrow:hover {
    /* Typography */
    color: #cb003d;

    /* Visual */
    background-color: #ffffff;
}

.content-head { margin-bottom: 20px;}

.content-head h1,
.content-head h2,
.content-head h3,
.content-head h4,
.content-head h5,
.content-head h6 { margin-bottom: 0;}

.news-n-calendar { overflow: hidden;}

.news-section {
    /* Box-model */
    float: left;
    width: 50%;
}

.news-section .news-section-inner { padding: 58px 53px 60px 0;}
.news-listing .news-block { margin-bottom: 20px;}

.news-listing .news-block .news-block-inner {
    /* Positioning */
    position: relative;

    /* Box-model */
    padding: 21px 20px;

    /* Visual */
    background-color: #f5f3f2;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    border-radius: 22px;
}

.news-block .date-block {
    /* Box-model */
    float: left;
    width: 94px;
    height: 90px;
    padding: 18px 15px;

    /* Typography */
    text-align: center;
    line-height: 27px;

    /* Visual */
    border: 2px solid #ea7617;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    border-radius: 22px;
}

.date-block .date,
.date-block .month {
    /* Typography */
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    color: #ea7617;
    text-transform: uppercase;

}

.news-block .date-block .date { font-size: 36px;}
.news-block .date-block .month { font-size: 18px;}

.news-listing .news-block .content {
    /* Box-model */
    float: left;
    width: calc(100% - 94px);
    padding: 0 40px 0 24px;
}

.grid-block .title,
.news-block .title,
.news-block .title a {
    /* Box-model */
    display: block;
    margin: 7px 0;

    /* Typography */
    text-transform: uppercase;
    font: 800 18px 'Raleway', sans-serif;
    color: #e97517;
    word-wrap: break-word;
}

/*.news .news-block .title a:hover { color: #cb003d;}*/

.news-listing .news-block p { margin-bottom: 0;}

.news-listing .news-block .read-more {
    /* Positioning */
    position: absolute;
    right: 0;
    top: 0;

    /* Box-model */
    width: 48px;
    height: 100%;

    /* Visual */
    border-left: 1px solid #edeceb;
    -webkit-border-radius: 0 22px 22px 0;
    -moz-border-radius: 0 22px 22px 0;
    -ms-border-radius: 0 22px 22px 0;
    -o-border-radius: 0 22px 22px 0;
    border-radius: 0 22px 22px 0;
}

.news-listing .news-block .read-more i {
    /* Positioning */
    position: absolute;
    top: 50%;
    left: 50%;

    /* Box-model */
    margin: -4px 0 0 -6px;

    /* Typography */
    font-size: 13px;
}

.news-listing .news-block .read-more:focus,
.news-listing .news-block .read-more:hover {
    /* Typography */
    color: #fff;

    /* Visual */
    background-color: #ea7617;
}

.calender-section {
    /* Box-model */
    float: right;
    width: 50%;

    /* Visual */
    border-left: 1px solid #f5f3f2;
}

.calender-section .calender-section-inner { padding: 54px 0 54px 53px;}
.calender-block { position: relative;}

.calender-block .calender-btn {
    /* Positioning */
    position: absolute;
    top: 0;
    right: 86px;
    z-index: 1;
}

.ui-datepicker { background-color: #fff;}

.calender-block .ui-datepicker-header {
    /* Positioning */
    position: relative;

    /* Box-model */
    padding: 0 300px 25px 0;
}

.calender-block .ui-datepicker-header:before {
    /* Positioning */
    position: absolute;
    bottom: 0;
    left: -53px;

    /* Box-model */
    width: calc(100vw/2 - 10px);
    height: 1px;
    content: "";

    /* Visual */
    background-color: #f5f3f2;
}

.ui-datepicker-header .ui-corner-all {
    /* Positioning */
    position: absolute;
    top: 0;

    /* Box-model */
    width: 34px;
    height: 34px;

    /* Visual */
    border: 2px solid #e97517;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    cursor: pointer;
    background-image: none;
}

.ui-datepicker-header .ui-corner-all span { display: none;}
.ui-datepicker-header .ui-corner-all.ui-datepicker-prev { right: 43px;}
.ui-datepicker-header .ui-corner-all.ui-datepicker-next { right: 0;}

.ui-datepicker-header .ui-corner-all:before {
    /* Positioning */
    position: absolute;
    top: 9px;

    /* Typography */
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 14px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.ui-datepicker-header .ui-corner-all.ui-datepicker-prev:before {
    /* Positioning */
    left: 9px;

    /* Typography */
    content: "\f053";
}
.ui-datepicker-header .ui-corner-all.ui-datepicker-next:before {
    /* Positioning */
    right: 9px;

    /* Typography */
    content: "\f054";
}

.ui-datepicker-header .ui-corner-all:focus,
.ui-datepicker-header .ui-corner-all:hover {
    /* Typography */
    color: #fff;

    /* Visual */
    background-color: #e97517;
}

.ui-datepicker-title {
    /* Typography */
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 32px;
    text-transform: uppercase;
    color: #000;
}

.ui-datepicker-title .ui-datepicker-month:after {
    content: ",";
    font-family: 'Raleway', sans-serif;
}

.ui-datepicker-title .ui-datepicker-year {
    /* Typography */
    font-family: 'Lato', sans-serif;
    font-weight: 900;
}

.ui-datepicker-calendar tr { border: 0 !important;}

#ui-datepicker-div .ui-datepicker-calendar th,
.ui-datepicker-calendar th,
#ui-datepicker-div .ui-datepicker-calendar td,
.ui-datepicker-calendar td {
    /* Box-model */
    width: 50px;
    height: 50px;

    /* Typography */
    text-align: center;
    font: 300 15px 'Roboto', sans-serif;
    color: #333;
    text-transform: uppercase;

    /* Visual */
    border: 0;
}

.ui-datepicker-calendar td a,
.ui-datepicker-calendar td span {
    /* Box-model */
    display: block;
    width: 100%;
    height: 48px;

    /* Typography */
    color: #333333;
    line-height: 50px;

    /* Visual */
    background-color: #f5f3f2;
}

.ui-datepicker-calendar td.event a { line-height: 47px;}

.ui-datepicker-calendar td.ui-datepicker-other-month a,
.ui-datepicker-calendar td.ui-datepicker-other-month span { background-color: #fff; }

.ui-datepicker-calendar td.ui-datepicker-other-month a:hover {
    background-color: #e97517;
    color: #fff;
}

.ui-datepicker-calendar td a:hover,
.ui-datepicker-calendar td a.ui-state-active,
.ui-datepicker-calendar .ui-datepicker-today a,
.ui-datepicker-calendar .ui-datepicker-today span { background-color: #e97517; color: #fff;}

.ui-datepicker-calendar {
    /* Box-model */
    width: 356px;
    margin-bottom: 0;
    /*width: 66.6%;*/
}
.dist {
    background-color: #000;
}
.calendar-events {
    /* Positioning */
    position: absolute;
    /*bottom: 0;*/
    top: 107px;
    right: 0;
    bottom: 0;

    /* Box-model */
    width: calc(100% - 364px);
    /*width: 32.9%;*/

    /* Visual */
    background-color: #f5f3f2;
}

.calendar-events .event-block,
.calendar-events .event-block #get_result,
.calendar-events .event-slider .slick-list,
.calendar-events .event-slider .slick-list .slick-track { height: 100%;}

.calendar-events .event-slider {
    height: 100%;
    /*background-color: #f5f3f2;*/
}

.calendar-events .event-slider .event-slide,
.calendar-events .event-block .default_text {
    /* Box-model */
    padding: 20px 26px 55px;
    min-height: 250px;
    /*background-color: #f5f3f2;*/
}

.calendar-events .event-slider .event-slide h6,
.calendar-events .event-block .default_text h6 { word-wrap: break-word;}

.calendar-events .event-slider .event-slide p,
.calendar-events .event-block .default_text p {
    /* Box-model */
    margin-bottom: 12px;

    /* Typography */
    font-size: 14px;
    line-height: 20px;
}

.calendar-events .event-slider .event-slide .read-more,
.calendar-events .event-block .default_text .read-more {
    /* Positioning */
    position: absolute;
    right: 25px;
    bottom: 30px;

    /* Typography */
    font-size: 14px;
    line-height: 20px;
}

.event-slider .slick-arrow {
    /* Positioning */
    bottom: 28px;

    /* Box-model */
    width: 20px;
    height: 20px;

    /* Typography */
    color: #ea7617;

    /* Visual */
    outline: none;
    background-color: transparent;
    border: 1px solid #e3e3e3;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
}

.event-slider .slick-arrow.slick-prev { left: 28px;}
.event-slider .slick-arrow.slick-next { left: 50px;}

.event-slider .slick-arrow:before {
    /* Positioning */
    top: 50%;

    /* Typography */
    font-size: 8px;
    width: 6px;
    height: 8px;
    margin-top: -3px;

    /* Visual */
    /*-webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);*/
}

.event-slider .slick-arrow.slick-prev:before { left: 6px;}
.event-slider .slick-arrow.slick-next:before { right: 5px;}

.event-slider .slick-arrow:hover,
.event-slider .slick-arrow:focus {
    /* Typography */
    color: #ea7617 !important;

    /* Visual */
    background-color: #e3e3e3;
}

.instagram-section .content-head {
    /* Box-model */
    padding: 58px 0 52px;
    margin-bottom: 0;

    /* Visual */
    background-color: #f5f3f2;
}

.insta-blocks .insta-block {
    /* Positioning */
    position: relative;

    /* Box-model */
    float: left;
    width: 20%;

    /* Visual */
    background-color: #f5f3f2;
}

.insta-blocks .insta-block:before {
    /* Positioning */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;

    /* Box-model */
    width: 1px;
    height: 100%;

    /* Typography */
    content: "";

    /* Visual */
    background-color: #fff;
}

.insta-blocks .insta-block:first-child:before { display: none;}
.insta-blocks .insta-block a { display: block; overflow: hidden;}

.insta-blocks .insta-block a.thumbnail:hover .insta-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.insta-blocks .insta-block a.thumbnail:hover .text-block p,
.insta-blocks .insta-block a.thumbnail:hover .text-block:after {
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    color: #ea7617;
}

.insta-blocks .insta-block .insta-img {
    /* Positioning */
    position: relative;

    /* Box-model */
    display: block;
    max-height: 16vw;
    overflow: hidden;
}

.insta-blocks .insta-block .insta-img img {
    /* Box-model */
    width: 100%;
    height: auto !important;

    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.insta-blocks .insta-block .insta-img:before {
    /* Positioning */
    position: absolute;
    top: 0;
    left: 0;

    /* Box-model */
    width: 100%;
    height: 100%;

    /* Typography */
    content: "";

    /* Visual */
    background-color: rgba(0, 0, 0, .15);
}

.insta-blocks .insta-block .text-block {
    /* Positioning */
    position: relative;

    /* Box-model */
    width: 100%;
    display: block;
    /*padding: 19px 70px 19px 29px;*/
}

/*.insta-blocks .insta-block .text-block:before,*/
.rooms .text-block:before {
    /* Positioning */
    position: absolute;
    top: 0;
    left: 0;

    /* Box-model */
    width: 100%;
    height: 100%;

    /* Typography */
    content: "";

    /* Visual */
    opacity: .5;
    background: rgb(234, 118, 24);
    background: -webkit-linear-gradient(left, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    background: -o-linear-gradient(left, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    background: linear-gradient(to right, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea7618', endColorstr='#ca003d', GradientType=1);
}

.insta-blocks .insta-block .text-block:after {
    /* Positioning */
    position: absolute;
    top: 22px;
    right: 19px;

    /* Typography */
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 14px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f16d";
    font-size: 33px;
    color: #333333;
}

.insta-blocks .insta-block .text-block p {
    /* Positioning */
    position: relative;

    /* Box-model */
    margin-bottom: 0;
    padding: 19px 55px 19px 19px;

    /* Typography */
    /*color: #fff;*/
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 800;
    word-wrap: break-word;
}

.insta-blocks .insta-block .text-block p.large { font-size: 24px;}
.testimonial-section { padding: 40px 0;}

.testimonial-slider {
    /* Box-model */
    padding: 40px 0 75px;
    margin: 0 -23px;
}

.testimonial-block {
    /* Box-model */
    float: left;
    width: 33.33%;
    padding: 0 23px;
}

.testimonial-block .testimonial-content .text-block {
    /* Positioning */
    position: relative;

    /* Box-model */
    padding: 37px 39px 38px;

    /* Visual */
    border: 3px solid #efefef;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-radius: 25px;
    background-image: url(../images/quote-icon.png);
    background-repeat: no-repeat;
    background-position: 23px 20px;
}

.testimonial-block .testimonial-content .text-block:after {
    /* Positioning */
    position: absolute;
    bottom: -15px;
    left: 47px;

    /* Box-model */
    width: 0;
    height: 0;

    /* Typography */
    content: "";
    line-height: 0px;

    /* Visual */
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-color: transparent #ffffff transparent transparent;
    _border-color: #000000 #ffffff #000000 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

.testimonial-block .testimonial-content .text-block:before {
    /* Positioning */
    position: absolute;
    bottom: -22px;
    left: 43px;

    /* Box-model */
    width: 0;
    height: 0;

    /* Positioning */
    content: "";
    line-height: 0px;

    /* Visual */
    border-style: solid;
    border-width: 0 22px 22px 0;
    border-color: transparent #efefef transparent transparent;
    _border-color: #000000 #efefef #000000 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

.testimonial-block p ,
.testimonial-block span {
    /* Box-model */
    margin-bottom: 0;

    /* Typography */
    font-size: 17px;
    line-height: 25px;
}

.testimonial-block .author {
    /* Box-model */
    padding: 13px 0 0 90px;

    /* Typography */
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #e97517;
    text-transform: uppercase;
}

.testimonial-slider .slick-arrow {
    /* Positioning */
    bottom: 0;

    /* Box-model */
    width: 38px;
    height: 38px;

    /* Typography */
    color: #ea7617;
    border: 2px solid #ea7617;
}

.testimonial-slider .slick-arrow:before { top: 11px;}
.testimonial-slider .slick-arrow.slick-prev { right: 70px;}
.testimonial-slider .slick-arrow.slick-next { right: 23px;}
.testimonial-slider .slick-arrow.slick-prev:before { left: 11px;}
.testimonial-slider .slick-arrow.slick-next:before { right: 11px;}

.testimonial-slider .slick-arrow:hover {
    /* Typography */
    color: #fff;

    /* Visual */
    background-color: #ea7617;
}

.conference-banner,
.inner-banner {
    /* Positioning */
    position: relative;

    /* Box-model */
    display: block;
    min-height: 613px;

    /* Visual */
    overflow: hidden;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}

.conference-banner .logo {
    /* Positioning */
    position: absolute;
    top: 48px;
    left: 50%;

    /* Box-model */
    width: 100%;
    max-width: 1200px;
    padding: 0 10px;

    /* Visual */
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.conference-banner .logo img {
    /* Box-model */
    float: right;
    width: 142px;
}

.conference-banner .conference-text {
    /* Positioning */
    position: absolute;
    bottom: 50px;
    left: 50%;

    /* Box-model */
    display: block;
    width: 100%;
    max-width: 1180px;

    /* Visual */
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.conference-banner .conference-text .text-block,
.inner-banner .inner-banner-text .text-block {
    /* Positioning */
    position: relative;

    /* Box-model */
    max-width: 100%;
    display: inline-block;
    padding: 22px 44px 30px 0;

    /* Visual */
    -webkit-border-radius: 0px 200px 200px 0;
    -moz-border-radius: 0px 200px 200px 0;
    -ms-border-radius: 0px 200px 200px 0;
    -o-border-radius: 0px 200px 200px 0;
    border-radius: 0px 200px 200px 0;
}

.conference-banner .conference-text .text-block:before,
.inner-banner .inner-banner-text .text-block:before {
    /* Positioning */
    position: absolute;
    top: 0;
    right: 0;

    /* Box-model */
    width: 100vw;
    height: 100%;
    /*max-width: calc( 100vw/2);*/
    max-width: calc(100% + (100vw - 1180px)/2);

    /* Typography */
    content: "";

    /* Visual */
    opacity: .9;
    background: rgb(234, 118, 24);
    background: -webkit-linear-gradient(left, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    background: -o-linear-gradient(left, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    background: linear-gradient(to right, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea7618', endColorstr='#ca003d', GradientType=1);
    -webkit-border-radius: 0px 200px 200px 0;
    -moz-border-radius: 0px 200px 200px 0;
    -ms-border-radius: 0px 200px 200px 0;
    -o-border-radius: 0px 200px 200px 0;
    border-radius: 0px 200px 200px 0;
}

.conference-banner .text-block-inner,
.inner-banner .text-block-inner { position: relative;}

.conference-banner .text-block .text,
.inner-banner .text-block .text {
    /* Box-model */
    display: block;

    /* Typography */
    font: 800 17px/27px 'Raleway', sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
}

.conference-banner .text-block .text.large,
.inner-banner .text-block .text.large {
    /* Typography */
    font-size: 38px;
    line-height: 42px;
    letter-spacing: -.001em;
}

a.conference-banner:hover .text-block .text {
    color: #000;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.inner-banner { min-height: 260px;}

.inner-banner .inner-banner-text {
    /* Positioning */
    position: absolute;
    top: 50%;
    left: 50%;

    /* Box-model */
    display: block;
    width: 100%;
    max-width: 1180px;

    /* Visual */
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.inner-banner .inner-banner-text .text-block { padding: 33px 81px 33px 0;}
.main-content { padding: 66px 0;}

.blocks-grid { margin: 0 -15px;}

.blocks-grid .grid-block {
    /* Positioning */
    position: relative;

    /* Box-model */
    float: left;
    width: 373px;
    width: 33.33%;
    margin-bottom: 30px;
    padding: 0 15px;

    /* Visual */
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    border-radius: 22px;
}

.gray-bg .blocks-grid .grid-block a { background-color: #fff;}

.blocks-grid .grid-block a {
    /* Positioning */
    position: relative;

    /* Box-model */
    height: 100%;

    /* Visual */
    background-color: #f5f3f2;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    border-radius: 22px;
}

.blocks-grid .grid-block a,
.blocks-grid .grid-block .img-block { display: block;}

.blocks-grid .grid-block .img-block {
    height: 168px;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    -webkit-border-radius: 22px 22px 0 0;
    -moz-border-radius: 22px 22px 0 0;
    -ms-border-radius: 22px 22px 0 0;
    -o-border-radius: 22px 22px 0 0;
    border-radius: 22px 22px 0 0;
}

.blocks-grid .grid-block .img-block img {
    opacity: 0;
    /* Box-model */
    width: 100%;

    /* Visual */
    -webkit-border-radius: 22px 22px 0 0;
    -moz-border-radius: 22px 22px 0 0;
    -ms-border-radius: 22px 22px 0 0;
    -o-border-radius: 22px 22px 0 0;
    border-radius: 22px 22px 0 0;
}

.blocks-grid .grid-block .date-block {
    /* Positioning */
    position: absolute;
    top: 10px;
    left: 10px;

    /* Box-model */
    width: 73px;
    height: 70px;
    padding: 16px 15px;

    /* Typography */
    text-align: center;

    /* Visual */
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    border-radius: 22px;
}

.blocks-grid .grid-block .date-block .date { font-size: 28px;}
.blocks-grid .grid-block .date-block .month { font-size: 14px;}

.blocks-grid .grid-block .date-block .date,
.blocks-grid .grid-block .date-block .month { color: #fff;}

.blocks-grid .grid-block .content {
    /* Positioning */
    position: relative;

    /* Box-model */
    display: block;
    padding: 25px 32px 32px;
}

div#gform_wrapper_1 ul li .ginput_container_select .chosen-drop { z-index: 101; }

.blocks-grid .grid-block .content:before {
    /* Positioning */
    position: absolute;
    top: 0;
    left: 0;

    /* Box-model */
    width: 100%;
    height: 3px;

    /*Typography */
    content: "";

    /* Visual */
    background: rgb(234, 118, 24);
    background: -webkit-linear-gradient(left, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    background: -o-linear-gradient(left, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    background: linear-gradient(to right, rgba(234, 118, 24, 1) 0%, rgba(202, 0, 61, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea7618', endColorstr='#ca003d', GradientType=1);
}

.blocks-grid .grid-block .text { color: #333333;}

.blocks-grid .grid-block a span {
    /* Box-model */
    /*display: block;*/

    /* Visual */
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.blocks-grid .grid-block a:hover .title { color: #cb003d;}

.news-single .news-content {
    /* Box-model */
    float: left;
    width: 60%;
}

.news-single .date {
    /* Box-model */
    margin-bottom: 4px;

    /* Typography */
    font-size: 16px;
    line-height: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
}
.news-single h2 {
    /* Box-model */
    margin-bottom: 4px;

    /* Typography */
    color: #ea7617;
}

.news-single .img-block {
    /* Box-model */
    float: right;
    width: 35%;
}

.news-single .img-block img {
    /* Box-model */
    width: 100%;

    /* Visual */
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    border-radius: 22px;
}

.post-navigation { margin: 0;}
.post-navigation h2 { display: none;}
.post-navigation .nav-links { padding: 0;}
.news-navigation { padding: 30px 0;}
.news-navigation .btn { padding: 0 24px;}

.post-navigation .nav-links .nav-previous,
.news-navigation .prev {float: left;}

.post-navigation .nav-links .nav-next,
.news-navigation .next { float: right;}

.post-navigation .nav-next { margin: 0;}

.news-navigation .prev:before,
.news-navigation .next:after {
    /* Box-model */
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;

    /* Typography */
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 13px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.news-navigation .prev:before {
    /* Box-model */
    margin-right: 8px;

    /* Typography */
    content: "\f053";
}

.news-navigation .next:after {
    /* Box-model */
    margin-left: 8px;

    /* Typography */
    content: "\f054";
}

.text-content-head { padding: 60px 0 64px;}
.text-content-head.with_buttons{ padding-bottom: 30px;}

.text-content-head .head-text {
   /*  max-width: 750px; */
    margin: 0 auto;
}

/*.page-template-tmp_omoss .text-content-head .container { max-width: 640px;}*/
.kontakt-content-head {
    padding-bottom: 45px;
    text-align: center;
}

.text-content-head h2 {
    /* Box-model */
    margin-bottom: 6px;

    /* Typography */
    color: #e97517;
}

.info-content.text-content-head p {
    /* Box-model */
    margin-bottom: 20px;
    max-width: 100%;
}

/* Image Content Section */
.img-content-blocks,
.map-blocks { font-size: 0;}

.img-content-blocks .img-block,
.map-blocks .map-block {
    /* Box-model */
    width: 50%;
    height: 100%;
    display: inline-block;
    vertical-align: top;
    min-height: 368px;

    /* Visual */
    -webkit-background-size: cover;
    background-size: cover;
    background-position: left center;
}

.img-content-blocks .img-block.left { background-position: right center;}
.img-content-blocks .img-block img { display: none;}

.img-content-blocks .content-block,
.map-blocks .content-block {
    /* Box-model */
    width: 50%;
    display: inline-block;
    vertical-align: top;

    /* Visual */
    background-color: #f5f3f2;
}

.img-content-blocks .content-block blockquote,
.map-blocks .content-block blockquote { background-color: #fff;}

.img-content-blocks .content-block .content,
.map-blocks .content-block .content {
    /* Box-model */
    float: left;
    width: 100%;
    max-width: 590px;
    padding: 95px 0 75px 100px;
    display: table;
    height: 100%;
}

.img-content-blocks .content-block .content .content-inner,
.map-blocks .content-block .content .content-inner {
    /* Box-model */
    display: table-cell;
    vertical-align: middle;
}

.img-content-blocks .content-block.left,
.map-blocks .content-block.left {
    /* Box-model */
    float: left;
    margin-left: 0;
}

.map-blocks .content-block.left { padding-left: 15px;}

.img-content-blocks .content-block.left .content,
.map-blocks .content-block.left .content {
    /* Box-model */
    float: right;
    padding-left: 0;
    padding-right: 100px;
}


.list-content .list-blocks-grp { margin: 0 -60px;}

.list-content .list-block {
    /* Positioning */
    position: relative;

    /* Box-model */
    float: left;
    width: 33.33%;
    margin: 0;
    padding: 0 60px;
}

.list-content .list-block:before {
    /* Positioning */
    position: absolute;
    top: 0;
    left: 0;

    /* Box-model */
    width: 1px;
    height: 100%;

    /* Typography */
    content: "";

    /* Visual */
    background-color: #f5f3f2;
}

.list-content .list-block:first-child:before { display: none;}

.list-content ul {
    /* Box-model */
    padding: 60px 0 40px;
    margin-bottom: 0;
}

.list-content ul li { margin: 0 0 22px 0;}

.training-blocks { padding: 55px 0 35px;}
.training-blocks h2 { margin-bottom: 20px;}

.training-blocks .blocks-grid { margin: 0 -10px;}
.training-blocks .grid-block { padding: 0 10px;}

.training-blocks .grid-block .content:before { display: none;}
.training-blocks .grid-block .content { padding: 16px 24px 23px;}
.training-blocks .grid-block .title { margin-bottom: 10px;}
.training-single-page .main-content { padding: 57px 0 45px;}

.main-content .content-left {
    /* Box-model */
    float: left;
    width: 69.07%;
}

.main-content .sidebar {
    /* Box-model */
    float: right;
    width: 27.54%;
    padding-top: 9px;
}

.training-single h2 { color: #ea7617;}
.training-single .img-block { margin-bottom: 20px;}
.training-single .img-block .img-slider .slick-arrow { display: none !important;}
.training-single .training-content { padding-right: 90px;}

.training-single .img-block img {
    /* Visual */
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    border-radius: 22px;
}

.sidebar-block {
    /* Visual */
    border: 1px solid #ebebeb;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    border-radius: 22px;
}

.sidebar-block .title { padding: 17px 28px 16px;}

.sidebar-block .title h3 {
    /* Box-model */
    margin-bottom: 0;

    /* Typography */
    color: #000;
}

.accordion-block .accordion > li:last-child,
.accordion-block .accordion > li:last-child a {
    /* Visual */
    -webkit-border-radius: -0px 0 22px 22px;
    -moz-border-radius: -0px 0 22px 22px;
    -ms-border-radius: -0px 0 22px 22px;
    -o-border-radius: -0px 0 22px 22px;
    border-radius: -0px 0 22px 22px;
}

.accordion-block .accordion a.toggle.active {
    /* Visual */
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

ul.accordion {
    /* Box-model */
    padding: 0;
    margin: 0;

    /* Visual */
    list-style: none;
}

ul.accordion > li { margin: 0; }
ul.accordion > li:before { display: none;}

ul.accordion .inner {
    /* Box-model */
    padding: 20px 40px 20px 28px;
    overflow: hidden;
    display: none;

    /* Visual */
    border-bottom: 1px solid #ebebeb;
}

ul.accordion >li:last-child .inner { border-bottom: 0;}
ul.accordion .inner p { margin-bottom: 0;}

ul.accordion li a.toggle {
    /* Box-model */
    width: 100%;
    display: block;
    padding: 10px 40px 10px 28px;

    /* Typography */
    color: #333333;

    /* Visual */
    background: #f5f3f2;
}

ul.accordion li a.toggle:after {
    /* Positioning */
    position: absolute;
    top: 18px;
    right: 28px;

    /* Typography */
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 10px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f054";
    color: #ea7617;
}

ul.accordion li:nth-child(even) a.toggle { background-color: #ffffff;}

ul.accordion li a.toggle.active,
ul.accordion li a.toggle:hover { color: #ea7617; }

.single-testimonial-section { padding: 66px 0 61px;}

.single-testimonial-slider {
    /* Box-model */
    max-width: 715px;
    margin: 0 auto;
}

.single-testimonial-slider .slide { color: #fff;}

.single-testimonial-slider .slide:before {
    /* Box-model */
    width: 93px;
    height: 93px;
    display: inline-block;
    margin-bottom: 25px;

    /* Typography */
    content: "";

    /* Visual */
    background-image: url(../images/quote-icon-circle.png);
    background-repeat: no-repeat;
    -webkit-background-size: 93px;
    background-size: 93px;
}

.single-testimonial-slider .slide p {
    /* Typography */
    color: #fff;
    font-size: 17px;
    line-height: 25px;
}

.single-testimonial-slider .slide .author {
    /* Typography */
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.slick-dots {
    /* Box-model */
    margin: 35px 0 0 0;

    /* Typography */
    line-height: 0;
}

.slick-dots li {
    /* Box-model */
    display: inline-block;
    margin: 0 3px;

    /* Typography */
    line-height: 0;
}

.slick-dots li:before { display: none;}

.slick-dots li button {
    /* Positioning */
    padding: 0;

    /* Box-model */
    width: 11px;
    height: 11px;

    /* Typography */
    font-size: 0;

    /* Visual */
    outline: none !important;
    background-color: transparent;
    border: 1px solid #d7d7d7;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
}

.slick-dots li.slick-active button,
.slick-dots li button:hover {
    /* Visual */
    background-color: #fff;
    border-color: #fff;
}

.img-slider .slick-dots {
    /* Positioning */
    position: absolute;
    bottom: 20px;

    /* Box-model */
    margin-top: 0;
    width: 100%;

    /* Typography */
    text-align: center;
}

.form-button {
    /* Positioning */
    position: fixed;
    right: 0;
    bottom: 19%;
    z-index: 2;

    /* Box-model */
    width: 55px;

    /* Typography */
    text-align: center;
}

.form-button a {
    /* Box-model */
    height: 55px;
    display: inline-block;
    padding: 0 28px;
    margin-left: -28px;

    /* Typography */
    color: #fff;
    font: 400 16px/50px 'Lato', sans-serif;
    text-align: center;
    text-transform: uppercase;

    /* Visual */
    background-color: #ea7617;
    -webkit-border-radius: -0px 0 16px 16px;
    -moz-border-radius: -0px 0 16px 16px;
    -ms-border-radius: -0px 0 16px 16px;
    -o-border-radius: -0px 0 16px 16px;
    border-radius: -0px 0 16px 16px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.form-button a:hover { background-color: #e5631d;}
.form-section { padding: 58px 0;}
.form-section .container { max-width: 950px;}
.form-section p { margin-bottom: 23px;}
.form-block form { margin: 0 -5px;}
form-block  { margin: 0 -5px;}

.form-block .gform_wrapper form {
    /* Box-model */
    margin: 0;
    max-width: inherit;
}

.form-block .gform_wrapper.gf_browser_chrome .gform_body { width: 100%;}
.form-block .gform_wrapper.gf_browser_chrome .gform_body:before,
.form-block .gform_wrapper.gf_browser_chrome .gform_body:after { content: ""; display: table;}
.form-block .gform_wrapper.gf_browser_chrome .gform_body:after { clear: both;}

.form-block form:before,
.form-block form:after,
.gform_wrapper ul:before,
.gform_wrapper ul:after {
    /* Typography */
    display: table;

    /* Typography */
    content: "";
}
.form-block form:after { clear: both;}

.form-block .input-grp {
    /* Typography */
    position: relative;

    /* Box-model */
    float: left;
    width: 33.33%;
    padding: 0 5px;
    margin-bottom: 15px;
}

.form-block .input-grp.full { width: 100%;}
.form-block .input-grp p { margin-bottom: 10px;}

.gform_footer .button,
.form-block .submit-btn {
    /* Box-model */
    margin-top: 5px;
    min-width: 109px;
}

label.checkbox {
    /* Positioning */
    position:relative;

    /* Box-model */
    padding-left: 27px;
    margin-right: 50px;

    /* Typography */
    color: #898989;
    line-height: 26px;

    /* Visual */
    cursor:pointer;
}

label.checkbox [type="checkbox"] { display:none;}

label.checkbox span:before {
    /* Positioning */
    position: absolute;
    left: 0;
    top: 2px;

    /* Box-model */
    width: 16px;
    height: 16px;

    /* Typography */
    content: "";

    /* Visual */
    background-color: #fff;
    border: 1px solid #dbdbdb;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

label.checkbox span:after {
    /* Positioning */
    position: absolute;
    top: 50%;
    left: 3px;

    /* Box-model */
    width: 10px;
    height: 10px;
    margin-top: -4px;

    /* Typography */
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 10px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f00c";
    color: #ea7617;

    /* Visual */
    opacity: 0;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

[type="checkbox"] + span { display:inline-block; }
[type="checkbox"]:checked + span:after { opacity: 1;}

.gform_wrapper ul li .gfield_checkbox { margin: 0;}

.gform_wrapper ul li .gfield_checkbox li {
    /* Box-model */
    width: auto;
    margin: 0 50px 0 0;
    display: inline-block;
}

.gform_wrapper ul li .gfield_checkbox input[type="checkbox"] { display: none;}

.gform_wrapper ul li .gfield_checkbox label {
    /* Positioning */
    position: relative;

    /* Box-model */
    padding-left: 27px;
    max-width: 100%;

    /* Typography */
    color: #898989;
}

.gform_wrapper ul li .gfield_checkbox label:before {
    /* Positioning */
    position: absolute;
    left: 0;
    top: 4px;

    /* Box-model */
    width: 16px;
    height: 16px;

    /* Typography */
    content: "";

    /* Visual */
    background-color: #fff;
    border: 1px solid #dbdbdb;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.gform_wrapper ul li .gfield_checkbox label:after {
     /* Positioning */
    position: absolute;
    top: 50%;
    left: 3px;

    /* Box-model */
    width: 10px;
    height: 10px;
    margin-top: -4px;

    /* Typography */
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 10px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f00c";
    color: #ea7617;

    /* Visual */
    opacity: 0;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}


input[type="checkbox"]:checked + .gform_wrapper ul li .gfield_checkbox label:after { opacity: 1;}

.gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked+label,
.gform_wrapper ul.gfield_radio li input[type=radio]:checked+label { font-weight: 400 !important;}

.gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked+label:after,
.gform_wrapper ul.gfield_radio li input[type=radio]:checked+label { opacity: 1;}


.gform_wrapper ul.gform_fields li.gfield { padding-right: 0;}
body .gform_wrapper ul li.gfield { margin-top: 0 !important;}
body .gform_wrapper .top_label .gfield div.ginput_container { margin-top: 0;}

.form-block .gform_wrapper ul {
    /* Box-model */
    margin: 0 -5px;
    float: left;
    width: 100%;
}

.form-block .gform_wrapper ul:after {}

.form-block .gform_wrapper ul li:before { display: none;}

.form-block .gform_wrapper ul.gform_fields li.gfield {
    /* Positioning */
    position: relative;

    /* Box-model */
    float: left;
    width: 33.33%;
    padding: 0 5px;
    margin-bottom: 15px;
    clear: none;
}

.form-block .gform_wrapper ul.gform_fields li.gfield input { width: 100%;}

.form-block .gform_wrapper textarea.medium {
    /* Box-model */
    padding: 15px 22px !important;
    height: 122px;
}

.form-block .gform_wrapper ul li#field_1_10 { width: 100%;}
.form-block .gform_wrapper ul li .gfield_label { display: none!important;}

.form-block .gform_wrapper #field_2_5 {
    width: 100% !important;
    margin-bottom: 15px !important;
}

.form-block .gform_wrapper ul li.programData { width: 100% !important; margin-bottom: 15px !important;}
.form-block .gform_wrapper ul li.programData .gfield_label { display: block !important; font-size: 15px; font-weight: 400; margin-bottom: 15px;}

.form-block .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) { max-width: 100% !important;}

.form-block .gform_wrapper .gform_footer,
.form-block .gform_footer {
    /* Box-model */
    float: left;
    width: 100%;
    margin: 0 -5px ;
    padding: 0 5px;

    /* Typography */
    text-align: right;
}

.form-block .gform_wrapper .gform_footer input.button,
.form-block .gform_wrapper .gform_footer input[type=submit],
.form-block .gform_wrapper .gform_page_footer input.button,
.form-block .gform_wrapper .gform_page_footer input[type=submit] {
    margin: 0;
}

.validation_error {
    /* Box-model */
    margin-bottom: 20px;

    /* Typography */
    color: #ff0000;
}

.validation_message {
    /* Box-model */
    padding: 0 10px;

    /* Typography */
    color: #ff0000;
    font-size: 13px;
}

.gform_confirmation_message { color: green;}

.calendar-page .calender-section {
    /* Box-model */
    float: left;
    width: 33.56%;
    width: 396px;

    /* Visual */
    border-left: 0;
    border-right: 1px solid #f5f3f2;
}

.calendar-page .calender-section .ui-datepicker-header { padding-right: 90px;}

.calendar-page .calender-section .ui-datepicker-header:before {
    /* Positioning */
    left: auto;
    right: -40px;
}

.calendar-page .calender-section .calender-section-inner { padding: 66px 40px 54px 0;}

.calendar-page .news-section {
    /* Positioning */
    position: relative;

    /* Box-model */
    float: right;
    width: 66.44%;
    width: calc(100% - 396px);
    padding-bottom: 54px;
}

.calendar-page .news-section .news-section-inner { padding: 66px 0 60px 40px;}
.calendar-page .news-section h3 { color: #e97517;}
.conferances { padding: 60px 0 0;}
.conferances .form-section { background-color: #fff;}
.conferances .form-section #field_1_10 { width: 100%;}

.conferances h4 {
    /* Box-model */
    margin-bottom: 25px;

    /* Typography */
    text-align: center;
}

.rooms-blocks { margin: 0 -20px;}

.rooms-blocks .rooms {
    /* Box-model */
    float: left;
    width: 50%;
    padding: 0 20px;
    margin-bottom: 40px;
}

.rooms .rooms-block { position: relative; }
.rooms .rooms-block .img-slider .slick-dots { display: none !important;}

.rooms .room-img img {
    /* Box-model */
    width: 100%;

    /* Visual */
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    border-radius: 24px;
}

.rooms .text-block {
    /* Positioning */
    position: absolute;
    left: 0;
    bottom: 0;

    /* Box-model */
    width: 100%;
    padding: 12px 29px 13px;
}

.rooms .text-block:before {
    /* Visual */
    opacity: .68;
    -webkit-border-radius: -0px 0 24px 24px;
    -moz-border-radius: -0px 0 24px 24px;
    -ms-border-radius: -0px 0 24px 24px;
    -o-border-radius: -0px 0 24px 24px;
    border-radius: -0px 0 24px 24px;
}

.rooms .text-block-inner {
    /* Positioning */
    position: relative;

    /* Box-model */
    display: table;
    width: 100%;
}

.table-cell {
    /* Box-model */
    display: table-cell;
    vertical-align: middle;
}

.rooms .text-block .title {
    /* Typography */
    color: #fff;
    font: 800 24px/26px 'Raleway', sans-serif;
    text-transform: uppercase;
}

.rooms .text-block p {
    /* Box-model */
    margin-bottom: 0;

    /* Typography */
    color: #fff;
    font-size: 16px;
    letter-spacing: .06em
}

.rooms .text-block p br { display: block;}

.restaurant-block {
    /* Positioning */
    position: relative;

    /* Box-model */
    margin-bottom: 40px;

    /* Visual */
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    border-radius: 22px;
}

.restaurant-block:before {
    /* Positioning */
    position: absolute;
    top: 0;
    left: 0;

    /* Box-model */
    width: 100%;
    height: 100%;

    /* Typography */
    content: "";

    /* Visual */
    background-color: rgba(0,0,0,.55);
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    border-radius: 22px;
}

.restaurant-block .restaurant-block-content {
    /* Positioning */
    position: relative;

    /* Box-model */
    display: table;
    min-height: 370px;
    height: 370px;
    margin: 0 auto;
    max-width: 770px;
    padding: 0 15px;
}

.restaurant-block .text-block {
    /* Box-model */
    display: table-cell;
    vertical-align: middle;
}

.restaurant-block .text-block .title {
    /* Box-model */
    margin-bottom: 13px;

    /* Typography */
    font: 800 27px/31px 'Raleway', sans-serif;
    color: #ea7617;
    text-transform: uppercase;
}
.restaurant-block .text-block p {
    /* Box-model */
    margin-bottom: 0;

    /* Typography */
    font-size: 16px;
    color: #fff;
}

.booking-form .input-grp { margin-bottom: 10px;}

#ui-datepicker-div {
    /* Box-model */
    display: none;
    margin-top: 0;

    /* Visual */
    border: 1px solid #dbdbdb;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#ui-datepicker-div .ui-datepicker-calendar { width: auto;}

#ui-datepicker-div .ui-datepicker-header {
    /* Box-model */
    padding: 10px 10px;

    /* Visual */
    border-bottom: 1px solid #dbdbdb;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#ui-datepicker-div .ui-datepicker-title { font-size: 22px;}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all {
    /* Positioning */
    top: 10px;

    /* Box-model */
    width: 26px;
    height: 26px;
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all:before {
    /* Positioning */
    top: 7px;

    /* Typography */
    font-size: 11px;
}

#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-next { right: 10px;}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-prev { right: 40px;}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-prev:before { left: 6px;}
#ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-next:before { right: 6px;}

#ui-datepicker-div .ui-datepicker-calendar thead {
    background: transparent;
}

#ui-datepicker-div .ui-datepicker-calendar th,
#ui-datepicker-div .ui-datepicker-calendar td,
.ui-datepicker-calendar td {
    /* Box-model */
    width: 44px;
    height: 44px;
    padding: 1px;
}

#ui-datepicker-div .ui-datepicker-calendar td a {
    /* Box-model */
    width: 42px;
    height: 42px;

    /* Typography */
    font: 300 15px 'Roboto', sans-serif;
    line-height: 42px;
    color: #333333;

    /* Visual */
    background: #f5f3f2;
}

#ui-datepicker-div .ui-datepicker-calendar td a:hover,
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-active,
#ui-datepicker-div .ui-datepicker-calendar .ui-datepicker-today a {
    /* Box-model */
    margin: 0;

    /* Typography */
    color: #fff;
    -webkit-text-shadow: none;
    -moz-text-shadow: none;
    -ms-text-shadow: none;
    -o-text-shadow: none;
    text-shadow: none;

    /* Visual */
    background: #e97517;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.input-date:after {
    /* Positioning */
    position: absolute;
    top: 0;
    right: 5px;

    /* Box-model */
    width: 46px;
    height: 42px;

    /* Typography */
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 14px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f073";
    font-size: 16px;
    text-align: center;
    color: #fff;
    line-height: 42px;

    /* Visual */
    background-color: #ea7617;
    -webkit-border-radius: 0 18px 18px 0;
    -moz-border-radius: 0 18px 18px 0;
    -ms-border-radius: 0 18px 18px 0;
    -o-border-radius: 0 18px 18px 0;
    border-radius: 0 18px 18px 0;
}

.form-block .gform_wrapper .chosen-container-single .chosen-single {
    /* Box-model */
    height: auto!important;
    padding: 0 22px!important;
    height: 42px!important;

    /* Typography */
    font: 300 14px/42px 'Lato', sans-serif!important;
    color: #aeaeae!important;

    /* Visual */
    border: 1px solid #dbdbdb!important;
    background: #fff!important;
    box-shadow: none!important;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
    border-radius: 18px;
}

.form-block .gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single {
    /* Visual */
    border: 1px solid #dbdbdb;
    background: #fff;
    box-shadow: none
}

.form-block .gform_wrapper .chosen-container-single .chosen-search { display: none;}

.form-block .gform_wrapper .chosen-container .chosen-results {
    /* Box-model */
    padding: 0;
    margin: 0;
}

.form-block .gform_wrapper .chosen-container-single .chosen-single div b { background-image: none !important;}

.form-block .gform_wrapper .chosen-container-single .chosen-single div b:after {
    /* Positioning */
    position: absolute;
    top: 15px;
    right: 15px;

    /* Typography */
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f078";
    color: #ea7617;
    font-size: 12px;

    /* Visual */
    /*-webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);*/
}

.form-block .gform_wrapper .chosen-container .chosen-drop { border: 1px solid #dbdbdb;}

.form-block .gform_wrapper .chosen-container .chosen-results li {
    /* Box-model */
    padding: 13px 22px;

    /* Typography */
    font-size: 14px;
    color: #aeaeae;
}

.form-block .gform_wrapper .chosen-container .chosen-results li.highlighted {
    /* Typography */
    color: #fff;

    /* Visual */
    background-image: none;
    background-color: #ea7617;
}

.form-block .gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single {
    border-bottom-right-radius:0;
    -moz-border-radius-bottomright:0;
    border-bottom-left-radius:0;
    -moz-border-radius-bottomleft:0;
}

.address-block {
    /* Positioning */
    position: relative;

    /* Box-model */
    float: left;
    width: 34.74%;
    margin-bottom: 66px;
}

.address-block.first,
.address-block.last { width: 32.63%;}

.address-block.first { padding-right: 30px;}
.address-block.last { padding-left: 90px;}

.address-block:before {
    /* Positioning */
    position: absolute;
    top: 0;
    left: 0;

    /* Box-model */
    width: 1px;
    height: 100%;

    /* Typography */
    content: "";

    /* Visual */
    background-color: #f5f3f2;
}

.address-block:first-child:before { display: none;}

.address-block .icon {
    /* Positioning */
    position: relative;

    /* Box-model */
    display: inline-block;
    width: 72px;
    height: 72px;
    margin-bottom: 15px;

    /* Visual */
    border: 3px solid #efefef;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
}

.address-block .icon img {
    /* Positioning */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    /* Box-model */
    margin: auto;
}

.address-block .title {
    /* Box-model */
    margin-bottom: 8px;

    /* Typography */
    color: #e97517;
    text-transform: uppercase;
    font-weight: 700;
}

.address-block p { margin-bottom: 0;}
.address-block p a { color: #333333; }
.address-block p a:hover { color: #e97517; }

#googleMap {
    /* Box-model */
    width: 100%;
    height: 100%;
    min-height: 368px;
}

#googleMap iframe {
    /* Box-model */
    height: 100%;
    width: 100%;
}

.map-blocks .map-block { min-height: 468px;}
.map-blocks .content-block h3 {color: #e97517;}
.personal-information { padding-bottom: 19px;}
.personal-information .text-content-head { padding: 60px 0 47px;}
.personal-information .text-content-head h4 {
    /* Box-model */
    margin-bottom: 13px;

    /* Typography */
    color: #e97517;
}

.personal-blocks { margin: 0 -23.5px;}

.personal-blocks .personal-block {
    /* Box-model */
    float: left;
    width: 33.33%;
    padding: 0 23.5px;
    margin-bottom: 47px;
}

.personal-block .personal-content {
    /* Box-model */
    padding: 25px 20px 27px;
    height: 100%;
    width: 100%;
    display: table;

    /* Visual */
    border: 3px solid #efefef;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
    border-radius: 22px;
}

.personal-block .personal-content-inner {
    /* Box-model */
    display: table-cell;
    vertical-align: middle;
}

.personal-block .title {
    /* Typography */
    color: #e97517;
    text-transform: uppercase;
    font-weight: 800;
    font-family: 'Raleway', sans-serif;
}

.personal-block .title i {
    /* Typography */
    text-transform: none;
    font-weight: 500;
}

.personal-block .sub-title { margin-bottom: 10px;}
.personal-block p { margin-bottom: 0; word-break: break-word}

.personal-block a {
    color: #333333;
    word-wrap: break-word;
}

.personal-block a:hover { color: #e97517;}

/*
.form-block .gform_wrapper ul.gform_fields li#field_2_7 {
    width: 100%;
    margin-bottom: 0;
}
*/

.form-block .gform_wrapper.gform_validation_error .top_label input.medium,
.form-block .gform_wrapper.gform_validation_error .top_label select.medium { width: 100%; margin-bottom: 0;}

.form-block .gform_wrapper li.gfield.gfield_error,
.form-block .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    background-color: transparent;
    border: 0;
}

.form-block .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.form-block .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label { margin-top: 0;}

.form-block .gform_wrapper.gform_validation_error ul.gform_fields li.gfield,
.form-block .gform_wrapper.gform_validation_error #field_2_4 { margin-bottom: 25px !important;}

.form-block .gform_wrapper .validation_message {
    /* Positioning */
    position: absolute;
    bottom: -23px;

    /* Box-model */
    padding-left: 15px;

    /* Typography */
    font-weight: 400;
    color: #ff0000;
}

.form-block .gform_wrapper .date .validation_message {
    /* Box-model */
    display: block;
    padding: 0;

    /* Typography */

}

.form-block .gform_wrapper div.validation_error {
    border: 0;
    padding-top: 0;
    color: #ff0000;
    font-weight: 400;
}

.form-block .gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.form-block .gform_wrapper li.gfield_error textarea { border: 1px solid #ff0000;}

.loadingmessage {
    /* Positioning */
    position: absolute;
    top: 50%;
    left: 50%;

    /* Visual */
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

#gform_wrapper_2 {
    display: block !important;
}

.img-content-section.content-center .img-content-blocks .content-block { width: 100%;}

.img-content-section.content-center .img-content-blocks .content-block .content {
    /*box-model*/
    max-width: 950px;
    padding-left: 0;
    float: none;
    margin: 0 auto;
}

div#gform_wrapper_1 ul li .ginput_container_select .chosen-single span { line-height: 37px; }

@-moz-document url-prefix() {
    div#gform_wrapper_1 ul li .ginput_container_select .chosen-single span { line-height: 39px; }
}

div#gform_wrapper_1 ul li .ginput_container_select .chosen-single div b:after { top: 50%; margin-top: -6px; }
#gform_wrapper_1 .gform_footer .gform_button.button { line-height: 37px; }
.form-section.booking-form .form-block #gform_confirmation_wrapper_1 .gform_confirmation_message { text-align: center; }
.personal-blocks .personal-block:last-child .personal-content-inner .sub-title { margin-bottom: 0; }


/* media-query
------------------------------------------------*/
@media handheld, only screen and (max-width: 1300px) {
    .list-content .list-blocks-grp { margin: 0 -25px;}
    .list-content .list-block { padding: 0 30px;}

    .insta-blocks .insta-block .text-block p {
        padding: 15px 50px 15px 15px;
        font-size: 15px;
        line-height: 19px;
    }

    .insta-blocks .insta-block .text-block:after { right: 15px;}
}

@media handheld, only screen and (max-width: 1260px) {
    .insta-blocks .insta-block .text-block p.large { font-size: 22px;}
    .insta-blocks .insta-block .text-block p { font-size: 14px; line-height: 17px; padding-right: 40px;}
    .insta-blocks .insta-block .text-block:after { font-size: 26px; top: 16px;}
}

@media handheld, only screen and (max-width: 1240px) {
    .container { padding: 0 15px;}

    .conference-banner .conference-text .text-block,
    .inner-banner .inner-banner-text .text-block,
    .img-content-blocks .content-block.left .content {
        padding-left: 15px;
        padding-right: 30px;
    }

    .img-content-blocks .content-block .content {
        padding-right: 15px;
        padding-left: 30px;
    }
}

@media handheld, only screen and (max-width: 1200px) {
    .container { padding: 0 15px;}
    .testimonial-section .container { padding: 0 23px;}

    .conference-banner .conference-text .text-block,
    .inner-banner .inner-banner-text .text-block,
    .img-content-blocks .content-block.left .content { padding-left: 15px;}

    .img-content-blocks .content-block.left .content { padding-right: 15px;}

    .img-content-blocks .content-block .content {
        /* Box-model */
        padding-right: 15px;
        padding-left: 15px;
    }

    .list-content .list-blocks-grp { margin: 0 -15px;}
    .map-blocks .content-block.left .content { padding-left: 15px;}
}

@media handheld, only screen and (max-width: 1180px) {
    .conference-banner .conference-text .text-block:before,
    .inner-banner .inner-banner-text .text-block:before { max-width: calc(100% + 2px);}
    .rooms-blocks { margin: 0 -15px;}
    .personal-blocks { margin: 0 -15px;}
    .personal-blocks .personal-block { padding: 0 15px;}
    .insta-blocks .insta-block .text-block p.large { font-size: 20px;}
    .address-block.first { padding-right: 15px;}
    .address-block.last { padding-left: 15px;}
    .inner-banner .inner-banner-text { padding-right: 15px;}
}

@media (min-width:1024px) and (max-width:1200px) {
    .calendar-events {
        /* Positioning */
        position: static;

        /* Box-model */
        width: 100%;
        margin-top: 30px;
    }

    .calendar-events .event-slider .event-slide { min-height: inherit;}
    .calendar-events .event-slider .event-slide p { margin-bottom: 5px;}

    footer .footer-block {
        /* Box-model */
        padding-left: 30px;
        width: 30%;
    }

    footer .footer-block.address,
    footer .footer-block.last { width: 20%; }
    .calender-block .calender-btn { padding: 0 10px;}
}

@media (min-width:1024px) and (max-width:1110px) {
    header .header-right .header-links {
        /* Box-model */
        padding-left: 16px;
        margin-left: 10px;
    }

    nav ul li { margin: 0 10px;}
    .news-section .news-section-inner { padding-right: 30px;}
    .calender-section .calender-section-inner { padding-left: 30px;}
    .calender-block .ui-datepicker-header:before { left: -30px;}
    .testimonial-section .container,
    .testimonial-block { padding: 0 15px;}
    .testimonial-slider { margin: 0 -15px;}
}

@media handheld, only screen and (max-width: 1023px) {
    #wrapper { padding-top: 161px;}
    header .container { padding: 0;}
    header .logo { padding: 26px 15px 16px;}
    header .header-right { padding: 0 15px;}

    header .header-right .header-links {
        /* Box-model */
        padding: 28px 0;

        /* Visual */
        border-left: 0;
    }

    header .nav {
        /* Box-model */
        width: 100%;
        padding: 20px 0;

        /* Typography */
        text-align: center;

        /* Visual */
        border-top: 1px solid #f4f4f4;
    }

    nav ul li > ul { top: 42px;}

    .news-section {
        /* Box-model */
        width: 100%;
        height: auto !important;
    }
    .news-section .news-section-inner { padding: 40px 0;}

    .calender-section {
        /* Box-model */
        width: 100%;
        height: auto !important;

        /* Visual */
        border-left: 0;
    }

    .calender-section .calender-section-inner { padding: 40px 0;}

    .calender-block .ui-datepicker-header:before,
    .ui-datepicker-header:before {
        /* Positioning */
        left: 0;
        right: auto;

        /* Box-model */
        width: 100%;
    }

    .testimonial-block {
        /* Box-model */
        padding: 0 15px;

        /* Visual */
        background-position: 15px 15px;
    }

    .insta-blocks .insta-block .text-block { }
    .insta-blocks .insta-block .text-block p { font-size: 12px; line-height: 15px; padding: 10px 35px 10px 10px;}
    .insta-blocks .insta-block .text-block p.large { font-size: 16px;}

    .insta-blocks .insta-block .text-block:after {
        right: 10px;
        font-size: 22px;
        top: 10px;
    }

    .testimonial-block .testimonial-content .text-block { padding: 27px 20px 28px;}
    .conference-banner { min-height: 413px;}
    footer .footer-block { padding: 0 25px;}
    footer .footer-block.address { width: 26%;}
    footer .footer-block { width: 37%;}
    footer .footer-block:nth-child(3) { padding-right: 0;}
    footer .footer-block.last { display: none;}

    .img-content-blocks .img-block,
    .img-content-blocks .content-block,
    .map-blocks .map-block,
    .map-blocks .content-block { width: 100%;}

    .map-blocks .content-block p br { display: none;}

    .img-content-blocks .img-block {
        /* Box-model */
        height: auto !important;
        min-height: inherit;

        /* Visual */
        background-image: none !important;
    }

    .img-content-blocks .img-block img {
        /* Box-model */
        display: block;
        width: 100%;
    }

    .img-content-blocks .content-block .content,
    .map-blocks .content-block .content { max-width: 100%;}

    .img-content-blocks .content-block .content,
    .map-blocks .content-block .content { padding: 55px 15px 35px 15px}

    .img-content-blocks .content-block.left .content,
    .map-blocks .content-block.left .content { padding-right: 15px; padding-left: 15px;}

    .main-content .content-left,
    .main-content .sidebar { width: 100%;}

    .training-single .training-content { padding-right: 0;}
    .rooms .text-block .title { font-size: 20px; line-height: 22px;}
    .rooms .text-block p { font-size: 15px; line-height: 18px;}
    .rooms .text-block { padding: 10px 29px 11px;}
}

@media (min-width:768px) and (max-width:1023px) {
    .calendar-page .calender-section { width: 386px;}
    .calendar-page .calender-section .calender-section-inner { padding-right: 30px;}

    .calendar-page .calender-section .ui-datepicker-header:before {
        /* Positioning */
        right: -30px;

        /* Box-model */
        width: calc(100vw/2 - 10px);
    }

    .calendar-page .news-section { width: calc(100% - 386px);}
    .calendar-page .news-section .news-section-inner { padding-left: 30px;}
    .calendar-page .news-section .news-listing .news-block .news-block-inner { padding: 16px 15px;}

    .calendar-page .news-section .news-block .date-block {
        /* Box-model */
        width: 74px;
        height: 70px;
        padding: 10px 10px;
    }

    .calendar-page .news-listing .news-block .content {
        /* Box-model */
        width: calc(100% - 74px);
        padding-left: 15px;
    }

    .personal-block .personal-content { padding: 24px 10px 28px;}
    .training-blocks .grid-block .content { padding: 16px 15px 23px;}
    .training-blocks .grid-block .title { font-size: 15px;}
    nav ul li > ul > li > ul {
        left: -230px;
        width: 100%;
    }
}

@media handheld, only screen and (max-width: 950px) {
    #ui-datepicker-div {
        left: auto !important;
        right: 15px;
    }

    .personal-blocks .personal-block {
        /* Box-model */
        width: 50%;
        margin-bottom: 30px;
    }
}

@media handheld, only screen and (max-width: 767px) {
    .banner { height: 450px;}
    .banner-slider .slide { min-height: 450px;}
    .banner-text .banner-text-block { max-width: 550px;}
    .banner-text .banner-content { padding: 37px 40px 39px;}
    h1 { font-size: 38px;}
    .banner .down-arrow { bottom: 10px;}
    h2 { font-size: 34px;}
    .instagram-section .content-head { padding: 43px 0 32px;}

    .insta-blocks .insta-block {
        /* Box-model */
        width: 33.33%;

        /* Visual */
        border-bottom: 1px solid #fff;
    }

    .insta-img {
	max-height: 25vw !important;
    }

    .insta-blocks .insta-block:nth-child(3n+1):before { display: none;}

    .testimonial-block .testimonial-content .text-block { background-position: 15px 15px;}
    footer .footer-bottom { text-align: center;}
    footer .footer-main { padding: 45px 0 35px;}

    footer .footer-logo {
        /* Box-model */
        width: 100%;
        padding: 30px 0 20px;
    }

    footer .copyright {
        /* Box-model */
        width: 100%;
        padding: 0 0 30px;
    }

    footer p, footer a { font-size: 15px;}
    .blocks-grid .grid-block { width: 50%; }
    .news-single .news-content { width: 100%;}
    .news-single .img-block { width: 100%;}
    .text-content-head p br,
    .restaurant-block .text-block p br { display: none;}

    .list-content .list-block {
        /* Box-model */
        width: 100%;
        padding: 0 15px;

        /* Visual */
        border-bottom: 1px solid #f5f3f2;
    }

    .list-content .list-block:before { display: none;}
    .list-content ul { padding: 40px 0 20px;}

    .calendar-page .calender-section {
        /* Box-model */
        width: 100%;

        /* Visual */
        border-right: 0;
    }

    .calendar-page .calender-section .calender-block {
        /* Box-model */
        max-width: 356px;
        margin: 0 auto;
    }

    .calendar-page .calender-section .ui-datepicker-header {
        /* Box-model */
        max-width: 356px;
        padding: 0 35px 25px;

        /* Typography */
        text-align: center;
    }

    .calendar-page .calender-section .calender-section-inner,
    .calendar-page .news-section .news-section-inner { padding: 40px 0;}

    .calendar-page .calender-section .ui-datepicker-header:before {
        /* Box-model */
        width: 100%;
        right: 0;
    }

    .calendar-page .calender-section .ui-datepicker-header .ui-corner-all.ui-datepicker-prev { left: 0;}

    .calendar-page .news-section { width: 100%;}
    .rooms-blocks { margin: 0 -10px;}
    .rooms-blocks .rooms { padding: 0 10px; margin-bottom: 20px;}
    .rooms .text-block .title { font-size: 17px; line-height: 19px;}
    .rooms .text-block p {
        font-size: 14px;
        line-height: 17px;
    }
    .rooms .text-block { padding: 5px 15px;}
    .conferances { padding: 40px 0 0;}
    .address-blocks-grp { margin-bottom: 20px;}

    .address-block {
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 30px;
    }

    footer { text-align: center;}
    footer .footer-block:before { display: none;}

    footer .footer-block.address,
    footer .footer-block {
        /* Box-model */
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }

    footer .footer-main { padding-bottom: 15px;}
    footer .footer-title { margin-bottom: 5px;}

    nav ul li > ul > li > ul {
        left: -230px;
        width: 100%;
    }

    .calendar-events .event-slider .event-slide { padding: 20px 15px 55px;}
    .event-slider .slick-arrow.slick-prev { left: 15px;}
    .event-slider .slick-arrow.slick-next { left: 40px;}

    .form-button { display: none;}
}

@media handheld, only screen and (max-width: 641px) {
    .gform_wrapper.gf_browser_chrome .chosen-container-single .chosen-single div b,
    .gform_wrapper.gf_browser_gecko .chosen-container-single .chosen-single div b,
    .gform_wrapper.gf_browser_safari .chosen-container-single .chosen-single div b { top: 0 !important;}
}

@media handheld, only screen and (max-width: 639px) {
    .banner-slider h1,
    .banner-slider h2,
    h1 {
        /* Typography */
        font-size: 26px;
        line-height: 30px;
        word-break: break-word;
    }

    .banner-text p { font-size: 16px;}
    nav ul li { margin: 0 15px;}
    .banner-text .banner-text-block { max-width: calc(100% - 90px);}

    .conference-banner .conference-text .text-block,
    .inner-banner .inner-banner-text .text-block {
        /* Box-model */
        max-width: calc(100% - 15px);
        padding-right: 25px;
    }

    .form-block .gform_wrapper form { margin: 0;}

    .form-block .input-grp,
    .gform_wrapper ul li {
        /* Box-model */
        width: 100% !important;
        padding: 0 !important;
    }

    .form-block .gform_wrapper .gform_footer, .form-block .gform_footer { padding: 0;}

    .gform_wrapper ul li .gfield_checkbox li { margin: 0;}

    .form-block .gform_wrapper ul li.programData { width: 100% !important;}

    .ginput_container_date:after { right: 0 !important;}

    .form-block .gform_wrapper .chosen-container-single .chosen-single div b:after { top: 3px;}

    label.checkbox {
        /* Box-model */
        float: left;
        margin: 0;
        clear: both;
    }

    label.checkbox span:before { top: 6px;}

    .rooms-blocks { margin: 0;}

    .rooms-blocks .rooms {
        /* Box-model */
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .rooms .text-block-inner { height: auto !important;}

    .rooms .text-block { padding: 8px 15px 9px;}

    .personal-blocks .personal-block {
        /* Box-model */
        width: 100%;
        margin-bottom: 20px;
    }
    .form-block .gform_wrapper .chosen-container-single .chosen-drop ul li {
        padding: 10px 20px !important;
        display: block;
        float: left;
    }
    .form-block .gform_wrapper .chosen-container-single .chosen-drop ul li.highlighted {
        color: #fff;
    }

    .buttons-omoss a.btn {
        height: auto;
        padding: 11px 18px 9px;
        line-height: 18px;
    }
}

@media handheld, only screen and (max-width: 550px) {
    #wrapper { padding-top: 87px;}
    header .logo { padding: 15px 15px 15px;}

    header .nav,
    header .header-right .header-links { display: none;}

    #nav-icon1,
    nav ul li.mobile_nav_buttons { display: block;}

    header .header-right {
        /* Box-model */
        width: 100%;

        /* Visual */
        border-top: 1px solid #f4f4f4;
    }

    header .header-right .header-links {
        /* Box-model */
        margin: 0;
        width: 100%;
        padding: 15px 0 17px;

        /* Typography */
        text-align: center;
    }

    header .header-right .header-links .btn {
        /* Box-model */
        float: none;
        margin: 0 4px;
    }

    .banner-text .banner-content { padding: 20px 30px 20px; }

    .banner-text p {
        /* Typography */
        font-size: 14px;
        line-height: 20px;
    }

    .banner-text h1,
    .banner-slider h2 {
        /* Typography */
        font-size: 26px;
        line-height: 30px;
    }

    .banner-text .btn {
        /* Box-model */
        height: 31px;
        margin-top: 10px;

        /* Typography */
        line-height: 29px;
    }

    .calendar-page .calender-section .ui-datepicker-header,
    .calender-block .ui-datepicker-header {
        /* Box-model */
        padding: 0 35px 25px;
        max-width: 294px;
        margin: 0 auto;

        /* Typography */
        text-align: center;
    }

    #ui-datepicker-div .ui-datepicker-header { text-align: center;}
    #ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-prev {
        /*positioning*/
        left: 10px;
        top:13px;
    }
    #ui-datepicker-div .ui-datepicker-header .ui-corner-all.ui-datepicker-next{ top:13px; }

    .ui-datepicker-header .ui-corner-all {
        /* Box-model */
        width: 30px;
        height: 30px;
    }

    .ui-datepicker-header .ui-corner-all:before { font-size: 11px;}
    .ui-datepicker-header .ui-corner-all.ui-datepicker-next:before { right: 8px;}
    .ui-datepicker-header .ui-corner-all.ui-datepicker-prev:before { left: 8px;}

    .ui-datepicker-header .ui-corner-all.ui-datepicker-prev {
        /* Positioning */
        right: auto;
        left: 0;
    }

    .ui-datepicker-calendar {
        /* Box-model */
        width: 100%;
        margin: 0 auto;
    }

    .calendar-events {
        /* Positioning */
        position: static;

        /* Box-model */
        width: 100%;
        margin-top: 20px;
    }

    .calendar-events .event-slider .event-slide {min-height: inherit;}

    .calender-block .calender-btn  {
        /* Positioning */
        position: static;

        /* Box-model */
        margin: 0 auto 20px;
        max-width: 294px;
        display: block;

        /* Typography */
        color: #fff;

        /* Visual */
        background: #ea7617;
    }

    .blocks-grid .grid-block { width: 100%; margin-left: 0;}
    #ui-datepicker-div .ui-datepicker-title{
        padding-left: 35px;
    }
}

.morecontent span { display: none;}

.ginput_container_date:after {
    /* Positioning */
    position: absolute;
    top: 0;
    right: 5px;

    /* Box-model */
    width: 46px;
    height: 42px;

    /* Typography */
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 14px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f073";
    font-size: 16px;
    text-align: center;
    color: #fff;
    line-height: 42px;

    /* Visual */
    background-color: #ea7617;
    -webkit-border-radius: 0 18px 18px 0;
    -moz-border-radius: 0 18px 18px 0;
    -ms-border-radius: 0 18px 18px 0;
    -o-border-radius: 0 18px 18px 0;
    border-radius: 0 18px 18px 0;
}
ui-widget{
    font-size: 0.7em;
}

@media handheld, only screen and (max-width: 479px) {
    .banner-text .banner-content { border-radius: 15px;}
    .news-section .news-section-inner { padding-bottom: 20px;}

    .news-section .grid-block .content {
        /* Box-model */
        width: 100%;
        padding: 15px 30px 0 0;
    }

    .calender-section .calender-section-inner { padding-top: 0;}
    .testimonial-slider { padding-bottom: 55px;}
    .insta-blocks .insta-block { width: 50%;}
    .insta-blocks .insta-block:last-child { display: none;}
    .insta-blocks .insta-block:before { display: none;}
    .conference-banner { min-height: 330px;}
    .conference-banner .conference-text { bottom: 30px;}
    .conference-banner .text-block .text { font-size: 15px;}
    .conference-banner .text-block .text.large { font-size: 30px;}
    h2 {
        font-size: 21px;
        line-height: 27px;
        word-break: break-word;
    }



    .ui-datepicker-calendar th,
    .ui-datepicker-calendar td {
        /* Box-model */
        width: calc(100% / 7);
        height: 42px;
    }

    .ui-datepicker-calendar td span,
    .ui-datepicker-calendar td a {
        /* Box-model */
        width: 100%;
        height: 100%;

        /* Typography */
        line-height: 40px;
    }

    .banner-text .banner-content { padding: 20px 20px 20px;}

    .banner-text h1,
    .banner-slider h2{ font-size: 18px; line-height: 24px;}
}

@media handheld, only screen and (max-width: 370px) {
    .news-listing .news-block .news-block-inner { padding: 15px 15px;}

    .news-block .date-block {
        /* Box-model */
        width: 64px;
        height: 60px;
        padding: 10px 5px;

        /* Typography */
        line-height: 20px;

        /* Visual */
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        -o-border-radius: 12px;
        border-radius: 12px;
    }

    .news-block .date-block .date { font-size: 20px;}
    .news-block .date-block .month { font-size: 14px;}

    .news-listing .news-block .content {
        /* Box-model */
        width: calc(100% - 64px);
        padding-left: 15px;
    }

}

@media handheld, only screen and (max-width: 330px) {
    #ui-datepicker-div { right: 5px;}
}


.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}


input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus { color: #aeaeae;}

body .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html { width: 100%;}
.inner-banner {
    min-height: 260px;
    height: 260px;
}
.buttons-omoss {
    margin: 0 -5px;
}
 .buttons-omoss a.btn {
    margin: 5px;
}