* {
  line-height: 2;
}
/* -------------------START :: HOME------------------- */
.title {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.title h1 {
  line-height: 1;
  font-size: 100px;
}
.title p {
  line-height: 1;
  opacity: 0.5;
  font-size: 25px;
}
.container {
  margin-left: 5rem;
  margin-top: 5%;
  height: 70vh;
  width: 60%;
  overflow-y: auto;
}
.feed {
  background-color: #242424;
  display: flex;
  align-items: center;
  color: grey;
  border-radius: 20px;
  margin: 0% 0% 5% 0%;
  padding: 5% 0;
}
.feed img {
  padding: 1rem;
}
hr {
  border-bottom: 1px solid gray;
}
/* ------------------END :: HOME------------------- */

/* ----------------START :: ABOUT---------------- */
.about_skill {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.tagcloud {
  font-size: 30px;
}
.tagcloud--item {
  color: white;
  padding: 2px 4px;
  background-color: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}

.tagcloud--item:hover {
  color: turquoise;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  opacity: 1 !important;
  z-index: 98 !important;
}
/*------------------END :: ABOUT -----------------*/

/* ------------------START :: CCOM------------------ */
.nav_minor {
  width: 100%;
  display: flex;
  flex-direction: row;
  list-style: none;
  justify-content: space-evenly;
  margin: 1% 0;
  padding: 1% 0;
  background-color: #242424;
}
.nav_minor a {
  font-size: large;
  padding: 1rem 0;
  text-decoration: none;
  color: white;
}
.nav_minor a:hover {
  color: aqua;
}
.nav_minor .active {
  color: aqua;
}
.info {
  width: 90%;
  margin: auto;
}
.info h2 {
  color: white;
  padding-top: 5%;
  text-align: center;
}
.links {
  padding-top: 5%;
  display: flex;
  justify-content: space-evenly;
  padding-bottom: 5%;
}

.links a {
  text-decoration: none;
  color: grey;
}
.links a:hover {
  color: white;
}
.links h4 {
  font-size: large;
}
/* ------------------END :: CCOM------------------ */

/* ------------------START :: PROJECTS------------------ */
.wrap {
  margin: 50px auto 0 auto;
  width: 100%;
  display: flex;
  align-items: space-around;
  max-width: 1200px;
}
.tile {
  width: 380px;
  height: 380px;
  margin: 10px;
  background-color: #212121;
  display: inline-block;
  background-size: cover;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease-out;
  box-shadow: 0px 35px 77px -17px rgba(0, 0, 0, 0.44);
  overflow: hidden;
  color: white;
}
.tile img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.4s ease-out;
}
.tile .text {
  /*   z-index:99; */
  position: absolute;
  padding: 30px;
  height: calc(100% - 60px);
}
.tile h1 {
  font-weight: 300;
  margin: 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.tile h2 {
  font-weight: 100;
  margin: 20px 0 0 0;
  font-style: italic;
  transform: translateX(200px);
}
.tile p {
  font-weight: 300;
  margin: 20px 0 0 0;
  line-height: 25px;
  /*   opacity:0; */
  transform: translateX(-200px);
  transition-delay: 0.2s;
}
.animate-text {
  opacity: 0;
  transition: all 0.6s ease-in-out;
}
.tile:hover {
  background-color: #212121;
  box-shadow: 0px 35px 77px -17px rgba(0, 0, 0, 0.64);
  transform: scale(1.05);
}
.tile:hover img {
  opacity: 0.2;
}
.tile:hover .animate-text {
  transform: translateX(0);
  opacity: 1;
}
.dots {
  position: absolute;
  bottom: 20px;
  right: 30px;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  color: currentColor;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.dots span {
  width: 5px;
  height: 5px;
  background-color: currentColor;
  border-radius: 50%;
  display: block;
  opacity: 0;
  transition: transform 0.4s ease-out, opacity 0.5s ease;
  transform: translateY(30px);
}

.tile:hover span {
  opacity: 1;
  transform: translateY(0px);
}

.dots span:nth-child(1) {
  transition-delay: 0.05s;
}
.dots span:nth-child(2) {
  transition-delay: 0.1s;
}
.dots span:nth-child(3) {
  transition-delay: 0.15s;
}

/* ------------------END :: PROJECTS------------------ */

/*+++++++++++++++++++ Small screens ++++++++++++++++++ */
@media only screen and (max-width: 800px) {
  /* SATRT :: HOME */
  .title {
    flex-direction: column;
    text-align: center;
  }
  .title h1 {
    font-size: 50px;
  }
  .title p {
    font-size: 15px;
  }
  .container {
    margin-left: 0;
    width: 100%;
  }
  .feed {
    color: grey;
    flex-direction: column;
  }
  .feed .text p {
    padding: 0 10px;
    text-align: justify;
  }
  .feed .text h5 {
    font-size: medium;
  }
  .feed img {
    width: 50px;
  }
  /* ------------------END :: HOME ------------------*/

  /* ------------------START :: ABOUT------------------ */
  .about_skill {
    flex-direction: column;
  }
  .about_skill p {
    font-size: 15px;
    text-align: justify;
  }
  .about_skill li {
    font-size: 15px;
  }
  .about_skill h1 {
    text-align: center;
  }
  .tagcloud {
    font-size: 16px;
  }
  /* ------------------END :: ABOUT ------------------*/

  /* ------------------START :: CCOM------------------ */
  .nav_minor {
    flex-direction: column;
    align-items: center;
  }
  .nav_minor li {
    padding: 0.5rem 0;
    margin: 1rem 0;
  }
  .links {
    flex-direction: column;
    padding-bottom: 5%;
  }
  .info h2 {
    color: white;
    font-size: large;
    text-align: center;
  }
  .info p {
    text-align: justify;
  }
  /* ------------------END :: CCOM------------------ */

  /* ------------------START :: PROJECTS------------------ */
  .wrap {
    flex-direction: column;
    width: 400px;
  }
  /* ------------------END :: PROJECTS------------------ */
}
@media only screen and (max-width: 1200px) {
  .about_skill {
    flex-direction: column;
  }
}
/* +++++++++++++++++ Large screens +++++++++++++++++++++ */
@media only screen and (min-width: 800px) {
  .feed .text p {
    padding: 0 10px;
    text-align: justify;
    font-size: medium;
    line-height: 2;
  }
  .feed .text h5 {
    font-size: larger;
  }
}

/* ++++++++++++++++++ SCRWLLBAR +++++++++++++++++++++++ */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #212121;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #424242;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: turquoise;
}
