├── images ├── menu.png ├── t1.jpg ├── t2.jpg ├── t3.jpg ├── u-1.png ├── u-2.png ├── u-3.png ├── u-4.png ├── us-bg.jpg ├── hero-bg.jpg ├── twitter.png ├── contact-img.jpg ├── healthy-bg.jpg ├── search-icon.png ├── trainer-bg.jpg ├── envelope-white.png ├── facebook-logo.png ├── instagram-logo.png ├── location-white.png └── telephone-white.png ├── css ├── responsive.css ├── style.css.map ├── style.scss └── style.css ├── .github └── workflows │ └── azure-static-web-apps-ambitious-meadow-0cb22fd10.yml ├── contact.html ├── why.html ├── trainer.html ├── index.html └── js └── jquery-3.4.1.min.js /images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/menu.png -------------------------------------------------------------------------------- /images/t1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/t1.jpg -------------------------------------------------------------------------------- /images/t2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/t2.jpg -------------------------------------------------------------------------------- /images/t3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/t3.jpg -------------------------------------------------------------------------------- /images/u-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/u-1.png -------------------------------------------------------------------------------- /images/u-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/u-2.png -------------------------------------------------------------------------------- /images/u-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/u-3.png -------------------------------------------------------------------------------- /images/u-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/u-4.png -------------------------------------------------------------------------------- /images/us-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/us-bg.jpg -------------------------------------------------------------------------------- /images/hero-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/hero-bg.jpg -------------------------------------------------------------------------------- /images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/twitter.png -------------------------------------------------------------------------------- /images/contact-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/contact-img.jpg -------------------------------------------------------------------------------- /images/healthy-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/healthy-bg.jpg -------------------------------------------------------------------------------- /images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/search-icon.png -------------------------------------------------------------------------------- /images/trainer-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/trainer-bg.jpg -------------------------------------------------------------------------------- /images/envelope-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/envelope-white.png -------------------------------------------------------------------------------- /images/facebook-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/facebook-logo.png -------------------------------------------------------------------------------- /images/instagram-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/instagram-logo.png -------------------------------------------------------------------------------- /images/location-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/location-white.png -------------------------------------------------------------------------------- /images/telephone-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prem-pm/webz/HEAD/images/telephone-white.png -------------------------------------------------------------------------------- /css/responsive.css: -------------------------------------------------------------------------------- 1 | @media (max-width: 1120px) {} 2 | 3 | @media (max-width: 992px) { 4 | .hero_area { 5 | height: auto; 6 | } 7 | 8 | .custom_nav-container .nav_search-btn { 9 | background-position: center; 10 | margin-top: 10px; 11 | } 12 | 13 | .slider_section { 14 | padding-top: 45px; 15 | padding-bottom: 75px; 16 | } 17 | 18 | .info_items { 19 | width: 100%; 20 | } 21 | } 22 | 23 | @media (max-width: 768px) { 24 | .contact_section .form_container { 25 | padding: 45px 0; 26 | } 27 | 28 | .info_items { 29 | flex-direction: column; 30 | align-items: center; 31 | } 32 | 33 | .contact_section .heading_container { 34 | justify-content: center; 35 | } 36 | 37 | .contact_section .heading_container h2::before { 38 | left: 50%; 39 | transform: translateX(-50%); 40 | } 41 | 42 | .contact_section button { 43 | margin: 45px auto 0 auto; 44 | } 45 | } 46 | 47 | 48 | @media (max-width: 576px) { 49 | .slider_section .detail-box h1 { 50 | font-size: 3rem; 51 | } 52 | } 53 | 54 | @media (max-width: 480px) {} 55 | 56 | @media (max-width: 420px) { 57 | .slider_section .detail-box h1 { 58 | letter-spacing: .3rem; 59 | } 60 | } 61 | 62 | @media (max-width: 360px) {} 63 | 64 | @media (min-width: 1200px) { 65 | .container { 66 | max-width: 1170px; 67 | } 68 | } -------------------------------------------------------------------------------- /.github/workflows/azure-static-web-apps-ambitious-meadow-0cb22fd10.yml: -------------------------------------------------------------------------------- 1 | name: Azure Static Web Apps CI/CD 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | pull_request: 8 | types: [opened, synchronize, reopened, closed] 9 | branches: 10 | - master 11 | 12 | jobs: 13 | build_and_deploy_job: 14 | if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') 15 | runs-on: ubuntu-latest 16 | name: Build and Deploy Job 17 | steps: 18 | - uses: actions/checkout@v3 19 | with: 20 | submodules: true 21 | lfs: false 22 | - name: Build And Deploy 23 | id: builddeploy 24 | uses: Azure/static-web-apps-deploy@v1 25 | with: 26 | azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_MEADOW_0CB22FD10 }} 27 | repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) 28 | action: "upload" 29 | ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### 30 | # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig 31 | app_location: "/" # App source code path 32 | api_location: "" # Api source code path - optional 33 | output_location: "." # Built app content directory - optional 34 | ###### End of Repository/Build Configurations ###### 35 | 36 | close_pull_request_job: 37 | if: github.event_name == 'pull_request' && github.event.action == 'closed' 38 | runs-on: ubuntu-latest 39 | name: Close Pull Request Job 40 | steps: 41 | - name: Close Pull Request 42 | id: closepullrequest 43 | uses: Azure/static-web-apps-deploy@v1 44 | with: 45 | azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_AMBITIOUS_MEADOW_0CB22FD10 }} 46 | action: "close" 47 | -------------------------------------------------------------------------------- /contact.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | Neogym 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 |
33 | 34 |
35 |
36 | 71 |
72 |
73 | 74 | 75 |
76 | 77 | 78 | 79 | 80 |
81 |
82 |
83 |
84 |
85 | 86 |
87 |
88 |
89 |
90 |
91 |

92 | Contact Us 93 |

94 |
95 |
96 |
97 | 98 |
99 |
100 | 101 |
102 |
103 | 104 |
105 |
106 | 107 |
108 |
109 | 112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 | 120 | 121 | 122 | 123 |
124 |
125 | 163 |
164 |
165 | 166 | 167 | 168 | 169 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | -------------------------------------------------------------------------------- /why.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | Neogym 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 |
33 | 34 |
35 |
36 | 71 |
72 |
73 | 74 |
75 | 76 | 77 | 78 | 79 |
80 |
81 |
82 |

83 | Why Choose Us 84 |

85 |
86 | 87 |
88 |
89 |
90 |
91 |
92 | 93 |
94 |
95 |
96 | QUALITY EQUIPMENT 97 |
98 |

99 | ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor 100 |

101 |
102 |
103 |
104 |
105 |
106 |
107 | 108 |
109 |
110 |
111 | NUTRITION 112 |
113 |

114 | ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor 115 |

116 |
117 |
118 |
119 |
120 |
121 |
122 | 123 |
124 |
125 |
126 | HEALTHY DIET PLAN 127 |
128 |

129 | ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor 130 |

131 |
132 |
133 |
134 |
135 |
136 |
137 | 138 |
139 |
140 |
141 | SPORT TRAINING 142 |
143 |

144 | ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor 145 |

146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 | 154 | 155 | 156 | 157 | 158 |
159 |
160 | 198 |
199 |
200 | 201 | 202 | 203 | 204 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | -------------------------------------------------------------------------------- /trainer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | Neogym 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 |
33 | 34 |
35 |
36 | 71 |
72 |
73 | 74 |
75 | 76 | 77 | 78 | 79 |
80 |
81 |
82 |

83 | Our Gym Trainers 84 |

85 |
86 |
87 |
88 |
89 |
90 |
91 | Smirth Jon 92 |
93 |
94 |
95 | 96 |
97 | 108 |
109 |
110 |
111 |
112 |
113 |
114 | Jean Doe 115 |
116 |
117 |
118 | 119 |
120 | 131 |
132 |
133 |
134 |
135 |
136 |
137 | Alex Den 138 |
139 |
140 |
141 | 142 |
143 | 154 |
155 |
156 |
157 |
158 |
159 | 160 | 161 | 162 | 163 |
164 |
165 | 203 |
204 |
205 | 206 | 207 | 208 | 209 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | -------------------------------------------------------------------------------- /css/style.css.map: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "mappings": "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", 4 | "sources": [ 5 | "style.scss" 6 | ], 7 | "names": [], 8 | "file": "style.css" 9 | } -------------------------------------------------------------------------------- /css/style.scss: -------------------------------------------------------------------------------- 1 | $black: #000000; 2 | $white: #ffffff; 3 | $primary1: #ff2953; 4 | 5 | @mixin main-font { 6 | font-family: 'Poppins', sans-serif; 7 | } 8 | 9 | @mixin hero_btn($col1, $col2, $pad1, $pad2, $bRadius) { 10 | display: inline-block; 11 | padding: $pad1 $pad2; 12 | background-color: transparent; 13 | border: 1.5px solid $col1; 14 | color: $col1; 15 | border-radius: $bRadius; 16 | transition: transform 0.3s; 17 | 18 | &:hover { 19 | background-color: $col1; 20 | color: $col2; 21 | } 22 | } 23 | 24 | @mixin upperBold { 25 | text-transform: uppercase; 26 | font-weight: bold; 27 | } 28 | 29 | body { 30 | @include main-font; 31 | color: #000000; 32 | background-color: #ffffff; 33 | } 34 | 35 | .layout_padding { 36 | padding-top: 120px; 37 | padding-bottom: 120px; 38 | } 39 | 40 | .layout_padding2 { 41 | padding-top: 45px; 42 | padding-bottom: 45px; 43 | } 44 | 45 | .layout_padding2-top { 46 | padding-top: 45px; 47 | } 48 | 49 | .layout_padding2-bottom { 50 | padding-bottom: 45px; 51 | } 52 | 53 | .layout_padding-top { 54 | padding-top: 120px; 55 | } 56 | 57 | .layout_padding-bottom { 58 | padding-bottom: 120px; 59 | } 60 | 61 | .heading_container { 62 | display: flex; 63 | justify-content: center; 64 | text-align: center; 65 | 66 | h2 { 67 | font-weight: bold; 68 | position: relative; 69 | padding-bottom: 5px; 70 | text-transform: uppercase; 71 | 72 | &::before { 73 | content: ""; 74 | position: absolute; 75 | bottom: 0; 76 | left: 50%; 77 | width: 55px; 78 | height: 5px; 79 | background-color: $primary1; 80 | transform: translateX(-50%); 81 | } 82 | } 83 | } 84 | 85 | /*header section*/ 86 | .hero_area { 87 | height: 100vh; 88 | display: flex; 89 | flex-direction: column; 90 | background-image: url(../images/hero-bg.jpg); 91 | background-size: cover; 92 | background-attachment: fixed; 93 | } 94 | 95 | .sub_page { 96 | .hero_area { 97 | height: auto; 98 | } 99 | 100 | .who_section.layout_padding { 101 | padding-top: 0; 102 | } 103 | } 104 | 105 | .hero_area.sub_pages { 106 | height: auto; 107 | } 108 | 109 | .header_section {} 110 | 111 | .header_section .container-fluid { 112 | padding-right: 25px; 113 | padding-left: 25px; 114 | } 115 | 116 | .header_section .nav_container { 117 | margin: 0 auto; 118 | } 119 | 120 | .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item { 121 | .nav-link { 122 | margin: 10px 30px; 123 | padding: 0; 124 | padding-bottom: 3px; 125 | color: #ffffff; 126 | text-align: center; 127 | position: relative; 128 | text-transform: uppercase; 129 | font-size: 15px; 130 | 131 | &::after { 132 | display: none; 133 | content: ""; 134 | position: absolute; 135 | left: 0; 136 | bottom: 0; 137 | width: 100%; 138 | height: 3px; 139 | border-radius: 5px; 140 | background-color: $white; 141 | } 142 | } 143 | 144 | &.active, 145 | &:hover { 146 | a { 147 | &::after { 148 | display: block; 149 | background-color: $primary1; 150 | } 151 | } 152 | } 153 | } 154 | 155 | a, 156 | a:hover, 157 | a:focus { 158 | text-decoration: none; 159 | } 160 | 161 | a:hover, 162 | a:focus { 163 | color: initial; 164 | } 165 | 166 | .btn, 167 | .btn:focus { 168 | outline: none !important; 169 | box-shadow: none; 170 | } 171 | 172 | .user_option { 173 | display: flex; 174 | align-items: center; 175 | 176 | a { 177 | color: $white; 178 | margin: 10px 30px; 179 | } 180 | } 181 | 182 | .custom_nav-container .nav_search-btn { 183 | background-image: url(../images/search-icon.png); 184 | background-size: 22px; 185 | background-repeat: no-repeat; 186 | background-position-y: 7px; 187 | width: 35px; 188 | height: 35px; 189 | padding: 0; 190 | border: none; 191 | } 192 | 193 | .navbar-brand { 194 | display: flex; 195 | align-items: center; 196 | position: relative; 197 | 198 | span { 199 | font-size: 22px; 200 | text-transform: uppercase; 201 | font-weight: bold; 202 | color: $white; 203 | position: relative; 204 | z-index: 3; 205 | } 206 | 207 | } 208 | 209 | .custom_nav-container { 210 | z-index: 99999; 211 | padding: 15px 0; 212 | } 213 | 214 | .custom_nav-container .navbar-toggler { 215 | outline: none; 216 | } 217 | 218 | .custom_nav-container .navbar-toggler .navbar-toggler-icon { 219 | background-image: url(../images/menu.png); 220 | background-size: 55px; 221 | } 222 | 223 | /*end header section*/ 224 | 225 | .slider_section { 226 | flex: 1; 227 | display: flex; 228 | align-items: center; 229 | color: $white; 230 | 231 | #carouselExampleIndicators { 232 | width: 100%; 233 | } 234 | 235 | .row { 236 | align-items: center; 237 | } 238 | 239 | .box { 240 | margin: 125px 0; 241 | } 242 | 243 | .detail-box { 244 | text-align: center; 245 | 246 | h1, 247 | h2, 248 | h3 { 249 | text-transform: uppercase; 250 | font-weight: bold; 251 | 252 | } 253 | 254 | h2 { 255 | font-size: 2.5rem; 256 | } 257 | 258 | h1 { 259 | font-size: 3.5rem; 260 | font-weight: bold; 261 | letter-spacing: .5rem; 262 | } 263 | 264 | 265 | 266 | p { 267 | margin-top: 25px; 268 | } 269 | 270 | a { 271 | @include hero_btn($white, $black, 8px, 35px, 0px); 272 | text-transform: uppercase; 273 | margin-top: 35px; 274 | } 275 | } 276 | 277 | 278 | 279 | #carouselExampleIndicators { 280 | .carousel-indicators { 281 | position: unset; 282 | margin: 0; 283 | margin-top: 45px; 284 | align-items: center; 285 | 286 | li { 287 | width: 14px; 288 | height: 14px; 289 | background-color: transparent; 290 | border: 2px solid $white; 291 | border-radius: 100%; 292 | opacity: 1; 293 | 294 | &.active { 295 | border: 4px solid $white; 296 | } 297 | } 298 | } 299 | } 300 | } 301 | 302 | // end slider section 303 | 304 | 305 | // us section 306 | 307 | .us_section { 308 | background-image: url(../images/us-bg.jpg); 309 | background-size: cover; 310 | background-attachment: fixed; 311 | color: $white; 312 | 313 | .us_container { 314 | padding-top: 25px; 315 | 316 | .box { 317 | display: flex; 318 | flex-direction: column; 319 | align-items: center; 320 | text-align: center; 321 | margin: 25px 10px 0 10px; 322 | 323 | .img-box { 324 | height: 100px; 325 | display: flex; 326 | align-items: center; 327 | justify-content: center; 328 | 329 | img { 330 | max-width: 100%; 331 | } 332 | } 333 | 334 | .detail-box { 335 | h5 { 336 | font-weight: bold; 337 | } 338 | } 339 | } 340 | } 341 | } 342 | 343 | 344 | // end us section 345 | 346 | // heathy section 347 | 348 | .heathy_section { 349 | background-image: url(../images/healthy-bg.jpg); 350 | background-size: cover; 351 | background-attachment: fixed; 352 | color: $white; 353 | text-align: center; 354 | 355 | h2 { 356 | font-weight: bold; 357 | } 358 | 359 | p { 360 | margin-top: 35px; 361 | } 362 | 363 | .btn-box { 364 | display: flex; 365 | justify-content: center; 366 | margin-top: 45px; 367 | 368 | a { 369 | @include hero_btn($white, $black, 8px, 35px, 0); 370 | text-transform: uppercase; 371 | 372 | } 373 | } 374 | } 375 | 376 | // end heathy section 377 | 378 | 379 | // trainer section 380 | 381 | .trainer_section { 382 | background-image: url(../images/trainer-bg.jpg); 383 | background-size: cover; 384 | background-attachment: fixed; 385 | color: $white; 386 | 387 | .box { 388 | margin-top: 55px; 389 | display: flex; 390 | flex-direction: column; 391 | align-items: center; 392 | text-align: center; 393 | 394 | .name { 395 | h5 { 396 | font-weight: bold; 397 | margin-bottom: 15px; 398 | } 399 | 400 | } 401 | 402 | .img-box { 403 | border-radius: 15px; 404 | overflow: hidden; 405 | 406 | img { 407 | width: 100%; 408 | } 409 | } 410 | 411 | .social_box { 412 | display: flex; 413 | justify-content: space-between; 414 | width: 225px; 415 | padding: 12px 45px; 416 | background-color: $white; 417 | border-radius: 50px; 418 | margin-top: -25px; 419 | } 420 | } 421 | } 422 | 423 | 424 | // end trainer section 425 | 426 | 427 | // contact section 428 | .contact_section { 429 | position: relative; 430 | background-color: #27223f; 431 | color: $white; 432 | 433 | .heading_container { 434 | justify-content: start; 435 | 436 | h2 { 437 | &::before { 438 | text-align: left; 439 | left: 0; 440 | transform: none; 441 | } 442 | } 443 | } 444 | 445 | .row { 446 | align-items: center; 447 | } 448 | 449 | .img-box { 450 | img { 451 | width: 100%; 452 | } 453 | } 454 | 455 | 456 | 457 | .form_container { 458 | padding: 45px 0 45px 15px; 459 | 460 | } 461 | 462 | form {} 463 | 464 | input { 465 | width: 100%; 466 | border: none; 467 | background-color: $white; 468 | outline: none; 469 | color: $black; 470 | margin-top: 25px; 471 | padding: 12px; 472 | 473 | &::placeholder { 474 | color: #2a2a2c; 475 | } 476 | 477 | &.message-box { 478 | padding: 45px 12px; 479 | } 480 | } 481 | 482 | button { 483 | padding: 10px 65px; 484 | outline: none; 485 | border: none; 486 | color: $white; 487 | background: #ff2953; 488 | margin: 45px 0 0 auto; 489 | text-transform: uppercase; 490 | } 491 | 492 | } 493 | 494 | // end contact section 495 | 496 | 497 | 498 | 499 | 500 | // info section 501 | .info_section { 502 | background-color: #252233; 503 | } 504 | 505 | .info_items { 506 | width: 70%; 507 | margin: 0 auto; 508 | display: flex; 509 | justify-content: space-between; 510 | 511 | .item { 512 | width: 200px; 513 | display: flex; 514 | flex-direction: column; 515 | align-items: center; 516 | text-align: center; 517 | 518 | .img-box { 519 | width: 80px; 520 | height: 80px; 521 | border-radius: 100%; 522 | background-repeat: no-repeat; 523 | background-position: center; 524 | } 525 | 526 | .detail-box { 527 | margin-top: 5px; 528 | color: #fff; 529 | } 530 | } 531 | } 532 | 533 | .info_items { 534 | position: relative; 535 | 536 | a { 537 | position: relative; 538 | } 539 | 540 | .item { 541 | .img-box { 542 | &.box-1 { 543 | background-image: url(../images/location-white.png); 544 | } 545 | 546 | &.box-2 { 547 | background-image: url(../images/telephone-white.png); 548 | } 549 | 550 | &.box-3 { 551 | background-image: url(../images/envelope-white.png); 552 | } 553 | } 554 | } 555 | } 556 | 557 | // end info section 558 | 559 | 560 | 561 | 562 | /* footer section*/ 563 | 564 | .footer_section { 565 | background-color: #fbfdfd; 566 | padding: 20px; 567 | font-weight: 500; 568 | } 569 | 570 | .footer_section p { 571 | color: #292929; 572 | margin: 0; 573 | text-align: center; 574 | } 575 | 576 | .footer_section a { 577 | color: #292929; 578 | } 579 | 580 | /* end footer section*/ -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: 'Poppins', sans-serif; 3 | color: #000000; 4 | background-color: #ffffff; 5 | } 6 | 7 | .layout_padding { 8 | padding-top: 120px; 9 | padding-bottom: 120px; 10 | } 11 | 12 | .layout_padding2 { 13 | padding-top: 45px; 14 | padding-bottom: 45px; 15 | } 16 | 17 | .layout_padding2-top { 18 | padding-top: 45px; 19 | } 20 | 21 | .layout_padding2-bottom { 22 | padding-bottom: 45px; 23 | } 24 | 25 | .layout_padding-top { 26 | padding-top: 120px; 27 | } 28 | 29 | .layout_padding-bottom { 30 | padding-bottom: 120px; 31 | } 32 | 33 | .heading_container { 34 | display: -webkit-box; 35 | display: -ms-flexbox; 36 | display: flex; 37 | -webkit-box-pack: center; 38 | -ms-flex-pack: center; 39 | justify-content: center; 40 | text-align: center; 41 | } 42 | 43 | .heading_container h2 { 44 | font-weight: bold; 45 | position: relative; 46 | padding-bottom: 5px; 47 | text-transform: uppercase; 48 | } 49 | 50 | .heading_container h2::before { 51 | content: ""; 52 | position: absolute; 53 | bottom: 0; 54 | left: 50%; 55 | width: 55px; 56 | height: 5px; 57 | background-color: #ff2953; 58 | -webkit-transform: translateX(-50%); 59 | transform: translateX(-50%); 60 | } 61 | 62 | /*header section*/ 63 | .hero_area { 64 | height: 100vh; 65 | display: -webkit-box; 66 | display: -ms-flexbox; 67 | display: flex; 68 | -webkit-box-orient: vertical; 69 | -webkit-box-direction: normal; 70 | -ms-flex-direction: column; 71 | flex-direction: column; 72 | background-image: url(../images/hero-bg.jpg); 73 | background-size: cover; 74 | background-attachment: fixed; 75 | } 76 | 77 | .sub_page .hero_area { 78 | height: auto; 79 | } 80 | 81 | .sub_page .who_section.layout_padding { 82 | padding-top: 0; 83 | } 84 | 85 | .hero_area.sub_pages { 86 | height: auto; 87 | } 88 | 89 | .header_section .container-fluid { 90 | padding-right: 25px; 91 | padding-left: 25px; 92 | } 93 | 94 | .header_section .nav_container { 95 | margin: 0 auto; 96 | } 97 | 98 | .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link { 99 | margin: 10px 30px; 100 | padding: 0; 101 | padding-bottom: 3px; 102 | color: #ffffff; 103 | text-align: center; 104 | position: relative; 105 | text-transform: uppercase; 106 | font-size: 15px; 107 | } 108 | 109 | .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link::after { 110 | display: none; 111 | content: ""; 112 | position: absolute; 113 | left: 0; 114 | bottom: 0; 115 | width: 100%; 116 | height: 3px; 117 | border-radius: 5px; 118 | background-color: #ffffff; 119 | } 120 | 121 | .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item.active a::after, .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item:hover a::after { 122 | display: block; 123 | background-color: #ff2953; 124 | } 125 | 126 | a, 127 | a:hover, 128 | a:focus { 129 | text-decoration: none; 130 | } 131 | 132 | a:hover, 133 | a:focus { 134 | color: initial; 135 | } 136 | 137 | .btn, 138 | .btn:focus { 139 | outline: none !important; 140 | -webkit-box-shadow: none; 141 | box-shadow: none; 142 | } 143 | 144 | .user_option { 145 | display: -webkit-box; 146 | display: -ms-flexbox; 147 | display: flex; 148 | -webkit-box-align: center; 149 | -ms-flex-align: center; 150 | align-items: center; 151 | } 152 | 153 | .user_option a { 154 | color: #ffffff; 155 | margin: 10px 30px; 156 | } 157 | 158 | .custom_nav-container .nav_search-btn { 159 | background-image: url(../images/search-icon.png); 160 | background-size: 22px; 161 | background-repeat: no-repeat; 162 | background-position-y: 7px; 163 | width: 35px; 164 | height: 35px; 165 | padding: 0; 166 | border: none; 167 | } 168 | 169 | .navbar-brand { 170 | display: -webkit-box; 171 | display: -ms-flexbox; 172 | display: flex; 173 | -webkit-box-align: center; 174 | -ms-flex-align: center; 175 | align-items: center; 176 | position: relative; 177 | } 178 | 179 | .navbar-brand span { 180 | font-size: 22px; 181 | text-transform: uppercase; 182 | font-weight: bold; 183 | color: #ffffff; 184 | position: relative; 185 | z-index: 3; 186 | } 187 | 188 | .custom_nav-container { 189 | z-index: 99999; 190 | padding: 15px 0; 191 | } 192 | 193 | .custom_nav-container .navbar-toggler { 194 | outline: none; 195 | } 196 | 197 | .custom_nav-container .navbar-toggler .navbar-toggler-icon { 198 | background-image: url(../images/menu.png); 199 | background-size: 55px; 200 | } 201 | 202 | /*end header section*/ 203 | .slider_section { 204 | -webkit-box-flex: 1; 205 | -ms-flex: 1; 206 | flex: 1; 207 | display: -webkit-box; 208 | display: -ms-flexbox; 209 | display: flex; 210 | -webkit-box-align: center; 211 | -ms-flex-align: center; 212 | align-items: center; 213 | color: #ffffff; 214 | } 215 | 216 | .slider_section #carouselExampleIndicators { 217 | width: 100%; 218 | } 219 | 220 | .slider_section .row { 221 | -webkit-box-align: center; 222 | -ms-flex-align: center; 223 | align-items: center; 224 | } 225 | 226 | .slider_section .box { 227 | margin: 125px 0; 228 | } 229 | 230 | .slider_section .detail-box { 231 | text-align: center; 232 | } 233 | 234 | .slider_section .detail-box h1, 235 | .slider_section .detail-box h2, 236 | .slider_section .detail-box h3 { 237 | text-transform: uppercase; 238 | font-weight: bold; 239 | } 240 | 241 | .slider_section .detail-box h2 { 242 | font-size: 2.5rem; 243 | } 244 | 245 | .slider_section .detail-box h1 { 246 | font-size: 3.5rem; 247 | font-weight: bold; 248 | letter-spacing: .5rem; 249 | } 250 | 251 | .slider_section .detail-box p { 252 | margin-top: 25px; 253 | } 254 | 255 | .slider_section .detail-box a { 256 | display: inline-block; 257 | padding: 8px 35px; 258 | background-color: transparent; 259 | border: 1.5px solid #ffffff; 260 | color: #ffffff; 261 | border-radius: 0px; 262 | -webkit-transition: -webkit-transform 0.3s; 263 | transition: -webkit-transform 0.3s; 264 | transition: transform 0.3s; 265 | transition: transform 0.3s, -webkit-transform 0.3s; 266 | text-transform: uppercase; 267 | margin-top: 35px; 268 | } 269 | 270 | .slider_section .detail-box a:hover { 271 | background-color: #ffffff; 272 | color: #000000; 273 | } 274 | 275 | .slider_section #carouselExampleIndicators .carousel-indicators { 276 | position: unset; 277 | margin: 0; 278 | margin-top: 45px; 279 | -webkit-box-align: center; 280 | -ms-flex-align: center; 281 | align-items: center; 282 | } 283 | 284 | .slider_section #carouselExampleIndicators .carousel-indicators li { 285 | width: 14px; 286 | height: 14px; 287 | background-color: transparent; 288 | border: 2px solid #ffffff; 289 | border-radius: 100%; 290 | opacity: 1; 291 | } 292 | 293 | .slider_section #carouselExampleIndicators .carousel-indicators li.active { 294 | border: 4px solid #ffffff; 295 | } 296 | 297 | .us_section { 298 | background-image: url(../images/us-bg.jpg); 299 | background-size: cover; 300 | background-attachment: fixed; 301 | color: #ffffff; 302 | } 303 | 304 | .us_section .us_container { 305 | padding-top: 25px; 306 | } 307 | 308 | .us_section .us_container .box { 309 | display: -webkit-box; 310 | display: -ms-flexbox; 311 | display: flex; 312 | -webkit-box-orient: vertical; 313 | -webkit-box-direction: normal; 314 | -ms-flex-direction: column; 315 | flex-direction: column; 316 | -webkit-box-align: center; 317 | -ms-flex-align: center; 318 | align-items: center; 319 | text-align: center; 320 | margin: 25px 10px 0 10px; 321 | } 322 | 323 | .us_section .us_container .box .img-box { 324 | height: 100px; 325 | display: -webkit-box; 326 | display: -ms-flexbox; 327 | display: flex; 328 | -webkit-box-align: center; 329 | -ms-flex-align: center; 330 | align-items: center; 331 | -webkit-box-pack: center; 332 | -ms-flex-pack: center; 333 | justify-content: center; 334 | } 335 | 336 | .us_section .us_container .box .img-box img { 337 | max-width: 100%; 338 | } 339 | 340 | .us_section .us_container .box .detail-box h5 { 341 | font-weight: bold; 342 | } 343 | 344 | .heathy_section { 345 | background-image: url(../images/healthy-bg.jpg); 346 | background-size: cover; 347 | background-attachment: fixed; 348 | color: #ffffff; 349 | text-align: center; 350 | } 351 | 352 | .heathy_section h2 { 353 | font-weight: bold; 354 | } 355 | 356 | .heathy_section p { 357 | margin-top: 35px; 358 | } 359 | 360 | .heathy_section .btn-box { 361 | display: -webkit-box; 362 | display: -ms-flexbox; 363 | display: flex; 364 | -webkit-box-pack: center; 365 | -ms-flex-pack: center; 366 | justify-content: center; 367 | margin-top: 45px; 368 | } 369 | 370 | .heathy_section .btn-box a { 371 | display: inline-block; 372 | padding: 8px 35px; 373 | background-color: transparent; 374 | border: 1.5px solid #ffffff; 375 | color: #ffffff; 376 | border-radius: 0; 377 | -webkit-transition: -webkit-transform 0.3s; 378 | transition: -webkit-transform 0.3s; 379 | transition: transform 0.3s; 380 | transition: transform 0.3s, -webkit-transform 0.3s; 381 | text-transform: uppercase; 382 | } 383 | 384 | .heathy_section .btn-box a:hover { 385 | background-color: #ffffff; 386 | color: #000000; 387 | } 388 | 389 | .trainer_section { 390 | background-image: url(../images/trainer-bg.jpg); 391 | background-size: cover; 392 | background-attachment: fixed; 393 | color: #ffffff; 394 | } 395 | 396 | .trainer_section .box { 397 | margin-top: 55px; 398 | display: -webkit-box; 399 | display: -ms-flexbox; 400 | display: flex; 401 | -webkit-box-orient: vertical; 402 | -webkit-box-direction: normal; 403 | -ms-flex-direction: column; 404 | flex-direction: column; 405 | -webkit-box-align: center; 406 | -ms-flex-align: center; 407 | align-items: center; 408 | text-align: center; 409 | } 410 | 411 | .trainer_section .box .name h5 { 412 | font-weight: bold; 413 | margin-bottom: 15px; 414 | } 415 | 416 | .trainer_section .box .img-box { 417 | border-radius: 15px; 418 | overflow: hidden; 419 | } 420 | 421 | .trainer_section .box .img-box img { 422 | width: 100%; 423 | } 424 | 425 | .trainer_section .box .social_box { 426 | display: -webkit-box; 427 | display: -ms-flexbox; 428 | display: flex; 429 | -webkit-box-pack: justify; 430 | -ms-flex-pack: justify; 431 | justify-content: space-between; 432 | width: 225px; 433 | padding: 12px 45px; 434 | background-color: #ffffff; 435 | border-radius: 50px; 436 | margin-top: -25px; 437 | } 438 | 439 | .contact_section { 440 | position: relative; 441 | background-color: #27223f; 442 | color: #ffffff; 443 | } 444 | 445 | .contact_section .heading_container { 446 | -webkit-box-pack: start; 447 | -ms-flex-pack: start; 448 | justify-content: start; 449 | } 450 | 451 | .contact_section .heading_container h2::before { 452 | text-align: left; 453 | left: 0; 454 | -webkit-transform: none; 455 | transform: none; 456 | } 457 | 458 | .contact_section .row { 459 | -webkit-box-align: center; 460 | -ms-flex-align: center; 461 | align-items: center; 462 | } 463 | 464 | .contact_section .img-box img { 465 | width: 100%; 466 | } 467 | 468 | .contact_section .form_container { 469 | padding: 45px 0 45px 15px; 470 | } 471 | 472 | .contact_section input { 473 | width: 100%; 474 | border: none; 475 | background-color: #ffffff; 476 | outline: none; 477 | color: #000000; 478 | margin-top: 25px; 479 | padding: 12px; 480 | } 481 | 482 | .contact_section input::-webkit-input-placeholder { 483 | color: #2a2a2c; 484 | } 485 | 486 | .contact_section input:-ms-input-placeholder { 487 | color: #2a2a2c; 488 | } 489 | 490 | .contact_section input::-ms-input-placeholder { 491 | color: #2a2a2c; 492 | } 493 | 494 | .contact_section input::placeholder { 495 | color: #2a2a2c; 496 | } 497 | 498 | .contact_section input.message-box { 499 | padding: 45px 12px; 500 | } 501 | 502 | .contact_section button { 503 | padding: 10px 65px; 504 | outline: none; 505 | border: none; 506 | color: #ffffff; 507 | background: #ff2953; 508 | margin: 45px 0 0 auto; 509 | text-transform: uppercase; 510 | } 511 | 512 | .info_section { 513 | background-color: #252233; 514 | } 515 | 516 | .info_items { 517 | width: 70%; 518 | margin: 0 auto; 519 | display: -webkit-box; 520 | display: -ms-flexbox; 521 | display: flex; 522 | -webkit-box-pack: justify; 523 | -ms-flex-pack: justify; 524 | justify-content: space-between; 525 | } 526 | 527 | .info_items .item { 528 | width: 200px; 529 | display: -webkit-box; 530 | display: -ms-flexbox; 531 | display: flex; 532 | -webkit-box-orient: vertical; 533 | -webkit-box-direction: normal; 534 | -ms-flex-direction: column; 535 | flex-direction: column; 536 | -webkit-box-align: center; 537 | -ms-flex-align: center; 538 | align-items: center; 539 | text-align: center; 540 | } 541 | 542 | .info_items .item .img-box { 543 | width: 80px; 544 | height: 80px; 545 | border-radius: 100%; 546 | background-repeat: no-repeat; 547 | background-position: center; 548 | } 549 | 550 | .info_items .item .detail-box { 551 | margin-top: 5px; 552 | color: #fff; 553 | } 554 | 555 | .info_items { 556 | position: relative; 557 | } 558 | 559 | .info_items a { 560 | position: relative; 561 | } 562 | 563 | .info_items .item .img-box.box-1 { 564 | background-image: url(../images/location-white.png); 565 | } 566 | 567 | .info_items .item .img-box.box-2 { 568 | background-image: url(../images/telephone-white.png); 569 | } 570 | 571 | .info_items .item .img-box.box-3 { 572 | background-image: url(../images/envelope-white.png); 573 | } 574 | 575 | /* footer section*/ 576 | .footer_section { 577 | background-color: #fbfdfd; 578 | padding: 20px; 579 | font-weight: 500; 580 | } 581 | 582 | .footer_section p { 583 | color: #292929; 584 | margin: 0; 585 | text-align: center; 586 | } 587 | 588 | .footer_section a { 589 | color: #292929; 590 | } 591 | 592 | /* end footer section*/ 593 | /*# sourceMappingURL=style.css.map */ -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | Neogym 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 |
33 | 34 |
35 |
36 | 71 |
72 |
73 | 74 | 75 |
76 | 222 |
223 | 224 |
225 | 226 | 227 | 228 | 229 |
230 |
231 |
232 |

233 | Why Choose Us 234 |

235 |
236 | 237 |
238 |
239 |
240 |
241 |
242 | 243 |
244 |
245 |
246 | QUALITY EQUIPMENT 247 |
248 |

249 | ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor 250 |

251 |
252 |
253 |
254 |
255 |
256 |
257 | 258 |
259 |
260 |
261 | NUTRITION 262 |
263 |

264 | ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor 265 |

266 |
267 |
268 |
269 |
270 |
271 |
272 | 273 |
274 |
275 |
276 | HEALTHY DIET PLAN 277 |
278 |

279 | ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor 280 |

281 |
282 |
283 |
284 |
285 |
286 |
287 | 288 |
289 |
290 |
291 | SPORT TRAINING 292 |
293 |

294 | ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor 295 |

296 |
297 |
298 |
299 |
300 |
301 |
302 |
303 | 304 | 305 | 306 | 307 | 308 | 309 |
310 |
311 | 312 |
313 |
314 |
315 |

316 | HEALTHY MIND, HEALTHY BODY 317 |

318 |

319 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillumLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum 320 |

321 | 326 |
327 |
328 |
329 | 330 |
331 |
332 | 333 | 334 | 335 | 336 | 337 |
338 |
339 |
340 |

341 | Our Gym Trainers 342 |

343 |
344 |
345 |
346 |
347 |
348 |
349 | Smirth Jon 350 |
351 |
352 |
353 | 354 |
355 | 366 |
367 |
368 |
369 |
370 |
371 |
372 | Jean Doe 373 |
374 |
375 |
376 | 377 |
378 | 389 |
390 |
391 |
392 |
393 |
394 |
395 | Alex Den 396 |
397 |
398 |
399 | 400 |
401 | 412 |
413 |
414 |
415 |
416 |
417 | 418 | 419 | 420 | 421 | 422 |
423 |
424 |
425 |
426 |
427 | 428 |
429 |
430 |
431 |
432 |
433 |

434 | Contact Us 435 |

436 |
437 |
438 |
439 | 440 |
441 |
442 | 443 |
444 |
445 | 446 |
447 |
448 | 449 |
450 |
451 | 454 |
455 |
456 |
457 |
458 |
459 |
460 |
461 | 462 | 463 | 464 | 465 |
466 |
467 | 505 |
506 |
507 | 508 | 509 | 510 | 511 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | -------------------------------------------------------------------------------- /js/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */ 2 | !function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;nx",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0