.navigator {
  width: 100%;
  height: 0.5px;
  background-color: black;
  opacity: 0;
  display: block;
  margin-bottom: 100px;
}

section {
  margin: 100px 0;
  animation: section-animate 1s;
  opacity: 0;
  transition: all 0.5s;
}

img {
   user-select: none;
  -webkit-user-drag: none;
}

.sectionTitles {
  /* border: 1px solid red; */
  color: var(--white-color);
  text-align: center;
  font-weight: 600;
}

.sectionTitles .small {
  text-align: center;
  font-size: 45px;
  background: linear-gradient(
    to right,
    var(--first-color),
    var(--second-color)
  );
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sectionTitles .big {
  font-size: 65px;
  background: linear-gradient(to right, var(--white-color), #d3d3d3);
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bold {
  font-weight: 600;
}

.bolder {
  font-weight: 900;
}

#sec-btn {
  transition: all 0.5s ease-in-out;
}

#sec-btn:hover {
  background: linear-gradient(to left, var(--first-color), var(--second-color));
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.5s ease-in-out;
}


.gradient-text {
  display: inline;
  background: linear-gradient(to left, var(--first-color), var(--second-color));
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@supports not (background-clip: text) {
  .gradient-text {
    background: transparent;
    color: var(--second-color);
    -webkit-text-fill-color: var(--second-color);
  }

  .sectionTitles .small {
    background: transparent !important;
    color: var(--second-color) !important;
    -webkit-text-fill-color: var(--second-color) !important;
  }

  .sectionTitles .big {
    background: transparent !important;
    color: var(--white-color) !important;
    -webkit-text-fill-color: var(--white-color) !important;
  }
}


/* # Laptops Styles Size */
@media only screen and (max-width: 1100px) {
  section {
    margin: 20px 20px 100px 20px;
    /* background-color: red; */
  }

  .sectionTitles .small {
    text-align: center;
    font-size: 30px;

    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .sectionTitles .big {
    font-size: 45px;
  }
}

/* # Tablets Styles Size  200% */
@media only screen and (max-width: 768px) {
  section {
    margin: 50px 20px;
    /* background-color: red; */
  }

  .sectionTitles .small {
    text-align: center;
    font-size: 32px;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .sectionTitles .big {
    font-size: 40px;
  }
}


/* # Tablets Styles Size  200% */
@media only screen and (max-width: 600px) {
  section {
    margin: 25px 10px;
  }

  .sectionTitles .small {
    font-size: 20px;
  }

  .sectionTitles .big {
    font-size: 30px;
  }
}

