.default-section {
  padding: 100px 0px;
}
.default-section.with-background {
  background: #f6f6f6;
}

.default-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  position: relative;
  display: inline-flex;
  color: #233038;
  letter-spacing: 1px;
}
.default-title::after {
  content: "";
  position: absolute;
  background: rgba(35, 48, 56, 0.5);
  width: 120%;
  height: 50%;
  bottom: -30%;
  left: 0px;
  transform: translateY(-50%);
}

.default-title.type-left::after {
  width: 5px;
  height: 100%;
  bottom: unset;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}

.category-card {
  text-align: center;
}
.category-card img {
  margin-bottom: 15px;
}
.category-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0e2433;
}
.category-card p {
  font-size: 14px;
}

.product-card {
  padding-bottom: 15px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 10px #979797;
}
.product-card .image-wrapper {
  height: 200px;
  overflow: hidden;
  margin-bottom: 15px;
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s ease;
  transform: scale(1);
}
.product-card .info-wrapper {
  padding: 15px;
}
.product-card .title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0e2433;
}
.product-card:hover img {
  transform: scale(1.1);
}
.product-card .description {
  min-height: 100px;
  margin-bottom: 15px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#topnav .logo {
  padding: 0px;
}
#topnav .logo-icon {
  width: 65px;
}
#topnav nav ul li {
  margin-right: 30px;
}
#topnav nav ul li:last-of-type {
  margin-right: 0px;
}
#topnav nav ul li.active > a {
  border-bottom: none;
  background: transparent;
}
#topnav nav ul li a {
  text-decoration: none;
  padding: 0px;
}

body {
  font-size: 14px;
  color: #555;
  font-family: "Open Sans", sans-serif;
}

.btn-primary {
  background: #90A3A7;
  border: none;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background: #90A3A7 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.secondary-color {
  color: #90A3A7;
}

#main-header {
  position: fixed;
  top: 0px;
  z-index: 1;
  width: 100%;
  transition: all 0.5s ease;
}
#main-header.hide {
  top: -100%;
}
#main-header.background {
  background: white;
  box-shadow: 0px 0px 20px #eaeaea;
}
#main-header.background .name-logo {
  opacity: 1;
}
#main-header .navbar-brand {
  display: flex;
  align-items: center;
}
#main-header .logo {
  width: 55px;
  margin-right: 15px;
}
#main-header .name-logo {
  font-size: 16px;
  font-weight: 700;
  color: black;
  opacity: 0;
  transition: all 0.5s ease;
}
#main-header .navbar-nav .nav-item {
  margin-right: 15px;
}
#main-header .navbar-nav .nav-item:last-of-type {
  margin-right: 0px;
}
#main-header .navbar-nav .nav-link {
  color: #233038;
  padding: 5px 15px;
  transition: all 0.5s ease;
  font-weight: 700;
  letter-spacing: 1px;
}
#main-header .navbar-nav .nav-link:hover {
  color: #90A3A7;
}
#main-header .menu {
  width: 20px;
}

.home-banner {
  min-height: 100vh;
}
.home-banner .info-wrapper {
  width: 65%;
  padding: 30px;
  min-height: 300px;
  background: rgba(35, 48, 56, 0.8);
  color: white;
}
.home-banner .info-wrapper .title {
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 900;
}
.home-banner .info-wrapper .description {
  font-size: 16px;
  line-height: 1.8;
}
.home-banner .item {
  height: 100%;
  display: flex;
  align-items: center;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.feature-card {
  margin-bottom: 30px;
}
.feature-card .title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}
.feature-card hr {
  margin-top: 10px;
  border-top: 2px solid #90A3A7;
}
.feature-card .description {
  font-size: 14px;
  line-height: 1.8;
}

.get-intouch-left-address p, .get-intouch-left-address a {
  color: white !important;
  text-decoration: none;
}

.contact h2 {
  color: white;
  font-size: 38px;
  letter-spacing: 2px;
  font-weight: 700;
}

.modal .modal-title {
  font-weight: 700;
}
.modal .label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.modal .description {
  line-height: 1.8;
  margin-bottom: 20px;
}
.modal .description ol {
  list-style: disc;
  padding-left: 15px;
}

.floating-icon {
  position: fixed;
  z-index: 2100;
  right: 30px;
  bottom: 30px;
  background: #a3c614;
  border-radius: 100%;
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.5s ease;
  transform: scale(1);
}
.floating-icon:hover {
  color: white;
  transform: scale(1.1);
  text-decoration: none;
}

/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 600px) {
  .default-section {
    padding: 50px 0px;
  }

  #main-header {
    background: white;
  }
  #main-header .logo {
    width: 40px;
    margin-right: 10px;
  }
  #main-header .name-logo {
    font-size: 12px;
    opacity: 1;
  }
  #main-header .navbar-nav {
    text-align: center;
  }
  #main-header .navbar-nav .nav-item {
    margin-right: 0px;
  }

  .home-banner .info-wrapper {
    width: 100%;
  }

  .default-title::after {
    width: 100%;
  }
}

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