.text-justify {
    text-align: justify;
}

@media (min-width: 992px) {
    .custom-padding {
        padding-left: 80px;
    }
}

@media (max-width: 768px) {
    .custom-padding {
        padding-left: 10px;
    }
}

/*default-btn-3*/
.default-btn-3 {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: var(--whiteColor);
    background-color: var(--mainColor);
    transition: var(--transition);
    border-radius: 5px;
    font-weight: 700;
    font-size: var(--fontSize);
    padding-left: 55px;
    padding-right: 30px;
    padding-top: 11px;
    padding-bottom: 11px;
}

.default-btn-3 span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--blackColor);
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 5px;
}

.default-btn-3 i {
    position: absolute;
    left: 30px;
    top: 10px;
}

.default-btn-3:hover {
    color: var(--whiteColor);
}

.default-btn-3:hover span {
    width: 225%;
    height: 562.5px;
}

.callbutton {
    position: fixed;
    bottom: 85px;
    z-index: 99;
    left: 30px;
}
.callbutton i {
    font-size: 22px;
    color: #fff;
}
.content-center {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.pulse {
    height: 45px;
    width: 45px;
    background-color: #bc2351;
    background-image: linear-gradient(335deg, #264568 0%, #bc2351 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pulse::before {
    content: "";
    position: absolute;

    border: 2px solid #bc2351;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 50%;
    animation: pulse 1s linear infinite;
}

.pulse::after {
    content: "";
    position: absolute;
    border: 2px solid #bc2351;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 50%;
    animation: pulse 1s linear infinite;
    animation-delay: 0.3s;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.whatsapp {
    position: fixed;
    right: 30px;
    bottom: 85px;
    background: transparent;
    z-index: 1001;
}
.whatsapp i {
    font-size: 30px;
    color: #fff;
}
.pulse1 {
    /* background-color: #091e3e; */
    /* border-radius: 50%; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: relative; */
}

.whatsapp-button {
    width: 45px;
    height: 45px;
    border-radius: 50px;
    border: 0px;
    position: relative;
    background-color: #24cc63;
    color: #fff;
    /* cursor: pointer; */
    box-shadow: 0 0 0 0 #24cc63;
}

.pulse1::before {
    content: "";
    position: absolute;
    border: 2px solid #24cc63;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 50%;
    animation: pulse 1s linear infinite;
}

.pulse1::after {
    content: "";
    position: absolute;
    border: 2px solid #24cc63;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 50%;
    animation: pulse 1s linear infinite;
    animation-delay: 0.3s;
}
