.fixed-whatsapp a{
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 998;
}
.fixed-whatsapp a svg{
    width: 20px;
    height: 20px;
    padding: 16px;
    background-color: #003dc2;
    color: #fff;
    border-radius: 50%;
    animation: pulse 1s infinite;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px solid #fff;
}






.fixed-button {
    position: fixed;
    bottom: 30px;
    right: 10px;
    z-index: 998;
}

.fixed-button .button-wrapper {
    position: relative;
}

.fixed-button .button-wrapper a {
    --y: -60;
    --x: 0;
    --rotation: 0;
    --speed: 2;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #008d23;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    animation: buttonBounce 2s infinite ease-in-out;
}

@keyframes buttonBounce {

    0%,
    100% {
        transform: translate(calc(var(--x) * -1%)) rotate(calc(var(--rotation) * -1deg));
    }

    50% {
        transform: translate(calc(var(--x) * 1%), calc(var(--y) * 1%)) rotate(calc(var(--rotation) * 1deg));
    }
}

.fixed-button .button-wrapper .shadow-box {
    position: absolute;
    border-radius: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #af9d9d;
    animation: boxShadowAnime 2s infinite ease-in-out;
    z-index: -1;
}

.fixed-button .button-wrapper:hover a {
    animation-play-state: paused;
}

.fixed-button .button-wrapper:hover .shadow-box {
    animation-play-state: paused;
}

@keyframes boxShadowAnime {

    0%,
    100% {
        transform: scaleX(1);
        opacity: 1;
    }

    50% {
        opacity: .2;
        transform: scaleX(.25);
    }
}


.fixed-social-icon ul {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 998;
}

.fixed-social-icon ul li {
    position: relative;
    transform: translateX(105px);
    transition: all 0.4s;
}

.fixed-social-icon ul li:hover {
    transform: translateX(0);
}

.fixed-social-icon ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    color: #fff;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    font-weight: 600;
}

.fixed-social-icon ul li a svg {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
}
.fixed-social-icon a.email {
    background-color: #0077B5;
}
.fixed-social-icon a.phone {
    background-color: #055193;
}
.fixed-social-icon a.whatsapp {
    background-color: #006400;
}
.fixed-social-icon a.facebook {
    background-color: #1877F2;
}

.fixed-social-icon a.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.fixed-social-icon a.linkedin {
    background: #0077B5
}

.fixed-social-icon a.youtube {
    background: #FF0000
}


footer {
    position: relative;
    overflow: hidden;
}

footer .footer-cta-wrapper {
    padding: 80px 0;
    background: url(../img/background/footer-bg.webp) no-repeat bottom;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    text-align: center;
}

footer .footer-cta-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

footer .footer-cta-wrapper h2 {
    font-size: 56px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 300;
    text-shadow: 0 0 15px #000;

}


footer .footer-cta-wrapper h2 span {
    font-weight: 700;
    color: #A6CE39;
}

footer .footer-cta-wrapper p.text {
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
}

footer .footer-cta-wrapper p.text span {
    padding: 4px 14px;
    background-color: #ffd007;
    border-radius: 4px;
    font-weight: 800;
    color: #000;
}

footer .footer-cta-wrapper a {
    padding: 10px 30px;
    display: inline-flex;
    background-color: #fff;
    margin-top: 20px;
    border-radius: 50px;
    font-size: 18px;
    border: 1px solid #fff;
    color: #000;
    font-weight: 700;
    align-items: center;
    gap: 6px;
    transition: all 0.4s;
}

footer .footer-cta-wrapper a svg {
    width: 16px;
    height: 16px;
    padding: 8px;
    background-color: #A6CE39;
    color: #000;
    border-radius: 50%;
    transition: all 0.4s;
}

footer .footer-cta-wrapper a:hover {
    background-color: #A6CE39;
    color: #000;
}

footer .footer-cta-wrapper a:hover svg {
    background-color: #fff;
    transform: scale(1.1) translateX(10px);
}

footer .main-footer-wrapper {
    padding: 60px 0 130px;
    position: relative;
}

footer .main-footer-wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../img/background/footer-bg.png) repeat-x bottom;
    filter: grayscale(50%);
}

footer .main-footer-wrapper .logo {
    width: 200px;
    margin-bottom: 14px;
}

footer .main-footer-wrapper p.text {
    font-weight: 500;
    color: #787878;
}

footer .main-footer-wrapper p.text span {
    color: #A6CE39;
    font-style: italic;
    text-shadow: 0 0 1px #000;
}

footer .main-footer-wrapper .partner {
    padding-top: 10px;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

footer .main-footer-wrapper .partner span {
    display: block;
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

footer .main-footer-wrapper .partner img {
    width: 100px;
    margin-right: 10px;
    border-radius: 10px;
}

footer .main-footer-wrapper .partner img:last-child {
    margin-right: 0;
}

footer .main-footer-wrapper h6.title {
    color: #000;
    font-size: 24px;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

footer .main-footer-wrapper h6.title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    border-radius: 10px;
    background-color: #000;
}

footer .main-footer-wrapper h6.title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 3px;
    border-radius: 10px;
    background-color: #A6CE39;
    animation: borderSlide 6s infinite alternate;
}


@keyframes borderSlide {
    0% {
        left: 0;
    }

    100% {
        left: 50px;
    }
}

footer .main-footer-wrapper .col-link li {
    position: relative;
}

footer .main-footer-wrapper .col-link li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 2px;
    background-color: #000;
    transition: all 0.4s;
}

footer .main-footer-wrapper .col-link li:hover::before {
    width: 12px;
}

footer .main-footer-wrapper .col-link li a {
    color: #787878;
    font-weight: 600;
    padding-left: 14px;
    transition: all 0.4s;
    display: block;
}

footer .main-footer-wrapper .col-link li:hover a {
    color: #000;
    transform: translateX(10px);
}

footer .main-footer-wrapper .col-contact .call-box {
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 14px;
    padding-left: 6px;
}

footer .main-footer-wrapper .col-contact .call-box span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

footer .main-footer-wrapper .col-contact .call-box span img {
    width: 24px;
}

footer .main-footer-wrapper .col-contact .call-box span svg {
    width: 16px;
    height: 16px;
    color: #787878;
}

footer .main-footer-wrapper .col-contact .call-box a {
    display: block;
    margin-top: 6px;
    color: #000;
    font-weight: 600;
    transition: all 0.4s;
}

footer .main-footer-wrapper .col-contact .call-box a:hover {
    color: #055193;

}

footer .main-footer-wrapper .social {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .main-footer-wrapper .social span {
    color: #000;
    font-weight: 700;
}

footer .main-footer-wrapper .social svg {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    color: #787878;
    transition: all 0.4s;
}

footer .main-footer-wrapper .social svg:hover {
    color: #055193;
    transform: scale(1.1);
}

footer .payment-box {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 35px;
    position: relative;
}

footer .payment-box h4 {
    text-transform: capitalize;
    font-size: 28px;
}

footer .payment-box h4 span {
    color: #055193;
    font-weight: 800;
}

footer .payment-box img {
    display: inline-block;
    margin: 0 5px;
    width: 60px;
    object-fit: cover;
}

footer .copyright {
    padding: 14px 0;
    background-color: #003252;
    text-align: center;
}

footer .copyright p {
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
}

footer .copyright p a {
    color: #A6CE39;
    font-weight: 700;
}


@media(min-width:992px) and (max-width:1200px) {
    footer .footer-cta-wrapper h2 {
        font-size: 48px;
    }

    footer .main-footer-wrapper .partner img {
        width: 80px;
    }
}

@media(max-width:992px) {
    footer .footer-cta-wrapper h2 {
        font-size: 42px;
    }

    footer .main-footer-wrapper .col-abt {
        margin-bottom: 30px;
    }

    footer .main-footer-wrapper .col-link {
        margin-bottom: 30px;
    }

}

@media(max-width:568px) {
    footer .footer-cta-wrapper h2 {
        font-size: 34px;
    }

    footer .main-footer-wrapper .partner img {
        width: 80px;
    }
}