@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
:root {
  --first-color: #212529 !important;
  --secondary-color: #FFC107 !important;
  --text-color: #F8F9FA !important;
  --section: #e4e4e45a !important;
  --body-color: #F8F9FA !important;
  --body-font: 'Nunito', sans-serif;
}
/* <--------GLOBAL ELEMENT--------> */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #303030;
  }
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  *,
  ::before,
  ::after {
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  * {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
  }
  /* ALL TEXT DESIGN */
    a {
      text-decoration: none !important;
    }
  /* ALL TEXT DESIGN */
/* <--------GLOBAL ELEMENT--------> */

/* <--------END OF NAV, SIDEBAR & PAGINATIONS--------> */
  .text-shadow {
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  }
  .nav-hover-home .nav-hover-link {
    position: relative; 
    color: #000; 
    text-decoration: none;
  }
  .nav-hover-home .nav-hover-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px; 
    background-color: #000; 
    transition: width 0.3s ease;
  }
  .nav-hover-home .nav-hover-link:hover::after {
    width: 100%; 
  }
  .carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #000 !important;
    opacity: 0.1; 
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .carousel-indicators .active {
    opacity: 1 !important;
    transform: scale(1.3);
  }
/* <--------END OF NAV, SIDEBAR & PAGINATIONS--------> */

/* <--------ALL ANIMS--------> */
 .about-section{
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    overflow: hidden;
    background: url("../../img/dummy_img_13.webp") center/cover no-repeat !important;
  }
  .about-section .star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, .1),
        0 0 0 8px rgba(255, 255, 255, .1),
        0 0 20px rgba(255, 255, 255, .1);
    animation: animate 3s linear infinite;
  }
  .about-section .star::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
  }
  .video-card-materials {
    transition: all 0.5s ease;
  }
  .video-card-materials:hover {
    filter: none;
    opacity: 1;
    transform: translateY(-10px);
  }
  @keyframes animate {
    0% {
      transform: rotate(315deg) translateX(0);
      opacity: 1;
    }
    70% {
      opacity: 1;
    }
    100% {
      transform: rotate(315deg) translateX(-1000px);
      opacity: 0;
    }
  }
  .star:nth-child(2) {
    top: 5%;
    left: 70%;
    animation-duration: 3s;
    animation-delay: .2s;
  }
  .star:nth-child(3) {
    top: 15%;
    left: 85%;
    animation-duration: 2s;
    animation-delay: .4s;
  }
  .star:nth-child(5) {
    top: 0%;
    left: 40%;
    animation-duration: 2.5s;
    animation-delay: .8s;
  }
  .star:nth-child(6) {
    top: 10%;
    left: 20%;
    animation-duration: 3s;
    animation-delay: 1s;
  }
  .star:nth-child(7) {
    top: 40%;
    left: 95%;
    animation-duration: 1.75s;
    animation-delay: 1.2s;
  }
  .star:nth-child(8) {
    top: 0%;
    left: 10%;
    animation-duration: 1.25s;
    animation-delay: 1.4s;
  }
  @media (max-width: 768px) {
    .about-section .star::before {
      width: 150px;
    }
  }
/* <--------ALL ANIMS--------> */

/* <--------START OF FOOTER DESIGN--------> */
  .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid rgb(124, 122, 122);
  }
  footer .social-icons {
    color: black;
    font-size: 23px;
    margin-right: 8px;
  }
/* <--------END OF FOOTER DESIGN--------> */

/* <--------ALL ANIMATIONS--------> */
  @keyframes bounceDownIn {
    0% {
      opacity: 0;
      transform: translateY(-100%);
    }
    60% {
      transform: translateY(10%);
    }
    80% {
      transform: translateY(-5%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .modal {
    animation: bounceDownIn 0.5s;
  }
  .typing-text {
    overflow: hidden;
    white-space: nowrap; 
    margin: 0;
    padding: 0;
    display: inline-block;
  }
  .alertify-notifier .ajs-message {
    transition: transform 0.5s ease, opacity 0.5s ease !important;
    transform: translateX(120%) !important;
    opacity: 0 !important;
  }
  .alertify-notifier .ajs-message.ajs-visible {
      transform: translateX(0) !important;
      opacity: 1 !important;
  }
  .alertify-notifier .ajs-message {
      transition: transform 0.5s ease, opacity 0.5s ease !important;
      transform: translateX(120%) !important;
      opacity: 0 !important;
  }
  .alertify-notifier .ajs-message.ajs-visible {
      transform: translateX(0) !important;
      opacity: 1 !important;
  }
/* <--------ALL ANIMATIONS--------> */

/* <--------RESPONSIVE VIEW --------> */
  @media(max-width: 820px) {
 
  }
  /* MOBILE VIEW */
  @media only screen 
    and (min-device-width: 320px) 
    and (max-device-width: 600px) {
  }
/* <--------RESPONSIVE VIEW --------> */