* {
    font-family: 'Roboto', sans-serif;
}

html[data-theme="light"] {
    --dh-bg-dark: var(--bs-white);
    --dh-text-dark: var(--pdf-zinc-900);
}

html[data-theme="dark"] {
    --dh-bg-dark: var(--pdf-zinc-900);
    --dh-text-dark: var(--pdf-slate-200);
    --none: none;
}

.loading {
    width: 100%;
    height: 100vh;
    background: var(--dh-bg-dark);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
.sk-chase {
    width: 40px;
    height: 40px;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
    content: '';
    display: block;
    width: 25%;
    height: 25%;
    background-color: var(--dh-text-dark);
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
.sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }

@keyframes sk-chase {
    100% { transform: rotate(360deg); }
}

@keyframes sk-chase-dot {
    80%, 100% { transform: rotate(360deg); }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    } 100%, 0% {
          transform: scale(1.0);
      }
}

body {
    background-color: var(--dh-bg-dark);
    color: var(--dh-text-dark);
}
.cls-1 {
    fill: var(--dh-text-dark);
}
.navbar {
    background-color: var(--dh-bg-dark) !important;
}
.navbar {
    background-color:  var(--dh-bg-dark)!important;
}
.navbar a {
    color: var(--dh-text-dark) !important;
}

.card {
    background-color: var(--dh-bg-dark);
}


.service-icon {
    width: 50px;
    height: 50px;
}

.rounded-5 {
    border-radius: 10px;
}

.testimonial-icon {
    margin-top: -50px;
}


.form-map {
    width: 100%;
}

.navbar-control {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.footer-fixed {
    position: fixed;
    bottom: 40px;
    right: 30px;
}

.footer-icon {
    width: 50px;
    height: 50px;
    z-index: 5;
}

.footer-fixed.show {
    display: block!important;
}

/*menu icon*/
.menu-icon {
    width: 50px;
    height: 50px;
    /*background-color: #fff;*/
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-icon span {
    width: 40px;
    height: 4px;
    background-color: var(--dh-text-dark);
    position: absolute;
    border-radius: 25px;
    transition: 0.5s;
}
.menu-icon span:nth-child(1) {
    transform: translateY(-15px);
    width: 25px;
    left: 5px;
}
.menu-icon span:nth-child(2) {
    transform: translateY(15px);
    width: 15px;
    left: 5px;
}
.menu-icon.show span:nth-child(3) {
    transform: translateX(-60px);
    opacity: 0;
}
.menu-icon.show span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
    width: 40px;
    transition: 0.125s;
}
.menu-icon.show span:nth-child(2) {
    transform: translateY(0) rotate(315deg);
    width: 40px;
    transition: 0.25s;
}

.o-n:focus {
    box-shadow: none;
}

/*Slick */
.slick-prev::before
{
    font-family: "Font Awesome 6 Pro";
    content: '\2039';
    font-size: 3rem;
    color: var(--pdf-red-600);
}

.slick-next::before
{
    font-family: "Font Awesome 6 Pro";
    content: '\203a';
    font-size: 3rem;
    color: var(--pdf-red-600);
}

.slick-dots {
    bottom: -50px;
}

.slick-dots li {
    width: 10px;
    height: 10px;
    background-color: var(--pdf-red-200);
    border: 2px solid #dc2626;
    border-radius: 50%;
}

.slick-dots li.slick-active {
    background-color: var(--pdf-red-600);
}

.slick-dots li button:before {
    display: none;
}

.pt-8 {
    padding-top: 8rem!important;
}

@media screen and (max-width: 768px) {
    .slick-prev,
    .slick-next{
        top: 35%;

    }
    .slick-prev::before {
        font-size: 2rem;
    }
    .slick-next::before {
        font-size: 2rem;
    }
    .slick-next {
        right: -15px;
    }
    .slick-prev {
        left: -15px;
        z-index: 1;
    }
    .testimonial-icon {
        margin-top: -35px;
    }
}

@media screen and (max-width: 576px) {
    .footer-fixed {
        bottom: 100px;
    }
}