@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css");
@font-face {
  font-family: myfont;
  src: url("/font/Product Sans Regular.ttf");
}
@font-face {
  font-family: myfont-bold;
  src: url("/font/Product Sans Bold.ttf");
}
body {
  background-color: whitesmoke;
  scroll-behavior: smooth;
}
* {
  font-family: myfont;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  transition: 1s;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  transition: 1s;
  background: #80b33d;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}
.text-justify {
  text-align: justify;
}
.text-white {
  color: whitesmoke;
}
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
li {
  list-style: none;
}
.text-grey {
  color: #888;
}
.green {
  color: #80b33d;
}
a:hover {
  text-decoration: none;
}
/* NAVBAR */
#navbar {
  transition: top 0.4s;
}

.navbar {
  z-index: 3;
  width: 100%;
  position: fixed;
  display: flex;
  align-items: center;
  padding: 0;
  transition: 0.5s;
  background-color: whitesmoke;
}
.navbar.trans {
  background-color: transparent;
}
.navbar.toping {
  transition: 0.5s;
  background-color: whitesmoke;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #282828;
}
.nav-menu {
  display: flex;
  align-items: center;
  margin: 0;
}

/* .nav-item {
} */

.navbar .nav-link {
  color: whitesmoke;
  padding: 30px 30px;
  font-weight: 600;
  text-transform: uppercase;
  overflow-x: hidden;
  position: relative;
  transition: 0.25s ease all;
  text-decoration: none;
  color: #282828;
}
.navbar.trans .nav-link {
  color: whitesmoke;
}
.navbar.trans .nav-link.active {
  color: #80b33d;
}
.navbar.toping .nav-link {
  color: #282828;
}

.bg-false .nav-link {
  color: #282828;
}

.nav-link::after {
  content: " ";
  position: absolute;
  display: block;
  bottom: 0;
  left: -100%;
  height: 5px;
  width: 100%;
  background: #80b33d;
  transition: 0.5s ease all;
}
.nav-link:hover::after {
  left: 0;
}
.nav-link.active {
  color: #80b33d;
}

.nav-logo {
  padding: auto;
  margin-left: 20px;
}
.navbar.trans .nav-logo img {
  content: url("/icon/logo_light.svg");
}
.navbar.toping .nav-logo img {
  content: url("/icon/logo_dark.svg");
}
footer {
  padding-top: 40px;
  width: 100%;
  background-color: #282828;
}
footer .btn-icon {
  margin: 20px 10px;
  color: #888;
  font-size: 20px;
}
footer .btn-icon:hover {
  color: #80b33d;
}
footer .input {
  border: 3px solid #888;
  border-radius: 0;
  margin: 0;
  background-color: transparent;
  padding: 10px;
  font-size: 15px;
  color: #888;
}

footer .sub {
  margin: 0;
  background-color: #80b33d;
  color: whitesmoke;
  border: 3px solid #80b33d;
  padding: 10px;
  font-size: 15px;
}
footer .menu {
  margin: 0 auto;
}
footer .menu a:hover {
  color: #80b33d;
}
footer .cr {
  width: 100%;
  background: #313131;
}

.img-comp-container {
  position: relative;
  height: 300px; /*should be the same height as the images*/
  width: 100%;
}

.img-comp-img {
  position: absolute;
  width: auto;
  height: auto;
  overflow: hidden;
}

.img-comp-img img {
  display: block;
}

.img-comp-slider {
  position: absolute;
  z-index: 2;
  cursor: ew-resize;
  /*set the appearance of the slider:*/
  width: 40px;
  height: 40px;
  background-color: #80b33d;
  opacity: 0.9;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 40px;
    flex-direction: column;
    background-color: whitesmoke;
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }

  .navbar.trans .nav-link {
    color: rgb(34, 34, 34);
  }
  .navbar.trans .nav-link.active {
    color: #80b33d;
  }

  .bar {
    background-color: whitesmoke;
  }

  .nav-menu.active {
    left: 0;
    padding: 0;
  }

  .nav-logo img {
    content: url("/icon/gwa.svg");
  }

  .nav-item {
    margin: 0;
  }

  .hamburger {
    padding: 10px;
    display: block;
    cursor: pointer;
  }
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.btn-white {
  color: whitesmoke;
  border: 3px solid whitesmoke;
  background-color: transparent;
  font-weight: bold;
}
.btn-white:hover {
  transition: 0.4s;
  color: #282828;
  border: 3px solid whitesmoke;
  background-color: whitesmoke;
}
.btn-green {
  color: #80b33d;
  border: 3px solid #80b33d;
  background-color: transparent;
  font-weight: bold;
}
.btn-green:hover {
  transition: 0.4s;
  color: whitesmoke;
  border: 3px solid #80b33d;
  background-color: #80b33d;
}
.btn-black {
  color: #282828;
  border: 3px solid #282828;
  background-color: transparent;
  font-weight: bold;
}
.btn-black:hover {
  transition: 0.4s;
  color: whitesmoke;
  border: 3px solid #282828;
  background-color: #282828;
}
.btn-sm {
  padding: 5px 20px;
}
.btn-md {
  padding: 10px 40px;
}
.btn-round {
  border-radius: 30px;
}
.input-cus {
  padding: 10px 15px;
  background-color: transparent;
  border: 3px solid #282828;
  border-radius: 0;
  color: #282828;
  font-weight: bold;
}
.detail-btn {
  bottom: 100px;
  left: 100px;
}
.prev,
.next {
  background-color: transparent;
  border: 3px solid whitesmoke;
  color: whitesmoke;
  padding: 5px 10px;
  margin-top: 20px;
  margin-right: 5px;
}
.prev:hover,
.next:hover {
  transition: 0.3s;
  background-color: whitesmoke;
  color: #282828;
}
[data-toggle="collapse"] .fa:before {
  content: "\f139";
}

[data-toggle="collapse"].collapsed .fa:before {
  content: "\f13a";
}
/* aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa */
.filepond--drop-label {
  color: #4c4e53;
}

.filepond--label-action {
  text-decoration-color: #babdc0;
}

.filepond--panel-root {
  border-radius: 2em;
  background-color: #edf0f4;
  height: 1em;
}

.filepond--item-panel {
  background-color: #595e68;
}

.filepond--drip-blob {
  background-color: #7f8a9a;
}

#loading {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: fixed;
  display: block;
  z-index: 99;
}

#loading-image {
  position: absolute;
  top: 40%;
  left: 45%;
  z-index: 100;
}
