/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");


/* Global Reset and Basic Styling */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
}

/* Root Color Variables */
:root {
  --bg-color: #081b29;
  --second-bg-color: #323946;
  --text-color: #fff;
  --main-color: #0ef;
  --disabled-color: #fff3;
} 

/* Base Styling */
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
}

/* Header Section */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 9%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  animation: show-header 1.5s linear forwards;
  animation-delay: 1.2s;
}

@media screen and (max-width: 991px) {
  header {
    padding-left: 25px;
    padding-right: 25px;
  }
}

header.active {
  animation: show-header 1.5s linear forwards;
  animation-delay: 1.2s;
}

@keyframes show-header {
  100% {
      visibility: visible;
      opacity: 1;
  }
}

.header .sticky {
  border-bottom: .1rem solid rgba(0, 0, 0, .2);
}

.logo {
  font-size: 30px;
  font-weight: 700;
  color: var(--main-color);
}

.navbar a {
  list-style: none;
  font-size: 20px;
  color: var(--text-color);
  font-weight: 500;
  margin-left: 35px;
  transition: .5s;
}

.navbar a:hover,
.navbar a.active {
  color: var(--main-color);
}

#menu-icon {
  font-size: 3.5rem;
  cursor: pointer;
  color: var(--main-color);
}

/* Section Styling */
section {
  padding: 10rem 9%;
  /* margin-bottom: 1px; */
}

.heading {
  text-align: center;
  font-size: 45px;
}

@media screen and (max-width:767px) {

  .heading {
    font-size: 32px;
  }

  section {
    padding: 4rem 25px;
  }

}

