@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;
    cursor: default;
    scroll-behavior: smooth;
  }
::-webkit-scrollbar {
    display: none;
}

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: #fff;
    font-family: Nexa_Bold;
    font-size: 60pt;
    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: 2; */
    height: auto;
    /* overflow: hidden; */
    box-shadow: 0 0 50px #000;
    transition: transform .5s;
  }
  
  .nav-open main {
    transform: scale(.8);
  }

  
  .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;
}

/*  Utilities  */


.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;
}

.card {
    background-color: #333;
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    padding: 35px;
    position: absolute;
}


.text-center {
    text-align: center;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* -------------------------Parallax ---------------------*/


.Index_Img{
  width: 20vw;
    margin-left: 40vw;
    margin-top: 30vh;
    object-fit: cover;
    object-position: 40% 10%;
}

.Index_Img1{
    height: 30vh;
    width: auto;
}

.Index_Img2{
  width: auto;
  height: 50vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-20%, 120%);
}

.Index_Img3{
    margin-left: 60vw;
    height: 120vh;
    width: auto;
    top: 50%;
    left: 50%;
    transform: translate(10%, -10%) rotate(-90deg);
  }

#scene1 {
    margin: 0;
    padding: 0;
}


.Name {
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100vh;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all .25s linear;
    overflow: hidden;
}

.logo-img-1 {
    width: 30%;
    /* z-index: ; */

}

.Home_overlay {
  position: absolute;
  width: 98vw;
  height: 85vh;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 14%);
  /* border: 1px solid #dfb478; */
  color: #dfb478;
  border-radius: 20px;
  letter-spacing: 4px;
}

.Home_text1 {
  position: absolute;
  font-size: 2.2rem;
  width: 80px;
  font-family: Bebas_Bold;
  padding-left: 7px;
  background-color: rgb(0, 0, 0);
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
}

.Home_text2 {
  position: absolute;
  font-size: 4.4rem;
  font-family: Bebas_Light;
  left: 50%;
  top: 80%;
  transform: translate(-50%, -50%);
}

.Home_text3 {
  position: absolute;
  font-size: 2.5rem;
  font-family: Bebas_Light;
  line-height: 0.9;
  left: 1.5%;
  bottom: 5%;
  transform: translate(-0%, 40%);
}

.Home_text4 {
  position: absolute;
  font-size: 2.2em;
  font-family: Bebas_Bold;
  padding-left: 7px;
  line-height: 0.5;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -50%);
}

.Home_text4 a {
  color: #dfb478;
}


.Home_text4: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);
}

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

/* 
.container {
  position: absolute;
  width: 100%;
  height: 100%h;
} */


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

@media only screen and (min-width:120px) 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;

  }


.Index_Img{
  width: 55vw;
  margin-left: 22vw;
  margin-top: 30vh;
  object-fit: cover;
  object-position: 40% 10%;
  }
  

.Home_text2 {
position: absolute;
font-size: 2.8rem;
font-family: Bebas_Light;
left: 50%;
top: 70%;
transform: translate(-50%, -50%);
}

.Home_text3 {
position: absolute;
font-size: 1.8em;
font-family: Bebas_Light;
line-height: 0.9;
left: 3%;
bottom: 3%;
transform: translate(-0%, 40%);
}

}

/*---------------  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;
  }


.Index_Img{
width: 40vw;
margin-left: 30vw;
margin-top: 25vh;
object-fit: cover;
object-position: 40% 10%;
}

img {
  width: 100%;
}
}


@media only screen and (min-width:1008px) and (max-width: 1920px) {
.Index_Img{
width: 25vw;
margin-left: 38vw;
margin-top: 20vh;
object-fit: cover;
object-position: 40% 10%;
}

img {
  width: 100%;
}

.Home_text3 {
  position: absolute;
  font-size: 2em;
  font-family: Bebas_Light;
  line-height: 0.9;
  left: 1%;
  bottom: 5%;
  transform: translate(-0%, 40%);
  }

}