/* .button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
} */

:root {
    --b-color: #01a0e1;
    --o-color:#f36523;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* .zoomonhover{
    transition: transform .2s;
}
.zoomonhover:hover{
    transform: scale(1.5);
} */




.about-size{
    width: 70%;

}
.feat-size{
    width:70%;
}

.text-shadow-h2{
    /* in hero section */
    text-shadow: 5px 4px 90px #f36523;

}

/* #hero{
    height: 90%;
} */
/* .hero-demo{
    position: absolute;
    opacity: 0.2;
    z-index: -0.1;
    top:0px; */
    /* left: 10px; */
    /* width: 300px;
} */

.theme_blue{
    color:var(--b-color);
}
.theme_orange{
    color:var(--o-color);
}
.bg_blue{
    background-color: var(--b-color);
}
.bg_orange{
    background-color: var(--o-color);
}



/* made up Bootstrap class Custmizing 
making them zoom in on hovering */

.card{
    transition: all 0.3s ;
}
.card:hover{
    transform: scale(1.05);
}

.swiper-slide{
    transition: all 0.3s;
}

.swiper-slide:hover{
    transform: scale(1.15);
}