/* Website main color */
    .main_color{
        color:#C8252F;
    }
    
/* background color */
    .bg_main_color{
        background-color:#C8252F;
    }

/* Custom CSS for image zoom animation */
    .zoom-img {
      overflow: hidden;
    }
    .zoom-img img {
      transition: transform 0.3s ease;
    }
    .zoom-img img:hover {
      transform: scale(1.1);
    }