.w-5 {
	width: 5% !important;
}

.w-10 {
	width: 10% !important;
}

.w-15 {
	width: 15% !important;
}

.w-20 {
	width: 20% !important;
}

.w-25 {
	width: 25% !important;
}

.w-30 {
	width: 30% !important;
}

.w-35 {
	width: 35% !important;
}

.w-40 {
	width: 40% !important;
}

.w-45 {
	width: 45% !important;
}

.w-50 {
	width: 50% !important;
}

.w-55 {
	width: 55% !important;
}

.w-60 {
	width: 60% !important;
}

.w-65 {
	width: 65% !important;
}

.w-70 {
	width: 70% !important;
}

.w-75 {
	width: 75% !important;
}

.w-80 {
	width: 80% !important;
}

.w-85 {
	width: 85% !important;
}

.w-90 {
	width: 90% !important;
}

.w-95 {
	width: 95% !important;
}

.w-100 {
	width: 100% !important;
}

div.none {
	display: none;
}

.flex-justify-flex-end, .flex-justify-flex-start, .flex-justify-space-around, .flex-justify-space-between, .flex-justify-space-evenly, .flex-justify-center, .flex-justify-baseline, .flex-justify-end, .flex-align-flex-end, .flex-align-flex-start, .flex-align-center, .flex-align-baseline, .flex-align-end {
	display: flex;
}

.flex-justify-flex-end {
	justify-content: flex-end;
}

.flex-justify-flex-start {
	justify-content: flex-start;
}

.flex-justify-space-around {
	justify-content: space-around;
}

.flex-justify-space-between {
	justify-content: space-between;
}

.flex-justify-space-evenly {
	justify-content: space-evenly;
}

.flex-justify-center {
	justify-content: center;
}

.flex-justify-baseline {
	justify-content: baseline;
}

.flex-justify-end {
	justify-content: end;
}

.flex-align-flex-end {
	align-items: flex-end;
}

.flex-align-flex-start {
	align-items: flex-start;
}

.flex-align-center {
	align-items: center;
}

.flex-align-baseline {
	align-items: baseline;
}

.flex-align-end {
	align-items: end;
}

@media screen and (max-width: 576px) {
	.flex-nowrap {
		flex-wrap: wrap !important;
	}
}

@media screen and (min-width: 576px) {
	.flex-nowrap {
		flex-wrap: nowrap !important;
	}
}

.nav-open nav.downhill .hamburger .line {
	background-color: #00145E !important;
}

nav.downhill .hamburger .line {
	background-color: #00145E;
}

nav .hamburger .line {
	width: 40px;
	height: 2px;
	background-color: #fff;
	display: block;
	margin: 8px auto;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

nav .hamburger:hover {
	cursor: pointer;
}

#hamburger.is-active .line {
	background-color: #fff;
}

#hamburger.is-active .line:nth-child(2) {
	opacity: 0;
}

#hamburger.is-active .line:nth-child(1) {
	-moz-transform: translateY(10px) rotate(40deg);
	-o-transform: translateY(10px) rotate(40deg);
	-webkit-transform: translateY(10px) rotate(40deg);
	transform: translateY(10px) rotate(40deg);
}

#hamburger.is-active .line:nth-child(3) {
	-moz-transform: translateY(-10px) rotate(-38deg);
	-o-transform: translateY(-10px) rotate(-38deg);
	-webkit-transform: translateY(-10px) rotate(-38deg);
	transform: translateY(-10px) rotate(-38deg);
}

.main-menu {
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
}

.main-menu .nav li {
	opacity: 0;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	-moz-transition: translateY(-40px) !important;
	-o-transition: translateY(-40px) !important;
	-webkit-transition: translateY(-40px) !important;
	transition: translateY(-40px) !important;
	-webkit-animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1) !important;
	-moz-animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1) !important;
	-o-animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1) !important;
	animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1) !important;
}

.main-menu .nav li:after {
	content: '';
	display: block;
	margin: auto;
	height: 2px;
	width: 0px;
	background: transparent;
	transition: width .5s ease, background-color .5s ease;
}

.main-menu .nav li:hover:after {
	width: 100%;
	background: #F2C600;
}

.main-menu .nav li:hover a {
	color: #9DA4B0;
}

.main-menu .nav li a {
	color: #fff;
	font-size: 3vh;
	font-weight: 600;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.main-menu .nav li.delay-1 {
	-webkit-transition-delay: 0.1s !important;
	-moz-transition-delay: 0.1s !important;
	-ms-transition-delay: 0.1s !important;
	-o-transition-delay: 0.1s !important;
	transition-delay: 0.1s !important;
}

.main-menu .nav li.delay-2 {
	-webkit-transition-delay: 0.2s !important;
	-moz-transition-delay: 0.2s !important;
	-ms-transition-delay: 0.2s !important;
	-o-transition-delay: 0.2s !important;
	transition-delay: 0.2s !important;
}

.main-menu .nav li.delay-3 {
	-webkit-transition-delay: 0.3s !important;
	-moz-transition-delay: 0.3s !important;
	-ms-transition-delay: 0.3s !important;
	-o-transition-delay: 0.3s !important;
	transition-delay: 0.3s !important;
}

.main-menu .nav li.delay-4 {
	-webkit-transition-delay: 0.4s !important;
	-moz-transition-delay: 0.4s !important;
	-ms-transition-delay: 0.4s !important;
	-o-transition-delay: 0.4s !important;
	transition-delay: 0.4s !important;
}

.nav-open .main-menu {
	opacity: 1;
	visibility: visible;
	background: rgba(0,20,94,0.92);
}

.nav-open .main-menu .nav li {
	opacity: 1;
	-moz-transition: translateY(0px) !important;
	-o-transition: translateY(0px) !important;
	-webkit-transition: translateY(0px) !important;
	transition: translateY(0px) !important;
	-webkit-transition: -webkit-transform .2s, opacity .2s;
	transition: transform .2s, opacity .2s;
}

nav {
	font-family: "Lato",sans-serif !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	letter-spacing: .8px;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

nav.navbar-light .navbar-toggler {
	color: transparent;
	border-color: transparent;
	outline: none;
	box-shadow: none;
	z-index: 1300;
}

@media screen and (max-width: 992px) {
	nav .navbar-brand {
		width: 170px;
		height: 80px;
	}
}

@media screen and (min-width: 993px) {
	nav .navbar-brand {
		width: 200px;
		height: 80px;
	}
}

nav .navbar-brand .logo {
	width: 315px;
	height: 315px;
	margin-top: -120px;
	background: url("../images/fluidra_logo-w.png");
	background-repeat: no-repeat !important;
	background-size: contain !important;
	background-position: center !important;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

nav.downhill {
	box-shadow: rgba(0,0,0,0.1) 0px 0px 14px 4px;
	background-color: #fff;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

nav.downhill .nav-item:hover .nav-link {
	color: #3E83D6 !important;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

nav.downhill .nav-item .nav-link {
	color: #005E91 !important;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

nav.downhill .nav-item.active .nav-link {
	color: #1D2D61 !important;
}

nav.downhill .nav-item .nav-link.global-link {
	color: #2BB4D3 !important;
	font-weight: bold !important;
}

nav .nav-item .nav-link.global-link {
	color: #2BB4D3 !important;
	font-weight: bold !important;
}

nav.downhill .navbar-brand .logo {
	width: 315px;
	height: 315px;
	margin-top: -120px;
	background: url("../images/fluidra_logo.png");
	background-repeat: no-repeat !important;
	background-size: contain !important;
	background-position: center !important;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

nav.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
}

nav .navbar-nav .nav-item:after {
	content: '';
	display: block;
	margin: auto;
	height: 2px;
	width: 0px;
	background: transparent;
	transition: width .5s ease, background-color .5s ease;
}

nav .navbar-nav .nav-item:hover:after {
	width: 100%;
	background: #F2C600;
}

nav .navbar-nav .nav-item:hover a {
	color: #D8E2F2 !important;
}

nav .navbar-nav .nav-item .nav-link {
	color: #fff;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

nav .navbar-nav .nav-item .nav-link:focus {
	color: #D8E2F2;
}

nav .navbar-nav .nav-item.active .nav-link {
	color: #D8E2F2;
}

.phone-hidden {
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

@media screen and (max-width: 576px) {
	.phone-hidden {
		display: none;
	}
}

@media screen and (min-width: 577px) {
	.phone-hidden {
		display: block;
	}

	.phone-hidden.flex {
		display: flex;
	}
}

.phone-show {
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

@media screen and (max-width: 576px) {
	.phone-show {
		display: flex;
	}
}

@media screen and (min-width: 577px) {
	.phone-show {
		display: none;
	}
}

.tablet-show {
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

@media screen and (max-width: 991px) {
	.tablet-show {
		display: block;
	}

	.tablet-show.flex {
		display: flex;
	}
}

.tablet-show.flex-direction-swap {
	flex-direction: column-reverse;
}

@media screen and (max-width: 425px) {
	.tablet-show.flex-direction-swap .extra-top {
		margin-top: 5rem !important;
	}
}

@media screen and (min-width: 992px) {
	.tablet-show {
		display: none;
	}
}

.tablet-hidden {
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

@media screen and (max-width: 991px) {
	.tablet-hidden {
		display: none;
	}
}

@media screen and (min-width: 992px) {
	.tablet-hidden {
		display: block;
	}

	.tablet-hidden.flex {
		display: flex;
	}
}

[data-entrance] {
	visibility: hidden;
}

html {
	overflow-x: hidden;
}

body {
	font-family: "Lato",sans-serif !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	letter-spacing: .8px;
	color: #1D2D61;
}

body.nav-open {
	overflow: hidden !important;
}

h1 {
	font-family: "Praktika Rnd Bold",sans-serif !important;
	font-size: 39.6pt !important;
	font-weight: 600 !important;
	line-height: 1.5 !important;
	letter-spacing: .5px;
	color: #00145E;
}

.commercial-page h1 {
	font-size: 30pt !important;
}

h1.white {
	color: #fff;
}

h1.max-flu {
	color: #fff;
}

@media screen and (max-width: 991px) {
	h1.max-flu {
		font-family: "Praktika Rnd Bold",sans-serif !important;
		font-size: 3.05176rem !important;
		font-weight: 700 !important;
		line-height: 1.5 !important;
		letter-spacing: .5px;
	}
}

@media screen and (min-width: 992px) {
	h1.max-flu {
		font-family: "Praktika Rnd Bold",sans-serif !important;
		font-size: 4.76837rem !important;
		font-weight: 700 !important;
		line-height: 1.5 !important;
		letter-spacing: .5px;
	}
}

h2,
.h2 {
	font-family: "Raleway",sans-serif !important;
	font-size: 31.3pt !important;
	font-weight: 600 !important;
	line-height: 1.5 !important;
	letter-spacing: .5px;
	color: #00145E;
}

h2.white {
	color: #fff !important;
}

h3 {
	font-family: "Praktika Rnd Bold",sans-serif !important;
	font-size: 25pt !important;
	line-height: 1.25 !important;
	letter-spacing: .5px;
	color: #00145E;
}

h3.override-h3 {
	font-family: "Praktika Rnd Medium",sans-serif !important;
}

h3.white {
	color: #fff !important;
}

h4 {
	font-family: "Lato",sans-serif !important;
	font-size: 12.8pt !important;
	font-weight: 600 !important;
	line-height: .75 !important;
	letter-spacing: 1.5px;
	color: #00145E;
}

h5 {
	font-family: "Lato",sans-serif !important;
	font-size: 12.8pt !important;
	font-weight: 400 !important;
	line-height: .75 !important;
	letter-spacing: 1.5px;
	color: #00145E;
}

p, td {
	color: #000;
}

p {
	font-family: "Praktika Rnd Medium", sans-serif !important;
}

p.dark, td.dark {
	color: #1D2D61;
}

p.title, td.title {
	font-size: 18px !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
	letter-spacing: .8px;
}

p.subtitle, td.subtitle {
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 1.25 !important;
	letter-spacing: .8px;
}

p.body, td.body {
	font-size: 18px !important;
	font-weight: 400 !important;
	line-height: 1.8 !important;
	letter-spacing: .2px;
	color: #1D2D61;
}

p.body.white, td.body.white {
	color: #fff;
}

p.body.white .bold, td.body.white .bold {
	font-weight: 700;
}

p.big.title, td.big.title {
	font-size: 32px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	letter-spacing: .8px;
}

p.big.body, td.big.body {
	font-size: 22px !important;
	font-weight: 400 !important;
	line-height: 1.25 !important;
	letter-spacing: .8px;
}

p.small.title, td.small.title {
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	letter-spacing: .8px;
}

p.small.body, td.small.body {
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1.25 !important;
	letter-spacing: .8px;
}

th.big {
	font-family: "Lato",sans-serif !important;
	color: #005E91;
	vertical-align: middle;
	font-size: 24px !important;
	font-weight: 700 !important;
	line-height: 2 !important;
	letter-spacing: .8px;
}

th, td {
	vertical-align: middle !important;
	color: #1D2D61;
}

.terms th, .terms td {
	vertical-align: middle !important;
	color: #005E91;
}

.no-border {
	border: none !important;
}

a {
	color: #3E83D6;
}

a:hover {
	text-decoration: none;
}

.btn-zodiac {
	border-radius: .5em;
	cursor: pointer;
	display: inline-block;
	text-decoration: none;
	position: relative;
	-webkit-backface-visibility: hidden;
	z-index: 1;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.btn-zodiac span {
	position: relative;
	z-index: 3;
}

.btn-zodiac:after {
	border-radius: .4em;
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	opacity: 0;
	-moz-transition: opacity 0.5s ease-out;
	-o-transition: opacity 0.5s ease-out;
	-webkit-transition: opacity 0.5s ease-out;
	transition: opacity 0.5s ease-out;
}

/* .btn-zodiac:hover:after {
	opacity: 1;
} */

.btn-zodiac.medium {
	padding: .8em 3.5em;
}

.btn-zodiac.small {
	padding: .8em 3.5em;
}

.btn-zodiac.primary {
	background: -webkit-linear-gradient(256deg,#0c95b4,#33759c);
	background: -moz-linear-gradient(256deg,#0c95b4,#33759c);
	background: -o-linear-gradient(256deg,#0c95b4,#33759c);
	background: linear-gradient(256deg,#0c95b4,#33759c);
	color: #fff !important;
}

.btn-zodiac.primary:after {
	background: -webkit-linear-gradient(256deg,#005e91,#00145e);
	background: -moz-linear-gradient(256deg,#005e91,#00145e);
	background: -o-linear-gradient(256deg,#005e91,#00145e);
	background: linear-gradient(256deg,#005e91,#00145e);
}

.btn-zodiac.primary:hover {
	/* color: #fff !important; */
}

.btn-zodiac.secondary {
	border: 1.5px solid #00145E;
	background: #fff;
	color: #00145E;
}

.btn-zodiac.secondary:after {
	background: -webkit-linear-gradient(256deg,#005e91,#00145e);
	background: -moz-linear-gradient(256deg,#005e91,#00145e);
	background: -o-linear-gradient(256deg,#005e91,#00145e);
	background: linear-gradient(256deg,#005e91,#00145e);
}

.btn-zodiac.secondary:hover {
	border: 1.5px solid #fff;
	color: #F5F8FA;
}

.btn-zodiac.dark-primary {
	background: -webkit-linear-gradient(258deg,#edde0e,#f2c600);
	background: -moz-linear-gradient(258deg,#edde0e,#f2c600);
	background: -o-linear-gradient(258deg,#edde0e,#f2c600);
	background: linear-gradient(258deg,#edde0e,#f2c600);
	color: #00145E;
}

.btn-zodiac.dark-primary:after {
	background: -webkit-linear-gradient(256deg,#fff,#fff);
	background: -moz-linear-gradient(256deg,#fff,#fff);
	background: -o-linear-gradient(256deg,#fff,#fff);
	background: linear-gradient(256deg,#fff,#fff);
	color: #00145E;
}

.btn-zodiac.dark-secondary {
	border: 1.8px solid #fff;
	background: transparent;
	color: #fff;
}

.btn-zodiac.dark-secondary:after {
	border: 1.8px solid #fff;
	background: -webkit-linear-gradient(256deg,#fff,#fff);
	background: -moz-linear-gradient(256deg,#fff,#fff);
	background: -o-linear-gradient(256deg,#fff,#fff);
	background: linear-gradient(256deg,#fff,#fff);
}

.btn-zodiac.dark-secondary:hover {
	color: #00145E;
}

.btn-zodiac.img {
	text-align: center;
	width: 70%;
}

.list-group-item {
	border-left: none;
	padding-left: 35px;
}

.list-group-item:first-child {
	border-radius: 0 10px 0 0;
	/*padding-left:0px !important*/;
}

.list-group-item:last-child {
	border-radius: 0 0 10px 0;
}

.jumbotron-fluid.bg-blue {
	background: transparent;
}

.jumbotron-fluid.bg-blue .white {
	color: #fff !important;
}

.jumbotron-fluid.bg-home,
.jumbotron-fluid.bg-commercial {
	width: 100%;
	height: 45pc;
	background: url("../images/fluidra-hero-image.jpg");
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center !important;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.jumbotron-fluid.bg-commercial {
	background: url("../images/fluidra-commercial-header.png");
	height: 100vh;
	position: relative;
}

.jumbotron-fluid.bg-home .opacity {
	position: relative;
	top: -4rem;
	background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
}

@media screen and (max-width: 425px) {
	.jumbotron-fluid.bg-home .opacity {
		height: calc(100% + 2pc + 4rem);
	}
}

@media screen and (min-width: 426px) {
	.jumbotron-fluid.bg-home .opacity {
		height: calc(100% + 4pc + 4rem);
	}
}

.jumbotron-fluid.bg-sec {
	height: 23pc;
}

.jumbotron-fluid.bg-n {
	background: #EDEFF0;
}

.curveDownColor.n, .curveUpColor.n {
	fill: #EDEFF0;
	stroke: #EDEFF0;
}

.brands-container {
	display: flex;
	flex-wrap: wrap;
}

div.card {
	margin: 25px 0px;
	padding: 1.2rem 1.2rem .5rem;
	background: #fff;
	border-radius: 0;
	padding: 0;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

@media screen and (min-width: 768px) {
	div.card {
		flex: 0 0 48%;
	}
}

div.card img {
	-moz-transition: transform 0.3s ease-out;
	-o-transition: transform 0.3s ease-out;
	-webkit-transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
}

div.card .card-img {
	max-height: 200px;
	width: auto;
	overflow: hidden;
	border-radius: 0;
}

div.card .card-img .picture {
	height: 150px;
	width: auto;
	object-fit: fill;
}

div.card .logo-box {
	position: relative;
	background-color: white;
	height: auto;
	text-align: left;
	/*justify-content:center;display:flex;*/
	/* top: -40px; */
}

div.card-body {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
}

@media screen and (min-width: 1200px) {
	div.card-body {
		padding: 20px 60px 25px 30px;
	}
}

div.card .card-text {
	height: auto !important;
}

.btn-zodiac {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: auto;
}

@media screen and (min-width: 991px) {
	.btn-zodiac {
		width: 240px;
	}
}

div.card .logo-box .logo {
	max-width: 250px;
	max-height: 100px;
}

div.card .card-text {
	/* margin-top: -20px !important; */
	height: 150px;
}

div.card:hover img {
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

hr.white {
	background-color: rgba(237,239,240,0.2);
}

footer {
	/* background: linear-gradient(90deg, #00145e 0, #0c95b4) !important; */
}

footer div.footer {
	font-family: "Lato",sans-serif !important;
	font-size: 18px !important;
	font-weight: 300 !important;
	line-height: 1.25 !important;
	letter-spacing: .8px;
}

footer div.footer a {
	color: #fff;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

footer div.footer a:hover {
	color: #9DA4B0;
}

ol li {
	color: #005E91;
	padding: 5px 0px;
}

.contact-us-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contact-form {
	background-color: rgba(43, 180, 211,0.3);
	border-radius: 20px;
	color: #001A70;
	padding: 20px;
	flex: 0 0 100%;
}

.contact-details {
	flex: 0 0 100%;
}

.contact-details-text {
	font-family: "Praktika Rnd Medium", sans-serif;
	color: #001A70;
	font-size: 22px;
}

@media screen and (min-width: 991px) {
	.contact-form {
		flex: 0 0 48%;
	}

	.contact-form.commercial-form {
		flex: 0 0 100%;
	}

	.contact-details {
		flex: 0 0 48%;
		padding: 0 20px;
	}
}

.contact-form p,
.contact-form input {
	color: #001A70;
	font-size: 18px;
}

.btn-submit {
	display: block;
	border-radius: 30px;
	margin-left: auto;
	width: 150px;
	background-color: #001A70;
	font-family: "Praktika Rnd Medium", sans-serif;
	font-size: 18px;
	color: white;
	padding: 10px;
	border: none;
}

li {
	color: #005E91;
}

td {
	padding: 4px;
	border: 1px solid;
}

.blue-login-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.blue-container {
	display: flex;
	flex: 1 0 100%;
	flex-wrap: wrap;
	background-color: #001A70;
	padding: 25px;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

@media screen and (min-width: 991px) {
	.blue-container {
		flex: 0 0 48%;
		padding: 50px 40px 40px;
	}
}

.blue-container .login-logo {
	width: 100%;
	flex-basis: 100%;
	margin-bottom: 20px;
}

@media screen and (min-width: 991px) {
	.blue-container .login-logo {
		margin-bottom: 30px;
	}
}

.blue-container .login-link {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: transform 0.3s ease-out;
	color: white !important;
}

.blue-container .login-link:hover {
	transform: scale(1.1);
}

.blue-container .login-text {
	font-family: "Praktika Rnd Bold", sans-serif;
	font-weight: bold;
	font-size: 36px;
	margin: 0;
	color: white;
}

.blue-container .login-arrow {
	margin-left: 10px;
}

.fluidra-pro-centre-header-logo {
	display: block;
	margin: 0 auto 30px;
}

@media screen and (max-width: 991px) {
	.fluidra-pro-centre-header-logo {
		width: 100%;
	}
}

.fluidra-pro-centre-content {
	display: flex;
	flex-wrap: wrap;
	color: #001A70;
	justify-content: space-between;
}

.fluidra-pro-centre-content p,
.contact-details p {
	color: #001A70;
}

.fluidra-pro-centre-content .left-content {
	display: flex;
	flex-direction: column;
	flex: 0 0 100%;
	margin-bottom: 40px;
}

.left-content-footer {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.left-content-footer h3 {
	margin: 0 0 0 20px;
	font-size: 32pt !important;
}

.fluidra-pro-centre-content .right-content {
	flex: 0 0 100%;
	margin-bottom: 20px;
}

.right-content .australian-map {
	width: 100%;
}

.fluidra-pro-centre-content .bottom-content {
	display: flex;
	flex-wrap: wrap;
	flex: 0 0 100%;
	justify-content: space-between;
}

.address-container {
	position: relative;
	flex: 0 0 100%;
	margin-bottom: 20px;
	color: #001A70;
	cursor: pointer;
}

@media screen and (min-width: 1180px) {
	.fluidra-pro-centre-content .bottom-content {
		justify-content: flex-start;
	}

	.fluidra-pro-centre-content .bottom-content .address-container {
		margin-right: 10px;
	}
}

@media screen and (min-width: 975px) and (max-width: 1185px) {
	.address-container.keysborough-adjust .address-text {
		top: 70px;
	}
}

.address-container:hover .address-header,
.address-container:hover .address-text {
	color: #2BB4D3;
}

.address-header {
	display: block;
	position: relative;
	font-family: "Praktika Rnd Bold", sans-serif;
	font-weight: bold;
	font-size: 24px;
	color: #00145E;
	padding-bottom: 55px;
	z-index: 1;
}

.address-text {
	display: block;
	font-family: "Praktika Rnd Regular", sans-serif;
	font-weight: normal;
	font-size: 20px;
	position: absolute;
	top: 30px;
	left: 0;
	z-index: 0;
}


@media screen and (min-width: 768px) {
	.address-container {
		flex: 0 0 48%;
	}
}

@media screen and (min-width: 991px) {
	.fluidra-pro-centre-content .left-content {
		flex: 0 0 50%;
	}

	.fluidra-pro-centre-content .right-content {
		flex: 0 0 45%;
	}

	.address-container {
		flex: 0 0 32%;
	}
}

@media screen and (min-width: 1200px) {
	.fluidra-pro-centre-content .left-content {
		flex: 0 0 45%;
	}

	.fluidra-pro-centre-content .right-content {
		flex: 0 0 50%;
	}

	.left-content-text {
		margin: auto 0;
	}

	.left-content-footer {
		margin-top: auto;
	}

	.address-container {
		flex: 0 0 24%;
	}

	.address-header {
		font-size: 20px;
	}

	.address-text {
		font-size: 18px;
	}
}

.footer-header {
	margin-bottom: 30px;
}

.generic-btn,
.footer-btn {
	display: inline-flex;
	align-items: center;
	border-radius: 30px;
	width: auto;
	background-color: #001A70;
	font-family: "Praktika Rnd Medium", sans-serif;
	font-size: 18px;
	color: white;
	padding: 10px 20px;
	border: none;
	margin-bottom: 50px;
}

.footer-btn .img-fluid {
	width: 30px;
}

.bottom-footer {
	background-color: #001A70;
	padding: 20px 0;
}

.bottom-footer-container {
	display: flex;
	flex-wrap: wrap;
}

.bottom-footer a {
	color: white;
	margin-right: 30px;
}

.bottom-footer img {
	margin-top: 20px;
}

@media screen and (min-width: 768px) {
	.bottom-footer-container {
		align-items: center;
	}

	.bottom-footer img {
		margin: 0;
		margin-left: auto;
	}
}

@media screen and (min-width: 991px) {
	.footer-btn {
		margin-bottom: 100px;
	}
}

input[type=checkbox].verification {
	visibility: hidden;
	height: 0;
	width: 0;
}

.contact-form-thanks-text {
	font-size: 24px;
	font-family: "Raleway", sans-serif !important;
	font-weight: 600;
	color: #00145E;
	padding: 10px;
}

/* Commerical page */

#about-fluidra-commercial p,
#about-fluidra-commercial .list-box {
	font-size: 20px !important;
}

#about-fluidra-commercial .col-md-4 {
	align-self: center;
}

.icon-text-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.icon-container {
	flex-basis: 100%;
	margin-bottom: 10px;
	padding: 0 15px;
}

.text-container	{
	flex-basis: 100%;
	margin: 10px 0 20px;
	padding: 0 15px;
}

.text-icon-img {
	display: block;
	max-width: 165px;
	margin: 0;
}

.text-container h3 {
	font-size: 22px !important;
}

.text-container p {
	font-size: 20px !important;
}

@media screen and (min-width: 768px) {
	.icon-container {
		flex-basis: 165px;
		margin-bottom: 20px;
		padding: 0;
	}

	.text-container {
		flex-basis: calc(100% - 200px);
		margin: 10px 0 20px;
		padding: 0;
	}
}

.commercial-header-text-img {
	display: block;
	position: absolute;
	width: 80%;
	max-width: 750px;
	margin: 0 auto;
	top: 35%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.list-item-container {
	display: flex;
	flex-wrap: wrap;
}

.list-box {
	flex-basis: 100%;
	color: black;
}

@media screen and (min-width: 768px) {
	.list-box {
		flex-basis: 50%;
	}
}

.navbar .container {
	max-width: 1164px;
}

.commercial-page .brands-container div.card {
	margin: 0 0 50px;
}

.commercial-page .brands-container div.card:nth-child(3) {
	margin: 0;
}

.commercial-page .brands-container div.card:nth-child(4) {
	margin: 0;
}

.commercial-page .jumbotron {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.news-item li {
	font-size: 20px;
}

.news-item .news-date {
	color: black;
}

.news-item .news-link {
	text-decoration: underline;
	color: #00145E;
}

.about-fluidra-logo {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
	.about-fluidra-logo {
		display: block;
		width: 75%;
		margin: 0 auto;
	}
}

.team-list-container {
	display: flex;
	flex-wrap: wrap;
	width: 90%;
	margin: 0 auto;
	align-items: center;
	justify-content: space-around;
}

.team-member {
	flex-basis: 100%;
	margin-bottom: 30px;
	max-width: 320px;
}

.team-member.first {
	flex-basis: 100% !important;
	max-width: unset;
}

.team-member.first .team-member-img {
	max-width: 223px;
}

.team-member-img {
	display: block;
	width: 70%;
	border-radius: 50%;
	margin: 0 auto 10px;
}

.team-member-name,
.team-member-role {
	color: black;
	text-align: center;
}

.team-member-role {
	font-size: 22px !important;
	line-height: normal !important;
}


.project-header-container {
	background: url(../images/projects-header-img.png) center no-repeat;
	background-size: cover;
	border-top-left-radius: 75px;
	border-bottom-right-radius: 75px;
	padding: 60px;
}

.project-header-title {
	color: white;
	font-size: 24pt !important;
}

@media screen and (min-width: 768px) {
	.team-member {
		flex-basis: 50%;
	}

	.team-member-role {
		min-height: 50px;
	}
}

@media screen and (min-width: 960px) {
	.team-member {
		flex-basis: 32%;
	}

	.project-header-title {
		width: 70%;
		font-size: 31.3pt !important;
	}
}

.news-article {
	padding-bottom: 15px;
}

.catalogue-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.catalogue-img {
	margin-bottom: 24px;
	flex-basis: calc(50% - 12px);
}

.catalogue-img img {
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (min-width: 768px) {
	.catalogue-img {
		flex-basis: calc(33.33% - 12px);
	}
}



/*# sourceMappingURL=zodiac.css.map */
