@font-face {
    font-family: Nexa_Bold;
    src: url(/Fonts/Nexa\ Bold.otf);
}

@font-face {
    font-family: Nexa_Light;
    src: url(/Fonts/Nexa\ Light.otf);
}

@font-face {
    font-family: Bebas_Bold;
    src: url(/Fonts/BebasNeue\ Regular.otf);
}

@font-face {
    font-family: Bebas_Light;
    src: url(/Fonts/BebasNeue\ Light.otf);
}

*, *::after, *::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
::-webkit-scrollbar {
    display: none;
}


.mobile_cover{
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: #dfb478;
  color: #333;
  font-size: 200%;
  display: none;
}

@media only screen and (min-width:0px) and (max-width:900px) {
  
  .mobile_cover{
    display: inline-block;
    z-index: 1000;
    position: fixed;
  }
  .mobile_cover_text{
    width: 70%;
    height: 70%;
    left: 50%;
    top: 50%;
    transform: translate(24%, 30%);
  }
}

body {
    width: 100%;
    height: 100vh;
    background-color: #262626;
    font-family: Nexa_Light;
    color: rgb(106, 106, 106);
    background-color: rgb(0, 0, 0);
    line-height: 1.6;
}

ul {
    list-style: none;
    margin: 10px 0px 10px 10px;
    font-size: 9pt;
    line-height: 1.4;
    color: #b2b2b2;
}

a {
    text-decoration: none;
    color: rgb(103, 103, 103);
}

h1 a {
    color: #fff;
    font-size: 2em;
    text-decoration: none;
    display: inline-block;
    position: relative;
  }

h1, h2 {
    font-family: Nexa_Light;
    font-size: 16pt;
    letter-spacing: 1.5px;
    line-height: 1.2;
    margin: 0 0 20px 0px;
    color: #fff;
}

h3 {
    color: rgb(177, 177, 177);
    font-family: Nexa_Light;
    font-size: 18pt;
    letter-spacing: 1.5px;
    line-height: 0.8;
    margin: 20px 0;
}

p{
    margin: 10px 0;
    color: #b2b2b2;
    font-size: 9pt;
    line-height: 1.5;

}


/*  Navbar  */

.logo {
    margin: 1rem;
    left: 0;
}
  
  main {
    position: relative;
    z-index: 1;
    height: auto;
    overflow: hidden;
    box-shadow: 0 0 50px #000;
    transition: transform .5s;
  }


.container1 {
    max-width: 1100px;
    height: 600px;
    margin: 0 auto;
    overflow: auto;
    padding: 0 40px;
}

.main_container {
    max-width: 1100px;
    margin: 0 auto;
    overflow: auto;
    height: auto;
    padding: 0 20px;
    display: flex;
    position: relative;
}
  
  .nav-open main {
    transform: scale(.8);
  }
  
  .intro {
    height: 100vh;
    width: 100%;
    display: table;
    background: #26292f url('../img/bg.jpg') no-repeat center center;
    background-size: cover;
  }
  
  .intro h1 {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 45px;
    color: white;
  }
  
  .overlay {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(33, 33, 33);
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
  }
  
  .nav-open .overlay {
    opacity: .6;
    visibility: visible;
  }
   
  .nav-container {
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    height: 100%;
    width: 90%;
    max-width: 360px;
    padding: 5em 3.5em;
    background: #434343;
    border: #dfb478 1px solid;
    border-bottom-left-radius: 20px;
    overflow: auto;
    transform: translateZ(0);
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.07,.23,.34,1);
  }
  
  .nav-open .nav-container {
    transform: translateX(0);
  }
  
  .nav {
    list-style: none;
    padding: 0;
  }
  
  .nav a {
    display: block;
    text-align: center;
    padding: 1em 1.5em;
    margin-bottom: 2em;
    font-size: 1rem;
    font-family: Nexa_Light;
    text-decoration: none;
    text-transform: uppercase;
    color: #9f9f9f;
    transform: translateZ(0);
    border: #dfb47800 1px solid;
    border-radius: 10px;
    transition: 0.5s;

  }

  .nav a:hover {
    color: #dfb478;
    border: #dfb478 1px solid;
    /* -webkit-transform: scale(1);
    transform: scale(1);    */
    transition:  0.5s border;
    -moz-transition: 0.5s border; /*For Firefox < 16.0*/
    -webkit-transition: 0.5s border; /*For WebKit (Chrome, Safari)*/
  }
  
  .nav-open .nav a {
    animation: slide-in .4s .2s backwards;
  }
  
  .nav-open .nav li:nth-of-type(2) a {
    animation-delay: .3s;
  }
  
  .nav-open .nav li:nth-of-type(3) a {
    animation-delay: .4s;
  }
  
  .nav-open .nav li:nth-of-type(4) a {
    animation-delay: .5s;
  }
  
  .nav-open .nav li:nth-of-type(5) a {
    animation-delay: .6s;
  }

  .nav-open .nav li:nth-of-type(6) a {
    animation-delay: .7s;
  }
  
  @keyframes slide-in {
    0% {
      opacity: 0;
      transform: translateX(80px);
    }
  
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

.navbar {
    background-color: rgba(36, 36, 36, 0.817);
    width: 100%;
    color: #fff;
    height: 4rem;
    position: fixed;
    z-index: 4;
    justify-content: center;

}
.navbar ul {
    display: flex;
    margin-top: 20px;
}

.navbar a {
    color: #fff;
    padding: 10px;
    margin: 5px;
}

a.nav_hover:after {
    content: '';
    display: inline-block;
    height: 0;
    width: 90%;
    border-bottom: 1px solid  #dfb478;
    opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

a.nav_hover:hover:after {
    opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.navbar .flex {
    justify-content: space-between;
}


/*  Showcase  */

.showcase {
    height: 100vh;
    background-color: rgb(38, 38, 38);
    color: #fff;
    position: relative;
}

.showcase h1 {
    font-size: 35px;
}

.showcase p {
    margin: 20px 0;
}

.showcase .grid {
    overflow: visible;
    grid-template-columns: 55% 45%;
    gap: 30px;
}

.showcase-form {
    background-color: rgb(121, 121, 121);
    position: relative;
    top: 60px;
    height: 350px;
    width: 400px;
    padding: 40px;
    z-index: 100;
    justify-self: flex-end;
}

.showcase-form .form-control{
    margin: 30px 0;
}

.showcase-form .form-control input[type='text'],
.showcase-form .form-control input[type='email']{
   border: 0;
   border-bottom: 1px solid #b4becb;
   width: 100%;
   padding: 3px;
   font-size: 16px;
}

.showcase-form input:focus {
    outline: none;
}

/* .showcase::before,
.showcase::after {
    content: '';
    position: absolute;
    height: 70%;
    top: 70%;
    right: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    transform: skewY(-2deg);
    -webkit-transform: skewY(-2deg);
    -moz-transform: skewY(-2deg);
    -ms-transform: skewY(-2deg);
    border-top: 1px solid #dfb478;
} */

/* Stats */

.stats {
    padding-top: 100px;
}

/* ---------------------------------- Stats ---------------------------------- */

.about_title {
    position: relative;
    text-align: center;
    width: 40vw;
    height: 20vh;
    left: 50%;
    top: 25%;
    transform: translate(-50%, -50%);
}


.showcase_about {
    height: 100vh;
    background-color: rgb(38, 38, 38);
    color: #fff;
    position: relative;
}

.showcase_about h1 {
    font-size: 35px;
}

.showcase_about h3 {
  font-family: Nexa_Light;
  font-size: 1.2em;
  margin-top: 3%;
}

.showcase_about p {
    margin: 20px 0;
}

.about_bio {
  border-top: 1px solid  #dfb478;
  padding-top: 1%;
  /* font-size: 2em; */
  position: absolute;
  text-align: center;
  width: 23vw;
  height: 20vh;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}

.about_bio p {
  font-size: 0.8em;
}

.showcase_about::before,
.showcase_about::after {
    content: '';
    position: absolute;
    height: 70%;
    top: 80%;
    right: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    transform: skewY(-2deg);
    -webkit-transform: skewY(-2deg);
    -moz-transform: skewY(-2deg);
    -ms-transform: skewY(-2deg);
    border-top: 1px solid #dfb478;
}


/*---------------  Phone Media Queries  --------------*/

@media only screen and (max-width: 640px) {
  h1,h2 {
      font-size: 18px;
      margin: 0 0 5px 0px;
  }
  h3 {
      font-size: 80pt;
      letter-spacing: 1.4px;
      line-height: .6;
      margin: 20px 0;
  }

  p{
      margin: 10px 0;
      color: #b2b2b2;
      font-size: 12px;
      line-height: 1.5;

  }


.about_title {
  position: relative;
  text-align: center;
  width: 70vw;
  height: 20vh;
  left: 50%;
  top: 25%;
  transform: translate(-50%, -50%);
}

  .showcase_about h1 {
    font-size: 35px;
}

.showcase_about h3 {
  font-family: Nexa_Light;
  font-size: 1.2em;
  margin-top: 3%;
  line-height: 1;
  width: 70vw;
}

.about_bio {
  border-top: 1px solid  #dfb478;
  padding-top: 1%;
  /* font-size: 2em; */
  position: absolute;
  text-align: center;
  width: 70vw;
  height: 20vh;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}
.showcase_about::before,
.showcase_about::after {
  display: none;
}

}

/*---------------  Tablet Media Queries  --------------*/

@media only screen and (min-width:641px) and (max-width: 1007px) {
  h1,h2 {
      font-size: 16px;
      margin: 0 0 10px 0px;
  }
  h3 {
      font-size: 35pt;
      letter-spacing: 1.4px;
      line-height: 0.1;
      margin: 20px 0;
  }

  .about_title {
    position: relative;
    text-align: center;
    width: 70vw;
    height: 20vh;
    left: 50%;
    top: 25%;
    transform: translate(-50%, -50%);
  }
  
    .showcase_about h1 {
      font-size: 35px;
  }
  
  .showcase_about h3 {
    font-family: Nexa_Light;
    font-size: 1.2em;
    margin-top: 3%;
    line-height: 1;
    width: 70vw;
  }
  
  .about_bio {
    border-top: 1px solid  #dfb478;
    padding-top: 1%;
    /* font-size: 2em; */
    position: absolute;
    text-align: center;
    width: 70vw;
    height: 20vh;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
  }


}

@media only screen and (min-width:1008px) and (max-width: 1490px) {

  .about_bio {
    border-top: 1px solid  #dfb478;
    padding-top: 1%;
    /* font-size: 2em; */
    position: absolute;
    text-align: center;
    width: 45vw;
    height: 20vh;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
  }

.about_title {
  position: relative;
  text-align: center;
  width: 60vw;
  height: 20vh;
  left: 50%;
  top: 25%;
  transform: translate(-50%, -50%);
}

  .showcase_about h1 {
    font-size: 35px;
}

.showcase_about h3 {
  font-family: Nexa_Light;
  font-size: 1.2em;
  margin-top: 3%;
  line-height: 1;
  width: 60vw;
}

}