

.navbar .navbar-toggler-icon,
.navbar .icon-bar {
    color: #01C1F1;
}

.video-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.navbar .dropdown-menu {
    width: 370px;
}

.logo-img {
    content: url('../img/logo.png'); /* Default logo */
    transition: all 0.3s ease-in-out;
}

.navbar.scrolled .logo-img {
    content: url('../img/logo-dark.png'); /* Change logo when scrolled */
}

/* ======= Selection style ======= */
::-webkit-selection {
    color: #777;
    background: none;
    /*
        background: rgba(0, 0, 0, 0.1);
    */
}

::-moz-selection {
    color: #777;
    background: none;
    /*
        background: rgba(0, 0, 0, 0.1);
    */
}

::selection {
    color: #777;
    background: none;
    /*
        background: rgba(0, 0, 0, 0.1);
    */
}

.services .item:hover .numb {
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 189, 242, 0.5);
}
.services .item .line:after {
    background-color: #00BDF2;

}


.services .item:hover .line:after {
    width: 100%;
    background-color: rgba(0, 189, 242, 0.5);
    transition-property: all;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
}

ul.textlist > li {
    list-style-type: disc;
}
ol.numberedlist > li {
    list-style-type: decimal;
    margin-left: 15px; /* optional: adds indent */
    padding-left: 10px; /* optional: adds spacing */
    padding-bottom: 20px; /* optional: adds spacing */
}

.banner-img:after {
    position: absolute;
    height: 100%;
    right: 0;
    left: 0;
    content: "";
    /*    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .8) 100%, rgba(255, 255, 255, 0.5) 100%);
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%, rgba(255, 255, 255, 0.5) 100%);
*/
    background: none;
    object-fit: cover;
}

.banner-header {
    height: 40vh;
    z-index: -2;
    margin-bottom: 30px;
    background-position: center bottom !important; /* This centers the image */
    background-size: cover; /* Ensures it covers the area */
    background-repeat: no-repeat;
}
/* Desktop (min-width: 1024px) – align bottom and keep bg-fixed */
@media (min-width: 1024px) {
    .banner-header.bg-fixed {
        background-position: center bottom !important;
        background-attachment: fixed !important;
        background-size: cover !important;
    }
}

.sidebar .services ul li {
    line-height: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.accordion-box li {
    list-style-type: disc;
}

.fax {
    position: absolute;
    left: -9999px;
}

.landline {
    display: none;
}

.hurricaneicon {
    width: 26px;
    height: 26px;
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
    }
}


@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
