.header .navigation-large {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.1));
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.header .navbar-brand {
    width: 200px;
    margin-right: 30px;
}

.header .navbar-brand img {
    width: 100%;
}

.header .nav-item {
    background-color: transparent;
    margin: 0 10px;
    padding: 2px 0px;
    border-radius: 50px;
    transition: all 0.3s;
    position: relative;
}

.header .nav-item.active .nav-link {
    color: #007bb5 !important;
}

.header .nav-item:hover .nav-link {
    color: #007bb5 !important;
}


.header .nav-link {
    transition: all 0.3s;
    font-size: 16px;
    color: #fff !important;
}

.header .navigation-large .offcanvas {
    padding: 10px;
}

.header .navigation-large .offcanvas .navbar-brand {
    width: 140px;
    margin-right: 30px;

}

.header .navigation-large .offcanvas .btn-close {
    border: 2px solid #000;
}

.header .navbar-toggler svg {
    width: 30px;
    height: 30px;
}

.header .navigation-large .offcanvas .nav-link {
    color: #000 !important;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 0, 0, 0.07);
    text-align: center;
}

.header .navigation-large .offcanvas .header-icon {
    align-items: center;
    display: flex;
    justify-content: center;
}

.header .navigation-large .offcanvas .nav-item.active .nav-link {
    color: #007bb5 !important;
}

.header .navigation-large .offcanvas .nav-item:hover .nav-link {
    color: #007bb5 !important;
}

.header .header-icon {
    display: flex;
    gap: 10px;
}

.header .header-icon .social {
    padding: 10px;
    border-radius: 50%;
    border: 2px solid #007bb5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.header .header-icon .social:hover {
    background-color: #fff;
    border: 2px solid #fff;
}

.header .header-icon .social svg {
    width: 20px;
    height: 20px;
    color: #007bb5;
}

@media (max-width:500px) {
    .header .header-icon {
        display: none;
    }

    .header .offcanvas .header-icon {
        display: flex;
        margin-left: 5px;
        margin-top: 30px;
    }
}

@media (min-width:992px) and (max-width:1200px) {
    .header .nav-item {
        margin: 0 0px;
    }
    .header .nav-item .nav-link {
        font-size: 16px;
    }
}

.fixed-btn{
    z-index: 999;
    position: relative;
}
.fixed-btn a:nth-child(1) svg{
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    padding: 20px;
    border-radius: 50%;
    background-color: #007bb5;
    color: #fff;
    animation: boxShadowWavePhone 1s infinite linear;
    border: 1px solid #fff;
    box-shadow: 0 0 10px 0px rgb(0, 123, 181,0.5) /* Initial box shadow */
}
.fixed-btn a:nth-child(2) svg{
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    padding: 20px;
    border-radius: 50%;
    background-color: #006e00;
    color: #fff;
    animation: boxShadowWaveWhatsapp 1s infinite linear;
    border: 1px solid #fff;
    box-shadow: 0 0 10px 0px rgba(0, 110, 0,0.5); /* Initial box shadow */
}

@keyframes boxShadowWavePhone {
    0% {
        box-shadow: 0 0 10px 0px rgba(0, 123, 181,0.5);
    }
    25% {
        box-shadow: 0 0 15px 2px rgba(0, 123, 181,.6);
    }
    50% {
        box-shadow: 0 0 20px 4px rgba(0, 123, 181,.7);
    }
    75% {
        box-shadow: 0 0 25px 6px rgba(0, 123, 181,.8);
    }
    100% {
        box-shadow: 0 0 30px 8px rgba(0, 123, 181,.9);
    }
}
@keyframes boxShadowWaveWhatsapp {
    0% {
        box-shadow: 0 0 10px 0px rgba(0, 110, 0,0.5);
    }
    25% {
        box-shadow: 0 0 15px 2px rgba(0, 110, 0,.6);
    }
    50% {
        box-shadow: 0 0 20px 4px rgba(0, 110, 0,.7);
    }
    75% {
        box-shadow: 0 0 25px 6px rgba(0, 110, 0,.8);
    }
    100% {
        box-shadow: 0 0 30px 8px rgba(0, 110, 0,.9);
    }
}