@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
  scroll-behavior: smooth;
}

/*#preloader {
  background: #100007 url(./images/website\ preloader.gif) no-repeat center
  center;
  background-size: 50%;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 999999;
}*/

.navbar {
  background: #100007;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-family: "Rubik", sans-serif;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

#navbar-logo {
  background-color: white;
  background-image: linear-gradient(to top, ff0844 0%, #ffb199 100%);
  background-size: 100%;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
  font-family: "Rubik", sans-serif;
}
.navbar-menu {
  display: flex;
  align-items: center;
  list-style: none;
}
.navbar-item {
  height: 80px;
}
.navbar-links {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  text-decoration: none;
  height: 100%;
  transition: all 0.3s ease;
}
.navbar-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
}
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px 10px;
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 4px;
  color: white;
  background: #fca311;
  transition: all 0.3s ease;
}

.navbar-links:hover {
  color: #fca311;
  transition: all 0.3s ease;
}

/*MOBILE NAV*/
@media screen and (max-width: 960px) {
  .navbar-container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar-menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: -1;
  }
  .navbar-menu.active {
    background: #100007;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 60vh;
    font-size: 1.2rem;
  }
  #navbar-logo {
    padding-left: 25px;
    visibility: visible;
  }
  .navbar-toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #f8f9fa;
  }
  .navbar-item {
    width: 100%;
  }
  .navbar-links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }
  .navbar-btn {
    padding: 2rem;
  }
  .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 50px;
    margin: 0;
  }
  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }
  .navbar-toggle .bar {
    display: block;
    cursor: pointer;
  }
  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/*HERO SECTION*/
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: white;
  background-image: url(./images/hero-background-2.jpeg);
  padding: 200px 0;
}

.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 90%;
  text-align: center;
  padding: 30px;
}

/* GLITCH ANIMATION*/
.hero-heading {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
    -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
  animation: glitch 800ms infinite;
}

.hero-heading span:first-child {
  animation: glitch 800ms infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-0.025em, -0.0125em);
  opacity: 0.8;
}
.hero-heading span:last-child {
  animation: glitch 800ms infinite;
  clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0 100%);
  transform: translate(0.0125em, 0.025em);
  opacity: 0.8;
}

.hero-heading span {
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes glitch {
  0% {
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
      -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
      -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
  }
  14% {
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
      -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
      -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
  }
  15% {
    text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
      0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
      -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
  }
  49% {
    text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
      0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
      -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
  }
  50% {
    text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
      0.05em 0 0 rgba(0, 255, 0, 0.75), 0 -0.05em 0 rgba(0, 0, 255, 0.75);
  }
  99% {
    text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
      0.05em 0 0 rgba(0, 255, 0, 0.75), 0 -0.05em 0 rgba(0, 0, 255, 0.75);
  }
  100% {
    text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
      -0.025em -0.025 0 rgba(0, 255, 0, 0.75),
      -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
  }
}
/*GLITCH ANIMATION END*/

/*NO ANIMATION*/
@media (prefers-reduced-motion: reduce) {
  *,
  ::before ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}

.hero-description {
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
}
.highlight {
  border-bottom: 4px solid white;
}
@media screen and (max-width: 768px) {
  .hero-heading {
    font-size: 60px;
  }
  .hero-description {
    font-size: 40px;
  }
}

/* ABOUT SECTION */
.main {
  background-color: #100007;
  padding: 10rem 0;
}

.main-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 90%;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0 50px;
}

.main-content {
  color: #f8f9fa;
  width: 100%;
}

.main-content h1 {
  font-size: 2rem;
  background-color: #f8f9fa;
  background-size: 100%;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.main-content p {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 200;
  font-family: "Poppins", sans-serif;
}

/* ABOUT&HERO BUTTON+HOVER EFFECT*/
.hero-btn {
  font-size: 1.5rem;
  font-family: "Rubik", sans-serif;
  background: #f8f9fa;
  padding: 20px 60px;
  border: none;
  border-radius: 4px;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
}

.about-btn {
  font-size: 1.5rem;
  font-family: "Rubik", sans-serif;
  background: #f8f9fa;
  padding: 20px 40px;
  border: none;
  border-radius: 4px;
  margin-top: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
}

.hero-btn a {
  position: relative;
  z-index: 2;
  color: #100007;
  text-decoration: none;
  text-transform: uppercase;
}

.about-btn a {
  position: relative;
  z-index: 2;
  color: #100007;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-btn::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fca311;
  transition: all 0.8s;
  border-radius: 4px;
}
.about-btn::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fca311;
  transition: all 0.8s;
  border-radius: 4px;
}

.main .hero-btn:hover {
  color: #100007;
}
.hero-btn:hover:after {
  width: 100%;
}
.about-btn:hover {
  color: #f8f9fa;
}
.about-btn:hover:after {
  width: 100%;
}
/* ABOUT&HERO BUTTON+HOVER EFFECT*/

/* ABOUT IMAGE*/
.main-img-con {
  text-align: center;
}
.main-img-card {
  margin: 10px;
  height: 500px;
  width: 500px;
  border-radius: 4px;
  border: 5px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #100007;
  background-image:  url(./images/about-page-image.jpeg);
}

/*ABOUT IMAGE END*/

/*MOBILE RESPONSIVE ABOUT*/
@media screen and (max-width: 1100px) {
  .main-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    height: 90%;
  }
  .main-img-con {
    display: flex;
    justify-content: center;
  }
  .main-img-card {
    height: 450px;
    width: 450px;
  }
  .main-content {
    text-align: center;
    margin-bottom: 4rem;
  }
  .main-content h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
  }
  .main-content p {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}
/*MOBILE RESPONSIVE ABOUT END*/

@media screen and (max-width: 480px) {
  .main-img-card {
    width: 325px;
    height: 450px;
  }
  .main-content {
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }
  .main-content p {
    margin-top: 1.5rem;
    font-size: 1.5rem;
  }
  .about-btn {
    padding: 12px 36px;
    margin: 2.5rem 0;
  }
  .hero-btn {
    padding: 12px 36px;
    margin: 2.5rem 0;
  }
}
/* SERVICES SECTION */

.inner-width {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.services-section h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  margin-top: 80px;
  margin-bottom: 80px;
}

.services-section h1 strong {
  color: #fca311;
}

.service {
  text-align: center;
  margin: 20px 0;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: auto;
  background: white;
  border-radius: 50%;
  color: #100007;
  line-height: 60px;
  font-size: 25px;
}

.services-name {
  font-weight: 600;
  font-size: 18px;
  margin: 20px 0;
}

.service-desc {
  max-width: 400px;
  margin: auto;
  color: #100007;
  font-size: 17px;
  font-family: "Open Sans", sans-serif;
}

/* SERVICES SECTION END*/

/*FOOTER*/
.footer-container {
  background-color: #100007;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer-logo {
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
  text-transform: uppercase;
}

.footer-links {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
}

.footer-link-wrapper {
  display: flex;
}

.footer-link-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 16px;
  text-align: left;
  width: 160px;
  box-sizing: border-box;
}

.footer-link-items h2 {
  margin-bottom: 16px;
  color: #f8f9fa;
}

.location-p {
  font-family: "Open Sans", sans-serif;
  color: #f8f9fa;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: 0.3 ease-out;
}

.location-p:hover {
  cursor: pointer;
  color: #fca311;
  transition: 0.3 ease-out;
}

.footer-link-items a {
  font-family: "Open Sans,", sans-serif;
  color: #f8f9fa;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: 0.3 ease-out;
}

.footer-link-items a:hover {
  color: #fca311;
  transition: 0.3 ease-out;
}

.social-icon-link {
  color: #f8f9fa;
  font-size: 24px;
}

.social-media {
  max-width: 1000px;
  width: 100%;
}

.social-media-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}

.social-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 240px;
}

.website-rights {
  color: #f8f9fa;
  font-family: "Open Sans", sans-serif;
}
/*FOOTER END*/

/*MOBILE REPSONSIVE FOOTER*/
@media screen and (max-width: 820px) {
  .footer-links {
    padding-top: 2rem;
  }

  #footer-logo {
    margin-bottom: 2rem;
  }

  .website-rights {
    margin-bottom: 2rem;
  }

  .footer-link-wrapper {
    flex-direction: column;
  }

  .social-media-wrap {
    flex-direction: column;
  }

  .location-p {
    padding-top: 0;
  }
}

@media screen and (max-width: 480px) {
  .footer-link-items {
    margin: 0;
    padding: 10px;
    width: 100%;
  }
}
/*MOBILE RESPONSIVE FOOTER END*/

/*LINK DISABLE*/
@media screen and (max-device-width: 480px) {
  a [class="disable-link"] {
    pointer-events: auto !important;
    cursor: auto !important;
  }
}

a.disable-link {
  pointer-events: none;
  cursor: default;
  font-size: 13px;
}
/*LINK DISABLE END*/
