      /* Banner container */
      .floating-cta-banner {
        width: 350px;
        height: 100px;
        position: fixed;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-around;
        bottom: 0; /* Adjust the distance from the bottom */
        left: 20px; /* Adjust the distance from the right */
        background-color: #d1c59f; /* Background color */
        color: #191919; /* Text color */
        padding:0;
        border-radius: 5px; /* Rounded corners */
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Box shadow */
        z-index: 998; /* Adjust the z-index to appear above other elements */
        font-size: 16px; /* Font size */
        margin: 0; /* Remove default margins */
        cursor: pointer;
      }

      .floating-cta-banner .btns {
        display: flex;
      }
      .floating-cta-banner .btns .tel , .floating-cta-banner .btns .contact{

        margin: 0 5px;
        border-radius: 5px;
        background-color: #191919;
        padding: 10px;
		transition: all 200ms ease-in-out;
      }

	  .floating-cta-banner .btns .tel i , .floating-cta-banner .btns .contact i{
        padding: 0 5px;
      }

.floating-cta-banner .btns .tel:hover , .floating-cta-banner .btns .contact:hover{
	background-color: #DEC16E;
}


    .floating-cta-banner a {
	display: flex;
	align-items: center;
	justify-content: space-between;
    text-decoration: none;
    color: white  !important;
    }
   