* {
  margin: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #000;
}
.header {
  padding: 20px;
  background: #000;
  position: fixed;
  height: 115px;
  display: none;
  top: 0;
  z-index: 2;
  transition: all 0.3s ease;
  width: 100%;
}
.active-navbar {
  background: none !important;
}
.active-navbar::after {
  content: "";
  background: black;
  opacity: 0.9;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 1); /* translucent */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(10px);
}
.flex {
  display: flex;
}
.logo-container {
  width: 100%;
}
.logo {
  width: 200px;
  height: 75px;
  background: #00b33c;
  margin-left: 20px;
  position: absolute;
  border-radius: 5px;
}
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.logo span {
  font-weight: 700;
  font-style: italic;
  font-size: 30px;
  color: #fff;
}
.header-links {
  white-space: nowrap;
  position: absolute;
  right: 0;
  padding-right: 30px;
  margin-top: 5px;
}
.header-links a {
  display: block;
  color: white;
  font-weight: 600;
  text-decoration: none;
  margin: 10px;
  padding: 12px 5px;
}

.follow-me-link {
  padding: 12px 20px !important;
  border: 1px solid #e6ffe6;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700 !important;
  transition: background 0.3s ease, color 0.3s ease;
}

.follow-me-link:hover {
  background: white;
  color: #000;
}

/*SMALL DEVICES HEADER*/

.small-screen-header {
  padding: 20px 10px;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  height: 90px;
  z-index: 2;
  background: black;
  width: 100%;
}

.small-screen-header .logo {
  width: 150px;
  height: 50px;
  border-radius: 5px;
  margin: 0 0 0 10px;
}

.menu-icon-div {
  width: 40px;
  cursor: pointer;
  margin-top: 7px;
}

.menu-icon-div div {
  height: 2px;
  margin: 5px;
  background: white;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
}

.menu-icon-div .div2 {
  left: 0px;
  transition: left 0.3s ease !important;
}

.menu-icon-div .div2.shifted {
  left: 20px;
}

/*OFFCANVAS MENU*/
.offcanvas-menu {
  position: fixed;
  height: 100%;
  width: 100%;
  background: white;
  top: 0;
  right: 100%;
  transition: right 0.3s ease;
  z-index: 5;
}

.offcanvas-menu.open {
  right: 0;
}

.menu-content {
  width: 100%;
}

.menu-content ul {
  list-style: none;
}

.menu-content li {
  margin: 50px 20px;
  font-size: 24px;
}

.menu-content a {
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
}

.menu-content a::after {
  content: "";
  position: absolute;
  height: 1px;
  background: black;
  width: 100%;
  bottom: 0;
  left: 0;
}

.offcanvas-menu button {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 5px 10px;
  border: none;
  background: white;
  color: black;
  border-radius: 5px;
  width: 50px;
  height: 40px;
  cursor: pointer;
}

/*HERO SECTION*/
.hero {
  padding: 140px 20px 50px;
  color: white;
  overflow: hidden;
}

.hero-title {
  font-size: 2.7em;
  font-weight: bold;
  margin: 10px 0;
  max-width: 200px;
}

.hero-title.green {
  color: #00b33c;
}

.hero-cta button {
  padding: 12px 35px;
  font-size: 20px;
  margin: 20px 15px;
  font-weight: bold;
  background: #000;
  border: 1px solid #8c8c8c;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}

.hero-cta button:hover {
  background: #00b33c;
  border-color: #00b33c;
}

.facts {
  padding: 50px 20px;
}

.facts .flex {
  flex-wrap: wrap;
}

.fact-card {
  width: 100%;
  border-radius: 10px;
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  margin: 15px auto;
}

.fact-card .bold-text {
  color: #fff;
  font-weight: 700;
  display: block;
  font-size: 22px;
  padding-bottom: 5px;
}

.fact-card .light-text {
  color: #fff;
  font-weight: normal;
  display: block;
  font-size: 20px;
  color: #f2f2f2;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.card-icon svg {
  width: 50px;
  height: 50px;
  fill: white !important;
  margin-bottom: 10px;
}

.light-icon {
  fill: #f2f2f2;
}

.light-icon svg {
  fill: #fff;
  opacity: 0.4;
  width: 200px;
  height: 200px;
  position: absolute;
  right: -50px;
  bottom: -40px;
}

/*ABOUT ME*/
.about-me {
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

h1 {
  color: #00b33c;
  font-size: 2.7em;
  position: relative;
  z-index: 1;
  padding-left: 10px;
  background: black;
  display: inline-block;
  padding-right: 30px;
}

h1::before {
  content: "";
  position: absolute;
  background: #a6a6a6;
  opacity: 0.5;
  width: 50px;
  height: 100px;
  z-index: -1;
  top: -25px;
  left: 0;
}

.about-me::after {
  content: "";
  position: absolute;
  background: #808080;
  opacity: 0.5;
  width: 70%;
  height: 0.5px;
  z-index: -1;
  top: 75px;
  right: 20px;
}

h1 span {
  color: white;
}

.about-me p {
  color: #fff;
  margin: 50px 0;
  font-size: 18px;
  line-height: 27px;
  max-width: 450px;
  word-spacing: 3px;
  letter-spacing: 0.2px;
}

.info-card {
  margin: 0 0 30px;
  max-width: 500px;
}

.info-icon {
  position: relative;
}

.info-icon svg {
  width: 70px;
  height: 70px;
  fill: #00b33c;
}

.info-details {
  padding: 0 20px;
}

.info-details h2 {
  color: white;
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-block;
}

.info-details h2::after {
  content: "";
  position: absolute;
  height: 0.5px;
  width: 30px;
  background: white;
  top: 15px;
  right: -50px;
}

.info-details p {
  margin: 10px 0;
  font-size: 16px;
}

/*ACHIEVEMENTS*/
.achievements {
  overflow: hidden;
}

.achievements .about-me {
  padding: 0 20px;
}

.achievements .img-box {
  width: 45%;
  padding: 0 20px 0 0;
  display: none;
}

.achievements .img-box img {
  background: #808080;
  width: 100%;
  height: 100%;
}

.achievements .about-me {
  margin: 0;
}

.stat-card {
  width: 33%;
  padding-left: 15px;
}

.number {
  color: white;
  font-weight: bold;
  font-size: 40px;
  position: relative;
}

.number::before {
  content: "";
  background: #00b33c;
  width: 50px;
  height: 50px;
  position: absolute;
  z-index: -1;
  left: -10px;
  top: -15px;
  border-radius: 10px 0 0;
}

.stat-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 5px 0;
}

/*GALLERY*/
.gallery {
  padding: 90px 20px 70px;
  display: block;
  overflow: hidden;
}

.gallery h1 {
  white-space: nowrap;
}

.gallery .flex {
  margin-top: 50px;
  flex-wrap: wrap;
}

.gallery .img-box {
  width: 50%;
  aspect-ratio: 3/4;
  padding: 5px;
}

.gallery img {
  background: #808080 !important;
  width: 100%;
  height: 100%;
}

/*AWARDS WON*/
.awards {
  padding: 50px 20px;
}

.awards h1 {
  margin-bottom: 20px;
}

.award-card {
  margin: 40px 0;
}

.awards .flex {
  flex-wrap: wrap;
}

.award-icon {
  width: 100%;
  padding: 20px;
  position: relative;
}

.award-icon .centered {
  position: unset;
  transform: unset;
}

.award-icon .flex {
  max-width: 90%;
  margin: 0 auto;
}

.award-icon svg {
  width: 100px;
  height: 100px;
  fill: gold;
}

.award-icon .icon-text {
  color: white;
  font-weight: bold;
  font-size: 40px;
  padding: 25px 20px;
  white-space: nowrap;
}

.award-icon::after {
  content: "";
  width: 100%;
  height: 100%;
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.2;
}

.award-details {
  color: white;
  width: 100%;
  position: relative;
  padding: 20px;
}

.award-details::after {
  content: "";
  width: 100%;
  height: 100%;
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.3;
}

.award-card h2 {
  margin-bottom: 20px;
}

.award-card p {
  color: #fff;
  margin: 0;
  font-size: 16px;
  line-height: 27px;
  word-spacing: 3px;
  letter-spacing: 0.2px;
}

/*CONTACT*/
.contact {
  padding: 70px 20px;
}

.contact h1 {
  margin-bottom: 30px;
}

.contact-card {
  width: 100%;
  margin: 30px 0;
}

.contact-icon {
  width: 120px;
  position: relative;
  border-radius: 10px;
  background: #f60;
  overflow: hidden;
}

.contact-icon svg {
  fill: white;
  width: 70px;
  height: 70px;
  opacity: 0.7;
  position: absolute;
  right: -10px;
  bottom: -10px;
}

.contact-details {
  width: 100%;
  padding: 0 20px;
}

.contact-details h2 {
  color: white;
  margin-bottom: 20px;
}

.contact-details a {
  display: block;
  text-decoration: none;
  color: white;
  margin: 10px 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/*FOLLOW ME*/
.follow {
  margin-top: 50px;
  padding: 50px 20px;
  position: relative;
  height: 300px;
}

.follow::after {
  content: "";
  background: white;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 1;
}

.follow h1 {
  color: black;
  background: none;
  display: block;
  white-space: nowrap;
  text-align: center;
  padding: 0 0 20px 0;
}

.follow h1::before {
  position: unset;
}

.follow .flex {
  max-width: 240px;
  margin: auto;
}

.follow-circle {
  background: black;
  width: 60px;
  height: 60px;
  position: relative;
  margin: auto;
  border-radius: 50%;
}

.follow-circle svg {
  fill: white;
}

.developer {
  background: white;
  padding: 50px 20px;
  position: relative;
}

.developer p {
  text-align: center;
  font-style: italic;
  font-weight: 500;
}

.donate-link {
  color: #00b33c;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #00b33c;
  padding: 10px 20px;
  font-weight: 600;
}

/*BREAKPOINTS*/

@media only screen and (min-width: 769px) {
  /*LARGE DEVICES HEADER*/
  .header {
    display: block;
  }

  .logo {
    display: none;
  }

  .small-screen-header {
    display: none;
  }

  .hero {
    padding: 150px 40px 40px;
  }

  .hero-title {
    font-size: 4em;
  }

  .hero-cta button {
    font-size: 24px;
  }

  .fact-card {
    width: 22%;
  }

  .about-me {
    padding: 60px 40px;
  }

  h1 {
    font-size: 4em;
  }

  h1::before {
    top: -15px;
    width: 70px;
  }

  .about-me::after {
    top: 100px;
  }

  .number {
    font-size: 50px;
  }

  .number::before {
    top: -10px;
  }

  .achievements {
    padding: 60px 40px;
  }

  .achievements .img-box {
    display: block;
  }

  .stat-text {
    font-size: 20px;
  }

  .gallery,
  .awards {
    padding: 60px 40px;
  }

  .gallery .img-box {
    width: 25%;
  }

  .awards .flex {
    flex-wrap: nowrap;
  }

  .award-icon {
    width: 30%;
  }

  .award-icon .centered {
    position: absolute;
    transform: translate(-50%, -50%);
  }

  .award-details {
    padding: 50px;
  }

  .contact {
    padding: 60px 40px;
  }

  .contact-flex {
    display: flex;
    flex-wrap: nowrap;
  }
}
