Updated
@ -57,8 +57,6 @@
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@media (min-width: 769px) and (max-width: 1280px) {
|
||||
#main-carousel .carousel-caption .button-carousel {
|
||||
display: none;
|
||||
@ -71,7 +69,7 @@
|
||||
|
||||
#main-carousel .carousel-caption {
|
||||
position: absolute;
|
||||
bottom: 30%;
|
||||
bottom: 20%;
|
||||
}
|
||||
|
||||
}
|
@ -1,166 +1,191 @@
|
||||
.contact-bar {
|
||||
background-image: url(https://bibhutisolutions.com.au/assets/images/bg/4.jpg);
|
||||
color: #fff;
|
||||
font-size: 14px;
|
||||
padding: 10px 20px;
|
||||
}
|
||||
|
||||
.contact-bar a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.contact-bar a:hover {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.logo {
|
||||
width: 100px;
|
||||
background-image: url(https://bibhutisolutions.com.au/assets/images/bg/4.jpg);
|
||||
color: #fff;
|
||||
font-size: 14px;
|
||||
padding: 10px 20px;
|
||||
}
|
||||
|
||||
.contact-bar a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.contact-bar a:hover {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.logo {
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.navbar-nav a {
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.nav-item a {
|
||||
font-size: small;
|
||||
font-size: small;
|
||||
}
|
||||
.nav-item a {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
color: white; /* Adjust to your desired text color */
|
||||
transition: color 0.3s ease;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-item a::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px; /* Adjust the underline thickness */
|
||||
background-color: white; /* Adjust to your desired underline color */
|
||||
transition: width 0.3s ease;
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background-color: white;
|
||||
transition: width 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-item a:hover {
|
||||
color: black; /* Adjust to your desired hover text color */
|
||||
color: black;
|
||||
}
|
||||
|
||||
.nav-item a:hover::after {
|
||||
width: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
.custom-navbar {
|
||||
background-image: url(../images/cover.png);
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-image: url(../images/cover.png);
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
|
||||
/* Style for the quote button */
|
||||
.quotebtn {
|
||||
color: #C52903;
|
||||
font-weight: bold;
|
||||
font-size: small;
|
||||
padding: 12px;
|
||||
border: none;
|
||||
transition: background-color 0.3s, color 0.3s;
|
||||
background-color: white;
|
||||
border-radius: 5px;
|
||||
color: #c52903;
|
||||
font-weight: bold;
|
||||
font-size: small;
|
||||
padding: 12px;
|
||||
border: none;
|
||||
transition: background-color 0.3s, color 0.3s;
|
||||
background-color: white;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.quotebtn:hover {
|
||||
background-color: #F5A637;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
background-color: #f5a637;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.navbar-brand {
|
||||
text-align: left;
|
||||
margin: 0 ;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
width: 60px;
|
||||
}
|
||||
.custom-navbar {
|
||||
background-color: white !important;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.navbar-nav {
|
||||
flex-direction: column;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.navbar-nav a {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.navbar-nav .nav-item {
|
||||
margin-bottom: 5px;
|
||||
padding: 0px 20px;
|
||||
}
|
||||
.navbar-toggler-icon {
|
||||
filter: invert(1);
|
||||
}
|
||||
|
||||
.quotebtn {
|
||||
font-size: x-small;
|
||||
padding: 0px 20px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.contact-bar {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
.navbar-brand {
|
||||
text-align: left;
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.social-icons {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.logo {
|
||||
width: 60px;
|
||||
}
|
||||
|
||||
.navbar-nav {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
.navbar-nav {
|
||||
flex-direction: column;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.navbar-nav .nav-item {
|
||||
margin: 5px 0;
|
||||
}
|
||||
.navbar-nav .nav-item {
|
||||
margin-bottom: 5px;
|
||||
padding: 0px 20px;
|
||||
}
|
||||
|
||||
.quotebtn {
|
||||
width: 100%;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.quotebtn {
|
||||
font-size: large;
|
||||
padding: 0px 20px;
|
||||
margin-top: 10px;
|
||||
width: 100%;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.contact-bar {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.navbar-collapse {
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
.social-icons {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.navbar-nav {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.navbar-nav .nav-item {
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.navbar-collapse {
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 576px) {
|
||||
.logo {
|
||||
width: 70px;
|
||||
}
|
||||
.logo {
|
||||
width: 70px;
|
||||
}
|
||||
|
||||
.navbar-toggler {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
.navbar-toggler {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.navbar-toggler-icon {
|
||||
color: white;
|
||||
}
|
||||
.navbar-toggler-icon {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.navbar-nav a {
|
||||
font-size: smaller;
|
||||
}
|
||||
.navbar-nav a {
|
||||
font-size: smaller;
|
||||
}
|
||||
|
||||
.quotebtn {
|
||||
font-size: xx-small;
|
||||
padding: 5px;
|
||||
}
|
||||
.quotebtn {
|
||||
font-size: medium;
|
||||
padding: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 769px) and (max-width: 1024px) {
|
||||
.custom-navbar {
|
||||
background-size: cover; /* Keep it covering the navbar */
|
||||
background-position: center; /* Center it for tablets */
|
||||
}
|
||||
.custom-navbar {
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
.navbar-nav {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.quotebtn {
|
||||
font-size: large;
|
||||
padding: 0px 20px;
|
||||
margin-top: 10px;
|
||||
width: 100%;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.navbar-toggler-icon {
|
||||
color: white;
|
||||
}
|
||||
|
||||
}
|
||||
|
BIN
assets/images/about-img.jpg
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
assets/images/carousel-one.jpg
Normal file
After Width: | Height: | Size: 187 KiB |
BIN
assets/images/carousel-two.jpg
Normal file
After Width: | Height: | Size: 122 KiB |
BIN
assets/images/main-logo.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
assets/images/testimonial-four.jpg
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
assets/images/testimonial-one.jpeg
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
assets/images/testimonial-three.jpg
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
assets/images/testimonial-two.jpg
Normal file
After Width: | Height: | Size: 70 KiB |
BIN
assets/images/work-five.jpg
Normal file
After Width: | Height: | Size: 117 KiB |
BIN
assets/images/work-four.jpg
Normal file
After Width: | Height: | Size: 104 KiB |
BIN
assets/images/work-one.jpg
Normal file
After Width: | Height: | Size: 192 KiB |
BIN
assets/images/work-six.jpg
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
assets/images/work-three.jpg
Normal file
After Width: | Height: | Size: 114 KiB |
BIN
assets/images/work-two.jpg
Normal file
After Width: | Height: | Size: 84 KiB |