@import url("https://fonts.googleapis.com/css2?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&display=swap");


#header {
  position: absolute;
  width: 100%;
  top: 0;
  padding-top: 10px;
  z-index: 9;
}
.header-logo-wrap {
  position: relative;
  z-index: 999;
}
.header-logo-wrap img {
  max-width: 133px;
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 70px;
}
.nav-menu-item a {
  color: #fff;
  transition: all 0.3s ease;
}
.nav-menu-item a:hover {
  color: #f89e22;
}


body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #000;
  font-family: "Poppins", sans-serif;
}
::selection {
  background-color: #f89e22;
}
#all-page-25 {
    overflow: hidden;
}
#page-content {
  overflow: hidden;
}
h1 {
  font-size: 74px;
  font-weight: 700;
  color: #fff;
}
h2 {
  font-size: 42px;
  font-weight: 600;
  color: #fff;
}
h3 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
}
h4 {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
h5 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

p {
  font-size: 16px;
  font-weight: 400;
  color: #a6a6a6;
}
img {
  display: block;
  width: 100%;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
.hero-buttons-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
.all-btns {
  position: relative;
  isolation: isolate;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 5px;
  background-color: #0d0d0d;
  color: #fff;
  min-width: 176px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}
.all-btns:hover {
  color: #000;
  border-color: transparent;
}
.all-btns.gold {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #000;
  background-image: linear-gradient(45deg, #f89e22, #fdeaa0, #f89e22);
}
.all-btns::before {
  position: absolute;
  content: "";
  inset: -2px;
  transform: translateY(100%);
  /* width: 100%;
  height: 100%; */
  border-radius: 5px;
  background-color: #fff;
  z-index: -1;
  transition: all 0.3s ease;
}
.all-btns:hover::before {
  transform: translateY(0);
}
.all-btns.transparent {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
  padding: 13px 20px;
}
.all-btns.all-btns.transparent:hover {
  border-color: transparent;
}

.mobile-menu-wrap {
  display: none;
}

.hamburger {
  position: relative;
  width: 32px;
  height: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
}

.hamburger-line {
  position: absolute;
  right: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-line:nth-child(1) {
  top: 0;
  width: 25px;
}

.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
  bottom: 0;
  width: 20px;
}
.hamburger.active .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 32px;
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 32px;
}
.get-in-touch-mob {
  font-size: 16px;
}
.mobile-nav-list-item:last-of-type {
  margin-top: 20px;
}
.social-icons-mob {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 25%;
}
.social-icons-mob a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
}
.social-icons-mob a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: linear-gradient(90deg, #e7992c, #fdeaa0, #fba926);
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease;
}
.social-icons-mob a:hover::before {
  opacity: 1;
}
.social-icons-mob a svg path {
  transition: 0.3s ease;
}
.social-icons-mob a:hover svg path {
  fill: #000;
}


#footer {
  padding: 40px 0 85px;
}
.footer-logo-wrap img {
  max-width: 133px;
}
.footer-menu-list {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 70px;
  padding-left: 0;
}
.footer-list-item a {
  color: #fff;
  transition: all 0.3s ease;
}
.footer-list-item a:hover {
  color: #f89e22;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-icons a {
  width: 52px;
  height: 52px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
}
.social-icons a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #e7992c, #fdeaa0, #fba926);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}
.social-icons a:hover::before {
  opacity: 1;
}
.social-icons a svg path {
  transition: all 0.3s ease;
}
.social-icons a:hover svg path {
  fill: #000;
}

@media (max-width: 1200px) {
    .footer-menu-list {
        gap: 40px;
    }
    .hero-buttons-wrap{
        position: relative;
        z-index: 1;
      }
}
@media (max-width: 1024px) {
    .nav-menu {
    gap: 50px;
  }
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 36px;
  }
  .all-btns {
    min-width: 164px;
    font-size: 14px;
  } 
}
@media (max-width: 991px) {
    
  .footer-menu-list {
    gap: 30px;
  }
  .social-icons a {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 18px;
  }
  p {
    font-size: 14px;
  }
  .all-btns {
    font-size: 14px;
    min-width: 154px;
  }
  .nav-menu {
    display: none !important;
  }
  .mobile-menu-wrap {
    display: flex;
    justify-content: end;
  }
  .mobile-nav-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    transform: scale(0.6);
    transform-origin: top right;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 99;
    transition: all 0.3s ease;
    padding-left: 0;
  }
  .mobile-nav-menu.active {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  .mob-nav-menu-item:first-of-type {
    margin-top: auto;
  }
  .mob-nav-menu-item a {
    color: #fff;
    font-size: 20px;
  }
  #footer {
    padding: 30px 0 60px;
  }
  .footer-logo-wrap img {
    max-width: 117px;
    margin: 0 auto 25px;
  }
  .footer-menu-list {
    flex-wrap: wrap;
    row-gap: 25px;
    justify-content: center;
  }
  .social-icons {
    flex-basis: 100%;
    justify-content: center;
  }
}
