.rs-services-item .rs-services-icon .svg-icon{
    width: 30%;
}


.toggle-container {
    width: 251px;
    padding: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: var(--background-color-2);
    border-radius: 6px;
    transition: background-color 0.3s ease-in-out 0.1s;
  }
  
  .fa-sun,.fa-moon {
    font-size: 1.5rem;
    color: #828FA3;
  }
  
  .text {
    color: #828FA3;
  }
  
  /* TOGGLE SWITCH STYLES */
  .switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 32px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #635FC7;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 5px;
    bottom: 5px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
  }
  
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  /* CIRCLE STYLES AND ANIMATION */
  
  .darkCircle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2B2C37;
    clip-path: circle(0% at 50% 0%);
    z-index: -1;
  }
  
  .lightCircle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    clip-path: circle(0% at 50% 0%);
    z-index: -1;
  }
  
  .darkCircle.grow {
    animation-name: circle-grow;
    animation-duration: 0.7s;
    animation-timing-function: ease-in-out;
  }
  
  .lightCircle.grow {
    animation-name: circle-grow;
    animation-duration: 0.7s;
    animation-timing-function: ease-in-out;
  }
  
  .dark {
    --background-color: #2B2C37;
    --background-color-2: #20212C;
    --text-color: #fff;
    transition: background-color 0.3s ease-in-out 0.4s, color 0.7s ease-in-out;
  }
  
  .light {
    --background-color: #FFFFFF;
    --background-color-2: #F4F7FD;
    --text-color: #000000;
    transition: background-color 0.3s ease-in-out 0.4s, color 0.7s ease-in-out;
  }
  
  @keyframes circle-grow {
    0% {
      clip-path: circle(0% at 50% 0%);
    }
    
    100% {
      clip-path: circle(150% at 50% 0%);
    }
  }
  