File: /home/RaviMohan/herbs-extracts.com/web/css/style.css
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
:root {
--danger: #eb2127;
}
body {
font-family: "Inter", sans-serif;
font-size: 14px;
}
a {
text-decoration: none;
}
/* custom classes */
.icon {
height: 50px;
width: 50px;
display: flex;
align-items: center;
justify-content: center;
}
.mt-n8 {
margin-top: -8rem;
}
.link-danger{
color: var(--danger) !important;
}
/* navbar */
.aka-nav .navbar-brand {
width: 12rem;
}
.aka-nav .navbar-nav .nav-item {
margin: 0 4px;
font-size: 15px;
font-weight: 400;
}
.aka-nav .navbar-nav .nav-item a.active,
.aka-nav .navbar-nav .nav-item:hover{
color: var(--danger);
}
/* sidebar nav for mobile */
.aka-sidebar-nav .navbar-nav a {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 4px;
}
.aka-sidebar-nav .navbar-nav a.active,
.aka-sidebar-nav .navbar-nav a:hover{
color: var(--danger);
}
.sidebar-logo{
width: 10rem;
}
/* homepage page */
.bg-home {
background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
url(../img/bg-homepage.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
}
.video-banner {
background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
url(../img/video-banner.jpg);
background-position: bottom;
background-repeat: no-repeat;
background-size: cover;
height: 70vh;
}
/* about */
.bg-about{
background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
url(../img/bg-about.jpg);
background-position: bottom;
background-repeat: no-repeat;
background-size: cover;
}
/* products */
.bg-products {
background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
url(../img/bg-products.jpg);
background-position: bottom;
background-repeat: no-repeat;
background-size: cover;
}
.bg-extraction{
background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
url(../img/bg-extraction.jpg);
background-position: bottom;
background-repeat: no-repeat;
background-size: cover;
}
/* contact */
.bg-contact{
background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
url(../img/bg-contact.jpg);
background-position: top;
background-repeat: no-repeat;
background-size: cover;
}
@media (max-width:992px){
.contact-img{
height: 350px;
}
}