

/*
	Variables / Media queries

	Usage : @media (--sm) { ... }
 */
/* Wide -> Narrow */
/* Align text */
.u-text-left{
	text-align:left;
}
.u-text-center{
	text-align:center;
}
.u-text-right{
	text-align:right;
}

/* Center block */
.u-mxauto{
	margin:0px auto;
}
.u-mxauto-1{
	margin:10px auto;
}
.u-mxauto-2{
	margin:20px auto;
}
.u-mxauto-3{
	margin:30px auto;
}
.u-mxauto-4{
	margin:40px auto;
}
.u-mxauto-5{
	margin:50px auto;
}

.u-mxauto-0-3{
	margin: 0px auto 30px auto
}
/* Active flex and property */
.egale_space {
    height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-flow: column;
	        flex-flow: column;
	-webkit-box-pack: space-evenly;
	    -ms-flex-pack: space-evenly;
	        justify-content: space-evenly;
	-ms-flex-line-pack: center;
	    align-content: center;
}


.u-flex{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
}
.u-flex-row{
	-webkit-box-orient:horizontal;
	-webkit-box-direction:normal;
	    -ms-flex-flow:row;
	        flex-flow:row;
}
.u-flex-wrap{
	-webkit-box-orient:horizontal;
	-webkit-box-direction:normal;
	    -ms-flex-flow:row wrap;
	        flex-flow:row wrap;
}
.u-flex_column{
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	    -ms-flex-flow:column;
	        flex-flow:column;
}
.u-reverse{
	-webkit-box-orient:horizontal;
	-webkit-box-direction:reverse;
	    -ms-flex-flow:row-reverse;
	        flex-flow:row-reverse;
}
.u-justify-content-around{
	-ms-flex-pack:distribute;
	    justify-content:space-around;
}
.u-justify-content-between{
	-webkit-box-pack:justify;
	    -ms-flex-pack:justify;
	        justify-content:space-between;
}
.u-justify-content-center {
	-webkit-box-pack: center !important;
	    -ms-flex-pack: center !important;
	        justify-content: center !important;
}
.u-justify-content-start{
	-webkit-box-pack:start;
	    -ms-flex-pack:start;
	        justify-content:flex-start;
}
.u-justify-content-end{
	-webkit-box-pack:end;
	    -ms-flex-pack:end;
	        justify-content:flex-end;
}
.u-align--items--center {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.u-align--content--start{
	-ms-flex-line-pack:start;
	    align-content:flex-start;
}
.u-align--content--end{
	-ms-flex-line-pack:end;
	    align-content:flex-end;
}
.u-align--content--center{
	-ms-flex-line-pack:center;
	    align-content:center;
}
.u-align--content--stretch{
	-ms-flex-line-pack:stretch;
	    align-content:stretch;
}
.u-align--content--between{
	-ms-flex-line-pack:justify;
	    align-content:space-between;
}
.u-align--content--arround{
	-ms-flex-line-pack:distribute;
	    align-content:space-around;
}

.u-flex-align-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-flow: column;
	        flex-flow: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
    min-height: 400px !important;
}

/* Position */
.u-relative{
	position:relative;
}
.u-absolute{
	position: absolute;
}

.u-top-1{
	top:10px;
}
.u-top-2{
	top:20px;
}
.u-top-3{
	top:30px;
}
.u-top-4{
	top:40px;
}
.u-top-1{
	top:50px;
}

.u-right-1{
	right:10px;
}
.u-right-2{
	right:20px;
}
.u-right-3{
	right:30px;
}
.u-right-4{
	right:40px;
}
.u-right-5{
	right:50px;
}

.u-bottom-1{
	bottom:10px;
}
.u-bottom-2{
	bottom:20px;
}
.u-bottom-3{
	bottom:30px;
}
.u-bottom-4{
	bottom:40px;
}
.u-bottom-5{
	bottom:50px;
}

.u-left-1{
	left:10px;
}
.u-left-2{
	left:20px;
}
.u-left-3{
	left:30px;
}
.u-left-4{
	left:40px;
}
.u-left-5{
	left:50px;
}
.u-nleft-12{
	left:-120px;
}
/*
	Variables / Space
 */

/*
	BASE
		Font faces
*/


@font-face {
    font-family: 'gothambook';
    src: url('/wp-content/themes/bravad-child-max/assets/src/fonts/gotham-book-webfont.woff2') format('woff2'),
         url('/wp-content/themes/bravad-child-max/assets/src/fonts/gotham-book-webfont.woff') format('woff');
    font-weight: normal!important;
    font-style: normal!important;
}

@font-face {
    font-family: 'gothambold';
    src: url('/wp-content/themes/bravad-child-max/assets/src/fonts/gotham-bold-webfont.woff2') format('woff2'),
         url('/wp-content/themes/bravad-child-max/assets/src/fonts/gotham-bold-webfont.woff') format('woff');
    font-weight: normal!important;
    font-style: normal!important;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/*



	Base / Document







	Font sizes on html and body are used to scale all elements at once.



	Use rem unit for all layout elements, so they can be scaled by changing html font-size



	Use em units for text and text related content (ex : Text and its margin) so they



	can be scaled by changing body font-size, and scale independently from layout



*/



/* GENERAL */



*,



*::before,



*::after {



	-webkit-box-sizing: border-box;



	box-sizing: border-box;



}







a{



    text-decoration: none !important;



    color: #FFF;



    cursor:pointer;



}



body {



	overflow-x: hidden;



	min-width: 320px;



	line-height: 150%;



	font-size: 14px;



}







main {



	min-height: 500px;



}







.hide {



	display: none;



	position: relative;



	top: -9999px;



}







.clear {



	clear: both;



}







/* END GENERAL */







/* HEADER */







html{



	overflow-x: hidden;



}



header{



	top:0;



	width:100%;



	z-index:9999;



	height: 110px;



	position: fixed;



	color: #FFF;



    margin-left: 0 !important;



    -webkit-transition: 1s;



    transition: 1s;



}







.before_logo {



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



    -webkit-box-pack: end;



        -ms-flex-pack: end;



            justify-content: flex-end;



    margin-top: 20px;



    margin-bottom: -10px;



    padding-left: 0 !important;



    padding-right: 0 !important;



}







.header_change .before_logo {



	margin-top: 0px;



}







.logo_hide {



	display: none;



	width: 150px;



}







.header_change {



	-webkit-box-shadow: 1px 1px 1px rgba(40, 40, 40, .5);



	        box-shadow: 1px 1px 1px rgba(40, 40, 40, .5);



	z-index: 99999;



}







.header_change .content_menu {



	margin-right: 60px;



}







.header_change .logo_hide {



	display: block;



}







.header_change .logo_show {



	display: none;



}







.logo {



	padding-left: 0 !important;



}







.logo_show {



	width: 150px;



}







header .button_subscribe {



	text-transform: inherit;



    width: 100%;



    display: -webkit-box;



    display: -ms-flexbox;



    display: flex;



    padding: 7px 10px;



}







.button_subscribe--mobile {



	text-transform: inherit;



    width: 100%;



    padding: 7px 10px;



	display: none;



}







.header_change .button_subscribe {



	display: none;



}







.button_subscribe-header {



	display: none;



}







.button_blue--header--mobile {



	display: none;



}







#menu-menu-principal {



	padding-top: 20px;



}







#menu-menu-principal .button_subscribe {



	display: none;



}







.hide--no-scroll {



	display: none;



}







.header_change .hide--no-scroll {



	display: block;



}







.hide_scroll {



	display: none;



}







.hide--scroll {



	position: relative;



	top: -9999px;



}







.header_change .hide--scroll {



	top: 0;



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



}







.header_change .button_blue--header {



	display: block;



}







.header_change {



	background-color: #FFF;



    padding-top: 10px;



    -webkit-transition: 1s;



    transition: 1s;



    height: 90px;



}







.header_change li a {



	color: #336d87;



}







.header_change .header_content {



    margin-top: -40px;



}







.header_content {



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



    -webkit-box-align: center;



        -ms-flex-align: center;



            align-items: center;



    -webkit-box-pack: justify;



        -ms-flex-pack: justify;



            justify-content: space-between;



    margin: 0 auto;



    padding-left: 0 !important;



    padding-right: 0 !important;



}







.header_connection {



	display: none;



}







.header_connection--span {



	margin-left: 10px;



}







.nav_header {



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



    -webkit-box-orient: horizontal;



    -webkit-box-direction: normal;



        -ms-flex-flow: row;



            flex-flow: row;



    -webkit-box-pack: end;



        -ms-flex-pack: end;



            justify-content: flex-end;



    padding-right: 0 !important;



}







.nav_ul {



    display: -webkit-box;



    display: -ms-flexbox;



    display: flex;



    -webkit-box-pack: justify;



        -ms-flex-pack: justify;



            justify-content: space-between;



}







.nav_ul li a {



	font-size: 14px;



}







.nav_ul li a:hover {



	color: #a7d2ff;



}







.nav_ul .sub-menu li a:hover {



	color: #004969;



}







.popup-open {



	cursor: pointer;



}







.popup-close {



    width: 30px;



    height: 30px;



    padding-top: 4px;



    display: inline-block;



    position: absolute;



    top: 0px;



    right: 0px;



    -webkit-transition: ease 0.25s all;



    transition: ease 0.25s all;



    -webkit-transform: translate(50%, -50%);



    transform: translate(50%, -50%);



    border-radius: 1000px;



    background: rgba(0, 0, 0, .8);



    font-family: Arial, Sans-Serif;



    font-size: 20px;



    text-align: center;



    line-height: 100%;



    color: #fff;



}







.popup-close:hover {



    -webkit-transform: translate(50%, -50%) rotate(180deg);



            transform: translate(50%, -50%) rotate(180deg);



    background: rgba(0, 0, 0, 1);



    text-decoration: none;



    color: #FFF;



}







.all_popups {



	display: none;



}







.popups-content {



    position: fixed;



    left: 33.5%;



    top: 19.5%;



    z-index: 9999;



}







.popup_open {



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



	-webkit-box-orient: vertical;



	-webkit-box-direction: normal;



	    -ms-flex-flow: column;



	        flex-flow: column;



	padding: 20px;



	background-color: #FFF;



}







.popup_check {



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



	-webkit-box-orient: horizontal;



	-webkit-box-direction: normal;



	    -ms-flex-flow: row;



	        flex-flow: row;



	-webkit-box-align: center;



	    -ms-flex-align: center;



	        align-items: center;



    height: 24px;



}







.logo_popup-container {



	padding: 0;



}







.logo_popup {



	padding: 0px 0 40px 0;



}







.popup-title {



	text-transform: uppercase;



	text-align: center;



	font-size: 18px;



	color: #282828;



	font-weight: bold;



}







.popup_open form {



    padding-left: 30px;



    padding-right: 0;



    padding-top: 5px;



}







.popup_open label {



	margin: 0;



	font-size: 18px;



	color: #282828;



	font-weight: bold;



}







.popup_open input {



	margin: 5px 0 19px 0;



    padding: 10px;



    display: block !important;



}







.stay_connected {



	width: 10%;



	margin: 20px 0 20px -10px !important;



}







.forget_password {



	color: #22abe5;



}







.forget_password:hover {



	color: #004969;



}







.popup_forget {



	display: none;



}







.popup_back {



	color: #22abe5;



}







.popup_back:hover {



	color: #004969;



}







/* END HEADER */







/* HOME */







.splash {



	min-height: 768px;



    height: 768px;



    height: 100vh;



    width: 100%;



    background: url(/wp-content/uploads/2018/06/Layer-17.png) no-repeat 50% 50%;



    background-size: cover;



    background-attachment: fixed;



    position: relative;



}







.presentation_home {



    color: #FFF;



    display: -webkit-box;



    display: -ms-flexbox;



    display: flex;



    -webkit-box-orient: vertical;



    -webkit-box-direction: normal;



        -ms-flex-flow: column;



            flex-flow: column;



    -webkit-box-pack: center;



        -ms-flex-pack: center;



            justify-content: center;



    -webkit-box-align: center;



        -ms-flex-align: center;



            align-items: center;



    min-height: 100%;



}







.text-splash{



	position: absolute;



	top: 40%;



	left: 0;



	right:0;



}







.home_link {



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



	-webkit-box-orient: horizontal;



	-webkit-box-direction: normal;



	    -ms-flex-flow: row;



	        flex-flow: row;



	-webkit-box-pack: center;



	    -ms-flex-pack: center;



	        justify-content: center;



	margin: 30px auto;



}







.home_link .button_opacity {



    padding: 10px 20px !important;



    text-align: center;



}







.home_about {



	min-height: 600px;



	background-color: #FFF;



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



    -webkit-box-orient: horizontal;



    -webkit-box-direction: normal;



        -ms-flex-flow: row;



            flex-flow: row;



}







.home_about--img {



	width: 50%;



    display: -webkit-box;



    display: -ms-flexbox;



    display: flex;



    -webkit-box-orient: vertical;



    -webkit-box-direction: normal;



        -ms-flex-flow: column;



            flex-flow: column;



    -webkit-box-pack: center;



        -ms-flex-pack: center;



            justify-content: center;



    -webkit-box-align: center;



        -ms-flex-align: center;



            align-items: center;



    padding: 80px;



}







.home_about--content {



	width: 50%;



	color: black;



    display: -webkit-box;



    display: -ms-flexbox;



    display: flex;



    -webkit-box-orient: vertical;



    -webkit-box-direction: normal;



        -ms-flex-flow: column;



            flex-flow: column;



    -webkit-box-pack: space-evenly;



        -ms-flex-pack: space-evenly;



            justify-content: space-evenly;



    padding: 80px 0;



}







.home_about--text {



    height: 100%;



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



	-webkit-box-orient: vertical;



	-webkit-box-direction: normal;



	    -ms-flex-flow: column;



	        flex-flow: column;



	-webkit-box-pack: space-evenly;



	    -ms-flex-pack: space-evenly;



	        justify-content: space-evenly;



	-ms-flex-line-pack: center;



	    align-content: center;



}







.home_about--text h2 {



	margin: 0 !important;



}







.home_about--text div {



	margin: 0;



}







.home_best_title {



	min-height: 220px;



	background-color: #009ee1;



	color: #FFF;



    display: -webkit-box;



    display: -ms-flexbox;



    display: flex;



    -webkit-box-pack: center;



        -ms-flex-pack: center;



            justify-content: center;



    -webkit-box-align: center;



        -ms-flex-align: center;



            align-items: center;



    text-align: center;



    padding: 80px 0;



}







.home_service {



	min-height: 380px;



	width: 100%;



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



    -webkit-box-orient: horizontal;



    -webkit-box-direction: normal;



        -ms-flex-flow: row wrap;



            flex-flow: row wrap;



    color: #FFF;



}







.sub_home_service {



	min-height: 380px;



	width: 25%;



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



    -webkit-box-orient: horizontal;



    -webkit-box-direction: normal;



        -ms-flex-flow: row wrap;



            flex-flow: row wrap;



}







.home_service a {



    color: #FFF !important;



}







.home_individual_service {



	min-height: 380px;



	width: 100%;



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



    -webkit-box-orient: vertical;



    -webkit-box-direction: normal;



        -ms-flex-flow: column;



            flex-flow: column;



    -webkit-box-align: center;



        -ms-flex-align: center;



            align-items: center;



    -webkit-box-pack: space-evenly;



        -ms-flex-pack: space-evenly;



            justify-content: space-evenly;



    position: relative;



}







.home_individual_service--content {



	height: 50%;



    display: -webkit-box;



    display: -ms-flexbox;



    display: flex;



    -webkit-box-orient: vertical;



    -webkit-box-direction: normal;



        -ms-flex-flow: column;



            flex-flow: column;



    -webkit-box-pack: space-evenly;



        -ms-flex-pack: space-evenly;



            justify-content: space-evenly;



    -webkit-box-align: center;



        -ms-flex-align: center;



            align-items: center;



    z-index: 9999;



    position: absolute;



    top: 62%;



    left:0;



    right: 0;





}







.home_individual_service h3, .home_individual_service img {



	z-index: 999;



}



.home_individual_service--content{

	color: #009ee1;

}



.sub_home_service:hover .home_individual_service--content{

	color: white;

	-webkit-transition: 0.5s;

	transition: 0.5s;

}





.home_individual_service--background {



	position: absolute;



    height: 100%;



    left:0;



    width: 100%;



    z-index: 999;



    -webkit-transition: 0.6s;



    transition: 0.6s;



}







.sub_home_service:hover .home_individual_service--background {



	background-color : #009ee1;



	opacity: .6;



    z-index: 1;



}







.home_customers {



	min-height: 400px;





	display: -webkit-box;





	display: -ms-flexbox;





	display: flex;



	-webkit-box-orient: vertical;



	-webkit-box-direction: normal;



	    -ms-flex-flow: column;



	        flex-flow: column;



	-webkit-box-pack: space-evenly;



	    -ms-flex-pack: space-evenly;



	        justify-content: space-evenly;



    -webkit-box-align: center;



        -ms-flex-align: center;



            align-items: center;



    text-align: center;





}







.home_customers--container {



	padding: 0 100px;



}







.home_customers h2 {



	margin: 20px 0 -50px 0 !important;



}







.home_customers >div {



    margin: 60px 0;



}







.swiper-container {



    margin-bottom: 60px;



}







.swiper-slide {



    width: 300px !important;



}







.swiper-button-next, .swiper-button-prev {



	top: 110px;



	margin-top: -52px !important;



}





.blue-back{

	background-color: #009ee1;

	width:100%;

	height: 220px;

	color: white;

	margin: 0!important;

	padding-top: 65px;

}





.home_customers--img {



    margin-bottom: 20px;

    width: auto;

    max-height: 300px;



}



/* END HOME */







/* CONTACT */







.contact--h1 {



	font-size: 30px;



	color: #004969;



}







.contact--h2 {



	font-size: 18px;



	color: #004969;

	text-align: center;

	margin:20px 0;



}







.splash_contact {



	min-height: 768px;



    height: 768px;



    height: 84vh;



    width: 100%;



    background: url(/wp-content/uploads/2018/07/Layer-16-1.png) no-repeat 50% 50%;



    background-size: cover;



    background-attachment: fixed;



    margin-top: 0;



    display: -webkit-box;



    display: -ms-flexbox;



    display: flex;



    -webkit-box-align: center;



        -ms-flex-align: center;



            align-items: center;



}







.contact--first_bloc {



	min-height: 570px;



	background-color: #FFF;



    margin: 10px auto 0 auto;



    display: -webkit-box;



    display: -ms-flexbox;



    display: flex;



    -webkit-box-pack: justify;



        -ms-flex-pack: justify;



            justify-content: space-between;



    margin-top: 100px;



}







.contact--first_bloc-content {



    padding: 70px 0 0 90px;



}







.contact--services {



	min-height: 670px;



	margin-top: 60px;



}







.contact--services-content {



	min-height: 600px;



    display: -webkit-box;



    display: -ms-flexbox;



    display: flex;



    -webkit-box-orient: vertical;



    -webkit-box-direction: normal;



        -ms-flex-flow: column;



            flex-flow: column;



    -ms-flex-pack: distribute;



        justify-content: space-around;



}







.contact--services--individual {



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



	-webkit-box-orient: horizontal;



	-webkit-box-direction: normal;



	    -ms-flex-flow: row wrap;



	        flex-flow: row wrap;

	width:50%;

	margin-bottom: 20px!important;


}







.contact--area {



	background-color: #009ee1;



	color: #FFF;



	width: 100%;



    padding: 60px 20px 100px 20px;



}







.max-width{



	max-width: 1400px;



	margin: 0 auto;



	display: block;



}







.ft-confirmation {



	margin-bottom: 30px;



}







.contact--area form {



    min-height: 400px;



}







.file__remove{



	margin-left: 13px;



    border: 1px solid white;



    padding: 2px 10px;



    font-size: 12px;



    display: none;



}







.file__selected{



      color: #282828;



    padding: 20px 13px 10px;



    font-weight: bold;







}



.file__remove.is-active{



	display:block;



}







.contact--area span.ft-invalid {



	color: darkred;



}







.contact--area label {



	font-size: 18px;



	



}







.contact--area input {



    width: 100% !important;



    padding: 10px !important;



}







.contact--area textarea {



	min-height: 190px;



}







.contact--area select {



    width: 100%;



    height: 40px;



    margin-top: 10px;



}







.ft-input--file {



	display: none;



}







.ft-confirmation--success {



	text-transform: uppercase;



	color: #ABFF00;



	font-size: 20px;



    text-align: center;



}







/* END CONTACT */







/* FLEX CONTENT */







.flex_page {



	margin-bottom: -10px!important;



}







.gabarit > div:first-child {



	padding-top: 100px;



}







.gabarit h1 {



	font-size: 30px;



}







.flex--bloc_txt-image-background {



	max-height: 470px;



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



	-webkit-box-orient: horizontal;



	-webkit-box-direction: normal;



	    -ms-flex-flow: row;



	        flex-flow: row;



	-ms-flex-pack: distribute;



	    justify-content: space-around;



	-webkit-box-align: center;



	    -ms-flex-align: center;



	        align-items: center;







}







.flex--bloc_txt-image-background--txt {



    -webkit-box-align: start;



        -ms-flex-align: start;



            align-items: flex-start;



    padding: 40px 0!important;



}







.flex--bloc_txt-image-background li {



	display: block;



}







.flex--bloc_background-and-image {



    min-height: 445px;



}







.background_image_and_image--center {



	padding-top: 0 !important;



}







.sub_home_service--flex {



	width: 25% !important;



}







.title_text-bloc li {



	display: block;



}







.title_text-bloc:nth-child(odd) {



	background-color: #004969;



	color: #FFF;



    padding-bottom: 10px;



}







.title_text-bloc:nth-child(even) {



	background-color: #009ee1;



	color: #FFF;



    padding-bottom: 10px;



}







.title_text-bloc{



	padding: 0 30% 0 55px ;



}







ul{



	padding: 0;



}







li{



	margin-left: 0;



}	







.title_text-bloc__section {



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



	-webkit-box-orient: vertical;



	-webkit-box-direction: normal;



	    -ms-flex-flow: column;



	        flex-flow: column;



	-webkit-box-pack: center;



	    -ms-flex-pack: center;



	        justify-content: center;



	-ms-flex-item-align: center;



	    align-self: center;



	margin: 0 auto;



}







.title_text-bloc:nth-child(odd) .title_text-bloc__section,



.title_text-bloc:nth-child(even) .title_text-bloc__section {



	padding: 40px 0;



}







.flex_box_services {



	margin-bottom: 17px;



}







.ancre {



	position: relative;



	top: -200px;



}







.space{



	max-width: 83%;



	margin: 40px auto;



	display: block;



	min-height: 370px;



}







.space li{



	display: block;



}







.distance{



	margin: 150px 0;



}











/* FOOTER */







footer a:hover {



	color: grey;



}







.footer_first {



	background:url('/wp-content/uploads/2018/06/Layer-8.png');



	background-size: cover;



	min-height: 450px;



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



	-webkit-box-orient: horizontal;



	-webkit-box-direction: normal;



	    -ms-flex-flow: row;



	        flex-flow: row;



	-webkit-box-pack: center;



	    -ms-flex-pack: center;



	        justify-content: center;



    -webkit-box-align: center;



        -ms-flex-align: center;



            align-items: center;



    padding-left: 220px;



}







.footer_first--contact {



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



	-webkit-box-orient: vertical;



	-webkit-box-direction: normal;



	    -ms-flex-flow: column;



	        flex-flow: column;



	-webkit-box-pack: space-evenly;



	    -ms-flex-pack: space-evenly;



	        justify-content: space-evenly;



    -webkit-box-align: center;



        -ms-flex-align: center;



            align-items: center;



}







.footer_first_title {



	text-align: center;



	color: #FFF;



	line-height: 120%;



    padding-bottom: 40px !important;



}







.footer_second {



	color: #FFF;



	background-color: #282828;



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



	-webkit-box-orient: vertical;



	-webkit-box-direction: normal;



	    -ms-flex-flow: column;



	        flex-flow: column;



	-webkit-box-pack: space-evenly;



	    -ms-flex-pack: space-evenly;



	        justify-content: space-evenly;



    -webkit-box-align: center;



        -ms-flex-align: center;



            align-items: center;



	min-height: 400px;



	padding-top: 70px;



}







.footer_second--first-line {



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



	-webkit-box-orient: horizontal;



	-webkit-box-direction: normal;



	    -ms-flex-flow: row;



	        flex-flow: row;



    -webkit-box-pack: justify;



        -ms-flex-pack: justify;



            justify-content: space-between;



}







.footer_second_links {



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



	-webkit-box-orient: horizontal;



	-webkit-box-direction: normal;



	    -ms-flex-flow: row;



	        flex-flow: row;



    -webkit-box-pack: justify;



        -ms-flex-pack: justify;



            justify-content: space-between;



    -webkit-box-align: center;



        -ms-flex-align: center;



            align-items: center;



    padding-right: 0;



}







.footer_content {



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



	-webkit-box-orient: horizontal;



	-webkit-box-direction: normal;



	    -ms-flex-flow: row wrap;



	        flex-flow: row wrap;



    -webkit-box-pack: justify;



        -ms-flex-pack: justify;



            justify-content: space-between



}







.footer_legal {



	display: -webkit-box;



	display: -ms-flexbox;



	display: flex;



	margin: 0 auto;



	-webkit-box-pack: justify;



	    -ms-flex-pack: justify;



	        justify-content: space-between;



	-webkit-box-align: center;



	    -ms-flex-align: center;



	        align-items: center;



}







.foot{



	position: relative;



	text-align: center;



}







.col{



	-ms-flex-preferred-size: inherit!important;



}







.contact--services--individual_div{



	width: 50%;



	display: inline-block;

	text-align: center;



}







/* END FOOTER */







/* Responsive */



@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {



    .footer_first--img{



    	margin-top: 100px;



    }



    .foot{



		margin-top: 50px;



	}



}



@media screen and (max-width: 1600px) {

		.home_customers--img {



	    margin-bottom: 20px;

	    width: auto;

	    max-height: 250px;



	}

}	



@media screen and (max-width: 1450px) {



	.max-width{



		max-width: 100%;



		margin: 0 40px;



	}

	.contact--services--individual {
	    width: 75%;
	}


}



@media screen and (max-width: 1300px) {



	.button_blue--header {



	    padding: 10px 20px !important;



	}



}







@media screen and (max-width: 1200px) {



	.popups-content {



		left: 28%;



	}



}







@media screen and (max-width: 1024px) {







	.before_logo {



		display: none;



	}







	.header_change {



		padding-top: 0;



	}







	.header_change .content_menu {



		margin-right: 0;



	}







	.hide {



		display: block;



		top: 0 !important;



	}







	.hide_mobile {



		display: none !important;



	}







	.header_content {



	    -webkit-box-orient: vertical;



	    -webkit-box-direction: normal;



	        -ms-flex-flow: column;



	            flex-flow: column;



	    position: relative;



	    padding: 0 !important;



	    z-index: -1;



	    margin-top: -20px;



	}







	.header_change .header_content {



	    margin-top: -27px;



	}







	.header_connection {



		display: block;



	}







	.hide--scroll {



		display: none;



	}







	.header_change .button_subscribe {



		display: -webkit-box;



		display: -ms-flexbox;



		display: flex



	}







	.button_subscribe--mobile {



		position: absolute;



	    top: 0;



	    width: 100%;



	    display: block;



	}



	.header_change .hide--scroll {



		display: none;



	}







	.nav_header {



		position: absolute;



		top: 1000px;



		padding: 0 !important;



	}







	header:hover .nav_header {



		top: 100px;



	}







	.button_blue--header {



		display: none;



	}







	.logo {



		position: absolute !important;



		left: 10px;



		top: 40px;



	}







	.home_individual_service {



		margin-bottom: 9px;



		position: relative;



	}







	.home_individual_service--content {



	    position: absolute;



	    top: 22%;



	    left: 50%;



	    text-align: center;



	    -webkit-transform: translateX(-50%);



	            transform: translateX(-50%);



	    color: white;



		text-shadow: 2px 1px 2px black;



	}







	.home_individual_service img {



	    margin-bottom: 20px;



	}







	.splash_contact {



		height: 100vh;



	}







	.contact--first_bloc {



		min-height: 800px;



		display: -webkit-box;



		display: -ms-flexbox;



		display: flex;



		-webkit-box-orient: vertical;



		-webkit-box-direction: normal;



		    -ms-flex-flow: column;



		        flex-flow: column;



		margin-top: 0;



	    margin-top: 150px;



	}







	.contact--first_bloc-content {



	    margin: 0 auto;



	    padding: 0;



	    text-align: center;



	}







	.contact--h1 {



		font-size: 24px;



	}







	.flex--bloc_txt-image-background {



		-webkit-box-orient: vertical;



		-webkit-box-direction: normal;



		    -ms-flex-flow: column;



		        flex-flow: column;



		-webkit-box-pack: center;



		    -ms-flex-pack: center;



		        justify-content: center;



		-webkit-box-align: center;



		    -ms-flex-align: center;



		        align-items: center;



		max-height: 750px;



		padding-bottom: 40px !important;



	}







	.flex_box_services {



		margin-bottom: 8px;



	}



}







@media screen and (max-width: 979px) {



	.before_logo {



		display: none;



	}

	.contact--services--individual {
	    width: 100%;
	}






	.big_title {



		font-size: 40px!important;



	    text-align: center;



	}







	.home_link {



		margin-top: 40px;



	}







	.footer_first {



		padding: 0;



	}







	.title_text-bloc{



		padding: 0 10% 0 45px ;



	}



	.space{



		max-width: 100%;



		margin: 40px;



		display: block;



	}



}







@media screen and (max-width: 769px) {



	.before_logo {



		display: none;



	}







	.popups-content {



		left: 21%;



	}







	.homepage {



		padding-top: 130px;



	}







	.home_link {



		-webkit-box-orient: vertical !important;



		-webkit-box-direction: normal !important;



		    -ms-flex-flow: column !important;



		        flex-flow: column !important;



	}







	.button_opacity {



		margin: auto !important;



	}







	.home_link .button_opacity {



		display: inline-block !important;



		padding: 10px 20px;



	}







	.splash {



	    margin-top: -134px;



        min-height: 500px;



        padding-bottom: 40px;



	    padding-top: 100px;



    	height: 70vh;



	}







	.big_title {



	    font-size: 30px!important;



	}







	.sub_big_title {



		font-size: 20px!important;



	}







	.home_about {



		-webkit-box-orient: vertical;



		-webkit-box-direction: normal;



		    -ms-flex-flow: column;



		        flex-flow: column;



	    -ms-flex-pack: distribute;



	        justify-content: space-around;



	    min-height: 900px;



	    padding: 20px 0 0px 0;



	}







	.home_about--img {



		width: 100%



	}







	.home_about--img img{



		max-width: 200px;



	}







	.home_about--content {



		width: 100%;



		padding: 40px 20px;



	}







	h2 {



		line-height: 150%;



	}







	.home_about--text {



		min-height: 400px;



	}







	.sub_home_service {



		width: 100% !important;



	    min-height: 290px;



	}







	.home_customers {



		min-height: 400px;



	}







	.swiper-container {



		height: 200px !important;



    	padding-top: 30px !important;



	}







	.swiper-button-prev {



		left: 20px !important;



		top: 170px !important;



	}







	.swiper-button-next {



		right: 20px !important;



		top: 170px !important;



	}







	.mobile_center {



		margin: 0 auto !important;



	}







	.home_individual_service {



		min-height: 290px;



		margin-bottom: 0;



	}







	.footer_first {



		-webkit-box-orient: horizontal !important;



		-webkit-box-direction: normal !important;



		    -ms-flex-flow: row !important;



		        flex-flow: row !important;



	}







	.footer_second {



		min-height: 470px;



	}







	.footer_content {



	    -webkit-box-orient: horizontal;



	    -webkit-box-direction: normal;



	        -ms-flex-flow: row wrap;



	            flex-flow: row wrap;



    	margin: 0 40px 50px;



    	width: 100%;



    	max-height: 100px;



	}







	.footer_content--div {



		margin: 20px 0;



	}







	.footer_second--first-line {



		-webkit-box-orient: vertical;



		-webkit-box-direction: normal;



		    -ms-flex-flow: column;



		        flex-flow: column;



	    height: 100px;



		max-height: 100px;



	}







	.footer_first_title {



		font-size: 18px;



   		width: 100%;



	}







	.footer_first--img {



		display: none;



	}







	.footer_legal {



		-webkit-box-orient: vertical;



		-webkit-box-direction: normal;



		    -ms-flex-flow: column;



		        flex-flow: column;	



		max-height: 50px;	



	}







	.contact--services {



		padding-bottom: 40px;



	}







	.contact--services--individual {



		-webkit-box-orient: vertical;



		-webkit-box-direction: normal;



		    -ms-flex-flow: column;



		        flex-flow: column;
		width:100%;


	}







	.contact--services--individual_div {


		width:100%;
		margin-bottom: 30px;



	}







	.button_submit--form {



    	margin-top: -52px!important;



	}







	.contact--first_bloc {



		min-height: 700px;



		margin-top: 120px;



	}







	.contact--area {



	    padding-top: 60px;



	}







	.contact--area-text {



	    padding-bottom: 50px;



	}







	.flex--bloc_background-and-image {



		-webkit-box-pack: center;



		    -ms-flex-pack: center;



		        justify-content: center;



	}







	.flex--bloc__content-img {



		padding-top: 30px;



	}







	.flex--bloc__content-img img {



		width: auto;



	}







	.flex_box_services {



		margin-bottom: 17px;



	}



	.center-mobile{



		margin: 0 auto;



		text-align: center;



		display: block;



	}



	.home_about--img{



		padding: 40px 20px;



	}



}







@media screen and (max-width: 575px) {



	.popups-content {



		width: 80%;



    	left: 10%;



	}







	.popup_connection {



	    height: 480px;



	}







	.logo_popup-container {



		width: 60%;



    	max-height: 25%;



	}







	.logo_popup {



		padding: 0;



	}



	.button_submit--form {



    	margin-top: 25px!important;



    	float: left!important;



    	margin-left: -4px;



	}







}







@media screen and (max-width: 560px) {







	.before_logo {



		display: none;



	}







	h2 {



		font-size: 24px !important;



	}







	.splash {



        padding-top: 200px;



        padding-bottom: 40px;



        background-attachment: static;



	}







	.sub_big_title {



		font-size: 18px!important;



	}







	.home_link {



		-webkit-box-orient: vertical;



		-webkit-box-direction: normal;



		    -ms-flex-flow: column;



		        flex-flow: column;



	    margin-top: 20px;







	}







	.home_link .button_opacity {



		padding: 10px 50px;



		  height: 40px;



	}







	.homepage {



		padding-top: 100px;



	}







	.home_about {



		min-height: 700px;



	    padding: 0 20px;



	}







	.home_about--img img {



		width: 50%;



	}







	.home_about--text {



		padding: 0;



	}







	.home_best_title {



		min-height: 150px;



	}







	.home_customers {



		min-height: 350px;



		margin-bottom: 0px;



	}







	.home_customers--container {



		padding: 0 40px;



	}







	.home_customers--img {



		width: auto !important;



		margin: 20px 0;



	}







	.swiper-slide {



		padding-bottom: 40px;



	}







	.swiper-slide {



		padding-right: 100px !important;



    	margin-top: 30px !important;



	}







	.contact--h2 {



		font-size: 20px !important;



	}







	.footer_first {



		min-height: 300px;



	}







	.footer_first_title {



	    padding-bottom: 40px !important;



	    margin-top: 0 !important;



	}







	.footer_first--img {



		display: none;



	}







	.footer_first--contact {



		padding-bottom: 30px !important;



	}







	.footer_second_links {



		display: none;



	}







	.footer_content--div {



		display: none;



	}







	.footer_content--div:first-child {



		display: block;



	}







	.footer_second {



		min-height: 450px;



		padding-top: 50px;



	}







	.footer_content {



		margin: 0;



   		width: 95%;



	}







	.footer_second--first-line {



		height: 50px;



	}







	.footer_legal {



		max-height: inherit;



	    width: 95%;



        -webkit-box-pack: space-evenly;



            -ms-flex-pack: space-evenly;



                justify-content: space-evenly;



        max-height: inherit;



        margin-top: 50px;



	}







	.flex--bloc_txt-image-background--img {



		display: -webkit-box;



		display: -ms-flexbox;



		display: flex;



	    -webkit-box-align: center;



	        -ms-flex-align: center;



	            align-items: center;



	    -webkit-box-pack: center;



	        -ms-flex-pack: center;



	            justify-content: center;



        margin: 0;



	}







	.flex--bloc__content-img {



	    width: 150px;



	    padding-top: 60px;



	    padding-bottom: 20px;



	}







	.flex--bloc_txt-image-background {



		padding-bottom: 20px !important;



	}







	.flex--bloc_txt-image-background--img img {



		width: 100%;



	}







	.splash {



	    height: 90vh;



	    padding-top: 150px;



	}







	.splash_contact {



	    min-height: 950px;



	}



}







@media screen and (max-width: 394px) {



	.popup_connection {



	    height: 530px;



	}



}







@media screen and (max-width: 320px) {







	.splash {



	    margin-top: -180px;



	    height: 120vh;



	}







	.home_customers {



		min-height: 290px;



	}







	.home_individual_service {



		padding-top: 50px;



	}







	.home_individual_service h3 {



		padding-top: 50px;



	}







	.home_customers--img {



		width: 60% !important;



	}







	.title_text-bloc:nth-child(even) {



		min-height: 800px !important;



	}







	.title_text-bloc:nth-child(odd) {



		min-height: 400px !important;



	}







	.contact--first_bloc-content {



		width: 100%;



	}







	.contact--h1 {



		margin: 60px 0;



	}







	.contact--location-map {



		margin-top: 300px;



	}







	.contact--services {



		min-height: 500px;



	}







	.contact--services--individual {



		width: 100%;



		line-height: 200%;



		display: block;



	}







	.contact--services--individual_div {



		width: 100%;



	}







	.contact--first_bloc {



		margin-top: 20px;



	}







	.contact--services {



		padding-bottom: 0;



	}











	.contact--services-content section {



		min-height: 300px;



	}







	.footer_second {



		padding-left: 10px;



	}







	.home_individual_service--background {



		position: relative;



	}







	.flex--bloc_txt-image-background {



		display: block;



	}







	.flex--bloc_txt-image-background {



		min-height: 800px !important;



	}







	.flex--bloc_txt-image-background--img img {



		z-index: -1;



	}







	.footer_first_title {



		font-size: 14px;



	    margin-top: 30px !important;



	    width: 100%;



	}



}
/* Normalize */
button,
input,
optgroup,
textarea {
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
}

input:-webkit-autofill {
    -webkit-text-fill-color: black;
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}
textarea {
    resize: vertical;
}
*:focus{
    outline: none;
}
/* Text & Wrappers */
label {
	margin-top: .5rem;
}
input{
	margin:10px 0 0;
	width:90%;
	padding:7px 10px;
}
fieldset {}
legend {}
/* Text inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea {
	border:1px solid #045bab;
	border-radius:3px;
}
textarea {
	resize: none;
	width:100%;
	min-height:150px;
	margin:10px 0 20px 0;
	padding: 10px;
}
select {
}
/* Buttons */
button,
[type="submit"] {
}
/* Radio / Checkbox */
input[type="radio"],
input[type="checkbox"] {
}
/* Autocomplete styles */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
select:-webkit-autofill,
select:-webkit-autofill:hover {}
/* Contact form */
.anchor{

  display: block;

  height: 90px; /*same height as header*/

  margin-top: -90px; /*same height as header*/

  visibility: hidden;

}





@media screen and (max-width: 1025px) {

	.menu-item-has-children{

		position: relative;



	}

	.menu-item-97{
		position: relative!important;
	}

	/*.menu-item-has-children:after{

		content: url(/wp-content/themes/bravad-child-max/assets/src/img/arrow.svg);

		position: absolute;

		right:30%;

		height: 20px;

		width: 25px;

		top: 0px;

	}
*/
}



/*@media screen and (max-width: 640px) {

	.menu-item-has-children:after{

		content: url(/wp-content/themes/bravad-child-max/assets/src/img/arrow.svg);

		position: absolute;

		right:20%;

		height: 20px;

		width: 25px;

		top:0;

	}



}	*/
ol,
ul {
}
li{
	list-style: none;
	display: inline-block;
	margin-left:20px;
}
li a{
	text-decoration:none;
	text-transform:uppercase;
	font-size:20px;
}
/*
img,
picture {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}
*/
/* Inline svg */
svg {
	background-color: transparent;
	fill: currentColor;
	max-width: 100%;
	max-height: 100%;
}
#menu-menu-principal li {



    margin-left: 60px;



}











#menu-item-97 {



  position: relative;



}







.sub-menu {



  -webkit-box-orient: vertical;



  -webkit-box-direction: normal;



      -ms-flex-flow: column;



          flex-flow: column;



  position: absolute;



  left: -100px;



  padding-top: 15px;

  display: none;



}







.sub-menu li {



    margin-left: 60px;



    padding: 10px 20px;



    background-color: lightgrey;



    color: #FFF;



    width: 250px;



    border-bottom: 1px solid black;



}







.sub-menu li a {



    color: #FFF;



}





/*

.menu_none {



	display: none;



}*/







.arrow_position {



  display: none;



}







#menu-item-97:hover .sub-menu {



  display: -webkit-box;



  display: -ms-flexbox;



  display: flex;



}







/* MOBILE NAV */







* {



  -webkit-box-sizing: border-box;



          box-sizing: border-box;



}







#menu-toggle span {



  display: block;



  background: #FFF;



  border-radius: 2px;



  -webkit-transition: .25s ease-in-out;



  transition: .25s ease-in-out;



}







.header_change #menu-toggle span {



  background: black;



}







#menu-toggle {



  width: 35px;



  height: 35px;



  position: absolute;



  cursor: pointer;



  border-radius: 5px;



  right: 20px;



  top: 45px !important;



  -webkit-transition: 0.5s;



  transition: 0.5s;



  z-index: 30;



  display: none;  



}







#menu-toggle.change {



  top: 10px;



}







#menu-toggle #hamburger {



  position: absolute;



  height: 100%;



  width: 100%;



}







#menu-toggle #hamburger span {



  width: 35px;



  height: 5px;



  position: relative;



  margin: 6px 0;



}







#menu-toggle #hamburger span:nth-child(1) {



  -webkit-transition-delay: .3s;



          transition-delay: .3s;



}







#menu-toggle #hamburger span:nth-child(2) {



  -webkit-transition-delay: .425s;



          transition-delay: .425s;



}







#menu-toggle #hamburger span:nth-child(3) {



  -webkit-transition-delay: .65s;



          transition-delay: .65s;



}







#menu-toggle #cross {



  position: absolute;



  height: 100%;



  width: 100%;



  -webkit-transform: rotate(45deg);



          transform: rotate(45deg);



}







#menu-toggle #cross span:nth-child(1) {



  height: 0%;



  width: 5px;



  position: absolute;



  top: 0px;



  left: 15px;



  -webkit-transition-delay: 0s;



          transition-delay: 0s;



}







#menu-toggle #cross span:nth-child(2) {



  width: 0%;



  height: 5px;



  top: 15px;



  position: absolute;



  -webkit-transition-delay: .25s;



          transition-delay: .25s;



}







#menu-toggle.open #hamburger span {



  width: 0%;



}







#menu-toggle.open #hamburger span:nth-child(1) {



  -webkit-transition-delay: 0s;



          transition-delay: 0s;



}



.menu-item-328{

  display: none;

}





#menu-toggle.open #hamburger span:nth-child(2) {



  -webkit-transition-delay: .25s;



          transition-delay: .25s;



}







#menu-toggle.open #hamburger span:nth-child(3) {



  -webkit-transition-delay: .15s;



          transition-delay: .15s;



}







#menu-toggle.open #cross span:nth-child(1) {



  height: 100%;



  -webkit-transition-delay: .525s;



          transition-delay: .525s;



}







#menu-toggle.open #cross span:nth-child(2) {



  width: 100%;



  -webkit-transition-delay: .275s;



          transition-delay: .275s;



}











@media screen and (max-width: 1024px) {







  .arrow_position {



    display: block;



    position: absolute;



    left: 25%;



    top: 40px;



    height: 20px;



    width: 20px;



  }



  .menu-item-328{

    display: block;

  }



  .menu-item-328:before{

    content: url('/wp-content/uploads/2018/06/connection.png');

    position: absolute;

    height: 20px;

    width: 20px;

    left: 20%;

  }



  #menu-item-97 {



      position: static;



      position: initial;



      display: inline;



      display: initial;



      margin: 0;



      margin: initial;



  }







  #menu-menu-principal .sub-menu {



    padding-left: 0;



    margin-top: 30px;



    position: static;



    position: initial;



    padding-top: 0;



  }







  #menu-menu-principal .sub-menu li {



    -webkit-box-shadow: 1px 1px 1px black;



            box-shadow: 1px 1px 1px black;



    padding: 14px 0px;



    margin-bottom: 0 !important;



    background-color: lightgrey;



    border: none;



    width: 100%;



  }







  #menu-menu-principal .sub-menu li a {



    color: #FFF !important;



  }







  #menu-menu-principal .sub-menu li a:hover {



    color: black !important;



  }







	.nav_ul {



    display: block;



		visibility: hidden;



		opacity: 0;



		-webkit-transition: 1s;



		transition: 1s;



	}







	.nav_ul.open {



		visibility: visible;



		opacity: 1;



		background-color: #FFF;



	}







	.nav_ul li {



		display: block !important;



	}







	.button_blue--header--mobile {



		display: block;



	}







	.content_menu {



	    width: 100%;



	    text-align: center;



	}







	#menu-menu-principal {



	    padding: 40px 0 0 0;



	}







	#menu-menu-principal li {



		  list-style: none;



	    display: inline-block;



	    margin-left: 0px;



	    margin-bottom: 40px;



	    width: 100%;



	    display: inline-block;



	}







	#menu-menu-principal li a {



		color: #282828;



	}







	#menu-menu-principal li a:hover {



		color: #009ee1;



	}







	#menu-toggle {



		display: block !important;



    top: 55px !important;



	}



}

  





/* END MOBILE NAV */
/*
	Base / Table
 */
table {
	border-collapse: collapse;
	width: 100%;
}
th {}
td {}
body {
	font-family: 'gothambook';
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	line-height: 1.5;
	font-weight: bold;
	text-transform:uppercase;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6{
	line-height:150%;
}
h1,
.h1 {
	font-size:40px;
}
h2,
.h2 {
	font-size:30px;
}
h3,
.h3 {
	font-size:22px;
}
.big_title {
	font-size: 40px;
	text-align: center;
}

.sub_big_title {
	font-size: 24px;
	text-align: center;
}

.font_18 {
	font-size: 18px;
}

.u-bold {
	font-weight: bold;
}

a,
button{
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.contact--services--individual_div a,
.contact--text a{
	color: #009ee1;
}
p,
li,
label {}
a:hover {
	color:#110e0c;
}
@media (hover: none) {
	a:hover {}
	a:active {}
}
p {
}
p:last-child,
p:last-of-type {
}
strong {
	font-weight: 700;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid lightgrey;
	margin: 1em 0;
	padding: 0;
}
/* Text selection */
::-moz-selection {
	background: lightGrey;
	text-shadow: none;
}
::selection {
	background: lightGrey;
	text-shadow: none;
}
.clearfix::before,
.clearfix::after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}
/*
	Layout / Generic

	Generic layout element class name is expected to start with "_"
*/

/* BUTTONS */

.button_opacity {
	border: 1px solid #FFF;
	color: #FFF;
	text-align: center;
	padding: 10px 25px;
	text-transform: uppercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    cursor: pointer;
}

.button_opacity:hover {
	color: #FFF;
	background-color: rgba(255, 250, 250, .8);
	color: #282828;
}

.button_blue {
	background-color: #009ee1;
	color: #FFF;
	text-align: center;
	padding: 10px 35px;
	text-transform: uppercase;
	cursor: pointer;
}

.button_blue:hover {
	color: #FFF;
	background-color: #004969;
}

.button_blue--header {
	background-color: #009ee1;
	color: #FFF;
	text-align: center;
	padding: 10px 30px;
	text-transform: uppercase;
	cursor: pointer;
}

.button_blue--header:hover {
	color: #FFF;
	background-color: #004969;
}

.button_blue_f--header {
	background-color: #004969;
	color: #FFF;
	text-align: center;
	padding: 10px 30px;
	text-transform: uppercase;
	cursor: pointer;
}

.button_blue_f--header:hover {
	color: #FFF;
	background-color: #009ee1;
}

.button_blue--header--mobile {
	background-color: #009ee1;
	color: #FFF;
	text-align: center;
	padding: 10px 30px;
	text-transform: uppercase;
	cursor: pointer;
}

.button_blue--header--mobile:hover {
	color: #FFF;
	background-color: #004969;
}

.button_blue--medium {
	background-color: #009ee1;
	color: #FFF;
	text-align: center;
	padding: 10px 50px;
	text-transform: uppercase;
	cursor: pointer;
}

.button_blue--medium:hover {
	color: #FFF;
	background-color: #004969;
}

.button_subscribe {
	background-color: #004969;
	color: #FFF;
	text-align: center;
	padding: 10px 35px;
	text-transform: uppercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    cursor: pointer;
}

.button_subscribe:hover {
	color: #FFF;
	background-color: #009ee1;
}

.button_subscribe--mobile {
	background-color: #004969;
	color: #FFF;
	text-align: center;
	padding: 10px 35px;
	text-transform: uppercase;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    cursor: pointer;
    -webkit-transform: 1s;
            transform: 1s;
}

.button_subscribe--mobile:hover {
	color: #FFF;
	background-color: #009ee1;
}

.button_submit--form {
	color: #FFF;
	text-align: center;
	padding: 10px 35px;
	text-transform: uppercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    border: 1px solid #FFF;
    background-color: #009ee1;
    padding: 10px 70px;
    margin-right: 5px;
    margin-top: -42px;
    float: right;
    cursor: pointer;
}

.button_submit--form:hover,
.button_submit--field:hover,
.file__remove:hover{
	color: #FFF;
	background-color: #004969!important;
}
.ft-autofill{
	display: none;
}

.button_submit--field {
	color: #FFF;
	text-align: center;
	padding: 10px 35px;
	text-transform: uppercase;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    border: 1px solid #FFF;
    background-color: #009ee1;
    padding: 10px 70px;
    margin-left: 13px;
    cursor: pointer;
}

.button_submit--field:hover {
	color: #FFF;
}


/* SPACER */

._spacer {
	min-width: 1px;
	height: 2.1rem;
	clear: both;
	overflow: hidden;
	display: block;
}
._spacer--small {
	height: 0.75rem;
}
._spacer--large {
	height: 4rem;
}
._spacer--txt {
	height: 1.45em;
}

/* 404 */
.error_page{
    margin: 100px auto 0 auto !important;
    padding: 0 50px;
}

.error_page a {
	color: #009ee1;
	text-decoration: underline;
}
/*
	Layout / Grid

	Taken from Bootstrap V4, with some custom tweaks.
 */
/* Restrict content width trough site */
._container {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 75rem;
	max-width: 95%;
	max-width: calc(100% - 4.2rem);
}
/* Narrower */
._container--small {
	width: 62.5rem;
}
/* Full width container. Columns will stick to document bounds */
._container--full {
	max-width: 100%;
	width: 100%;
}
/* Fluid container. Columns will keep default margin from document bounds */
._container--fluid {
	width: 95%;
	width: calc(100% - 4.2rem);
}
/* Row. Chidlren of ._container, parent of ._col */
._row {
	display: -webkit-box;
	display: flex;
	display: -ms-flexbox; 
	-ms-flex-wrap: wrap; 
	    flex-wrap: wrap;
	margin: -1.05rem;
}
/* Smaller gutter variant. Use with ._col._col--small */
._row--small {
	margin: -0.375rem;
}
/* Larger gutter variant. Use with ._col._col--large */
._row--large {
	margin: -2rem;
}
/* Vertically centered variant */
._row--vertical-center {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
/* Horizontally centered variant */
._row--horizontal-center {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
/* Column. Children of ._row */
._col {
	position: relative;
	width: 100%;
	min-height: 1px;
	/* padding: calc(var(--space-medium) / 2); */
	padding: 0 13px;
	-ms-flex-preferred-size: 0;
	    flex-basis: 0;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	max-width: 100%;
}
/* Smaller gutter variant. Use with ._row._row--small */
._col--small {
	padding: 0.375rem;
}
/* Larger gutter variant. Use with ._row._row--large */
._col--large {
	padding: 2rem;
}
/* Column will use available space in row */
._col--xl-auto {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: auto;
}
/* All columns width. Uses Bootstrap 12 column model */
._col--xl-1 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 8.333333%;
	        flex: 0 0 8.333333%;
	max-width: 8.333333%;
}
._col--xl-2 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 16.666667%;
	        flex: 0 0 16.666667%;
	max-width: 16.666667%;
}
._col--xl-3 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
	max-width: 25%;
}
._col--xl-4 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333333%;
	        flex: 0 0 33.333333%;
	max-width: 33.333333%;
}
._col--xl-5 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 41.666667%;
	        flex: 0 0 41.666667%;
	max-width: 41.666667%;
}
._col--xl-6 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	max-width: 50%;
}
._col--xl-7 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 58.333333%;
	        flex: 0 0 58.333333%;
	max-width: 58.333333%;
}
._col--xl-8 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 66.666667%;
	        flex: 0 0 66.666667%;
	max-width: 66.666667%;
}
._col--xl-9 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 75%;
	        flex: 0 0 75%;
	max-width: 75%;
}
._col--xl-10 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 83.333333%;
	        flex: 0 0 83.333333%;
	max-width: 83.333333%;
}
._col--xl-11 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 91.666667%;
	        flex: 0 0 91.666667%;
	max-width: 91.666667%;
}
._col--xl-12 {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 100%;
	        flex: 0 0 100%;
	max-width: 100%;
}

@media (max-width: 1260px) {
	._col--lg-auto {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 auto;
		        flex: 0 0 auto;
		width: auto;
	}
	._col--lg-1 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 8.333333%;
		        flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}
	._col--lg-2 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 16.666667%;
		        flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}
	._col--lg-3 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 25%;
		        flex: 0 0 25%;
		max-width: 25%;
	}
	._col--lg-4 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.333333%;
		        flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
	._col--lg-5 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 41.666667%;
		        flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}
	._col--lg-6 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
		max-width: 50%;
	}
	._col--lg-7 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 58.333333%;
		        flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}
	._col--lg-8 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 66.666667%;
		        flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}
	._col--lg-9 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 75%;
		        flex: 0 0 75%;
		max-width: 75%;
	}
	._col--lg-10 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 83.333333%;
		        flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}
	._col--lg-11 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 91.666667%;
		        flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}
	._col--lg-12 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (max-width: 979px) {
	._col--md-auto {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 auto;
		        flex: 0 0 auto;
		width: auto;
	}
	._col--md-1 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 8.333333%;
		        flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}
	._col--md-2 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 16.666667%;
		        flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}
	._col--md-3 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 25%;
		        flex: 0 0 25%;
		max-width: 25%;
	}
	._col--md-4 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.333333%;
		        flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
	._col--md-5 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 41.666667%;
		        flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}
	._col--md-6 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
		max-width: 50%;
	}
	._col--md-7 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 58.333333%;
		        flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}
	._col--md-8 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 66.666667%;
		        flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}
	._col--md-9 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 75%;
		        flex: 0 0 75%;
		max-width: 75%;
	}
	._col--md-10 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 83.333333%;
		        flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}
	._col--md-11 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 91.666667%;
		        flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}
	._col--md-12 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (max-width: 769px) {
	._col--sm-auto {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 auto;
		        flex: 0 0 auto;
		width: auto;
	}
	._col--sm-1 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 8.333333%;
		        flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}
	._col--sm-2 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 16.666667%;
		        flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}
	._col--sm-3 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 25%;
		        flex: 0 0 25%;
		max-width: 25%;
	}
	._col--sm-4 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.333333%;
		        flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
	._col--sm-5 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 41.666667%;
		        flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}
	._col--sm-6 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
		max-width: 50%;
	}
	._col--sm-7 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 58.333333%;
		        flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}
	._col--sm-8 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 66.666667%;
		        flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}
	._col--sm-9 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 75%;
		        flex: 0 0 75%;
		max-width: 75%;
	}
	._col--sm-10 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 83.333333%;
		        flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}
	._col--sm-11 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 91.666667%;
		        flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}
	._col--sm-12 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (max-width: 560px) {
	._col--xs-auto {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 auto;
		        flex: 0 0 auto;
		width: auto;
	}
	._col--xs-1 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 8.333333%;
		        flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}

	._col--xs-2 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 16.666667%;
		        flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	._col--xs-3 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 25%;
		        flex: 0 0 25%;
		max-width: 25%;
	}

	._col--xs-4 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.333333%;
		        flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	._col--xs-5 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 41.666667%;
		        flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}

	._col--xs-6 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
		max-width: 50%;
	}

	._col--xs-7 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 58.333333%;
		        flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}

	._col--xs-8 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 66.666667%;
		        flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}

	._col--xs-9 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 75%;
		        flex: 0 0 75%;
		max-width: 75%;
	}

	._col--xs-10 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 83.333333%;
		        flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}

	._col--xs-11 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 91.666667%;
		        flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}

	._col--xs-12 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		max-width: 100%;
	}
}
/*
	Layout / Specific

	Specific layout element are expected to use ids
*/

#Map {
    width: 100%;
    height: 570px;
    position: relative;
    max-width: none !important;
}

#Map img {
    max-height: none;
    max-width: none;
    -webkit-appearance: none;
}

@media screen and (max-width: 1024px) {
	.contact--location-map {
		max-width: 100% !important;
	}

	#Map {
		height: 450px;
	}
}
/**
 * Swiper 4.3.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 5, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-invisible-blank-slide {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, .25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, .25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, .25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, .1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, .5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter:url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="50" /></filter></svg>#filter');
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* Swiper */

.swiper-container {
    height: 200px;
}

.swiper-slide {
	min-height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.swiper-button-prev {
    left: 0px;
}

.swiper-button-next {
    right: 0px;
}

@media screen and (max-width:560px) {

	.swiper-container {
		width: 100%;
	}

	.home_customers--img {
		width: 100%;
	}

	.swiper-button-prev {
	    left: 50px;
	}

	.swiper-button-next {
	    right: 50px;
	}

}

.swiper-button-prev {
	margin-left: 30px;
}

.swiper-button-next {
	margin-right: 30px;
}

@media screen and (max-width:1024px) {
	.swiper-container {
		height: 700px;
	}

	.swiper-button-prev, .swiper-button-next {
		display: none;
	}
}

@media screen and (max-width:978px) {
	.swiper-container {
		height: 585px;
	}
}

@media screen and (max-width:768px) {
	.swiper-container {
		height: 450px;
	}
}

@media screen and (max-width:560px) {
	.swiper-container {
		display: none;
	}
}

@media screen and (max-width:320px) {
	.home_customers--container {
		display: none;
	}
}


/* Margin nul */
.u-margin-nul{
	margin:0 !important;
}

/* Margin nul */
.u-mt-nul{
	margin-top:0 !important;
}
.u-mr-nul{
	margin-right:0 !important;
}
.u-mb-nul{
	margin-bottom:0 !important;
}
.u-ml-nul{
	margin-left:0 !important;
}

/* Margin */
.u-m-1{
	margin:10px;
}
.u-m-2{
	margin:20px;
}
.u-m-3{
	margin:30px;
}
.u-m-4{
	margin:40px;
}
.u-m-5{
	margin:50px;
}

.u-mt-1{
	margin-top:10px;
}
.u-mt-2{
	margin-top:20px;
}
.u-mt-3{
	margin-top:30px;
}
.u-mt-4{
	margin-top:40px;
}
.u-mt-5{
	margin-top:50px;
}
.u-mt-8 {
	margin-top: 80px;
}

.u-mr-1{
	margin-right:10px;
}
.u-mr-2{
	margin-right:20px;
}
.u-mr-3{
	margin-right:30px;
}
.u-mr-4{
	margin-right:40px;
}
.u-mr-5{
	margin-right:50px;
}

.u-mb-1{
	margin-bottom:10px;
}
.u-mb-2{
	margin-bottom:20px;
}
.u-mb-3{
	margin-bottom:30px;
}
.u-mb-4{
	margin-bottom:40px;
}
.u-mb-5{
	margin-bottom:50px;
}

.u-ml-1{
	margin-left:10px;
}
.u-ml-2{
	margin-left:20px;
}
.u-ml-3{
	margin-left:30px;
}
.u-ml-4{
	margin-left:40px;
}
.u-ml-5{
	margin-left:50px;
}
.u-ml-15{
	margin-left:150px;
}

/* Padding nul */
.u-p-nul{
	padding:0 !important;
}
.u-pt-nul{
	padding-top:0 !important;
}
.u-pr-nul{
	padding-right:0 !important;
}
.u-pb-nul{
	padding-bottom:0 !important;
}
.u-pl-nul{
	padding-left:0 !important;
}

/* Padding */
.u-p-1{
	padding:10px;
}
.u-p-2{
	padding:20px;
}
.u-p-3{
	padding:30px;
}
.u-p-4{
	padding:40px;
}
.u-p-5{
	padding:50px;
}
.u-p-7{
	padding:70px;
}

.u-pt-1{
	padding-top:10px;
}
.u-pt-2{
	padding-top:20px;
}
.u-pt-3{
	padding-top:30px;
}
.u-pt-4{
	padding-top:40px;
}
.u-pt-5{
	padding-top:50px;
}
.u-pt-03{
	padding-top:3px;
}

.u-pr-1{
	padding-right:10px;
}
.u-pr-2{
	padding-right:20px;
}
.u-pr-3{
	padding-right:30px;
}
.u-pr-4{
	padding-right:40px;
}
.u-pr-5{
	padding-right:50px;
}

.u-pb-1{
	padding-bottom:10px;
}
.u-pb-2{
	padding-bottom:20px;
}
.u-pb-3{
	padding-bottom:30px;
}
.u-pb-4{
	padding-bottom:40px;
}
.u-pb-5{
	padding-bottom:50px;
}
.u-pb-10{
	padding-bottom:100px;
}
.u-pb-11{
	padding-bottom:110px;
}

.u-pl-1{
	padding-left:10px;
}
.u-pl-2{
	padding-left:20px;
}
.u-pl-3{
	padding-left:30px;
}
.u-pl-4{
	padding-left:40px;
}
.u-pl-5{
	padding-left:50px;
}

/* Hidden */
.u-invisible {
	visibility: hidden !important;
}
.u-hidden {
	display: none !important;
}
@media (max-width: 1260px) {
	.u-hidden-lg {
		display: none !important;
	}
}
@media (max-width: 979px) {
	.u-hidden-md {
		display: none !important;
	}
}
@media (max-width: 769px) {
	.u-hidden-sm {
		display: none !important;
	}
}
@media (max-width: 560px) {
	.u-hidden-xs {
		display: none !important;
	}
}
/* Visible */
.u-visible {
	display: block !important;
}
@media (max-width: 1260px) {
	.u-visible-lg {
		display: block !important;
	}
}
@media (max-width: 979px) {
	.u-visible-md {
		display: block !important;
	}
}
@media (max-width: 769px) {
	.u-visible-sm {
		display: block !important;
	}
}
@media (max-width: 560px) {
	.u-visible-xs {
		display: block !important;
	}
}
/* Images */
	/* Lock image */
.img-cover{
	-o-object-fit:cover;
	   object-fit:cover;
}

/* hr with border */
.hr{
	border-bottom:3px solid #FFF;
}
@media print {
	/*
		Print / Normalize
	 */
	*,
	*:before,
	*:after,
	*:first-letter,
	*:first-line {
		background: transparent !important;
		color: #000 !important; /* Black prints faster: http://www.sanbeiji.com/archives/953 */
		-webkit-box-shadow: none !important;
		        box-shadow: none !important;
		text-shadow: none !important;
	}

	* {
		border-color: black !important;
	}

	a[href]:after {
		content: " (" attr(href) ")";
	}

	abbr[title]:after {
		content: " (" attr(title) ")";
	}

	/*
	 * Don't show links that are fragment identifiers,
	 * or use the `javascript:` pseudo protocol
	 */

	a[href^="#"]:after,
	a[href^="javascript:"]:after {
		content: "";
	}

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	/*
	 * Printing Tables:
	 * http://css-discuss.incutio.com/wiki/Printing_Tables
	 */

	thead {
		display: table-header-group;
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
		max-height: 100% !important;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h1, h2, h3, h4, h5, h6 {
		page-break-after:avoid;
		page-break-inside:avoid;
	}
	img {
		page-break-inside:avoid;
		page-break-after:avoid;
	}
	blockquote, table, pre {
		page-break-inside:avoid;
	}
	ul, ol, dl {
		page-break-before:avoid;
	}
}