/*FONTS*/

@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Work Sans", sans-serif;
  font-weight: 100;
}

p {
  font-family: "Open Sans", sans-serif;
}

a {
  font-family: "Open Sans", sans-serif;
}

span {
  font-family: "Open Sans", sans-serif;
}

nav {
  font-family: "Open Sans", sans-serif;
}

.content {
  font-family: "Open Sans", sans-serif;
}

.title {
  font-family: "Work Sans", sans-serif;
}

.subtitle {
  font-family: "Open Sans", sans-serif;
}

.button {
  font-family: "Open Sans", sans-serif;
}

ul li {
  font-family: "Open Sans", sans-serif;
}

form label {
  font-family: "Open Sans", sans-serif;
}

form a {
  font-family: "Open Sans", sans-serif;
}

strong {
  font-family: "Open Sans", sans-serif;
}

/*OVERRIDES*/
.modal-card,
.modal-content {
  margin: 0;
}

.modal-card {
  overflow: scroll;
}

.modal-card-foot,
.modal-card-head {
  padding: 20px 0 !important;
}

/*GENERAL*/

.lpg-green {
  background: #456475;
  color: white;
  border: none;
}
.lpg-green:hover {
  color: white;
}

/*NAVBAR*/

.navbar {
  transition: 0.4s;
  padding: 20px 0;
}

.navbar a {
  font-size: 0.9em !important;
}

.sticky {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transition: 0.4s;
  padding: 20px 50px;
  background: white !important;
}

link:focus,
.navbar-link:focus-within,
.navbar-link:hover,
a.navbar-item.is-active,
a.navbar-item:focus,
a.navbar-item:focus-within,
a.navbar-item:hover {
  background-color: transparent;
  color: #485fc7;
}

.navbar-dropdown {
  background-color: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top: 2px solid #dbdbdb;
  box-shadow: 0 8px 8px rgb(10 10 10 / 10%);
  display: none;
  font-size: 0.875rem;
  left: 0;
  min-width: 100%;
  position: absolute;
  top: 100%;
  z-index: 20;
}

/*MODAL*/

.modal {
  display: block;
  opacity: 0;
  pointer-events: none;
}

.show-modal {
  animation: fadeIn 0.25s;
  -webkit-animation: fadeIn 0.25s;
  -moz-animation: fadeIn 0.25s;
  -o-animation: fadeIn 0.25s;
  -ms-animation: fadeIn 0.25s;
  opacity: 1;
  pointer-events: auto;
}

.hide-modal {
  animation: fadeOut 0.25s;
  -webkit-animation: fadeOut 0.25s;
  -moz-animation: fadeOut 0.25s;
  -o-animation: fadeOut 0.25s;
  -ms-animation: fadeOut 0.25s;
  opacity: 0;
  pointer-events: none;
}

.fade_in {
  animation: fadeIn 0.25s;
  -webkit-animation: fadeIn 0.25s;
  -moz-animation: fadeIn 0.25s;
  -o-animation: fadeIn 0.25s;
  -ms-animation: fadeIn 0.25s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade_out {
  animation: fadeOut 0.25s;
  -webkit-animation: fadeOut 0.25s;
  -moz-animation: fadeOut 0.25s;
  -o-animation: fadeOut 0.25s;
  -ms-animation: fadeOut 0.25s;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-ms-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.modal-background {
  /*background-color: rgba(10, 10, 10, 0.86);*/
  background-color: white;
}

.modal-card-head {
  border-bottom: 1px solid transparent;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.modal-card-foot,
.modal-card-head {
  align-items: center;
  background-color: transparent;
  display: flex;
  flex-shrink: 0;
  justify-content: flex-start;
  padding: 20px;
  position: relative;
}

.hide-dt {
  display: none;
}

.hide-mobile {
  display: block;
}

/*Sidenav*/

.sidenav {
  background: white;
  width: 0;
  transition: 0.3s;
  height: 100vh;
  position: absolute;
  margin: 0;
  padding: 20px 0;
}

.open {
  width: 100vw;
  transition: 0.3s;
  height: 100vh;
  position: fixed;
  z-index: 2;
}

.sidenav ul {
  display: none;
}

.sidenav ul li {
  color: black;
  padding: 20px;
  width: 100%;
}

.display {
  display: block !important;
  transition: 1.2s;
}

.sidenav {
  display: none;
}

/*Burger menu animation*/

.first-span-transform {
  transform: rotate(-45deg);
  margin-top: 6px;
}

.second-span-transform {
  transform: rotate(45deg);
  margin-top: 1px;
}

#span3 {
  display: block;
}

.hide-anim {
  display: none !important;
}

/*Footer*/

footer {
  background: #fafafa;
}

footer a {
  color: #000000;
}

.foot-logo {
  width: 180px;
}

.foot-sm-icons li {
  display: inline-block;
}

@media screen and (min-width: 769px) {
  .modal-card,
  .modal-content {
    margin: 0 auto;
    max-height: calc(100vh - 40px);
    width: 100%;
  }
}

@media screen and (max-width: 769px) {
  .hide-mobile {
    display: none;
  }
  .hide-dt {
    display: block;
  }
  .sticky {
    /*width: 90%;*/
    display: block;
    width: 100vw;
    padding: 20px 0;
  }
  .sidenav {
    display: block;
  }
}
