/* ==========================================================================
   Author's custom styles
   ========================================================================== */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  background: #ffffff;
  font-weight: 400; }

body {
  margin: 0;
  padding: 0;
  color: #231F20;
  background: #ffffff;
  font-size: 14px;
  line-height: 1.3;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif; }

html,
body {
  width: 100%;
  height: 100%; }

a {
  text-decoration: none !important;
  outline: none;
  transition: all 0.3s ease-in; }

ul,
ol {
  margin: 0;
  padding: 0; }
  ul li,
  ol li {
    list-style-type: none; }

p {
  margin: 0; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px 0px;
  font-weight: 300; }

img {
  max-width: 100%; }

strong {
  font-weight: bold; }

.row {
  margin: 0 -10px;
  *zoom: 1; }
  .row > div {
    padding: 0 10px; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }
  .row--0 {
    margin: 0 0; }
    .row--0 > div {
      padding: 0 0; }
  .row--10 {
    margin: 0 -5px; }
    .row--10 > div {
      padding: 0 5px; }
  .row--18 {
    margin: 0 -9px; }
    .row--18 > div {
      padding: 0 9px; }
  .row--50 {
    margin: 0 -50px; }
    .row--50 > div {
      padding: 0 50px; }
  .row--five {
    margin: 0 -5px; }
    .row--five > div {
      padding: 0 5px; }
  .row--thirty {
    margin: 0 -15px; }
    .row--thirty > div {
      padding: 0 15px; }

/* ==========================================================================
   Variables
   ========================================================================== */
/* ==========================================================================
   Header
   ========================================================================== */
.header {
  height: 80px;
  background-color: #fff;
  width: 100%;
  padding-top: 23px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  border-bottom: 2px solid #dcdcdc; }
  .header__inside > a {
    display: block; }
  .header__right {
    padding-right: 15px; }
    .header__right:hover > ul li a {
      color: #adadad; }
    .header__right:hover > .hamburger-group span {
      color: #adadad; }
    .header__right .hamburger-group span {
      transition: all 0.3s ease-in; }
      .header__right .hamburger-group span:hover {
        color: #000; }
    .header__right .menu-btns {
      display: inline-block;
      width: auto; }
      .header__right .menu-btns li {
        display: inline-block;
        margin-right: 15px; }
        .header__right .menu-btns li a {
          width: 90px;
          display: block;
          color: #000;
          font-weight: 500;
          border: 4px solid #dcdcdc;
          border-radius: 4px;
          line-height: 28px;
          text-align: center; }
          .header__right .menu-btns li a:hover {
            color: #000; }
  .header .input-search-wrapper {
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    transition: 300ms all; }
    .header .input-search-wrapper--open {
      opacity: 1;
      visibility: visible;
      transition: 300ms all; }
    .header .input-search-wrapper input {
      border: none;
      border-bottom: 1px solid #000000;
      outline: none;
      color: #000;
      line-height: 25px;
      position: relative;
      left: 25px;
      background-color: transparent;
      transition: width .5s ease; }
      .header .input-search-wrapper input.search-input {
        width: 0; }
        .header .input-search-wrapper input.search-input--open {
          width: 220px;
          transition: width .5s ease;
          padding-right: 40px; }
    .header .input-search-wrapper ::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: #E3E3E3; }
    .header .input-search-wrapper ::-moz-placeholder {
      /* Firefox 19+ */
      color: #E3E3E3; }
    .header .input-search-wrapper :-ms-input-placeholder {
      /* IE 10+ */
      color: #E3E3E3; }
    .header .input-search-wrapper :-moz-placeholder {
      /* Firefox 18- */
      color: #E3E3E3; }
  .header .search-btn {
    display: inline-block;
    position: relative;
    top: 1px;
    width: 19px;
    height: 19px;
    background: url("../images/search-icon.png") no-repeat;
    transition: 300ms all;
    cursor: pointer;
    border: 0px;
    text-indent: -99999999999px; }
    .header .search-btn:hover {
      color: #000;
      background: url("../images/search-icon-black.png") no-repeat; }
    .header .search-btn--open {
      background: url("../images/search-icon-black.png") no-repeat;
      transition: 300ms all; }

.hamburger-group {
  display: inline-block;
  margin-right: 17px; }
  .hamburger-group span {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    padding-right: 13px;
    cursor: pointer; }

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

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

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 20px;
    height: 4px;
    background-color: #dcdcdc;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger:hover .hamburger-inner, .hamburger:hover .hamburger-inner::before, .hamburger:hover .hamburger-inner::after {
    background-color: #000; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -7px; }
  .hamburger-inner::after {
    bottom: -7px; }

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #000; }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease;
    background-color: #000; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    background-color: #000; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: #000000;
  padding-top: 80px;
  padding-bottom: 85px;
  color: #fff;
  font-weight: 500;
  line-height: 1.4em; }
  .footer__down {
    margin-top: 45px; }
    .footer__down h5 {
      font-weight: 200;
      font-size: 20px;
      line-height: 1.4em; }
    .footer__down a {
      color: #fff; }
    .footer__down p {
      padding-top: 23px;
      line-height: 1.47em;
      font-weight: 400; }
    .footer__down img {
      margin-top: 23px; }
    .footer__down__right p {
      padding-right: 60px; }
    .footer__down__left {
      position: relative;
      left: -40px; }
  .footer__right > p {
    padding-right: 40px; }

/* ==========================================================================
    Sidebar
   ========================================================================== */
.sidebar {
  position: absolute;
  padding-top: 175px; }
  .sidebar .widget h4 {
    color: #E20714;
    font-size: 30px;
    margin-bottom: 40px;
    font-family: 'FSAlbert-Bold'; }
  .sidebar .widget h5 {
    color: #000000;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400; }
  .sidebar .widget span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 23px;
    color: #000000; }

/* ==========================================================================
   Nav
   ========================================================================== */
.header--menu {
  position: absolute;
  width: 100%;
  background-color: #E20714;
  top: 100%;
  line-height: 60px;
  display: none; }
  .header--menu .menu {
    margin: 0 auto;
    display: table; }
    .header--menu .menu li {
      display: inline-block;
      margin-right: 40px; }
      .header--menu .menu li a {
        font-weight: 500;
        color: #fff; }
        .header--menu .menu li a:hover {
          opacity: 0.7; }
      .header--menu .menu li:last-child {
        margin-right: 0; }

/* ==========================================================================
   Main
   ========================================================================== */
@font-face {
  font-family: 'FSAlbert-Bold';
  src: url("../fonts/FSAlbertWeb-Bold.eot");
  /* IE9 */
  src: url("../fonts/FSAlbertWeb-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/FSAlbertWeb-Bold.woff") format("woff");
  /* Modern Browsers */
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'FSAlbert-ExtraBold';
  src: url("../fonts/FSAlbertWeb-ExtraBold.eot");
  /* IE9 */
  src: url("../fonts/FSAlbertWeb-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/FSAlbertWeb-ExtraBold.woff") format("woff");
  /* Modern Browsers */
  font-weight: normal;
  font-style: normal; }
input {
  -webkit-appearance: none;
  border-radius: 0; }

.searchHighlight {
  background-color: #E20714;
  color: #000; }

.background-black {
  background-color: #1E1E1E; }

.background-red {
  background-color: #E20714; }

.background-red--two {
  background-color: #CF2D37; }

.background-lightgrey--two {
  background-color: #F0F0F0; }

.text-medium {
  font-weight: 500; }

.table-height {
  display: table;
  width: 100%;
  height: 100%; }
  .table-height--cell {
    display: table-cell;
    width: 100%;
    vertical-align: middle; }

.full-height {
  height: 100vh; }

.height-75vh {
  height: 75vh;
  min-height: 870px; }

.arrow-down {
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  transition: 600ms all;
  cursor: pointer; }
  .arrow-down.rotate-arrow {
    transform: rotate(180deg) translateX(50%);
    transition: 600ms all;
    cursor: pointer; }

.parallax-group {
  position: relative;
  overflow: hidden; }

.section--hero .btn {
  margin-top: 40px;
  width: 140px;
  padding: 8px 12px; }
.section--hero .table-height {
  display: table !important; }
.section--hero .slick-initialized .slick-slide {
  outline: none; }
.section--boxes {
  padding: 106px 0;
  padding-bottom: 90px;
  background-color: #000000; }
  .section--boxes .boxes {
    padding: 0 142px; }
.section--map #map {
  height: 620px; }
.section--map .map-text {
  padding: 52px 0;
  padding-bottom: 32px;
  padding-right: 268px;
  color: #fff;
  min-height: 620px; }
  .section--map .map-text a {
    color: #fff; }
  .section--map .map-text .accordion-group {
    padding-top: 70px; }
  .section--map .map-text .accordion {
    padding-bottom: 30px; }
    .section--map .map-text .accordion.active {
      padding-bottom: 0; }
      .section--map .map-text .accordion.active .accordion__content {
        display: block;
        padding-bottom: 10px; }
    .section--map .map-text .accordion__title h5 {
      font-size: 30px;
      color: #fff;
      background: url("../images/arrow-down-small.png") no-repeat;
      background-position: 0;
      padding-left: 50px;
      transition: 300ms all;
      cursor: pointer; }
    .section--map .map-text .accordion__title.active h5 {
      color: #E20714;
      background: url("../images/arrow-right-red.png") no-repeat;
      background-position: 0;
      transition: 300ms all; }
    .section--map .map-text .accordion__content {
      padding: 0px;
      padding-bottom: 10px;
      z-index: 999;
      position: relative;
      max-width: 296px; }
      .section--map .map-text .accordion__content .text-medium {
        font-weight: 500; }
      .section--map .map-text .accordion__content p {
        padding-bottom: 15px;
        font-weight: 100;
        line-height: 1.5em; }
        .section--map .map-text .accordion__content p .text-medium {
          font-weight: 500; }
.section--content {
  position: relative;
  color: #fff;
  padding-top: 180px;
  padding-bottom: 100px;
  font-size: 16px; }
  .section--content .container {
    padding-right: 450px; }
  .section--content .title {
    padding-bottom: 50px;
    font-family: 'FSAlbert-ExtraBold'; }
  .section--content p {
    font-size: 16px;
    padding-bottom: 20px;
    line-height: 1.4em; }
    .section--content p.p-big {
      font-size: 30px;
      font-weight: 300;
      line-height: 1.3em; }
  .section--content a {
    color: #E20714;
    text-decoration: underline !important; }
  .section--content ul li {
    line-height: 1.5em;
    font-size: 16px; }
    .section--content ul li:before {
      content: "\00bb";
      padding-right: 13px;
      font-size: 15px; }
.section--call-action {
  padding: 115px 0; }
  .section--call-action h3 {
    font-size: 45px;
    font-weight: 900;
    color: #8d1205;
    font-family: 'FSAlbert-Bold'; }
  .section--call-action p {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    padding: 31px 0;
    line-height: 1.4em; }
  .section--call-action .btn {
    font-weight: bold;
    line-height: 50px;
    padding: 0;
    height: 50px;
    width: 145px; }
.section--accordion {
  background-color: #F0F0F0;
  padding: 45px 0; }
  .section--accordion .accordion-group .accordion--info {
    border-bottom: 1px solid #C8C8C8; }
  .section--accordion .accordion-group .accordion__title h5 {
    font-size: 30px;
    font-weight: bold;
    color: #000000;
    padding: 45px 0;
    background: url("../images/arrow-down-grey.png") no-repeat;
    background-position: 100% center;
    background-size: 32px 32px;
    cursor: pointer;
    transition: 300ms all;
    font-family: 'FSAlbert-Bold'; }
  .section--accordion .accordion-group .accordion__title--no-border h5 {
    border: none; }
  .section--accordion .accordion-group .accordion__content {
    display: none; }
  .section--accordion .accordion-group .accordion.active {
    padding-bottom: 45px; }
    .section--accordion .accordion-group .accordion.active .accordion__title h5 {
      color: #E20714;
      background: url("../images/arrow-up-red.png") no-repeat;
      background-position: 100% center;
      background-size: 32px 32px;
      transition: 300ms all;
      border: none;
      padding: 45px 0; }
    .section--accordion .accordion-group .accordion.active .accordion__content {
      display: block; }
.section--page {
  position: relative; }
  .section--page .page-content {
    position: absolute;
    bottom: 90px; }
    .section--page .page-content .title {
      padding-bottom: 40px; }
  .section--page.height-75vh {
    height: 100%;
    min-height: 75vh; }
.section--post {
  margin-top: 80px;
  padding-top: 100px;
  padding-bottom: 90px;
  background-color: #F0F0F0; }
  .section--post .container {
    padding-right: 15px; }
  .section--post .content-text {
    padding-right: 90px; }
    .section--post .content-text p {
      padding-right: 30px; }
.section--news {
  padding-top: 180px; }
  .section--news .news {
    padding: 90px 0; }
    .section--news .news .new {
      background-color: #1E1E1E;
      padding: 30px 25px;
      margin-bottom: 18px;
      color: #fff;
      width: 30%; }
      .section--news .news .new h5 {
        font-size: 30px;
        font-weight: bold;
        font-family: 'FSAlbert-Bold'; }
      .section--news .news .new img {
        width: 100%;
        margin-bottom: 30px; }
      .section--news .news .new p {
        font-size: 16px;
        line-height: 1.5em;
        padding: 33px 0;
        padding-right: 45px; }
      .section--news .news .new .text-medium {
        font-weight: 500; }
      .section--news .news .new .p-date {
        padding: 0; }
      .section--news .news .new a {
        color: #E20714;
        font-weight: bold;
        font-size: 16px;
        text-decoration: underline !important; }
  .section--news .btn {
    font-weight: bold;
    font-size: 22px;
    width: 140px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    display: block;
    margin: 0 auto;
    margin-bottom: 75px; }

.boxes .box {
  background-color: #1E1E1E;
  position: relative;
  height: 268px;
  margin-bottom: 18px;
  padding: 0 30px; }
  .boxes .box:hover {
    background-color: #E20714; }
  .boxes .box img {
    margin-bottom: 37px;
    padding-top: 10px; }
  .boxes .box h5 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3em; }

.title {
  font-size: 60px;
  color: #fff;
  font-weight: bold;
  font-family: 'FSAlbert-Bold'; }
  .section--map .title {
    font-size: 45px; }
  .title--red {
    color: #E20714;
    font-family: 'FSAlbert-ExtraBold'; }
  .title span {
    color: #E20714;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'FSAlbert-ExtraBold'; }

.btn {
  font-size: 22px;
  font-weight: 300; }
  .btn--red {
    background-color: #E20714;
    color: #fff; }
  .btn--white {
    background-color: #fff;
    color: #E20714; }

.content-text {
  padding-right: 465px; }
  .content-text h3.title {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 30px;
    /*margin-top: 110px;*/ }
  .content-text h2.title {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 0; }
  .content-text p {
    padding-bottom: 20px;
    color: #000000;
    font-size: 16px;
    line-height: 1.55em;
    font-weight: 400; }
  .content-text a {
    color: #000000;
    font-weight: bold; }
  .content-text .text-medium {
    font-weight: 500; }
  .content-text blockquote {
    padding: 0;
    margin: 0;
    margin-top: 50px;
    border: none;
    font-size: 34px;
    line-height: 1.3em;
    color: #B0B0B0;
    font-family: 'FSAlbert-Bold'; }
  .content-text ul {
    margin-bottom: 20px; }
    .content-text ul li {
      line-height: 1.5em;
      font-size: 16px;
      color: #000000; }
      .content-text ul li:before {
        content: "\00bb";
        padding-right: 13px;
        font-size: 15px; }
  .content-text img {
    margin-bottom: 50px;
    margin-top: 30px; }

.equal {
  display: flex;
  flex-wrap: wrap; }
  .equal > div[class*='col-'] {
    display: flex;
    flex-direction: column; }

.tabs {
  display: none; }

.tab_drawer_heading {
  padding-bottom: 30px; }

.sub_accordion .sub_accordion__title {
  display: block;
  width: 100%;
  min-height: 40px;
  color: #000;
  margin-bottom: 5px;
  line-height: 1;
  font-size: 20px;
  padding: 10px 35px 10px 0px;
  background: url(../images/arrow-down-grey.png) no-repeat transparent;
  background-position: calc(100% - 10px) center;
  background-size: 20px 20px;
  cursor: pointer;
  border-bottom: 1px solid #C8C8C8; }

.sub_accordion__content {
  padding: 20px 0px; }

.sub_accordion.active .sub_accordion__title {
  background: url(../images/arrow-down-grey-upsidedown.png) no-repeat transparent;
  background-position: calc(100% - 10px) center;
  background-size: 20px 20px; }

/* ==========================================================================
    Responsive
   ========================================================================== */
@media only screen and (max-width: 1200px) {
  .section--map .map-text {
    padding-right: 168px; }
    .section--map .map-text .accordion__content {
      padding: 22px 0px; }
  .section .boxes .box h5 {
    font-size: 16px; }
  .section--content .container {
    padding-right: 15px; }
  .section--page.height-75vh {
    min-height: 100vh; }

  .content-text p.p-big br {
    display: none; }

  .footer__down .row--50 {
    margin: 0 -25px; }
    .footer__down .row--50 > div {
      padding: 0 25px; }
  .footer__down p {
    font-size: 12px; }
  .footer__down h5 {
    font-size: 18px; }
  .footer__down__left {
    position: relative;
    left: 0; }
  .footer__right > p {
    padding-right: 0;
    font-size: 12px; } }
@media only screen and (max-width: 992px) {
  .header__inside > a {
    display: block;
    width: 150px; }
  .header__right {
    padding-right: 0; }
  .header .input-search-wrapper input.search-input--open {
    width: 180px; }

  .header--menu .menu li {
    margin-right: 20px;
    text-align: center; }
    .header--menu .menu li a {
      font-weight: 500;
      color: #fff;
      font-size: 13px; }
      .header--menu .menu li a:hover {
        opacity: 0.7; }
    .header--menu .menu li:last-child {
      margin-right: 0; }
  .header--menu .menu-btns {
    padding-bottom: 40px;
    display: table;
    margin: 0 auto;
    width: 215px; }
    .header--menu .menu-btns li {
      display: inline-block;
      margin-right: 15px; }
      .header--menu .menu-btns li a {
        width: 90px;
        display: block;
        color: #fff;
        font-weight: 500;
        border: 4px solid #dcdcdc;
        border-radius: 4px;
        line-height: 28px;
        text-align: center; }

  .section--boxes .boxes {
    padding: 0 70px; }
  .section--map .map-text {
    float: none !important;
    width: 750px;
    padding: 70px 15px;
    margin: 0 auto; }
  .section--news .news .new h5 {
    font-size: 25px; }
  .section--news .news .new p {
    padding-right: 0; }

  .boxes .box h5 {
    font-size: 16px; }

  .content-text {
    padding-right: 0 !important; }
    .content-text p.p-big br {
      display: none; }

  .equal {
    display: block;
    flex-wrap: none; }
    .equal > div[class*='col-'] {
      display: block; }

  .sidebar {
    position: relative;
    padding-top: 80px; }

  .footer__down {
    margin-top: 0; }
    .footer__down__left {
      position: relative;
      left: 0; }
    .footer__down h5 {
      margin-top: 30px; }
    .footer__down p {
      padding: 0;
      padding-top: 15px; }
  .footer__right > p {
    padding-right: 0; } }
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 30px; }

  .row {
    margin: 0; }
    .row > div {
      padding: 0; }

  .hamburger-group {
    float: right;
    margin-right: 0;
    margin-left: 15px; }
    .hamburger-group > span {
      display: none; }

  .header {
    padding-top: 25px; }
    .header .input-search-wrapper {
      position: absolute;
      width: 100%;
      top: 78px;
      left: 0;
      text-align: center;
      transition: 300ms all; }
      .header .input-search-wrapper--open {
        padding-bottom: 60px;
        padding-top: 20px;
        background-color: #fff;
        transition: 300ms all; }
      .header .input-search-wrapper input.search-input {
        left: 0;
        font-size: 16px; }
        .header .input-search-wrapper input.search-input--open {
          width: 220px; }
    .header .search-btn {
      top: 0px; }

  .input-search-wrapper--open .input-search-wrapper--open {
    padding: 0px; }

  .header--menu {
    position: absolute;
    width: 100%;
    background-color: #E20714;
    bottom: -330px;
    line-height: 60px;
    display: none; }
    .header--menu .menu {
      margin: 0 auto;
      display: table;
      padding: 30px 0;
      padding-bottom: 20px; }
      .header--menu .menu li {
        display: block;
        margin-right: 0px;
        margin-bottom: 10px;
        line-height: 20px; }
        .header--menu .menu li a {
          font-weight: 500;
          color: #fff; }
          .header--menu .menu li a:hover {
            opacity: 0.7; }
        .header--menu .menu li:last-child {
          margin-right: 0; }

  .title {
    font-size: 30px; }

  .section--hero .btn {
    font-size: 18px; }
  .section--boxes {
    padding: 50px 0;
    padding-bottom: 32px; }
    .section--boxes .boxes {
      padding: 0; }
  .section--map #map {
    height: 350px;
    clear: both; }
  .section--map .map-text {
    float: none !important;
    width: 100%;
    padding: 40px 30px;
    margin: 0 auto;
    min-height: 0; }
    .section--map .map-text .accordion-group {
      padding-top: 40px; }
    .section--map .map-text .accordion__title h5 {
      font-size: 15px;
      background-size: 16px;
      padding-left: 20px; }
    .section--map .map-text .accordion__title.active h5 {
      background-size: 16px; }
    .section--map .map-text .accordion.active .accordion__title h5 {
      font-size: 15px;
      background-size: 16px;
      padding-left: 20px; }
  .section--content {
    height: 100%;
    min-height: 1px;
    padding-bottom: 50px;
    padding-top: 120px; }
    .section--content .container {
      padding-right: 15px; }
    .section--content .title {
      padding-bottom: 30px; }
    .section--content p {
      font-size: 14px; }
      .section--content p.p-big {
        font-size: 16px; }
    .section--content ul li {
      font-size: 14px; }
  .section--call-action {
    padding: 55px 0; }
    .section--call-action h3 {
      font-size: 25px; }
    .section--call-action p {
      font-size: 16px; }
      .section--call-action p br {
        display: none; }
    .section--call-action .btn {
      font-size: 18px;
      width: 120px;
      line-height: 35px;
      height: 35px; }
  .section--accordion {
    padding: 25px 0; }
    .section--accordion .accordion-group .accordion__title h5 {
      font-size: 17px;
      background-size: 20px;
      padding: 25px 25px 25px 0; }
    .section--accordion .accordion-group .accordion.active .accordion__title h5 {
      font-size: 17px;
      background-size: 20px;
      padding: 25px 25px 25px 0; }
  .section--post {
    padding-top: 60px; }
  .section--news {
    padding-top: 120px; }
    .section--news .news {
      padding: 45px 0; }
      .section--news .news .new {
        width: 100%; }
        .section--news .news .new h5 {
          font-size: 20px; }
        .section--news .news .new p {
          font-size: 14px; }
        .section--news .news .new a {
          font-size: 14px; }
    .section--news .btn {
      font-size: 18px;
      height: 35px;
      line-height: 35px;
      width: 120px;
      margin-bottom: 40px; }

  .boxes .box h5 {
    font-size: 16px; }

  .footer {
    padding: 50px 0; }
    .footer__left img {
      margin-bottom: 30px; }
    .footer__down {
      margin-top: 0; }
      .footer__down h5 {
        margin-top: 30px; }
      .footer__down p {
        padding: 0;
        padding-top: 15px; }
      .footer__down img {
        margin-top: 30px; }

  .content-text {
    padding-right: 0 !important; }
    .content-text h2.title {
      font-size: 30px; }
    .content-text blockquote p {
      font-size: 22px; }

  .sidebar {
    position: relative;
    padding-top: 30px; }
    .sidebar .widget h4 {
      font-size: 24px;
      margin-bottom: 30px; }
    .sidebar .widget h5 {
      font-size: 20px; }
    .sidebar .widget p {
      font-size: 14px; }

  .tabs {
    display: block; }

  ul.tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    width: 100%; }

  ul.tabs li {
    float: left;
    margin: 0;
    cursor: pointer;
    width: 30%;
    overflow: hidden;
    position: relative;
    margin-left: 10px; }

  ul.tabs li:first-child {
    margin-left: 0px; }

  ul.tabs li.active {
    display: block; }

  .tab_container {
    border-top: none;
    clear: both;
    float: left;
    width: 100%;
    background: #1E1E1E;
    overflow: auto; }

  .tab_content {
    padding: 20px;
    display: none; }

  .tab_drawer_heading {
    display: none; }

  .arrow-down img {
    width: 33px; }

  .boxes .box {
    height: 235px;
    padding: 0 10px;
    width: 100%;
    max-width: 100%;
    display: inline-block; }
    .boxes .box .table-height--cell {
      display: block;
      width: 100%;
      vertical-align: middle;
      /*
      				    position: absolute;
      				    top: 50%;
      				    left: 50%;
      				    -webkit-transform: translate(-50%, -50%);
      				    transform: translate(-50%, -50%);
      */ }
    .boxes .box img {
      width: 80%;
      max-width: 100px;
      padding-top: 20px; }
  .boxes .row > div {
    padding: 0 9px; } }
@media only screen and (max-width: 320px) {
  .section--map #map {
    height: 250px; } }

/*# sourceMappingURL=styles.sass.css.map */
