/* Section1 */
.section1 {
    cursor: pointer;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 4;
} 

.section1-container {
  width: 70%;
  padding: 6vw 0;
  z-index: 4;
  color: rgb(223, 223, 223);
  font-size: 1vw;
  font-weight: 300;
}

.section1-container span b {
  font-weight: 700;
  font-size: 1.1vw;
  color: #fff;
}

.section1-container h1 {
  font-family: minecraft, Helvetica, sans-serif;
  font-size: 6vw;
}

.section1-container ul, .section1-container ol {
  padding: 1vw;
}

div.socials {
  display: block;
  bottom: 0;
  display: flex;
  margin: 0 auto;
  padding: 3vw 2vw;
  gap: 1vw;
  z-index: 4;
  pointer-events: none;
}

div.socials a {
  color: #fff;
  position: relative;
  margin: 0.7vw;
  pointer-events: all;
}

div.socials a svg {
  width: 1.2vw;
  height: 1.2vw;
  color: #fff;
  fill: #fff;
  position: absolute;
  transition: all 0.3s ease;
}
div.socials a svg:hover {
  /* width: 2.6vw;
  height: 2.6vw; */
  transform: scale(1.4);
  color: #fff;
  fill: #fff;
}

#cv {
  position: fixed;
  z-index: -1;
  opacity: 100%;
}

/* Section 1 end */

/* Media Queries */
@media (max-width: 767.98px) { 
    
    .section1 {
        background-size: auto;
        background-position: center;
    }  

    .section1-container {
      width: 90%;
      padding: 7em 0;
      z-index: 4;
      background: transparent;
      color: #fff;
      font-size: 0.9em;
      font-weight: 300;
    }

    .section1-container span b {
      font-weight: 700;
      font-size: 1.1em;
    }
    
    .section1-container h1 {
      font-family: minecraft, Helvetica, sans-serif;
      font-size: 4em;
    }
    
    .section1-container ul, .section1-container ol {
      padding: 1em;
    }
    
    div.socials {
      height: 10vw;
      bottom: 8vw;
      margin: 0 auto;
      padding: 20vw;
      gap: 8vw;
    }

    div.socials img {
      position: absolute;
      width: 40vw;
      height: auto;
      left: 5%;
      transform: translateY(-7vw);
    }

    div.socials {
      bottom: 8vw;
      margin: 1em auto 2em auto;
      padding: 2vw;
      gap: 8vw;
    }
    
    div.socials div:nth-child(1), div.socials div:nth-child(3) {
      position: absolute;
      display: none;
    }
    
    div.socials div a {
      position: relative;
      display: inline-block;
      margin: 0 5vw;
    }
    
    div.socials div a svg {
      width: 5vw;
      height: 5vw;
      fill: #fff;
      position: absolute;
      transition: all 0.3s ease;
    }
    div.socials div a svg:hover {
      /* width: 2.6vw;
      height: 2.6vw; */
      transform: scale(1.4);
      fill: #fff;
    }
    /* Section 1 end */
}
/* Media Queries end */