* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bgcolor: gold;
    --maincolor: rgb(28, 28, 30);
}
a{
    text-decoration: none !important;
}

.splide{
    z-index: 3 !important;

}

.splide__slide{
    z-index: 3 !important;
}
.splide__slide img{
    z-index: 3 !important;
    
}

body{
    overflow-x: hidden;
}

.navbar {
    background-color: var(--maincolor);
    z-index: 4 !important;


}

.head-mobile{
    display: none;
}

.active {
    border-radius: 5px;
    background-color: var(--maincolor);
    color: white !important;

}

.nav-link {
    transition: .5s ease;
    border-radius: 5px;
}

.nav-link:hover {
    background-color: var(--maincolor);
    height: 100%;
    color: white;
}

.intro {
    margin: 0;
    padding: 0;
    background-color: var(--maincolor);
    width: 100vw;
    height: auto;
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.intro>div {
    width: 70vw;
    text-align: center;
}

.intro>div>h2 {
    color: var(--maincolor);
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 30px;
}

.intro>div>p {
    color: var(--maincolor);
    font-size: 17px;
    margin-bottom: 30px;
}

.services {
    padding: 100px 0px;
    background-color: white;
}

.servicecard {
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .5s ease;
}

.servicecard:hover {
    transform: scale(0.9);
    box-shadow: 2px 2px 13px lightgray;
}

.servicecontent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
    text-align: center;
}

.service-heading {
    font-size: 60px;
    margin-bottom: 100px;
}

.offer {
    padding: 70px 0px;
    background-color: var(--bgcolor);
}

.offercard {

    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s ease;
}

.offercard:hover {

    background: var(--maincolor);

}

.offercardfour{
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 100)), url(../images/webimages/copy-machine-near-me.jpg);
    background-size: cover;
}
.offercardone {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 100)), url(../images/webimages/bul_printing.jpeg);
    background-size: cover;
}

.offercardtwo {

    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 100)), url(../images/webimages/main.jpeg);
    background-size: cover;
}

.offercardthree{
    background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 100)), url(../images/webimages/rental.webp);
background-size: cover;
}

.offercard>h5 {
    color: white;
    font-size: 30px;
    text-align: center;
}

.mybtn {
    text-decoration: none;
    background-color: var(--bgcolor);
    padding: 14px 20px;
    border-radius: 5px;
    color: var(--maincolor);
    box-shadow: inset 0px 0px 0px var(--maincolor);
    transition: .5s ease;
}

.mybtn:hover {
    box-shadow: inset 0px -100px 0px var(--maincolor);
    color: white;
}

footer {
    padding: 100px 0px;
    background-color: var(--maincolor);
}

.linksbar>A {
    text-decoration: none;
    color: rgb(169, 168, 168);
}

.linksbar>a:hover {
    color: var(--bgcolor);
}

/* scrolltop  */
#myBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 20px;
    /* Place the button at the bottom of the page */
    right: 30px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    background-color: var(--bgcolor);
    /* Set a background color */
    color: white;
    /* Text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 15px;
    /* Some padding */
    border-radius: 10px;
    /* Rounded corners */
    font-size: 18px;
    /* Increase font size */
}


#myBtn:hover {
    background-color: #555;
    /* Add a dark-grey background on hover */
}

/* scrolltop  */