/* ------------------------------------------------------------
   MINI CSS RESET
------------------------------------------------------------ */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ------------------------------------------------------------
   FONT IMPORT
------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ------------------------------------------------------------
   GLOBAL RESETS & BASE STYLING
------------------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  color: #1d1d24;
}

a:hover {
  color: #27bce6;
}

/* ------------------------------------------------------------
   NAVIGATION BAR STYLING
------------------------------------------------------------ */
div ul li a:hover {
  color: #27bce6;
}

div ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 3px;
  background: #27bce6;
  transition: .3s;
  bottom: 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 100px;
}

.logo {
  max-height: 60px;
}

nav ul li {
  list-style: none;
  display: inline-block;
  padding: 10px 20px;
}

nav ul li a {
  position: relative;
  padding: 5px 0;
}

nav ul li a:hover {
  color: #27bce6;
}

nav ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 3px;
  background: #27bce6;
  transition: .3s;
  bottom: 0;
}

nav ul li a:hover:after {
  width: 100%;
}

/* ------------------------------------------------------------
   FIXED BACKGROUND IMAGE (non-repeating)
------------------------------------------------------------ */
.wrapper {
  width: 100%;
  min-height: 100vh;
  background: url(../img/bg1.jpg) no-repeat center center fixed;
  background-size: cover;
}

/* ------------------------------------------------------------
   PAGE CONTENT AREA
------------------------------------------------------------ */
.content {
  position: relative;
  margin: 100px 8% 60px;
  z-index: 1;
}

/* ------------------------------------------------------------
   PAGE TITLE STYLING
------------------------------------------------------------ */
.content .title,
.section-heading {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: inline-block;
  margin-bottom: 40px;
  font-weight: 600;
  background: linear-gradient(120deg, #1c99fe 20.69%, #7644ff 50.19%, #fd4766 79.69%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ------------------------------------------------------------
   SECTION HEADINGS
------------------------------------------------------------ */
.section-heading {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-top: 30px;
  margin-bottom: 12px;
  font-weight: 500;
  background: linear-gradient(90deg, #1c99fe, #7644ff, #fd4766);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ------------------------------------------------------------
   SPACING BETWEEN SECTION BLOCKS
------------------------------------------------------------ */
.content .section {
  margin-bottom: 48px;
}

/* ------------------------------------------------------------
   MAIN HEADING
------------------------------------------------------------ */
.content h1 {
  color: #1f1f25;
  font-size: 75px;
  font-weight: 900;
  line-height: 90px;
  text-transform: inherit;
  width: 70%;
}

.content h1 span {
  color: #27bce6;
}

/* ------------------------------------------------------------
   PARAGRAPH STYLING
------------------------------------------------------------ */
.content p {
  width: 55%;
  color: #545454;
  margin-top: 25px;
  margin-bottom: 20px;
}

/* ------------------------------------------------------------
   LIST STYLING
------------------------------------------------------------ */
.content ul {
  margin-bottom: 20px;
  padding-left: 1.25rem;
  list-style-type: disc;
}

.unlinked {
  color: #888;
}

.content ul li {
  font-weight: 400;
  color: #545454;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   RESPONSIVE DESIGN
------------------------------------------------------------ */
@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 16px;
  }

  nav {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .content {
    position: static;
    padding: 20px;
    margin: 60px 16px 40px;
  }

  .content .title {
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .content h1 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 800;
    width: 100%;
  }

  .section-heading {
    font-size: 15px;
    letter-spacing: 1.5px;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .content p,
  .content ul {
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
  }

  .content ul li {
    font-size: 15px;
    margin-bottom: 8px;
  }

  ul,
  ol {
    font-size: 16px;
    padding-left: 1.25rem;
    line-height: 1.6;
  }

  li {
    font-size: 15px;
  }
}

/* ------------------------------------------------------------
   DARK MODE OVERRIDE FOR CHROME & SAFARI
------------------------------------------------------------ */
@media (prefers-color-scheme: dark) {
  body,
  .wrapper {
    background: url(../img/bg1.jpg) no-repeat center center fixed;
    background-size: cover;
    background-color: #ffffff;
    color: #1f1f25;
  }

  .content h1,
  .content p,
  .content ul li {
    color: #1f1f25;
  }

  .unlinked {
    color: #888;
  }
}
