:root {
  --bg-accent: darkgreen;
  --nav-witdh:85px;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-bottom: 18rem;
  background: #333;
}

.header {
  min-height: 80vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 40, 9, 0.7), rgba(4, 45, 9, 0.7)), url(../image/mixer3000.jpg);
  background-position: center;
  background-size: cover;
  position: center;
}

.column {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.section {
  width: 100%;
  background-position: center;
  background-size: cover;
  color: whitesmoke;
}
.section div {
  min-width: 25%;
  padding: 5rem 3rem;
}
.section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.section p {
  line-height: 2;
  margin: 0 auto;
  font-size: 1rem;
  color: whitesmoke;
}

#btnToTop {
  z-index: 1000;
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 64px;
  height: 40px;
  background: darkgreen;
  color: whitesmoke;
  font-weight: 900;
  border: 0;
  box-shadow: greenyellow -2px -2px 3px;
  border-radius: 10px 0 0 0;
  outline: 0;
  cursor: pointer;
  opacity: 0.8;
}
#btnToTop:hover {
  opacity: 1;
}

.sectionHeader {
  background: #041e09;
  width: inherit;
  padding: 2rem;
  color: greenyellow;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
}

.section1 {
  scroll-behavior: smooth;
  background-image: linear-gradient(rgba(4, 40, 9, 0.7), rgba(4, 45, 9, 0.7)), url(../image/mike.jpg);
}

.section2 {
  scroll-behavior: smooth;
  background-image: linear-gradient(rgba(4, 40, 9, 0.7), rgba(4, 45, 9, 0.7)), url(../image/radio1920.jpg);
}

nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}
nav img {
  width: 150px;
}
nav #btnHamburgerClose {
  display: none;
}
nav #btnHamburger {
  display: none;
  color: white;
  cursor: pointer;
  opacity: 0.8;
}
nav #btnHamburger:hover {
  opacity: 1;
}

.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
.nav-links ul li::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--bg-accent);
  background-position: center;
  background-size: cover;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after {
  content: "";
  width: 100%;
}
.nav-links ul li a {
  font-family: "Poppins", sans-serif;
  color: white;
  text-decoration: none;
  font-size: 13px;
}

.text-box {
  width: 90%;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.text-box h1 {
  font-size: 62px;
}
.text-box p {
  margin: 10px 0 40px;
  font-size: 14px;
  color: white;
}
.text-box .hero-btn {
  display: inline-block;
  text-decoration: none;
  color: white;
  border: 1px solid white;
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  cursor: pointer;
}
.text-box .hero-btn:hover {
  border: 1px solid var(--bg-accent);
  background: var(--bg-accent);
  transition: 1s;
}

.sectionHeader {
  font-size: 36px;
}

footer {
  display: flex;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #333;
  color: whitesmoke;
  width: 100%;
}
footer div {
  padding: 2rem 4rem;
}
footer div img {
  width: 150px;
}
footer div a {
  text-decoration: none;
  opacity: 0.65;
  color: whitesmoke;
  transition: 750ms;
}
footer div a:hover {
  opacity: 1;
}

.livePage {
  min-height: 300px;
}

@media (max-width: 700px) {
  #btnHamburgerClose {
    position: absolute;
    display: block !important;
    color: white;
    top: 10px;
    right: 10px;
    cursor: pointer;
    opacity: 0.8;
  }
  #btnHamburgerClose:hover {
    opacity: 1;
  }

  #btnHamburger {
    display: block !important;
  }

  .text-box h1 {
    font-size: 3rem;
  }

  .column {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: absolute;
    background-image: linear-gradient(#040a0a, #045a5a);
    height: 250px;
    width: var(--nav-width);
    top: 5px;
    left: -220px;
    text-align: left;
    transition: 1s;
    z-index: 1;
    box-shadow: 0.25rem 0.25rem 5px #999;
  }
  .nav-links ul {
    padding: 30px;
  }
  .nav-links ul li {
    display: block;
  }

  footer {
    flex-direction: column;
  }
}

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