@charset "UTF-8";
/*---- FONTS START -----*/
@import 'https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&subset=cyrillic,cyrillic-ext,greek-ext,latin-ext,vietnamese';

@font-face {
    font-family: 'Brandon-Grotesque-Medium';
    src: url("../fonts/Brandon Grotesque/brandongrotesque-medium.otf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Brandon-Grotesque-Bold';
    src: url("../fonts/Brandon Grotesque/brandongrotesque-bold.otf");
}

@font-face {
    font-family: 'Brandon-Grotesque-Regular';
    src: url("../fonts/Brandon Grotesque/brandongrotesque-regular.otf");
}

@font-face {
    font-family: 'Open-Sans-Regular';
    src: url("../fonts/Open_Sans/OpenSans-Regular.ttf");
}

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

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
    display: block;
}

/*------ RESET END -------*/
/*------ GLOBAL STYLE START -------*/
body {
    height: auto !important;
    min-height: 100%;
    font-family: "Brandon-Grotesque-Regular";
}

ul {
    padding: 0 0 0 20px;
}
ul li{
    font-family: "Open-Sans-Regular";
    color: #42403f;
    font-size: 14px;
    line-height: 24px;
}

.mobile-menu ul,
.sidebar ul,
.menu-desktop ul,
.sidebar-list ul {
    padding: 0;
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clearfix:after {
    display: block;
    visibility: hidden;
    font-size: 0;
    height: 0;
    content: " ";
    clear: both;
}

h1 {
    display: inline-block;
    color: #fff;
    font-size: 45px;
    line-height: 55px;
    letter-spacing: 0.06em;
    position: relative;
    text-transform: uppercase;
    font-family: "Brandon-Grotesque-Bold";
}

h1:before {
    content: '';
    position: absolute;
    top: 49%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -88%;
    width: 86%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

h1:after {
    content: '';
    position: absolute;
    top: 49%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -88%;
    width: 86%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

h2 {
    color: #f06430;
    text-transform: uppercase;
    position: relative;
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 0.05em;
    margin-bottom: 53px;
}

h2:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 8.5%;
    height: 1px;
    background: #f06430;
}

h3 {
    text-align: center;
    text-transform: uppercase;
    color: #42403f;
    font-size: 14px;
    line-height: 35px;
    letter-spacing: 0.05em;
}

h4 {
    font-size: 16px;
    line-height: 28px;
}

a {
    line-height: normal;
    display: inline-block;
}

a:hover {
    text-decoration: none;
}

input::-webkit-input-placeholder {
    color: #999999;
}

input:-moz-placeholder {
    color: #999999;
}

textarea::-webkit-input-placeholder {
    color: #999999;
}

p {
    font-family: "Open-Sans-Regular";
    color: #42403f;
    font-size: 14px;
    line-height: 24px;
}

.container-fluid {
    max-width: 1170px;
    margin: 0 auto;
}

/*----- GLOBAL STYLE END -----*/
/*----- HEADER START -----*/
header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.fixed {
    z-index: 149;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding-top: 0px;
    background: #fff;
    margin: 0;
}

/*---- LOGO START -----*/
.logo {
    width: 200px;
    margin: 30px 0px 24px 0;
}

.logo img {
    display: block;
    width: 100%;
}

/*----- LOGO END -----*/
/*----- STRUCTURE MENU START -----*/
.menu-desktop, .menu-icon {
    float: left;
}

.menu-icon {
    margin-left: 34px;
    margin-top: -2px;
}

.mobile-menu {
    display: none;
}

/*----- STRUCTURE MENU END -----*/
/*----- MODAL SIDEBAR START -----*/
#modal_menu {
    width: 300px;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    right: 0;
    display: none;
    opacity: 0;
    z-index: 5;
    padding-top: 70px;
}

#modal_menu a {
    transition: all 0.5s;
}

#modal_menu a:hover {
    color: #f06430;
    transition: all 0.5s;
}

#modal_menu #modal_close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 14px;
    height: 14px;
    background: url("../images/cross-out.svg") center center no-repeat;
    cursor: pointer;
    display: block;
    transition: all 0.5s;
}

#modal_close:hover {
    transition: all 0.5s;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

#overlay {
    z-index: 3;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    display: none;
}

.sidebar li {
    float: none !important;
}

/*----- MODAL SIDEBAR END -----*/
/*------ MOBAIL MENU ICON START -----*/
#resp-btn-box {
    width: 35px;
    height: 30px;
    cursor: pointer;
    position: relative;
}

.resp-btn {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 24px;
    height: 2px;
    background-color: #42403f;
    transition: all 0.5s;
}

.resp-btn:before {
    content: '';
    position: absolute;
    top: -7px;
    left: 0;
    width: 16px;
    height: 2px;
    background-color: #42403f;
    transition: all 0.5s;
}

.resp-btn:after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 12px;
    height: 2px;
    background-color: #42403f;
    transition: all 0.5s;
}

.resp-btn:hover {
    transition: all 0.5s;
    background: #f06430;
}

#resp-btn-box:hover .resp-btn {
    background: #f06430;
}

#resp-btn-box:hover .resp-btn:before {
    transition: all 0.5s;
    width: 24px;
    background: #f06430;
}

#resp-btn-box:hover .resp-btn:after {
    transition: all 0.5s;
    width: 24px;
    background: #f06430;
}

/*------ MOBAIL MENU ICON END -----*/
/*----- MENU START -----*/
.menu {
    float: right;
    margin-top: 57px;
}

.menu .dropdown .fa-angle-down {
    position: relative;
    left: 8px;
    padding-left: 2px;
    color: #f06430;
}

.menu .dropdown.open .dropdown-toggle:hover:before {
    display: none;
}

.menu .dropdown.open .dropdown-toggle:hover {
    text-decoration: none;
}

.menu .dropdown.open {
    padding: 10px 27px 7px 20px;
    top: -10px;
    left: 26px;
    background: #f06430;
}

.menu .dropdown.open .dropdown-toggle {
    color: #fff !important;
    text-decoration: none;
}

.menu .dropdown.open li {
    position: relative;
    padding-left: 10px;
}

.menu .dropdown.open li:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -22px;
    width: 55px;
    height: 50px;
    background: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2020.1.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2035.9%2033.3%22%20style%3D%22enable-background%3Anew%200%200%2035.9%2033.3%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0D%0A%09.st0%7Bfill%3Anone%3Bstroke%3A%23F06430%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A10%3B%7D%0D%0A%3C%2Fstyle%3E%0D%0A%3Cpolyline%20class%3D%22st0%22%20points%3D%2217.4%2C19%2019.7%2C16.5%2019.8%2C16.5%2017.3%2C14.3%20%22%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A") no-repeat;
    background-size: cover;
}

.menu .dropdown.open li a {
    text-transform: none;
    font-size: 13px;
    line-height: 20px;
    font-family: "Open-Sans-Regular";
    outline: none;
}

.menu .dropdown.open .fa-angle-down {
    color: #fff;
}

.menu li {
    float: left;
    margin-left: 47px;
    letter-spacing: 1px;
}

.menu li a {
    display: block;
    font-size: 12px;
    line-height: 24px;
    font-family: "Brandon-Grotesque-Regular";
    text-transform: uppercase;
    color: #42403f;
    padding: 5px;
    position: relative;
    outline: none;
    text-decoration: none;
}

.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
    background: transparent;
    color: #f06430;
}

.dropdown-menu {
    width: 270px;
    border-radius: 0;
    padding-top: 19px;
    padding-bottom: 20px;
    top: 97%;
}

.dropdown-menu li {
    float: none;
    margin-left: 20px;
}

.menu li a:before {
    position: absolute;
    top: 5px;
    left: 5px;
    color: #f06430;
    content: attr(data-hover);
    transition: all 0.5s;
    padding: 0 0 5px 0;
    max-width: 0;
    overflow: hidden;
    -webkit-transition: max-width 0.5s;
    -moz-transition: max-width 0.5s;
}

.menu li a:hover:before {
    transition: all 0.5s;
    max-width: 100%;
}

/*----- MENU END -----*/
/*----- HEADER START -----*/
.header-page {
    width: 100%;
    background: #f06430;
    padding: 90px 0 87px 0;
    text-align: center;
}

.text-section {
    padding: 93px 0 37px 0;
}

.text-section h2 {
    font-size: 25px;
    margin-bottom: 45px;
}

.text-section h2:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 10%;
    height: 1px;
    background: #f06430;
}

.text-section .text-row {
    border-bottom: 1px solid #e8e8e8;
    padding: 73px 0 48px 0;
}

.text-section .text-row:first-child {
    padding: 0 0 47px 0;
}

.text-section .text-row:last-child {
    border: 0;
    padding: 75px 0 0 0;
}

.text-section .text-row:last-child p {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.03em;
    margin: 26px 0 0 0;
}

.text-section .text-row h4 {
    color: #f06430;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.03em;
    font-family: "Open-Sans-Regular";
    margin-bottom: 27px;
}

.text-section .text-row p {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.03em;
    font-family: "Open-Sans-Regular";
    margin-bottom: 25px;
}

.text-section .indent-top {
    margin-top: 60px;
}

main {
    padding-top: 100px;
}

.text-section .text-row p:nth-child(4) {
    margin-bottom: 56px;
}

/*----- HEADER END -------*/
/*---- FOOTER START -----*/
.footer-box p {
    font-size: 12px;
    line-height: 20px;
}

.footer-top {
    padding: 36px 0 27px 0;
    border-top: 1px solid #e8e8e8;
}

.with-from {
    display: inline-block;
    width: 150px;
    margin: 17px auto;
}

.with-from a {
    display: block;
}

.with-from a img {
    display: block;
    width: 100%;
}

.footer-bottom {
    background: #f9f9f9;
    border-top: 1px solid #e8e8e8;
    padding-top: 99px;
    font-family: "Open-Sans-Regular";
}

.footer-bottom .logo {
    margin: 0;
}

.footer-bottom a {
    color: #00a3e0;
    font-size: 12px;
    line-height: 20px;
}

.footer-bottom .row-contact {
    padding-bottom: 35px;
    border-bottom: 1px solid #e8e8e8;
}

.footer-bottom .contact-info {
    margin-top: -5px;
}

.footer-bottom .contact-info a {
    color: #42403f;
}

.row-copyright {
    padding: 37px 0 95px 0;
}

.row-copyright p {
    font-size: 0.750em;
    line-height: 1.7em;
}

.menu-bottom {
    margin-top: -4px;
    text-align: right;
}

.menu-bottom li {
    display: inline-block;
    margin: 0 7px;
}

.menu-bottom li a {
    padding: 0 2.5px;
}

.menu-bottom li a:hover {
    color: #f06430;
}

.footer-title {
    font-family: "Open-Sans-Regular";
}

.footer-title h4 {
    position: relative;
    color: #f06430;
    font-family: "Brandon-Grotesque-Regular";
    font-size: 14px;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 27px;
    margin-top: -8px;
    letter-spacing: 0.06em;
}

.footer-title h4:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 20%;
    height: 1px;
    background: #f06430;
}

.footer-title .email a {
    color: #00a3e0;
}

.footer-title .email span {
    color: #42403f;
}

.contact-footer-custom .row-contact {
    display: none;
}

.contact-footer-custom .footer-bottom {
    padding-top: 0;
}

.contact-footer-custom .row-copyright {
    padding: 47px 0 40px 0;
}

.text-small a, .content_textimg a {
    transition: all 0.5s;
}

.text-small a:hover, .content_textimg a:hover {
    color: #f06430;
}

/*---- FOOTER END -----*/
/*----- HOME PAGE START -----*/
/*----- SECTION INFO TOP START ------*/
.box-with-overlay {
    position: relative;
}

.box-with-overlay-content {
    position: relative;
}

.info-top {
    width: 100%;
    background: url("../images/img-top.png") center center no-repeat;
    background-size: cover;
    padding: 180px 0 165px 0;
    position: relative;
}

.box-with-overlay .overlay-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.box-with-overlay .overlay50 {
    background-color: black;
    opacity: 0.5;
    transition: all 250ms;
}

.box-with-overlay:hover .overlay50 {
    opacity: 0.7;
}

.box-with-overlay .overlay40 {
    background-color: black;
    opacity: 0.4;
}

.box-with-overlay .overlay30 {
    background-color: black;
    opacity: 0.3;
}

.info-top .info-top-box {
    width: 71%;
    margin: auto;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 0;
    text-align: center;
    padding: 0 100px 60px 100px;
    position: relative;
}

.info-top .info-top-box:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 26%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.info-top .info-top-box:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 26%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.info-top .info-top-box .info-top-title {
    margin-bottom: 13px;
}

.info-top .info-top-box .info-top-p {
    margin-bottom: 33px;
}

.info-top .info-top-box h1 {
    top: -25px;
    font-size: 45px;
    line-height: 55px;
    color: #fff;
    position: relative;
    margin-bottom: 0;
    font-family: "Brandon-Grotesque-Regular";
    letter-spacing: 0.05em;
}

.info-top .info-top-box h1:before {
    display: none;
}

.info-top .info-top-box h1:after {
    display: none;
}

.info-top .info-top-box h1 span {
    display: block;
    font-family: "Brandon-Grotesque-Bold";
}

.info-top .info-top-box p {
    color: #fff;
    /* line-height: 1.6em;
    font-size: 0.9em;*/
}

.info-top-btn, .registration-btn {
    display: inline-block;
    border: 1px solid #fff;
    padding: 13px 32px;
    transition: all 0.5s;
}

.info-top-btn a, .registration-btn a {
    color: #fff;
    text-transform: uppercase;
    font-family: "Brandon-Grotesque-Regular";
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0.1em;
}

.info-top-btn:hover, .registration-btn:hover {
    border-color: #f06430;
    background: #f06430;
    transition: all 0.5s;
}

/*----- SECTION INFO TOP END ------*/
/*----- SECTION CARD VISIT START ------*/
.content_memberlist {
    margin-bottom: 40px !important;
}

.card-member {
    border: 1px solid #e8e8e8;
    border-bottom: 0;
}

.card-member .content-card {
    padding: 40px 0px 40px 0px;
}

@media (min-width: 992px) {
    .card-member .content-card {
        padding: 40px 55px 40px 0px;
    }
}

.card-member .bg-profil {
    margin: auto;
    height: 150px;
    width: 150px;
    border: 1px solid #e8e8e8;
    border-radius: 100%;
    background-repeat: no-repeat;
}

.card-member .title {
    font-family: "Open Sans", sans-serif;
    color: #f06430;
    font-size: 14px;
    line-height: 26px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .card-member .title {
        margin-top: 30px;
    }
}

.card-member .infos {
    font-family: "Open Sans", sans-serif;
    color: #000000;
    font-size: 14px;
    line-height: 26px;
}

.card-member a {
    color: #f06430;
}

.card-member p {
    font-family: "Open Sans", sans-serif !important;
}

.card-member .inner-card {
    text-align: center;
}

@media (min-width: 768px) {
    .card-member .inner-card {
        text-align: left;
    }
}

.card-member .content {
    text-align: left;
    padding-bottom: 20px;
}

@media (max-width: 767px) {
    .card-member .content {
        padding-left: 20px;
    }
}

.card-member .content hr {
    margin: 30px 0;
}

@media (max-width: 991px) {
    .card-member .content hr {
        margin-left: -20px;
    }
}

.card-member .content ul {
    font-family: "Open Sans", sans-serif;
    padding-left: 23px;
}

.card-member .content ul li {
    list-style: none;
    font-size: 14px;
    font-family: "Open Sans", sans-serif !important;
    line-height: 25px;
    text-indent: -23px;
    position: relative;
    padding-bottom: 5px;
}

.card-member .content ul li:last-child {
    padding-bottom: 0;
}

.card-member .content ul li:before {
    content: '\2022';
    max-width: 0;
    max-height: 0;
    padding-right: 10px;
    top: 0;
    vertical-align: middle;
    color: #393939;
    font-size: 18px;
}

.link-contact {
    background-color: #00a3e0;
    padding: 15px 40px 15px 0;
}

.link-contact a {
    display: block;
    color: white;
    font-size: 10px;
    font-family: "Open-Sans-Regular";
    font-weight: 500;
    letter-spacing: .012em;
    text-transform: uppercase;
}

/*----- SECTION CARD VISIT END ------*/
/*----- SECTION TEXT INFO START ------*/
.text-info {
    width: 100%;
    padding: 95px 0 90px 0;
}

.text-info p {
    text-align: center;
    line-height: 26px;
}

.text-info .text-info-p h4 {
    text-align: center;
    font-family: "Open-Sans-Regular";
    color: #f06430;
    margin-bottom: 27px;
    letter-spacing: 0.03em;
}

.text-info .text-info-btn {
    text-align: center;
    margin-top: 28px;
}

.text-info .text-info-btn a {
    position: relative;
    color: #00a3e0;
    text-transform: uppercase;
    font-family: "Brandon-Grotesque-Regular";
    font-size: 12px;
    line-height: 24px;
    padding-left: 20px;
    transition: all 0.5s;
}

.text-info .text-info-btn a:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 14px;
    height: 12px;
    background: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2019.1.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Capa_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2031.49%2031.49%22%20style%3D%22enable-background%3Anew%200%200%2031.49%2031.49%3B%22%20xml%3Aspace%3D%22preserve%22%20  fill='#00a3e0' %3E%0D%0A%3Cpath%20d%3D%22M21.205%2C5.007c-0.429-0.444-1.143-0.444-1.587%2C0c-0.429%2C0.429-0.429%2C1.143%2C0%2C1.571l8.047%2C8.047H1.111%0D%0A%09C0.492%2C14.626%2C0%2C15.118%2C0%2C15.737c0%2C0.619%2C0.492%2C1.127%2C1.111%2C1.127h26.554l-8.047%2C8.032c-0.429%2C0.444-0.429%2C1.159%2C0%2C1.587%0D%0A%09c0.444%2C0.444%2C1.159%2C0.444%2C1.587%2C0l9.952-9.952c0.444-0.429%2C0.444-1.143%2C0-1.571L21.205%2C5.007z%22%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A") no-repeat;
}

.text-info .text-info-btn a:hover {
    transition: all 0.5s;
    color: #f06430;
}

.text-info .text-info-btn a:hover:before {
    background: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2019.1.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Capa_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2031.49%2031.49%22%20style%3D%22enable-background%3Anew%200%200%2031.49%2031.49%3B%22%20xml%3Aspace%3D%22preserve%22%20  fill='#f06430' %3E%0D%0A%3Cpath%20d%3D%22M21.205%2C5.007c-0.429-0.444-1.143-0.444-1.587%2C0c-0.429%2C0.429-0.429%2C1.143%2C0%2C1.571l8.047%2C8.047H1.111%0D%0A%09C0.492%2C14.626%2C0%2C15.118%2C0%2C15.737c0%2C0.619%2C0.492%2C1.127%2C1.111%2C1.127h26.554l-8.047%2C8.032c-0.429%2C0.444-0.429%2C1.159%2C0%2C1.587%0D%0A%09c0.444%2C0.444%2C1.159%2C0.444%2C1.587%2C0l9.952-9.952c0.444-0.429%2C0.444-1.143%2C0-1.571L21.205%2C5.007z%22%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A") no-repeat;
}

.text-info .text-info-btn .fa-arrow-right {
    position: relative;
    right: 10px;
    color: #00a3e0;
}

.text-info-title h2, .registration-title h2 {
    text-align: center;
    margin-bottom: 46px;
    font-family: "Brandon-Grotesque-Regular";
    letter-spacing: 0.05em;
}

.text-info-title h2:before, .registration-title h2:before {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
}

/*----- SECTION TEXT INFO END ------*/
/*------ SECTION SERVICES START -----*/
.services {
    width: 100%;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding: 91px 0 96px 0;
    background: #f9f9f9;
}

.services .container-fluid {
    max-width: 100%;
    margin: auto;
}

.services .container-fluid .text-info-title h2:before {
    width: 5%;
}

.services .service-img {
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    margin-top: 8px;
    width: 100%;
}

.services .service-img a {
    display: block;
}

.services .service-img img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    transform: translate3d(0px, 0px, 0px);
    transition: all 0.5s;
}

.services .service-img:hover img {
    transition: all 0.5s;
    transform: translate3d(0px, -37px, 0px);
}

.services h3 {
    position: absolute;
    width: 100%;
    top: 47.6%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    font-size: 25px;
    letter-spacing: 0.03em;
    transition: all 0.5s;
    font-family: "Brandon-Grotesque-Regular";
    line-height: 35px;
    z-index: 2;
}

.services h3:before {
    content: '';
    position: absolute;
    bottom: 5px;
    width: 8.5%;
    height: 1px;
    background: #f06430;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
}

.services span {
    display: block;
    font-size: 12px;
    text-align: center;
    color: #fff;
}

.services .service-hover {
    z-index: 300;
    display: block;
    width: 100%;
    padding: 0 0 10px 0;
    background: #00a3e0;
    font-size: 1.5em;
    margin-top: 0;
    text-transform: uppercase;
    position: absolute;
    transition: all 0.5s;
    transform: translate3d(0px, 0px, 0px);
}

.services .service-hover span {
    position: relative;
    font-family: "Brandon-Grotesque-Regular";
    display: inline-block;
    margin-top: 0;
    padding-left: 20px;
}

.services .service-hover span:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 14px;
    height: 12px;
    background: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2019.1.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Capa_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2031.49%2031.49%22%20style%3D%22enable-background%3Anew%200%200%2031.49%2031.49%3B%22%20xml%3Aspace%3D%22preserve%22%20  fill='#fff' %3E%0D%0A%3Cpath%20d%3D%22M21.205%2C5.007c-0.429-0.444-1.143-0.444-1.587%2C0c-0.429%2C0.429-0.429%2C1.143%2C0%2C1.571l8.047%2C8.047H1.111%0D%0A%09C0.492%2C14.626%2C0%2C15.118%2C0%2C15.737c0%2C0.619%2C0.492%2C1.127%2C1.111%2C1.127h26.554l-8.047%2C8.032c-0.429%2C0.444-0.429%2C1.159%2C0%2C1.587%0D%0A%09c0.444%2C0.444%2C1.159%2C0.444%2C1.587%2C0l9.952-9.952c0.444-0.429%2C0.444-1.143%2C0-1.571L21.205%2C5.007z%22%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A") no-repeat;
}

.service-img:hover a .service-hover {
    transition: all 0.5s;
    transform: translate3d(0px, -37px, 0px);
}

.service-img:hover a h3 {
    transition: all 0.5s;
    transform: translate3d(0px, -37px, 0px);
}

/*------ SECTION SERVICES END -----*/
/*----- SECTION NEWS START ------*/
.news {
    padding: 92px 0 100px 0;
}

.news .news-item {
    border: 1px solid #e8e8e8;
    min-height: 469px;
}

.news .news-item a {
    display: block;
}

.news .news-item .news-img {
    margin-bottom: 40px;
}

.news .news-item .news-img img {
    display: block;
    width: 100%;
}

.news .news-item .news-img .slick-prev,
.news .news-item .news-img .slick-next {
    z-index: 99;
    width: 10px;
    height: 32px;
    top: 50%;
    margin-top: -16px;
}

.news .news-item .news-img .slick-prev:before,
.news .news-item .news-img .slick-next:before {
    font-family: FontAwesome;
    font-size: 30px;
    line-height: 32px;
    color: #f06430;
}

.news .news-item .news-img .slick-prev {
    left: 15px;
}

.news .news-item .news-img .slick-prev:before {
    content: "\f104";
}

.news .news-item .news-img .slick-next {
    right: 15px;
}

.news .news-item .news-img .slick-next:before {
    content: "\f105";
}

.news .news-item .news-title {
    padding: 0 30px;
    margin-bottom: 18px;
}

.news .news-item .news-title h4 {
    text-transform: uppercase;
    color: #00a3e0;
    letter-spacing: 0.04em;
    transition: all 0.5s;
}

.news .news-item .news-title h4:hover {
    color: #f06430;
    transition: all 0.5s;
}

.news .news-item .publication {
    padding: 0 30px 33px 30px;
}

.news .news-item .publication p {
    font-size: 10px;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-family: "Brandon-Grotesque-Regular";
}

.news .all-news {
    margin-top: 42px;
}

.news .all-news-link {
    text-align: center;
}

.news .all-news-link a {
    display: inline-block;
    border: 1px solid #00a3e0;
    padding: 12px 29px;
    color: #00a3e0;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 24px;
    transition: all 0.5s;
    letter-spacing: 0.12em;
}

.news .all-news-link a:hover {
    color: #fff;
    border-color: #f06430;
    background: #f06430;
    transition: all 0.5s;
}

.news .news-text {
    padding: 0 29px;
    margin-bottom: 22px;
}

.news .news-text p {
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0;
}

/*----- SECTION NEWS END ------*/
/*----- SECTION REGISTRATION START ------*/
.registration {
    width: 100%;
    background: url("../images/bg-registrat.png") center center no-repeat;
    background-size: cover;
    padding: 114px 0 122px 0;
}

.registration h2 {
    color: #fff;
}

.registration h2:before {
    width: 20%;
}

.registration .registration-box {
    width: 56%;
    margin: auto;
    text-align: center;
}

.registration .registration-box .registration-p {
    margin-bottom: 35px;
}

.registration .registration-box .registration-p p {
    color: #fff;
    font-size: 0.8em;
}

/*----- SECTION REGISTRATION END ------*/
/*----- HOME PAGE END -----*/
/*---- NEWS PAGE START -----*/
.news-page-section {
    padding-top: 74px;
}

.news-page-section .news-item {
    margin-top: 25px;
}

.news-page-section .news-img {
    margin: 0;
}

.news-page-section .news-title {
    margin: 36px 0 25px 0;
}

.news-page-section .news-text {
    margin-bottom: 0;
}

.news-page-section .news-text p {
    margin-bottom: 22px;
    line-height: 22.5px;
}

.news-page-section .news {
    padding: 100px 0;
}

.news-page-section .news .col-sm-4 .news-item:first-child {
    margin-top: 0;
}

/*---- NEWS PAGE END -----*/
/*----- PEDAGOGIC CONCEPT PAGE START -----*/
.pedagogic-concept {
    padding: 226px 0 213px 0px;
}

.pedagogic-concept .top-text-box {
    padding: 0 100px 20px 100px;
}

.pedagogic-concept .info-top-box {
    padding: 0 100px 20px 100px;
}

.pedagogic-concept .info-top-box p {
    letter-spacing: 0.06em;
}

.pedagogic-concept .pedagogic-text-box {
    padding-bottom: 42px;
}

.pedagogic-concept .pedagogic-text-list {
    margin-bottom: 62px;
}

.pedagogic-concept .pedagogic-text-list li {
    font-size: 14px;
    line-height: 25px;
    font-family: "Open-Sans-Regular";
}

.pedagogic-row {
    padding: 92px 0 46px 0;
    border-bottom: 1px solid #e8e8e8;
}

.pedagogic-row h2 {
    margin-bottom: 46px;
}

.pedagogic-row h4 {
    color: #f06430;
    font-family: "Open-Sans-Regular";
    margin-bottom: 26px;
    letter-spacing: 0.03em;
}

.pedagogic-row p {
    line-height: 26px;
    margin-bottom: 26px;
    font-size: 14px;
    letter-spacing: 0.03em;
}

.pedagogic-row p b {
    display: block;
    margin-bottom: 30px;
}

.pedagogic-row .img-right {
    float: right;
    margin: 13px 0 0 65px;
}

.pedagogic-row-text {
    padding: 73px 0 20px 0;
}

.pedagogic-row-text h4 {
    margin-bottom: 34px;
}

.pedagogic-row-text img {
    margin-bottom: 28px;
}

.pedagogic-row-text .pedagogic-text-box2 {
    margin-top: 64px;
}

.pedagogic-row-text .pedagogic-text-box2 p {
    margin-bottom: 26px;
}

.pedagogic-row-text .pedagogic-text-box3 {
    margin-top: 64px;
}

.pedagogic-row-text .pedagogic-text-box3 h4 {
    margin-bottom: 26px;
}

.pedagogic-row-text .pedagogic-text-box3 ul {
    margin-top: -3px;
}

.pedagogic-row-text .pedagogic-text-box3 ul li {
    position: relative;
    padding-left: 17px;
    font-family: "Open-Sans-Regular";
    font-size: 14px;
    line-height: 34px;
}

.pedagogic-row-text .pedagogic-text-box3 ul li:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 5px;
    height: 5px;
    background: #42403f;
    border-radius: 50%;
}

.pedagogic-row-text .pedagogic-text-box4 {
    margin: 81px 0 71px 0;
}

.pedagogic-row-text .pedagogic-text-box4 strong {
    font-size: 13px;
}

.pedagog-margin .pedagogic-row {
    padding: 90px 0 46px 0;
}

.pedagog-margin .sidebar-list {
    padding-top: 88px;
}

.pedagog-margin .pedagogic-row-text {
    padding: 73px 0 20px 0;
}

.pedagog-margin .pedagogic-row:last-child {
    padding-bottom: 20px;
}

.sidebar-list {
    padding-top: 90px;
    /*  li{
      position: relative;
      padding-left: 9px;
      a{
        font-family: $fontOpenSans;
        color: $darkColorSite;
        transition: $animation;
        font-size: 13px;
        line-height: 30px;
        letter-spacing: 0.01em;
        &:before{
          content: '';
          position: absolute;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          -o-transform: translateY(-50%);
          transform: translateY(-50%);
          left: -5px;
          width: 10px;
          height: 10px;
          background: url("../images/move-to-next.png")no-repeat;
          background-size: cover;
        }
        &:hover{
          color:$secondColorSite;
          transition: $animation;
        }
      }

    }*/
}

.sidebar-list .active a {
    color: #f06430;
}

.sidebar-list li {
    position: relative;
    padding-left: 10px;
}

.sidebar-list li:before {
    content: '';
    position: absolute;
    top: 47%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -24px;
    width: 50px;
    height: 40px;
    background: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2020.1.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2035.9%2033.3%22%20style%3D%22enable-background%3Anew%200%200%2035.9%2033.3%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0D%0A%09.st0%7Bfill%3Anone%3Bstroke%3A%23F06430%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bstroke-miterlimit%3A10%3B%7D%0D%0A%3C%2Fstyle%3E%0D%0A%3Cpolyline%20class%3D%22st0%22%20points%3D%2217.4%2C19%2019.7%2C16.5%2019.8%2C16.5%2017.3%2C14.3%20%22%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A") no-repeat;
    background-size: cover;
}

.sidebar-list li a {
    text-transform: none;
    font-size: 13px;
    line-height: 30px;
    font-family: "Open-Sans-Regular";
    outline: none;
    color: #42403f;
    letter-spacing: 0.01em;
    transition: all 0.5s;
}

.sidebar-list li a:hover {
    color: #f06430;
    transition: all 0.5s;
}

/*----- PEDAGOGIC CONCEPT PAGE END -----*/
/*----- FORM PAGE START -----*/
.info-top.form-page {
    padding: 225px 0 288px 0;
}

.info-top.form-page .info-top-box:before {
    width: 28%;
}

.info-top.form-page .info-top-box:after {
    width: 28%;
}

.info-top.form-page .info-top-box .info-top-title {
    margin-bottom: 16px;
}

.info-top.form-page .info-top-box {
    padding: 0 100px 0 100px;
}

.info-top.form-page .info-top-box .info-top-p {
    margin-bottom: 29px;
}

.info-top.pedagogic-concept .info-top-box:before {
    width: 35.5%;
}

.info-top.pedagogic-concept .info-top-box:after {
    width: 35.5%;
}

.files-row {
    margin-top: -2px;
}

.files-row a {
    font-size: 13px;
    line-height: 29px;
    letter-spacing: 0.03em;
    display: block;
    font-family: "Open-Sans-Regular";
    transition: all 0.5s;
    color: #00a3e0;
}

.files-row a:hover {
    transition: all 0.5s;
    color: #f06430;
}

.files-row a .fa-file-pdf-o {
    color: #00a3e0;
    margin-right: 5px;
}

.files-row a:hover .fa-file-pdf-o {
    color: #f06430;
}

.files-row a span {
    color: #42403f;
    font-size: 10px;
}

/*----- FORM PAGE END -----*/
/*----- TEAM PAGE START -----*/
.team-page {
    padding: 226px 0 290px 0;
}

.team-page .table-bold tr {
    border-right: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
}

.team-page .table-bold tr td {
    border-right: transparent;
    border-left: transparent;
}

.info-top.team-page .info-top-box {
    padding: 0 100px 18px 100px;
}

.info-top.team-page .info-top-box p {
    letter-spacing: 0.03em;
}

.info-top.team-page .info-top-box .info-top-title {
    margin-bottom: 15px;
}

.responsive-table {
    margin-top: 53px;
    margin-bottom: -10px;
}

.responsive-table table {
    width: 100%;
}

.responsive-table table thead tr {
    border: 1px solid #e8e8e8;
}

.responsive-table table thead tr th {
    padding: 14px 14px 14px 28px;
    background: #00a3e0;
    color: #fff;
    font-family: "Open-Sans-Regular";
    font-weight: normal;
    font-size: 14px;
    letter-spacing: 0.03em;
    border: 1px solid #00a3e0;
}

.responsive-table table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.responsive-table table tbody tr td {
    padding: 20px 20px 19px 31px;
    border: 1px solid #e8e8e8;
    width: 50%;
    font-size: 13px;
    font-family: "Open-Sans-Regular";
    letter-spacing: 0.02em;
}

tbody tr td:first-child {
    font-weight: 600;
}

.pedagogic-row:first-child {
    margin-top: 2px;
}

.pedagogic-row:last-child {
    padding-bottom: 110px;
}

/*----- TEAM PAGE END -----*/
/*----- CONTACT PAGE START ------*/
.contact-page label {
    display: inline-block;
    font-size: 14px;
    width: 30%;
    font-family: "Open-Sans-Regular";
}

.contact-page input[type="text"], .contact-page input[type="tel"], .contact-page input[type="email"], .contact-page textarea {
    border: 0;
    width: 68%;
    font-family: "Open-Sans-Regular";
    outline: none;
}

.contact-page .textarea-row {
    border: 1px solid #e8e8e8;
    padding: 20px 10px 0px 29px;
    margin-bottom: 41px;
}

.contact-page .textarea-row label {
    float: left;
}

.content_html {
    min-height: 440px;
    margin: 58px 0 97px 0;
}

.contact-content {
    padding: 93px 0 101px 0;
}

.contact-content .contact-info-tex {
    margin-top: 35px;
}

.contact-content .contact-info-tex p {
    letter-spacing: 0.04em;
}

.contact-content h2 {
    margin-bottom: 54px;
}

.contact-content .footer-title {
    margin-bottom: 34px;
}

.contact-content .footer-title p {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.03em;
}

.contact-content .footer-title a {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.03em;
    transition: all 0.5s;
}

.contact-content .footer-title a:hover {
    transition: all 0.5s;
    color: #f06430;
}

.contact-content .footer-title h4 {
    margin-bottom: 13px;
    text-transform: none;
    font-size: 16px;
    letter-spacing: 0.03em;
    font-family: "Open-Sans-Regular";
    line-height: 28px;
}

.contact-content .footer-title h4:before {
    display: none;
}

.contact-content .responsive-table {
    margin-top: 0;
    margin-bottom: 10px;
}

.contact-content .responsive-table tr td td {
    width: 20%;
}

.contact-info-tex p {
    font-style: italic;
    color: #f06430;
    letter-spacing: 0.04em;
}

.form-group {
    margin-bottom: 0;
}

.contact-form-content h4 {
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    font-family: "Open-Sans-Regular";
    margin: -8px 0px 22px 0;
    letter-spacing: 0.03em;
}

.contact-form-content .contact-form-box {
    width: 67.5%;
    margin: auto;
    border-radius: 5px;
}

.contact-form-content .contact-form-box .row-input {
    text-align: right;
    margin-top: 34px;
}

.contact-form-content .contact-form-box .row-input input[type="submit"] {
    background: #fff;
    border: 1px solid #00a3e0;
    color: #00a3e0;
    text-transform: uppercase;
    padding: 15px 40px 13px 38px;
    font-size: 14px;
    transition: all 0.5s;
}

.contact-form-content .contact-form-box .row-input input[type="submit"]:hover {
    border-color: #f06430;
    background: #f06430;
    color: #fff;
    transition: all 0.5s;
}

.contact-form-content .contact-form-row, .contact-form-content .textarea-row {
    border: 1px solid #e8e8e8;
    border-top: 0;
    padding: 19px 20px 7px 30px;
}

.contact-form-content .contact-form-row:first-child, .contact-form-content .textarea-row:first-child {
    border-top: 1px solid #e8e8e8;
}

.contact-form-content .contact-form-row input, .contact-form-content .contact-form-row textarea, .contact-form-content .textarea-row input, .contact-form-content .textarea-row textarea {
    font-size: 14px;
    color: #b7b7b7;
    padding: 1px 1px 1px 3px;
}

.contact-form-content .contact-form-row label, .contact-form-content .textarea-row label {
    color: #42403f;
}

.contact-form-content .header-margin {
    margin: 33px 0 22px 0;
}

.textarea-row {
    border: 1px solid #e8e8e8 !important;
}

.textarea-row textarea {
    padding: 1px 1px 15px 6px !important;
}

/*----- MAP START -----*/
.map {
    min-height: 450px;
    margin-bottom: 72px;
}

#map {
    height: 450px;
    width: 100%;
}

.gm-style-iw * {
    display: block;
    width: 100%;
}

.gm-style-iw h4, .gm-style-iw p {
    margin: 0;
    padding: 0;
}

.gm-style-iw a {
    color: #4272db;
}

#google-map {
    width: 100%;
    height: 440px;
    margin: 58px 0 103px 0px;
}

/*----- MAP END -----*/
/*------ CONTACT PAGE END -----*/
/*----- GALLERY SLIDE PAGE START -----*/
.slider-gallery {
    width: 100%;
    padding: 100px 0 94px 0;
}

.img-outer img {
    width: 100%;
}

.text-center {
    margin-top: 22px;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
}

.slick-track:before {
    content: "";
    display: table;
}

.slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.slick-loading img img {
    pointer-events: none;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    margin-top: -10px;
    padding: 0;
    border: none;
    outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25;
}

.slick-prev:before, .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir="rtl"] .slick-prev {
    left: auto;
    right: -25px;
}

.slick-prev:before {
    content: "←";
}

[dir="rtl"] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: -25px;
}

[dir="rtl"] .slick-next {
    left: -25px;
    right: auto;
}

.slick-next:before {
    content: "→";
}

[dir="rtl"] .slick-next:before {
    content: "←";
}

.slick-prev {
    left: -25px;
}

[dir="rtl"] .slick-prev {
    left: auto;
    right: -25px;
}

.slick-prev:before {
    content: "←";
}

[dir="rtl"] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: -25px;
}

[dir="rtl"] .slick-next {
    left: -25px;
    right: auto;
}

.slick-next:before {
    content: "→";
}

[dir="rtl"] .slick-next:before {
    content: "←";
}

/* Dots */
.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -45px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "•";
    width: 20px;
    height: 20px;
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;
    text-align: center;
    color: black;
    opacity: 0.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: black;
    opacity: 0.75;
}

.carousel-pager {
    overflow: hidden;
    display: inline-block;
    margin: auto;
}

.carousel-pager .number {
    font-size: 19px;
    display: block;
    height: 45px;
    float: left;
    line-height: 1em;
    font-family: "Brandon-Grotesque-Regular";
}

.carousel-pager .number.number-current {
    position: relative;
    padding: 0 20px 0 40px;
}

.carousel-pager .number.number-current:after {
    content: " ";
    width: 1px;
    position: absolute;
    top: 0;
    right: 11px;
    height: 50px;
    background-color: #333333;
    -webkit-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
}

.carousel-pager .number.number-all {
    padding-top: 29px;
}

.carousel-pager .number.number-all .text-xsmall {
    font-size: 11px;
}

.link-prev,
.link-next {
    position: relative;
    line-height: 41px;
    text-transform: uppercase;
    font-size: 0.688em;
    font-weight: 600;
    color: #9db335;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.link-prev:before, .link-prev:after,
.link-next:before,
.link-next:after {
    font-family: fontAwesome;
    line-height: 39px;
    font-size: 18px;
    display: inline-block;
    height: 41px;
    width: 41px;
    border: 1px solid #9db335;
    background-color: #9db335;
    text-align: center;
    color: #fff;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.link-prev:hover, .link-prev:focus,
.link-next:hover,
.link-next:focus {
    color: #9db335;
    text-decoration: none;
}

.link-prev:hover:before, .link-prev:hover:after, .link-prev:focus:before, .link-prev:focus:after,
.link-next:hover:before,
.link-next:hover:after,
.link-next:focus:before,
.link-next:focus:after {
    background-color: #fff;
    color: #9db335;
}

.link-prev:before {
    content: "\f104";
    margin: 0px 10px 0px 0px;
}

.link-next:after {
    content: "\f105";
    margin: 0px 0px 0px 10px;
}

.back-to-list {
    height: 41px;
    width: 41px;
    border: 1px solid #9db335;
    display: inline-block;
    color: #fff;
    text-align: center;
    background-color: #9db335;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.back-to-list .fa {
    line-height: 41px;
    font-size: 18px;
}

.back-to-list:hover, .back-to-list:focus {
    background-color: #fff;
    color: #9db335;
}

.collapse-menu-right {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100% !important;
    width: 100%;
    z-index: 9999;
    display: block;
    background-color: #26a9d1;
    -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.collapse-menu-right .menu-toggle {
    height: 24px;
    width: 24px;
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 9;
    cursor: pointer;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.collapse-menu-right .menu-toggle .line {
    position: absolute;
    background-color: #fff;
    /*@include transition(width 280ms cubic-bezier(.215,.61,.355,1)444ms, margin-top 280ms cubic-bezier(.215,.61,.355,1)280ms, transform 280ms cubic-bezier(.215,.61,.355,1)280ms);*/
}

.collapse-menu-right .menu-toggle .line.top {
    width: 100%;
    height: 2px;
    top: 50%;
    margin-top: -1px;
}

.collapse-menu-right .menu-toggle .line.bottom {
    width: 2px;
    height: 100%;
    left: 50%;
    margin-left: -1px;
}

.collapse-menu-right .menu-toggle:hover {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.collapse-menu-right.in {
    -webkit-transform: translate(0%, 0);
    -ms-transform: translate(0%, 0);
    -o-transform: translate(0%, 0);
    transform: translate(0%, 0);
}

.overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    display: none;
}

.slick-slider {
    margin: 0;
}

.slick-slider .slick-slide,
.slick-slider .slick-slide:focus {
    outline: none;
}

.slick-slider .slick-slide a:hover,
.slick-slider .slick-slide a:focus,
.slick-slider .slick-slide:focus a:hover,
.slick-slider .slick-slide:focus a:focus {
    outline: none;
}

.carousel {
    margin: 0px;
}

.one-line {
    width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.with-overlay-light,
.with-overlay {
    position: relative;
}

.with-overlay:before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(27, 26, 25, 0.75);
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.with-overlay-light:before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(27, 26, 25, 0.5);
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    z-index: 1
}

.thumbnail-box.with-overlay:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 10;
}

.carousel .slick-slide.slick-current .with-overlay:before {
    opacity: 0;
    filter: alpha(opacity=0);
}

.carousel-small {
    margin: 15px 0px 30px 0px;
}

.carousel-small .slick-slide {
    text-align: center;
}

.carousel-small .slick-slide img {
    display: inline-block;
}

.carousel-wrapper {
    overflow: hidden;
    /*margin: 0px -15px;*/
}

.carousel-wrapper .carousel-outer {
    overflow: hidden;
}

.carousel-gallery .slick-prev,
.carousel-gallery .slick-next {
    z-index: 99;
    width: 10px;
    height: 32px;
    top: 50%;
    margin-top: -16px;
}

.carousel-gallery .slick-prev:before,
.carousel-gallery .slick-next:before {
    font-family: FontAwesome;
    font-size: 30px;
    line-height: 32px;
}

.carousel-gallery .slick-prev {
    left: 15px;
}

.carousel-gallery .slick-prev:before {
    content: "\f104";
}

.carousel-gallery .slick-next {
    right: 15px;
}

.carousel-gallery .slick-next:before {
    content: "\f105";
}

.carousel-highlights .slick-prev,
.carousel-highlights .slick-next {
    z-index: 99;
    width: 15px;
    height: 40px;
    bottom: 20px;
    top: inherit;
    margin-top: inherit;
}

.carousel-highlights .slick-prev:before,
.carousel-highlights .slick-next:before {
    font-family: FontAwesome;
    font-size: 40px;
    line-height: 40px;
}

.carousel-highlights .slick-prev {
    left: 50%;
    margin-left: -40px;
}

.carousel-highlights .slick-prev:before {
    content: "\f104";
}

.carousel-highlights .slick-next {
    right: 50%;
    margin-right: -40px;
}

.carousel-highlights .slick-next:before {
    content: "\f105";
}

.carousel-small .slick-prev,
.carousel-small .slick-next {
    z-index: 99;
    width: 10px;
    height: 32px;
    top: 50%;
    margin-top: -16px;
}

.carousel-small .slick-prev:before,
.carousel-small .slick-next:before {
    font-family: FontAwesome;
    font-size: 30px;
    line-height: 32px;
    color: #cf2825;
}

.carousel-small .slick-prev {
    left: 0px;
}

.carousel-small .slick-prev:before {
    content: "\f104";
}

.carousel-small .slick-next {
    right: 0px;
}

.carousel-small .slick-next:before {
    content: "\f105";
}

.carousel .slick-prev,
.carousel .slick-next {
    z-index: 99;
    width: 10px;
    height: 32px;
    top: 50%;
    margin-top: -16px;
}

.carousel .slick-prev:before,
.carousel .slick-next:before {
    font-family: FontAwesome;
    font-size: 45px;
    color: white;
}

.carousel .slick-prev {
    left: 50px;
}

.carousel .slick-prev:before {
    content: "\f104";
}

.carousel .slick-next {
    right: 50px;
}

.carousel .slick-next:before {
    content: "\f105";
}

/*----- GALLERY SLIDE PAGE END -----*/
/*---- GALLERY PAGE START -----*/
.gallery-content {
    padding: 100px 0 43px 0;
}

.gallery-content .container-fluid {
    max-width: 100%;
}

.gallery-content .gallery-row {
    margin-bottom: 30px;
}

.gallery-item {
    width: 100%;
    margin-bottom: 21px;
}

.gallery-item a {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /*    &:hover .overlay-gallery{
     opacity: 0;
      transition: $animation;
    }*/
}

.gallery-item a:hover .gallery-hover {
    transform: translate3d(0px, 0, 0px);
    transition: all 0.5s;
}

.gallery-item a:hover .gallery-img img {
    position: relative;
    transform: translate3d(0px, -37px, 0px);
    transition: all 0.5s;
}

.gallery-item a:hover .gallery-title {
    transform: translate3d(0, -40px, 0);
}

.gallery-item a:hover .overlay-gallery {
    background: rgba(40, 40, 39, 0.3);
}

.gallery-item a .gallery-img {
    max-width: 100%;
    max-height: 100%;
}

.gallery-item a .gallery-img img {
    display: block;
    width: 100%;
    height: auto;
    transform: translate3d(0, 0, 0);
    transition: all 0.5s;
}

.gallery-item a .gallery-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background: #00a3e0;
    z-index: 4;
    transition: all 0.5s;
    text-align: center;
    color: #fff;
    font-family: "Brandon-Grotesque-Medium";
    font-size: 12px;
    transform: translate3d(0px, 40px, 0px);
}

.gallery-item a .gallery-hover .fa-arrow-right {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.gallery-item a .gallery-hover span {
    position: relative;
    font-family: "Brandon-Grotesque-Regular";
    display: inline-block;
    margin-top: 0;
    padding-left: 20px;
    text-transform: uppercase;
}

.gallery-item a .gallery-hover span:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 14px;
    height: 12px;
    background: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2019.1.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Capa_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2031.49%2031.49%22%20style%3D%22enable-background%3Anew%200%200%2031.49%2031.49%3B%22%20xml%3Aspace%3D%22preserve%22%20  fill='#fff' %3E%0D%0A%3Cpath%20d%3D%22M21.205%2C5.007c-0.429-0.444-1.143-0.444-1.587%2C0c-0.429%2C0.429-0.429%2C1.143%2C0%2C1.571l8.047%2C8.047H1.111%0D%0A%09C0.492%2C14.626%2C0%2C15.118%2C0%2C15.737c0%2C0.619%2C0.492%2C1.127%2C1.111%2C1.127h26.554l-8.047%2C8.032c-0.429%2C0.444-0.429%2C1.159%2C0%2C1.587%0D%0A%09c0.444%2C0.444%2C1.159%2C0.444%2C1.587%2C0l9.952-9.952c0.444-0.429%2C0.444-1.143%2C0-1.571L21.205%2C5.007z%22%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A") no-repeat;
}

.gallery-item a .gallery-hover span:hover {
    transition: all 0.5s;
    color: #f06430;
}

.gallery-item a .gallery-hover span:hover:before {
    background: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2019.1.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Capa_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2031.49%2031.49%22%20style%3D%22enable-background%3Anew%200%200%2031.49%2031.49%3B%22%20xml%3Aspace%3D%22preserve%22%20  fill='#f06430' %3E%0D%0A%3Cpath%20d%3D%22M21.205%2C5.007c-0.429-0.444-1.143-0.444-1.587%2C0c-0.429%2C0.429-0.429%2C1.143%2C0%2C1.571l8.047%2C8.047H1.111%0D%0A%09C0.492%2C14.626%2C0%2C15.118%2C0%2C15.737c0%2C0.619%2C0.492%2C1.127%2C1.111%2C1.127h26.554l-8.047%2C8.032c-0.429%2C0.444-0.429%2C1.159%2C0%2C1.587%0D%0A%09c0.444%2C0.444%2C1.159%2C0.444%2C1.587%2C0l9.952-9.952c0.444-0.429%2C0.444-1.143%2C0-1.571L21.205%2C5.007z%22%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A") no-repeat;
}

.gallery-item a .gallery-title {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Brandon-Grotesque-Regular";
    color: #fff;
    font-size: 25px;
    z-index: 4;
    transform: translate3d(0, 0, 0);
    transition: all 0.5s;
}

.gallery-item a .gallery-title:before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10%;
    height: 1px;
    background: #f06430;
}

.gallery-item a .gallery-title span {
    display: block;
    font-size: 14px;
    margin-top: -10px;
}

.overlay-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 40, 39, 0.6);
    transition: all 0.5s;
}

/*---- GALLERY PAGE END -----*/
.link-prev:before, .link-prev:after, .link-next:before, .link-next:after, .back-to-list {
    border: 1px solid #f06430;
    background-color: #f06430;
}

.link-prev:hover, .link-prev:focus, .link-next:hover, .link-next:focus, .back-to-list:hover, .back-to-list:focus, .link-prev, .link-next, .link-prev:hover:before, .link-prev:hover:after, .link-prev:focus:before, .link-prev:focus:after, .link-next:hover:before, .link-next:hover:after, .link-next:focus:before, .link-next:focus:after {
    color: #f06430;
}

/* Cookies
   _______________________________________________________ */
/*.cookies : properties */
.cookies {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0px;
    padding: 15px 0px;
    z-index: 99999999;
    background-color: #fff;
    color: #333333;
    font-size: 0.75em;
    line-height: normal;
    border-top: 1px solid #e7e7e7;
    /*@extend .fontSize13;*/
    -webkit-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
    -webkit-transform: translate(0, 200%);
    -ms-transform: translate(0, 200%);
    -o-transform: translate(0, 200%);
    transform: translate(0, 200%);
}

.cookies p {
    margin: 0px;
    font-size: 12px;
    line-height: normal;
}

.cookies p a {
    text-decoration: none;
    color: #e4352c;
    text-decoration: underline;
}

.cookies p a:hover {
    text-decoration: none;
    color: #e4352c;
}

.cookies .btn {
    padding: 10px 50px;
    text-align: center;
    max-width: 100%;
    text-decoration: none;
    color: #fff;
    background: #f06430;
    margin: 0;
    border-radius: 0;
    transition: all 0.5s;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.cookies .btn:hover {
    transition: all 0.5s;
    background: #fff;
    border: 1px solid #f06430;
    color: #f06430;
}

.cookies.cookies-not-ok {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.cookies.cookies-ok {
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    -o-transform: translate(0, 100%);
    transform: translate(0, 100%);
}

.wrapper-footer.cookies-not-ok {
    padding-bottom: 70px;
}

.form-control-feedback {
    top: 15px;
    right: 5px;
}

.form-group {
    margin-bottom: 0;
}

.has-error .form-control-feedback {
    color: #f41640;
}

.has-success .form-control-feedback {
    color: #87b322;
}

/*------ ERROR PAGE START -----*/
.error-content {
    width: 100%;
    background: url("../images/img-top.png") center center no-repeat;
    background-size: cover;
}

.error-content .logo-error {
    margin-top: 30px;
}

.error-content .logo-error a {
    display: block;
    width: 195px;
    height: 48px;
    background: url("../images/error-logo.png") center center no-repeat;
    background-size: cover;
}

.error-content .error-row {
    padding: 280px 0 405px 0;
}

.error-content .info-top-box {
    width: 71%;
    margin: auto;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 0;
    text-align: center;
    padding: 0 100px 60px 100px;
    position: relative;
}

.error-content .info-top-box:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 26%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.error-content .info-top-box:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 26%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.error-content .info-top-box .info-top-title {
    margin-bottom: 13px;
}

.error-content .info-top-box .info-top-p {
    margin-bottom: 33px;
}

.error-content .info-top-box h1 {
    top: -25px;
    font-size: 45px;
    line-height: 55px;
    color: #fff;
    position: relative;
    margin-bottom: 0;
    font-family: "Brandon-Grotesque-Regular";
    letter-spacing: 0.05em;
}

.error-content .info-top-box h1:before {
    display: none;
}

.error-content .info-top-box h1:after {
    display: none;
}

.error-content .info-top-box h1 span {
    display: block;
    font-family: "Brandon-Grotesque-Bold";
}

.error-content .info-top-box p {
    margin-bottom: 20px;
    color: #fff;
}

.equipe .info-top-box:before, .error-content .info-top-box:before {
    width: 38%;
}

.equipe .info-top-box:after, .error-content .info-top-box:after {
    width: 38%;
}

#footer_map {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 300px;
}

#footer_map .content_html {
    min-height: 0;
    margin: 0;
}

#footer_map .padleft {
    padding-left: 50px;
}

#footer_map .marginTop15 {
    margin-top: 1.071em;
}

#footer_map h4 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-family: 'Open Sans';
    color: black;
}

#footer_map p {
    font-weight: 400;
    font-family: 'Open Sans';
    color: black;
}

#footer_map p a {
    color: #00a3e0;
}

#footer_map .top_google_text {
    padding-top: 40px;
}

#footer_map .padleft h4 {
    position: relative;
    color: #f06430;
    margin-bottom: 13px;
    text-transform: none;
    font-size: 16px;
    letter-spacing: 0.03em;
    font-family: "Open-Sans-Regular";
    line-height: 28px;
}

#footer_map .padleft h4:before {
    display: none;
}

#googleMap {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    min-height: 300px;
    width: 50%;
    border-right: 1px solid #f0f0f0;
}

#googleMap.contact {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    min-height: 400px;
    width: 100%;
    border-right: 1px solid #f0f0f0;
    height: 400px !important;
}

/*------ ERROR PAGE END -----*/
