html , body{
    padding: 0px !important;
    margin:0px !important;
    width: 100% !important;
    overflow-x: hidden !important;
}
:root {
    --main-color: #3270b6;
  }
  
  body {
    font-family: "Kufam", sans-serif;
    /* direction: rtl; */
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .text-main {
    color: var(--main-color);
  }
  
  .bg-main {
    background-color: var(--main-color);
  }
  
  .bg-rose {
    background-color: #dc2625;
  }
  
  .bg-blue {
    background-color: #2563ea;
  }
  
  .bg-yellow {
    background-color: #ffa40b;
  }
  
  .hero {
    /* padding: 30px 0; */
  }
  
  .hero .container {
    height: 75vh;
  }
  
  .features span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: rotate(30deg);
    translate: -50%;
    animation: trans linear forwards;
    animation-timeline: view();
    animation-range-start: -50px;
    animation-range-end: 400px;
  }
  
  @keyframes trans {
    0% {
      top: 0;
      transform: rotate(30deg);
    }
  
    100% {
      top: 100%;
      transform: rotate(0deg);
    }
  }
  
  .courses_circle {
    transform: translateX(50%);
  }
  
  .courses_circle_animate {
    border: 3px dashed white;
    animation: spen 100s infinite;
  
    &:hover {
      animation-play-state: paused;
    }
  }
  
  @keyframes spen {
    from {
      transform: rotate(0deg);
    }
  
    to {
      transform: rotate(360deg);
    }
  }
  
  .course {
    .img-container {
      width: 100%;
      height: 295px;
  
      img {
        transition: all 0.3s linear;
      }
  
      div {
        opacity: 0.2;
        transition: all 0.3s linear;
      }
    }
  
    &:hover {
      .img-container img {
        transform: scale(1.05);
      }
  
      .img-container div {
        opacity: 0;
      }
    }
  }
  
  .input:focus {
    outline: transparent;
    border-color: var(--main-color) !important;
  }