
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap");
.custom-sticky-button {
				font-family: "Cairo", sans-serif;
			  }
.custom-sticky-button {
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    padding-left: 3rem;
    padding-right: 3rem;
    
    
    
}

.custom-sticky-button button {
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    outline: none;
    width: 100%;
    
    
}

.custom-sticky-button button:hover {
    opacity: 0.9;
}


@media (min-width: 768px) {
    .custom-sticky-button {
        display: none;
    }
}



