@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');
*

{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Pixelify Sans";
    scroll-behavior: smooth;
    scroll-padding-top: var(--scroll-padding, 80px);
}
body
{
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(#2b1055,#7597de);
}
a {
  text-decoration: none;
}

header {
  top: 0px;
  position: fixed;
  width: 100%;
  height: 80px;
  background: #11101b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 100px;
  z-index: 9999;
}

.Logo {
  display: inline;
  width: 260px;
  vertical-align: middle;
}

.logo_image {
  display: inline-block;
  width: 50px;
  vertical-align: middle;
  align-items: center;
}

.logo_png {
  width: 100%;
}

.logo_name {
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  color: #fefefe;
  padding: 10px;
  margin: 0;
}

.switcher {
  display: none;
}

.nav_bar ul {
  display: flex;
  list-style: none;
  padding: 0;
}

.nav_bar li {
  list-style: none;
}


.nav_bar ul li a {
  display: block;
  color: #fefefe;
  font-size: 20px;
  padding: 10px 25px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 5px;
  text-align: center;
}

.nav_bar ul li a:hover {
  color: #11101b;
  background-color: #fefefe;
}

@media only screen and (max-width: 1320px) {
  header {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 1100px) {
  header {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 900px) {
  .burger {
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: block;
  }
  
  .burger input {
    display: none;
  }
  
  .burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fefefe;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }
  
  .burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
  }
  
  .burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
  }
  
  .burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
  }
  
  .burger input:checked ~ span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
  }
  
  .burger input:checked ~ span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
  }
  
  .burger input:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
    left: 5px;
  }
  .nav_bar {
    height: 0px;
    position: absolute;
    top: 80px;
    left: 0px;
    right: 0px;
    width: 100vw;
    background: #11101b;
    transition: 0.5s;
    overflow: hidden;
  }
  .nav_bar.active {
    height: 250px;
    width: 100%;
  }
  .nav_bar ul {
    display: block;
    width: fit-content;
    margin: 10px auto 0 auto;
    text-align: center;
    transition: 0.5s;
    opacity: 0;
  }
  .nav_bar.active ul {
    opacity: 1;
  }
  .nav_bar ul li a {
    margin-bottom: 15px;
  }
}


.parralax_background {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.parralax_background::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top,#1c0522,transparent);
  z-index: 1000;
}

.parralax_background img  {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#btn {
  text-decoration: none;
  padding: 8px 30px;
  display: inline-block;
  color: #ddd7d7;
  font-size: 6.5em;
  transform: translateY(-40px);
  text-align: center;
  font-weight: bold;
  font-family: "Pixelify Sans";
  -webkit-text-stroke: 5px #081116;
}

.home {
  position: relative;
  width: 100%;
  height: 1000000000;
  padding: 10px;
  padding-top: 100px;
  padding-bottom: 100px;
  background: #200825;
  text-align: center;
}

.home h2 {
  font-size: 3.5em;
  margin-bottom: 10px;
  color: #fff;
}


.home p {
  font-size: 1em;
  color: #fff;
  text-align: center;
  padding: 10px;
}

.copyright {
  font-size: 16px;
  color: #fefefe;
  text-align: center;
  background: #11101b;
  padding: 15px;
}

.about_us_h3 {
  color: #fefefe;
  font-size: 20px;
}

.contact-section {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
}

.contact-intro > * + * {
  margin-top: 1rem;
}

.contact-description {
  color: rgb(107 114 128);
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
}

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
  background-color: #3124ca;
  color: #fff;
  padding: 13px 5px;
  border-radius: 0.375rem;
}

label {
  color: #fefefe;
}
