@import url("https://fonts.googleapis.com/css2?family=Lobster&family=Exo:wght@100;300&family=Poppins:wght@400;700&display=swap");
:root {
  --primary-color: #00a7f3;
}

body {
  background: #b6f364;
  margin: 0;
  font-family: 'Poppins';
}

.maximap {
  display: none;
}

.navbar {
  background: #4a4428;
  padding: 1em;
}

.navbar .logo {
  text-decoration: none;
  font-family: 'Exo', sans-serif;
  font-weight: bold;
  color: #eaff73;
  font-size: 1.2em;
}

.navbar .logo span {
  color: #eaff73;
}

.navbar nav {
  display: none;
}

.navbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: space-between;
}

.navbar .mobile-menu {
  cursor: pointer;
}

.navbar .subscribe-cta {
  color: #ff3a3a;
}

a {
  color: #dbdbdb;
}

.link-to-top {
  text-decoration: none;
  color: #e6e6e6;
  float: right;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul li {
  text-decoration: none;
}

h2 {
  font-family: 'Lobster', cursive;
  font-size: 3em;
}

section {
  padding: 5em 2em;
}

.logo-section {
  display: none;
}

.hero {
  text-align: center;
}

.item-section .cta-link {
  font-size: 1.2em;
}

.item-section a:hover {
  text-decoration: none;
}

.item-section .item-img {
  width: 100%;
  height: 300px;
}

.item-section #online-mines-img {
  margin-top: 2em;
  background-image: url("images/online_mines_com.png");
}

.item-section ul {
  list-style-type: circle;
}

.item-section li {
  margin-left: 3em;
}

.item-section-light {
  background-color: #b6f364;
  color: #1f2835;
}

.item-section-light .tag {
  border-radius: 3em;
  padding: .2em 1em;
  border: 3px solid #1f2835;
  font-weight: bold;
}

.item-section-light .cta-link {
  color: #f72b2b;
}

.item-section-light a {
  color: #3c3ed4;
}

.item-section-light .link-to-top {
  text-decoration: none;
  color: #1f2835;
}

.item-section-dark {
  background-color: #b6f364;
  color: #f2f2f2;
}

.item-section-dark .tag {
  border-radius: 3em;
  padding: .2em 1em;
  border: 3px solid #f2f2f2;
  font-weight: bold;
}

.item-section-dark .cta-link {
  color: #d53e3e;
}

.item-section-dark a {
  color: #999aff;
}

.item-section-dark .link-to-top {
  text-decoration: none;
  color: #f2f2f2;
}

/*
.section-subscribe {
    margin: 0;
    padding: 2em 2em;
    color: #e6e6e6;//#f2f2f2; 

    p {
        font-size: 1em;
    }
}*/
.notification-success {
  background-color: #76db7f;
  padding: 1em;
  border-radius: 1em;
  border: 1px solid #76db7f;
}

.notification-error {
  background-color: #db7676;
  padding: 1em;
  border-radius: 1em;
  border: 1px solid #db7676;
}

.hero-image {
  width: 70%;
  margin-top: 3em;
}

label {
  display: block;
  font-size: 1.2em;
  margin-bottom: .5em;
}

input, textarea {
  width: 100%;
  padding: .8em;
  margin-bottom: 1em;
  border-radius: .3em;
  border: 1px solid gray;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="submit"] {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 1.3em;
  border: none;
  /* margin-bottom: 5em; */
  border-radius: 5em;
  display: inline-block;
  padding: .8em 2em;
  width: unset;
  cursor: pointer;
}

nav.menu-btn {
  display: block;
}

nav {
  position: fixed;
  z-index: 999;
  width: 80%;
  right: 0;
  top: 0;
  background: #6a9162;
  height: 100vh;
  padding: 1em;
}

nav ul.primary-nav {
  margin-top: 5em;
}

nav li a {
  font-family: 'Lobster', cursive;
  color: white;
  text-decoration: none;
  display: block;
  padding: .5em;
  font-size: 1.3em;
  text-align: right;
}

nav li a:hover {
  font-weight: bold;
}

.mobile-menu-exit {
  float: right;
  margin: .5em;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .minimap {
    display: none;
  }
  .maximap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mobile-menu, .mobile-menu-exit {
    display: none;
  }
  .navbar .container .logo {
    display: none;
  }
  .navbar .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 180px auto;
        grid-template-columns: 180px auto;
  }
  .navbar nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: none;
    position: unset;
    height: auto;
    width: 100%;
    padding: 0;
  }
  .navbar nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar nav a {
    color: #eaff73;
    font-size: 1.4em;
    padding: .1em 1em;
  }
  .navbar nav ul.primary-nav {
    margin: 0;
  }
  .navbar nav li.current a {
    font-weight: bold;
  }
  .navbar nav li.go-premium-cta a {
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    font-weight: bold;
    border-radius: 5em;
    margin-top: -.2em;
  }
  .navbar nav li.go-premium-cta a:hover {
    background: var(--primary-color);
    color: white;
  }
  .navbar nav .subscribe-cta {
    color: #ff3a3a;
    border-radius: 5em;
    border: 2px solid #ff3a3a;
    margin-top: -2px;
  }
  .logo-section {
    padding: 0;
    display: block;
    background-color: #b6f364;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0px -250px;
    text-align: center;
  }
  .logo-section img {
    width: 100%;
    height: auto;
  }
  .logo-section h1 {
    font-family: 'Lobster', cursive;
    color: #ffface;
    font-size: 10em;
    margin: 0;
  }
  .logo-section h2 {
    color: #dbdbdb;
    font-size: 4em;
    margin: 0;
  }
  .item-section .cta-link {
    font-size: 1.6em;
  }
}

@media only screen and (min-width: 1080px) {
  .container {
    width: 1080px;
    margin: 0 auto;
  }
  section {
    padding: 4em 4em;
  }
  .hero .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.gallery-item {
  width: auto;
  height: 150px;
  margin: 1em;
  border: 1px solid #222222;
}

.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
.column {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hover-shadow:hover {
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/*# sourceMappingURL=main220512-1.css.map */