@import url('reset.css');
/* ---------------- */
/* Variables */
/* ---------------- */
.clear_after {
  content: '';
  display: block;
  clear: both;
}
.hide_text {
  font-size: 0;
  line-height: 0;
  text-indent: -2000px;
}
.border_box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* ---------------- */
/* General */
/* ---------------- */
* {
  border: 0;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
}
.float_left {
  float: left;
}
.float_right {
  float: right;
}
.align_center {
  text-align: center;
}
a {
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.overflow_hidden {
  overflow: hidden;
}
label,
input[type="submit"],
button {
  cursor: pointer;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}
img {
  max-width: 100%!important;
  height: auto;
}
h1 {
  margin: 0px;
}
/* ---------------- */
/* Structure */
/* ---------------- */
body,
html {
  font-family: 'Fira Sans';
  font-size: 16px;
}
.page_width {
  width: 73rem;
  margin: 0px auto;
}
.page_width:after {
  content: '';
  display: block;
  clear: both;
}
#titlebar {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 115px;
}
#titlebar .half_wrapper {
  background: #445082;
  position: absolute;
  z-index: 3;
  right: 0px;
  top: 0px;
  height: 115px;
  width: 50%;
}
#titlebar .inside {
  background: #445082;
  position: relative;
  z-index: 5;
  height: 115px;
}
#titlebar .inside:after {
  content: '';
  display: block;
  clear: both;
}
#titlebar #logo {
  display: block;
  float: left;
}
#titlebar #logo img {
  display: block;
}
#titlebar #top_menu {
  float: left;
  margin-left: 2rem;
}
#titlebar #top_menu > ul {
  padding-top: 2.5rem;
}
#titlebar #top_menu > ul:after {
  content: '';
  display: block;
  clear: both;
}
#titlebar #top_menu > ul > li {
  float: left;
  font-family: 'Lato';
  font-weight: bold;
  font-size: 1em;
  text-transform: uppercase;
  position: relative;
}
#titlebar #top_menu > ul > li:hover > ul {
  display: block;
}
#titlebar #top_menu > ul > li.home > a {
  background-image: url('../img//home_white.png');
  background-repeat: no-repeat;
  background-position: left 50% top 12px;
  display: block;
  width: 22px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0;
  line-height: 0;
  text-indent: -2000px;
}
#titlebar #top_menu > ul > li.home.current-menu-item > a,
#titlebar #top_menu > ul > li.home > a:hover {
  background-image: url('../img//home_red.png');
}
#titlebar #top_menu > ul > li > a {
  color: white;
  position: relative;
  display: block;
  height: 2.6rem;
  text-decoration: none;
  margin: 0px 14px;
  padding-top: 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#titlebar #top_menu > ul > li > a:after {
  width: 100%;
  height: 5px;
  background: #69739b;
  content: '';
  display: block;
  left: 0px;
  bottom: 0px;
  position: absolute;
  transform: scale(0);
  transition: transform 0.3s;
}
#titlebar #top_menu > ul > li.current-menu-ancestor > a:after,
#titlebar #top_menu > ul > li.current-menu-item > a:after,
#titlebar #top_menu > ul > li > a:hover:after {
  transform: scale(1);
}
#titlebar #top_menu > ul > li.menu-item-has-children > a {
  padding-left: 14px;
  padding-right: 14px;
  margin: 0px;
  height: 2.3rem;
}
#titlebar #top_menu > ul > li.menu-item-has-children > a:after {
  width: calc(100% - 28px);
  left: 14px;
  bottom: -5px;
}
#titlebar #top_menu > ul > li.menu-item-has-children:hover > a {
  background: #e34f41;
  color: white;
}
#titlebar #top_menu > ul > li.menu-item-has-children:hover > a:after {
  display: none;
}
#titlebar #top_menu > ul > li > ul {
  position: absolute;
  top: 2rem;
  background: #e34f41;
  width: 16rem;
  padding: 10px 14px 10px 14px;
  display: none;
  z-index: 10;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#titlebar #top_menu > ul > li > ul > li {
  font-family: 'Fira Sans';
  font-size: 0.75em;
  text-transform: uppercase;
  font-weight: 300;
}
#titlebar #top_menu > ul > li > ul > li.current-menu-item > a {
  text-decoration: underline;
}
#titlebar #top_menu > ul > li > ul > li > a {
  color: white;
  display: block;
  padding: 0.5rem 0px;
}
#titlebar .languages_menu {
  cursor: pointer;
  float: right;
  margin-top: 2.8rem;
}
#titlebar .languages_menu .languages_container {
  position: relative;
  text-transform: uppercase;
}
#titlebar .languages_menu .languages_container:hover .languages {
  display: block;
}
#titlebar .languages_menu .languages_container .current_language {
  height: 30px;
  line-height: 30px;
  width: 54px;
  display: block;
  background-color: #e34f41;
  color: white;
  padding-left: 8px;
  background-image: url('../img//languages_arrow.png');
  background-position: top 50% right 10px;
  background-repeat: no-repeat;
  font-family: 'Lato';
  font-size: 0.875em;
  font-weight: 700;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#titlebar .languages_menu .languages_container .languages {
  position: absolute;
  left: 0px;
  top: 30px;
  z-index: 5;
  display: none;
}
#titlebar .languages_menu .languages_container .languages li a {
  display: block;
  height: 30px;
  line-height: 30px;
  width: 54px;
  background-color: #e34f41;
  color: white;
  padding-left: 8px;
  font-family: 'Lato';
  font-size: 0.875em;
  font-weight: 700;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#top .slides li img {
  display: block;
}
.blue_info_section {
  background-repeat: no-repeat;
  background-position: right top;
  background-color: #445082;
  padding: 3rem 0px;
  background-size: contain;
}
.blue_info_section .left_content {
  padding-right: 20rem;
}
.blue_info_section .side {
  float: right;
  width: 17rem;
}
.blue_info_section .side .red_box {
  position: relative;
  top: -5rem;
  margin-bottom: -5rem;
  z-index: 10;
}
.blue_info_section .side .inner_content {
  padding: 2rem;
}
.red_box {
  background-color: #e34f41;
  background-repeat: no-repeat;
  background-position: bottom right;
  padding: 2rem;
}
.red_box h2 {
  padding-bottom: 1.5rem;
  color: white;
}
.red_box p {
  color: white;
  line-height: 1.7rem;
}
.red_box a {
  color: white;
}
.red_box.red_telephone_box {
  background-image: url('../img//telephone_box.png');
}
.red_box.red_work_box {
  background-image: url('../img//work_box.jpg');
}
.red_box.red_work_box .button {
  margin-top: 10rem;
}
.offer_items_section {
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 3rem 0px;
  background-color: #f4f4f7;
}
.offer_items_section .section_header {
  margin-bottom: 3rem;
  color: #e34f41;
}
.offer_items_section .boxes:after {
  content: '';
  display: block;
  clear: both;
}
.offer_items_section .boxes li {
  width: 25%;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.offer_items_section .boxes li:nth-child(1) {
  padding-right: 0.8rem;
}
.offer_items_section .boxes li:nth-child(2) {
  padding: 0px 0.8rem;
}
.offer_items_section .boxes li:nth-child(3) {
  padding: 0px 0.8rem;
}
.offer_items_section .boxes li:nth-child(4) {
  padding-left: 0.8rem;
}
.offer_items_section .boxes li a {
  background: white;
  display: block;
  padding: 3rem 0px;
  text-decoration: none;
}
.offer_items_section .boxes li a:hover {
  background: #e34f41;
}
.offer_items_section .boxes li a:hover .icon .normal {
  display: none;
}
.offer_items_section .boxes li a:hover .icon .hover {
  display: inline-block;
}
.offer_items_section .boxes li a:hover .title {
  color: white;
}
.offer_items_section .boxes li a .icon {
  text-align: center;
  margin-bottom: 1.5rem;
}
.offer_items_section .boxes li a .icon .normal {
  display: inline-block;
}
.offer_items_section .boxes li a .icon .hover {
  display: none;
}
.offer_items_section .boxes li a .title {
  text-align: center;
  color: #e34f41;
}
.about_section {
  padding: 3rem 0px;
}
.about_section .left_content {
  padding-right: 20rem;
}
.about_section .side {
  float: right;
  width: 17rem;
}
.section_map .map {
  height: 20rem;
  width: 100%;
}
.section_map .map img {
  max-width: none !important;
  height: auto;
}
#footer .upper {
  padding: 2rem 0px;
  border-bottom: 1px solid #ecedf2;
}
#footer .upper:after {
  content: '';
  display: block;
  clear: both;
}
#footer .upper .footer_menu {
  float: left;
}
#footer .upper .footer_menu:after {
  content: '';
  display: block;
  clear: both;
}
#footer .upper .footer_menu li {
  float: left;
  font-size: 0.75em;
  text-transform: uppercase;
  margin-right: 1rem;
  font-family: 'Lato';
  font-weight: bold;
}
#footer .upper .footer_menu li:last-child {
  margin-right: 0px;
}
#footer .upper .footer_menu li.current-menu-item a,
#footer .upper .footer_menu li a:hover {
  color: #e34f41;
  text-decoration: none;
}
#footer .upper .footer_menu li a {
  color: #a0a4ba;
}
#footer .upper .realization {
  float: right;
  color: #a0a4ba;
}
#footer .upper .realization a {
  color: #e34f41;
}
#footer .lower {
  padding: 2rem 0px;
}
#footer .lower:after {
  content: '';
  display: block;
  clear: both;
}
#footer .lower .copyrights {
  float: left;
  color: #a0a4ba;
}
#footer .lower .footer_secondary_menu {
  float: right;
}
#footer .lower .footer_secondary_menu li {
  color: #a0a4ba;
  font-size: 0.75em;
  float: left;
  margin-right: 1rem;
  padding-right: 1rem;
  position: relative;
}
#footer .lower .footer_secondary_menu li:after {
  width: 1px;
  height: 12px;
  top: 50%;
  margin-top: -6px;
  right: 0px;
  content: '';
  display: block;
  background: #a0a4ba;
  position: absolute;
}
#footer .lower .footer_secondary_menu li:last-child {
  margin-right: 0px;
  padding-right: 0px;
}
#footer .lower .footer_secondary_menu li:last-child:after {
  display: none;
}
#footer .lower .footer_secondary_menu li a {
  color: #a0a4ba;
}
#footer .lower .footer_secondary_menu li a[href="#"] {
  cursor: default;
}
#footer .lower .footer_secondary_menu li a[href="#"]:hover {
  text-decoration: none;
}
#subpage_top {
  height: 9rem;
  background: #f4f4f7;
}
#content {
  padding: 4rem 0px;
}
#content #sidebar {
  width: 17rem;
  float: right;
}
#content #main_content {
  padding-right: 20rem;
}
/* ---------------- */
/* Content Text */
/* ---------------- */
.gallery img {
  border: 0px !important;
}
.button {
  display: inline-block;
  transition: color 0.3s, background 0.3s, border 0.3s;
  text-decoration: none !important;
}
.button.button_small {
  height: 2rem;
  line-height: 2rem;
  border-radius: 15px;
  font-size: 0.875em;
  font-family: 'Lato';
  text-transform: uppercase;
  font-weight: bold;
  padding: 0px 1rem;
}
.button.button_white {
  background: white;
}
.button.button_white.red_text {
  color: #e34f41;
}
.button.button_white.red_text:hover {
  background: #e34f41;
  color: white;
}
.button.button_blue_empty {
  color: #445082;
  border: 1px solid #445082;
}
.button.button_blue_empty:hover {
  background: #445082;
  color: white;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
h2 {
  font-size: 1.750em;
  font-family: 'Lato';
  text-transform: uppercase;
  font-weight: bold;
}
h3 {
  font-size: 1.25em;
  font-family: 'Lato';
  text-transform: uppercase;
  font-weight: bold;
}
p {
  font-size: 1em;
}
h4 {
  font-size: 0.875em;
}
h5 {
  font-size: 0.75em;
}
.padding_text ul,
.padding_text h3,
.padding_text h4,
.padding_text h5,
.padding_text h6,
.padding_text p {
  margin-bottom: 2rem;
}
.padding_text h2 {
  margin-bottom: 3rem;
}
.padding_text *:last-child {
  margin-bottom: 0px;
}
.content_text.contrast_text p,
.content_text.contrast_text h1,
.content_text.contrast_text h2,
.content_text.contrast_text h3,
.content_text.contrast_text h4,
.content_text.contrast_text h5,
.content_text.contrast_text h6,
.content_text.contrast_text ul {
  color: white;
}
.content_text h2 {
  color: #445082;
}
.content_text h3 {
  color: #445082;
}
.content_text p {
  line-height: 1.7rem;
  color: #505568;
  font-weight: 300;
}
.content_text ul {
  line-height: 1.7rem;
  color: #505568;
  font-weight: 300;
  margin-left: 1rem;
}
.content_text ul li {
  list-style-type: disc;
}
.content_text a {
  color: #E34F41;
}
