@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap&subset=latin-ext");
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 150px;
  scroll-behavior: smooth;
}

hr {
  border: none;
  height: 1px;
  background-color: rgb(211, 211, 211);
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  width: 100%;
  overflow-x: hidden;
  background-color: rgb(255, 255, 255);
  color: rgb(31, 26, 26);
}
body.noscroll {
  overflow: hidden;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1500px) {
  .container {
    width: 1100px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .container {
    width: 1000px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    width: 800px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    width: 600px;
  }
}
@media (max-width: 575px) {
  .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.container.fullwidth {
  width: 100% !important;
}
.container h1,
.container h2,
.container h3,
.container h4,
.container h5,
.container h6 {
  display: block;
  border-bottom: 1px solid rgb(211, 211, 211);
  padding-bottom: 20px;
  margin: 58px 0 40px 0;
  font-weight: 300;
}
.container img {
  max-width: 100% !important;
}
.container p {
  font-size: 18px;
  line-height: 1.5em;
}
.container .full-width {
  position: relative;
}
.container .full-width .full-width-content {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  top: 1em;
}
.container .space {
  height: 64px;
  margin: 0;
  display: block;
}
@media (max-width: 575px) {
  .container .space {
    height: 170px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .container .space {
    height: 170px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container .space {
    height: 170px;
  }
}
.container a {
  color: rgb(229, 49, 52);
  transition: color 0.1s linear;
}
.container a:hover {
  color: rgb(255, 181, 55);
}
.container.flex {
  display: flex;
  padding-top: 160px;
  padding-bottom: 80px;
}
@media (max-width: 575px) {
  .container.flex {
    display: block;
    padding-top: 220px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .container.flex {
    display: block;
    padding-top: 220px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container.flex {
    display: block;
    padding-top: 220px;
  }
}
.container .sidebar {
  flex-basis: 300px;
  padding-right: 40px;
  flex-shrink: 0;
  padding-top: 18px;
  padding-bottom: 18px;
}
@media (max-width: 575px) {
  .container .sidebar {
    padding-left: 0;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .container .sidebar {
    padding-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container .sidebar {
    padding-left: 0;
  }
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-nav li {
  padding: 0;
  margin: 0;
  display: block;
}
.sidebar-nav li a {
  display: block;
  margin: 5px 0;
  border: 1px solid rgb(229, 49, 52);
  color: rgb(31, 26, 26);
  padding: 10px 15px;
  text-decoration: none;
  position: relative;
  transition: color 0.1s ease-out;
}
.sidebar-nav li a:before {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid rgb(31, 26, 26);
  border-right: 2px solid rgb(31, 26, 26);
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: border-color 0.1s ease-out;
}
.sidebar-nav li a:hover {
  border: 1px solid rgb(255, 181, 55);
}
.sidebar-nav li a:hover:before {
  border-color: rgb(255, 181, 55);
}

.image-separator {
  width: 100%;
  height: 400px;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  top: 1em;
}
@media (max-width: 575px) {
  .image-separator {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .image-separator {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .image-separator {
    display: none;
  }
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.nav-space {
  height: 100px;
}
@media (max-width: 575px) {
  .nav-space {
    height: 220px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .nav-space {
    height: 220px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .nav-space {
    height: 220px;
  }
}

.informations {
  background-color: rgb(229, 49, 52);
  padding: 0 21px;
  font-size: 16px;
  font-weight: 300;
  display: flex;
  justify-content: space-between;
  transition: margin-top 0.2s ease-out;
}
.informations .contactinfo {
  display: flex;
}
@media (max-width: 575px) {
  .informations {
    flex-direction: column;
    padding: 0;
  }
  .informations .contactinfo {
    flex-direction: column;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .informations {
    flex-direction: column;
    padding: 0;
  }
  .informations .contactinfo {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .informations {
    flex-direction: column;
    padding: 0;
  }
  .informations .contactinfo {
    flex-direction: column;
  }
}
.informations .info-link {
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  position: relative;
  z-index: 0;
}
.informations .info-link i {
  font-size: inherit;
  margin-right: 10px;
}
.informations .info-link:after, .informations .info-link:before {
  content: "";
  position: absolute;
  will-change: transform;
  width: 100%;
}
.informations .info-link:after {
  z-index: -1;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.08);
  top: 0;
  left: 0;
  transition: opacity 0.2s linear;
  opacity: 0;
}
.informations .info-link:before {
  bottom: 0;
  height: 1px;
  left: 0;
  background-color: rgb(255, 255, 255);
  transition: transform 0.2s ease-out;
  transform: scaleX(0);
}
.informations .info-link:hover:after {
  opacity: 1;
}
.informations .info-link:hover:before {
  transform: scaleX(1);
}
.main-navigation {
  padding: 5px 20px 15px 20px;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgb(255, 255, 255);
}
.main-navigation .brand-logo {
  display: block;
  width: 64px;
  height: 64px;
  flex-basis: 64px;
  flex-shrink: 0;
  flex-grow: 0;
  padding: 0px 10px 15px 0px;
}
.main-navigation .brand-logo img {
  width: 150%;
  height: 150%;
  object-fit: contain;
}
.main-navigation .menu-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgb(255, 255, 255);
  position: relative;
  cursor: pointer;
  display: none;
}
@media (max-width: 575px) {
  .main-navigation .menu-button {
    display: block;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .main-navigation .menu-button {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-navigation .menu-button {
    display: block;
  }
}
.main-navigation .menu-button div {
  position: absolute;
  width: 28px;
  height: 1px;
  background-color: rgb(255, 255, 255);
  will-change: transform;
  transition: transform 0.2s ease-out;
}
.main-navigation .menu-button div:nth-child(1) {
  transform: translate(7px, 13.2px);
}
.main-navigation .menu-button div:nth-child(2) {
  transform: translate(7px, 22px);
}
.main-navigation .menu-button div:nth-child(3) {
  transform: translate(7px, 30.8px);
}
.main-navigation .menu-button.close div:nth-child(1) {
  transform: translate(7px, 22px) rotate(45deg);
}
.main-navigation .menu-button.close div:nth-child(2) {
  transform: translate(7px, 22px) rotate(45deg);
}
.main-navigation .menu-button.close div:nth-child(3) {
  transform: translate(7px, 22px) rotate(-45deg);
}
.main-navigation .nav {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .main-navigation .nav {
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    transform-origin: top;
    will-change: transform;
    transition: transform 0.2s linear;
    transform: scaleY(0);
    padding-top: 10px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .main-navigation .nav.show {
    transform: scaleY(1);
  }
  .main-navigation .nav .selectric-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .main-navigation .nav .selectric-wrapper .selectric-items {
    left: 20px;
  }
  .main-navigation .nav .nav-list {
    order: 1;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .main-navigation .nav {
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    transform-origin: top;
    will-change: transform;
    transition: transform 0.2s linear;
    transform: scaleY(0);
    padding-top: 10px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .main-navigation .nav.show {
    transform: scaleY(1);
  }
  .main-navigation .nav .selectric-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .main-navigation .nav .selectric-wrapper .selectric-items {
    left: 20px;
  }
  .main-navigation .nav .nav-list {
    order: 1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-navigation .nav {
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    transform-origin: top;
    will-change: transform;
    transition: transform 0.2s linear;
    transform: scaleY(0);
    padding-top: 10px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .main-navigation .nav.show {
    transform: scaleY(1);
  }
  .main-navigation .nav .selectric-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .main-navigation .nav .selectric-wrapper .selectric-items {
    left: 20px;
  }
  .main-navigation .nav .nav-list {
    order: 1;
  }
}
.main-navigation .nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
@media (max-width: 575px) {
  .main-navigation .nav-list {
    flex-direction: column;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .main-navigation .nav-list {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-navigation .nav-list {
    flex-direction: column;
  }
}
.main-navigation .nav-list li {
  display: block;
  color: rgb(255, 255, 255);
}
.main-navigation .nav-list li a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 25px 20px;
  transition: color 0.1s linear;
  text-transform: uppercase;
  font-size: 13px;
}
@media (max-width: 575px) {
  .main-navigation .nav-list li a {
    padding: 15px 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .main-navigation .nav-list li a {
    padding: 15px 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-navigation .nav-list li a {
    padding: 15px 20px;
  }
}
.main-navigation .nav-list li.dropdown {
  position: relative;
}
.main-navigation .nav-list li.dropdown a[data-toggle=dropdown] {
  padding-right: 40px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-navigation .nav-list li.dropdown a[data-toggle=dropdown] {
    pointer-events: none;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .main-navigation .nav-list li.dropdown a[data-toggle=dropdown] {
    pointer-events: none;
  }
}
@media (min-width: 1500px) {
  .main-navigation .nav-list li.dropdown a[data-toggle=dropdown] {
    pointer-events: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-navigation .nav-list li.dropdown a:not([data-toggle=dropdown]) {
    padding: 10px 20px;
    white-space: nowrap;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .main-navigation .nav-list li.dropdown a:not([data-toggle=dropdown]) {
    padding: 10px 20px;
    white-space: nowrap;
  }
}
@media (min-width: 1500px) {
  .main-navigation .nav-list li.dropdown a:not([data-toggle=dropdown]) {
    padding: 10px 20px;
    white-space: nowrap;
  }
}
.main-navigation .nav-list li.dropdown:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-bottom: 4px solid rgb(255, 255, 255);
  border-right: 4px solid rgb(255, 255, 255);
  border-left: 4px solid transparent;
  border-top: 4px solid transparent;
  transition: border-right 0.1s linear, border-bottom 0.1s linear;
  top: 25px;
  right: 20px;
  transform: rotate(45deg);
}
.main-navigation .nav-list li:hover, .main-navigation .nav-list li.active {
  color: rgb(229, 49, 52);
}
.main-navigation .nav-list li .dropdown-menu {
  background-color: rgba(0, 0, 0, 0.7);
  color: rgb(255, 255, 255);
  position: absolute;
  top: 64px;
  padding: 0;
  left: 0;
  min-width: 100%;
  display: none;
  padding-bottom: 10px;
}
@media (max-width: 575px) {
  .main-navigation .nav-list li .dropdown-menu {
    position: static;
    border-bottom: 1px solid rgb(255, 255, 255);
    border-top: 1px solid rgb(255, 255, 255);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .main-navigation .nav-list li .dropdown-menu {
    position: static;
    border-bottom: 1px solid rgb(255, 255, 255);
    border-top: 1px solid rgb(255, 255, 255);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .main-navigation .nav-list li .dropdown-menu {
    position: static;
    border-bottom: 1px solid rgb(255, 255, 255);
    border-top: 1px solid rgb(255, 255, 255);
  }
}
.main-navigation .nav-list li.dropdown.open .dropdown-menu {
  display: block;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-navigation .nav-list li:hover .dropdown-menu {
    display: block;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .main-navigation .nav-list li:hover .dropdown-menu {
    display: block;
  }
}
@media (min-width: 1500px) {
  .main-navigation .nav-list li:hover .dropdown-menu {
    display: block;
  }
}

.page-slider .slide {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 576px) and (max-width: 767px) {
  .page-slider .slide {
    height: 700px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-slider .slide {
    height: 700px;
  }
}
.page-slider .slide .slide-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.page-slider .slide .slide-content {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 100px 0;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1500px) {
  .page-slider .slide .slide-content {
    width: 1100px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .page-slider .slide .slide-content {
    width: 1000px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .page-slider .slide .slide-content {
    width: 800px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-slider .slide .slide-content {
    width: 600px;
  }
}
@media (max-width: 575px) {
  .page-slider .slide .slide-content {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .page-slider .slide .slide-content {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 575px) {
  .page-slider .slide .slide-content {
    padding-top: 210px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .page-slider .slide .slide-content {
    padding-top: 210px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-slider .slide .slide-content {
    padding-top: 210px;
  }
}
.page-slider .slide .slide-content .slider-link {
  color: rgb(255, 255, 255);
  font-size: 21px;
  text-decoration: none;
  padding: 20px 30px;
  position: absolute;
  bottom: 50px;
  right: 0;
  transition: color 0.2s linear;
}
@media (max-width: 575px) {
  .page-slider .slide .slide-content .slider-link {
    right: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .page-slider .slide .slide-content .slider-link {
    right: 20px;
  }
}
.page-slider .slide .slide-content .slider-link:after, .page-slider .slide .slide-content .slider-link:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  will-change: transform;
}
.page-slider .slide .slide-content .slider-link:before {
  top: 0;
  left: 0;
  background-color: rgb(229, 49, 52);
  z-index: -2;
  transition: transform 0.3s ease-out;
}
.page-slider .slide .slide-content .slider-link:after {
  background-color: white;
  transition: transform 0.3s ease-out;
  z-index: -1;
  transform-origin: bottom right;
  top: 0;
  right: 0;
  transform: scale(0);
}
.page-slider .slide .slide-content .slider-link:hover {
  color: rgb(229, 49, 52);
}
.page-slider .slide .slide-content .slider-link:hover:after {
  transform: scale(1);
}
.page-slider .slide .slide-content .slider-link:hover:before {
  transform: translate(10px, 10px);
}
.page-slider .slide .slide-content h1 {
  background-color: rgba(229, 49, 52, 0.8);
  color: rgb(255, 255, 255);
  display: inline-block;
  padding: 10px 50px 10px 20px;
  font-weight: 400;
  margin: 20px 0;
  border: none;
}
@media (max-width: 575px) {
  .page-slider .slide .slide-content h1 {
    font-size: 24px;
  }
}
.page-slider .slide .slide-content h2 {
  background-color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  padding: 10px 50px 10px 20px;
  color: rgb(0, 0, 0);
  display: inline-block;
  max-width: 70%;
  margin: 20px 0;
  border: none;
}
@media (max-width: 575px) {
  .page-slider .slide .slide-content h2 {
    font-size: 15px;
  }
}
.page-slider .slick-arrow {
  position: absolute;
  border: none;
  background: transparent;
  color: white;
  z-index: 1;
  padding: 20px;
  outline: none;
  will-change: transform;
  transition: opacity 0.2s linear;
  opacity: 0.7;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}
.page-slider .slick-arrow .material-icons {
  text-shadow: 1px 2px 2px black;
}
.page-slider .slick-arrow:hover {
  opacity: 1;
}
.page-slider .slick-prev {
  left: 20px;
}
.page-slider .slick-next {
  right: 20px;
}

.news-slider-container {
  padding: 50px 80px;
  background-color: rgb(28, 28, 28);
  color: rgb(255, 255, 255);
}
.news-slider-container .news-slider {
  margin: 0 auto;
  padding: 0 !important;
  position: relative;
}
@media (min-width: 1500px) {
  .news-slider-container .news-slider {
    width: 1100px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .news-slider-container .news-slider {
    width: 1000px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .news-slider-container .news-slider {
    width: 800px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-slider-container .news-slider {
    width: 600px;
  }
}
@media (max-width: 575px) {
  .news-slider-container .news-slider {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .news-slider-container .news-slider {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.news-slider-container .news-slider .slick-arrow {
  position: absolute;
  border: none;
  background: transparent;
  color: rgb(255, 255, 255);
  z-index: 1;
  padding: 20px;
  outline: none;
  will-change: transform;
  transition: opacity 0.2s linear;
  opacity: 0.7;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}
.news-slider-container .news-slider .slick-arrow .material-icons {
  text-shadow: 1px 2px 2px black;
}
.news-slider-container .news-slider .slick-arrow:hover {
  opacity: 1;
}
.news-slider-container .news-slider .slick-prev {
  left: -70px;
}
.news-slider-container .news-slider .slick-next {
  right: -70px;
}
.news-slider-container .news-slider .slide {
  width: 100%;
  text-align: center;
  padding: 0 20px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .news-slider-container .news-slider .slide {
    padding: 0 10px;
  }
}
@media (max-width: 575px) {
  .news-slider-container .news-slider .slide {
    padding: 0;
  }
}
.news-slider-container .news-slider .slide .thumbnail {
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
  display: block;
}
.news-slider-container .news-slider .slide .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.3s ease-out;
}
.news-slider-container .news-slider .slide .thumbnail img:hover {
  transform: scale(1.1) rotate(1deg);
}
.news-slider-container .news-slider .slide .title {
  color: inherit;
  text-decoration: none;
  font-size: 28px;
  display: block;
  padding: 20px 0;
  position: relative;
  height: 74px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-slider-container .news-slider .slide .title:after, .news-slider-container .news-slider .slide .title:before {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  bottom: 0;
  left: 25%;
  height: 1px;
  background-color: rgb(255, 255, 255);
  z-index: 0;
}
.news-slider-container .news-slider .slide .title:before {
  will-change: transform;
  z-index: 1;
  background-color: rgb(229, 49, 52);
  transition: transform 0.2s ease-out;
  transform: scaleX(0);
}
.news-slider-container .news-slider .slide .title:hover:before {
  transform: scaleX(1);
}
.news-slider-container .news-slider .slide .description {
  margin: 20px 0;
  font-size: 18px;
  line-height: 1.5em;
  height: 6em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden !important;
}
.news-slider-container .news-slider .slide .description p {
  margin: 0;
}
.news-slider-container .news-slider .slide .button {
  display: block;
  padding: 20px;
  font-size: 18px;
  font-weight: 300;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 0.2s linear;
  border: 1px solid rgb(229, 49, 52);
}
.news-slider-container .news-slider .slide .button:after, .news-slider-container .news-slider .slide .button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.news-slider-container .news-slider .slide .button:after {
  background-color: rgb(229, 49, 52);
  z-index: -2;
}
.news-slider-container .news-slider .slide .button:before {
  z-index: -1;
  background-color: rgb(255, 255, 255);
  transform-origin: bottom;
  will-change: transform;
  transition: transform 0.2s ease-out;
  transform: scaleY(0);
}
.news-slider-container .news-slider .slide .button:hover {
  color: rgb(229, 49, 52);
}
.news-slider-container .news-slider .slide .button:hover:before {
  transform: scaleY(1);
}

.map iframe {
  width: 100%;
  margin-bottom: -4px;
}

.footer {
  background-color: rgb(28, 28, 28);
  padding: 50px 0;
  color: rgb(255, 255, 255);
  font-size: 12px;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 600px;
}
@media (max-width: 575px) {
  .footer {
    padding-bottom: 300px;
  }
}
.footer .footer-content {
  margin: 0 auto;
}
@media (min-width: 1500px) {
  .footer .footer-content {
    width: 1100px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .footer .footer-content {
    width: 1000px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer .footer-content {
    width: 800px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer .footer-content {
    width: 600px;
  }
}
@media (max-width: 575px) {
  .footer .footer-content {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .footer .footer-content {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer .description {
  padding-top: 20px;
  font-size: 14px;
}
.footer .description a {
  color: inherit !important;
  transition: color 0.1s linear;
}
.footer .description a:hover {
  color: rgb(229, 49, 52) !important;
}
.footer .row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .footer .row {
    flex-direction: column;
  }
}
.footer .row .col {
  width: 300px;
  padding-right: 20px;
}
@media (max-width: 575px) {
  .footer .row .col {
    width: 100%;
  }
}
.footer h1 {
  color: rgb(229, 49, 52);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}
.footer .footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .footer-menu li {
  display: block;
  margin: 0;
  padding: 0;
}
.footer .footer-menu li a {
  display: block;
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
  font-size: 12px;
  padding: 5px 0;
}
.footer .footer-menu li a:before {
  content: ">";
  will-change: transform;
  transition: transform 0.2s ease-out;
  margin-right: 10px;
  transform: scaleY(1.6) translate(0, -1px);
  display: inline-block;
}
.footer .footer-menu li a:hover:before {
  transform: scaleY(1.6) translate(5px, -1px);
}
.footer .social-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .social-menu .social-link {
  color: inherit;
  display: flex;
  text-decoration: none;
  align-items: center;
  position: relative;
  padding: 10px 0;
}
.footer .social-menu .social-link i {
  display: block;
  width: 50px;
  height: 50px;
  flex-basis: 50px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid rgb(229, 49, 52);
  border-radius: 50%;
  font-size: 24px;
  color: rgb(229, 49, 52);
  text-align: center;
  line-height: 50px;
  margin-right: 10px;
  position: relative;
  transition: color 0.2s linear;
  z-index: 1;
}
.footer .social-menu .social-link i.fa-facebook {
  padding-right: 2px;
}
.footer .social-menu .social-link .text {
  line-height: 1.5em;
  text-transform: uppercase;
}
.footer .social-menu .social-link .circle {
  width: 50px;
  height: 50px;
  background-color: rgb(229, 49, 52);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  will-change: transform;
  transition: transform 0.2s ease-out;
  transform: translateY(-50%) scale(0);
  z-index: 0;
}
.footer .social-menu .social-link:hover i {
  color: rgb(255, 255, 255);
}
.footer .social-menu .social-link:hover .circle {
  transform: translateY(-50%) scale(1);
}

.to-top {
  z-index: 9;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgb(229, 49, 52);
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.2s linear, transform 0.2s ease-out;
  cursor: pointer;
  transform: translateX(70px);
}
.to-top.show {
  transform: translateX(0);
}
.to-top .material-icons {
  font-size: 24px;
}
.to-top .border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgb(229, 49, 52);
  z-index: 3;
}
.to-top:after, .to-top:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.to-top:after {
  background-color: rgb(229, 49, 52);
  z-index: -2;
}
.to-top:before {
  z-index: -1;
  background-color: rgb(255, 255, 255);
  transform-origin: bottom;
  will-change: transform;
  transition: transform 0.2s ease-out;
  transform: scaleY(0);
}
.to-top:hover {
  color: rgb(229, 49, 52);
}
.to-top:hover:before {
  transform: scaleY(1);
}

#bootstrap-media-lightbox-content-container img {
  border-radius: 5px;
  border: 5px solid rgba(255, 255, 255, 0.4);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.2s linear;
  will-change: transform;
}
.modal.in {
  opacity: 1;
}

.gallery {
  display: grid;
  grid-gap: 20px;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1500px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery .col-sm-6 {
  position: relative;
}
.gallery .col-sm-6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0 0 0 5px rgba(125, 125, 125, 0.4);
  z-index: 0;
  will-change: transform;
  transition: transform 0.2s linear, opacity 0.2s linear;
  transform: scale(0.95);
  opacity: 0;
}
.gallery .col-sm-6:hover::before {
  transform: scale(1);
  opacity: 1;
}
.gallery .thumbnail {
  height: 0;
  padding-top: 100%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.gallery .thumbnail a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.gallery .thumbnail a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 1.5s ease-out;
}
.gallery .thumbnail:hover img {
  transform: scale(1.05) rotate(1deg);
}
.gallery .thumbnail:hover .caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery .thumbnail .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  padding: 20px;
  padding-top: 30px;
  will-change: transform;
  transition: transform 0.3s ease-out, opacity 0.2s linear;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgb(0, 0, 0)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#000000", GradientType=0 );
}
.gallery .thumbnail .caption h3 {
  margin: 0;
  padding-bottom: 5px;
  font-size: 14px;
  border-color: white;
}
.gallery .thumbnail .caption p {
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 300;
}

.popup-container {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-container .popup {
  max-width: 100%;
  width: 640px;
  height: 480px;
  position: relative;
  background-color: white;
  max-height: 100vh;
  color: black;
}
.popup-container .popup .popup-content {
  max-height: 100vh;
  overflow-y: auto;
  padding: 50px;
  position: relative;
  z-index: 1;
  min-height: 300px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .popup-container .popup .popup-content {
    font-size: 21px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .popup-container .popup .popup-content {
    font-size: 21px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .popup-container .popup .popup-content {
    font-size: 21px;
  }
}
@media (min-width: 1500px) {
  .popup-container .popup .popup-content {
    font-size: 21px;
  }
}
.popup-container .popup .popup-content h1,
.popup-container .popup .popup-content h2,
.popup-container .popup .popup-content h3,
.popup-container .popup .popup-content h4,
.popup-container .popup .popup-content h5,
.popup-container .popup .popup-content h6 {
  font-weight: 300;
}
.popup-container .popup .close {
  background-color: white;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  color: red;
}
.popup-container .popup .popup-background {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

form[name=email] {
  display: grid;
  grid-gap: 20px;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  form[name=email] {
    grid-template-areas: "name email subject" "message message message" "check check check" ". submit .";
  }
}
@media (min-width: 1500px) {
  form[name=email] {
    grid-template-areas: "name email subject" "message message message" "check check check" ". submit .";
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  form[name=email] {
    grid-template-areas: "name name email email" "subject subject subject subject" "message message message message" "check check check check" ". submit submit .";
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  form[name=email] {
    grid-template-areas: "name name email email" "subject subject subject subject" "message message message message" "check check check check" ". submit submit .";
  }
}
@media (max-width: 575px) {
  form[name=email] {
    grid-template-areas: "name" "email" "subject" "message" "check" "submit";
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  form[name=email] {
    grid-template-areas: "name" "email" "subject" "message" "check" "submit";
  }
}
form[name=email] .form-group {
  display: block;
}
form[name=email] .form-group:nth-child(1) {
  grid-area: name;
}
form[name=email] .form-group:nth-child(2) {
  grid-area: email;
}
form[name=email] .form-group:nth-child(3) {
  grid-area: subject;
}
form[name=email] .form-group:nth-child(4) {
  grid-area: message;
}
form[name=email] .form-group .checkbox {
  grid-area: check;
}

.form,
form[name=email] {
  width: 100%;
}
.form .form-group,
form[name=email] .form-group {
  display: block;
  margin-bottom: 20px;
}
.form .form-group label,
form[name=email] .form-group label {
  display: block;
  margin-bottom: 5px;
}
.form .form-group input,
.form .form-group textarea,
form[name=email] .form-group input,
form[name=email] .form-group textarea {
  display: block;
  width: 100%;
  border: 1px solid rgb(229, 49, 52);
  font-family: "Roboto", sans-serif;
  padding: 10px;
  font-size: 15px;
  transition: border-color 0.2s linear;
  outline: none;
  background-color: transparent;
}
.form .form-group input:focus,
.form .form-group textarea:focus,
form[name=email] .form-group input:focus,
form[name=email] .form-group textarea:focus {
  border-color: rgb(255, 181, 55);
}
.form .form-group textarea,
form[name=email] .form-group textarea {
  max-width: 100%;
  min-width: 200px;
  min-height: 200px;
  max-height: 90vh;
}
.form button[type=submit],
form[name=email] button[type=submit] {
  grid-area: submit;
  background-color: transparent;
  display: block;
  padding: 20px;
  font-size: 18px;
  font-weight: 300;
  color: white;
  text-decoration: none;
  position: relative;
  transition: color 0.2s linear;
  border: 1px solid rgb(229, 49, 52);
  cursor: pointer;
}
.form button[type=submit]:after, .form button[type=submit]:before,
form[name=email] button[type=submit]:after,
form[name=email] button[type=submit]:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.form button[type=submit]:after,
form[name=email] button[type=submit]:after {
  background-color: rgb(229, 49, 52);
  z-index: -2;
}
.form button[type=submit]:before,
form[name=email] button[type=submit]:before {
  z-index: -1;
  background-color: rgb(255, 255, 255);
  transform-origin: bottom;
  will-change: transform;
  transition: transform 0.2s ease-out;
  transform: scaleY(0);
}
.form button[type=submit]:hover,
form[name=email] button[type=submit]:hover {
  color: rgb(229, 49, 52);
}
.form button[type=submit]:hover:before,
form[name=email] button[type=submit]:hover:before {
  transform: scaleY(1);
}

.post-header .post-photo {
  height: 600px;
  position: relative;
}
.post-header .post-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.post-separator {
  height: 5px;
  background-color: rgb(229, 49, 52);
}

.boxpage {
  padding-top: 100px;
}
@media (max-width: 575px) {
  .boxpage {
    padding-top: 180px;
  }
}
.boxpage h1,
.boxpage h2,
.boxpage h3,
.boxpage h4,
.boxpage h5,
.boxpage h6 {
  display: block;
  padding-bottom: 20px;
  margin: 58px 0 40px 0;
  font-weight: 300;
  position: relative;
}
.boxpage h1:before,
.boxpage h2:before,
.boxpage h3:before,
.boxpage h4:before,
.boxpage h5:before,
.boxpage h6:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 40%;
  height: 1px;
  background-color: rgb(211, 211, 211);
}
.boxpage .boxpage-header {
  margin-bottom: 80px;
  text-align: center;
  padding: 0 20px 20px 20px;
}
.boxpage .boxpage-header:before {
  display: none;
}
.boxpage .row {
  display: grid;
  grid-auto-rows: 1fr;
}
@media (min-width: 768px) and (max-width: 991px) {
  .boxpage .row.columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .boxpage .row.columns-2 .box-content {
    padding: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .boxpage .row.columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .boxpage .row.columns-2 .box-content {
    padding: 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .boxpage .row.columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .boxpage .row.columns-2 .box-content {
    padding: 50px;
  }
}
@media (min-width: 1500px) {
  .boxpage .row.columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .boxpage .row.columns-2 .box-content {
    padding: 50px;
  }
}
@media (max-width: 575px) {
  .boxpage .row.columns-2 .box-content {
    padding: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .boxpage .row.columns-2 .box-content {
    padding: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .boxpage .row.columns-2 .box-content {
    padding: 100px;
  }
}
@media (min-width: 1500px) {
  .boxpage .row.columns-2 .box-content {
    padding: 100px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .boxpage .row.columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .boxpage .row.columns-3 .box-content {
    padding: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .boxpage .row.columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .boxpage .row.columns-3 .box-content {
    padding: 30px;
  }
}
@media (min-width: 1500px) {
  .boxpage .row.columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .boxpage .row.columns-3 .box-content {
    padding: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .boxpage .row.columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .boxpage .row.columns-3 .box-content {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .boxpage .row.columns-3 .box-content {
    padding: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .boxpage .row.columns-3 .box-content {
    padding: 20px;
  }
}
.boxpage .row.columns-4 .box-content {
  padding: 20px;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .boxpage .row.columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1500px) {
  .boxpage .row.columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .boxpage .row.columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .boxpage .row.columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.boxpage .row.columns-5 .box-content {
  padding: 20px;
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .boxpage .row.columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1500px) {
  .boxpage .row.columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .boxpage .row.columns-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .boxpage .row.columns-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .boxpage .row.columns-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .boxpage .row.columns-5 .box-content {
    padding: 10px;
  }
}
.boxpage .row.columns-6 .box-content {
  padding: 10px;
}
@media (min-width: 1500px) {
  .boxpage .row.columns-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .boxpage .row.columns-6 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .boxpage .row.columns-6 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .boxpage .row.columns-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .boxpage .row.columns-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .boxpage .row.columns-6 .box-content {
    padding: 20px;
  }
}
.boxpage .row .box {
  width: 100%;
  height: 100%;
  position: relative;
}
.boxpage .row .box .cover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.boxpage .row .box .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.boxpage .row .box .box-content {
  height: 100%;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgb(211, 211, 211);
  line-height: 1.5em;
}
.boxpage .row .box .box-content .content {
  margin: 0 auto;
  max-width: 500px;
}
.boxpage .row .box .box-button {
  will-change: transform;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transform: scale(0);
  opacity: 0;
}
.boxpage .row .box:hover .box-button {
  transform: scale(1);
  opacity: 1;
}
.boxpage .row .box .box-button,
.boxpage .row .box .box-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  z-index: 2;
}
.boxpage .row .box .box-button .box-button-container,
.boxpage .row .box .box-link .box-button-container {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.boxpage .row .box .box-button .box-button-text,
.boxpage .row .box .box-link .box-button-text {
  background-color: rgba(255, 255, 255, 0.5);
  color: black;
  padding: 20px 30px;
  text-decoration: none;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  font-weight: 400;
}
.boxpage .row .box .box-link {
  text-decoration: none;
}
.boxpage .row .box .box-link .box-button-text {
  background-color: rgb(229, 49, 52);
  color: white;
  padding: 20px 30px;
  text-decoration: none;
  font-weight: 400;
  max-width: 400px;
  border: none;
}

.searchbox-results {
  padding-bottom: 50px;
}
.searchbox-results dl {
  padding: 30px 0;
  margin: 0;
}
.searchbox-results dl:not(:last-child) {
  border-bottom: 1px solid rgb(211, 211, 211);
}
.searchbox-results dl dt {
  margin-bottom: 15px;
  font-size: 24px;
}
.searchbox-results dl dt a {
  text-decoration: none;
}
.searchbox-results dl dd {
  margin: 0;
}

.searchbox-input {
  display: flex;
  position: relative;
  width: 239px;
}
@media (max-width: 575px) {
  .searchbox-input {
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .searchbox-input {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .searchbox-input {
    width: 100%;
  }
}
.searchbox-input input {
  z-index: 2;
  color: rgb(255, 255, 255);
  display: block;
  padding: 10px 20px;
  background-color: transparent;
  border: none;
  font-size: 16px;
  width: 200px;
  margin: 0;
  outline: none;
}
@media (max-width: 575px) {
  .searchbox-input input {
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .searchbox-input input {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .searchbox-input input {
    width: 100%;
  }
}
.searchbox-input input::placeholder {
  color: rgb(255, 255, 255);
  opacity: 0.5;
}
.searchbox-input input:focus ~ .input-focus .background {
  opacity: 1;
}
.searchbox-input input:focus ~ .input-focus .line {
  transform: scaleX(1);
}
.searchbox-input .input-focus {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-right: 39px;
  top: 0;
  left: 0;
  z-index: 1;
}
.searchbox-input .input-focus .background {
  height: 38px;
  background-color: rgba(0, 0, 0, 0.08);
  will-change: opacity;
  transition: opacity 0.2s linear;
  opacity: 0;
}
.searchbox-input .input-focus .line {
  height: 1px;
  background-color: white;
  will-change: transform;
  transition: transform 0.2s ease-out;
  transform: scaleX(0);
}
.searchbox-input button {
  display: block;
  flex-basis: 39px;
  flex-shrink: 0;
  flex-grow: 0;
  height: 39px;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: rgb(255, 255, 255);
  border: none;
  z-index: 2;
  margin: 0;
  padding: 0;
  position: relative;
  cursor: pointer;
  outline: none;
}
.searchbox-input button:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.08);
  z-index: -1;
  transition: opacity 0.2s linear;
  opacity: 0;
}
.searchbox-input button:hover:before, .searchbox-input button:focus:before {
  opacity: 1;
}

.pagination {
  display: none;
}

.alert {
  margin-top: 220px;
  padding: 40px;
  border: 1px solid rgb(0, 162, 255);
}
.alert.alert-success {
  border: 1px solid rgb(51, 255, 0);
}
.alert.alert-danger {
  border: 1px solid rgb(255, 0, 0);
}

.counters {
  position: relative;
  top: 15px;
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.counters .counter {
  flex-basis: 25%;
  flex-shrink: 0;
  flex-grow: 0;
  text-align: center;
  padding: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .counters .counter {
    flex-basis: 50%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .counters .counter {
    flex-basis: 50%;
  }
}
@media (max-width: 575px) {
  .counters .counter {
    flex-basis: 100%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .counters .counter {
    flex-basis: 100%;
  }
}
.counters .counter .number {
  font-size: 40px;
  line-height: 50px;
  height: 50px;
}
.counters .counter .bar-progress {
  width: 100%;
  height: 5px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 20px 0;
}
.counters .counter .bar-progress .bar-fill {
  background-color: rgb(229, 49, 52);
  width: 100%;
  height: 5px;
  will-change: transform;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 2s ease-out;
}
.counters .counter.active .bar-fill {
  transform: scaleX(1);
}

.brand-slider {
  position: relative;
  top: -20px;
}
.brand-slider .slide {
  position: relative;
  padding-top: 100%;
  margin-bottom: 20px;
}
.brand-slider .slide .slide-content {
  padding: 15px 10px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.brand-slider .slide .slide-content .slide-link {
  display: block;
  color: inherit;
  height: 100%;
  text-decoration: none;
}
.brand-slider .slide .slide-content .slide-image {
  height: 100%;
  object-fit: contain;
}
.brand-slider .slide .slide-content .slide-desc {
  color: inherit;
  text-align: center;
  position: relative;
  top: 0px;
  height: 20px;
  line-height: 20px;
  font-size: 18px;
}
.brand-slider .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.brand-slider .slick-dots li {
  margin: 5px;
}
.brand-slider .slick-dots li button {
  width: 20px;
  height: 20px;
  border: 0;
  background-color: rgb(211, 211, 211);
  font-size: 0;
  border-radius: 50%;
  transition: background-color 0.2s linear;
}
.brand-slider .slick-dots li.slick-active button {
  background-color: rgb(229, 49, 52);
}

.pdf_iframe {
  border: none;
  width: 100%;
  height: 70vh;
  min-height: 300px;
}
@media (max-width: 575px) {
  .pdf_iframe {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .pdf_iframe {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pdf_iframe {
    display: none;
  }
}

.pdf_link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 10px;
  border: 1px solid rgb(229, 49, 52);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .pdf_link {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .pdf_link {
    display: none;
  }
}
@media (min-width: 1500px) {
  .pdf_link {
    display: none;
  }
}
.pdf_link .button {
  display: block;
  padding: 20px;
  font-size: 18px;
  font-weight: 300;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 0.2s linear;
  background: rgb(229, 49, 52);
  color: rgb(255, 255, 255);
}

.ci-container {
  background-color: white;
}

@keyframes pulsecall {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.3);
  }
  35% {
    transform: scale(1.6);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulsecall2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.callbutton {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: transparent;
  z-index: 10;
  border: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  cursor: pointer;
}
.callbutton:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  transform: scale(1);
  background: rgba(37, 233, 76, 0.3);
  border-radius: 50%;
  z-index: -1;
  transition: transform 0.3s ease-out;
  animation: 7s ease 0s infinite normal none running pulsecall;
  pointer-events: none;
}
.callbutton .call-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: 4s ease 0s infinite normal none running pulsecall2;
  border-radius: 50%;
}
.callbutton .speech-bubble {
  position: absolute;
  width: 250px;
  min-height: 64px;
  background: white;
  border-radius: 32px;
  top: 0;
  left: -270px;
  display: flex;
  padding: 4px;
  align-items: center;
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-out, opacity 0.2s linear;
  will-change: transform;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}
.callbutton .speech-bubble .bubble-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 4px solid rgb(55, 200, 55);
  margin-right: 15px;
}
.callbutton .speech-bubble .bubble-text {
  font-size: 16px;
  text-align: left;
}
.callbutton:hover .speech-bubble {
  opacity: 1;
  transform: translateX(0);
}
.callbutton:hover:before {
  transform: scale(1.2);
}

.infos-row {
  display: flex;
  text-align: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .infos-row {
    flex-direction: column;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .infos-row {
    flex-direction: column;
  }
}
.infos-row .column {
  padding: 25px;
  display: block;
  width: 100%;
}
.infos-row .column .description {
  margin-top: 25px;
}

.container.flex .main-content {
  flex-grow: 0 !important;
  flex-basis: 700px;
}
.container.flex .full-width {
  position: static;
  width: 100%;
  max-width: 700px;
}
.container.flex .full-width .full-width-content {
  position: static;
  width: 100%;
  left: 0;
  transform: translateX(0);
}

/*# sourceMappingURL=main.css.map */
