/* Global Project Styles*/
@import url('https://fonts.googleapis.com/css2?family=Aclonica&family=Charm:wght@400;700&family=Kalam:wght@400;700&family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  transition: all .4s ease-in-out;
}

::-webkit-scrollbar {
  width: 0;
}

/* Custom Scroll Bar*/
#scrollPath {
  position: fixed;
  top: 0;
  right: 0;
  width: 5px;
  height: 100vh;
  background: #ffffff0d;
}

#progressBar {
  position: fixed;
  top: 0;
  right: 0;
  width: 5px;
  background: linear-gradient(to top, #008aff, #00ffef);
  animation: progress 5s linear infinite;
}

@keyframes progress {
  0%, 100% {
    filter: hue-rotate(0deg);
  }

  50% {
    filter: hue-rotate(360deg);
  }
}

#progressBar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #008aff, #00ffef);
  filter: blur(10px);
}

#progressBar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #008aff, #00ffef);
  filter: blur(30px);
}

/* Whatsapp - Link*/
.btn_whatsapp__body {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.btn_whatsapp__body:hover {
  transition: .3s ease-in-out;
  transform: scale(1.25);
}

.btn_whatsapp__body:active {
  transition: .2s ease-in-out;
  transform: scaleX(.9);
  transform: scaleY(.9);
  opacity: .3;
}

.image_whatsapp__body {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive*/

/* Styles for portrait mode smartphones */
@media only screen and (max-width: 885px) {

  /* Whatsapp - Link*/
  .btn_whatsapp__body {
    width: 50px;
    height: 50px;
  }

  .image_whatsapp__body {
    margin: 10px 0 0 10px;
  }
}

/* Styles for landscape mode smartphones */
@media only screen and (max-width: 885px) and (orientation: landscape) {

  /* Custom Scroll Bar*/
  #scrollPath {
    width: 2.5px;
  }

  #progressBar {
    width: 2.5px;
  }

  /* Whatsapp - Link*/
  .btn_whatsapp__body {
    width: 35px;
    height: 35px;
    bottom: 12px;
    right: 12px;
    font-size: 2rem;
  }
}

/* Styles for portrait mode tablets */
@media only screen and (min-width: 768px) and (max-width: 1024px) {

  /* Whatsapp - Link*/
  .btn_whatsapp__body {
    width: 70px;
    height: 70px;
    bottom: 35px;
  }
}

/* Styles for landscape mode tablets */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

  /* Whatsapp - Link*/
  .btn_whatsapp__body {
    width: 45px;
    height: 45px;
    bottom: 35px;
  }
}

/* Styles for Large screens Full HD resolution _ 1920 px above */
@media only screen and (min-width: 1921px) {
  .image_whatsapp__body {
    margin: -20px 10px 0 0;
  }
}

/* Styles for Large screens 4 K resolution _ 3840 px above */
@media only screen and (min-width: 3840px) {

  /* Whatsapp - Link*/
  .btn_whatsapp__body {
    width: 170px;
    height: 170px;
  }
}