* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.broucherDownloadContainer {
    transition: all .5s ease;
}

.broucherDownloadContainer.broucherActive {
    left: 0;
    transition: all .5s ease;
}

.costSheetDownloadContainer {
    transition: all .5s ease;
}
.costSheetDownloadContainer.costSheetActive {
    left: 0;
    transition: all .5s ease;
}

.mobileNavlinkContainer {
    transition: all .5s ease;
}

.mobileNavlinkContainer.active {
    /* display: block; */
    right: 0;
    transition: all .5s ease;
}

html {
    scroll-behavior: smooth;
  }

/* price page css start */


.priceContainer {
    width: 100%;
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.93)),
        url('./Assist/galleryimg5.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.bg-primary{
  background-color: #1e4191;
}

.text-primary{
  color: #1e4191;
}

/* ================== */


@keyframes colorCycle {
    0% { background-color: #ff0000; }
    /* 50% { background-color: #021442; } */
    100% { background-color: #1e4191; }
}

.animate-color-change {
    animation: colorCycle 1s infinite alternate;
}