header .employee-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-right: 120px;
  margin-top: 20px;
}
header .employee-wrapper a {
  color: #707070;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  position: relative;
}
header .employee-wrapper a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  background-color: #174989;
  bottom: -7px;
  left: 0;
  right: 0;
  margin: auto;
  transition: width 0.25s linear;
}
header .employee-wrapper a:hover {
  color: #174989;
}
header .employee-wrapper a:hover::after {
  width: 100%;
}
header .employee-wrapper a.active {
  color: #174989;
}
header .employee-wrapper a.active::after {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  header .employee-wrapper {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  header .employee-wrapper {
    margin-right: 20px;
  }
}
header .navbar {
  display: flex;
  flex-direction: row;
  z-index: 5;
  background: white;
  position: fixed;
  width: 100%;
  box-shadow: 0px 5px 10px 0px #707070;
  justify-content: space-between !important;
}
@media only screen and (max-width: 991px) {
  header .navbar {
    height: unset;
    padding: 0;
  }
}
header .navbar .navbar-brand {
  margin-left: 70px;
}
@media only screen and (max-width: 991px) {
  header .navbar .navbar-brand {
    margin-left: 30px;
  }
}
header .navbar .navbar-brand img {
  height: 65px;
  transition: 0.25s height linear;
}
@media only screen and (max-width: 991px) {
  header .navbar .navbar-brand img {
    height: 40px;
  }
}
header .navbar .navbar-brand:hover {
  opacity: 0.7;
}
header .navbar .navbar-toggler {
  position: relative;
}
@media only screen and (max-width: 991px) {
  header .navbar .navbar-toggler {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
  }
}
header .navbar .navbar-toggler .hamburger-line {
  position: relative;
  width: 35px;
  height: 2px;
  margin: 4px 0;
  background-color: #174989;
}
header .navbar .nav-items-wrapper {
  justify-content: flex-end;
  background-color: white;
  padding: 0;
}
header .navbar .header-main-menu {
  display: flex;
  list-style: none;
  margin: 0px 100px 0 0;
  flex-wrap: wrap;
  padding-left: 5px;
}
@media only screen and (max-width: 1199px) {
  header .navbar .header-main-menu {
    margin: 0px;
  }
}
@media only screen and (max-width: 991px) {
  header .navbar .header-main-menu {
    flex-direction: column;
    padding: 0;
    margin-right: unset;
  }
}
header .navbar .header-main-menu .menu-item {
  padding: 20px;
  position: relative;
}
@media only screen and (max-width: 1400px) {
  header .navbar .header-main-menu .menu-item {
    min-width: 140px;
  }
}
@media only screen and (min-width: 992px) {
  header .navbar .header-main-menu .menu-item a:hover {
    text-decoration: none;
    color: #174989;
  }
  header .navbar .header-main-menu .menu-item a:hover:after {
    transition: 0.25s linear width;
    width: 100%;
  }
  header .navbar .header-main-menu .menu-item a:after,
  header .navbar .header-main-menu .menu-item a[aria-current="page"]:after {
    height: 2px;
    width: 0%;
    content: "";
    background-color: #174989;
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: 0.25s linear width;
  }
  header .navbar .header-main-menu .menu-item a:focus {
    color: #174989;
  }
  header .navbar .header-main-menu .menu-item a[aria-current="page"]:after {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  header .navbar .header-main-menu .menu-item {
    padding: 20px 30px 20px 15px;
    text-align: right;
  }
}
header .navbar .header-main-menu .menu-item a {
  color: #707070;
  position: relative;
}
header .navbar .header-main-menu .menu-item a[aria-current="page"] {
  color: #174989;
}
header .scroll-down {
  box-shadow: 0px 2px 10px 0px #707070;
  position: fixed;
}
@media only screen and (min-width: 992px) {
  header .scroll-down {
    transition: 0.5s;
  }
  header .scroll-down .navbar-brand img {
    height: 50px;
    transition: 0.50s height linear;
  }
  header .scroll-down .nav-logo-desktop {
    display: none;
  }
  header .scroll-down .nav-logo-wrapper .nav-logo-desktop-scrolled {
    display: block;
    width: 80px;
    margin-left: 50px;
  }
  header .scroll-down .navbar .header-main-menu .menu-item {
    margin-top: 23px;
  }
}
@media (min-width: 992px) {
  header .header-main-menu .menu-item > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 0;
    z-index: 1000;
    min-width: 200px;
  }
  header .header-main-menu .menu-item > .sub-menu .menu-item {
    padding: 20px;
  }
  header .header-main-menu .menu-item:hover > .sub-menu {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  header .sub-menu .menu-item {
    padding: 0 !important;
    padding-top: 15px !important;
  }
}
header .sub-menu {
  list-style: none !important;
}
@media (min-width: 992px) {
  header .navbar .header-main-menu .menu-item.current-menu-parent a:after {
    width: 100%;
  }
  header .navbar .header-main-menu .menu-item.current-menu-parent .sub-menu a:after {
    width: 0%;
  }
  header .navbar .header-main-menu .menu-item.current-menu-parent .sub-menu .current-menu-item a:after {
    width: 100%;
  }
}
.about-history-container .about-history-row {
  max-width: 1400px;
}
@media only screen and (min-width: 992px) {
  .about-history-container .about-history-row {
    margin: 120px auto;
  }
}
@media only screen and (max-width: 991px) {
  .about-history-container .about-history-row {
    margin: 80px auto;
  }
}
@media only screen and (max-width: 767px) {
  .about-history-container .about-history-row {
    margin: 50px auto;
  }
}
@media only screen and (max-width: 576px) {
  .about-history-container .about-history-row {
    margin: 30px auto;
  }
}
.about-history-container .about-history-row .about-history-image-column {
  height: fit-content;
}
.about-history-container .about-history-row .about-history-image-column img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 991px) {
  .about-history-container .about-history-row .about-history-image-column img {
    margin-bottom: 15px;
    width: calc(100% - 15px);
  }
}
.about-history-container .about-history-row .about-history-image-column:after {
  position: absolute;
  height: calc(100% - 15px);
  width: calc(100% - 45px);
  content: "";
  background-color: #33A1D9;
  right: -10px;
  bottom: -20px;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .about-history-container .about-history-row .about-history-image-column:after {
    bottom: 0px;
    right: 15px;
  }
}
.about-history-container .about-history-row .about-history-content-column {
  padding-top: 15px;
}
@media only screen and (min-width: 768px) {
  .about-history-container .about-history-row .about-history-content-column {
    padding-left: 30px;
    padding-top: 0px;
  }
}
@media only screen and (min-width: 992px) {
  .about-history-container .about-history-row .about-history-content-column {
    padding-left: 50px;
  }
}
.about-history-container .about-history-row .about-history-content-column h2 {
  margin-bottom: 45px;
  position: relative;
}
.about-history-container .about-history-row .about-history-content-column h2:after {
  content: '';
  height: 6px;
  width: 70px;
  position: absolute;
  left: 0;
  bottom: -20px;
  background-color: #33A1D9;
}
.about-services-container {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 0;
}
@media only screen and (min-width: 992px) {
  .about-services-container {
    padding: 120px 0;
  }
}
.about-services-container .about-services-row {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}
@media only screen and (max-width: 1199px) {
  .about-services-container .about-services-row .about-services-columm {
    flex-grow: 1;
    max-width: unset;
    margin: 15px 0;
  }
}
.about-services-container .about-services-row .about-services-columm .about-services-wrapper {
  background-color: rgba(255,255,255,0.7);
  padding: 50px;
  height: 100%;
}
@media only screen and (max-width: 1199px) {
  .about-services-container .about-services-row .about-services-columm .about-services-wrapper {
    padding: 30px;
  }
}
.about-services-container .about-services-row .about-services-columm .about-services-wrapper img {
  margin-bottom: 20px;
  max-height: 100px;
  height: 100%;
}
.about-services-container .about-services-row .about-services-columm .about-services-wrapper h3 {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .about-services-container .about-services-row .about-services-columm .about-services-wrapper h3 {
    min-height: 58px;
  }
}
.values-container {
  background-color: #174989;
  color: white;
}
@media only screen and (max-width: 767px) {
  .values-container .values-row {
    flex-direction: column-reverse;
  }
}
.values-container .values-row .values-content-wrapper {
  max-width: 650px;
  margin: 120px auto;
}
@media only screen and (max-width: 991px) {
  .values-container .values-row .values-content-wrapper {
    margin: 60px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .values-container .values-row .values-content-wrapper {
    margin: 30px 15px;
  }
}
.values-container .values-row .values-content-wrapper .values-title,
.values-container .values-row .values-content-wrapper .values-motto {
  margin-bottom: 20px;
}
.values-container .values-row .values-content-wrapper .body-text {
  color: white;
}
.values-container .values-row .values-image-column {
  padding: 0;
}
.values-container .values-row .values-image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.affiliates-container {
  padding: 120px 0;
}
@media only screen and (max-width: 991px) {
  .affiliates-container {
    padding: 60px 0;
  }
}
.affiliates-container .affiliates-title-row {
  text-align: center;
  width: 100%;
  justify-content: center;
  margin: 0 auto 45px;
}
@media only screen and (max-width: 991px) {
  .affiliates-container .affiliates-title-row {
    margin: 0 auto 30px;
  }
}
.affiliates-container .affiliates-row {
  max-width: 1140px;
  margin: auto;
}
.affiliates-container .affiliates-row .affiliates-column {
  width: fit-content;
}
.affiliates-container .affiliates-row .affiliates-column img {
  margin: auto;
  object-fit: contain;
  width: 100%;
  height: 100%;
  min-height: 100px;
  max-height: 100px;
}
.contact-container .contact-row {
  max-width: 1400px;
  margin: 100px auto;
}
@media only screen and (max-width: 991px) {
  .contact-container .contact-row {
    margin: 30px auto;
  }
}
.contact-container .contact-row .contact-content-column .contact-title {
  margin-bottom: 45px;
  position: relative;
}
.contact-container .contact-row .contact-content-column .contact-title:after {
  content: '';
  height: 6px;
  width: 70px;
  position: absolute;
  left: 0;
  bottom: -20px;
  background-color: #33A1D9;
}
.contact-container .contact-row .contact-content-column .contact-snippet {
  max-width: 550px;
}
.contact-container .contact-row .contact-content-column .contact-address {
  margin-top: 30px;
}
@media only screen and (min-width: 992px) {
  .contact-container .contact-row .contact-content-column .contact-address {
    margin-top: 45px;
  }
}
.contact-container .contact-row .contact-content-column .contact-address p {
  margin: 0;
}
.contact-container .contact-row .contact-content-column .contact-address .acf-map {
  width: 100%;
  margin-top: 30px;
}
@media only screen and (min-width: 992px) {
  .contact-container .contact-row .contact-content-column .contact-address .acf-map {
    margin-top: 45px;
    width: 90%;
  }
}
.contact-container .contact-row .contact-content-column .contact-address .contact-map {
  margin-top: 45px;
  width: 90%;
}
@media only screen and (max-width: 991px) {
  .contact-container .contact-row .contact-content-column .contact-address .contact-map {
    width: 100%;
  }
}
.contact-container .contact-row .contact-form-column {
  max-width: 700px;
}
@media only screen and (max-width: 991px) {
  .contact-container .contact-row .contact-form-column {
    padding-top: 40px;
  }
}
.contact-container .contact-row .contact-form-column .wpcf7-form .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  background-color: #F6F6F6;
  border: 0;
  padding-left: 15px;
}
.contact-container .contact-row .contact-form-column .wpcf7-form input::placeholder {
  font-size: 20px;
  color: #403E3E;
}
.contact-container .contact-row .contact-form-column .wpcf7-form .indicate-label {
  padding: 15px;
}
.contact-container .contact-row .contact-form-column .wpcf7-form .wpcf7-radio {
  background-color: white;
}
.contact-container .contact-row .contact-form-column .wpcf7-form input,
.contact-container .contact-row .contact-form-column .wpcf7-form select {
  height: 70px;
}
.contact-container .contact-row .contact-form-column .wpcf7-form .wpcf7-submit {
  background-color: #33A1D9;
  color: white;
  cursor: pointer;
  height: 45px;
  width: initial;
  transition: 0.25s linear;
}
.contact-container .contact-row .contact-form-column .wpcf7-form .wpcf7-submit:hover {
  box-shadow: rgba(100,100,111,0.2) 0px 10px 20px -2px;
  transition: 0.25s linear;
  transform: scale(1.02);
}
.services-items-container .services-items-row {
  padding: 110px 0;
  margin: auto -15px;
}
@media only screen and (max-width: 991px) {
  .services-items-container .services-items-row {
    padding: 40px 0 15px;
  }
}
.services-items-container .services-items-row .services-items-image-column {
  position: relative;
  z-index: 2;
  height: fit-content;
}
.services-items-container .services-items-row .services-items-image-column img {
  width: 100%;
  box-shadow: rgba(17,17,26,0.1) 0px 4px 16px, rgba(17,17,26,0.1) 0px 8px 24px, rgba(17,17,26,0.1) 0px 16px 56px;
}
@media only screen and (max-width: 991px) {
  .services-items-container .services-items-row .services-items-image-column img {
    margin-bottom: 15px;
    width: calc(100% - 15px);
  }
}
.services-items-container .services-items-row .services-items-image-column:after {
  position: absolute;
  height: calc(100% - 15px);
  width: calc(100% - 45px);
  content: "";
  background-color: #33A1D9;
  right: -10px;
  bottom: -20px;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .services-items-container .services-items-row .services-items-image-column:after {
    bottom: 0px;
    right: 15px;
  }
}
.services-items-container .services-items-row .services-items-content-column .services-items-content-wrapper {
  max-width: 725px;
  margin: 0 0 0 30px;
}
@media only screen and (max-width: 991px) {
  .services-items-container .services-items-row .services-items-content-column .services-items-content-wrapper {
    margin: 15px 0 0 0;
  }
}
.services-items-container .services-items-row .services-items-content-column .services-items-content-wrapper h2 {
  margin-bottom: 45px;
  position: relative;
}
.services-items-container .services-items-row .services-items-content-column .services-items-content-wrapper h2:after {
  content: '';
  height: 6px;
  width: 70px;
  position: absolute;
  left: 0;
  bottom: -20px;
  background-color: #33A1D9;
}
.services-items-container .services-items-row .services-items-inner-container {
  padding: 0;
}
.services-items-container .services-items-row .services-items-inner-container .services-items-inner-row {
  max-width: 1400px;
  margin: auto;
}
.services-items-container .services-items-row:nth-child(even) {
  background-color: #F8F7F7;
}
.services-items-container .services-items-row:nth-child(even) .services-items-inner-row {
  flex-direction: row-reverse;
}
.services-items-container .services-items-row:nth-child(even) .services-items-inner-row .services-items-content-wrapper {
  margin: 0 auto 0 0;
}
@media only screen and (max-width: 991px) {
  .services-items-container .services-items-row:nth-child(even) .services-items-inner-row .services-items-content-wrapper {
    margin: 15px 0 0 0;
  }
}
.career-hero-container .career-hero-row .career-hero-column {
  padding: 0;
  overflow: hidden;
}
.career-hero-container .career-hero-row .career-hero-column img {
  width: 100%;
  max-height: 60vh;
  height: 100%;
  object-fit: cover;
}
.careers-container.positions {
  background-color: white;
}
.careers-container.positions .careers-title-row {
  color: #707070;
}
.careers-container.positions .card-header:first-child {
  border-radius: 0;
}
.careers-container.positions .card {
  border: 0;
}
.careers-container.training {
  background-color: #174989;
}
.careers-container.training .careers-title-row {
  color: white;
}
.careers-container.training .careers-title-row .body-text {
  color: white;
}
.careers-container.training .card-header .card-title {
  color: #707070;
}
.careers-container {
  padding: 120px 0;
}
@media only screen and (max-width: 1199px) {
  .careers-container {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 991px) {
  .careers-container {
    padding: 30px 0;
  }
}
.careers-container .careers-title-row,
.careers-container .careers-row {
  max-width: 1400px;
  margin: auto;
}
.careers-container .careers-title-row {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1199px) {
  .careers-container .careers-title-row {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .careers-container .careers-title-row {
    margin-bottom: 15px;
  }
}
.careers-container .careers-title-row h2 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .careers-container .careers-title-row h2 {
    margin-bottom: 15px;
  }
}
.careers-container .careers-row .card {
  border-radius: 0;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1199px) {
  .careers-container .careers-row .card {
    margin-bottom: 5px;
  }
}
.careers-container .careers-row .card .region-header {
  background-color: #174989;
  color: white;
}
.careers-container .careers-row .card .region-header .card-heading-button button i {
  color: white;
}
.careers-container .careers-row .card button {
  color: white;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  .careers-container .careers-row .card button i {
    margin-right: -15px;
  }
}
.careers-container .careers-row .card .btn:focus {
  box-shadow: none;
}
.careers-container .careers-row .card .card-header {
  border-bottom: 0;
  padding: 20px 15px;
}
@media only screen and (max-width: 991px) {
  .careers-container .careers-row .card .card-header {
    padding: 10px 30px 10px 10px;
  }
}
.careers-container .careers-row .card .card-header .btn-link:hover,
.careers-container .careers-row .card .card-header .btn-link:focus {
  text-decoration: none;
}
.careers-container .careers-row .card .card-header .card-heading-button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.careers-container .careers-row .card .card-header .card-heading-button i {
  color: #707070;
}
.careers-container .careers-row .card .card-header .card-heading-button [aria-expanded='true'] i {
  transform: rotate(180deg);
  transition: 0.5s ease-in-out;
}
.careers-container .careers-row .card .card-header .card-heading-button [aria-expanded='false'] i {
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}
.careers-container .careers-row .card .card-header .card-title {
  text-align: left;
  margin: 0;
}
.careers-container .careers-row .card .card-body {
  padding: 15px;
}
@media only screen and (max-width: 991px) {
  .careers-container .careers-row .card .card-body {
    padding: 15px 30px 0px 10px;
  }
}
.careers-container .careers-row .card .inner-region-cards {
  background-color: #F8F7F7;
}
.careers-container .careers-row .card .inner-region-cards .inner-careers-row .inner-card {
  padding: 15px 0;
}
.careers-container .careers-row .card .inner-region-cards .inner-careers-row .inner-card .inner-card-header {
  margin-bottom: 15px;
}
.careers-container .careers-row .card .inner-region-cards .inner-careers-row .inner-card .inner-card-header .card-title,
.careers-container .careers-row .card .inner-region-cards .inner-careers-row .inner-card .inner-card-header i {
  color: #707070;
}
.careers-container .careers-row .card .inner-region-cards .inner-careers-row .inner-card .header-text {
  margin-bottom: 0;
}
.careers-container .careers-row .card .inner-region-cards .inner-careers-row .btn-link:hover,
.careers-container .careers-row .card .inner-region-cards .inner-careers-row .btn-link:focus {
  text-decoration: none;
}
.careers-container .careers-row .card .inner-region-cards .inner-careers-row .inner-card-heading-button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.careers-container .careers-row .card .inner-region-cards .inner-careers-row .inner-card-heading-button [aria-expanded='true'] i {
  transform: rotate(180deg);
  transition: 0.5s ease-in-out;
}
.careers-container .careers-row .card .inner-region-cards .inner-careers-row .inner-card-heading-button [aria-expanded='false'] i {
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}
.company-news-title-container {
  background-color: #F6F6F6;
}
.company-news-title-container .company-news-title-row {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .company-news-title-container .company-news-title-row {
    margin: 0 auto;
    padding: 30px 0;
  }
}
.company-news-container {
  background-color: #F6F6F6;
}
.company-news-container .card-items-row .news-item-content {
  max-height: 125px;
  min-height: 125px;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.company-news-container .card-items-row .header-body-wrapper {
  display: flex;
  flex-direction: column;
}
.company-news-container .card-items-row .header-body-wrapper .date-wrapper {
  display: flex;
  align-items: flex-end;
  flex-grow: 1;
}
.company-news-container .card-items-row .header-body-wrapper .date-wrapper p {
  margin-bottom: 0;
  margin-top: 15px;
}
#sub-page-hero-container.sub-page-hero-container {
  padding: 0;
}
#sub-page-hero-container.sub-page-hero-container .sub-page-hero-row {
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: auto;
  min-height: calc(70vh);
  align-items: center;
}
@media only screen and (max-width: 991px) {
  #sub-page-hero-container.sub-page-hero-container .sub-page-hero-row {
    max-height: unset;
    min-height: unset;
  }
}
#sub-page-hero-container.sub-page-hero-container .sub-page-hero-row .sub-page-hero-column {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
#sub-page-hero-container.sub-page-hero-container .sub-page-hero-row .sub-page-hero-image {
  height: 100vh;
  width: 100%;
  top: 0;
  position: absolute;
  object-fit: cover;
  object-position: bottom;
}
#sub-page-hero-container.sub-page-hero-container .sub-page-hero-row .introduction-wrapper {
  position: relative;
  background-color: rgba(0,0,0,0.5);
  color: white;
  z-index: 2;
  padding: 50px;
  margin: 70px 50px;
}
@media only screen and (max-width: 1400px) {
  #sub-page-hero-container.sub-page-hero-container .sub-page-hero-row .introduction-wrapper {
    margin: 70px;
    padding: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  #sub-page-hero-container.sub-page-hero-container .sub-page-hero-row .introduction-wrapper {
    margin: 50px;
    padding: 20px;
  }
}
@media only screen and (max-width: 991px) {
  #sub-page-hero-container.sub-page-hero-container .sub-page-hero-row .introduction-wrapper {
    margin: 15px 0px;
    padding: 30px;
  }
}
#sub-page-hero-container.sub-page-hero-container .sub-page-hero-row .introduction-wrapper a {
  color: #D0D0D0;
}
.card-items-container .card-items-row {
  max-width: 1140px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .card-items-container .card-items-row {
    margin: 0 -15px;
  }
}
.card-items-container .card-items-row .instrument-product-column,
.card-items-container .card-items-row .card-item {
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .card-items-container .card-items-row .instrument-product-column,
  .card-items-container .card-items-row .card-item {
    margin-bottom: 40px;
  }
}
.card-items-container .card-items-row .instrument-product-column a,
.card-items-container .card-items-row .card-item a {
  color: #707070;
}
.card-items-container .card-items-row .instrument-product-column a:hover,
.card-items-container .card-items-row .card-item a:hover {
  opacity: 1;
}
.card-items-container .card-items-row .instrument-product-column .card-item-wrapper,
.card-items-container .card-items-row .card-item .card-item-wrapper {
  max-width: 400px;
  margin: auto;
  height: 100%;
  display: flex;
  transition: transform 0.25s linear;
  flex-direction: column;
  box-shadow: rgba(100,100,111,0.2) 0px 10px 20px -2px;
}
.card-items-container .card-items-row .instrument-product-column .card-item-wrapper a,
.card-items-container .card-items-row .card-item .card-item-wrapper a {
  display: block;
  padding: 0;
}
.card-items-container .card-items-row .instrument-product-column .card-item-wrapper img,
.card-items-container .card-items-row .card-item .card-item-wrapper img {
  width: 100%;
  height: calc((100vw - 200px) / 3);
  max-height: 250px;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}
@media only screen and (max-width: 767px) {
  .card-items-container .card-items-row .instrument-product-column .card-item-wrapper img,
  .card-items-container .card-items-row .card-item .card-item-wrapper img {
    height: calc(100vw - 50px);
  }
}
.card-items-container .card-items-row .instrument-product-column .card-item-wrapper .header-body-wrapper,
.card-items-container .card-items-row .card-item .card-item-wrapper .header-body-wrapper {
  padding: 30px;
  border-top: 4px solid #33A1D9;
  background-color: white;
  flex-grow: 1;
}
@media only screen and (max-width: 991px) {
  .card-items-container .card-items-row .instrument-product-column .card-item-wrapper .header-body-wrapper,
  .card-items-container .card-items-row .card-item .card-item-wrapper .header-body-wrapper {
    padding: 15px;
  }
}
.card-items-container .card-items-row .instrument-product-column .card-item-wrapper:hover,
.card-items-container .card-items-row .card-item .card-item-wrapper:hover {
  transform: scale(1.02);
  transition: transform 0.25s linear;
  box-shadow: rgba(100,100,111,0.3) 0px 10px 20px -2px;
}
.home-hero-container .home-hero-row .home-hero-column {
  padding: 0;
  position: relative;
  overflow: hidden;
  background-color: #33A1D9;
}
.home-hero-container .home-hero-row .home-hero-column .hero-overlay {
  z-index: 1;
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right,rgba(51,161,217,0.05),rgba(23,73,137,0.25));
}
.home-hero-container .home-hero-row .home-hero-column img {
  position: absolute;
  top: 0;
  left: 0;
}
.home-hero-container .home-hero-row .home-hero-column .background-layer {
  width: 100%;
  object-fit: cover;
  position: relative;
  min-height: 400px;
  max-height: calc(100vh + 150px);
  object-position: bottom;
}
@media only screen and (max-width: 991px) {
  .home-hero-container .home-hero-row .home-hero-column .background-layer {
    filter: brightness(0.65);
    object-position: left;
  }
}
.home-hero-container .home-hero-row .home-hero-column .hero-layer-1 {
  z-index: 4;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  transform: translateY(0px) !important;
}
@media only screen and (max-width: 991px) {
  .home-hero-container .home-hero-row .home-hero-column .hero-layer-1 {
    display: none;
  }
}
.home-hero-container .home-hero-row .home-hero-column .plane-layer {
  position: absolute;
  top: 0;
  left: 35px;
  margin: auto;
  width: 45%;
  bottom: 0;
}
@media only screen and (max-width: 991px) {
  .home-hero-container .home-hero-row .home-hero-column .plane-layer {
    height: 80%;
    width: auto;
    left: 0;
    right: 0;
  }
}
.home-hero-container .home-hero-row .home-hero-column .hero-image-content-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  bottom: 0;
  justify-content: center;
  color: white;
  z-index: 4;
}
@media only screen and (max-width: 991px) {
  .home-hero-container .home-hero-row .home-hero-column .hero-image-content-wrapper {
    width: 90%;
  }
}
.home-hero-container .home-hero-row .home-hero-column .hero-image-content-wrapper h1 {
  margin-top: 40px;
}
@media only screen and (max-width: 991px) {
  .home-hero-container .home-hero-row .home-hero-column .hero-image-content-wrapper h1 {
    margin-top: 20px;
  }
}
.home-hero-container .home-hero-row .home-hero-column .hero-image-content-wrapper .hero-image-content {
  max-width: 750px;
  margin-right: auto;
  margin-left: 50px;
}
@media only screen and (max-width: 991px) {
  .home-hero-container .home-hero-row .home-hero-column .hero-image-content-wrapper .hero-image-content {
    margin-left: 0;
  }
}
.home-hero-container .home-hero-row .home-hero-column .hero-image-content-wrapper .link-button {
  margin-top: 40px;
}
@media only screen and (max-width: 991px) {
  .home-hero-container .home-hero-row .home-hero-column .hero-image-content-wrapper .link-button {
    margin-top: 30px;
  }
}
.our-operations-container {
  margin: 30px 0;
}
@media only screen and (min-width: 992px) {
  .our-operations-container {
    margin: 120px 0;
  }
}
.our-operations-container .our-operations-title-row {
  text-align: center;
  margin: 0 auto 90px;
}
@media only screen and (max-width: 991px) {
  .our-operations-container .our-operations-title-row {
    margin: 0 auto 30px;
  }
}
.our-operations-container .our-operations-row {
  max-width: 1140px;
  margin: auto;
}
@media only screen and (max-width: 991px) {
  .our-operations-container .our-operations-row .our-operations-column {
    padding: 0 0 15px 0;
  }
}
.our-operations-container .our-operations-row .our-operations-column .operations-item-wrapper {
  max-width: 365px;
  margin: auto;
}
@media only screen and (max-width: 1199px) {
  .our-operations-container .our-operations-row .our-operations-column .operations-item-wrapper {
    padding: 0 5px;
  }
}
.our-operations-container .our-operations-row .our-operations-column .operations-item-wrapper img {
  margin-bottom: 20px;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .our-operations-container .our-operations-row .our-operations-column .operations-item-wrapper img {
    margin-bottom: 50px;
  }
}
.our-operations-container .our-operations-row .link-button {
  margin: 15px auto auto auto;
}
@media only screen and (min-width: 992px) {
  .our-operations-container .our-operations-row .link-button {
    margin: 40px auto auto auto;
  }
}
.services-data-container {
  background-color: #174989;
  color: white;
}
.services-data-container .services-data-row {
  padding: 30px 0;
}
@media only screen and (min-width: 992px) {
  .services-data-container .services-data-row {
    max-width: 1140px;
    margin: auto;
    padding: 120px 0;
  }
}
.services-data-container .services-data-row .services-title-wrapper {
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .services-data-container .services-data-row .services-title-wrapper {
    margin-bottom: 20px;
  }
}
.services-data-container .services-data-row .office-observation-wrapper {
  color: white;
}
.services-data-container .services-data-row .office-observation-wrapper .icon-column {
  display: flex;
}
.services-data-container .services-data-row .office-observation-wrapper .icon-column img {
  width: auto;
  max-height: 100px;
  height: auto;
  margin: auto;
}
@media only screen and (max-width: 1199px) {
  .services-data-container .services-data-row .office-observation-wrapper .icon-column img {
    max-height: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .services-data-container .services-data-row .office-observation-wrapper .icon-column img {
    max-height: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .services-data-container .services-data-row .office-observation-wrapper .icon-column img {
    height: auto;
    max-width: 75px;
    display: flex;
    text-align: center;
    margin: auto;
  }
}
.services-data-container .services-data-row .office-observation-wrapper .wpsm_col-md-4,
.services-data-container .services-data-row .office-observation-wrapper .wpsm_col-sm-6 {
  padding: 0;
}
.services-data-container .services-data-row .office-observation-wrapper .wpsm_counterbox {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.services-data-container .services-data-row .office-observation-wrapper .wpsm_counterbox .wpsm_count-title {
  display: none;
}
.services-data-container .services-data-row .office-observation-wrapper .wpsm_counterbox .wpsm_number {
  line-height: unset !important;
  margin-top: unset !important;
  color: white;
}
.services-data-container .services-data-row .office-observation-wrapper .wpsm_counterbox .counter {
  display: flex;
  font-size: 48px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  color: white;
}
@media only screen and (max-width: 991px) {
  .services-data-container .services-data-row .office-observation-wrapper .wpsm_counterbox .counter {
    font-size: 40px;
  }
}
@media only screen and (max-width: 576px) {
  .services-data-container .services-data-row .office-observation-wrapper .wpsm_counterbox .counter {
    font-size: 32px;
  }
}
.work-with-us-container {
  background-color: #DDDDDD;
}
.work-with-us-container .work-with-us-row {
  max-width: 1400px;
  padding: 120px 0;
  margin: auto;
}
@media only screen and (max-width: 991px) {
  .work-with-us-container .work-with-us-row {
    padding: 30px 0;
  }
}
.work-with-us-container .work-with-us-row .work-with-us-image-column {
  height: fit-content;
}
.work-with-us-container .work-with-us-row .work-with-us-image-column img {
  width: calc(100% - 50px);
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .work-with-us-container .work-with-us-row .work-with-us-image-column img {
    width: 100%;
    margin-bottom: 15px;
  }
}
.work-with-us-container .work-with-us-row .work-with-us-image-column:after {
  position: absolute;
  height: calc(100% - 15px);
  width: calc(100% - 80px);
  content: "";
  background-color: #33A1D9;
  right: 40px;
  bottom: -20px;
  z-index: 0;
}
@media only screen and (max-width: 991px) {
  .work-with-us-container .work-with-us-row .work-with-us-image-column:after {
    bottom: 0px;
    width: calc(100% - 35px);
    right: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .work-with-us-container .work-with-us-row .work-with-us-content-column {
    margin-top: 15px;
  }
}
.work-with-us-container .work-with-us-row .work-with-us-content-column .work-with-us-content-wrapper {
  max-width: 500px;
}
.work-with-us-container .work-with-us-row .work-with-us-content-column .work-with-us-content-wrapper h2 {
  margin-bottom: 45px;
  position: relative;
}
.work-with-us-container .work-with-us-row .work-with-us-content-column .work-with-us-content-wrapper h2:after {
  content: '';
  height: 6px;
  width: 70px;
  position: absolute;
  left: 0;
  bottom: -20px;
  background-color: #33A1D9;
}
.work-with-us-container .work-with-us-row .work-with-us-content-column .work-with-us-content-wrapper a {
  color: #707070;
}
.work-with-us-container .work-with-us-row .work-with-us-content-column .work-with-us-content-wrapper a:hover {
  opacity: 0.7;
}
.work-with-us-container .work-with-us-row .work-with-us-content-column .work-with-us-content-wrapper a .strong a:visited {
  color: #174989;
}
.work-with-us-container .work-with-us-row .work-with-us-content-column .work-with-us-content-wrapper .link-button {
  color: white;
}
.default-page-container {
  height: calc(100vh - 125px);
}
@media only screen and (max-width: 991px) {
  .default-page-container {
    height: calc(100vh - 50px);
  }
}
.default-page-container .default-page-row {
  max-width: 1140px;
  margin: auto;
  align-items: center;
  height: 100%;
}
.default-page-container .default-page-row .default-page-column {
  text-align: center;
  margin-top: -100px;
}
.thank-you-container {
  height: calc(100vh - 125px);
}
.thank-you-container .thank-you-row {
  text-align: center;
  align-items: center;
  height: 100%;
}
.thank-you-container .thank-you-row .thank-you-column {
  background-color: #174989;
  display: flex;
  max-width: fit-content;
  margin: auto;
  padding: 100px;
  color: white;
  flex-direction: column;
}
.thank-you-container .thank-you-row .thank-you-column .body-text {
  color: white;
}
.instrument-sales-container {
  background-color: #F6F6F6;
}
.instrument-sales-container .instrument-sales-title-row {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .instrument-sales-container .instrument-sales-title-row {
    margin: 0 auto;
    padding: 30px 0;
  }
}
.instrument-products-container {
  background-color: #F6F6F6;
}
.single-instrument-sale-container {
  padding: 120px 0;
}
@media only screen and (max-width: 1199px) {
  .single-instrument-sale-container {
    padding: 30px 0;
  }
}
.single-instrument-sale-container .single-instrument-sale-row {
  max-width: 1400px;
  margin: auto;
  width: 100%;
}
.single-instrument-sale-container .single-instrument-sale-row .back-button-column {
  padding-left: 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) {
  .single-instrument-sale-container .single-instrument-sale-row .back-button-column {
    margin-left: 50px;
    margin-bottom: 40px;
    margin-top: -63px;
  }
}
.single-instrument-sale-container .single-instrument-sale-row .instrument-sales-gallery-row .slick-slide {
  min-height: 300px;
  display: flex;
}
.single-instrument-sale-container .single-instrument-sale-row .instrument-sales-gallery-row img {
  width: calc(100% - 100px);
  height: 100%;
  margin: auto;
  object-fit: cover;
  min-height: 300px;
  max-height: 300px;
}
@media only screen and (max-width: 1199px) {
  .single-instrument-sale-container .single-instrument-sale-row .instrument-sales-gallery-row img {
    width: 100%;
    min-height: 225px;
    max-height: 225px;
  }
}
@media only screen and (max-width: 1199px) {
  .single-instrument-sale-container .single-instrument-sale-row .instrument-sales-gallery-row .slick-arrow i {
    color: white;
  }
}
@media only screen and (min-width: 1401px) {
  .single-instrument-sale-container .single-instrument-sale-row .instrument-sales-gallery-row .slick-next {
    right: 0px;
  }
}
@media only screen and (min-width: 1401px) {
  .single-instrument-sale-container .single-instrument-sale-row .instrument-sales-gallery-row .slick-prev {
    left: 0px;
  }
}
.single-instrument-sale-container .single-instrument-sale-row .single-instrument-content-column h1 {
  margin-bottom: 15px;
}
.single-instrument-sale-container .single-instrument-sale-row .single-instrument-content-column .single-instrument-content-wrapper {
  margin-bottom: 15px;
}
.single-instrument-sale-container .single-instrument-sale-row .single-instrument-content-column .buttons-row {
  width: fit-content;
}
@media only screen and (max-width: 991px) {
  .single-instrument-sale-container .single-instrument-sale-row .single-instrument-content-column .buttons-row {
    width: 100%;
    margin: auto;
  }
}
@media only screen and (max-width: 991px) {
  .single-instrument-sale-container .single-instrument-sale-row .single-instrument-content-column .buttons-row .button-column a {
    display: flex;
  }
}
.single-instrument-sale-container .single-instrument-sale-row .single-instrument-content-column .buttons-row .button-column .link-button {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .single-instrument-sale-container .single-instrument-sale-row .single-instrument-content-column .buttons-row .button-column .link-button {
    margin: 0 auto 15px;
  }
}
.single-company-news-container .single-company-news-row {
  margin: 30px auto;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .single-company-news-container .single-company-news-row {
    max-width: 900px;
    margin: 60px auto 120px;
  }
}
.single-company-news-container .single-company-news-row .single-company-news-column img {
  width: 100%;
  height: auto;
}
.single-company-news-container .single-company-news-row .single-company-news-column .single-company-news-content-wrapper {
  margin: 45px auto 0;
}
@media only screen and (max-width: 991px) {
  .single-company-news-container .single-company-news-row .single-company-news-column .single-company-news-content-wrapper {
    margin: 20px auto 0;
  }
}
.single-company-news-container .single-company-news-row .single-company-news-column .single-company-news-content-wrapper .single-company-news-title {
  margin-bottom: 15px;
}
.single-company-news-container .single-company-news-row .single-company-news-column .single-company-news-content-wrapper .single-company-news-date {
  margin-bottom: 30px;
}
.body-text,
.header-text,
.x-small-text {
  font-family: 'Roboto', sans-serif;
}
.body-text {
  font-weight: 400;
  color: #707070;
}
.x-small-text {
  font-size: 14px;
}
.body-text.small {
  font-size: 20px;
}
@media only screen and (max-width: 991px) {
  .body-text.small {
    font-size: 18px;
  }
}
@media only screen and (max-width: 576px) {
  .body-text.small {
    font-size: 16px;
  }
}
.body-text.medium {
  font-size: 24px;
}
@media only screen and (max-width: 991px) {
  .body-text.medium {
    font-size: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .body-text.medium {
    font-size: 16px;
  }
}
.header-text {
  font-weight: bold;
}
.header-text.large {
  font-size: 48px;
}
@media only screen and (max-width: 991px) {
  .header-text.large {
    font-size: 40px;
  }
}
@media only screen and (max-width: 576px) {
  .header-text.large {
    font-size: 32px;
  }
}
.header-text.medium {
  font-size: 32px;
}
@media only screen and (max-width: 991px) {
  .header-text.medium {
    font-size: 28px;
  }
}
@media only screen and (max-width: 576px) {
  .header-text.medium {
    font-size: 22px;
  }
}
.header-text.small {
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 991px) {
  .header-text.small {
    font-size: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .header-text.small {
    font-size: 16px;
  }
}
footer .footer-container {
  background-color: #333333;
  color: white;
  padding: 60px 0;
}
@media only screen and (max-width: 991px) {
  footer .footer-container {
    padding: 45px 0;
  }
}
footer .footer-container .footer-contact-row {
  padding-bottom: 10px;
}
footer .footer-container .footer-contact-row,
footer .footer-container .copyright-row {
  margin: auto;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  footer .footer-container .footer-contact-row .footer-data,
  footer .footer-container .copyright-row .footer-data {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  footer .footer-container .footer-contact-row .seperator,
  footer .footer-container .copyright-row .seperator {
    display: none;
  }
}
footer .footer-container .footer-contact-row a,
footer .footer-container .copyright-row a {
  color: white;
}
footer .footer-container .footer-contact-row a:hover,
footer .footer-container .copyright-row a:hover {
  opacity: 0.7;
}
.post-password-form {
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-family: 'Roboto', sans-serif;
}
.post-password-form > p:first-of-type {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #333;
  text-align: center;
}
.post-password-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: #444;
}
.post-password-form input[type="password"] {
  margin-top: 0.3rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}
.post-password-form input[type="password"]:focus {
  border-color: #0073aa;
}
.post-password-form input[type="submit"] {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: white;
  background-color: #33A1D9;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
  font-weight: 500;
  width: 100%;
}
.post-password-form input[type="submit"]:hover {
  background-color: #005f8d;
}
.page-id-574 main ul {
  list-style: none;
  padding-left: 0;
  margin: 1em 0;
}
.page-id-574 main ul li {
  position: relative;
  padding-left: 2.2em;
  margin-bottom: 1em;
}
.page-id-574 main ul li a {
  text-decoration: none;
  color: #33A1D9;
  font-weight: 500;
  display: inline-block;
  transition: color 0.2s;
}
.page-id-574 main ul li a:hover {
  color: #0056b3;
}
.page-id-574 main ul li::before {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='%2333A1D9' d='M64 464l48 0 0 48-48 0c-35.3 0-64-28.7-64-64L0 64C0 28.7 28.7 0 64 0L229.5 0c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3L384 304l-48 0 0-144-80 0c-17.7 0-32-14.3-32-32l0-80L64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16zM176 352l32 0c30.9 0 56 25.1 56 56s-25.1 56-56 56l-16 0 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-80c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24l-16 0 0 48 16 0zm96-80l32 0c26.5 0 48 21.5 48 48l0 64c0 26.5-21.5 48-48 48l-32 0c-8.8 0-16-7.2-16-16l0-128c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16l0-64c0-8.8-7.2-16-16-16l-16 0 0 96 16 0zm80-112c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 32 32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 48c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-64 0-64z'/></svg>");
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  display: inline-block;
  transition: all 0.2s ease;
}
.page-id-574 main ul li:hover::before {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path fill='%230056b3' d='M64 464l48 0 0 48-48 0c-35.3 0-64-28.7-64-64L0 64C0 28.7 28.7 0 64 0L229.5 0c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3L384 304l-48 0 0-144-80 0c-17.7 0-32-14.3-32-32l0-80L64 48c-8.8 0-16 7.2-16 16l0 384c0 8.8 7.2 16 16 16zM176 352l32 0c30.9 0 56 25.1 56 56s-25.1 56-56 56l-16 0 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-80c0-8.8 7.2-16 16-16zm32 80c13.3 0 24-10.7 24-24s-10.7-24-24-24l-16 0 0 48 16 0zm96-80l32 0c26.5 0 48 21.5 48 48l0 64c0 26.5-21.5 48-48 48l-32 0c-8.8 0-16-7.2-16-16l0-128c0-8.8 7.2-16 16-16zm32 128c8.8 0 16-7.2 16-16l0-64c0-8.8-7.2-16-16-16l-16 0 0 96 16 0zm80-112c0-8.8 7.2-16 16-16l48 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 32 32 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-32 0 0 48c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-64 0-64z'/></svg>");
}
.container.fire-risk-container {
  margin-top: 4rem;
  margin-bottom: 4rem;
  max-width: 1300px;
}
.container.fire-risk-container p {
  margin-bottom: 4rem;
  margin-top: 1rem;
}
@media screen and (min-width: 1100px) {
  .container.fire-risk-container p {
    width: 90%;
  }
}
@media screen and (min-width: 1300px) {
  .container.fire-risk-container p {
    width: 87%;
  }
}
@media screen and (max-width: 1325px) {
  .container.fire-risk-container h1,
  .container.fire-risk-container p {
    padding-left: 30px;
    padding-right: 30px;
  }
}
body {
  background: white;
}
body a:hover {
  text-decoration: none;
}
main {
  padding-top: 106px;
  min-height: 100vh;
}
@media only screen and (max-width: 991px) {
  main {
    padding-top: 50px;
  }
}
main ul {
  list-style: none;
  padding-left: 0;
}
main ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.75em;
}
main ul li::before {
  content: url("data:image/svg+xml;utf8,<svg fill='%2333A1D9' viewBox='0 0 512 512' width='18' height='18' xmlns='http://www.w3.org/2000/svg'><path d='M173.9 439.4L7 272.5l39.6-39.6 127.3 127.3L465.4 69.7 505 109.3z'/></svg>");
  position: absolute;
  left: 0;
  top: 2px;
}
main a {
  color: #33A1D9;
}
.link-button {
  background-color: #33A1D9;
  font-size: 17px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  width: fit-content;
  border: none;
  font-weight: bold;
  min-width: max-content;
  position: relative;
  overflow: hidden;
  padding: 10px 40px;
  display: block;
}
@media only screen and (max-width: 991px) {
  .link-button {
    justify-content: center;
  }
}
.link-button:hover {
  color: white;
}
.link-button:before {
  position: absolute;
  display: flex;
  align-items: center;
}
.link-button.learn-more {
  -webkit-transition: 0.5s linear left;
}
@media only screen and (min-width: 992px) {
  .link-button.learn-more .button-text {
    visibility: hidden;
  }
}
@media only screen and (min-width: 992px) {
  .link-button.learn-more:before {
    content: '\f072';
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: -30%;
    -webkit-transition: 0.25s linear left;
    font-size: 35px;
    top: 0;
    bottom: 0;
  }
  .link-button.learn-more:after {
    content: "Learn More";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    display: flex;
    justify-content: center;
    bottom: 0;
    top: 0;
    right: 0;
    align-items: center;
    margin-top: 0;
    -webkit-transition: 0.2s linear margin-top;
  }
}
@media only screen and (min-width: 992px) {
  .link-button.download-pdf .download-text {
    visibility: hidden;
  }
}
@media only screen and (min-width: 992px) {
  .link-button.download-pdf:before {
    content: '\f019';
    font-family: "Font Awesome 5 Free";
    position: absolute;
    -webkit-transition: 0.25s linear top;
    font-size: 30px;
    top: -75px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    justify-content: center;
  }
  .link-button.download-pdf:after {
    content: "Download PDF";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    display: flex;
    justify-content: center;
    bottom: 0;
    top: 0;
    right: 0;
    align-items: center;
    margin-top: 0;
    -webkit-transition: 0.25s linear margin-top;
  }
}
@media only screen and (min-width: 992px) {
  .link-button.inquire-button:before {
    content: '\f095';
    font-family: "Font Awesome 5 Free";
    position: absolute;
    font-size: 30px;
    margin: auto;
    justify-content: center;
    opacity: 0;
    -webkit-transition: 0.25s linear opacity;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .link-button.inquire-button .inquire-text {
    opacity: 1;
    -webkit-transition: 0.25s linear opacity;
  }
}
@media only screen and (min-width: 992px) {
  .link-button.learn-more:hover {
    opacity: 1;
    -webkit-transition: 0.5s linear background-image;
  }
  .link-button.learn-more:hover:before {
    -webkit-transition: 0.35s linear left;
    left: calc(50% - 15px);
  }
  .link-button.learn-more:hover:after {
    margin-top: -50px;
    -webkit-transition: 0.20s linear margin-top;
  }
  .link-button.download-pdf:hover {
    -webkit-transition: 0.25s linear top;
  }
  .link-button.download-pdf:hover:before {
    -webkit-transition: 0.25s linear top;
    top: 0;
  }
  .link-button.download-pdf:hover:after {
    margin-top: 75px;
    -webkit-transition: 0.25s linear margin-top;
  }
  .link-button.inquire-button:hover:before {
    opacity: 1;
    -webkit-transition: 0.25s linear opacity;
  }
  .link-button.inquire-button:hover .inquire-text {
    opacity: 0;
    -webkit-transition: 0.25s linear opacity;
  }
}
@media only screen and (min-width: 992px) {
  .link-button.learn-more:focus-within {
    box-shadow: rgba(51,161,217,0.4) -5px 0px, rgba(51,161,217,0.3) -10px 0px, rgba(51,161,217,0.2) -15px 0px, rgba(51,161,217,0.1) -20px 0px, rgba(51,161,217,0.05) -25px 0px;
    -webkit-transition: 0.2s linear box-shadow;
  }
  .link-button.learn-more:focus-within:before {
    -webkit-transition: 0.5s linear left;
    left: calc(100% + 30px);
    background-color: transparent;
  }
  .link-button.learn-more:focus-within:after {
    margin-top: 0;
    -webkit-transition: 0.5s linear margin-top;
  }
}
button:focus,
input:focus,
textarea:focus {
  outline: none;
}
a:hover {
  text-decoration: none;
}
.slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: transparent;
  border: 0;
  font-size: 48px;
  z-index: 2;
}
.slick-arrow i {
  opacity: 0.5;
  color: #174989;
}
.slick-next {
  right: 0;
}
@media only screen and (min-width: 1401px) {
  .slick-next {
    right: -20px;
  }
}
.slick-prev {
  left: 0;
}
@media only screen and (min-width: 1401px) {
  .slick-prev {
    left: -20px;
  }
}
.back-button-column {
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .back-button-column {
    margin-bottom: 30px;
  }
}
.back-button-column .back-link:hover i {
  color: #33A1D9;
}
.back-button-column .back-link i {
  font-size: 32px;
  color: #174989;
}
@media only screen and (max-width: 991px) {
  .back-button-column .back-link i {
    font-size: 26px;
  }
}
.pagination-row {
  width: 100%;
  margin: auto;
  padding: 0 0 50px;
}
@media only screen and (min-width: 992px) {
  .pagination-row {
    margin: 0;
    padding: 0 0 120px;
  }
}
.pagination-row .page-numbers {
  padding: 0 15px;
  color: #33A1D9;
}
.pagination-row .pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-row .pagination-wrapper .paginate-icon {
  font-size: 22px;
  display: block;
  transform: scale(2,1);
}
.pagination-row .pagination-wrapper .current {
  font-weight: 600;
  font-size: 20px;
  color: #174989;
}
