:root{
    --scentFont: serif;
}

/* body start */
body{
    scroll-behavior: smooth;
    
}
/* body end */

/* Navabar start */
.navbar{
    background-color: #E5E3DD;
}
.scentLogo{
    width: 65px;
    margin: 0px 20px;
}

.navbar-brand{
    font-family: serif;
    letter-spacing: 3px;
}
.nav-item a{
    font-family: serif;
    font-size: large;
    color: #00000070;
    position: relative; /* parent*/
}

.Dark{
    font-family: serif;
}
/* To make the hover effect appear only above 992px of the screen. */
@media screen and (min-width:992px){
    /* making hover effect */
    .nav-item a::before{
        content: "";
        position: absolute; /* works together with relative positionon parent.*/
        background-color: #BB2D3A;
        width: 0;
        height: 2px;
        left: 7px;
        bottom: 7px;
    }
    .nav-item a:hover::before{
        width: 80%;
        transition: 0.5s;
    }
}
/* Navabar end */

/*header start*/
.headerText1{
    font-family: var(--scentFont);
}
.headPlay{
    transition: 0.5s;
}
.headPlay:hover{
    transform: scale(1.2);
}

@media screen and (min-width: 992px){
    .header{
        height: 90vh;
    }
}
/*header end*/

/*about start*/
.aboutText{
    text-align: justify;

}
@media screen and (min-width: 1400px) {
    .aboutVideo{
        height: 385px !important;
    }
}
@media screen and (min-width: 1200px) {
    .aboutImage{
        height: 675px !important;
    }
}
@media screen and (min-width: 1400px) {
    .aboutImage{
        height: 700px !important;
    }
}
/*about end*/

/*sales start*/
@media screen and (min-width: 1200px){
    .salesImage{
        height: 750px;
        margin: auto;
    }
    
}
/*sales end*/

/*contact start*/
.contactDiv{
    background-color: #cdcac2;
    height: 90px;
}
/*contact end*/

/*footer star*/
.footerImg1{
    display: none;
}
.footerImg2{
    width: 20%;
}
@media screen and (min-width:992px){
    .footerImg2{
        display: none!important;
    }
    .footerImg1{
        display: inline;
    }
}
.footerImg1{
    width: 50%;
    
}
/*footer end*/

/*preloader start*/
#preloader{
    position: fixed;
    inset: 0;
    overflow: hidden;
    background-color: #E5E3DD;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    transition: 0.6s;
}

#preloader::before, #preloader::after{
    content: "";
    position: absolute;
    border: 4px solid red;
    border-radius: 50%;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader::after{
    animation-delay: 1s;
}

@keyframes animate-preloader{
    0%{
        width: 10px;
        height: 10px;
        top: calc(50% - 0px);
        left: calc(50% - 0px);
        opacity: 1;
    }
    100%{
        width: 100px;
        height: 100px;
        top: calc(50% - 40px);
        left: calc(50% - 40px);
        opacity: 0;
    }
}

/*preloader end*/