@charset "UTF-8";

body {
  -webkit-font-smoothing: antialiased;
  -webkit-speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Canaro", Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 300;
  color: #282a2e;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
}

body.home {
  overflow: hidden;
}

html,
body {
  min-height: 100vh;
}

.common-wrapper {
  padding: 30px 80px;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 25px 7.8%;
  z-index: 1000;
}

header a.hvr::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  background-color: rgba(231, 244, 248, 0.2);
  border-radius: 5px;
  padding: 20px 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header a.hvr.activeX::after, header a.hvr.active::after, header a.hvr:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

header .canvas-menu .custom-nav {
  position: relative;
}

header .canvas-menu .custom-nav .nav-link {
  line-height: 100%;
  font-weight: 600;
  color: #fff;
  padding: 0 15px;
  position: relative;
}

header .canvas-menu .custom-nav .nav-item .dd-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
  padding-top: 20px;
}

header .canvas-menu .custom-nav .nav-item .dd-menu .dd-menu-sub {
  padding-top: 20px;
  border-top: 1px solid #fff;
}

header .canvas-menu .custom-nav .nav-item .dd-menu .dd-menu-sub ul li {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

header .canvas-menu .custom-nav .nav-item .dd-menu .dd-menu-sub ul li .icon {
  font-size: 38px;
  vertical-align: middle;
}

header .canvas-menu .custom-nav .nav-item .dd-menu .dd-menu-sub ul li .icon::before {
  color: #fff;
}

header .canvas-menu .custom-nav .nav-item .dd-menu .dd-menu-sub ul li .icon.icon-catalog {
  font-size: 28px;
}

header .canvas-menu .custom-nav .nav-item .dd-menu .dd-menu-sub ul li .icon.icon-location-line {
  font-size: 32px;
}

header .canvas-menu .custom-nav .nav-item .dd-menu .dd-menu-sub ul li a {
  line-height: 100%;
  display: inline-block;
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  white-space: nowrap;
}

header .canvas-menu .custom-nav .nav-item.is-dropdown:hover .dd-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: all;
}

header .canvas-menu .custom-nav .nav-item.is-dropdown:hover .dd-menu ul li {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

header .canvas-menu .custom-nav .nav-item.is-dropdown:hover .dd-menu ul li:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

header .canvas-menu .custom-nav .nav-item.is-dropdown:hover .dd-menu ul li:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

header .canvas-menu .custom-nav .nav-item.is-dropdown:hover .dd-menu ul li:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

header .canvas-menu .custom-nav .nav-item.is-dropdown:hover .dd-menu ul li:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

header .canvas-menu .custom-nav .nav-item.is-dropdown:hover .dd-menu ul li:nth-child(6) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

header .canvas-menu .phone {
  line-height: 17px;
  color: #fff !important;
  font-size: 25px;
  font-weight: 700;
  position: relative;
}

header .canvas-menu .phone span.icon {
  font-size: 44px;
  position: relative;
  top: 15px;
}

header .canvas-menu .phone span.icon::before {
  color: #fff;
}

header .canvas-menu .phone span.small {
  font-size: 17px;
}

header .canvas-menu .phone::after {
  top: 35px;
  width: calc(100% + 10px);
  height: calc(100% + 5px);
}

header.hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

header.fixed-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, 0.1) !important;
}

header.fixed-header .menu-toggle span,
header.fixed-header .menu-toggle::before,
header.fixed-header .menu-toggle::after {
  background-color: #073b72;
}

header.fixed-header .canvas-menu:not(.show) .custom-nav {
  margin-bottom: 11px;
}

header.fixed-header .canvas-menu:not(.show) .custom-nav .nav-link {
  color: #073b72;
}

header.fixed-header .canvas-menu:not(.show) .custom-nav .nav-link::after {
  background: rgba(0, 124, 255, 0.1);
}

header.fixed-header .canvas-menu:not(.show) .custom-nav .dd-menu a {
  color: #073b72 !important;
}

header.fixed-header .canvas-menu:not(.show) .custom-nav .dd-menu a .icon::before {
  color: #073b72 !important;
}

header.fixed-header .canvas-menu:not(.show) .phone {
  margin-bottom: 11px;
  color: #073b72 !important;
}

header.fixed-header .canvas-menu:not(.show) .phone .icon::before {
  color: #073b72;
}

header.fixed-header .canvas-menu:not(.show) .phone:hover::after {
  background: rgba(0, 124, 255, 0.1);
}

header.fixed-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 80px;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

header.fixed-header.show-overlay::before {
  opacity: 1;
  visibility: visible;
}

section.sections .slide-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 100vh;
  background-color: #889bbe;
}

section.sections .slide-wrapper .swiper-container {
  width: 100%;
  height: 100%;
}

section.sections .slide-wrapper .swiper-slide {
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

section.sections .slide-wrapper .swiper-slide .column {
  max-width: 50%;
}

section.sections .slide-wrapper .swiper-slide .column.after-shadow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
  background-color: rgba(136, 155, 190, 0.1);
  z-index: -1;
}

section.sections .slide-wrapper .swiper-slide .slide-bg {
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 16;
}

section.sections .slide-wrapper .swiper-slide .slide-bg .slide-img {
  position: relative;
  z-index: 15;
  overflow: hidden;
  width: 100%;
}

section.sections .slide-wrapper .swiper-slide .slide-bg .slide-img img {
  height: 32.5vw;
  margin-bottom: 8.5vh;
}

section.sections .slide-wrapper .swiper-slide .slide-bg .slide-title {
  position: absolute;
  left: 0;
  bottom: 24vw;
  width: 100%;
  z-index: 14;
}

section.sections .slide-wrapper .swiper-slide .slide-bg .slide-title .titles {
  font-size: 7vw;
  color: #a7b5d0;
  font-weight: 900;
}

section.sections .slide-wrapper .swiper-slide .slide-bg .slide-title .titles .first {
  color: #c9d3d8;
}

section.sections .slide-wrapper .swiper-slide .slide-bg .slide-title .titles .last {
  padding-left: 8vw;
  padding-right: 8vw;
}

section.sections .slide-wrapper .swiper-slide .slide-bg .slide-title .desc {
  position: absolute;
  bottom: -15px;
  right: 20.2vw;
  font-weight: 600;
  font-size: 1.2vw;
  font-style: italic;
  text-align: right;
  line-height: 100%;
}

section.sections .slide-wrapper .swiper-slide.swiper-slide-active .caption {
  -webkit-animation: 0.5s 0.1s fadeInUp ease both;
          animation: 0.5s 0.1s fadeInUp ease both;
}

section.sections .slide-wrapper .swiper-slide.swiper-slide-active .packet {
  -webkit-animation: 0.5s 0.2s fadeInDown ease both;
          animation: 0.5s 0.2s fadeInDown ease both;
}

section.sections .why-waterlife .water-dispenser {
  padding: 3% 0;
}

section.sections .why-waterlife .water-dispenser .features ul li {
  color: #073b72;
  font-weight: 500;
}

section.sections .why-waterlife .water-dispenser .features ul li .title {
  display: inline-block;
}

section.sections .why-waterlife .water-dispenser .features ul li .icon-wrap {
  border: 4px solid #7da7d9;
  display: inline-block;
  min-width: 85px;
  min-height: 85px;
  border-radius: 100%;
  font-size: 45px;
  position: relative;
  margin-right: 60px;
}

section.sections .why-waterlife .water-dispenser .features ul li .icon-wrap::before, section.sections .why-waterlife .water-dispenser .features ul li .icon-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: #7da7d9;
}

section.sections .why-waterlife .water-dispenser .features ul li .icon-wrap::before {
  right: calc(-100% - 25px);
  margin-top: -6px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

section.sections .why-waterlife .water-dispenser .features ul li .icon-wrap::after {
  right: calc(-100% - 10px);
  margin-top: -2px;
  width: 100%;
  height: 2px;
}

section.sections .why-waterlife .water-dispenser .features.line-left ul li .icon-wrap {
  margin-left: 60px;
  margin-right: 0%;
}

section.sections .why-waterlife .water-dispenser .features.line-left ul li .icon-wrap::before {
  left: calc(-100% - 25px);
}

section.sections .why-waterlife .water-dispenser .features.line-left ul li .icon-wrap::after {
  left: calc(-100% - 10px);
}

section.sections .waterlife-products {
  background: url(/App_Themes/Waterlife/images/waterlife-products-bg.png) no-repeat center center;
  background-size: contain;
}

section.sections .waterlife-products .boxes {
  margin-top: 3em;
}

section.sections .waterlife-products .boxes .box {
  display: block;
}

section.sections .waterlife-products .boxes .box .photo {
  max-width: 320px;
  max-height: 320px;
  width: 100%;
  overflow: hidden;
  border: 100%;
  position: relative;
}

section.sections .waterlife-products .boxes .box .photo::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 3px solid #fff;
  border-radius: 100%;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  z-index: 99;
}

section.sections .waterlife-products .boxes .box .title {
  color: #073b72;
  font-weight: 500;
}

section.sections .waterlife-products .boxes .box .title .big {
  font-size: 35px;
  font-weight: 600;
}

section.sections .waterlife-products .boxes .box:hover .photo::before {
  border-color: #2dade2;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
}

section.sections .waterlife-products .boxes .box:hover .photo img {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}

section.sections .waterlife-products .boxes [class*="col-"]:nth-child(2) {
  margin-top: 70px;
}

section.sections .waterlife-tabs .tabs {
  padding-top: 2%;
}

section.sections .waterlife-tabs .tabs .title {
  font-size: 20px;
  font-weight: 600;
  color: #073b72;
}

section.sections .waterlife-tabs .tabs .nav-pills a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  font-weight: 600;
  color: #073b72;
  padding: 0;
  margin-bottom: 15px;
}

section.sections .waterlife-tabs .tabs .nav-pills a:last-child {
  margin-bottom: 0;
}

section.sections .waterlife-tabs .tabs .nav-pills a.active {
  background-color: transparent;
  color: #2dade2;
}

section.sections .waterlife-tabs .tabs .tab-pane .column {
  border-left: 1px solid #cccdd0;
  height: calc(100% - 46px);
}

section.sections .waterlife-tabs .tabs .tab-pane .column .supported-icon {
  margin: 0 auto;
}

section.sections .waterlife-tabs .column-p {
  padding: 2em 0;
  border-top: 1px solid #cccdd0;
  border-bottom: 1px solid #cccdd0;
}

section.sections .water-filters {
  margin-top: 68px;
}

section.sections .water-filters .c-padding {
  padding-bottom: 7%;
}

section.sections .water-filters .head {
  padding: 1.5% 0;
  background: url(/App_Themes/Waterlife/images/water-filter-head-bg.png) no-repeat center center/cover;
}

section.sections .water-filters .nav-pills li a {
  padding: 0;
  height: 166px;
  display: block;
  position: relative;
}

section.sections .water-filters .nav-pills li a img {
  max-height: 166px;
}

section.sections .water-filters .nav-pills li a::before, section.sections .water-filters .nav-pills li a::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  left: 50%;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

section.sections .water-filters .nav-pills li a::before {
  top: 50%;
  width: 110px;
  height: 110px;
  background-color: #e4f4e5;
  border-radius: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
}

section.sections .water-filters .nav-pills li a::after {
  width: 50px;
  height: 12px;
  background-color: #000;
  bottom: -35px;
  left: 50%;
  margin-left: -25px;
  border-radius: 100%;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0.1;
}

section.sections .water-filters .nav-pills li a:hover::after {
  opacity: 0.3;
}

section.sections .water-filters .nav-pills li a.active {
  background-color: transparent;
}

section.sections .water-filters .nav-pills li a.active::before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

section.sections .water-filters .tab-content {
  color: #073b72;
}

section.sections .water-filters .tab-content .photo {
  position: relative;
  min-height: 540px;
}

section.sections .water-filters .tab-content .photo::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  width: 150px;
  height: 12px;
  background-color: #000;
  bottom: -40px;
  left: 50%;
  margin-left: -75px;
  border-radius: 100%;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  opacity: 0.15;
}

section.sections .water-filters .tab-content .photo img {
  max-width: 135px;
}

section.sections .water-filters .tab-content .title {
  font-size: 18px;
}

section.sections .water-filters .tab-content .title .big {
  font-size: 26px;
  font-weight: 700;
}

section.sections .water-filters .tab-content .desc-box {
  background: url(/App_Themes/Waterlife/images/water-filter-desc-bg.png) no-repeat right center/100%;
  width: 430px;
  height: 465px;
}

section.sections .water-filters .tab-content .desc-box .desc {
  font-size: 18px;
  font-weight: 600;
  margin-top: 65px;
  margin: 65px 0 0 -35px;
  max-width: 284px;
  overflow: hidden;
}

section.sections .water-filters .tab-content .tab-pane {
  -webkit-transition: 0.3s ease-in-out !important;
  transition: 0.3s ease-in-out !important;
  -webkit-transform: translateX(3%);
          transform: translateX(3%);
}

section.sections .water-filters .tab-content .tab-pane.show {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

section.sections .statistics {
  position: relative;
}

section.sections .statistics::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(/App_Themes/Waterlife/images/statistics-bg.png) no-repeat left bottom/contain;
}

section.sections .statistics .count-boxes .boxes {
  margin: 15% 0;
}

section.sections .statistics .count-boxes .box {
  font-size: 18px;
  font-weight: 600;
  color: #565e60;
}

section.sections .statistics .count-boxes .box .counter {
  font-size: 90px;
  color: #2dade2;
  font-weight: 700;
  line-height: 100%;
}

section.sections .statistics .links a {
  min-width: 120px;
  font-weight: 600;
  color: #565e60;
  margin-right: 15px;
}

section.sections .statistics .links a .icon-wrap {
  width: 60px;
  height: 60px;
  border: 1px solid #707070;
  border-radius: 100%;
  font-size: 25px;
}

section.sections .statistics .links a .icon-wrap::before {
  color: #565e60;
}

section.sections .statistics .links a:hover .icon-wrap {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

section.sections .home-news .swiper-slide-active {
  position: relative;
  z-index: 99;
}

section.sections .home-news .body .date {
  font-size: 20px;
  font-weight: 700;
  color: #073b72;
}

section.sections .home-news .body .title {
  font-size: 30px;
  font-weight: 600;
}

.mobile-app .box {
  width: 100%;
  position: relative;
  background: #91c72c;
}

.mobile-app .box::before {
  z-index: -1;
  content: "";
  z-index: 9;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(/App_Themes/Waterlife/images/mobile-app-left-bg.png) no-repeat left 20%/70%;
}

.mobile-app .box:last-child {
  background: none;
}

.mobile-app .box:last-child::before {
  background: #ebeaea url(/App_Themes/Waterlife/images/mobile-app-right-bg.png) no-repeat right bottom/60%;
}

.mobile-app .box .body {
  padding: 0 20% 20% 0;
  position: relative;
  z-index: 11;
}

.mobile-app .box .body .shared-btn {
  margin-top: 7vh;
  padding: 13px 30px;
}

.mobile-app .box .body.right {
  padding: 0 0 20% 40px;
}

.mobile-app .box .body.right .links {
  margin-top: 15vh;
}

.section-title {
  color: #073b72;
  font-size: 25px;
  line-height: 100%;
}

.section-title .big {
  font-size: 45px;
  font-weight: 500;
  line-height: 100%;
}

.section-title .big-title {
  position: relative;
  padding: 36px 0;
  border-bottom: 1px solid #f2f4f8;
}

.section-title .big-title h1 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.section-title .big-title h1::after {
  content: attr(data-text);
  position: absolute;
  left: 0%;
  top: 0%;
  color: #f2f4f8;
  font-size: 70px;
  font-weight: 900;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.section-title.white {
  color: #fff;
}

.footer {
  background-color: #1290bb;
}

.footer .footer-head {
  width: 100%;
  padding: 15px;
  background: #2dade3;
  background: linear-gradient(126deg, #2dade3 0%, #04254e 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.footer .footer-head .big {
  font-size: 25px;
  font-weight: 600;
}

.footer .footer-head .shared-btn {
  padding-left: 20px;
  padding-right: 20px;
}

.footer .footer-head .shared-btn .icon {
  font-size: 25px;
  vertical-align: middle;
}

.footer .body {
  padding: 3% 0;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}

.footer .body .title {
  font-weight: 900;
}

.footer .body .title.small {
  font-size: 14px;
  font-weight: 700;
}

.footer .body a {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer .body a:hover {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

.footer .body a:not(.title) {
  margin-bottom: 5px;
}

.footer .body .infos .icon-wrap {
  min-width: 30px;
  min-height: 30px;
  border: 1px solid #fff;
  border-radius: 100%;
  margin-top: 5px;
}

.footer .body .infos .icon-wrap .icon.small {
  font-size: 12px;
}

.footer .footer-end {
  padding: 20px 0;
  background-color: #fff;
  font-weight: 500;
  color: #073b72;
}

.footer .footer-end a {
  color: #073b72;
}

section.contents .pages {
  background-color: #fff;
}

section.contents .pages .waves-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 9;
}

section.contents .pages .page-navigation {
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  min-height: 400px;
  position: relative;
}

section.contents .pages .page-navigation .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #e3f0ff;
  opacity: 0.85;
  z-index: 1;
}

section.contents .pages .page-navigation .desc {
  position: relative;
  z-index: 10;
  height: 200px;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 100%;
  max-width: 530px;
  margin-top: 20vw;
  margin-bottom: 7vw;
}

section.contents .pages .page-navigation .desc .desc-in {
  position: relative;
}

section.contents .pages .page-navigation .desc .desc-in::after {
  content: "";
  width: 160px;
  height: 160px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  position: absolute;
  right: -5vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

section.contents .pages .page-navigation .desc .desc-in.circle-left::after {
  left: -5vw;
  right: auto;
}

section.contents .pages .page-body {
  position: relative;
  z-index: 20;
}

section.contents .pages .page-body .page-title {
  position: relative;
  font-size: 30px;
  font-weight: 600;
  color: #073b72;
  line-height: 100%;
}

section.contents .pages .page-body .page-title span {
  display: inline-block;
  position: relative;
  z-index: 5;
}

section.contents .pages .page-body .page-title::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background-color: #e4f4e5;
  position: absolute;
  left: -3vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  z-index: -1;
}

section.contents .pages .page-body .page-title.right::before {
  left: auto;
  right: -3vw;
}

section.contents .pages .page-body .page-title.blue::before {
  background-color: #e7f4f8;
}

section.contents .pages .page-body .page-title.small-title {
  font-size: 19px;
  font-weight: 500;
  color: #000;
}

section.contents .pages .page-body .page-title.small-title::before {
  width: 60px;
  height: 60px;
}

section.contents .pages .page-body .page-title.small-title.right::before {
  right: -1.5vw;
}

section.contents .pages .page-body .page-title.icons::before {
  left: 1.4vw;
}

section.contents .pages .page-body .page-title.icons .icon {
  margin-right: 40px;
  font-size: 65px;
}

section.contents .pages .page-body .page-title.icons .icon::before {
  color: #073b72;
}

section.contents .pages .page-body .page-sub-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  color: #073b72;
}

section.contents .pages .page-body .page-photo-box {
  max-width: 540px;
  overflow: hidden;
  position: relative;
}

section.contents .pages .page-body .page-photo-box img {
  max-width: 540px;
}

section.contents .pages .page-body .page-photo-box.pull-up {
  position: relative;
  margin-top: -120px;
}

section.contents .pages .page-body .page-photo-box .link {
  position: absolute;
  width: calc(100% - 50px);
  height: calc(100% - 50px);
  top: 50%;
  left: 50%;
  display: block;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
}

section.contents .pages .page-body .page-photo-box .link .icon {
  border: 4px solid #ffffff;
  border-radius: 100%;
  font-size: 45px;
  padding: 10px;
}

section.contents .pages .page-body .page-photo-box .link .icon::before {
  color: #fff;
}

section.contents .pages .page-body .page-shared-boxes .box {
  position: relative;
  border: 2px solid #3ab144;
  width: 100%;
  max-width: 270px;
  height: 270px;
  border-radius: 100%;
}

section.contents .pages .page-body .page-shared-boxes .box .icon {
  font-size: 70px;
}

section.contents .pages .page-body .page-shared-boxes .box .title {
  color: #282a2e;
  font-size: 30px;
  font-weight: 600;
  max-width: 170px;
  line-height: 100%;
}

section.contents .pages .page-body .page-shared-boxes .box::before {
  content: "";
  position: absolute;
  background-color: #e4f4e5;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: calc(100% - 28%);
  height: calc(100% - 28%);
  border-radius: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

section.contents .pages .page-body .page-shared-boxes .box:hover::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

section.contents .pages.why-waterlife .big-photo {
  border: 2px solid #3ab144;
  border-radius: 100%;
  overflow: hidden;
}

section.contents .pages.why-waterlife .features {
  margin-top: 3vw;
}

section.contents .pages.product-catalog .down-link {
  font-weight: 600;
  font-size: 17px;
}

section.contents .pages.product-catalog .down-link .icon {
  font-size: 115px;
}

section.contents .pages.product-category .features {
  margin-left: 2vw;
}

section.contents .pages.product-category .features li {
  position: relative;
}

section.contents .pages.product-category .features li::before {
  content: "\2022";
  color: #87c8dc;
  font-weight: bold;
  display: inline-block;
  width: 9px;
  height: 9px;
  padding-right: 1em;
}

section.contents .pages.product-category .features li a {
  color: #606060;
  font-weight: 600;
  font-size: 18px;
}

section.contents .pages.product-category .features li a:hover {
  color: #87c8dc;
}

section.contents .pages.product-detail .product-slides {
  width: 100%;
  border: 10px solid #889bbe;
  border-radius: 100%;
  min-height: 540px;
  max-width: 540px;
  overflow: hidden;
  background-color: #fff;
  margin-top: -300px;
}

section.contents .pages.product-detail .product-slides .photo {
  min-height: 520px;
}

section.contents .pages.product-detail .product-slides .photo img {
  max-width: 230px;
}

section.contents .pages.product-detail .features .box {
  background-color: #889bbe;
  height: 105px;
  overflow: hidden;
  color: #fff;
  min-width: 215px;
}

section.contents .pages.product-detail .features .box .icon {
  font-size: 40px;
}

section.contents .pages.product-detail .technic-features .similar-products {
  background-color: #3689b4;
  max-width: 460px;
  min-width: 460px;
  padding: 35px 50px;
  color: #fff;
  font-size: 24px;
}

section.contents .pages.product-detail .technic-features .similar-products .big {
  font-size: 35px;
}

section.contents .pages.product-detail .technic-features .similar-products .icon {
  font-size: 100px;
}

section.contents .pages.product-detail .technic-features .similar-products .list li {
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

section.contents .pages.product-detail .technic-features .similar-products .list li a {
  color: #fff;
}

section.contents .pages.product-detail .technic-features .similar-products .list li a:hover {
  color: #12d3db;
}

section.contents .pages.product-detail .technic-features .similar-products .list li::before {
  content: "\e925";
  font-family: "waterlife-icons";
  position: absolute;
  left: -30px;
  top: 50%;
  border-radius: 100%;
  border: 1px solid #fff;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-size: 7px;
  text-align: center;
  line-height: 20px;
}

section.contents .pages.product-detail .technic-features .similar-products .list li:last-child {
  margin: 0 !important;
}

section.contents .pages.product-detail .related-products-slides {
  margin-top: 5%;
  padding: 0 75px;
  position: relative;
}

section.contents .pages.product-detail .related-products-slides .swiper-slide .photo {
  padding: 15px;
  width: 290px;
  height: 290px;
  border: 4px solid #889bbe;
  border-radius: 100%;
  overflow: hidden;
}

section.contents .pages.product-detail .related-products-slides .swiper-slide .photo img {
  max-width: 100%;
  max-height: 220px;
}

section.contents .pages.product-detail .related-products-slides .swiper-slide .title {
  line-height: 100%;
  font-size: 20px;
  font-weight: 500;
}

section.contents .pages .page-photo-box .link {
  font-weight: 600;
  color: #fff;
  font-size: 20px;
  line-height: 100%;
}

section.contents .pages .page-photo-box .link .phone {
  font-size: 40px;
}

section.contents .pages .references-list .box {
  border-radius: 100%;
  border: 2px solid #aeb1ae;
  min-height: 255px;
  max-width: 255px;
}

section.contents .pages .references-list .box:hover {
  -webkit-box-shadow: 10px 10px #eee;
          box-shadow: 10px 10px #eee;
}

section.contents .pages.contact .infos .box .icon-wrap {
  min-width: 65px;
  min-height: 65px;
  border-radius: 100%;
  background-color: #489bbc;
}

section.contents .pages.contact .infos .box .icon {
  font-size: 34px;
}

section.contents .pages.contact .infos .box .icon::before {
  color: #fff;
}

section.contents .pages.contact .infos .box .info {
  font-size: 14px;
}

section.contents .pages.contact .infos .box .info a {
  font-weight: 500;
}

section.contents .pages.contact .infos .box .info a:hover {
  color: #2dade2;
}

section.contents .pages.contact .mobile-app .box:first-child {
  padding-top: 5%;
}

section.contents .pages.contact .mobile-app .box:first-child::before {
  background-image: url(/App_Themes/Waterlife/images/contact-mobile-app-bg.png);
  background-position-x: center;
}

section.contents .pages.contact .mobile-app .box:last-child::before {
  background-size: contain;
  background-position-x: 60vw;
}

section.contents .pages.contact .mobile-app .box .body {
  padding: 7% 0;
}

section.contents .pages.contact .embed-responsive-21by9 {
  min-height: 320px;
}

section.contents .pages.contact .embed-responsive-21by9::before {
  padding-top: 18%;
}

section.contents .pages.news .page-navigation {
  position: relative;
  z-index: 1;
}

section.contents .pages.news .page-navigation .desc {
  margin-bottom: 0;
}

section.contents .pages.news .page-body {
  position: relative;
  z-index: 2;
  margin-top: -300px;
}

section.contents .pages.news .page-body .categories a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  border-radius: 30px;
}

section.contents .pages.news .page-body .categories a:hover {
  border-color: #61c5bb;
}

section.contents .pages.news .page-body .categories a.active {
  border-color: #fff;
}

section.contents .pages.news .page-body .listing .card {
  background-color: transparent;
  max-height: 390px;
  min-height: 390px;
}

section.contents .pages.news .page-body .listing .card .card-date {
  font-weight: 700;
  color: #073b72;
}

section.contents .pages.news .page-body .listing .card .card-title {
  font-size: 20px;
}

section.contents .pages.news .page-body .titles {
  color: #073b72;
  font-weight: 600;
  line-height: 100%;
}

section.contents .pages.news .page-body .titles.big {
  font-weight: 500;
  font-size: 30px;
}

section.contents .pages.news .page-body .titles.line {
  position: relative;
}

section.contents .pages.news .page-body .titles.line span {
  display: inline-block;
  padding-right: 20px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

section.contents .pages.news .page-body .titles.line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #cbcbcb;
}

section.contents .pages .listing {
  margin-left: -20px;
  margin-right: -20px;
}

section.contents .pages .listing .column {
  margin-left: 20px;
  margin-bottom: 20px;
}

section.contents .pages .listing .box {
  min-width: 210px;
  min-height: 265px;
  border: 1px solid #c7c7c7;
}

section.contents .pages .listing .box img {
  max-height: 250px;
}

section.contents .pages .listing .box:hover {
  -webkit-box-shadow: 5px 5px #eee;
          box-shadow: 5px 5px #eee;
}

section.contents .pages.dealers .dealers-modal {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(238, 238, 238, 0.9);
  border: 1px solid #ddd;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

section.contents .pages.dealers .dealers-modal .modal-body {
  overflow-y: auto;
  height: 100%;
}

section.contents .pages.dealers .dealers-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

section.contents .pages.dealers .dealers-modal .modal-close {
  z-index: 99;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 40px;
  cursor: pointer;
  font-weight: 700;
  color: #aaa;
  opacity: 0.7;
  background: #ccc;
  line-height: 35px;
}

section.contents .pages.dealers .dealers-modal .modal-close:hover {
  opacity: 1;
}

.quick-menu {
  position: fixed;
  left: 2%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 99;
}

.quick-menu a {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  display: inline-block;
  background-color: #2e81bb;
  position: relative;
}

.quick-menu a .icon {
  font-size: 35px;
}

.quick-menu a::after {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  width: 65px;
  height: 65px;
  border: 2px solid #0469ae;
  border-radius: 100%;
}

.quick-menu a.brown {
  background-color: #9e928d;
}

.quick-menu a.brown::after {
  border-color: #967e6e;
}

.quick-menu a.navy {
  background-color: #738699;
}

.quick-menu a.navy .icon {
  font-size: 24px;
}

.quick-menu a.navy::after {
  border-color: #5c6d7e;
}

.quick-menu a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.quick-menu.in-canvas {
  position: relative;
  left: 0;
  top: 0;
  -webkit-transform: none;
          transform: none;
}

.offer-area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: #4fce5d;
  background: linear-gradient(126deg, #4fce5d 0%, #04254e 100%);
  z-index: 1001;
}

.offer-area .content {
  color: #fff;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  max-width: 1300px;
}

.offer-area .content .offer-btn {
  border: 0;
  background-color: transparent;
  color: #fff;
  font-style: italic;
  font-size: 18px;
  outline: none;
}

.offer-area .content .offer-btn .icon {
  vertical-align: middle;
  font-size: 14px;
}

.offer-area .content .form-control {
  border: 0;
  max-width: 220px;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.offer-area .content .form-control::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}

.offer-area .content .form-control:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}

.offer-area .content .form-control::-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}

.offer-area .content .form-control::placeholder {
  color: #fff;
  opacity: 1;
}

.offer-area .content .form-control:-ms-input-placeholder {
  color: #fff;
}

.offer-area .content .form-control::-ms-input-placeholder {
  color: #fff;
}

.offer-area.offer-fixed-top {
  top: 0;
  bottom: auto;
  -webkit-animation: 0.5s ofAnim ease-in-out;
          animation: 0.5s ofAnim ease-in-out;
}

@-webkit-keyframes ofAnim {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes ofAnim {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

/* ################################################################ */
a,
.hvr-a {
  color: #4f4f4f;
  outline: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  text-decoration: none !important;
}

a:hover,
.hvr-a:hover {
  color: #282a2e;
}

.transition i,
.transition button,
.transition input,
.transition,
.transition::before {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

input,
select,
textarea,
button {
  font-family: "Canaro", Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes bounceAnim {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@keyframes bounceAnim {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

/* custom form */
.custom-form .form-control {
  border: none;
  border: 1px solid #3c3c3c;
  padding: 20px 40px;
  height: auto;
  position: relative;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  color: #747474;
  font-size: 16px;
  font-weight: 600;
  resize: none;
  background: transparent;
  border-radius: 0;
  font-weight: normal;
}

.custom-form .form-control:focus {
  border-color: rgba(45, 173, 226, 0.05);
  background-color: rgba(45, 173, 226, 0.05);
}

.custom-form .form-control::-webkit-input-placeholder {
  color: #747474;
  opacity: 1;
}

.custom-form .form-control:-ms-input-placeholder {
  color: #747474;
  opacity: 1;
}

.custom-form .form-control::-ms-input-placeholder {
  color: #747474;
  opacity: 1;
}

.custom-form .form-control::placeholder {
  color: #747474;
  opacity: 1;
}

.custom-form .form-control:-ms-input-placeholder {
  color: #747474;
}

.custom-form .form-control::-ms-input-placeholder {
  color: #747474;
}

.custom-form.form-line .form-control {
  border: 0;
  border-bottom: 1px solid #073b72;
  padding: 8px 0px;
}

.custom-form.form-line .form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #2dade2;
  background-color: transparent !important;
}

.custom-form.form-line .button {
  border: 1px solid #073b72;
  border-radius: 10px;
  padding: 7px 15px;
  background-color: transparent;
  font-weight: 600;
  outline: none;
}

.custom-form.form-line .button:hover {
  color: #fff;
  background-color: #073b72;
}

.custom-modal {
  border: 1px solid #073b72;
}

.custom-modal button.close {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #fff;
  font-weight: 300;
  font-size: 35px;
  line-height: 100%;
  outline: none;
}

.fancybox-container .fancybox-thumbs__list a:before {
  border: 2px solid #000;
}

[hidden] {
  display: none;
  visibility: hidden;
}

.loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  left: 0;
  top: 0;
  z-index: 1060;
  overflow: hidden;
}

.loading-wrapper.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

.loading-wrapper.hide .box {
  opacity: 0;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}

.loading-wrapper .box {
  width: 300px;
  height: 300px;
  border-radius: 5px;
  background: white;
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.loading-wrapper .box:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.loading-wrapper .wave {
  opacity: 0.4;
  position: absolute;
  top: 3%;
  left: 50%;
  background: #0af;
  width: 400px;
  height: 400px;
  margin-left: -200px;
  margin-top: -200px;
  -webkit-transform-origin: 50% 48%;
          transform-origin: 50% 48%;
  border-radius: 43%;
  -webkit-animation: drift 3000ms infinite linear;
          animation: drift 3000ms infinite linear;
}

.loading-wrapper .wave.-three {
  -webkit-animation: drift 5000ms infinite linear;
          animation: drift 5000ms infinite linear;
}

.loading-wrapper .wave.-two {
  -webkit-animation: drift 7000ms infinite linear;
          animation: drift 7000ms infinite linear;
  opacity: 0.1;
  background: #2dade2;
}

.loading-wrapper .logo {
  line-height: 15px;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

@-webkit-keyframes drift {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes drift {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.pagination .page-item .page-link {
  color: #073b72 !important;
  font-weight: 500;
  font-size: 14px;
  border: 0;
  background-color: transparent;
  text-align: center;
  padding: 10px;
}

.pagination .page-item .page-link .icon {
  font-size: 14px;
}

.pagination .page-item .page-link .icon.prev {
  font-size: 14px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.pagination .page-item .page-link .icon.next {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.pagination .page-item .page-link.active, .pagination .page-item .page-link:hover {
  color: #4ea9b6 !important;
}

.usn {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.shared-title {
  font-size: 24px;
  color: #3ab144;
  font-weight: 500;
  line-height: 100%;
}

.shared-title span {
  font-size: 12px;
  color: #7b8891;
  font-weight: 400;
}

.shared-btn {
  background-color: #2dade2;
  color: #fff;
  font-weight: 500;
  padding: 13px 70px;
  border-radius: 35px;
  position: relative;
  display: inline-block;
  border: 0;
  z-index: 2;
}

.shared-btn:hover {
  color: #fff;
  -webkit-box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.3);
}

.shared-btn.white-bg {
  background-color: #fff;
  color: #2dade2 !important;
}

.shared-btn.green-bg {
  background-color: #3ab144;
  color: #fff !important;
}

.shared-btn.big-btn {
  width: 200px;
  text-align: center;
  font-size: 18px;
  padding: 15px 0;
  font-weight: 400;
}

.shared-btn.big-btn-def {
  font-size: 20px;
  padding: 15px 40px;
}

.shared-btn.bg-dark {
  background-color: #3c3c3c;
}

.shared-btn.bg-transparent {
  background-color: transparent;
  border: #7b8891 1px solid;
  color: #7b8891;
}

.shared-btn.color-gre$color-green {
  color: #3ab144;
  border-color: #3ab144;
}

.shared-btn.small-btn {
  padding: 5px 40px;
  font-size: 14px;
}

/* SLIDENAV STYLES - fullPage.js
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#fp-nav {
  padding: 40px 0;
}

#fp-nav.right {
  right: 3.4%;
}

#fp-nav::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #073b72;
}

#fp-nav ul li {
  width: 24px;
  height: 24px;
  position: relative;
}

#fp-nav ul li .fp-tooltip {
  font-family: "Canaro";
}

#fp-nav ul li .fp-tooltip.right {
  top: 0;
  color: #073b72;
  font-weight: 500;
  font-size: 14px;
  right: 30px;
}

#fp-nav ul li a span {
  background: white;
  width: 24px !important;
  height: 24px !important;
  border: 2px solid #073b72;
  margin: 0 !important;
  left: 0;
  top: 0;
}

#fp-nav ul li a span::after {
  position: absolute;
  left: 3px;
  top: 3px;
  content: "";
  width: 14px;
  height: 14px;
  background-color: #073b72;
  border-radius: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

#fp-nav ul li a.active span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#fp-nav ul li a.active span::after {
  opacity: 1 !important;
  visibility: visible;
}

#fp-nav ul li:hover a span::after {
  opacity: 0.3;
  visibility: visible;
}

.swiper-pagination.custom-pagination {
  height: 30px;
}

.swiper-pagination.custom-pagination .swiper-pagination-bullet {
  width: 17px;
  height: 17px;
  outline: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  background-color: #073b72;
  margin: 0 10px;
}

.swiper-pagination.custom-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.swiper-pagination.common-carousel-pagination {
  bottom: -25px;
  left: 0;
  height: auto;
}

.swiper-pagination.common-carousel-pagination .swiper-pagination-bullet {
  width: 60px;
  height: 4px;
  background-color: #073b72;
  border-radius: 0;
  margin-right: 5px;
  outline: none;
}

.ovh {
  overflow: hidden !important;
}

.backface {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}

.backface * {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}

.menu-toggle {
  width: 45px;
  height: 25px;
  cursor: pointer;
  position: relative;
  margin-top: 10px;
  z-index: 101;
}

.menu-toggle span {
  display: inline-block;
  background-color: #fff;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1.5px;
  border-radius: 3px;
}

.menu-toggle::before, .menu-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.menu-toggle::after {
  top: inherit;
  bottom: 0;
}

.menu-toggle.active {
  opacity: 0;
}

.menu-toggle.active span {
  opacity: 0;
}

.menu-toggle.active::before {
  -webkit-transform: translateY(11px);
          transform: translateY(11px);
  background-color: #073b72;
}

.menu-toggle.active::after {
  -webkit-transform: translateY(-11px);
          transform: translateY(-11px);
  background-color: #073b72;
}

.menu-toggle:hover:not(.active)::before {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.menu-toggle:hover:not(.active)::after {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.supported-icon {
  display: inline-block;
  width: 100%;
  height: 130px;
  max-width: 90px;
  background-size: contain;
  background-repeat: no-repeat;
}

.supported-icon.icon-not-supported {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5NCIgaGVpZ2h0PSIxMzIuNDAxIiB2aWV3Qm94PSIwIDAgOTQgMTMyLjQwMSI+ICA8ZyBpZD0iR3JvdXBfMjM1MCIgZGF0YS1uYW1lPSJHcm91cCAyMzUwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMjc4LjQwOSAtMjE1LjA4MSkiPiAgICA8ZyBpZD0iR3JvdXBfMjM0OSIgZGF0YS1uYW1lPSJHcm91cCAyMzQ5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyNzguNDA5IDIxNS4wODEpIj4gICAgICA8cGF0aCBpZD0iUGF0aF80NjQxIiBkYXRhLW5hbWU9IlBhdGggNDY0MSIgZD0iTTMyNS40MDksMzQ3LjQ4MmE0Ny4wNTQsNDcuMDU0LDAsMCwxLTQ3LTQ3YzAtMjMuODM0LDM3LjY0Mi03Ni44NDEsNDEuOTM0LTgyLjgwNWE2LjIzOSw2LjIzOSwwLDAsMSwxMC4xMjksMGM0LjI5Miw1Ljk2NCw0MS45MzcsNTguOTcxLDQxLjkzNyw4Mi44MDVBNDcuMDU0LDQ3LjA1NCwwLDAsMSwzMjUuNDA5LDM0Ny40ODJabTAtMTE1LjI3NGMtMTIuODcyLDE4Ljg2My0zNC41MjMsNTMuNjQ2LTM0LjUyMyw2OC4yNzRhMzQuNTIzLDM0LjUyMywwLDEsMCw2OS4wNDUsMEMzNTkuOTMyLDI4NS44NTMsMzM4LjI4MSwyNTEuMDcxLDMyNS40MDksMjMyLjIwOFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yNzguNDA5IC0yMTUuMDgxKSIgZmlsbD0iIzY4YzJlZCIvPiAgICA8L2c+ICAgIDxwYXRoIGlkPSJQYXRoXzQ2NDIiIGRhdGEtbmFtZT0iUGF0aCA0NjQyIiBkPSJNMzE3LjQ5LDI1Ny40NjFsOC40MTUtOC40MTdhNi4yMzksNi4yMzksMCwwLDAtOC44MjQtOC44MjJsLTguNDEyLDguNDE1LTguNDE1LTguNDE1YTYuMjM5LDYuMjM5LDAsMCwwLTguODI0LDguODIybDguNDE3LDguNDE3LTguNDE3LDguNDE3YTYuMjM5LDYuMjM5LDAsMCwwLDguODI0LDguODIybDguNDE1LTguNDE1LDguNDEyLDguNDE1YTYuMjM5LDYuMjM5LDAsMCwwLDguODI0LTguODIyWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTYuNzQxIDM0Ljg2MykiIGZpbGw9IiNlMzA2MTMiLz4gIDwvZz48L3N2Zz4=);
}

.supported-icon.icon-supported {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5NCIgaGVpZ2h0PSIxMzIuNDAxIiB2aWV3Qm94PSIwIDAgOTQgMTMyLjQwMSI+ICA8ZyBpZD0iR3JvdXBfMjM1MyIgZGF0YS1uYW1lPSJHcm91cCAyMzUzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzYyLjA1OSAtMjE1LjA4MSkiPiAgICA8cGF0aCBpZD0iUGF0aF80NjQzIiBkYXRhLW5hbWU9IlBhdGggNDY0MyIgZD0iTTQxOS43ODIsMjQyLjQzNmE2LjIzOSw2LjIzOSwwLDAsMC04LjgyMiwwbC0yMS4yNDIsMjEuMjQyLTguMzc3LTguMzc3YTYuMjM5LDYuMjM5LDAsMSwwLTguODI0LDguODIybDEyLjc4OSwxMi43ODlhNi4yNDIsNi4yNDIsMCwwLDAsOC44MjQsMGwyNS42NTEtMjUuNjUxQTYuMjQyLDYuMjQyLDAsMCwwLDQxOS43ODIsMjQyLjQzNloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyLjkwOSAzOC4xNzcpIiBmaWxsPSIjOTBkNDE3Ii8+ICAgIDxnIGlkPSJHcm91cF8yMzUxIiBkYXRhLW5hbWU9Ikdyb3VwIDIzNTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM2Mi4wNTkgMjE1LjA4MSkiPiAgICAgIDxwYXRoIGlkPSJQYXRoXzQ2NDQiIGRhdGEtbmFtZT0iUGF0aCA0NjQ0IiBkPSJNNDA5LjA1OSwzNDcuNDgyYTQ3LjA1NCw0Ny4wNTQsMCwwLDEtNDctNDdjMC0yMy44MzQsMzcuNjQ1LTc2Ljg0MSw0MS45MzctODIuODA1YTYuMjM3LDYuMjM3LDAsMCwxLDEwLjEyNywwYzQuMjkyLDUuOTY0LDQxLjkzNyw1OC45NzEsNDEuOTM3LDgyLjgwNUE0Ny4wNTQsNDcuMDU0LDAsMCwxLDQwOS4wNTksMzQ3LjQ4MlptMC0xMTUuMjc0Yy0xMi44NzIsMTguODYzLTM0LjUyMyw1My42NDYtMzQuNTIzLDY4LjI3NGEzNC41MjMsMzQuNTIzLDAsMCwwLDY5LjA0NSwwQzQ0My41ODIsMjg1Ljg1Myw0MjEuOTMxLDI1MS4wNzEsNDA5LjA1OSwyMzIuMjA4WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM2Mi4wNTkgLTIxNS4wODEpIiBmaWxsPSIjNjhjMmVkIi8+ICAgIDwvZz4gIDwvZz48L3N2Zz4=);
}

.slide-pagination {
  position: absolute;
  right: 2%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 115;
}

.slide-pagination .button {
  cursor: pointer;
  border: 3px solid #fff;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  outline: none;
}

.slide-pagination .button .icon {
  font-size: 20px;
}

.slide-pagination .button.swiper-button-disabled {
  opacity: 0.5;
}

.slide-pagination .button:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.slide-pagination.navy {
  right: -100px;
  top: 30%;
}

.slide-pagination.navy .button {
  border-color: #073b72;
}

.slide-pagination.navy .button .icon {
  font-size: 14px;
}

.slide-pagination.navy .button .icon::before {
  color: #073b72;
}

.slide-pagination.ps-pagination {
  left: 0;
  width: 100%;
}

.slide-pagination.ps-pagination .button {
  position: absolute;
  -webkit-transform: none;
          transform: none;
  border-color: #889bbe;
  width: 40px;
  height: 40px;
}

.slide-pagination.ps-pagination .button .icon::before {
  color: #889bbe;
}

.slide-pagination.ps-pagination .button.button-prev {
  left: 25px;
}

.slide-pagination.ps-pagination .button.button-next {
  right: 25px;
}

.slide-pagination.only-arrow {
  top: 35%;
}

.slide-pagination.only-arrow .button {
  border: 0;
}

.slide-pagination.only-arrow .button.button-prev {
  left: 0;
}

.slide-pagination.only-arrow .button.button-next {
  right: 0;
}

.slide-pagination.only-arrow .button .icon {
  font-size: 44px;
}

.slide-pagination.only-arrow .button .icon::before {
  color: #3689b4;
}

.waves {
  /* Animation */
  position: relative;
  width: 100%;
  height: 6vh;
}

.waves .parallax > use {
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.waves .parallax > use:nth-child(1) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}

.waves .parallax > use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

.waves .parallax > use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}

.waves .parallax > use:nth-child(4) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}

.shared-margin {
  margin-top: 9%;
}

.strip-btn {
  position: relative;
}

.strip-btn::before {
  height: 1px;
  width: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background-color: #cccdd0;
}

.strip-btn .wrap {
  background-color: #fff;
  padding: 0 2.5%;
  position: relative;
  z-index: 1;
}

.strip-btn a {
  margin: 0 20px;
  background-color: #3ab144;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 11px 33px;
  border-radius: 35px;
  position: relative;
  display: inline-block;
  z-index: 2;
  white-space: nowrap;
}

.strip-btn a:hover {
  color: #fff;
  -webkit-box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.3);
}

.strip-btn.blue a {
  background-color: #2dade2;
}

.shared-tabs .nav-tabs {
  border: 0;
}

.shared-tabs .nav-tabs .nav-item {
  margin: 0;
  width: 100%;
  margin-left: 10px;
}

.shared-tabs .nav-tabs .nav-item:first-child {
  margin-left: 0;
}

.shared-tabs .nav-tabs .nav-link {
  width: 100%;
  border-radius: 0;
  border: 1px solid #d2d2d2;
  border-bottom: 0;
  min-height: 92px;
}

.shared-tabs .nav-tabs .nav-link img {
  max-height: 60px;
}

.shared-tabs .nav-tabs .nav-link.active {
  background-color: #d8e9fd;
  border-color: #d8e9fd;
}

.shared-tabs .tab-content {
  background-color: #d8e9fd;
}

.shared-tabs .tab-content .infos {
  font-weight: 500;
}

.shared-tabs .tab-content .infos .title {
  font-weight: 700;
  display: inline-block;
  min-width: 200px;
}

.shared-accordion .card {
  border: 0;
}

.shared-accordion .card .card-header {
  border: 0;
  padding: 0;
  background: transparent;
  position: relative;
}

.shared-accordion .card .card-header .btn-link {
  color: #073b72;
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  padding: 0;
  padding-left: 40px;
}

.shared-accordion .card .card-header .btn-link::before, .shared-accordion .card .card-header .btn-link::after {
  width: 18px;
  height: 4px;
  content: "";
  position: absolute;
  background-color: #7da7d9;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
  left: 0px;
  top: 16px;
  margin-top: 0;
}

.shared-accordion .card .card-header .btn-link::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.shared-accordion .card .card-header .btn-link:not(.collapsed)::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.shared-accordion .card .card-header .btn-link:not(.collapsed)::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.shared-accordion .card .card-body {
  padding-left: 40px !important;
}

.turkey-map {
  position: relative;
}

.turkey-map svg {
  width: 100%;
  height: auto;
}

.turkey-map .city-names {
  position: absolute;
  z-index: 2;
}

.turkey-map .city-names div {
  display: inline-block;
  background: #1094f6;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
}

.turkey-map #turkey-map g[data-bayi-durum="false"] {
  pointer-events: none;
}

.turkey-map #turkey-map g[data-bayi-durum="false"] path {
  fill: #eee;
}

.turkey-map #turkey-map path {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  cursor: pointer;
  fill: #aaa;
}

.turkey-map #turkey-map path:hover {
  fill: #777;
}

.turkey-map #guney-kibris {
  pointer-events: none;
}

.loading-spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid #ccc;
  border-radius: 50%;
  border-top-color: #2dade2;
  -webkit-animation: spin 1s ease-in-out infinite;
          animation: spin 1s ease-in-out infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-spinner.show {
  opacity: 1;
  visibility: visible;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}