@charset "UTF-8";
/*============================================================
  SASS Imports
============================================================*/
/*============================================================
  Font Awesome
============================================================*/
/*!
 * Font Awesome Free 5.12.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Abril+Fatface");
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("../webfonts/fa-solid-900.eot");
  src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg");
}

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

/*============================================================
  Variables
============================================================*/
/* Typography
---------------------------------------------------*/
/* Theme Colors
---------------------------------------------------*/
/* Nav Links
---------------------------------------------------*/
/*============================================================
  Mixins
============================================================*/
/* Box Sizing
---------------------------------------------------*/
/* Positions
---------------------------------------------------*/
/* Borders
---------------------------------------------------*/
/* Icons
---------------------------------------------------*/
/* Lists
---------------------------------------------------*/
/* Flexbox
---------------------------------------------------*/
/* Transform
---------------------------------------------------*/
/*============================================================
  Theme Base Styling
============================================================*/
body {
  font-size: 16px;
  font-family: "Poppins", Arial, Tahoma, sans-serif;
  line-height: 1.75;
  color: #333;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

main {
  padding: 3rem 0;
  overflow-x: hidden;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

/* Typography
---------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  color: #00AFF0;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
  padding-top: 1rem;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0;
  padding: 0.5rem 0 1rem 0;
}

dl, ol, ul {
  margin: 0;
  padding: 0.5rem 0 1rem 1.5rem;
}

ol li,
ul li {
  padding-bottom: 0.125rem;
}

strong {
  color: #00AFF0;
  font-weight: 600;
}

b {
  font-weight: 600;
}

/* Links
---------------------------------------------------*/
a {
  color: #00AFF0;
}

a:hover {
  color: #333;
  text-decoration: none;
}

/* button
---------------------------------------------------*/
button,
input[type="button"],
input[type="submit"] {
  outline: none !important;
}

/* Media
---------------------------------------------------*/
img {
  max-width: 100%;
}

a > img:hover {
  opacity: .8;
}

figure {
  margin: 1rem 0 0.5rem;
}

figcaption {
  padding-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: bold;
  font-style: italic;
  text-align: center;
}

object {
  pointer-events: none;
}

iframe {
  width: 100%;
  margin: 0px;
  padding: 0px;
  border: 0px;
  display: block;
}

/* Table
---------------------------------------------------*/
table {
  border-collapse: collapse;
  margin: 1rem 0 2rem;
}

table th, table td {
  padding: 1rem 0.5rem;
  line-height: 1.5;
  vertical-align: text-top;
}

table thead {
  background: #00AFF0;
}

table thead th, table thead td {
  padding: 1rem 0.5rem;
  border: 1px solid #fff;
  color: #fff;
}

table tbody th, table tbody td {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ccc;
}

table tbody th {
  font-size: 1rem;
  color: #00AFF0;
}

table tbody td {
  font-size: 0.9rem;
}

table tfoot th, table tfoot td {
  font-size: 0.9rem;
  font-weight: bold;
  font-style: italic;
}

/* Forms
---------------------------------------------------*/
form {
  margin: 1.5rem 0;
}

fieldset {
  margin-top: 2rem;
}

fieldset:first-child {
  margin-top: 0;
}

legend {
  margin-bottom: 1rem;
  color: #00AFF0;
  font-size: 1.75rem;
  font-weight: 700;
}

select {
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 3px;
  outline: none;
  font-size: 1rem;
  color: #333;
}

select:focus {
  border-color: #00AFF0;
  outline: none;
}

select[disabled] {
  background: #ddd;
}

input[type="checkbox"],
input[type="radio"] {
  margin: 0 0.5rem 0;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
input[type="submit"] {
  border-radius: 4px;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
input[type="submit"]:focus {
  border-color: #00AFF0;
  -webkit-box-shadow: 0 0 2px #00AFF0;
          box-shadow: 0 0 2px #00AFF0;
  outline: 0 none;
}

textarea,
input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="date"] {
  display: block;
  margin-bottom: 1.25rem;
  padding: 0.5rem .75rem;
  width: 100%;
  border: 1px solid #ddd;
  color: #333;
}

button,
input[type="submit"],
input[type="button"],
.button {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.75rem 2rem;
  background: #00AFF0;
  border: 1px solid #00AFF0;
  border-radius: 4px;
  outline: none;
  color: #fff;
}

button:hover, button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus,
.button:hover,
.button:focus {
  background: #333;
  border-color: #333;
  color: #fff;
}

textarea {
  max-width: 100%;
  min-height: 12rem;
}

/*============================================================
  Bootstrap Adjustment
============================================================*/
.row.no-col-gutters > [class^="col-"],
.row.no-col-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

/*============================================================
  Header Menu
============================================================*/
.navbar-brand {
  display: block;
}

#navbar-right {
  padding-left: 3rem;
  width: 100%;
}

#navbar-right #navbar-info {
  margin-bottom: 1rem;
  padding: 0.5rem 0 0.5rem;
  border-bottom: 1px solid #ddd;
  text-align: right;
  font-size: 0.8rem;
}

#navbar-right #navbar-info ul {
  padding: 0;
}

#navbar-right #navbar-info ul li {
  list-style: none;
  padding: 0;
}

#navbar-menu {
  text-align: right;
}

#header-nav {
  z-index: 1071;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  font-size: 0.9rem;
}

#header-book-now {
  border-radius: 3px;
  margin: 0 0 0 1rem;
  color: #fff;
  line-height: 3;
  text-transform: uppercase;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-nav > li {
  position: relative;
  padding-bottom: 0;
}

.navbar-nav > li > a {
  display: inline-block;
  padding: 0 1.25rem;
  line-height: 3;
  color: #333;
}

.navbar-nav > li > a:hover {
  color: #00AFF0;
}

.navbar-nav > li > a.active {
  color: #00AFF0;
}

.navbar-toggler {
  padding: 0.5rem;
  background: none;
  border: none !important;
  border-radius: 10px;
  color: #333;
  border: none;
  background: none;
}

.navbar-toggler:active, .navbar-toggler:focus {
  background: none;
}

.navbar-toggler:active path, .navbar-toggler:focus path {
  fill: none;
  stroke: #333;
}

.navbar-toggler:active {
  color: #00AFF0;
}

.navbar-toggler:focus {
  color: #00AFF0;
  outline: 0 none;
}

.navbar-close {
  display: none;
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  top: 2rem;
  right: 2rem;
  z-index: 1;
  cursor: pointer;
}

.navbar-close:before, .navbar-close:after {
  content: '';
  position: absolute;
  top: 0.9rem;
  left: 0.25rem;
  right: 0.25rem;
  width: 1.5rem;
  height: 2px;
  background: #ddd;
}

.navbar-close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar-close:hover:before, .navbar-close:hover:after, .navbar-close:focus:before, .navbar-close:focus:after {
  background: #fff;
}

/* Mega Menu
---------------------------------------------------*/
.megamenu-parent > a:after {
  content: "\f107";
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  padding-left: 0.25rem;
}

.megamenu-parent:hover > .megamenu-wrapper {
  visibility: visible;
  opacity: 1;
}

.megamenu-wrapper {
  margin: 0 auto;
  padding: 0 15px;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 105px;
  left: 0;
  z-index: 10;
}

.megamenu-holder {
  zoom: 1;
  margin: 0;
  padding: 0;
  width: 1200px;
  border-top-width: 3px;
  border-top: 5px solid #00AFF0;
  background: #fff;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

.megamenu {
  zoom: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.megamenu .menu-item {
  padding: 0.75rem 1rem 1.5rem;
  font-size: 0.8rem;
}

.megamenu .menu-item:not(:last-child) {
  border-right: 1px solid #ccc;
}

.megamenu .menu-item .button {
  padding: 0.5rem 0.75rem;
}

/* Nav Responsive
---------------------------------------------------*/
@media (max-width: 1199.98px) {
  .megamenu-wrapper {
    left: -30vw;
  }
  .megamenu-holder {
    width: 95vw;
  }
}

@media (max-width: 991.88px) {
  #navbar-right #navbar-info {
    display: none;
  }
  .navbar-collapse {
    opacity: 0;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem 15px;
    background: rgba(0, 175, 240, 0.9);
    overflow: scroll;
  }
  .navbar-collapse.active {
    opacity: 1;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar-collapse.active .navbar-close {
    display: inline-block;
    position: fixed;
    top: 2.5rem;
    right: 2.5rem;
    background: none;
    border: none;
    color: #fff;
  }
  .navbar-nav {
    display: block;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: auto;
    text-align: center;
  }
  .navbar-nav > li > a {
    color: #ddd;
    font-size: calc(1rem + 0.5vw);
    line-height: 3.5;
  }
  .navbar-nav > li > a.active {
    color: #fff;
  }
  #btn-booking {
    margin-left: 0;
    margin-top: 1rem;
  }
  .megamenu-wrapper,
  .megamenu-parent > a:after {
    display: none;
  }
  #header-book-now {
    margin: 1rem 0 0;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand svg {
    max-width: 75%;
  }
}

@media (min-width: 992px) {
  .navbar-nav li {
    border-right: 1px solid #ddd;
  }
  .navbar-nav li:last-child {
    border-right: none;
  }
}

/*============================================================
  Footer
============================================================*/
#footer {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 0.5rem;
  color: #fff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00bdf2+0,00aff0+100 */
  background: #00bdf2;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#00bdf2), to(#00aff0));
  background: linear-gradient(to bottom, #00bdf2 0%, #00aff0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00bdf2', endColorstr='#00aff0',GradientType=0 );
  /* IE6-9 */
}

#footer:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../images/patterns/pattern-peca-wave.png);
  background-repeat: repeat;
}

#footer .container {
  position: relative;
  z-index: 1;
}

#footer h1, #footer h2, #footer h3, #footer h4, #footer h5, #footer h6 {
  color: #fff;
}

#footer .nav-title {
  position: relative;
  padding-bottom: 0.5rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}

#footer .nav-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  border-bottom: 3px solid #fff;
}

#footer ul {
  padding-top: 1rem;
  padding-left: 0;
  list-style: none;
}

#footer ul > li {
  padding-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

#footer a {
  color: #fff;
  padding: 0.25rem 0.125rem;
}

#footer a:hover, #footer a.active {
  color: #71d8ff;
}

#footer a:hover path, #footer a.active path {
  fill: #71d8ff;
}

#footer .footer-partner {
  margin: 0.75rem 0;
  max-width: 9rem;
}

.footer-content {
  padding: 1rem 0 1.5rem;
}

#copyright {
  font-size: 0.8rem;
  margin: 1.25rem 0 0;
  text-align: center;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 0;
  list-style: none;
}

/* Footer Social Logos
---------------------------------------------------*/
#social-wrapper {
  text-align: right;
}

#social-wrapper a {
  padding: 0;
}

#social-wrapper img:hover {
  opacity: .6;
}

#social-wrapper span:not(:last-child) {
  margin-right: 1rem;
}

/* Footer Brand Logo and Copyright
---------------------------------------------------*/
#footer-brand {
  text-align: center;
}

#footer-brand img {
  max-width: 200px;
}

/* Footer Responsive
---------------------------------------------------*/
@media (min-width: 992px) {
  .footer-links {
    padding-top: 0.5rem;
  }
  .footer-links li {
    padding-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .footer-links {
    text-align: center;
  }
  .footer-links li {
    display: block;
    width: 100%;
    padding-bottom: 1rem;
  }
  .footer-links li a {
    font-size: 1rem;
  }
}

@media (max-width: 991.98px) {
  .footer-links {
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-pack: center;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -ms-flex-align: flex-start;
    -webkit-box-align: start;
            align-items: flex-start;
    padding: 0;
    list-style: none;
  }
  #social-wrapper {
    margin-top: 2rem;
    text-align: center;
  }
}

/*============================================================
  Sections
============================================================*/
main#home {
  padding: 0;
}

.section-heading {
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-header {
  margin-bottom: 1rem;
  text-align: center;
}

/* Section - Home Jumbotron
---------------------------------------------------*/
#jumbotron {
  padding-top: 3rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

#jumbotron h1 {
  text-indent: -9999px;
}

#disinfectant-water {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

#disinfectant-water img {
  max-width: 100%;
}

#product-hero {
  margin-top: 3rem;
}

#water {
  position: relative;
  margin-top: -20rem;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00bdf2+0,00aff0+100 */
  background: #00bdf2;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#00bdf2), to(#00aff0));
  background: linear-gradient(to bottom, #00bdf2 0%, #00aff0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00bdf2', endColorstr='#00aff0',GradientType=0 );
  /* IE6-9 */
}

#water:after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/backgrounds/light-burst.png);
  background-position: center 57%;
  background-repeat: no-repeat;
  background-size: 100%;
}

#water-surface {
  width: 100%;
  min-height: 25rem;
  background: url(../images/patterns/pattern-peca-wave.png);
  background-repeat: repeat;
}

#water-surface:before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 2rem;
  background: #003D68;
  border-top: 1.5rem solid #E1F3FC;
  border-bottom: 3rem solid #44C7F4;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

#water-surface:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+3,0+75,1+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(3%, rgba(255, 255, 255, 0)), color-stop(75%, rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 3%, rgba(255, 255, 255, 0) 75%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
  /* IE6-9 */
}

#water #curve {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 1199.98px) {
  #jumbotron h1 {
    font-size: 2rem;
  }
  #product-hero {
    margin-top: 1.5rem;
  }
  #jumbotron {
    padding-top: 0;
  }
  #naoclean-logo img {
    max-width: 100%;
  }
  #disinfectant-water img {
    max-width: 80%;
  }
}

@media (max-width: 575.98px) {
  #product-hero {
    margin-top: 1rem;
  }
}

@media (min-width: 1200px) {
  #water:after {
    background-position: -10rem 57%;
  }
  #water .container {
    position: relative;
  }
  #water #curve {
    left: -22%;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

/* Section - Home Benefits
---------------------------------------------------*/
#benefits {
  padding: 2rem 0 3rem;
}

#benefits .icon-holder {
  text-align: center;
}

#benefits .icon-holder img {
  max-width: 75%;
}

#benefits .icon-holder p {
  font-weight: bold;
}

#benefits .icon-holder em, #benefits .icon-holder .text-highlight {
  display: block;
}

@media (max-width: 575.98px) {
  #benefits .icon-holder p {
    font-size: 0.8rem;
  }
}

#certified {
  padding-bottom: 2rem;
  text-align: center;
}

#usage {
  padding: 4rem 0;
  background: #ddd url(../images/backgrounds/background-water-571434190.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
}

#partners {
  padding: 3rem 0 2rem;
  text-align: center;
}

.brand-logo {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.brand-logo img {
  margin-bottom: 3rem;
}

/* Section - How to Use / Guidlines
---------------------------------------------------*/
#guidelines figure {
  border: 1px solid #333;
  margin-bottom: 1rem;
}

#guidelines .panel {
  margin-bottom: 1rem;
  text-align: center;
}

#guidelines .panel-wrapper {
  margin-bottom: 2rem;
}

#guidelines .panel-heading {
  padding-top: 0.25rem;
  font-size: 1.5rem;
}

/* Section - Areas of Application
---------------------------------------------------*/
#areas .row {
  margin-left: -0.125rem;
  margin-right: -0.125rem;
}

#areas .row > [class^="col-"],
#areas .row > [class*=" col-"] {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

#areas .bg-img {
  position: relative;
  min-height: 15rem;
  margin-bottom: 0.25rem;
}

#areas .heading {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  text-shadow: 2px 2px 5px #000;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.5+80 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0.5) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=0 );
  /* IE6-9 */
}

.bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#hospital.bg-img {
  background-image: url(../images/areas-of-application/hospital.jpg);
}

#restaurant.bg-img {
  background-image: url(../images/areas-of-application/restaurant-and-cafe.jpg);
}

#kitchen.bg-img {
  background-image: url(../images/areas-of-application/kitchen.jpg);
}

#grocery.bg-img {
  background-image: url(../images/areas-of-application/grocery-store.jpg);
}

#classroom.bg-img {
  background-image: url(../images/areas-of-application/education-centre.jpg);
}

#kindergarten.bg-img {
  background-image: url(../images/areas-of-application/child-care-centre.jpg);
}

#office.bg-img {
  background-image: url(../images/areas-of-application/office.jpg);
}

#hotel.bg-img {
  background-image: url(../images/areas-of-application/residential-and-hotel.jpg);
}

#toilet.bg-img {
  background-image: url(../images/areas-of-application/toilet.jpg);
}

@media (max-width: 991.98px) {
  #areas .bg-img {
    min-height: 10rem;
  }
  #areas .heading {
    font-size: 1.1rem;
  }
}

/* Section - Certificates
---------------------------------------------------*/
#certificates .row > [class^="col-"],
#certificates .row > [class*=" col-"] {
  margin-bottom: 1rem;
}

#certificates figure img {
  border: 1px solid #ccc;
}

/*============================================================
  Typography
============================================================*/
.intro-text {
  font-size: 1.2rem;
}

.text-highlight {
  color: #00AFF0;
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.font-w300 {
  font-weight: 300;
}

/* Alerts
---------------------------------------------------*/
.alert {
  margin: 1rem 0 2rem;
  padding: 1rem;
  background: rgba(0, 175, 240, 0.1);
  border: 1px solid #00AFF0;
  border-radius: 8px;
  color: #00AFF0;
}

.alert-warning {
  border-color: #B81111;
  background: rgba(184, 17, 17, 0.1);
  color: #B81111;
}

/*============================================================
  Icons
============================================================*/
.social-wrapper {
  margin-bottom: 1.25rem;
}

.social-logo {
  display: inline-block;
  margin-top: 0.5rem;
}

.social-logo a:hover path {
  fill: #333;
}

/*============================================================
  Lists
============================================================*/
.list-col-2 {
  -webkit-columns: 2;
  columns: 2;
}

/* Number Lists
---------------------------------------------------*/
.list-number-special {
  list-style: none;
  padding-left: 0.5rem;
}

.list-number-special > li {
  position: relative;
  padding: 0.275rem 0 1.25rem 2.5rem;
  counter-increment: my-awesome-counter;
}

.list-number-special > li:before {
  content: counter(my-awesome-counter) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: #00AFF0;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 700;
  z-index: 10;
}

/* Icon Lists
---------------------------------------------------*/
.icon-list {
  list-style: none;
  padding-left: 0;
}

.icon-list > li {
  position: relative;
  padding-left: 1.75rem;
}

.icon-list > li:last-child {
  padding-bottom: 0;
}

.icon-list .fa {
  position: absolute;
  top: 0.125rem;
  left: 0;
  font-size: 1rem;
}

.icon-list #tel {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 600;
}

/*============================================================
  Table
============================================================*/
#biocidal-table thead th {
  text-align: right;
}

#biocidal-table thead th:nth-child(1) {
  width: 10%;
  text-align: left;
}

#biocidal-table thead th:nth-child(2) {
  width: 10%;
}

#biocidal-table thead th:nth-child(3) {
  width: 10%;
}

#biocidal-table thead th:nth-child(4) {
  width: 10%;
}

#biocidal-table thead th:nth-child(5) {
  width: 20%;
}

#biocidal-table thead th:nth-child(6) {
  width: 10%;
}

#biocidal-table thead th:nth-child(7) {
  width: 10%;
}

#biocidal-table thead th:nth-child(8) {
  width: 20%;
  text-align: right;
}

#biocidal-table tbody tr:nth-child(13) {
  background: #FFF59B;
}

#biocidal-table tbody td {
  text-align: right;
}

#biocidal-table tfoot b {
  color: #00AFF0;
}

#pathogen-table thead th:nth-child(1), #pathogen-table thead td:nth-child(1) {
  width: 10%;
  vertical-align: middle;
}

#pathogen-table thead th:nth-child(2), #pathogen-table thead td:nth-child(2) {
  width: 40%;
  vertical-align: middle;
}

#pathogen-table thead th:nth-child(3), #pathogen-table thead td:nth-child(3) {
  min-width: 9rem;
  background: #00AFF0;
}

#pathogen-table thead th:nth-child(4), #pathogen-table thead td:nth-child(4) {
  min-width: 9rem;
  background: #004A8F;
}

#pathogen-table thead th:nth-child(5), #pathogen-table thead td:nth-child(5) {
  min-width: 9rem;
  background: #AE8D55;
}

#pathogen-table thead th:nth-child(6), #pathogen-table thead td:nth-child(6) {
  min-width: 9rem;
  background: #00ABA4;
}

#pathogen-table thead th p, #pathogen-table thead td p {
  padding: 0.325rem 0 0.325rem 0;
  font-size: 0.75rem;
  font-weight: 300;
}

#pathogen-table tbody tr:first-child td:nth-child(2) {
  width: 18%;
}

#pathogen-table tbody .merged-cell {
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  vertical-align: middle;
}

#pathogen-table tbody .bb-0 {
  border-bottom: none;
}

#pathogen-table tbody .cell-arrow span {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
}

#pathogen-table tbody .cell-arrow:before, #pathogen-table tbody .cell-arrow:after {
  content: '';
  position: absolute;
}

#pathogen-table tbody .cell-arrow:before {
  top: 1rem;
  left: 2.625rem;
  right: 2.625rem;
  bottom: 8rem;
  background: #00AFF0;
}

#pathogen-table tbody .cell-arrow:after {
  content: '';
  border-left: 3.5rem solid transparent;
  border-right: 3.5rem solid transparent;
  border-top: 8rem solid #00AFF0;
  left: 0;
  right: 0;
  bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 75%;
  /* Need a specific value to work */
  height: 2rem;
}

#pathogen-table tbody .cell-arrow.naocl:before {
  background: #00AFF0;
}

#pathogen-table tbody .cell-arrow.naocl:after {
  border-top-color: #00AFF0;
}

#pathogen-table tbody .cell-arrow.bleach:before {
  background: #004A8F;
}

#pathogen-table tbody .cell-arrow.bleach:after {
  border-top-color: #004A8F;
}

#pathogen-table tbody .cell-arrow.iodine:before {
  background: #AE8D55;
}

#pathogen-table tbody .cell-arrow.iodine:after {
  border-top-color: #AE8D55;
}

#pathogen-table tbody .cell-arrow.alcohol:before {
  background: #00ABA4;
}

#pathogen-table tbody .cell-arrow.alcohol:after {
  border-top-color: #00ABA4;
}

#pathogen-table tbody .non-effective {
  background: #777;
}

#pathogen-table tbody .failure {
  background: #000;
}

@media (max-width: 991.98px) {
  .table-wrapper {
    overflow-x: scroll !important;
  }
}

/*============================================================
  Google Map
============================================================*/
#google-map {
  margin-top: 0.5rem;
  margin-bottom: 3rem;
  width: 100%;
  height: 25rem;
}

/*============================================================
  Panels
============================================================*/
.panel {
  margin-bottom: 2.5rem;
}

/*============================================================
  Forms
============================================================*/
.form-well {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 2rem 2rem 1rem;
  border: 1px solid #00AFF0;
  background: #fff;
  border-radius: 3px;
}

.form-well .button-remove {
  position: absolute;
  width: 2rem;
  height: 2rem;
  background: #00AFF0;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  cursor: pointer;
}

.form-well:first-child {
  display: none;
}

.form-well:first-child .button-remove {
  display: none;
}

.required {
  color: #00AFF0;
}

span.error {
  display: block;
  margin-top: -1rem;
  margin-bottom: 1rem;
  padding-top: 0.25rem;
  color: #f00;
}

/* Form - Enquiry (Tour)
---------------------------------------------------*/
#enquiry-form {
  margin-bottom: 5rem;
}

#enquiry-form label {
  padding-top: 0.5rem;
  font-weight: bold;
}

#enquiry-form input[type="button"],
#enquiry-form input[type="submit"] {
  margin-left: 15px;
  margin-right: 15px;
}

#enquiry-form input[type="submit"] {
  width: 100%;
}

#enquiry-form .tour-link {
  padding-top: 0.5rem;
}

#enquiry-tour-info > .form-well:nth-child(2) .button-remove {
  display: none;
}

@media (min-width: 992px) {
  #enquiry-form label {
    text-align: right;
  }
  #enquiry-form input[type="submit"] {
    width: auto;
  }
}

/* Section - Contact Info
---------------------------------------------------*/
#contact-info {
  padding: 2rem 2.5rem;
  background: #f0f0f0 url(../images/backgrounds/background-water-571434190.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#contact-info .company-name {
  font-size: 1.25rem;
}

#contact-info .company-tel, #contact-info .company-email {
  font-size: 1.325rem;
  font-weight: 300;
}

#contact-info .company-tel .fa, #contact-info .company-email .fa {
  top: 0.425rem;
}

#contact-info .icon-list {
  padding-top: 1rem;
  padding-left: 0.5rem;
}

#contact-info .icon-list > li {
  padding-left: 2.5rem;
  padding-bottom: 1rem;
}

#contact-info .icon-list > li:last-child {
  padding-bottom: 0;
}

#contact-info .icon-list .fa {
  font-size: 1.5rem;
  color: #00AFF0;
}

@media (min-width: 992px) {
  #contact-info {
    height: calc(100% - 7rem);
  }
}

/*============================================================
  Accordion
============================================================*/
.accordion {
  margin: 1.5rem 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.accordion > li {
  position: relative;
  margin-bottom: 1rem;
  padding: 0;
  border: 1px solid #00AFF0;
  border-radius: 4px;
  counter-increment: my-awesome-counter;
}

.accordion > li::before {
  content: counter(my-awesome-counter) ".";
  position: absolute;
  top: 1.125rem;
  left: 1rem;
  margin-right: 0.5rem;
  color: #00AFF0;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 600;
  z-index: 10;
}

.accordion > li:hover, .accordion > li.active {
  border-color: #00AFF0;
}

.accordion > li:hover::before, .accordion > li.active::before {
  color: #fff;
}

.accordion-control {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 1rem 3rem 1rem 4.25rem;
  background: transparent;
  border: none;
  outline: none;
  color: #333;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
}

.accordion-control:after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  color: #00AFF0;
  font-size: 2rem;
  font-weight: 300;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.accordion-control.active:after {
  content: "–";
}

.accordion-control:hover, .accordion-control.active {
  background-color: #00AFF0;
  color: #fff;
}

.accordion-control:hover:after, .accordion-control.active:after {
  color: #fff;
}

.accordion-control:hover strong, .accordion-control.active strong {
  color: #fff;
}

.accordion-control:focus {
  outline: none;
}

.accordion-panel {
  display: none;
  padding: 0.5rem 1rem;
}

.accordion-panel ul li {
  list-style: disc;
  padding-bottom: 0.5rem;
}

.accordion-panel ul > li:last-child {
  padding-bottom: 0;
}

.accordion-panel i {
  font-size: 0.9rem;
}

.accordion-panel h5 {
  padding-bottom: 0.25rem;
}

@media (max-width: 575.98px) {
  .accordion-control {
    font-size: 1.1rem;
  }
}

/*============================================================
  Baguette Box plugin
============================================================*/
#baguetteBox-overlay .full-image figcaption {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.baguetteBox-button:hover svg polyline, .baguetteBox-button:hover svg g {
  stroke: #00AFF0;
}

/*============================================================
  AOS Animation Plugin
============================================================*/
.aos-wrapper {
  overflow: hidden;
}
/*# sourceMappingURL=main.css.map */