    .sticky-quote {
        position: fixed;
        width: 153px;
        height: 34px;
        top: 30%;
        bottom: 0px;
        right: -60px;
        z-index: 999;
        transform: rotate(270deg);
        background: #b1977755;
        color: #fff;
        text-orientation: upright;
        /*padding: 0.3rem 0.8rem;*/
    }

    .sticky-whatsapp {
        position: fixed;
        width: 30px;
        height: 30px;
        top: 45%;
        bottom: 0px;
        right: 15px;
        z-index: 999;
        /*transform: rotate(270deg);
        background: #b1977755;*/
        color: #fff;
        text-orientation: upright;
        /*padding: 0.3rem 0.8rem;*/
    }

    .sticky-instagram {
        position: fixed;
        width: 30px;
        height: 30px;
        top: 53%;
        bottom: 0px;
        right: 15px;
        z-index: 999;
        /*transform: rotate(270deg);
        background: #b1977755;*/
        color: #fff;
        text-orientation: upright;
        /*padding: 0.3rem 0.8rem;*/
    }

    .sticky-facebook {
        position: fixed;
        width: 30px;
        height: 30px;
        top: 61%;
        bottom: 0px;
        right: 15px;
        z-index: 999;
        /*transform: rotate(270deg);
        background: #b1977755;*/
        color: #fff;
        text-orientation: upright;
        /*padding: 0.3rem 0.8rem;*/
    }

    .sticky-call {
        position: fixed;
        width: 30px;
        height: 30px;
        top: 69%;
        bottom: 0px;
        right: 15px;
        z-index: 999;
        /*transform: rotate(270deg);
        background: #b1977755;*/
        color: #fff;
        text-orientation: upright;
        /*padding: 0.3rem 0.8rem;*/
    }

    .modal-dark .modal-content {
        background-color: #1e2229dd;
    }

    .modal-dark .modal-content .modal-header,
    .modal-dark .modal-content .modal-footer {
        border-color: #424242;
    }

    .modal-dark .form-control {
        background-color: #282d36;
        border-color: #282d36;
    }

    /* Pulse animation : begin*/

    .wrapper {
        /*display: flex;*/
        justify-content: center;
        align-items: center;
        height: 100vh
    }

    .pulse {
        width: 70px;
        height: 70px;
        background-color: #b1977755;
        border-radius: 50%;
        position: relative;
        animation: animate 3s linear infinite
    }

    .pulse i {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        color: #fff;
        height: 100%;
        cursor: pointer
    }

    .theme-link {
        color: #b19777;
        font-family: 'Oswald', sans-serif;
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    @keyframes animate {
        0% {
            box-shadow: 0 0 0 0 #6dd46811, 0 0 0 0 #6dd46811
        }
        40% {
            box-shadow: 0 0 0 10px #b1977722, 0 0 0 0 #6dd46822
        }
        80% {
            box-shadow: 0 0 0 10px #6dd46822, 0 0 0 7px #6dd46822
        }
        100% {
            box-shadow: 0 0 0 0 #6dd46811, 0 0 0 7px #6dd46811
        }
    }