.glass-bg {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
}
.text-justify {
       text-align: justify !important;
}

section  .container {
    max-width: 1140px !important;
 
}
.shakebtn{
    animation: shake2 0.5s infinite;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0px;
    height: 0px;
    padding: 20px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

@media only screen and (min-width: 220px) and (max-width: 767px) {
    .btn-whatsapp-pulse-border {
        bottom: 116px;
        right: 26px;
        animation-play-state: paused;
    }
}

@media only screen and (min-width: 768px) {
    .btn-whatsapp-pulse-border {
        bottom: 140px;
        right: 26px;
        animation-play-state: paused;
    }
}


.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 20px;
        opacity: 0.75;
    }

    75% {
        padding: 40px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@media only screen and (min-width: 220px) and (max-width: 767px) {
    .whatsapp {
        position: fixed;
        height: auto;
        background: transparent;
        z-index: 1001;
    }
}

@media only screen and (min-width: 768px) {
    .whatsapp {
        position: fixed;
        height: auto;
        background: transparent;
        z-index: 1001;
    }
}



/* Call button */

@media only screen and (min-width: 220px) and (max-width: 767px) {
    .call {
        position: fixed;
        right: 26px;
        bottom: 192px;
        height: auto;
        background: transparent;
        z-index: 1001;
    }
}

@media only screen and (min-width: 768px) {
    .call {
        position: fixed;
        right: 26px;
        bottom: 220px;
        height: auto;
        background: transparent;
        z-index: 1001;
    }
}

.call-button {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 0px;
    position: relative;
    background-color: #421983;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0 0 0 #421983;
    -webkit-animation: pulse 3s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

.call-button:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
}

@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(188, 132, 32, 0);
    }
}

@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
}

@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 20px rgba(232, 76, 61, 0);
    }
}

@-webkit-keyframes pulseText {
    to {
        text-shadow: 0 0 100px rgba(188, 132, 32, 0);
    }
}

@-moz-keyframes pulseText {
    to {
        text-shadow: 0 0 100px rgba(232, 76, 61, 0);
    }
}

@-ms-keyframes pulseText {
    to {
        text-shadow: 0 0 100px rgba(232, 76, 61, 0);
    }
}

@keyframes pulseText {
    to {
        text-shadow: 0 0 100px rgba(232, 76, 61, 0);
    }
}

.modal-bg{
    background: url(../images/background/modal-bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.text-right{
    text-align: right !important;
}