/* CSS Document */
body {
  font-family: 'Barlow', sans-serif;
}
a:link {
  color: #183E7F;
}
a:link:hover {
  color: #A1D9F6;
}
h2 {
  color: #183E7F;
  font-size: 40px;
  font-weight: 600;
}
.small {
  font-size: 16px;
  background: #183E7F;
  color: #FFF;
  padding: 5px 10px;
  border-radius: 5px;
}
.text-larger {
  font-size: 20px;
}
.c-header {
  position: absolute;
  z-index: 35;
  top: 30px;
  left: 0;
  width: 100%;
}
.c-header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
/* NAV BAR */
.c-nav-bar ul {
  background: transparent;
  list-style: none;
  margin: 0;
  padding-left: 0;
  display: flex;
  flex-direction: row;
}
.c-nav-bar li {
  color: #fff;
  background: transparent;
  padding: 10px 15px;
  position: relative;
  text-decoration: none;
  transition-duration: 0.5s;
  line-height: 13px;
}
.c-nav-bar li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
}
.c-nav-bar li:hover, .c-nav-bar li:focus-within {
  cursor: pointer;
  background: #FFF;
  border-radius: 5px;
}
.c-nav-bar li:focus-within a {
  outline: none;
  padding-left: 0;
}
.c-nav-bar li:hover a {
  color: #183E7F;
  padding-left: 0;
}
.c-nav-bar .dropdown li a {
  font-size: 14px;
  padding-left: 0;
}
.c-nav-bar ul li ul {
  background: rgba(255, 255, 255, 0.9);
  color: #183E7F;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: all 0.5s ease;
  margin-top: 6px;
  left: 0;
  display: none;
  width: 300px;
}
.c-nav-bar ul li:hover > ul, .c-nav-bar ul li:focus-within > ul, .c-nav-bar ul li ul:hover, .c-nav-bar ul li ul:focus {
  visibility: visible;
  opacity: 1;
  display: block
}
.c-nav-bar ul li ul li {
  clear: both;
  width: 100%;
}
/* HAMBURGER MENU */
#hamnav label, #hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  /* (B) SHOW HAMBURGER ICON */
  #hamnav label {
    display: inline-block;
    color: white;
    background: #183E7F;
    font-style: normal;
    font-size: 1.2em;
    padding: 15px;
  }
  /* (C) TOGGLE SHOW/HIDE MENU */
  #hamitems {
    display: none;
  }
  #hamnav input:checked ~ #hamitems {
    display: block;
    background-color: #183E7F;
    color: #FFF;
    width: 90%;
    position: absolute;
    top: 60px;
    right: 0;
    z-index: 100000;
    padding: 30px 20px;
  }
  #hamnav input:checked ~ #hamitems .dropdown {
    visibility: visible;
    opacity: 1;
    display: block;
    background-color: transparent;
    position: relative;
  }
}
/* BANNER */
.c-banner {
  width: 100%;
  height: 720px;
  overflow: hidden;
  background-image: url("../img/banner-home.jpg");
  background-size: cover;
  background-position: center center;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1900px) {
  .c-banner {
    height: 900px;
  }
}
.c-banner-product {
  width: 100%;
  height: 600px;
  overflow: hidden;
  background-image: url("../img/bg-pool.jpg");
  background-size: cover;
  background-position: center center;
  position: relative;
  display: flex;
  align-items: center;
}
.c-banner-product-CL {
  width: 100%;
  height: 600px;
  overflow: hidden;
  background-image: url("../img/bg-pool-CL.jpg");
  background-size: cover;
  background-position: center center;
  position: relative;
  display: flex;
  align-items: center;
}
.c-banner-product-img {
  position: absolute;
  z-index: 10;
  left: 500px;
}

.c-banner-right-img{
  position: absolute;
  z-index: 10;
  right: 0;
}

@media screen and (min-width: 1900px) {
  .c-banner-product-img {
    left: 1000px;
  }
  .c-banner-product {
    height: 700px;
  }
}
.c-banner-text {
  color: #FFF;
  font-size: 5rem;
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 4.8rem;
  font-weight: 800;
}
.card-header {
  color: #FFF;
  height: 250px;
  border-radius: 8px 8px 0 0 !important;
}
.type1 {
  background-color: #FD3837;
  border-color: #FD3837;
}
.type2 {
  background-color: #DF01A6;
  border-color: #DF01A6;
}
.h-type1 {
  color: #FD3837;
}
.h-type2 {
  color: #DF01A6;
}
.h-type3 {
  color: #000;
  background-color: #FCE530;
}
.h-type4 {
  color: #61C396;
}
.type3 {
  background-color: #FCE530;
  border-color: #FCE530;
  ;
}
.type4 {
  background-color: #61C396;
  border-color: #61C396;
}
.card {
  border: none;
  width: 100%;
}
.card-header {
  border-bottom: none;
}
.card-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  line-height: normal;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .card-header h3 {
    font-size: 40px;
  }
}
.card-body {
  background-color: #fff;
  border-radius: 0 0 8px 8px !important;
  padding-bottom: 30px;
}
.card-title {
  font-family: 'Barlow';
  font-weight: bold;
  font-size: 30px;
  color: #183E7F;
}
.card-text {
  font-family: 'Barlow';
  font-size: 16px;
  color: #A1D9F6;
  font-weight: bold;
}
.card-link {
  color: #183E7F;
}
.bg-gray {
  background-color: #F5F5F5;
}
.section-padding {
  padding-top: 100px;
  paadding-bottom: 100px;
  border: 1px solid transparent;
}
.txt-box, .img-box {
  width: 58%;
  margin-left: 130px;
  margin-top: 50px;
  color: #183E7F;
  font-size: 24px;
}
.waves-banner {
  position: absolute;
  bottom: -10px;
  margin: 0;
  z-index: 5;
  width: 100%;
}
.waves {
  background-image: url("../img/waves.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  min-height: 500px;
}
.c-about-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  font-size: 18px;
  padding: 50px;
}
.c-footer {
  padding-top: 100px;
  color: #183E7F;
}
.container-fluid {
  padding-left: 0;
}
.c-footer-logo {
  padding-top: 50px;
}
.c-footer-text {
  padding-left: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 50px;
}
.c-footer-wave {
  margin-bottom: -25px;
}
.c-footer a {
  color: #183E7F;
}
/* PRODUKT PAGES*/
.product-title {
  font-size: 50px;
  color: #183E7F;
}
.product-description {
  font-size: 30px;
  color: #A1D9F6;
}
.c-size {
  position: absolute;
  z-index: 20;
  right: 10%;
  margin-top: -80px;
}
.c-size-active {
  margin: 0 10px;
}
.c-size-active img, .c-size img {
  transition: transform .2s; /* Animation */
  width: 100px;
  height: 100px;
}
.c-size-active img:hover {
  transform: scale(1.2);
}
/* CTA */
.btn.btn-primary {
  text-transform: uppercase;
  border-radius: 20px;
  padding: 10px 30px;
  font-weight: bold;
  letter-spacing: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  cursor: pointer;
}
.btn.btn-primary:hover {
  background-color: #183E7F;
  border-color: #183E7F !important;
}
.btn.btn-primary.type4 {
  border-color: #61C396;
  color: #FFF !important;
}
.btn.btn-primary.type3 {
  border-color: #FCE530;
  color: #183E7F !important;
}
.btn.btn-primary.type3:hover {
  color: #FFF !important;
}
.btn.btn-primary.type2 {
  border-color: #DF01A6;
  color: #FFF !important;
}
.btn.btn-primary.type1 {
  border-color: #FD3837;
  color: #FFF !important;
}
/* TABS*/
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: 0 0;
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  color: #183E7F;
  font-size: 20px;
  font-weight: 600;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #183E7F;
  background-color: transparent;
  border-color: none;
  position: relative;
}
.nav-tabs .nav-link.active::after {
  content: "";
  background-image: url("../img/divider.png");
  width: 100px;
  height: 28px;
  position: absolute;
  z-index: 30;
  left: 20px;
  top: 43px;
  text-align: center;
}
.nav-tabs-type-1.nav-tabs .nav-link.active::after {
  content: "";
  background-image: url("../img/divider-type1.png");
}
.nav-tabs-type-3.nav-tabs .nav-link.active::after {
  content: "";
  background-image: url("../img/divider-type3.png");
}
.nav-tabs-type-4.nav-tabs .nav-link.active::after {
  content: "";
  background-image: url("../img/divider-type4.png");
}
.nav-tabs {
  border-bottom: 3px solid #FFF;
  margin-top: 30px;
  padding-bottom: 20px;
}
.tab-pane {
  padding: 25px;
}
.c-data-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.c-data-row .label {
  min-width: 100px;
  font-weight: bold;
  color: #183E7F;
}
.c-pool-img {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.m-picto {
  margin-right: 7px;
}
/* MOBILE */
@media screen and (max-width: 425px) {
  .text-center-on-mobile {
    text-align: center;
  }
  .m-picto {
    margin-bottom: 15px;
  }
  .c-banner, .c-banner-product {
    height: 450px;
  }
  .c-banner-product-img {
    left: 50px;
  }
  .txt-box {
    width: 90%;
    margin-left: 20px;
    margin-top: 50px;
  }
  .img-box {
    display: none;
  }
  .c-size-active img, .c-size img {
    width: 80px;
    height: 80px;
  }
.c-size {
    margin-top: -60px;
}
  .c-logo-large {
    margin-top: 50px;
    display: none;
  }
  .text-larger {
    font-size: 18px;
    margin: 0 20px 20px 20px;
    padding-top: 0;
  }
  .c-footer-text {
    display: block;
    text-align: center;
    padding-left: 0;
  }
  .c-footer-text div {
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
  }
  .c-footer-logo {
    text-align: center;
    padding-top: 0;
    margin-bottom: 30px;
  }
  .container-fluid {
    padding-right: 0;
  }
  .nav-tabs .nav-link.active::after {
    top: 32px;
  }
  .nav-link {
    padding-bottom: 30px;
  }
  .c-footer {
    padding-top: 0;
  }
  .c-about-us {
    display: block;
    font-size: 18px;
    padding: 30px;
    text-align: center;
  }
  .c-data-row {
    display: block;
    margin-bottom: 15px;
  }
  .c-data-row .label {
    width: 100%;
  }
}