@charset "UTF-8";
.skew-container {
  width: 100%;
  height: 50vh;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.skew-container .box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0198ab;
}

.skew-container .box .img-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.skew-container .box .img-container:after {
  transition-property: background-color;
  transition-duration: 0.5s;
  transition-timing-function: linear;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
}

.skew-container .box:hover .img-container:after {
  background-color: rgba(0, 0, 0, 0.3);
}

.skew-container .box .text-short {
  z-index: 1;
  position: absolute;
  color: #FFF;
}

.skew-container .box .text-short h3 {
  color: #FFFFFF;
  font-size: 4vw;
  text-align: center;
}

.skew-container .box .text-short span {
  font-family: 'Roboto Condensed Light';
  text-decoration: underline;
}

.skew-container .box.box-left {
  transform: skewY(-20deg);
  overflow: hidden;
  top: -25vh;
  bottom: 25vh;
  border-bottom: 10px solid #FFF;
}

.skew-container .box.box-left .img-container {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url(/resource/images/1.jpg) no-repeat;
  background-position: center left;
  background-size: cover;
  transform: skewY(20deg);
  bottom: -25vh;
}

.skew-container .box.box-left .text-short {
  transform: skewY(20deg);
  top: 60%;
}

.skew-container .box.box-right .img-container {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url(/resource/images/2.jpg) no-repeat;
  background-position: center right;
  background-size: cover;
}

.skew-container .box.box-right .text-short {
  bottom: 5%;
}

.slider-container {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  font-size: 0px;
}

.slider-container > * {
  font-size: initial;
}

.slider-container .pages-bg {
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  height: 4rem;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  transition: all 0.25s ease-in-out 0s;
  -webkit-transition: all 0.25s ease-in-out 0s;
}

.slider-container .slider {
  /* set initial width */
  width: calc(50% + 100px);
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-left: -500px;
  border-right: 10px solid #FFFFFF;
  pointer-events: none;
  transform: skewX(-20deg);
  transition-property: width;
  transition-duration: .35s;
  transition-timing-function: ease-in-out;
  -ms-transition-property: width;
  -ms-transition-duration: .35s;
  -ms-transition-timing-function: ease-in-out;
  -webkit-transition-property: width;
  -webkit-transition-duration: .35s;
  -webkit-transition-timing-function: ease-in-out;
}

.slider-container .box {
  width: 100%;
  height: 25vw;
  position: relative;
  right: -200px;
  background-color: #0198ab;
}

.slider-container .box.box-left {
  /* skew back by negative of parent’s skew so contents is upright */
  transform: skewX(20deg);
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url(/resource/images/1.jpg) no-repeat;
  background-position: center left;
  background-size: cover;
  margin-left: 100px;
  pointer-events: auto;
}

.slider-container .box.box-right {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url(/resource/images/2.jpg) no-repeat;
  background-position: center right;
  background-size: cover;
  position: absolute;
  right: 0px;
  width: 90%;
  transition-property: width;
  transition-duration: .35s;
  transition-timing-function: ease-in-out;
  -ms-transition-property: width;
  -ms-transition-duration: .35s;
  -ms-transition-timing-function: ease-in-out;
  -webkit-transition-property: width;
  -webkit-transition-duration: .35s;
  -webkit-transition-timing-function: ease-in-out;
}

.slider-container .slider-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: #FFF;
  pointer-events: none;
}

.slider-container .slider-content .box-content {
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition-property: left, right;
  transition-duration: .35s;
  transition-timing-function: ease-in-out;
  -ms-transition-property: left, right;
  -ms-transition-duration: .35s;
  -ms-transition-timing-function: ease-in-out;
  -webkit-transition-property: left, right;
  -webkit-transition-duration: .35s;
  -webkit-transition-timing-function: ease-in-out;
}

.slider-container .slider-content .box-content.content-left {
  right: 50%;
}

.slider-container .slider-content .box-content.content-left.w100 {
  right: 0px;
}

.slider-container .slider-content .box-content.content-left h3 {
  text-align: left;
  margin-left: 2vw;
}

.slider-container .slider-content .box-content.content-right {
  left: 50%;
}

.slider-container .slider-content .box-content.content-right.w100 {
  left: 0px;
}

.slider-container .slider-content .box-content.content-right h3 {
  text-align: right;
  margin-right: 2vw;
}

.slider-container .slider-content .box-content .text-short h3 {
  color: #FFFFFF;
  font-size: 2vw;
  white-space: nowrap;
  text-shadow: 0px 0px 5px #333;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.slider-container .slider-content .box-content .text-short a {
  pointer-events: all;
}

.slider-container .slider-content .box-content .text-short a.discover {
  margin: 0rem 2rem;
  font-family: 'Roboto Condensed Light';
  background-color: #0198ab;
  white-space: nowrap;
  opacity: 0;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease-in-out 0s;
  -webkit-transition: all 0.25s ease-in-out 0s;
  padding: 1.4rem;
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.25);
}

.slider-container .slider-content .box-content .text-short a.discover * {
  color: #FFFFFF;
}

.slider-container .slider-content .box-content .pages {
  transition: all 0.25s ease-in-out 0s;
  -webkit-transition: all 0.25s ease-in-out 0s;
  position: absolute;
  opacity: 0;
  bottom: -4rem;
  height: 4rem;
  width: 100%;
}

.slider-container .slider-content .box-content .pages .sdpl-wrapper a {
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  color: #EEEEEE;
  text-decoration: none;
  text-shadow: 0px 0px 5px #333;
  white-space: nowrap;
  border-bottom: 4px solid transparent;
}

.slider-container .slider-content .box-content .pages .sdpl-wrapper a span {
  padding-bottom: 3px;
}

.slider-container .slider-content .box-content .pages .sdpl-wrapper a:hover {
  color: #FFFFFF;
  border-bottom: 4px solid #0198ab;
}

.slider-container .slider-content .box-content .pages .sdpl-wrapper a md-icon {
  color: #FFFFFF;
  line-height: 1.2;
}

.slider-container .slider-content .box-content.content-left .pages {
  left: 0px;
}

.slider-container .slider-content .box-content.content-left .pages .sdpl-wrapper {
  margin-right: 1rem;
}

.slider-container .slider-content .box-content.content-right .pages {
  right: 0px;
}

.slider-container .slider-content .box-content.content-right .pages .sdpl-wrapper {
  margin-left: 1rem;
}

.slider-container .slider-content .box-content.maxi.content-left {
  right: 0px;
}

.slider-container .slider-content .box-content.maxi.content-right {
  left: 0px;
}

.slider-container .slider-content .box-content.maxi h3 {
  font-size: 2.5vw;
  margin: 0px;
}

.slider-container .slider-content .box-content.maxi a.discover {
  opacity: 1;
  transition: all 0.25s ease-in-out 0.5s;
  -webkit-transition: all 0.25s ease-in-out 0.5s;
}

.slider-container .slider-content .box-content.maxi .pages {
  bottom: 0rem;
  opacity: 1;
  transition: all 0.25s ease-in-out 0.5s;
  -webkit-transition: all 0.25s ease-in-out 0.5s;
}
.section-claim-dark {
  margin-top: 2rem;
}

.section-claim-dark .section {
  position: relative;
  background-color: #AAAAAA;
  padding: 2rem;
}

.section-claim-dark .section .section-bg-image {
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

.section-claim-dark .section .section-content-wrapper {
  z-index: 1;
  color: #FFFFFF;
}

.section-claim-dark .section .section-content-wrapper .section-content {
  padding: 2rem;
}

.section-claim-dark .section .section-content-wrapper .section-content .header {
  font-weight: normal;
  font-size: 220%;
}

.section-claim-dark .section .section-content-wrapper .section-content p {
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.section-claim-dark .section .section-content-wrapper .section-link {
  padding: 2rem;
}

.section-claim-dark .section .section-content-wrapper .section-link .md-button {
  margin: 0px;
  padding: 1rem 1.5rem;
  line-height: 1.7;
}

.section-claim-dark .section .section-content-wrapper .section-link .md-button small {
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.section-claim-dark .section .section-content-wrapper .section-link .md-button md-icon {
  margin-left: 1rem;
  line-height: 0.9;
}
body .swiper-container.home-slider .swiper-slide {
  text-align: left;
}
.swiper-container.home-slider .hs-section-wrapper {
  padding: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section {
  background-color: #F0F0F0;
  transition: background-color .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image {
  overflow: hidden;
  font-size: 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image img {
  transition: transform .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content {
  padding: 1rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
  margin: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p:not(:empty) + p {
  margin-top: 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content .color-line {
  transition: all .5s ease;
  position: absolute;
  width: 50%;
  left: 0px;
  right: 0px;
  height: 3px;
  top: -2px;
  background-color: #0098aa;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button {
  margin: 1rem 0px 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button span, .swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  line-height: 1;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button md-icon {
  line-height: 1;
  margin: 0px 0px 0px 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover {
  background-color: #F7F7F7;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-header-image img {
  transform: scale(1.2);
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-content .color-line {
  margin-left: 25%;
}
.swiper-container.home-slider .hs-section-wrapper {
  padding: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section {
  background-color: #F0F0F0;
  transition: background-color .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image {
  overflow: hidden;
  font-size: 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image img {
  transition: transform .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content {
  padding: 1rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
  margin: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p:not(:empty) + p {
  margin-top: 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content .color-line {
  transition: all .5s ease;
  position: absolute;
  width: 50%;
  left: 0px;
  right: 0px;
  height: 3px;
  top: -2px;
  background-color: #0098aa;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button {
  margin: 1rem 0px 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button span, .swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  line-height: 1;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button md-icon {
  line-height: 1;
  margin: 0px 0px 0px 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover {
  background-color: #F7F7F7;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-header-image img {
  transform: scale(1.2);
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-content .color-line {
  margin-left: 25%;
}
.swiper-container.home-slider .hs-section-wrapper {
  padding: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section {
  background-color: #F0F0F0;
  transition: background-color .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image {
  overflow: hidden;
  font-size: 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image img {
  transition: transform .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content {
  padding: 1rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
  margin: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p:not(:empty) + p {
  margin-top: 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content .color-line {
  transition: all .5s ease;
  position: absolute;
  width: 50%;
  left: 0px;
  right: 0px;
  height: 3px;
  top: -2px;
  background-color: #0098aa;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button {
  margin: 1rem 0px 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button span, .swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  line-height: 1;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button md-icon {
  line-height: 1;
  margin: 0px 0px 0px 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover {
  background-color: #F7F7F7;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-header-image img {
  transform: scale(1.2);
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-content .color-line {
  margin-left: 25%;
}
.swiper-container.home-slider .hs-section-wrapper {
  padding: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section {
  background-color: #F0F0F0;
  transition: background-color .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image {
  overflow: hidden;
  font-size: 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image img {
  transition: transform .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content {
  padding: 1rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
  margin: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p:not(:empty) + p {
  margin-top: 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content .color-line {
  transition: all .5s ease;
  position: absolute;
  width: 50%;
  left: 0px;
  right: 0px;
  height: 3px;
  top: -2px;
  background-color: #0098aa;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button {
  margin: 1rem 0px 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button span, .swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  line-height: 1;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button md-icon {
  line-height: 1;
  margin: 0px 0px 0px 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover {
  background-color: #F7F7F7;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-header-image img {
  transform: scale(1.2);
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-content .color-line {
  margin-left: 25%;
}
.swiper-container.home-slider .hs-section-wrapper {
  padding: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section {
  background-color: #F0F0F0;
  transition: background-color .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image {
  overflow: hidden;
  font-size: 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image img {
  transition: transform .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content {
  padding: 1rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
  margin: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p:not(:empty) + p {
  margin-top: 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content .color-line {
  transition: all .5s ease;
  position: absolute;
  width: 50%;
  left: 0px;
  right: 0px;
  height: 3px;
  top: -2px;
  background-color: #0098aa;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button {
  margin: 1rem 0px 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button span, .swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  line-height: 1;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button md-icon {
  line-height: 1;
  margin: 0px 0px 0px 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover {
  background-color: #F7F7F7;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-header-image img {
  transform: scale(1.2);
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-content .color-line {
  margin-left: 25%;
}
.swiper-container.home-slider .hs-section-wrapper {
  padding: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section {
  background-color: #F0F0F0;
  transition: background-color .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image {
  overflow: hidden;
  font-size: 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image img {
  transition: transform .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content {
  padding: 1rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
  margin: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p:not(:empty) + p {
  margin-top: 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content .color-line {
  transition: all .5s ease;
  position: absolute;
  width: 50%;
  left: 0px;
  right: 0px;
  height: 3px;
  top: -2px;
  background-color: #0098aa;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button {
  margin: 1rem 0px 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button span, .swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  line-height: 1;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button md-icon {
  line-height: 1;
  margin: 0px 0px 0px 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover {
  background-color: #F7F7F7;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-header-image img {
  transform: scale(1.2);
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-content .color-line {
  margin-left: 25%;
}
.swiper-container.home-slider .hs-section-wrapper {
  padding: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section {
  background-color: #F0F0F0;
  transition: background-color .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image {
  overflow: hidden;
  font-size: 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image img {
  transition: transform .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content {
  padding: 1rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
  margin: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p:not(:empty) + p {
  margin-top: 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content .color-line {
  transition: all .5s ease;
  position: absolute;
  width: 50%;
  left: 0px;
  right: 0px;
  height: 3px;
  top: -2px;
  background-color: #0098aa;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button {
  margin: 1rem 0px 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button span, .swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  line-height: 1;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button md-icon {
  line-height: 1;
  margin: 0px 0px 0px 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover {
  background-color: #F7F7F7;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-header-image img {
  transform: scale(1.2);
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-content .color-line {
  margin-left: 25%;
}
.swiper-container.home-slider .hs-section-wrapper {
  padding: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section {
  background-color: #F0F0F0;
  transition: background-color .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image {
  overflow: hidden;
  font-size: 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image img {
  transition: transform .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content {
  padding: 1rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
  margin: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p:not(:empty) + p {
  margin-top: 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content .color-line {
  transition: all .5s ease;
  position: absolute;
  width: 50%;
  left: 0px;
  right: 0px;
  height: 3px;
  top: -2px;
  background-color: #0098aa;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button {
  margin: 1rem 0px 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button span, .swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  line-height: 1;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button md-icon {
  line-height: 1;
  margin: 0px 0px 0px 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover {
  background-color: #F7F7F7;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-header-image img {
  transform: scale(1.2);
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-content .color-line {
  margin-left: 25%;
}
.swiper-container.home-slider .hs-section-wrapper {
  padding: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section {
  background-color: #F0F0F0;
  transition: background-color .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image {
  overflow: hidden;
  font-size: 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-header-image img {
  transition: transform .5s ease;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content {
  padding: 1rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
  margin: 0rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content p:not(:empty) + p {
  margin-top: 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-content .color-line {
  transition: all .5s ease;
  position: absolute;
  width: 50%;
  left: 0px;
  right: 0px;
  height: 3px;
  top: -2px;
  background-color: #0098aa;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button {
  margin: 1rem 0px 0px;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button span, .swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  line-height: 1;
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button small {
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.swiper-container.home-slider .hs-section-wrapper .section .section-link .md-button md-icon {
  line-height: 1;
  margin: 0px 0px 0px 0.5rem;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover {
  background-color: #F7F7F7;
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-header-image img {
  transform: scale(1.2);
}

.swiper-container.home-slider .hs-section-wrapper .section:hover .section-content .color-line {
  margin-left: 25%;
}
.section-claim-dark {
  margin-top: 2rem;
}

.section-claim-dark .section {
  position: relative;
  background-color: #AAAAAA;
  padding: 2rem;
}

.section-claim-dark .section .section-bg-image {
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

.section-claim-dark .section .section-content-wrapper {
  z-index: 1;
  color: #FFFFFF;
}

.section-claim-dark .section .section-content-wrapper .section-content {
  padding: 2rem;
}

.section-claim-dark .section .section-content-wrapper .section-content .header {
  font-weight: normal;
  font-size: 220%;
}

.section-claim-dark .section .section-content-wrapper .section-content p {
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.section-claim-dark .section .section-content-wrapper .section-link {
  padding: 2rem;
}

.section-claim-dark .section .section-content-wrapper .section-link .md-button {
  margin: 0px;
  padding: 1rem 1.5rem;
  line-height: 1.7;
}

.section-claim-dark .section .section-content-wrapper .section-link .md-button small {
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.section-claim-dark .section .section-content-wrapper .section-link .md-button md-icon {
  margin-left: 1rem;
  line-height: 0.9;
}
.section-wrapper {
  padding: 1rem;
}

.section-wrapper .section {
  background-color: #F0F0F0;
  transition: background-color .5s ease;
}

.section-wrapper .section .section-header-image {
  overflow: hidden;
  font-size: 0px;
}

.section-wrapper .section .section-header-image img {
  transition: transform .5s ease;
}

.section-wrapper .section .section-content {
  padding: 2rem;
}

.section-wrapper .section .section-content p {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
}

.section-wrapper .section .section-content .color-line {
  transition: all .5s ease;
  position: absolute;
  width: 50%;
  left: 0px;
  right: 0px;
  height: 3px;
  top: -2px;
  background-color: #0098aa;
}

.section-wrapper .section .section-link {
  padding-top: 1rem;
}

.section-wrapper .section .section-link .md-button {
  margin: 0px;
  padding: 1rem 1.5rem;
  line-height: 1.7;
}

.section-wrapper .section .section-link .md-button small {
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.section-wrapper .section .section-link .md-button md-icon {
  margin-left: 1rem;
  line-height: 0.9;
}

.section-wrapper .section:hover {
  background-color: #F7F7F7;
}

.section-wrapper .section:hover .section-header-image img {
  transform: scale(1.2);
}

.section-wrapper .section:hover .section-content .color-line {
  margin-left: 25%;
}
.section-wrapper {
  padding: 1rem;
}

.section-wrapper .section {
  background-color: #F0F0F0;
  transition: background-color .5s ease;
}

.section-wrapper .section .section-header-image {
  overflow: hidden;
  font-size: 0px;
}

.section-wrapper .section .section-header-image img {
  transition: transform .5s ease;
}

.section-wrapper .section .section-content {
  padding: 2rem;
}

.section-wrapper .section .section-content p {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
}

.section-wrapper .section .section-content .color-line {
  transition: all .5s ease;
  position: absolute;
  width: 50%;
  left: 0px;
  right: 0px;
  height: 3px;
  top: -2px;
  background-color: #0098aa;
}

.section-wrapper .section .section-link {
  padding-top: 1rem;
}

.section-wrapper .section .section-link .md-button {
  margin: 0px;
  padding: 1rem 1.5rem;
  line-height: 1.7;
}

.section-wrapper .section .section-link .md-button small {
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.section-wrapper .section .section-link .md-button md-icon {
  margin-left: 1rem;
  line-height: 0.9;
}

.section-wrapper .section:hover {
  background-color: #F7F7F7;
}

.section-wrapper .section:hover .section-header-image img {
  transform: scale(1.2);
}

.section-wrapper .section:hover .section-content .color-line {
  margin-left: 25%;
}
.section-claim-dark {
  margin-bottom: 2rem;
}

.section-claim-dark .section {
  position: relative;
  background-color: #AAAAAA;
  padding: 2rem;
}

.section-claim-dark .section .section-bg-image {
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

.section-claim-dark .section .section-content-wrapper {
  z-index: 1;
  color: #FFFFFF;
}

.section-claim-dark .section .section-content-wrapper .section-content {
  padding: 2rem;
}

.section-claim-dark .section .section-content-wrapper .section-content .header {
  font-weight: normal;
  font-size: 220%;
}

.section-claim-dark .section .section-content-wrapper .section-content p {
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.section-claim-dark .section .section-content-wrapper .section-link {
  padding: 2rem;
}

.section-claim-dark .section .section-content-wrapper .section-link .md-button {
  margin: 0px;
  padding: 1rem 1.5rem;
  line-height: 1.7;
}

.section-claim-dark .section .section-content-wrapper .section-link .md-button small {
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.section-claim-dark .section .section-content-wrapper .section-link .md-button md-icon {
  margin-left: 1rem;
  line-height: 0.9;
}
.section-gal-wrapper {
  padding: 1rem;
}

.section-gal-wrapper .section-gal {
  background-color: #F0F0F0;
  transition: background-color .5s ease;
}

.section-gal-wrapper .section-gal .slider-wrapper .slider-bg {
  background-color: #FFFFFF;
}

.section-gal-wrapper .section-gal .slider-wrapper .swiper-container {
  padding-bottom: 0px;
}

.section-gal-wrapper .section-gal .slider-wrapper .swiper-container .swiper-pagination {
  bottom: 1rem;
}

.section-gal-wrapper .section-gal .gal-slider {
  font-size: 0px;
}

.section-gal-wrapper .section-gal .section-content {
  padding: 2rem;
}

.section-gal-wrapper .section-gal .section-content p {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
}

.section-gal-wrapper .section-gal .section-content .color-line {
  transition: all .5s ease;
  position: absolute;
  width: 50%;
  left: 0px;
  right: 0px;
  height: 3px;
  top: -2px;
  background-color: #0098aa;
}

.section-gal-wrapper .section-gal .section-link .md-button {
  margin: 1rem 0px 0px;
  padding: 0.5rem 1.5rem;
}

.section-gal-wrapper .section-gal .section-link .md-button md-icon {
  line-height: 0.9;
}

.section-gal-wrapper .section-gal:hover {
  background-color: #F7F7F7;
}

.section-gal-wrapper .section-gal:hover .section-content .color-line {
  margin-left: 25%;
}
.section-claim-light {
  margin-bottom: 2rem;
}

.section-claim-light .section {
  position: relative;
  background-color: #F0F0F0;
  padding: 2rem;
}

.section-claim-light .section .section-bg-image {
  -webkit-filter: grayscale(100%) opacity(20%);
  filter: grayscale(100%) opacity(20%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

.section-claim-light .section .section-content-wrapper {
  z-index: 1;
  color: #666666;
}

.section-claim-light .section .section-content-wrapper .section-content {
  padding: 2rem;
}

.section-claim-light .section .section-content-wrapper .section-content .header {
  font-weight: normal;
  font-size: 220%;
}

.section-claim-light .section .section-content-wrapper .section-content p {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.55);
}

.section-claim-light .section .section-content-wrapper .section-link {
  padding: 2rem;
}

.section-claim-light .section .section-content-wrapper .section-link .md-button {
  margin: 0px;
  padding: 1rem 1.5rem;
  line-height: 1.7;
}

.section-claim-light .section .section-content-wrapper .section-link .md-button small {
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
}

.section-claim-light .section .section-content-wrapper .section-link .md-button md-icon {
  margin-left: 1rem;
  line-height: 0.9;
}
