.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 87px;
    right: 19px;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 25px;
    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);
    }
}

.single-cta {
    display: flex;
}

ul {
    margin: 0px;
    padding: 0px;
}

.footer-section {
    background: #c9bfbf29;
    position: relative;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta i {
    color: #00233f !important;
    font-size: 18px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #000000;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #000000;
    line-height: 28px;
}

.footer-social-icon span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    height: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: #3B5998;
}

.twitter-bg {
    background: #55ACEE;
}

.google-bg {
    background: #DD4B39;
}

.footer-widget-heading h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    /* position: relative; */
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #012541;
}

.footer-widget ul li {
    display: block;
}

.footer-widget ul li a:hover {
    color: black;
}

.footer-widget ul li a {
    color: black;
    text-transform: capitalize;
    text-decoration: none;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    color: #fff;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}

.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #202020;
    padding: 15px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: white;
}

.copyright-text p a {
    color: white;
    text-decoration: none;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
    float: right;
}

.footer-menu li:hover a {
    color: white;
}

.footer-menu li a {
    font-size: 14px;
    color: white;
    text-decoration: none;
}


#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}

#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

/* Make nav arrows independent */
.owl-nav {
    position: relative;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 40%;
    /* vertically center */
    transform: translateY(-50%);
    background: #333;
    /* background color */
    color: #fff;
    /* arrow color */
    padding: 8px 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.owl-prev {
    left: -35px;
    /* adjust how far from left */
}

.owl-next {
    right: -35px;
    /* adjust how far from right */
}

.owl-prev:hover,
.owl-next:hover {
    background: #ff6600;
    /* hover color */
}