.bg-slide {
                            position: absolute;
                            inset: 0;
                            background-size: cover;
                            background-position: center;
                            opacity: 0;
                            animation: slideShow 9s infinite;
                          }

                          .bg-slide:nth-child(1) {
                            animation-delay: 0s;
                          }

                          .bg-slide:nth-child(2) {
                            animation-delay: 3s;
                          }

                          .bg-slide:nth-child(3) {
                            animation-delay: 6s;
                          }

                          @keyframes slideShow {
                            0% { opacity: 0; }
                            8% { opacity: 1; }
                            33% { opacity: 1; }
                            41% { opacity: 0; }
                            100% { opacity: 0; }
                            }