*{ scroll-behavior: smooth; } /* ========== Sctoll To Top Section ========== */ #scrollTopBtn { position: fixed; bottom: 20px; right: 20px; width: 50px; height: 50px; background-color: var(--wp--preset--color--contrast); color: var(--wp--preset--color--base); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; cursor: pointer; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; z-index: 999; } #scrollTopBtn.show { opacity: 1; visibility: visible; } @media only screen and (max-width: 769px){ #scrollTopBtn{ display: none; } } /* ========== Project Section ========== */ .project-card{ position: relative; overflow: hidden; } .project-card:hover .project-card-cta{ opacity:1; transition: all 0.8s ease-in; } .project-card-cta{ position: absolute; bottom: 5%; left:0; width: 90%; margin: 0 5% !important; opacity: 0; } /* ========== Services Section ========== */ .service-box-content{ max-width: 34%; } @media only screen and (max-width: 769px){ .service-box-content{ max-width: 100%; } }