@@ -61,6 +61,11 @@ | |||||
width: 90%; | width: 90%; | ||||
margin: 0 auto; | margin: 0 auto; | ||||
} | } | ||||
@media screen and (max-width: 1024px) { | |||||
.about-content .inner-container { | |||||
flex-direction: column; | |||||
} | |||||
} | |||||
.about-content .inner-container .description { | .about-content .inner-container .description { | ||||
width: 60%; | width: 60%; | ||||
align-self: center; | align-self: center; | ||||
@@ -68,6 +73,11 @@ | |||||
justify-content: space-between; | justify-content: space-between; | ||||
flex-direction: column; | flex-direction: column; | ||||
} | } | ||||
@media screen and (max-width: 1024px) { | |||||
.about-content .inner-container .description { | |||||
width: 100%; | |||||
} | |||||
} | |||||
.about-content .inner-container .description p { | .about-content .inner-container .description p { | ||||
width: 100%; | width: 100%; | ||||
} | } | ||||
@@ -84,17 +94,30 @@ | |||||
width: 37%; | width: 37%; | ||||
align-self: center; | align-self: center; | ||||
display: flex; | display: flex; | ||||
height: 50vh; | |||||
} | |||||
@media screen and (max-width: 1024px) { | |||||
.about-content figure { | |||||
width: 100%; | |||||
} | |||||
} | } | ||||
.about-content figure img { | .about-content figure img { | ||||
width: 100%; | width: 100%; | ||||
align-self: center; | align-self: center; | ||||
height: 100%; | |||||
object-fit: cover; | |||||
object-position: top; | |||||
} | } | ||||
.about-content p { | .about-content p { | ||||
margin-top: 30px; | |||||
width: 90%; | width: 90%; | ||||
margin: 30px auto 0; | |||||
margin: 0 auto 0; | |||||
padding-bottom: 50px; | padding-bottom: 50px; | ||||
} | } | ||||
@media screen and (max-width: 1024px) { | |||||
.about-content p { | |||||
margin: 0 auto; | |||||
} | |||||
} | |||||
#our-team { | #our-team { | ||||
width: 90%; | width: 90%; | ||||
@@ -157,7 +157,7 @@ mark { | |||||
padding: 10px 0; | padding: 10px 0; | ||||
} | } | ||||
#page-header .inner-header { | #page-header .inner-header { | ||||
width: 80%; | |||||
width: 90%; | |||||
display: flex; | display: flex; | ||||
justify-content: space-between; | justify-content: space-between; | ||||
margin: 0 auto; | margin: 0 auto; | ||||
@@ -166,27 +166,42 @@ mark { | |||||
@media screen and (max-width: 1024px) { | @media screen and (max-width: 1024px) { | ||||
#page-header .inner-header { | #page-header .inner-header { | ||||
width: 100%; | width: 100%; | ||||
justify-content: space-around; | |||||
justify-content: none; | |||||
} | } | ||||
} | } | ||||
#page-header .temp-brand { | #page-header .temp-brand { | ||||
display: flex; | display: flex; | ||||
align-self: center; | align-self: center; | ||||
width: 20%; | |||||
width: auto; | |||||
justify-content: center; | justify-content: center; | ||||
cursor: pointer; | |||||
} | |||||
@media screen and (max-width: 1024px) { | |||||
#page-header .temp-brand { | |||||
justify-content: unset; | |||||
width: calc(100% -55px); | |||||
} | |||||
} | } | ||||
#page-header .temp-brand figure { | #page-header .temp-brand figure { | ||||
margin-right: 15px; | margin-right: 15px; | ||||
width: 60px; | |||||
height: 60px; | |||||
} | } | ||||
#page-header .temp-brand figure img { | #page-header .temp-brand figure img { | ||||
width: 100%; | width: 100%; | ||||
height: 100%; | |||||
} | } | ||||
#page-header .temp-brand h1 { | #page-header .temp-brand h1 { | ||||
font-size: 36px; | |||||
font-size: 20px; | |||||
align-self: center; | align-self: center; | ||||
letter-spacing: -0.65px; | letter-spacing: -0.65px; | ||||
font-family: "Archivo Black", sans-serif; | font-family: "Archivo Black", sans-serif; | ||||
} | } | ||||
@media screen and (max-width: 1024px) { | |||||
#page-header .temp-brand h1 { | |||||
font-size: 15px; | |||||
} | |||||
} | |||||
#page-header .temp-brand h1 mark { | #page-header .temp-brand h1 mark { | ||||
color: #28aae2; | color: #28aae2; | ||||
} | } | ||||
@@ -216,6 +231,11 @@ mark { | |||||
position: relative; | position: relative; | ||||
height: 25px; | height: 25px; | ||||
} | } | ||||
@media screen and (max-width: 1024px) { | |||||
#page-header #mobile-hamburger-menu { | |||||
width: 45px; | |||||
} | |||||
} | |||||
#page-header #mobile-hamburger-menu.active .icon-line { | #page-header #mobile-hamburger-menu.active .icon-line { | ||||
transform: rotate(45deg) translate(2px, 10px); | transform: rotate(45deg) translate(2px, 10px); | ||||
} | } | ||||
@@ -66,6 +66,7 @@ section .description p { | |||||
#home { | #home { | ||||
box-shadow: 0 8px 20px -6px #a6a8ab; | box-shadow: 0 8px 20px -6px #a6a8ab; | ||||
display: flex; | display: flex; | ||||
height: 80vh; | |||||
} | } | ||||
@media screen and (max-width: 1024px) { | @media screen and (max-width: 1024px) { | ||||
#home { | #home { | ||||
@@ -84,6 +85,8 @@ section .description p { | |||||
#home figure { | #home figure { | ||||
opacity: 1; | opacity: 1; | ||||
transition: opacity 500ms ease; | transition: opacity 500ms ease; | ||||
text-align: center; | |||||
align-self: flex-end; | |||||
} | } | ||||
@media screen and (max-width: 1024px) { | @media screen and (max-width: 1024px) { | ||||
#home figure { | #home figure { | ||||
@@ -94,6 +97,9 @@ section .description p { | |||||
#home figure.hide { | #home figure.hide { | ||||
opacity: 0; | opacity: 0; | ||||
} | } | ||||
#home figure img { | |||||
width: 90%; | |||||
} | |||||
#home .description { | #home .description { | ||||
overflow-x: hidden; | overflow-x: hidden; | ||||
} | } | ||||
@@ -365,7 +371,6 @@ section .description p { | |||||
} | } | ||||
} | } | ||||
#branches .owl-branches .owl-item-branches { | #branches .owl-branches .owl-item-branches { | ||||
display: flex; | |||||
width: 97%; | width: 97%; | ||||
background-color: white; | background-color: white; | ||||
margin: 50px 0; | margin: 50px 0; | ||||
@@ -377,13 +382,8 @@ section .description p { | |||||
} | } | ||||
} | } | ||||
#branches .owl-branches .owl-item-branches figure { | #branches .owl-branches .owl-item-branches figure { | ||||
width: 500px; | |||||
height: 255px; | |||||
} | |||||
@media screen and (max-width: 1024px) { | |||||
#branches .owl-branches .owl-item-branches figure { | |||||
width: 350px; | |||||
} | |||||
width: 100%; | |||||
height: 90%; | |||||
} | } | ||||
#branches .owl-branches .owl-item-branches figure img { | #branches .owl-branches .owl-item-branches figure img { | ||||
width: 100%; | width: 100%; | ||||
@@ -405,12 +405,6 @@ section .description p { | |||||
} | } | ||||
#branches .owl-branches .owl-item-branches .description .person-name { | #branches .owl-branches .owl-item-branches .description .person-name { | ||||
color: #28aae2; | color: #28aae2; | ||||
padding-top: 20px; | |||||
} | |||||
#branches .owl-branches .owl-item-branches blockquote { | |||||
font-size: 16px; | |||||
color: #808285; | |||||
line-height: 1.3; | |||||
} | } | ||||
#branches .branches-carousel-btn { | #branches .branches-carousel-btn { | ||||
text-align: center; | text-align: center; | ||||
@@ -422,9 +416,14 @@ section .description p { | |||||
padding: 10px; | padding: 10px; | ||||
background-color: #d2d4d5; | background-color: #d2d4d5; | ||||
color: #57595b; | color: #57595b; | ||||
margin: 0 12px; | |||||
margin: 0 0 0 12px; | |||||
cursor: pointer; | cursor: pointer; | ||||
} | } | ||||
@media screen and (max-width: 1024px) { | |||||
#branches .branches-carousel-btn i { | |||||
margin: 50px 0 0 12px; | |||||
} | |||||
} | |||||
#enquiry { | #enquiry { | ||||
background: linear-gradient(#28aae2, #2b3991); | background: linear-gradient(#28aae2, #2b3991); | ||||
@@ -68,6 +68,19 @@ | |||||
.service-content object.active { | .service-content object.active { | ||||
display: block; | display: block; | ||||
} | } | ||||
@media screen and (max-width: 1024px) { | |||||
.service-content object.active { | |||||
display: none; | |||||
} | |||||
} | |||||
.service-content iframe { | |||||
display: none; | |||||
} | |||||
@media screen and (max-width: 1024px) { | |||||
.service-content iframe.active { | |||||
display: block; | |||||
} | |||||
} | |||||
.service-content ul { | .service-content ul { | ||||
width: 25%; | width: 25%; | ||||
display: flex; | display: flex; | ||||
@@ -10,4 +10,16 @@ function page_scroll() { | |||||
} else { | } else { | ||||
page_header.classList.add('minimize'); | page_header.classList.add('minimize'); | ||||
} | } | ||||
} | |||||
var hamburger_menu = document.getElementById('mobile-hamburger-menu'); | |||||
var mobile_menu = document.getElementById('mobile-nav-menu'); | |||||
hamburger_menu.addEventListener('click', show_menu); | |||||
function show_menu() { | |||||
'use strict'; | |||||
hamburger_menu.classList.toggle('active'); | |||||
document.body.classList.toggle('non-scrollable'); | |||||
mobile_menu.classList.toggle('show'); | |||||
} | } |
@@ -1,15 +1,3 @@ | |||||
var hamburger_menu = document.getElementById('mobile-hamburger-menu'); | |||||
var mobile_menu = document.getElementById('mobile-nav-menu'); | |||||
hamburger_menu.addEventListener('click', show_menu); | |||||
function show_menu() { | |||||
'use strict'; | |||||
hamburger_menu.classList.toggle('active'); | |||||
document.body.classList.toggle('non-scrollable'); | |||||
mobile_menu.classList.toggle('show'); | |||||
} | |||||
var desktop_navigation_menu_links = document.querySelectorAll('#desktop-navigation-menu ul li'); | var desktop_navigation_menu_links = document.querySelectorAll('#desktop-navigation-menu ul li'); | ||||
for (var i = 0; i < desktop_navigation_menu_links.length; i++) { | for (var i = 0; i < desktop_navigation_menu_links.length; i++) { | ||||
@@ -87,15 +75,15 @@ function hide_mobile_nav() { | |||||
} | } | ||||
// Native method of doing smooth scrolling | // Native method of doing smooth scrolling | ||||
// document.querySelectorAll('a[href^="#"]').forEach(function(anchor) { | |||||
// anchor.addEventListener('click', function (e) { | |||||
// e.preventDefault(); | |||||
document.querySelectorAll('a[href^="#"]').forEach(function(anchor) { | |||||
anchor.addEventListener('click', function (e) { | |||||
e.preventDefault(); | |||||
// document.querySelector(this.getAttribute('href')).scrollIntoView({ | |||||
// behavior: 'smooth' | |||||
// }); | |||||
// }); | |||||
// }); | |||||
document.querySelector(this.getAttribute('href')).scrollIntoView({ | |||||
behavior: 'smooth' | |||||
}); | |||||
}); | |||||
}); | |||||
// Support for old Browsers. | // Support for old Browsers. | ||||
$(document).on('click', 'a[href^="#"]', function (event) { | $(document).on('click', 'a[href^="#"]', function (event) { | ||||
@@ -145,7 +133,7 @@ var owl = $('.owl-branches'); | |||||
owl.owlCarousel({ | owl.owlCarousel({ | ||||
loop: true, | loop: true, | ||||
margin: 0, | margin: 0, | ||||
autoplay: true, | |||||
autoplay: false, | |||||
autoplayTimeout: 3000, | autoplayTimeout: 3000, | ||||
autoplayHoverPause: true, | autoplayHoverPause: true, | ||||
responsiveClass: true, | responsiveClass: true, | ||||
@@ -157,8 +145,7 @@ owl.owlCarousel({ | |||||
items: 1 | items: 1 | ||||
}, | }, | ||||
1000: { | 1000: { | ||||
items: 2, | |||||
stagePadding: -10 | |||||
items: 3, | |||||
} | } | ||||
} | } | ||||
}); | }); | ||||
@@ -40,12 +40,20 @@ | |||||
width: 90%; | width: 90%; | ||||
margin: 0 auto; | margin: 0 auto; | ||||
@media screen and (max-width: 1024px) { | |||||
flex-direction: column; | |||||
} | |||||
.description { | .description { | ||||
width: 60%; | width: 60%; | ||||
align-self: center; | align-self: center; | ||||
display: flex; | display: flex; | ||||
justify-content: space-between; | justify-content: space-between; | ||||
flex-direction: column; | flex-direction: column; | ||||
@media screen and (max-width: 1024px) { | |||||
width: 100%; | |||||
} | |||||
p { | p { | ||||
width: 100%; | width: 100%; | ||||
@@ -68,18 +76,29 @@ | |||||
width: 37%; | width: 37%; | ||||
align-self: center; | align-self: center; | ||||
display: flex; | display: flex; | ||||
height: 50vh; | |||||
@media screen and (max-width: 1024px) { | |||||
width: 100%; | |||||
} | |||||
img { | img { | ||||
width: 100%; | width: 100%; | ||||
align-self: center; | align-self: center; | ||||
height: 100%; | |||||
object-fit: cover; | |||||
object-position: top; | |||||
} | } | ||||
} | } | ||||
p { | p { | ||||
margin-top: 30px; | |||||
width: 90%; | width: 90%; | ||||
margin: 30px auto 0; | |||||
margin: 0 auto 0; | |||||
padding-bottom: 50px; | padding-bottom: 50px; | ||||
@media screen and (max-width: 1024px) { | |||||
margin: 0 auto; | |||||
} | |||||
} | } | ||||
} | } | ||||
@@ -127,7 +127,7 @@ mark { | |||||
} | } | ||||
.inner-header { | .inner-header { | ||||
width: 80%; | |||||
width: 90%; | |||||
display: flex; | display: flex; | ||||
justify-content: space-between; | justify-content: space-between; | ||||
margin: 0 auto; | margin: 0 auto; | ||||
@@ -135,30 +135,43 @@ mark { | |||||
@media screen and (max-width: 1024px) { | @media screen and (max-width: 1024px) { | ||||
width: 100%; | width: 100%; | ||||
justify-content: space-around; | |||||
justify-content: none; | |||||
} | } | ||||
} | } | ||||
.temp-brand { | .temp-brand { | ||||
display: flex; | display: flex; | ||||
align-self: center; | align-self: center; | ||||
width: 20%; | |||||
width: auto; | |||||
justify-content: center; | justify-content: center; | ||||
cursor: pointer; | |||||
@media screen and (max-width: 1024px) { | |||||
justify-content: unset; | |||||
width: calc(100% -55px); | |||||
} | |||||
figure { | figure { | ||||
margin-right: 15px; | margin-right: 15px; | ||||
width: 60px; | |||||
height: 60px; | |||||
img { | img { | ||||
width: 100%; | width: 100%; | ||||
height: 100%; | |||||
} | } | ||||
} | } | ||||
h1 { | h1 { | ||||
font-size: $heading_size; | |||||
font-size: 20px; | |||||
align-self: center; | align-self: center; | ||||
letter-spacing: -0.65px; | letter-spacing: -0.65px; | ||||
font-family: 'Archivo Black', sans-serif; | font-family: 'Archivo Black', sans-serif; | ||||
@media screen and (max-width: 1024px) { | |||||
font-size: 15px; | |||||
} | |||||
mark { | mark { | ||||
color: $blue; | color: $blue; | ||||
} | } | ||||
@@ -194,6 +207,10 @@ mark { | |||||
position: relative; | position: relative; | ||||
height: 25px; | height: 25px; | ||||
@media screen and (max-width: 1024px) { | |||||
width: 45px; | |||||
} | |||||
&.active { | &.active { | ||||
.icon-line { | .icon-line { | ||||
@@ -50,6 +50,7 @@ section { | |||||
#home { | #home { | ||||
box-shadow: 0 8px 20px -6px $gray; | box-shadow: 0 8px 20px -6px $gray; | ||||
display: flex; | display: flex; | ||||
height: 80vh; | |||||
@media screen and (max-width: 1024px) { | @media screen and (max-width: 1024px) { | ||||
flex-direction: column; | flex-direction: column; | ||||
@@ -67,6 +68,8 @@ section { | |||||
figure { | figure { | ||||
opacity: 1; | opacity: 1; | ||||
transition: opacity 500ms ease; | transition: opacity 500ms ease; | ||||
text-align: center; | |||||
align-self: flex-end; | |||||
@media screen and (max-width: 1024px) { | @media screen and (max-width: 1024px) { | ||||
width: 100%; | width: 100%; | ||||
@@ -76,6 +79,10 @@ section { | |||||
&.hide { | &.hide { | ||||
opacity: 0; | opacity: 0; | ||||
} | } | ||||
img { | |||||
width: 90%; | |||||
} | |||||
} | } | ||||
.description { | .description { | ||||
@@ -376,7 +383,6 @@ section { | |||||
} | } | ||||
.owl-item-branches { | .owl-item-branches { | ||||
display: flex; | |||||
width: 97%; | width: 97%; | ||||
background-color: white; | background-color: white; | ||||
margin: 50px 0; | margin: 50px 0; | ||||
@@ -387,12 +393,8 @@ section { | |||||
} | } | ||||
figure { | figure { | ||||
width: 500px; | |||||
height: 255px; | |||||
@media screen and (max-width: 1024px) { | |||||
width: 350px; | |||||
} | |||||
width: 100%; | |||||
height: 90%; | |||||
img { | img { | ||||
width: 100%; | width: 100%; | ||||
@@ -418,16 +420,9 @@ section { | |||||
.person-name { | .person-name { | ||||
color: $blue; | color: $blue; | ||||
padding-top: 20px; | |||||
} | } | ||||
} | } | ||||
blockquote { | |||||
font-size: $paragraph_size; | |||||
color: $dark_gray; | |||||
line-height: 1.3; | |||||
} | |||||
} | } | ||||
} | } | ||||
@@ -441,8 +436,12 @@ section { | |||||
padding: 10px; | padding: 10px; | ||||
background-color: $light_gray; | background-color: $light_gray; | ||||
color: $brown; | color: $brown; | ||||
margin: 0 12px; | |||||
margin: 0 0 0 12px; | |||||
cursor: pointer; | cursor: pointer; | ||||
@media screen and (max-width: 1024px) { | |||||
margin: 50px 0 0 12px; | |||||
} | |||||
} | } | ||||
} | } | ||||
} | } | ||||
@@ -47,6 +47,20 @@ | |||||
&.active { | &.active { | ||||
display: block; | display: block; | ||||
@media screen and (max-width: 1024px) { | |||||
display: none; | |||||
} | |||||
} | |||||
} | |||||
iframe { | |||||
display: none; | |||||
@media screen and (max-width: 1024px) { | |||||
&.active { | |||||
display: block; | |||||
} | |||||
} | } | ||||
} | } | ||||
@@ -16,7 +16,7 @@ | |||||
<section class="about-content"> | <section class="about-content"> | ||||
<div class="inner-container"> | <div class="inner-container"> | ||||
<figure> | <figure> | ||||
<img src="{% static 'images/cover-image.jpg' %}" alt=""> | |||||
<img src="{% static 'images/edits/founders.jpg' %}" alt=""> | |||||
</figure> | </figure> | ||||
<div class="description"> | <div class="description"> | ||||
<div class="heading"><marked>About</marked> BCB</div> | <div class="heading"><marked>About</marked> BCB</div> | ||||
@@ -4,7 +4,7 @@ | |||||
<meta charset="UTF-8"> | <meta charset="UTF-8"> | ||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | <meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||||
<title>Fundzin</title> | |||||
<title>BCB</title> | |||||
{% load staticfiles %} | {% load staticfiles %} | ||||
<!-- Using Google hot link to render fonts, downloaded Archgivo Black fonts isn't same as the previewed. --> | <!-- Using Google hot link to render fonts, downloaded Archgivo Black fonts isn't same as the previewed. --> | ||||
<link href="https://fonts.googleapis.com/css?family=Archivo+Black" rel="stylesheet"> | <link href="https://fonts.googleapis.com/css?family=Archivo+Black" rel="stylesheet"> | ||||
@@ -17,7 +17,7 @@ | |||||
</head> | </head> | ||||
<body> | <body> | ||||
<div class="temp-intro"> | <div class="temp-intro"> | ||||
<div class="temp-name">Welcome To <mark>Fundzin</mark></div> | |||||
<div class="temp-name">Welcome To <mark>BCB</mark></div> | |||||
<ul class="temp-social"> | <ul class="temp-social"> | ||||
<li> | <li> | ||||
<a href="#"><i class="fab fa-facebook-f"></i></a> | <a href="#"><i class="fab fa-facebook-f"></i></a> | ||||
@@ -35,28 +35,7 @@ | |||||
</div> | </div> | ||||
{% block navigation %} | {% block navigation %} | ||||
{% endblock navigation %} | {% endblock navigation %} | ||||
<nav id="mobile-nav-menu"> | |||||
<ul> | |||||
<li class="active"> | |||||
<a href="#home">HOME</a> | |||||
</li> | |||||
<li> | |||||
<a href="#about">ABOUT</a> | |||||
</li> | |||||
<li> | |||||
<a href="#service">SERVICES</a> | |||||
</li> | |||||
<li> | |||||
<a href="#testimonial">TESTIMONIAL</a> | |||||
</li> | |||||
<li> | |||||
<a href="#enquiry">ENQUIRY</a> | |||||
</li> | |||||
<li> | |||||
<a href="#contact">CONTACT</a> | |||||
</li> | |||||
</ul> | |||||
</nav> | |||||
{% block content %} | {% block content %} | ||||
{% endblock content %} | {% endblock content %} | ||||
<footer id="footer"> | <footer id="footer"> | ||||
@@ -8,12 +8,12 @@ | |||||
{% block content %} | {% block content %} | ||||
<header id="page-header"> | <header id="page-header"> | ||||
<div class="inner-header"> | <div class="inner-header"> | ||||
<div class="temp-brand"> | |||||
<a href = "/" class="temp-brand"> | |||||
<figure> | <figure> | ||||
<img src="{% static 'images/logo-icon.png' %}" alt=""> | |||||
<img src="{% static 'images/edits/logo.jpg' %}" alt=""> | |||||
</figure> | </figure> | ||||
<h1><mark>Fundz</mark>in</h1> | |||||
</div> | |||||
<h1>The <mark>Bharath Co-operative</mark> Bank</h1> | |||||
</a> | |||||
<nav id="desktop-navigation-menu"> | <nav id="desktop-navigation-menu"> | ||||
<ul> | <ul> | ||||
<li class="active"> | <li class="active"> | ||||
@@ -41,6 +41,28 @@ | |||||
</section> | </section> | ||||
</div> | </div> | ||||
</header> | </header> | ||||
<nav id="mobile-nav-menu"> | |||||
<ul> | |||||
<li class="active"> | |||||
<a href="#home">HOME</a> | |||||
</li> | |||||
<li> | |||||
<a href="#about">ABOUT</a> | |||||
</li> | |||||
<li> | |||||
<a href="#service">SERVICES</a> | |||||
</li> | |||||
<li> | |||||
<a href="#branches">BRANCHES</a> | |||||
</li> | |||||
<li> | |||||
<a href="#enquiry">ENQUIRY</a> | |||||
</li> | |||||
<li> | |||||
<a href="#contact">CONTACT</a> | |||||
</li> | |||||
</ul> | |||||
</nav> | |||||
<div class="temp-contact-info"> | <div class="temp-contact-info"> | ||||
<ul> | <ul> | ||||
<li> | <li> | ||||
@@ -68,7 +90,7 @@ | |||||
</div> | </div> | ||||
<section id="home"> | <section id="home"> | ||||
<figure class="hide"> | <figure class="hide"> | ||||
<img src="{% static 'images/banner.png' %}" alt=""> | |||||
<img src="{% static 'images/edits/bank.JPG' %}" alt=""> | |||||
</figure> | </figure> | ||||
<div class="description hide"> | <div class="description hide"> | ||||
<h3> | <h3> | ||||
@@ -79,7 +101,7 @@ | |||||
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut | eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut | ||||
enim ad minim veniam. | enim ad minim veniam. | ||||
</p> | </p> | ||||
<a href="/service"> | |||||
<a href="#service"> | |||||
<button type="button">OUR SERVICES<i class="fas fa-chevron-right"></i></button> | <button type="button">OUR SERVICES<i class="fas fa-chevron-right"></i></button> | ||||
</a> | </a> | ||||
</div> | </div> | ||||
@@ -181,16 +203,8 @@ | |||||
<img src="{% static 'images/corporate-people-photography.jpg' %}" alt=""> | <img src="{% static 'images/corporate-people-photography.jpg' %}" alt=""> | ||||
</figure> | </figure> | ||||
<div class="description"> | <div class="description"> | ||||
<blockquote> | |||||
Lorem ipsum dolor sit amet, con- | |||||
sectetur adipiscing elit, sed do | |||||
eiusmod tempor incididunt ut | |||||
labore et dolore magna aliqua. | |||||
Ut enim ad minim veniam. | |||||
</blockquote> | |||||
<div class="person-name">Nagarabjavi</div> | |||||
<div class="person-info">Bangalore</div> | |||||
<div class="person-info">Karnataka</div> | |||||
<div class="person-name">Nagarabhavi</div> | |||||
<div class="person-info">Bangalore, Karnataka</div> | |||||
</div> | </div> | ||||
</div> | </div> | ||||
<div class="owl-item-branches"> | <div class="owl-item-branches"> | ||||
@@ -198,16 +212,8 @@ | |||||
<img src="{% static 'images/boardroom-photography-London.jpg' %}" alt=""> | <img src="{% static 'images/boardroom-photography-London.jpg' %}" alt=""> | ||||
</figure> | </figure> | ||||
<div class="description"> | <div class="description"> | ||||
<blockquote> | |||||
Lorem ipsum dolor sit amet, con- | |||||
sectetur adipiscing elit, sed do | |||||
eiusmod tempor incididunt ut | |||||
labore et dolore magna aliqua. | |||||
Ut enim ad minim veniam. | |||||
</blockquote> | |||||
<div class="person-name">Nagarabjavi</div> | |||||
<div class="person-info">Bangalore</div> | |||||
<div class="person-info">Karnataka</div> | |||||
<div class="person-name">Nagarabhavi</div> | |||||
<div class="person-info">Bangalore, Karnataka</div> | |||||
</div> | </div> | ||||
</div> | </div> | ||||
<div class="owl-item-branches"> | <div class="owl-item-branches"> | ||||
@@ -215,16 +221,8 @@ | |||||
<img src="{% static 'images/corporate-people-photography.jpg' %}" alt=""> | <img src="{% static 'images/corporate-people-photography.jpg' %}" alt=""> | ||||
</figure> | </figure> | ||||
<div class="description"> | <div class="description"> | ||||
<blockquote> | |||||
Lorem ipsum dolor sit amet, con- | |||||
sectetur adipiscing elit, sed do | |||||
eiusmod tempor incididunt ut | |||||
labore et dolore magna aliqua. | |||||
Ut enim ad minim veniam. | |||||
</blockquote> | |||||
<div class="person-name">Nagarabjavi</div> | |||||
<div class="person-info">Bangalore</div> | |||||
<div class="person-info">Karnataka</div> | |||||
<div class="person-name">Nagarabhavi</div> | |||||
<div class="person-info">Bangalore, Karnataka</div> | |||||
</div> | </div> | ||||
</div> | </div> | ||||
<div class="owl-item-branches"> | <div class="owl-item-branches"> | ||||
@@ -232,16 +230,8 @@ | |||||
<img src="{% static 'images/boardroom-photography-London.jpg' %}" alt=""> | <img src="{% static 'images/boardroom-photography-London.jpg' %}" alt=""> | ||||
</figure> | </figure> | ||||
<div class="description"> | <div class="description"> | ||||
<blockquote> | |||||
Lorem ipsum dolor sit amet, con- | |||||
sectetur adipiscing elit, sed do | |||||
eiusmod tempor incididunt ut | |||||
labore et dolore magna aliqua. | |||||
Ut enim ad minim veniam. | |||||
</blockquote> | |||||
<div class="person-name">Nagarabjavi</div> | |||||
<div class="person-info">Bangalore</div> | |||||
<div class="person-info">Karnataka</div> | |||||
<div class="person-name">Nagarabhavi</div> | |||||
<div class="person-info">Bangalore, Karnataka</div> | |||||
</div> | </div> | ||||
</div> | </div> | ||||
<div class="owl-item-branches"> | <div class="owl-item-branches"> | ||||
@@ -249,16 +239,8 @@ | |||||
<img src="{% static 'images/corporate-people-photography.jpg' %}" alt=""> | <img src="{% static 'images/corporate-people-photography.jpg' %}" alt=""> | ||||
</figure> | </figure> | ||||
<div class="description"> | <div class="description"> | ||||
<blockquote> | |||||
Lorem ipsum dolor sit amet, con- | |||||
sectetur adipiscing elit, sed do | |||||
eiusmod tempor incididunt ut | |||||
labore et dolore magna aliqua. | |||||
Ut enim ad minim veniam. | |||||
</blockquote> | |||||
<div class="person-name">Nagarabjavi</div> | |||||
<div class="person-info">Bangalore</div> | |||||
<div class="person-info">Karnataka</div> | |||||
<div class="person-name">Nagarabhavi</div> | |||||
<div class="person-info">Bangalore, Karnataka</div> | |||||
</div> | </div> | ||||
</div> | </div> | ||||
</div> | </div> | ||||
@@ -5,9 +5,9 @@ | |||||
<div class="inner-header"> | <div class="inner-header"> | ||||
<a href = "/" class="temp-brand"> | <a href = "/" class="temp-brand"> | ||||
<figure> | <figure> | ||||
<img src="{% static 'images/logo-icon.png' %}" alt=""> | |||||
<img src="{% static 'images/edits/logo.jpg' %}" alt=""> | |||||
</figure> | </figure> | ||||
<h1><mark>Fundz</mark>in</h1> | |||||
<h1>The <mark>Bharath Co-operative</mark> Bank</h1> | |||||
</a> | </a> | ||||
<nav id="desktop-navigation-menu"> | <nav id="desktop-navigation-menu"> | ||||
<ul> | <ul> | ||||
@@ -20,9 +20,6 @@ | |||||
<li {% if menu == 'Service' %} class="active" {% endif %}> | <li {% if menu == 'Service' %} class="active" {% endif %}> | ||||
<a href="/service">SERVICES</a> | <a href="/service">SERVICES</a> | ||||
</li> | </li> | ||||
<li> | |||||
<a href="/">TESTIMONIAL</a> | |||||
</li> | |||||
<li> | <li> | ||||
<a href="/">ENQUIRY</a> | <a href="/">ENQUIRY</a> | ||||
</li> | </li> | ||||
@@ -36,4 +33,24 @@ | |||||
</section> | </section> | ||||
</div> | </div> | ||||
</header> | </header> | ||||
<nav id="mobile-nav-menu"> | |||||
<ul> | |||||
<li class="active"> | |||||
<a href="/">HOME</a> | |||||
</li> | |||||
<li> | |||||
<a href="/about">ABOUT</a> | |||||
</li> | |||||
<li> | |||||
<a href="/service">SERVICES</a> | |||||
</li> | |||||
<li> | |||||
<a href="/">ENQUIRY</a> | |||||
</li> | |||||
<li> | |||||
<a href="/">CONTACT</a> | |||||
</li> | |||||
</ul> | |||||
</nav> | |||||
{% endblock navigation %} | {% endblock navigation %} |