-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvocalacademy.php
286 lines (251 loc) · 9.33 KB
/
vocalacademy.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<?php include "_libs/load.php" ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>St.Joseph's MHSS, Ondipudur</title>
<link rel="icon" href="/photos/logo-main.png" type="image/x-icon">
<link rel="stylesheet" href="/css/academics.css?v=<?php echo time(); ?>">
<link href="https://fonts.googleapis.com/css2?family=Fjalla+One&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic" rel='stylesheet' type='text/css'>
<style>
.back-bar
{
width: 100%;
background: linear-gradient(to left, #2b4b8a, #1a355d);
padding-top: 80px;
padding-bottom: 80px;
}
.back-bar .back-text h4
{
font-family: "Fjalla One", sans-serif!important;
text-align: center;
padding-left: 20px;
font-size: 55px;
font-weight: 600;
color: white;
}
.back-bar .back-text p
{
font-family: "LeagueSpartan", sans-serif!important;
text-align: center;
padding-left: 20px;
font-size: 25px;
color: white;
font-style: italic;
}
.back-bar-reveal
{
transition: 2s;
transform: translateY(80px);
opacity: 0;
}
.back-bar-reveal.active
{
transition: 2s;
transform: translateY(0);
opacity: 1;
}
@media(max-width:600px)
{
.back-bar .back-text h4
{
font-size: 40px;
}
.back-bar .back-text p
{
font-size: 15px;
}
}
/* backbar end */
/* content strt */
.bg-1{
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),url('../photos/vocaca1.jpg') no-repeat;;
background-size: cover;
}
.infra-new {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-start;
border: 2px solid #fff;
padding: 40px;
transition: 1.5s;
}
.infra-new-carousel {
order: 2; /* Initial order */
flex: 1 1 600px;
width: 100%;
}
.infra-new-carousel .carousel-inner {
width: 100%;
height: auto;
border-radius: 35px;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
}
.infra-new-carousel .carousel-image {
object-fit: contain!important;
width: 100%;
height: 500px; /* Adjust this value as needed */
}
.infra-new-text {
order: 1; /* Initial order */
flex: 1 1 50%;
margin-left: 20px;
margin-right: 20px;
text-align: left;
}
.infra-new-text h4 {
font-family: "Fjalla One", sans-serif!important;
color: #fff;
font-size: 50px;
font-weight: 600;
}
.infra-new-text p{
font-family: "LeagueSpartan", sans-serif!important;
color: antiquewhite;
font-size:22px;
}
/* animation */
.infra-new-reveal {
transition: 1.5s;
transform: translateX(-50px);
opacity: 0;
}
.infra-new-reveal.active {
opacity: 1;
transform: translateX(0);
}
@media (max-width: 1320px) {
.infra-new {
flex-direction: column;
align-items: center;
}
.infra-new-carousel {
order: 2; /* Change order on small screens */
flex: 1 1 100%;
margin: 0;
}
.infra-new-text {
order: 1; /* Change order on small screens */
flex: 1 1 100%;
margin: 0;
text-align: left;
margin-top: 20px;
}
.infra-new-carousel .carousel-inner {
height: auto;
}
}
@media (max-width: 768px) {
.infra-new {
flex-direction: column;
align-items: center;
}
.infra-new:hover{
transform: none;
}
.infra-new-carousel {
order: 2; /* Change order on small screens */
flex: 1 1 100%;
margin: 0;
}
.infra-new-text {
order: 1; /* Change order on small screens */
flex: 1 1 100%;
margin: 0;
text-align: left;
margin-top: 20px;
}
.infra-new-carousel .carousel-inner {
height: auto;
}
}
/* Customize carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
background-color: #000 !important;
border-radius: 50% !important;
padding: 15px;
}
</style>
</head>
<body class="academics">
<?php get_templates('preloader');?>
<?php get_templates('navbar');?>
<?php get_templates('scroll-up');?>
<section class="back-bar">
<div class="back-text back-bar-reveal">
<h4>Vocal Academy</h4>
<p>Chorus Singing</p>
</div>
</section>
<!-- content -->
<section class="infra-new bg-1">
<section class="infra-new-carousel">
<div id="carouselExampleIndicators" class="carousel slide carousel-fade" data-ride="carousel" data-interval="2000">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="/photos/vocaca2.jpg" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="/photos/vocaca3.jpg" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="/photos/vocaca1.jpg" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</section>
<!-- carousel end -->
<div class="infra-new-text">
<h4 class="infra-new-reveal">Vocal Academy</h4>
<p>
The students of our vocal academy receive training in the context of musicality and technicality in the field of music. The structure of the lesson
plans for the vocal academy has been formulated in a way to provide the in-depth understanding of music to all age groups of the academy. Over the
training sessions the students gain knowledge on the theoretical and technical aspects with <span style="color:#ffd700;font-size:24px;font-weight:bolder;">Practical</span> examples. The vocal academy not only aims at
uplifting the student in their vocal skills but also aims at developing the student’s
potential as a performer which gets applied to every other field in the longer run.
<p>
The academy also provides awareness about international music and also gets
the students used to various fields of music such as the musical theatre, arts
and drama. St.Joseph’s Vocal Academy is a standalone academy which has its unique
framework to train the students of all age groups. The academy not only creates talented musicians but also creates students with unique personality and charisma.
</p>
</p>
</div>
</section>
<script>
window.addEventListener('DOMContentLoaded', reveal);
window.addEventListener('scroll', reveal);
function reveal() {
var reveals = document.querySelectorAll('.back-bar-reveal,.infra-new-reveal');
var windowHeight = window.innerHeight;
var revealPoint = 150;
reveals.forEach(function(revealElement) {
var revealTop = revealElement.getBoundingClientRect().top;
if (revealTop < windowHeight - revealPoint) {
revealElement.classList.add('active');
} else {
revealElement.classList.remove('active');
}
});
}
</script>
<?php get_templates('footer');?>
</body>
</html>