/*
 Theme Name: Futurio customs
 Template: futurio
 Description: Child theme for custom development
*/

/**
 * Base elements
 */


body {
    /*max-width: 100vw;*/
    /*overflow-x: hidden;*/
}

.container {
    max-width: 100%;
}

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

.phone, .email {
    font-family: "Open Sans", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 1.3px;
    color: #000000;
    cursor: default;
}

.phone:hover, .email:hover, .phone:focus, .email:focus {
    color: #000000;
    text-decoration: none;
}


.site-header img,
.site-footer img {
    max-width: 100%;
    height: auto;
}

/**
 * Layout
 */
.page-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

.main-container {
    margin-bottom: 2rem;
}

.site-footer, .footer-credits-text {
    margin-top: auto;
}

.error404 .main-container {
    /** Error 404 verical center content */
    margin-top: auto;
    margin-bottom: auto;
    padding-bottom: 1.5rem;
}

.error404 h1 {
    margin-bottom: 3rem;
}

/**
 * Header
 */
.site-header {
    text-align: center;
}

.masthead__brand, .masthead__contacts {
    padding-top: 10px;
    padding-bottom: 10px;
}

.masthead__contacts .phone, .masthead__contacts .email {
    display: block;
}

@media screen and (min-width: 992px) {
    .masthead__brand {
        text-align: left;
    }

    .masthead__contacts {
        text-align: right;
    }
}

/**
 * Navigation
 */

body .navbar-default .navbar-nav>.active>a,
body .navbar-default .navbar-nav>.active>a:hover,
body .navbar-default .navbar-nav>.active>a:focus {
    color: #fff;
    background: transparent;
}

.navbar-default {
    background-color: transparent;
    background-image: linear-gradient(180deg, #01171f 0%, #233f4c 71%);
    min-height: 40px;
    border-radius: 0;
    border: 0;
    /** Permanent defined for jumbotron */
    margin-bottom: 20px;
}

.home .navbar-default {
    margin-bottom: 0;
}

.navbar-default .menu-container {
    display: flex;
    justify-content: center;
}

.navbar-default .navbar-nav > li > a {
    text-decoration: none;
    font-family: "Jura", Sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 24px;
    padding-top: 15px;
    padding-bottom: 15px;
}

@media screen and (min-width: 992px) {
    .navbar-default .navbar-nav > li > a {
        font-size: 17px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    text-decoration: none;
    color: #ffffff;
}
/*.navbar-default .navbar-nav > li > a::before {
    position: absolute;
    left: 15px;
    bottom: 15px;
    right: 15px;
    display: block;
    content: "";
    height: 2px;
    background: #d94f5c none repeat scroll 0 0;
    transform: scale3d(0, 5, 1);
    transform-origin: 0 50% 0;
    transition: transform 0.3s cubic-bezier(1, 0.68, 0.16, 0.9) 0s;
}

.navbar-default .navbar-nav > li:hover > a::before {
  transform: scale3d(1, 1, 1);
}*/

.navbar-mobile {
    opacity: 0;
    transition: .4s ease opacity;
    margin: 0;
}

.navbar-default.navbar-mobile {
    height: 1px;
    min-height: 1px;
    overflow: hidden;
}

.openNav .navbar-mobile {
    z-index: 100;
    opacity: 1;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: center;
}

.navbar-mobile .menu-container {
    width: 100%;
}

.navbar-desktop {
    display: none;
}

@media screen and (min-width: 992px) {
    #main-menu-panel {
        display: none;
    }

    .navbar-desktop {
        display: block;
    }
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
#main-menu-panel {
    z-index: 110;
    position: fixed;
    top: 45px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    height: 42px;
}

.hamburger {
    padding: 10px 10px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger:focus {
    outline: none;
}

.openNav .hamburger:hover {
    opacity: 0.7;
}

.openNav .hamburger .hamburger-inner,
.openNav .hamburger .hamburger-inner::before,
.openNav .hamburger .hamburger-inner::after {
    background-color: #fff;
}

.hamburger-box {
    width: 30px;
    height: 21px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1.5px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -9px;
}

.hamburger-inner::after {
    bottom: -9px;
}

/*
* Elastic
*/
.hamburger--elastic .hamburger-inner {
    top: 1.5px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
    top: 9px;
    transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
    top: 18px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.openNav .hamburger--elastic .hamburger-inner {
    transform: translate3d(0, 9px, 0) rotate(135deg);
    transition-delay: 0.075s;
}

.openNav .hamburger--elastic .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}

.openNav .hamburger--elastic .hamburger-inner::after {
    transform: translate3d(0, -18px, 0) rotate(-270deg);
    transition-delay: 0.075s;
}

/**
 * First screen (jumbotron) section
 */
.jumbotron {
    margin:0px 0 20px;
    background: url(bg2.jpg) top right no-repeat;
}

.jumbotron > .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 195px;
    padding-bottom: 25px;
}

.jumbotron__title {
    width: 100%;
    background: rgba(255, 255, 255, .5);
    text-align: center;
    font-family: "Open Sans", Sans-serif;
    font-size: 35px;
    font-weight: 500;
    margin: 0;
    padding: 0.25em;
    text-transform: uppercase;
}

.jumbotron__breadcrumbs {
    width: 100%;
    background: rgba(255, 255, 255, .5);
    text-align: center;
    padding: 10px;
}

.jumbotron__title + .jumbotron__breadcrumbs {
    padding-top: 0;
}

.jumbotron__breadcrumbs a {
    color: #000;
    font-weight: 600;
}

/**
 * Footer
 */
.site-footer {
    min-height: 125px;
    padding-top: 10px;
    background-image: linear-gradient(180deg, #233f4c 0%, #01171f 100%);
}

.site-footer__links {
    display: flex;
    justify-content: space-around;
    max-width: 230px;
    padding: 0 10px;
    margin: 0 auto;
}

.site-footer__links .icon {background-size: 100%;}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .site-footer__links {
        flex-wrap: wrap;
    }

    .site-footer__links .icon {
        flex: 0 0 50%;
    }
}

.icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
}

.yb {
    background-image: url(yb.png); 
}

.vk {
    background-image: url(vk.png);
}


@media screen and (min-width: 992px) {
    .site-footer .row {
        display: flex;
    }

    .site-footer .col-logotype {
        order: 99;
    }
}

@media screen and (max-width: 768px) {
    .site-footer {
        padding: 10px;
    }
}

.site-footer .col-logotype {
    float: right;
}

.site-footer .custom-logo-link {
    display: block;
    margin-bottom: 20px;
}

.site-footer .site-footer__menu {
    list-style: none;
    padding-left: 0;
}

.site-footer .site-footer__menu li {
    margin-bottom: 10px;
}

.site-footer__phone, .site-footer__email {
    text-align: right;
}

.site-footer__phone a, .site-footer__email a {
    color: #c9c9c9;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 1.3px;
}

.site-footer__phone a:hover, .site-footer__email a:hover {
    color: #c9c9c9;
    text-decoration: none;
}

/**
 * Organization contacts
 */
.organizaion {}
.organizaion__name {
    display: block;
    font-size: 20px;
    margin: 0 0 1.5rem;
}
.organizaion__desc {
    margin: 0 0 1.5rem;
}
.organizaion__address,
.organizaion__phone,
.organizaion__email {
    font-size: 16px;
}
.organizaion__address-label,
.organizaion__phone-label,
.organizaion__email-label {
    display: block;
    font-size: 18px;
    margin: 1rem 0 0.5rem;
}
.organizaion__phone a,
.organizaion__email a {
    display: block;
    padding: 0 0 0.25em;
}

/** Scroll top button */
#wpfront-scroll-top-container{display:none;position:fixed;cursor:pointer;z-index:9999}#wpfront-scroll-top-container div.text-holder{padding:3px 10px;border-radius:3px;-webkit-border-radius:3px;-webkit-box-shadow:4px 4px 5px 0 rgba(50,50,50,0.5);-moz-box-shadow:4px 4px 5px 0 rgba(50,50,50,0.5);box-shadow:4px 4px 5px 0 rgba(50,50,50,0.5)}#wpfront-scroll-top-container a{outline-style:none;box-shadow:none;text-decoration:none}

:root {
    --color-green: #2EA30F;
    --color-base-text: #2B343B;
}

/**
 * Heading
 */
.section-title {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 1.35;
    /* text-transform: uppercase; */
}
@media screen and (min-width: 768px) {
    .section-title {
        font-size: 35px;
    }
}
@media screen and (min-width: 992px) {
    .section-title {
        font-size: 45px;
    }
}
/* @media screen and (min-width: 1600px) {
    .section-title {
        font-size: 70px;
    }
} */
.gradient_blue, .section-title_blue {
    background: -webkit-linear-gradient(90deg, #055D6C 0%, #10B6D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #09859B;
}
.gradient_green, .section-title_green {
    background: -webkit-linear-gradient(90deg, #468437 0%, #5EB14B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #2EA30F;
}

/**
 * Button
 */
.button {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px;
    max-width: 100%;
    font-weight: bold;
    line-height: 1.35;
    text-transform: uppercase;

    padding-right: 66px;
    width: 240px;
    min-height: 66px;
    font-size: 14px;
}
.button::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 66px;
    height: 66px;
    background-image: url('arrow_forward_white.png');
    background-position: center;
    background-repeat: no-repeat;
}
.button_blue {
    background: linear-gradient(180deg, #10B6D6 0%, #055D6C 100%);
    color: #FFFFFF;
}
.button_blue:hover, .button_blue:focus {
    opacity: .8;
    background: linear-gradient(0deg, #10B6D6 0%, #055D6C 100%);
    text-decoration: none;
    color: #FFFFFF;
}
.button_green {
    background: linear-gradient(180deg, #468437 0%, #5EB14B 100%);
    color: #FFFFFF;
}
.button_green:hover, .button_green:focus {
    opacity: .8;
    background: linear-gradient(0deg, #468437 0%, #5EB14B 100%);
    text-decoration: none;
    color: #FFFFFF;
}
.button_phone::before {
    background-image: url('phone-local.svg');
}

/* @media screen and (min-width: 1600px) {
    .button {
        padding-right: 90px;
        width: 368px;
        min-height: 90px;
        font-size: 20px;
    }
    .button::before {
        width: 90px;
        height: 90px;
    }
} */

/**
 * Slick slider theme
 */
.slick-arrow {
    position: absolute;
    top: auto;
    left: 50%;
    right: auto;
    bottom: -75px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    margin: 0 1px;
    border: 0;
    text-indent: -9999px;
    opacity: 1;
    transition: .2s ease opacity;
    outline: 0;
    box-shadow: none;
}
.slick-arrow:hover {
    opacity: .8;
}
.slick-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 25px;
    height: 25px;
    background: url('chevron_right.png') center no-repeat;
}
.slick-prev {
    transform: translateX(calc(-100% - 1px));
    background: linear-gradient(0deg, #10B6D6 0%, #055D6C 100%);
}
.slick-prev::before {
    transform: translate(-50%, -50%) rotate(180deg);
}
.slick-next {
    transform: translateX(1px);
    background: linear-gradient(90deg, #10B6D6 0%, #055D6C 100%);
}

.slick-dots {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 25px 0 15px;
    padding-left: 0;
}

@media screen and (min-width: 768px) {
    .slick-dots {
        margin: 50px 0 35px;
    }
}

.slick-dots > li {
    width: 40px;
    height: 10px;
    margin: 0 4px;
    border: 0;
    text-indent: -9999px;
    background: #F2F2F2;
    opacity: 1;
    transition: .2s ease;
    cursor: pointer;
}
.slick-dots > li:hover {
    background: linear-gradient(90deg, #10B6D6 0%, #055D6C 100%);
    opacity: .8;
}
.slick-dots > .slick-active {
    background: linear-gradient(90deg, #10B6D6 0%, #055D6C 100%);
}

/**
 * Form inputs
 */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    cursor: pointer;
}
.form-group .form-control {
    height: 60px;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #606F75;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.form-group-select {
    position: relative;
}
.form-group-select .form-control {
    padding-right: 60px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-group-select::before,
.form-group-select::after {
    z-index: 5;
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: block;
    width: 30px;
    height: 30px;
    pointer-events: none;
}
@media screen and (min-width: 1600px) {
    .form-group-select::before,
    .form-group-select::after {
        width: 40px;
        height: 40px;
    }
}
.form-group-select::before {
    background: linear-gradient(90deg, #10B6D6 0%, #055D6C 100%);
}
.form-group-select::after {
    background: url(chevron_right.png) center no-repeat;
    transform: translateY(-50%) rotate(90deg);
}
.form-group textarea.form-control {
    min-height: 100px;
    resize: vertical;
}
.form-group .submit {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.button [type="submit"] {
    display: none;
}
.wpcf7-form-control.wpcf7-acceptance {
    display: inline-block;
    font-size: 12px;
    line-height: 16px;
    color: #2B343B;
    margin-right: 10px;
    margin-bottom: 10px;
}
.wpcf7-form-control.wpcf7-acceptance label {
    font-weight: 400;
}
.form-group [type="checkbox"] ~ .wpcf7-list-item-label {
    display: flex;
    align-items: center;
}
.form-group .wpcf7-list-item-label a {
    display: inline-block;
    margin: 0 0.5em;
}
.wpcf7-acceptance [type="checkbox"] ~ .wpcf7-list-item-label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: linear-gradient(180deg, #10B6D6 0%, #055D6C 100%);
    margin-right: 10px;
}
.wpcf7-acceptance [type="checkbox"]:checked ~ .wpcf7-list-item-label::before {
    background: url('check.svg') center no-repeat,
        linear-gradient(180deg, #10B6D6 0%, #055D6C 100%);
}
.wpcf7-acceptance span.wpcf7-list-item {
    margin: 0;
}
.wpcf7-acceptance [type="checkbox"] {
    display: none;
}
.wpcf7-acceptance .wpcf7-list-item-label {
    display: flex;
    align-items: center;
}
.wpcf7-acceptance .accept_green ~ .wpcf7-list-item-label::before {
    background: linear-gradient(180deg, #468437 0%, #5EB14B 100%) !important;
}
.wpcf7-acceptance .accept_green:checked ~ .wpcf7-list-item-label::before {
    background: url('check.svg') center no-repeat,
        linear-gradient(180deg, #468437 0%, #5EB14B 100%) !important;
}
.form-group-file .wpcf7-form-control-wrap {
    display: none;
}

.form-group-file .label {
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    text-align: center;
    text-decoration-line: underline;
    color: #2B343B;
}

.form-group-file .label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 5px;
    background: url(attachment.svg) center no-repeat;
}

@media screen and (min-width: 1600.02px) {
    .form-group .form-control {
        padding: 25px;
        height: 90px;
        font-size: 20px;
    }
    .form-group textarea.form-control {
        min-height: 200px;
        padding: 25px;
    }
}

.seoblock ul,
.excerpt-block ul,
.content-block__body ul {
    list-style: none;
    padding-left: 0;
}
.seoblock li,
.excerpt-block li,
.content-block__body li {
    position: relative;
    padding-left: 30px;
}
.seoblock li::before,
.excerpt-block li::before,
.content-block__body li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 18px;
    height: 1.5em;
    background: url(check.png) center no-repeat;
}

.seoblock p,
.excerpt-block p,
.content-block__body p {
    text-align: justify;
}

.seoblock h2,
.excerpt-block h2,
.content-block__body h2 {
    color: #09859b;
}

.forcefullwidth_wrapper_tp_banner li {
	background-color: #E0E0E0;
}

/**
 * Header
 ******************************************************************************/
.site-contacts-bar {
	padding-top: 20px;
	padding-bottom: 20px;
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	color: #2B343B;
}
.site-contacts-bar a,
.site-contacts-bar a:hover,
.site-contacts-bar a:focus {
	color: #2B343B;
}
.site-contacts-bar .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.site-contacts-bar .container::before,
.site-contacts-bar .container::after {
	display: none;
}
.site-contacts-bar__contacts {
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 0px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.site-contacts-bar__search {
	position: relative;
	flex: 0 0 150px;
	height: 30px;
}
.site-contacts-bar__search .form-control {
	height: 30px;
	padding-right: 28px;
}
.site-contacts-bar__search [type="submit"] {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 5px;
	display: inline-block;
	border: 0;
	padding: 0;
	box-shadow: none;
	outline: 0;
	color: transparent;
	background-color: transparent;
}
.site-contacts-bar__search [type="submit"]:focus,
.site-contacts-bar__search [type="submit"]:active {
	outline: 0;
}
.site-contacts-bar__search [type="submit"]::before {
	content: '';
	position: absolute;
	right: 0;
	display: block;
	width: 20px;
	height: 20px;
	background: url('search.svg') center no-repeat;
}
.contact {
	display: inline-flex;
	align-items: center;
}
.contact::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 5px;
}
.contact_phone::before {
	background: url('phone.svg') center no-repeat;
}
.contact_email::before {
	background: url('envelope.svg') center no-repeat;
}
.contact_address::before {
	background: url('bullet.svg') center no-repeat;
}
.contact_time::before {
	background: url('schedule.svg') center no-repeat;
}

@media screen and (max-width: 1200px) {
	/*.site-contacts-bar__contacts {
		flex-wrap: wrap;
	}
	.site-contacts-bar__contacts .contact {
		flex: 0 0 50%;
		padding-right: 15px;
	}*/
}

@media screen and (max-width: 992px) {
	/*.site-contacts-bar__contacts .contact {
		flex: 0 0 62%;
	}
	.site-contacts-bar__contacts .contact:nth-child(2n) {
		flex: 0 0 38%;
		padding: 0;
	}*/
}

@media screen and (max-width: 767px) {
  .site-contacts-bar__contacts {display: none;}
	.site-contacts-bar {
		padding: 2px 0;
	}
	.site-contacts-bar__search {
		flex: 1 1 100%;
		margin-top: 10px;
	}
  
  .page-wrap>* {order:1}
  .page-wrap>.site-nav-bar {order: 0;}
}

@media screen and (max-width: 620px) {
	.site-contacts-bar__contacts .contact,
	.site-contacts-bar__contacts .contact:nth-child(2n) {
		flex: 0 0 100%;
		padding: 3px 0;
	}
}

@media screen and (min-width: 768px) {
	.site-contacts-bar__search .form-control:focus {
		position: absolute;
		right: 0;
		width: 400px;
		max-width: calc(100vw - 30px);
		transition: .2s linear width;
	}
}

/**
 * Navigation
 ******************************************************************************/

.nav > li > a {
	padding: 10px;
}

.site-nav-bar {
	margin: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	background: #E0E0E0;
}
.site-nav-bar .container {
	display: flex;
	align-items: center;
}
.site-nav-bar__brand {
	flex: 0 0 250px;
	margin-right: 15px;
}
.site-nav-bar__brand a {text-decoration: none!important;}
.site-nav-bar__brand .slogan {
 display: block;
    white-space: nowrap;
    margin-top: 5px;
    font-size: 16px;
    margin-left: 6px;
}




.site-nav-bar__brand img {
	/*max-width: 100%;*/
      width: 302px;
	height: auto;
}
.site-nav-bar__menu {
	flex: 1;
}
.site-nav-bar__menu .navbar {
	display: flex;
	align-items: center;
	margin: 0;
	float: left;
    margin-top: 7px;
}
.site-nav-bar__menu .button {
	margin-left: auto;
	max-width: 180px;
}
.site-nav-bar__menu .nav-link {
	font-family: "Open Sans", sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 14px;
	line-height: 27px;
	text-transform: uppercase;

	color: #233F4C;
}

.site-nav-bar__menu .button_square {
	display: none;
}

@media screen and (max-width: 1600px) {
	.site-nav-bar {
		padding-top: 15px;
		padding-bottom: 15px;
	}
}
@media screen and (max-width: 1200px) {
  .site-nav-bar__menu .navbar {
   margin-top: 0;
  }
	.site-nav-bar__menu .navbar {
		width: 100%;
	}
	.site-nav-bar__menu .nav-link {
		padding: 10px;
		font-size: 13px;
	}
	.site-nav-bar__menu .button {
		display: none;
		margin-left: auto;
	}
	.site-nav-bar__menu .button_square {
		display: inline-block;
		width: 33px;
		min-height: 33px;
		height: 1px;
		padding: 15px;
		text-indent: -9999px;
	}
	.site-nav-bar__menu .button_square::before {
		width: 33px;
		height: 33px;
	}
}

@media screen and (max-width: 1024px) {
  .site-nav-bar__brand img {
    width: 213px;
    height: auto;
}
.site-nav-bar__brand .slogan {
    display: block;
    white-space: nowrap;
    margin-top: 1px;
    font-size: 14px;
    margin-left: 2px;
    margin-top: -2px;
    margin-bottom: 2px;
}
}

@media screen and (max-width: 992px) {
	.site-nav-bar__brand {
		max-width: 180px;
	}
}
@media screen and (max-width: 768px) {
  
	.site-nav-bar {
		padding: 0;
	}
	.site-nav-bar__menu .button {
		margin-left: auto;
	}
	.site-nav-bar__menu .hamburger {
		/*margin-left: 10px;*/
		
	}
	.site-nav-bar__menu .navbar {
		flex-wrap: wrap;
	}
	.navbar.navbar-desktop .navbar-nav {
		display: none;
	}
}

/**
 * Navbar
 */

.navbar-main .navbar-nav > li > a {
	position: relative;
}
.navbar-main .navbar-nav > li > a:hover,
.navbar-main .navbar-nav > li > a:focus {
	background: #E0E0E0;
	color: #00ACDC;
}

#main-menu-panel {
	position: static;
    top: auto;
    right: auto;
    display: block;
    width: 35px;
    height: 37px;
    float: right;
    padding: 8px 6px;
    margin-bottom: 0px;
}
.navbar-mobile {
	position: fixed;
	left: 0;
	top: 0;
}
#main-menu-panel.open {
	z-index: 110;
	position: fixed;
	top: 45px;
	right: 15px;
	background: rgba(0, 0, 0, 0.1);
	height: 42px;
}

@media screen and (min-width: 768px) {
	#main-menu-panel {
		display: none;
	}
}

#main-menu-panel:not(.open) .hamburger-inner,
#main-menu-panel:not(.open) .hamburger-inner::before,
#main-menu-panel:not(.open) .hamburger-inner::after {
	width: 24px;
}

#main-menu-panel:not(.open) .hamburger--elastic .hamburger-inner {
	top: 1px;
}
#main-menu-panel:not(.open) .hamburger--elastic .hamburger-inner::before {
	top: 8px;
}
#main-menu-panel:not(.open) .hamburger--elastic .hamburger-inner::after {
	top: 16px;
}

li > .dropdown-menu {
	padding: 0;
	border: 0;
	border-radius: 0;
}
.dropdown-menu > li > a {
	display: block;
	padding: 18px 20px;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.5;
	text-transform: uppercase;
	color: #2B343B;
}

.dropdown-menu > li > a,
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
	color: #2B343B;
}

.dropdown-menu .dropdown-menu {
	/*position: relative;*/
	width: auto;
	box-shadow: none;
	margin: 0;
  left: 100%;
  top: 0;
}
.dropdown-menu .dropdown-menu > li > a {
 padding: 10px;
  font-size: 12px;
}
.dropdown-menu .dropdown-menu a {
	/*padding-left: 50px;*/
}

@media screen and (min-width: 992px) {
	.dropdown:hover > .dropdown-menu {
		display: block;
	}
	.nav .dropdown > ul > .dropdown:hover > a {
		background: #00ACDC;
		color: #FFF;
	}
	.nav .dropdown:hover > a {
		background: #E0E0E0;
	}
}

@media screen and (min-width: 1600px) {
	.dropdown-menu > li > a {
		/*font-size: 20px;*/
	}
}

@media screen and (max-width: 768px) {
	#site-mobile-navigation {
		padding: 15px;
		overflow: auto;
	}
	.navbar-nav > li > .dropdown-menu {
		position: relative;
		display: block;
		width: 100%;
		max-width: 100vw;
		text-align: center;
		background-color: transparent;
		box-shadow: none;
		margin-bottom: 15px;

	}
	#site-mobile-navigation .navbar-nav > li > .dropdown-menu a {
		color: #fff;
		font-size: 14px;
		text-transform: initial;
		padding: 10px;
		font-family: Open Sans;
		font-style: normal;
		font-weight: normal;
		font-size: 14px;
		text-align: center;
		color: #FFFFFF;
	}
	.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
		background-color: transparent;
	}
}
}

/**
 * Footer
 ******************************************************************************/
.site-footer_v2 {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 35px 0 0;
	background: #233F4C;
	font-family: "Open Sans", sans-serif;
}
.site-footer_v2 > .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	padding-left: 5px;
	padding-right: 5px;
}
.site-footer_v2 > .container::before {
	display: none;
}
.site-footer_v2 > .container > div {
	padding: 15px 10px;
}
.site-footer__brand {
	order: 5;
	text-align: center;
	flex: 0 0 100%;
}
.site-footer__menus {
	order: 15;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-left: -10px;
	margin-right: -10px;
	flex: 0 0 100%;
}
.site-footer__menus .site-footer__menu-column {
	padding-left: 10px;
	padding-right: 10px;
}
.site-footer__menus ul {
	padding-left: 0;
	list-style: none;
}
.site-footer__menus ul a {
	color: #00ACDC;
}
.site-footer__contacts, .site-footer__contacts .site-footer__title {
	color: #F2F2F2;
	margin-bottom: 3px;
}
.site-footer__title {
	font-weight: bold;
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
	color: #00ACDC;
}
.site-footer__contacts {
	order: 10;
	position: relative;
	flex: 0 0 100%;
}
.site-footer__contacts::before {
	z-index: 1;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: block;
	background: linear-gradient(180deg, #468437 0%, #5EB14B 100%);
}
.site-footer__contacts-inner {
	z-index: 5;
	position: relative;
}
.site-footer__contacts .site-footer__title {
	font-weight: bold;
	font-size: 18px;

	text-transform: uppercase;
}
.site-footer__copy {
	padding: 15px 0;
	background: #2B343B;
	font-size: 13px;
	line-height: 1.5;
	text-align: center;
}
.site-footer__copy, .site-footer__copy a {
	color: #BDBDBD;
}
.site-footer__copy span::after {
	content: ' | ';
}

@media screen and (min-width: 575px) {
	.site-footer__brand {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.site-footer__menus {
		flex: 0 0 100%;
	}
	.site-footer__contacts {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media screen and (min-width: 768px) {
	.site-footer__brand {
		text-align: left;
	}
}

@media screen and (min-width: 992px) {
	.site-footer__brand {
		flex: 0 0 180px;
		max-width: 180px;
	}
	.site-footer__menus {
		order: 7;
		flex: 0 0 60%;
		flex-wrap: nowrap;
	}
	.site-footer__contacts {
		flex: 0 0 15%;
	}
	.site-footer__contacts::before {
	    right: -40vw;
	}
	.site-footer__copy {
		font-size: 16px;
	}
}

@media screen and (min-width: 1200px) {
	.site-footer__brand {
		flex: 0 0 250px;
		max-width: 250px;
	}
}

@media screen and (min-width: 1600px) {
	.site-footer__copy {
		font-size: 20px;
	}
}

/**
 * Before order form
 ******************************************************************************/

.order-form {
	background-color: #F2F2F2;
	padding: 25px 0 50px;
}
.order-form .section-title {
	margin-bottom: 50px;
}
.order-form textarea.form-control {
	min-height: 150px;
}

@media screen and (min-width: 991px) {
	.order-form .form-group {
		margin-bottom: 30px;
	}
}

@media screen and (min-width: 1600px) {
	.order-form textarea.form-control {
		min-height: 210px;
	}
	.order-form .submit {
		min-height: 215px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.order-form .submit .button {
		width: 100%;
	}
}

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

.aligncenter {
	display: block;
	margin: 0 auto 15px;
}

.alignleft {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}

.alignright {
	float: right;
	margin-left: 15px;
	margin-bottom: 15px;
}

@media screen and (min-width: 1200px) {
	.aligncenter {
		margin-bottom: 30px;
	}

	.alignleft {
		margin-right: 30px;
		margin-bottom: 30px;
	}

	.alignright {
		margin-left: 30px;
		margin-bottom: 30px;
	}

}

.grecaptcha-badge {
	z-index: 2;
}


  .jumbotron {
        text-align: left;
        font-family: "Open Sans", sans-serif;
    }
    .jumbotron > .container {
        display: flex;
        align-items: center;
        flex-direction: initial;
        justify-content: initial;
        min-height: 290px;
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .jumbotron__square {
        position: relative;
    }
    .jumbotron__square::before {
        content: '';
        position: absolute;
        left: calc(100% - 70px);
        bottom: calc(100% - 70px);
        display: block;
        width: 100px;
        height: 100px;
        background: linear-gradient(180deg, #468437 0%, #5EB14B 100%);
    }
    .jumbotron__inner {
        z-index: 5;
        position: relative;
        min-width: 320px;
        max-width: 940px;
        padding: 18px 25px;
        background: linear-gradient(180deg, #10B6D6 0%, #055D6C 100%);
    }
    .jumbotron__title {
        position: relative;
        margin: 0 0 40px;
        padding: 0;
        text-align: inherit;
        background: transparent;
        font-size: 30px;
        line-height: 1.4;
        text-transform: uppercase;
        color: #FFFFFF;
    }
    .jumbotron__title::before {
        content: '';
        position: absolute;
        bottom: -30px;
        display: block;
        width: 200px;
        height: 5px;
        background-color: #fff;
    }
    .jumbotron__breadcrumbs {
        padding: 0;
        text-align: inherit;
        background: transparent;
        font-family: Open Sans;

    }
    .jumbotron__breadcrumbs, .jumbotron__breadcrumbs a {
        font-size: 12px;
        color: #FFFFFF;
    }
    .jumbotron__breadcrumbs a {
        text-decoration: underline;
        font-weight: 400;
    }

    @media screen and (min-width: 1600px) {
        .jumbotron > .container {
            min-height: 410px;
        }
        .jumbotron__title {
            font-size: 40px;
        }
    }
