* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-section {
    width: 100%;
    height: 92vh;
    background-image: url("./Assist/sobhamagnus2.webp");
    /* background-position: center; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-color: #edf5f8; */
}

.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%;
    /* height: 92vh; */
    /* background-image: url("./Assist/homebanner.jpg"); */
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.93)),
        url('./Assist/sobhamagnum.webp');
    /* background-position: center; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-color: #edf5f8; */
}

/* ================== */


@keyframes colorCycle {
    0% { background-color: #ff0000; }
    /* 50% { background-color: #021442; } */
    100% { background-color: #9b6d07; }
}

.animate-color-change {
    animation: colorCycle 1s infinite alternate;
}