.menu-btn {
  position: absolute;
  z-index: 20;
  right: 35px;
  top: 35px;
  cursor: pointer;
  transition: all 0.5s ease-out; }
  .menu-btn .btn-line {
    width: 28px;
    height: 3px;
    margin: 0 0 5px 0;
    background: #fff;
    transition: all 0.5s ease-out; }
  .menu-btn.close {
    transform: rotate(180deg); }
    .menu-btn.close .btn-line:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px); }
    .menu-btn.close .btn-line:nth-child(2) {
      opacity: 0; }
    .menu-btn.close .btn-line:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px); }

.menu {
  position: fixed;
  top: 0;
  width: 100%;
  opacity: 0.98;
  visibility: hidden; }
  .menu.show {
    visibility: visible; }
  .menu-branding, .menu-nav {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    float: left;
    width: 50%;
    height: 100vh;
    overflow: hidden; }
  .menu-nav {
    margin: 0;
    padding: 0;
    background: #373737;
    list-style: none;
    transform: translate3d(0, -100%, 0);
    transition: all 0.5s ease-out; }
    .menu-nav.show {
      transform: translate3d(0, 0, 0); }
  .menu-branding {
    background: #444;
    transition: all 0.5s ease-out;
    transform: translate3d(0, 100%, 0); }
    .menu-branding.show {
      transform: translate3d(0, 0, 0); }
    .menu-branding .portrait {
      width: 250px;
      height: 250px;
      border-radius: 50%; }
  .menu .nav-item {
    transform: translate3d(600px, 0, 0);
    transition: all 0.5s ease-out; }
    .menu .nav-item.show {
      transform: translate3d(0, 0, 0); }
    .menu .nav-item.current > a {
      color: #e08824; }
  .menu .nav-link {
    display: inline-block;
    position: relative;
    font-size: 30px;
    text-transform: uppercase;
    padding: 1rem 0;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    transition: all 0.5s ease-out; }
    .menu .nav-link:hover {
      color: #e08824; }

.nav-item:nth-child(1) {
  transition-delay: 0.1s; }

.nav-item:nth-child(2) {
  transition-delay: 0.2s; }

.nav-item:nth-child(3) {
  transition-delay: 0.3s; }

.nav-item:nth-child(4) {
  transition-delay: 0.4s; }

.nav-item:nth-child(5) {
  transition-delay: 0.5s; }

* {
  box-sizing: border-box; }

body {
  background: #444;
  color: #fff;
  height: 100%;
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5; }

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400; }
  h1.lg-heading,
  h2.lg-heading,
  h3.lg-heading {
    font-size: 6rem; }
  h1.sm-heading,
  h2.sm-heading,
  h3.sm-heading {
    margin-bottom: 2rem;
    padding: 0.2rem 1rem;
    background: rgba(73, 73, 73, 0.5); }
  h1.sp-heading,
  h2.sp-heading,
  h3.sp-heading {
    margin-left: 30px;
    font-size: 2rem; }

a {
  color: #fff;
  text-decoration: none; }

header {
  position: fixed;
  z-index: 3;
  width: 100%; }

.text-secondary {
  color: #e08824; }

main {
  height: 95vh;
  display: flex;
  align-items: center; }
  main .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95vh;
    overflow: hidden; }
  main .overlay {
    height: 95vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #333;
    z-index: 1;
    opacity: 0.85; }
  main .content {
    z-index: 2;
    padding: 6rem; }
  main .sponsor {
    position: absolute; }
    main .sponsor img {
      height: 120px;
      margin-top: 30px; }
  main .icons {
    margin-top: 1rem; }
    main .icons a {
      padding: 0.4rem; }
      main .icons a:hover {
        color: #e08824;
        transition: all 0.5s ease-out; }
  main#home {
    overflow: hidden; }
    main#home h1 {
      margin-top: 5vh; }

footer {
  height: 5vh;
  width: 100%;
  text-align: center;
  background: #2b2b2b;
  position: fixed;
  z-index: 3; }

.news-info {
  display: grid;
  gap: 30px;
  grid-template-areas: "news1" "news2" "news3";
  grid-template-columns: 1fr; }

.news-1 {
  grid-area: news1; }

.news {
  background: #515151;
  padding: 0.5rem;
  border-bottom: #e08824 5px solid; }
  .news p {
    margin: 30px;
    font-size: 15px; }
  .news img {
    margin: 30px;
    max-width: 400px; }

.about-info {
  display: grid;
  gap: 30px;
  grid-template-areas: "job1 job2 job3" "job4 job5 job6" "job7 job8 job9";
  grid-template-columns: repeat(3, 1fr); }
  .about-info .job-1 {
    grid-area: job1; }
  .about-info .job-2 {
    grid-area: job2; }
  .about-info .job-3 {
    grid-area: job3; }
  .about-info .job-4 {
    grid-area: job4; }
  .about-info .job-5 {
    grid-area: job5; }
  .about-info .job-6 {
    grid-area: job6; }
  .about-info .job-7 {
    grid-area: job7; }
  .about-info .job {
    background: #515151;
    padding: 0.5rem;
    border-bottom: #e08824 5px solid; }

main#about .content {
  margin-top: 10vh; }

main#news {
  height: 100%; }
  main#news .content {
    margin-top: 10vh; }
  main#news .news-info {
    margin-top: 5vh; }

@media screen and (max-width: 768px) {
  main {
    align-items: center;
    text-align: center; }
    main .lg-heading {
      line-height: 1;
      margin-bottom: 1rem; }
    main div.content {
      padding: 1rem; }
  .sponsor {
    position: relative !important; }
  div.portrait {
    text-align: center; }
  ul.menu-nav,
  div.menu-branding {
    float: none;
    width: 100%;
    min-height: 0; }
    ul.menu-nav.show,
    div.menu-branding.show {
      transform: translate3d(0, 0, 0); }
  .menu-nav {
    height: 60vh;
    transform: translate3d(-100%, 0, 0);
    font-size: 24px; }
  .menu-branding {
    height: 40vh;
    transform: translate3d(100%, 0, 0); }
  .about-info {
    grid-template-areas: "job1" "job2" "job3" "job4" "job5" "job6" "job7";
    grid-template-columns: 1fr; }
  main#about {
    height: 95%; }
  footer {
    height: 5%;
    position: relative; } }

@media screen and (max-width: 500px) {
  h1,
  h2,
  h3 {
    margin: 0;
    font-weight: 200; }
    h1.lg-heading,
    h2.lg-heading,
    h3.lg-heading {
      font-size: 4rem; }
  main {
    height: 90vh; }
  .overlay {
    height: 90vh; }
  .video-container {
    height: 90vh; }
  .sponsor {
    position: relative !important; }
  footer {
    height: 10vh;
    position: relative !important; }
  h2.default-heading {
    display: none; }
  h2.hidden-heading {
    display: block !important; }
  .icons {
    margin-top: 3rem !important; } }
