diff --git a/public/css/bootstrap.css b/public/css/bootstrap.css
index 6167622ce..fcba256fc 100644
--- a/public/css/bootstrap.css
+++ b/public/css/bootstrap.css
@@ -4274,9 +4274,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
.navbar-brand {
float: left;
height: 50px;
- padding: 15px 15px;
- font-size: 18px;
- line-height: 20px;
+ /* padding: 15px 15px; */
+ size: 18px;
+ /* line-height: 20px; */
}
.navbar-brand:hover,
.navbar-brand:focus {
diff --git a/public/css/style.css b/public/css/style.css
index 86b652fef..0e9669e26 100644
--- a/public/css/style.css
+++ b/public/css/style.css
@@ -104,7 +104,7 @@ hr {
bottom: -1px;
width: 0;
height: 2px;
- background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
+ background: linear-gradient(to right, #004138 0%, #359E88 100%);
content: "";
transition: width 0.2s;
}
@@ -125,7 +125,7 @@ hr {
bottom: -1px !important;
width: 100% !important;
height: 2px !important;
- background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%) !important;
+ background: linear-gradient(to right, #004138 0%, #359E88 100%) !important;
content: "" !important;
transition: width 0.2s !important;
}
@@ -152,7 +152,7 @@ hr {
.section-title h2::after {
position: absolute;
content: "";
- background: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
+ background: linear-gradient(to right, #359E88 0%, #004138 100%);
height: 4px;
width: 60px;
bottom: 0;
@@ -166,8 +166,8 @@ hr {
font-family: "Raleway", sans-serif;
text-transform: uppercase;
color: #fff;
- background-color: #5ca9fb;
- background-image: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
+ background-color: #359E88;
+ background-image: linear-gradient(to right, #359E88 0%, #004138 100%);
padding: 14px 34px;
letter-spacing: 1px;
margin: 0;
@@ -184,7 +184,7 @@ hr {
.btn-custom.active {
color: #fff;
background-image: none;
- background-color: #6372ff;
+ background-color: #004138;
}
.btn:active,
.btn.active {
@@ -229,7 +229,7 @@ a:focus,
}
.intro h1 span {
font-weight: 800;
- color: #5ca9fb;
+ color: #359E88;
}
.intro p {
color: #fff;
@@ -257,7 +257,7 @@ header .intro-text {
height: 100px;
padding: 30px 0;
border-radius: 50%;
- background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
+ background: linear-gradient(to right, #004138 0%, #359E88 100%);
box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
/* About Section */
@@ -276,7 +276,7 @@ header .intro-text {
#about h2::after {
position: absolute;
content: "";
- background: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
+ background: linear-gradient(to right, #359E88 0%, #004138 100%);
height: 4px;
width: 60px;
bottom: 0;
@@ -291,7 +291,7 @@ header .intro-text {
#about .about-text li:before {
content: "\f00c";
font-family: "FontAwesome";
- color: #5ca9fb;
+ color: #359E88;
font-size: 11px;
font-weight: 300;
padding-right: 8px;
@@ -310,7 +310,7 @@ header .intro-text {
/* Services Section */
#services {
padding: 100px 0;
- background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
+ background: linear-gradient(to right, #004138 0%, #359E88 100%);
color: #fff;
}
#services .service-desc {
@@ -334,7 +334,7 @@ header .intro-text {
width: 120px;
height: 120px;
padding: 40px 0;
- background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
+ background: linear-gradient(to right, #004138 0%, #359E88 100%);
border-radius: 50%;
color: #fff;
box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
@@ -448,6 +448,7 @@ header .intro-text {
}
#team .team-img {
width: 240px;
+ height: 240px;
}
#team .thumbnail {
background: transparent;
@@ -460,7 +461,7 @@ header .intro-text {
/* Contact Section */
#contact {
padding: 100px 0 60px;
- background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
+ background: linear-gradient(to right, #004138 0%, #359E88 100%);
color: rgba(255, 255, 255, 0.75);
}
#contact .section-title {
diff --git a/public/img/BuddaLogo.png b/public/img/BuddaLogo.png
new file mode 100644
index 000000000..9dcf2db5b
Binary files /dev/null and b/public/img/BuddaLogo.png differ
diff --git a/public/img/budda-logo.png b/public/img/budda-logo.png
new file mode 100644
index 000000000..c5373044b
Binary files /dev/null and b/public/img/budda-logo.png differ
diff --git a/public/img/team/01.jpg b/public/img/team/01.jpg
index 1180aa5a4..29a002753 100644
Binary files a/public/img/team/01.jpg and b/public/img/team/01.jpg differ
diff --git a/public/img/team/02.jpg b/public/img/team/02.jpg
index ea0dcbb8f..71e1ef4e7 100644
Binary files a/public/img/team/02.jpg and b/public/img/team/02.jpg differ
diff --git a/public/img/team/03.jpg b/public/img/team/03.jpg
index c365242a2..8a810ead3 100644
Binary files a/public/img/team/03.jpg and b/public/img/team/03.jpg differ
diff --git a/src/App.jsx b/src/App.jsx
index 2517df8f5..cb47f4214 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -30,8 +30,8 @@ const App = () => {
- Lorem ipsum dolor sit amet, consectetur adipiscing elit duis sed - dapibus leonec. + Our team members are doing their best to provide you with the greatest support possible.