@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border box;
  margin: 0;
  padding: 0;
}

body {
  background: #0D0D0D;
  font-family: Urbanist;
  line-height: 1;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

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

img {
  max-width: 100%;
}

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  padding: 0px auto;
  transition: 0.3s ease-in-out;
}
header .navlogo {
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  font-size: 15px;
  color: #1a1012;
  font-weight: 500;
  text-transform: uppercase;
  margin: 7px 10px;
}
header .navlogo img {
  max-width: 30px;
}
header .Navlinks-lg {
  display: none;
}
@media (min-width: 960px) {
  header .Navlinks-lg {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}
header ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 200px 0;
}
header ul li a {
  color: #ffffff;
  padding: 7px 10px;
  transition: 0.6s ease-in-out;
  font-weight: 300;
  font-size: 35px;
  transition: 1s ease;
}
header ul li a:hover {
  color: #1a1012;
}
@media (min-width: 960px) {
  header ul li a {
    font-size: 15px;
    background-color: #ff0000;
    padding: 5px 15px;
    border-radius: 20px;
    backdrop-filter: none;
    background-color: transparent;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0);
  }
  header ul li a:hover {
    backdrop-filter: blur(10px);
    background-color: rgba(46, 52, 98, 0.0745098039);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
}
@media (min-width: 960px) {
  header ul {
    background-color: transparent;
    flex-direction: row;
    margin: 0px auto;
    padding: 12px 40px;
    border-radius: 20px;
    backdrop-filter: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    transition: 0.7s ease;
  }
  header ul:hover {
    background-color: rgba(46, 52, 98, 0.1647058824);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
  }
}
header .Nav-btn {
  font-size: 15px;
  padding: 0.2em 2.7em;
  margin: 0 0.5em;
  letter-spacing: 0.06em;
  position: relative;
  font-family: inherit;
  border-radius: 0.6em;
  overflow: hidden;
  transition: all 0.3s;
  line-height: 1.4em;
  border: 2px solid #1a1012;
  background: linear-gradient(to right, rgba(253, 200, 27, 0.1) 1%, transparent 40%, transparent 60%, rgba(253, 212, 27, 0.1) 100%);
  color: #1a1012;
  box-shadow: inset 0 0 10px rgba(253, 238, 27, 0.4), 0 0 9px 3px rgba(249, 253, 27, 0.1);
}
header .Nav-btn:hover {
  color: #fff382;
  box-shadow: inset 0 0 10px rgba(253, 219, 27, 0.6), 0 0 9px 3px rgba(253, 230, 27, 0.2);
}
header .Nav-btn:before {
  content: "";
  position: absolute;
  left: -4em;
  width: 4em;
  height: 100%;
  top: 0;
  transition: transform 0.4s ease-in-out;
  background: linear-gradient(to right, transparent 1%, rgba(253, 212, 27, 0.1) 40%, rgba(253, 219, 27, 0.1) 60%, transparent 100%);
}
header .Nav-btn:hover::before {
  transform: translateX(15em);
}
header .hamburgr-buttn {
  background-color: transparent;
  padding: 5px 5px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  margin: 10px 30px;
  cursor: pointer;
  z-index: 1000;
}
header .hamburgr-buttn .hamburgr-line {
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  margin: 5px 3px;
  border-radius: 1px;
}
@media (min-width: 960px) {
  header .hamburgr-buttn {
    display: none;
  }
}
header .Navlinks-sm {
  position: fixed;
  top: 0;
  right: -80%;
  width: 60%;
  height: 100%;
  background-color: #0D0D0D;
  z-index: 100;
  box-shadow: #383838 0px 0px 15px;
  padding-left: 30px;
  padding-top: 50%;
  transition: 0.5s ease-in-out;
}
@media (min-width: 960px) {
  header .Navlinks-sm {
    display: none;
  }
}
header .Navlinks-sm-open {
  position: fixed;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 77, 64, 0.2862745098), rgba(62, 46, 98, 0.2862745098));
  backdrop-filter: blur(20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
  z-index: 100;
  box-shadow: #383838 0px 0px 15px;
  padding-left: 30px;
  padding-top: 0%;
}
@media (min-width: 960px) {
  header .Navlinks-sm-open {
    display: none;
  }
}
header .Navlinks-sm-open .Nbtn-mobl {
  border: 1px solid #1a1012;
  border-radius: 10px;
  padding: 7px 35px;
  transition: 1s ease;
  font-weight: 500;
  text-wrap: nowrap;
  text-transform: uppercase;
  background-color: transparent;
  color: #1a1012;
}
header .Navlinks-sm-open .Nbtn-mobl:hover {
  background-color: #1a1012;
  color: #0D0D0D;
}

section {
  padding: 10px 10px;
  box-shadow: none;
}

.container-lg {
  padding: 10px 10px;
}

.container-sm {
  padding: 10px 10px;
}

.Hm-hero {
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #0D0D0D), url("Assets/Home/Heromob.webp");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 85vh;
  width: auto;
}
@media (min-width: 960px) {
  .Hm-hero {
    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(15, 15, 15, 0.7607843137), #0D0D0D), url("Assets/Home/Hero.webp");
  }
}
.Hm-hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding-top: 50px;
}
.Hm-hero .container img {
  max-width: 100px;
  margin: 0 50px;
}
@media (min-width: 960px) {
  .Hm-hero .container img {
    max-width: 200px;
  }
}
.Hm-hero .container h1 {
  background: linear-gradient(to right, #1a1012, #0c1214);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  color: transparent;
  font-size: 80px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 80px;
  line-height: 60px;
  text-align: center;
}
@media (min-width: 960px) {
  .Hm-hero .container h1 {
    font-size: 50px;
    line-height: 140px;
  }
}
.Hm-hero .container .sm-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 80%;
  padding: 10px 0;
  margin: auto;
  gap: 20px;
  transition: 0.7s ease;
}
.Hm-hero .container .sm-icons > * {
  transition: inherit;
}
.Hm-hero .container .sm-icons a {
  background-color: #1a1012;
  border: 2px Solid #1a1012;
  border-radius: 35px;
  padding: 5px;
}
.Hm-hero .container .sm-icons a i {
  color: #ffffff;
}
.Hm-hero .container .sm-icons a:hover {
  background-color: transparent;
}
.Hm-hero .container .sm-icons a:hover i {
  color: #1a1012;
}
.Hm-hero .copyright {
  color: #ffffff;
  font-size: 15px;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid #ffffff;
}
.Hm-hero .copyright a {
  color: #ffffff;
}
.Hm-hero .copyright a:hover {
  color: #1a1012;
}