├── LICENSE
├── README.md
├── assets
├── css
│ ├── main.css
│ ├── variables-blue.css
│ ├── variables-green.css
│ ├── variables-orange.css
│ ├── variables-pink.css
│ ├── variables-purple.css
│ ├── variables-red.css
│ └── variables.css
├── img
│ ├── about-bg.png
│ ├── about.JPG
│ ├── apple-touch-icon.png
│ ├── favicon.png
│ ├── hero-bg.png
│ ├── onfocus-content-bg.jpg
│ ├── pricing-bg.jpg
│ ├── services-3.jpg
│ └── services.JPG
├── js
│ └── main.js
└── vendor
│ ├── aos
│ ├── aos.css
│ └── aos.js
│ ├── bootstrap-icons
│ ├── bootstrap-icons.css
│ ├── bootstrap-icons.json
│ ├── fonts
│ │ ├── bootstrap-icons.woff
│ │ └── bootstrap-icons.woff2
│ └── index.html
│ ├── bootstrap
│ ├── css
│ │ ├── bootstrap-grid.css
│ │ ├── bootstrap-grid.css.map
│ │ ├── bootstrap-grid.min.css
│ │ ├── bootstrap-grid.min.css.map
│ │ ├── bootstrap-grid.rtl.css
│ │ ├── bootstrap-grid.rtl.css.map
│ │ ├── bootstrap-grid.rtl.min.css
│ │ ├── bootstrap-grid.rtl.min.css.map
│ │ ├── bootstrap-reboot.css
│ │ ├── bootstrap-reboot.css.map
│ │ ├── bootstrap-reboot.min.css
│ │ ├── bootstrap-reboot.min.css.map
│ │ ├── bootstrap-reboot.rtl.css
│ │ ├── bootstrap-reboot.rtl.css.map
│ │ ├── bootstrap-reboot.rtl.min.css
│ │ ├── bootstrap-reboot.rtl.min.css.map
│ │ ├── bootstrap-utilities.css
│ │ ├── bootstrap-utilities.css.map
│ │ ├── bootstrap-utilities.min.css
│ │ ├── bootstrap-utilities.min.css.map
│ │ ├── bootstrap-utilities.rtl.css
│ │ ├── bootstrap-utilities.rtl.css.map
│ │ ├── bootstrap-utilities.rtl.min.css
│ │ ├── bootstrap-utilities.rtl.min.css.map
│ │ ├── bootstrap.css
│ │ ├── bootstrap.css.map
│ │ ├── bootstrap.min.css
│ │ ├── bootstrap.min.css.map
│ │ ├── bootstrap.rtl.css
│ │ ├── bootstrap.rtl.css.map
│ │ ├── bootstrap.rtl.min.css
│ │ └── bootstrap.rtl.min.css.map
│ └── js
│ │ ├── bootstrap.bundle.js
│ │ ├── bootstrap.bundle.js.map
│ │ ├── bootstrap.bundle.min.js
│ │ ├── bootstrap.bundle.min.js.map
│ │ ├── bootstrap.esm.js
│ │ ├── bootstrap.esm.js.map
│ │ ├── bootstrap.esm.min.js
│ │ ├── bootstrap.esm.min.js.map
│ │ ├── bootstrap.js
│ │ ├── bootstrap.js.map
│ │ ├── bootstrap.min.js
│ │ └── bootstrap.min.js.map
│ ├── glightbox
│ ├── css
│ │ ├── glightbox.css
│ │ └── glightbox.min.css
│ └── js
│ │ ├── glightbox.js
│ │ └── glightbox.min.js
│ ├── isotope-layout
│ ├── isotope.pkgd.js
│ └── isotope.pkgd.min.js
│ ├── php-email-form
│ └── validate.js
│ └── swiper
│ ├── swiper-bundle.min.css
│ └── swiper-bundle.min.js
├── composer.json
├── index.html
└── index.php
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "[]"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright [yyyy] [name of copyright owner]
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # shecanhack
2 | shecanhack rwanda site
3 |
--------------------------------------------------------------------------------
/assets/css/variables-blue.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Template Name: HeroBiz
3 | * File: variables-blue.css
4 | * Description: Easily customize colors, typography, and other repetitive properties used in the template main stylesheet file main.css
5 | *
6 | * Template URL: https://bootstrapmade.com/herobiz-bootstrap-business-template/
7 | * Author: BootstrapMade.com
8 | * License: https://bootstrapmade.com/license/
9 | *
10 | * Contents:
11 | * 1. HeroBiz template variables
12 | * 2. Override default Bootstrap variables
13 | * 3. Set color and background class names
14 | *
15 | * Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
16 | */
17 |
18 | /*--------------------------------------------------------------
19 | # 1. HeroBiz template variables
20 | --------------------------------------------------------------*/
21 | :root {
22 |
23 | /* Fonts */
24 | --font-default: 'Open Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
25 | --font-primary: 'Source Sans Pro', sans-serif;
26 | --font-secondary: 'Poppins', sans-serif;
27 |
28 | /* Colors */
29 | /* The *-rgb color names are simply the RGB converted value of the corresponding color for use in the rgba() function */
30 |
31 | /* Default text color */
32 | --color-default: #1a1f24;
33 | --color-default-rgb: 26, 31, 36;
34 |
35 | /* Defult links color */
36 | --color-links: #3279fc;
37 | --color-links-hover: #4797ff;
38 |
39 | /* Primay colors */
40 | --color-primary: #3279fc;
41 | --color-primary-light: #4797ff;
42 | --color-primary-dark: #1c61e2;
43 |
44 | --color-primary-rgb: 50, 121, 252;
45 | --color-primary-light-rgb: 71, 151, 255;
46 | --color-primary-dark-rgb: 28, 97, 226;
47 |
48 | /* Secondary colors */
49 | --color-secondary: #5670a0;
50 | --color-secondary-light: #6e87b6;
51 | --color-secondary-dark: #3b5380;
52 |
53 | --color-secondary-rgb: 86, 112, 160;
54 | --color-secondary-light-rgb: 110, 135, 182;
55 | --color-secondary-dark-rgb: 59, 83, 128;
56 |
57 | /* General colors */
58 | --color-blue: #0d6efd;
59 | --color-blue-rgb: 13, 110, 253;
60 |
61 | --color-indigo: #6610f2;
62 | --color-indigo-rgb: 102, 16, 242;
63 |
64 | --color-purple: #6f42c1;
65 | --color-purple-rgb: 111, 66, 193;
66 |
67 | --color-pink: #f3268c;
68 | --color-pink-rgb: 243, 38, 140;
69 |
70 | --color-red: #df1529;
71 | --color-red-rgb: 223, 21, 4;
72 |
73 | --color-orange: #fd7e14;
74 | --color-orange-rgb: 253, 126, 20;
75 |
76 | --color-yellow: #ffc107;
77 | --color-yellow-rgb: 255, 193, 7;
78 |
79 | --color-green: #059652;
80 | --color-green-rgb: 5, 150, 82;
81 |
82 | --color-teal: #20c997;
83 | --color-teal-rgb: 32, 201, 151;
84 |
85 | --color-cyan: #0dcaf0;
86 | --color-cyan-rgb: 13, 202, 240;
87 |
88 | --color-white: #ffffff;
89 | --color-white-rgb: 255, 255, 255;
90 |
91 | --color-gray: #6c757d;
92 | --color-gray-rgb: 108, 117, 125;
93 |
94 | --color-black: #000000;
95 | --color-black-rgb: 0, 0, 0;
96 |
97 | }
98 |
99 | /*--------------------------------------------------------------
100 | # 2. Override default Bootstrap variables
101 | --------------------------------------------------------------*/
102 | :root {
103 |
104 | --bs-blue: var(--color-blue);
105 | --bs-indigo: var(--color-indigo);
106 | --bs-purple: var(--color-purple);
107 | --bs-pink: var(--color-pink);
108 | --bs-red: var(--color-red);
109 | --bs-orange: var(--color-orange);
110 | --bs-yellow: var(--color-yellow);
111 | --bs-green: var(--color-green);
112 | --bs-teal: var(--color-teal);
113 | --bs-cyan: var(--color-cyan);
114 | --bs-white: var(--color-white);
115 | --bs-gray: var(--color-gray);
116 | --bs-gray-dark: #343a40;
117 | --bs-gray-100: #f8f9fa;
118 | --bs-gray-200: #e9ecef;
119 | --bs-gray-300: #dee2e6;
120 | --bs-gray-400: #ced4da;
121 | --bs-gray-500: #adb5bd;
122 | --bs-gray-600: #6c757d;
123 | --bs-gray-700: #495057;
124 | --bs-gray-800: #343a40;
125 | --bs-gray-900: #212529;
126 | --bs-primary: var(--color-blue);
127 | --bs-secondary: var(--color-blue);
128 | --bs-success: #198754;
129 | --bs-info: #0dcaf0;
130 | --bs-warning: #ffc107;
131 | --bs-danger: #dc3545;
132 | --bs-light: #f8f9fa;
133 | --bs-dark: #212529;
134 | --bs-primary-rgb: var(--color-primary-rgb);
135 | --bs-secondary-rgb: var(--color-secondary-rgb);
136 | --bs-success-rgb: 25, 135, 84;
137 | --bs-info-rgb: 13, 202, 240;
138 | --bs-warning-rgb: 255, 193, 7;
139 | --bs-danger-rgb: 220, 53, 69;
140 | --bs-light-rgb: 248, 249, 250;
141 | --bs-dark-rgb: 33, 37, 41;
142 | --bs-white-rgb: var(--color-white-rgb);
143 | --bs-black-rgb: var(--color-black-rgb);
144 | --bs-body-color-rgb: var(--color-default-rgb);
145 | --bs-body-bg-rgb: 255, 255, 255;
146 | --bs-font-sans-serif: var(--font-default);
147 | --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
148 | --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
149 | --bs-body-font-family: var(--font-default);
150 | --bs-body-font-size: 1rem;
151 | --bs-body-font-weight: 400;
152 | --bs-body-line-height: 1.5;
153 | --bs-body-color: var(--color-default);
154 | --bs-body-bg: #fff;
155 |
156 | }
157 |
158 | /*--------------------------------------------------------------
159 | # 3. Set color and background class names
160 | --------------------------------------------------------------*/
161 | /* Fonts */
162 | .font-default { font-family: var(--font-default) !important; }
163 | .font-primary { font-family: var(--font-primary) !important;}
164 | .font-secondary { font-family: var(--font-secondary) !important; }
165 |
166 | /* Text Colors */
167 | .color-default { color: var(--color-default) !important; }
168 | .color-links { color: var(--color-links) !important; }
169 | .color-links:hover { color: var(--color-links-hover) !important; }
170 | .color-primary { color: var(--color-primary) !important; }
171 | .color-primary-light { color: var(--color-primary-light) !important; }
172 | .color-primary-dark { color: var(--color-primary-dark) !important; }
173 | .color-secondary { color: var(--color-secondary) !important; }
174 | .color-secondary-light { color: var(--color-secondary-light) !important; }
175 | .color-secondary-dark { color: var(--color-secondary-dark) !important; }
176 | .color-blue { color: var(--color-blue) !important; }
177 | .color-indigo { color: var(--color-indigo) !important; }
178 | .color-purple { color: var(--color-purple) !important; }
179 | .color-pink { color: var(--color-pink) !important; }
180 | .color-red { color: var(--color-red) !important; }
181 | .color-orange { color: var(--color-orange) !important; }
182 | .color-yellow { color: var(--color-yellow) !important; }
183 | .color-green { color: var(--color-green) !important; }
184 | .color-teal { color: var(--color-teal) !important; }
185 | .color-cyan { color: var(--color-cyan) !important; }
186 | .color-white { color: var(--color-white) !important; }
187 | .color-gray { color: var(--color-gray) !important; }
188 | .color-black { color: var(--color-black) !important; }
189 |
190 | /* Background Colors */
191 | .bg-default { background-color: var(--color-default) !important; }
192 | .bg-primary { background-color: var(--color-primary) !important; }
193 | .bg-primary-light { background-color: var(--color-primary-light) !important; }
194 | .bg-primary-dark { background-color: var(--color-primary-dark) !important; }
195 | .bg-secondary { background-color: var(--color-secondary) !important; }
196 | .bg-secondary-light { background-color: var(--color-secondary-light) !important; }
197 | .bg-secondary-dark { background-color: var(--color-secondary-dark) !important; }
198 | .bg-blue { background-color: var(--color-blue) !important; }
199 | .bg-indigo { background-color: var(--color-indigo) !important; }
200 | .bg-purple { background-color: var(--color-purple) !important; }
201 | .bg-pink { background-color: var(--color-pink) !important; }
202 | .bg-red { background-color: var(--color-red) !important; }
203 | .bg-orange { background-color: var(--color-orange) !important; }
204 | .bg-yellow { background-color: var(--color-yellow) !important; }
205 | .bg-green { background-color: var(--color-green) !important; }
206 | .bg-teal { background-color: var(--color-teal) !important; }
207 | .bg-cyan { background-color: var(--color-cyan) !important; }
208 | .bg-white { background-color: var(--color-white) !important; }
209 | .bg-gray { background-color: var(--color-gray) !important; }
210 | .bg-black { background-color: var(--color-black) !important; }
--------------------------------------------------------------------------------
/assets/css/variables-green.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Template Name: HeroBiz
3 | * File: variables-green.css
4 | * Description: Easily customize colors, typography, and other repetitive properties used in the template main stylesheet file main.css
5 | *
6 | * Template URL: https://bootstrapmade.com/herobiz-bootstrap-business-template/
7 | * Author: BootstrapMade.com
8 | * License: https://bootstrapmade.com/license/
9 | *
10 | * Contents:
11 | * 1. HeroBiz template variables
12 | * 2. Override default Bootstrap variables
13 | * 3. Set color and background class names
14 | *
15 | * Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
16 | */
17 |
18 | /*--------------------------------------------------------------
19 | # 1. HeroBiz template variables
20 | --------------------------------------------------------------*/
21 | :root {
22 |
23 | /* Fonts */
24 | --font-default: 'Open Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
25 | --font-primary: 'Source Sans Pro', sans-serif;
26 | --font-secondary: 'Poppins', sans-serif;
27 |
28 | /* Colors */
29 | /* The *-rgb color names are simply the RGB converted value of the corresponding color for use in the rgba() function */
30 |
31 | /* Default text color */
32 | --color-default: #1a1f24;
33 | --color-default-rgb: 26, 31, 36;
34 |
35 | /* Defult links color */
36 | --color-links: #05c46b;
37 | --color-links-hover: #1de789;
38 |
39 | /* Primay colors */
40 | --color-primary: #05c46b;
41 | --color-primary-light: #1de789;
42 | --color-primary-dark: #01a156;
43 |
44 | --color-primary-rgb: 5, 196, 107;
45 | --color-primary-light-rgb: 29, 231, 137;
46 | --color-primary-dark-rgb: 1, 161, 86;
47 |
48 | /* Secondary colors */
49 | --color-secondary: #485664;
50 | --color-secondary-light: #8f9fae;
51 | --color-secondary-dark: #3a4753;
52 |
53 | --color-secondary-rgb: 72, 86, 100;
54 | --color-secondary-light-rgb: 143, 159, 174;
55 | --color-secondary-dark-rgb: 58, 71, 83;
56 |
57 | /* General colors */
58 | --color-blue: #0d6efd;
59 | --color-blue-rgb: 13, 110, 253;
60 |
61 | --color-indigo: #6610f2;
62 | --color-indigo-rgb: 102, 16, 242;
63 |
64 | --color-purple: #6f42c1;
65 | --color-purple-rgb: 111, 66, 193;
66 |
67 | --color-pink: #f3268c;
68 | --color-pink-rgb: 243, 38, 140;
69 |
70 | --color-red: #df1529;
71 | --color-red-rgb: 223, 21, 4;
72 |
73 | --color-orange: #fd7e14;
74 | --color-orange-rgb: 253, 126, 20;
75 |
76 | --color-yellow: #ffc107;
77 | --color-yellow-rgb: 255, 193, 7;
78 |
79 | --color-green: #059652;
80 | --color-green-rgb: 5, 150, 82;
81 |
82 | --color-teal: #20c997;
83 | --color-teal-rgb: 32, 201, 151;
84 |
85 | --color-cyan: #0dcaf0;
86 | --color-cyan-rgb: 13, 202, 240;
87 |
88 | --color-white: #ffffff;
89 | --color-white-rgb: 255, 255, 255;
90 |
91 | --color-gray: #6c757d;
92 | --color-gray-rgb: 108, 117, 125;
93 |
94 | --color-black: #000000;
95 | --color-black-rgb: 0, 0, 0;
96 |
97 | }
98 |
99 | /*--------------------------------------------------------------
100 | # 2. Override default Bootstrap variables
101 | --------------------------------------------------------------*/
102 | :root {
103 |
104 | --bs-blue: var(--color-blue);
105 | --bs-indigo: var(--color-indigo);
106 | --bs-purple: var(--color-purple);
107 | --bs-pink: var(--color-pink);
108 | --bs-red: var(--color-red);
109 | --bs-orange: var(--color-orange);
110 | --bs-yellow: var(--color-yellow);
111 | --bs-green: var(--color-green);
112 | --bs-teal: var(--color-teal);
113 | --bs-cyan: var(--color-cyan);
114 | --bs-white: var(--color-white);
115 | --bs-gray: var(--color-gray);
116 | --bs-gray-dark: #343a40;
117 | --bs-gray-100: #f8f9fa;
118 | --bs-gray-200: #e9ecef;
119 | --bs-gray-300: #dee2e6;
120 | --bs-gray-400: #ced4da;
121 | --bs-gray-500: #adb5bd;
122 | --bs-gray-600: #6c757d;
123 | --bs-gray-700: #495057;
124 | --bs-gray-800: #343a40;
125 | --bs-gray-900: #212529;
126 | --bs-primary: var(--color-blue);
127 | --bs-secondary: var(--color-blue);
128 | --bs-success: #198754;
129 | --bs-info: #0dcaf0;
130 | --bs-warning: #ffc107;
131 | --bs-danger: #dc3545;
132 | --bs-light: #f8f9fa;
133 | --bs-dark: #212529;
134 | --bs-primary-rgb: var(--color-primary-rgb);
135 | --bs-secondary-rgb: var(--color-secondary-rgb);
136 | --bs-success-rgb: 25, 135, 84;
137 | --bs-info-rgb: 13, 202, 240;
138 | --bs-warning-rgb: 255, 193, 7;
139 | --bs-danger-rgb: 220, 53, 69;
140 | --bs-light-rgb: 248, 249, 250;
141 | --bs-dark-rgb: 33, 37, 41;
142 | --bs-white-rgb: var(--color-white-rgb);
143 | --bs-black-rgb: var(--color-black-rgb);
144 | --bs-body-color-rgb: var(--color-default-rgb);
145 | --bs-body-bg-rgb: 255, 255, 255;
146 | --bs-font-sans-serif: var(--font-default);
147 | --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
148 | --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
149 | --bs-body-font-family: var(--font-default);
150 | --bs-body-font-size: 1rem;
151 | --bs-body-font-weight: 400;
152 | --bs-body-line-height: 1.5;
153 | --bs-body-color: var(--color-default);
154 | --bs-body-bg: #fff;
155 |
156 | }
157 |
158 | /*--------------------------------------------------------------
159 | # 3. Set color and background class names
160 | --------------------------------------------------------------*/
161 | /* Fonts */
162 | .font-default { font-family: var(--font-default) !important; }
163 | .font-primary { font-family: var(--font-primary) !important;}
164 | .font-secondary { font-family: var(--font-secondary) !important; }
165 |
166 | /* Text Colors */
167 | .color-default { color: var(--color-default) !important; }
168 | .color-links { color: var(--color-links) !important; }
169 | .color-links:hover { color: var(--color-links-hover) !important; }
170 | .color-primary { color: var(--color-primary) !important; }
171 | .color-primary-light { color: var(--color-primary-light) !important; }
172 | .color-primary-dark { color: var(--color-primary-dark) !important; }
173 | .color-secondary { color: var(--color-secondary) !important; }
174 | .color-secondary-light { color: var(--color-secondary-light) !important; }
175 | .color-secondary-dark { color: var(--color-secondary-dark) !important; }
176 | .color-blue { color: var(--color-blue) !important; }
177 | .color-indigo { color: var(--color-indigo) !important; }
178 | .color-purple { color: var(--color-purple) !important; }
179 | .color-pink { color: var(--color-pink) !important; }
180 | .color-red { color: var(--color-red) !important; }
181 | .color-orange { color: var(--color-orange) !important; }
182 | .color-yellow { color: var(--color-yellow) !important; }
183 | .color-green { color: var(--color-green) !important; }
184 | .color-teal { color: var(--color-teal) !important; }
185 | .color-cyan { color: var(--color-cyan) !important; }
186 | .color-white { color: var(--color-white) !important; }
187 | .color-gray { color: var(--color-gray) !important; }
188 | .color-black { color: var(--color-black) !important; }
189 |
190 | /* Background Colors */
191 | .bg-default { background-color: var(--color-default) !important; }
192 | .bg-primary { background-color: var(--color-primary) !important; }
193 | .bg-primary-light { background-color: var(--color-primary-light) !important; }
194 | .bg-primary-dark { background-color: var(--color-primary-dark) !important; }
195 | .bg-secondary { background-color: var(--color-secondary) !important; }
196 | .bg-secondary-light { background-color: var(--color-secondary-light) !important; }
197 | .bg-secondary-dark { background-color: var(--color-secondary-dark) !important; }
198 | .bg-blue { background-color: var(--color-blue) !important; }
199 | .bg-indigo { background-color: var(--color-indigo) !important; }
200 | .bg-purple { background-color: var(--color-purple) !important; }
201 | .bg-pink { background-color: var(--color-pink) !important; }
202 | .bg-red { background-color: var(--color-red) !important; }
203 | .bg-orange { background-color: var(--color-orange) !important; }
204 | .bg-yellow { background-color: var(--color-yellow) !important; }
205 | .bg-green { background-color: var(--color-green) !important; }
206 | .bg-teal { background-color: var(--color-teal) !important; }
207 | .bg-cyan { background-color: var(--color-cyan) !important; }
208 | .bg-white { background-color: var(--color-white) !important; }
209 | .bg-gray { background-color: var(--color-gray) !important; }
210 | .bg-black { background-color: var(--color-black) !important; }
--------------------------------------------------------------------------------
/assets/css/variables-orange.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Template Name: HeroBiz
3 | * File: variables-orange.css
4 | * Description: Easily customize colors, typography, and other repetitive properties used in the template main stylesheet file main.css
5 | *
6 | * Template URL: https://bootstrapmade.com/herobiz-bootstrap-business-template/
7 | * Author: BootstrapMade.com
8 | * License: https://bootstrapmade.com/license/
9 | *
10 | * Contents:
11 | * 1. HeroBiz template variables
12 | * 2. Override default Bootstrap variables
13 | * 3. Set color and background class names
14 | *
15 | * Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
16 | */
17 |
18 | /*--------------------------------------------------------------
19 | # 1. HeroBiz template variables
20 | --------------------------------------------------------------*/
21 | :root {
22 |
23 | /* Fonts */
24 | --font-default: 'Open Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
25 | --font-primary: 'Source Sans Pro', sans-serif;
26 | --font-secondary: 'Poppins', sans-serif;
27 |
28 | /* Colors */
29 | /* The *-rgb color names are simply the RGB converted value of the corresponding color for use in the rgba() function */
30 |
31 | /* Default text color */
32 | --color-default: #1a1f24;
33 | --color-default-rgb: 26, 31, 36;
34 |
35 | /* Defult links color */
36 | --color-links: #f97233;
37 | --color-links-hover: #fa9160;
38 |
39 | /* Primay colors */
40 | --color-primary: #f97233;
41 | --color-primary-light: #fb9b6e;
42 | --color-primary-dark: #e54d07;
43 |
44 | --color-primary-rgb: 249, 114, 51;
45 | --color-primary-light-rgb: 251, 155, 110;
46 | --color-primary-dark-rgb: 229, 77, 7;
47 |
48 | /* Secondary colors */
49 | --color-secondary: #485664;
50 | --color-secondary-light: #8f9fae;
51 | --color-secondary-dark: #3a4753;
52 |
53 | --color-secondary-rgb: 72, 86, 100;
54 | --color-secondary-light-rgb: 143, 159, 174;
55 | --color-secondary-dark-rgb: 58, 71, 83;
56 |
57 | /* General colors */
58 | --color-blue: #0d6efd;
59 | --color-blue-rgb: 13, 110, 253;
60 |
61 | --color-indigo: #6610f2;
62 | --color-indigo-rgb: 102, 16, 242;
63 |
64 | --color-purple: #6f42c1;
65 | --color-purple-rgb: 111, 66, 193;
66 |
67 | --color-pink: #f3268c;
68 | --color-pink-rgb: 243, 38, 140;
69 |
70 | --color-red: #df1529;
71 | --color-red-rgb: 223, 21, 4;
72 |
73 | --color-orange: #fd7e14;
74 | --color-orange-rgb: 253, 126, 20;
75 |
76 | --color-yellow: #ffc107;
77 | --color-yellow-rgb: 255, 193, 7;
78 |
79 | --color-green: #059652;
80 | --color-green-rgb: 5, 150, 82;
81 |
82 | --color-teal: #20c997;
83 | --color-teal-rgb: 32, 201, 151;
84 |
85 | --color-cyan: #0dcaf0;
86 | --color-cyan-rgb: 13, 202, 240;
87 |
88 | --color-white: #ffffff;
89 | --color-white-rgb: 255, 255, 255;
90 |
91 | --color-gray: #6c757d;
92 | --color-gray-rgb: 108, 117, 125;
93 |
94 | --color-black: #000000;
95 | --color-black-rgb: 0, 0, 0;
96 |
97 | }
98 |
99 | /*--------------------------------------------------------------
100 | # 2. Override default Bootstrap variables
101 | --------------------------------------------------------------*/
102 | :root {
103 |
104 | --bs-blue: var(--color-blue);
105 | --bs-indigo: var(--color-indigo);
106 | --bs-purple: var(--color-purple);
107 | --bs-pink: var(--color-pink);
108 | --bs-red: var(--color-red);
109 | --bs-orange: var(--color-orange);
110 | --bs-yellow: var(--color-yellow);
111 | --bs-green: var(--color-green);
112 | --bs-teal: var(--color-teal);
113 | --bs-cyan: var(--color-cyan);
114 | --bs-white: var(--color-white);
115 | --bs-gray: var(--color-gray);
116 | --bs-gray-dark: #343a40;
117 | --bs-gray-100: #f8f9fa;
118 | --bs-gray-200: #e9ecef;
119 | --bs-gray-300: #dee2e6;
120 | --bs-gray-400: #ced4da;
121 | --bs-gray-500: #adb5bd;
122 | --bs-gray-600: #6c757d;
123 | --bs-gray-700: #495057;
124 | --bs-gray-800: #343a40;
125 | --bs-gray-900: #212529;
126 | --bs-primary: var(--color-blue);
127 | --bs-secondary: var(--color-blue);
128 | --bs-success: #198754;
129 | --bs-info: #0dcaf0;
130 | --bs-warning: #ffc107;
131 | --bs-danger: #dc3545;
132 | --bs-light: #f8f9fa;
133 | --bs-dark: #212529;
134 | --bs-primary-rgb: var(--color-primary-rgb);
135 | --bs-secondary-rgb: var(--color-secondary-rgb);
136 | --bs-success-rgb: 25, 135, 84;
137 | --bs-info-rgb: 13, 202, 240;
138 | --bs-warning-rgb: 255, 193, 7;
139 | --bs-danger-rgb: 220, 53, 69;
140 | --bs-light-rgb: 248, 249, 250;
141 | --bs-dark-rgb: 33, 37, 41;
142 | --bs-white-rgb: var(--color-white-rgb);
143 | --bs-black-rgb: var(--color-black-rgb);
144 | --bs-body-color-rgb: var(--color-default-rgb);
145 | --bs-body-bg-rgb: 255, 255, 255;
146 | --bs-font-sans-serif: var(--font-default);
147 | --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
148 | --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
149 | --bs-body-font-family: var(--font-default);
150 | --bs-body-font-size: 1rem;
151 | --bs-body-font-weight: 400;
152 | --bs-body-line-height: 1.5;
153 | --bs-body-color: var(--color-default);
154 | --bs-body-bg: #fff;
155 |
156 | }
157 |
158 | /*--------------------------------------------------------------
159 | # 3. Set color and background class names
160 | --------------------------------------------------------------*/
161 | /* Fonts */
162 | .font-default { font-family: var(--font-default) !important; }
163 | .font-primary { font-family: var(--font-primary) !important;}
164 | .font-secondary { font-family: var(--font-secondary) !important; }
165 |
166 | /* Text Colors */
167 | .color-default { color: var(--color-default) !important; }
168 | .color-links { color: var(--color-links) !important; }
169 | .color-links:hover { color: var(--color-links-hover) !important; }
170 | .color-primary { color: var(--color-primary) !important; }
171 | .color-primary-light { color: var(--color-primary-light) !important; }
172 | .color-primary-dark { color: var(--color-primary-dark) !important; }
173 | .color-secondary { color: var(--color-secondary) !important; }
174 | .color-secondary-light { color: var(--color-secondary-light) !important; }
175 | .color-secondary-dark { color: var(--color-secondary-dark) !important; }
176 | .color-blue { color: var(--color-blue) !important; }
177 | .color-indigo { color: var(--color-indigo) !important; }
178 | .color-purple { color: var(--color-purple) !important; }
179 | .color-pink { color: var(--color-pink) !important; }
180 | .color-red { color: var(--color-red) !important; }
181 | .color-orange { color: var(--color-orange) !important; }
182 | .color-yellow { color: var(--color-yellow) !important; }
183 | .color-green { color: var(--color-green) !important; }
184 | .color-teal { color: var(--color-teal) !important; }
185 | .color-cyan { color: var(--color-cyan) !important; }
186 | .color-white { color: var(--color-white) !important; }
187 | .color-gray { color: var(--color-gray) !important; }
188 | .color-black { color: var(--color-black) !important; }
189 |
190 | /* Background Colors */
191 | .bg-default { background-color: var(--color-default) !important; }
192 | .bg-primary { background-color: var(--color-primary) !important; }
193 | .bg-primary-light { background-color: var(--color-primary-light) !important; }
194 | .bg-primary-dark { background-color: var(--color-primary-dark) !important; }
195 | .bg-secondary { background-color: var(--color-secondary) !important; }
196 | .bg-secondary-light { background-color: var(--color-secondary-light) !important; }
197 | .bg-secondary-dark { background-color: var(--color-secondary-dark) !important; }
198 | .bg-blue { background-color: var(--color-blue) !important; }
199 | .bg-indigo { background-color: var(--color-indigo) !important; }
200 | .bg-purple { background-color: var(--color-purple) !important; }
201 | .bg-pink { background-color: var(--color-pink) !important; }
202 | .bg-red { background-color: var(--color-red) !important; }
203 | .bg-orange { background-color: var(--color-orange) !important; }
204 | .bg-yellow { background-color: var(--color-yellow) !important; }
205 | .bg-green { background-color: var(--color-green) !important; }
206 | .bg-teal { background-color: var(--color-teal) !important; }
207 | .bg-cyan { background-color: var(--color-cyan) !important; }
208 | .bg-white { background-color: var(--color-white) !important; }
209 | .bg-gray { background-color: var(--color-gray) !important; }
210 | .bg-black { background-color: var(--color-black) !important; }
--------------------------------------------------------------------------------
/assets/css/variables-pink.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Template Name: HeroBiz
3 | * File: variables-pink.css
4 | * Description: Easily customize colors, typography, and other repetitive properties used in the template main stylesheet file main.css
5 | *
6 | * Template URL: https://bootstrapmade.com/herobiz-bootstrap-business-template/
7 | * Author: BootstrapMade.com
8 | * License: https://bootstrapmade.com/license/
9 | *
10 | * Contents:
11 | * 1. HeroBiz template variables
12 | * 2. Override default Bootstrap variables
13 | * 3. Set color and background class names
14 | *
15 | * Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
16 | */
17 |
18 | /*--------------------------------------------------------------
19 | # 1. HeroBiz template variables
20 | --------------------------------------------------------------*/
21 | :root {
22 |
23 | /* Fonts */
24 | --font-default: 'Open Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
25 | --font-primary: 'Source Sans Pro', sans-serif;
26 | --font-secondary: 'Poppins', sans-serif;
27 |
28 | /* Colors */
29 | /* The *-rgb color names are simply the RGB converted value of the corresponding color for use in the rgba() function */
30 |
31 | /* Default text color */
32 | --color-default: #1a1f24;
33 | --color-default-rgb: 26, 31, 36;
34 |
35 | /* Defult links color */
36 | --color-links: #f3268c;
37 | --color-links-hover: #ff83c1;
38 |
39 | /* Primay colors */
40 | --color-primary: #f3268c;
41 | --color-primary-light: #ff83c1;
42 | --color-primary-dark: #cc1571;
43 |
44 | --color-primary-rgb: 243, 38, 140;
45 | --color-primary-light-rgb: 255, 131, 193;
46 | --color-primary-dark-rgb: 204, 21, 113;
47 |
48 | /* Secondary colors */
49 | --color-secondary: #61768b;
50 | --color-secondary-light: #778da3;
51 | --color-secondary-dark: #4e6377;
52 |
53 | --color-secondary-rgb: 97, 118, 139;
54 | --color-secondary-light-rgb: 119, 141, 163;
55 | --color-secondary-dark-rgb: 78, 99, 119;
56 |
57 | /* General colors */
58 | --color-blue: #0d6efd;
59 | --color-blue-rgb: 13, 110, 253;
60 |
61 | --color-indigo: #6610f2;
62 | --color-indigo-rgb: 102, 16, 242;
63 |
64 | --color-purple: #6f42c1;
65 | --color-purple-rgb: 111, 66, 193;
66 |
67 | --color-pink: #f3268c;
68 | --color-pink-rgb: 243, 38, 140;
69 |
70 | --color-red: #df1529;
71 | --color-red-rgb: 223, 21, 4;
72 |
73 | --color-orange: #fd7e14;
74 | --color-orange-rgb: 253, 126, 20;
75 |
76 | --color-yellow: #ffc107;
77 | --color-yellow-rgb: 255, 193, 7;
78 |
79 | --color-green: #059652;
80 | --color-green-rgb: 5, 150, 82;
81 |
82 | --color-teal: #20c997;
83 | --color-teal-rgb: 32, 201, 151;
84 |
85 | --color-cyan: #0dcaf0;
86 | --color-cyan-rgb: 13, 202, 240;
87 |
88 | --color-white: #ffffff;
89 | --color-white-rgb: 255, 255, 255;
90 |
91 | --color-gray: #6c757d;
92 | --color-gray-rgb: 108, 117, 125;
93 |
94 | --color-black: #000000;
95 | --color-black-rgb: 0, 0, 0;
96 |
97 | }
98 |
99 | /*--------------------------------------------------------------
100 | # 2. Override default Bootstrap variables
101 | --------------------------------------------------------------*/
102 | :root {
103 |
104 | --bs-blue: var(--color-blue);
105 | --bs-indigo: var(--color-indigo);
106 | --bs-purple: var(--color-purple);
107 | --bs-pink: var(--color-pink);
108 | --bs-red: var(--color-red);
109 | --bs-orange: var(--color-orange);
110 | --bs-yellow: var(--color-yellow);
111 | --bs-green: var(--color-green);
112 | --bs-teal: var(--color-teal);
113 | --bs-cyan: var(--color-cyan);
114 | --bs-white: var(--color-white);
115 | --bs-gray: var(--color-gray);
116 | --bs-gray-dark: #343a40;
117 | --bs-gray-100: #f8f9fa;
118 | --bs-gray-200: #e9ecef;
119 | --bs-gray-300: #dee2e6;
120 | --bs-gray-400: #ced4da;
121 | --bs-gray-500: #adb5bd;
122 | --bs-gray-600: #6c757d;
123 | --bs-gray-700: #495057;
124 | --bs-gray-800: #343a40;
125 | --bs-gray-900: #212529;
126 | --bs-primary: var(--color-blue);
127 | --bs-secondary: var(--color-blue);
128 | --bs-success: #198754;
129 | --bs-info: #0dcaf0;
130 | --bs-warning: #ffc107;
131 | --bs-danger: #dc3545;
132 | --bs-light: #f8f9fa;
133 | --bs-dark: #212529;
134 | --bs-primary-rgb: var(--color-primary-rgb);
135 | --bs-secondary-rgb: var(--color-secondary-rgb);
136 | --bs-success-rgb: 25, 135, 84;
137 | --bs-info-rgb: 13, 202, 240;
138 | --bs-warning-rgb: 255, 193, 7;
139 | --bs-danger-rgb: 220, 53, 69;
140 | --bs-light-rgb: 248, 249, 250;
141 | --bs-dark-rgb: 33, 37, 41;
142 | --bs-white-rgb: var(--color-white-rgb);
143 | --bs-black-rgb: var(--color-black-rgb);
144 | --bs-body-color-rgb: var(--color-default-rgb);
145 | --bs-body-bg-rgb: 255, 255, 255;
146 | --bs-font-sans-serif: var(--font-default);
147 | --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
148 | --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
149 | --bs-body-font-family: var(--font-default);
150 | --bs-body-font-size: 1rem;
151 | --bs-body-font-weight: 400;
152 | --bs-body-line-height: 1.5;
153 | --bs-body-color: var(--color-default);
154 | --bs-body-bg: #fff;
155 |
156 | }
157 |
158 | /*--------------------------------------------------------------
159 | # 3. Set color and background class names
160 | --------------------------------------------------------------*/
161 | /* Fonts */
162 | .font-default { font-family: var(--font-default) !important; }
163 | .font-primary { font-family: var(--font-primary) !important;}
164 | .font-secondary { font-family: var(--font-secondary) !important; }
165 |
166 | /* Text Colors */
167 | .color-default { color: var(--color-default) !important; }
168 | .color-links { color: var(--color-links) !important; }
169 | .color-links:hover { color: var(--color-links-hover) !important; }
170 | .color-primary { color: var(--color-primary) !important; }
171 | .color-primary-light { color: var(--color-primary-light) !important; }
172 | .color-primary-dark { color: var(--color-primary-dark) !important; }
173 | .color-secondary { color: var(--color-secondary) !important; }
174 | .color-secondary-light { color: var(--color-secondary-light) !important; }
175 | .color-secondary-dark { color: var(--color-secondary-dark) !important; }
176 | .color-blue { color: var(--color-blue) !important; }
177 | .color-indigo { color: var(--color-indigo) !important; }
178 | .color-purple { color: var(--color-purple) !important; }
179 | .color-pink { color: var(--color-pink) !important; }
180 | .color-red { color: var(--color-red) !important; }
181 | .color-orange { color: var(--color-orange) !important; }
182 | .color-yellow { color: var(--color-yellow) !important; }
183 | .color-green { color: var(--color-green) !important; }
184 | .color-teal { color: var(--color-teal) !important; }
185 | .color-cyan { color: var(--color-cyan) !important; }
186 | .color-white { color: var(--color-white) !important; }
187 | .color-gray { color: var(--color-gray) !important; }
188 | .color-black { color: var(--color-black) !important; }
189 |
190 | /* Background Colors */
191 | .bg-default { background-color: var(--color-default) !important; }
192 | .bg-primary { background-color: var(--color-primary) !important; }
193 | .bg-primary-light { background-color: var(--color-primary-light) !important; }
194 | .bg-primary-dark { background-color: var(--color-primary-dark) !important; }
195 | .bg-secondary { background-color: var(--color-secondary) !important; }
196 | .bg-secondary-light { background-color: var(--color-secondary-light) !important; }
197 | .bg-secondary-dark { background-color: var(--color-secondary-dark) !important; }
198 | .bg-blue { background-color: var(--color-blue) !important; }
199 | .bg-indigo { background-color: var(--color-indigo) !important; }
200 | .bg-purple { background-color: var(--color-purple) !important; }
201 | .bg-pink { background-color: var(--color-pink) !important; }
202 | .bg-red { background-color: var(--color-red) !important; }
203 | .bg-orange { background-color: var(--color-orange) !important; }
204 | .bg-yellow { background-color: var(--color-yellow) !important; }
205 | .bg-green { background-color: var(--color-green) !important; }
206 | .bg-teal { background-color: var(--color-teal) !important; }
207 | .bg-cyan { background-color: var(--color-cyan) !important; }
208 | .bg-white { background-color: var(--color-white) !important; }
209 | .bg-gray { background-color: var(--color-gray) !important; }
210 | .bg-black { background-color: var(--color-black) !important; }
--------------------------------------------------------------------------------
/assets/css/variables-purple.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Template Name: HeroBiz
3 | * File: variables-purple.css
4 | * Description: Easily customize colors, typography, and other repetitive properties used in the template main stylesheet file main.css
5 | *
6 | * Template URL: https://bootstrapmade.com/herobiz-bootstrap-business-template/
7 | * Author: BootstrapMade.com
8 | * License: https://bootstrapmade.com/license/
9 | *
10 | * Contents:
11 | * 1. HeroBiz template variables
12 | * 2. Override default Bootstrap variables
13 | * 3. Set color and background class names
14 | *
15 | * Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
16 | */
17 |
18 | /*--------------------------------------------------------------
19 | # 1. HeroBiz template variables
20 | --------------------------------------------------------------*/
21 | :root {
22 |
23 | /* Fonts */
24 | --font-default: 'Open Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
25 | --font-primary: 'Source Sans Pro', sans-serif;
26 | --font-secondary: 'Poppins', sans-serif;
27 |
28 | /* Colors */
29 | /* The *-rgb color names are simply the RGB converted value of the corresponding color for use in the rgba() function */
30 |
31 | /* Default text color */
32 | --color-default: #1a1f24;
33 | --color-default-rgb: 26, 31, 36;
34 |
35 | /* Defult links color */
36 | --color-links: #6261c5;
37 | --color-links-hover: #7d7bfd;
38 |
39 | /* Primay colors */
40 | --color-primary: #6261c5;
41 | --color-primary-light: #7d7bfd;
42 | --color-primary-dark: #4b49aa;
43 |
44 | --color-primary-rgb: 98, 97, 197;
45 | --color-primary-light-rgb: 125, 123, 253;
46 | --color-primary-dark-rgb: 75, 73, 170;
47 |
48 | /* Secondary colors */
49 | --color-secondary: #56556b;
50 | --color-secondary-light: #7c7b94;
51 | --color-secondary-dark: #343346;
52 |
53 | --color-secondary-rgb: 86, 85, 107;
54 | --color-secondary-light-rgb: 124, 123, 148;
55 | --color-secondary-dark-rgb: 52, 51, 70;
56 |
57 | /* General colors */
58 | --color-blue: #0d6efd;
59 | --color-blue-rgb: 13, 110, 253;
60 |
61 | --color-indigo: #6610f2;
62 | --color-indigo-rgb: 102, 16, 242;
63 |
64 | --color-purple: #6f42c1;
65 | --color-purple-rgb: 111, 66, 193;
66 |
67 | --color-pink: #f3268c;
68 | --color-pink-rgb: 243, 38, 140;
69 |
70 | --color-red: #df1529;
71 | --color-red-rgb: 223, 21, 4;
72 |
73 | --color-orange: #fd7e14;
74 | --color-orange-rgb: 253, 126, 20;
75 |
76 | --color-yellow: #ffc107;
77 | --color-yellow-rgb: 255, 193, 7;
78 |
79 | --color-green: #059652;
80 | --color-green-rgb: 5, 150, 82;
81 |
82 | --color-teal: #20c997;
83 | --color-teal-rgb: 32, 201, 151;
84 |
85 | --color-cyan: #0dcaf0;
86 | --color-cyan-rgb: 13, 202, 240;
87 |
88 | --color-white: #ffffff;
89 | --color-white-rgb: 255, 255, 255;
90 |
91 | --color-gray: #6c757d;
92 | --color-gray-rgb: 108, 117, 125;
93 |
94 | --color-black: #000000;
95 | --color-black-rgb: 0, 0, 0;
96 |
97 | }
98 |
99 | /*--------------------------------------------------------------
100 | # 2. Override default Bootstrap variables
101 | --------------------------------------------------------------*/
102 | :root {
103 |
104 | --bs-blue: var(--color-blue);
105 | --bs-indigo: var(--color-indigo);
106 | --bs-purple: var(--color-purple);
107 | --bs-pink: var(--color-pink);
108 | --bs-red: var(--color-red);
109 | --bs-orange: var(--color-orange);
110 | --bs-yellow: var(--color-yellow);
111 | --bs-green: var(--color-green);
112 | --bs-teal: var(--color-teal);
113 | --bs-cyan: var(--color-cyan);
114 | --bs-white: var(--color-white);
115 | --bs-gray: var(--color-gray);
116 | --bs-gray-dark: #343a40;
117 | --bs-gray-100: #f8f9fa;
118 | --bs-gray-200: #e9ecef;
119 | --bs-gray-300: #dee2e6;
120 | --bs-gray-400: #ced4da;
121 | --bs-gray-500: #adb5bd;
122 | --bs-gray-600: #6c757d;
123 | --bs-gray-700: #495057;
124 | --bs-gray-800: #343a40;
125 | --bs-gray-900: #212529;
126 | --bs-primary: var(--color-blue);
127 | --bs-secondary: var(--color-blue);
128 | --bs-success: #198754;
129 | --bs-info: #0dcaf0;
130 | --bs-warning: #ffc107;
131 | --bs-danger: #dc3545;
132 | --bs-light: #f8f9fa;
133 | --bs-dark: #212529;
134 | --bs-primary-rgb: var(--color-primary-rgb);
135 | --bs-secondary-rgb: var(--color-secondary-rgb);
136 | --bs-success-rgb: 25, 135, 84;
137 | --bs-info-rgb: 13, 202, 240;
138 | --bs-warning-rgb: 255, 193, 7;
139 | --bs-danger-rgb: 220, 53, 69;
140 | --bs-light-rgb: 248, 249, 250;
141 | --bs-dark-rgb: 33, 37, 41;
142 | --bs-white-rgb: var(--color-white-rgb);
143 | --bs-black-rgb: var(--color-black-rgb);
144 | --bs-body-color-rgb: var(--color-default-rgb);
145 | --bs-body-bg-rgb: 255, 255, 255;
146 | --bs-font-sans-serif: var(--font-default);
147 | --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
148 | --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
149 | --bs-body-font-family: var(--font-default);
150 | --bs-body-font-size: 1rem;
151 | --bs-body-font-weight: 400;
152 | --bs-body-line-height: 1.5;
153 | --bs-body-color: var(--color-default);
154 | --bs-body-bg: #fff;
155 |
156 | }
157 |
158 | /*--------------------------------------------------------------
159 | # 3. Set color and background class names
160 | --------------------------------------------------------------*/
161 | /* Fonts */
162 | .font-default { font-family: var(--font-default) !important; }
163 | .font-primary { font-family: var(--font-primary) !important;}
164 | .font-secondary { font-family: var(--font-secondary) !important; }
165 |
166 | /* Text Colors */
167 | .color-default { color: var(--color-default) !important; }
168 | .color-links { color: var(--color-links) !important; }
169 | .color-links:hover { color: var(--color-links-hover) !important; }
170 | .color-primary { color: var(--color-primary) !important; }
171 | .color-primary-light { color: var(--color-primary-light) !important; }
172 | .color-primary-dark { color: var(--color-primary-dark) !important; }
173 | .color-secondary { color: var(--color-secondary) !important; }
174 | .color-secondary-light { color: var(--color-secondary-light) !important; }
175 | .color-secondary-dark { color: var(--color-secondary-dark) !important; }
176 | .color-blue { color: var(--color-blue) !important; }
177 | .color-indigo { color: var(--color-indigo) !important; }
178 | .color-purple { color: var(--color-purple) !important; }
179 | .color-pink { color: var(--color-pink) !important; }
180 | .color-red { color: var(--color-red) !important; }
181 | .color-orange { color: var(--color-orange) !important; }
182 | .color-yellow { color: var(--color-yellow) !important; }
183 | .color-green { color: var(--color-green) !important; }
184 | .color-teal { color: var(--color-teal) !important; }
185 | .color-cyan { color: var(--color-cyan) !important; }
186 | .color-white { color: var(--color-white) !important; }
187 | .color-gray { color: var(--color-gray) !important; }
188 | .color-black { color: var(--color-black) !important; }
189 |
190 | /* Background Colors */
191 | .bg-default { background-color: var(--color-default) !important; }
192 | .bg-primary { background-color: var(--color-primary) !important; }
193 | .bg-primary-light { background-color: var(--color-primary-light) !important; }
194 | .bg-primary-dark { background-color: var(--color-primary-dark) !important; }
195 | .bg-secondary { background-color: var(--color-secondary) !important; }
196 | .bg-secondary-light { background-color: var(--color-secondary-light) !important; }
197 | .bg-secondary-dark { background-color: var(--color-secondary-dark) !important; }
198 | .bg-blue { background-color: var(--color-blue) !important; }
199 | .bg-indigo { background-color: var(--color-indigo) !important; }
200 | .bg-purple { background-color: var(--color-purple) !important; }
201 | .bg-pink { background-color: var(--color-pink) !important; }
202 | .bg-red { background-color: var(--color-red) !important; }
203 | .bg-orange { background-color: var(--color-orange) !important; }
204 | .bg-yellow { background-color: var(--color-yellow) !important; }
205 | .bg-green { background-color: var(--color-green) !important; }
206 | .bg-teal { background-color: var(--color-teal) !important; }
207 | .bg-cyan { background-color: var(--color-cyan) !important; }
208 | .bg-white { background-color: var(--color-white) !important; }
209 | .bg-gray { background-color: var(--color-gray) !important; }
210 | .bg-black { background-color: var(--color-black) !important; }
--------------------------------------------------------------------------------
/assets/css/variables-red.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Template Name: HeroBiz
3 | * File: variables-red.css
4 | * Description: Easily customize colors, typography, and other repetitive properties used in the template main stylesheet file main.css
5 | *
6 | * Template URL: https://bootstrapmade.com/herobiz-bootstrap-business-template/
7 | * Author: BootstrapMade.com
8 | * License: https://bootstrapmade.com/license/
9 | *
10 | * Contents:
11 | * 1. HeroBiz template variables
12 | * 2. Override default Bootstrap variables
13 | * 3. Set color and background class names
14 | *
15 | * Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
16 | */
17 |
18 | /*--------------------------------------------------------------
19 | # 1. HeroBiz template variables
20 | --------------------------------------------------------------*/
21 | :root {
22 |
23 | /* Fonts */
24 | --font-default: 'Open Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
25 | --font-primary: 'Source Sans Pro', sans-serif;
26 | --font-secondary: 'Poppins', sans-serif;
27 |
28 | /* Colors */
29 | /* The *-rgb color names are simply the RGB converted value of the corresponding color for use in the rgba() function */
30 |
31 | /* Default text color */
32 | --color-default: #1a1f24;
33 | --color-default-rgb: 26, 31, 36;
34 |
35 | /* Defult links color */
36 | --color-links: #df1529;
37 | --color-links-hover: #ff2b2b;
38 |
39 | /* Primay colors */
40 | --color-primary: #df1529;
41 | --color-primary-light: #ff2b2b;
42 | --color-primary-dark: #c00719;
43 |
44 | --color-primary-rgb: 223, 21, 41;
45 | --color-primary-light-rgb: 255, 43, 43;
46 | --color-primary-dark-rgb: 192, 7, 25;
47 |
48 | /* Secondary colors */
49 | --color-secondary: #485664;
50 | --color-secondary-light: #8f9fae;
51 | --color-secondary-dark: #3a4753;
52 |
53 | --color-secondary-rgb: 72, 86, 100;
54 | --color-secondary-light-rgb: 143, 159, 174;
55 | --color-secondary-dark-rgb: 58, 71, 83;
56 |
57 | /* General colors */
58 | --color-blue: #0d6efd;
59 | --color-blue-rgb: 13, 110, 253;
60 |
61 | --color-indigo: #6610f2;
62 | --color-indigo-rgb: 102, 16, 242;
63 |
64 | --color-purple: #6f42c1;
65 | --color-purple-rgb: 111, 66, 193;
66 |
67 | --color-pink: #f3268c;
68 | --color-pink-rgb: 243, 38, 140;
69 |
70 | --color-red: #df1529;
71 | --color-red-rgb: 223, 21, 4;
72 |
73 | --color-orange: #fd7e14;
74 | --color-orange-rgb: 253, 126, 20;
75 |
76 | --color-yellow: #ffc107;
77 | --color-yellow-rgb: 255, 193, 7;
78 |
79 | --color-green: #059652;
80 | --color-green-rgb: 5, 150, 82;
81 |
82 | --color-teal: #20c997;
83 | --color-teal-rgb: 32, 201, 151;
84 |
85 | --color-cyan: #0dcaf0;
86 | --color-cyan-rgb: 13, 202, 240;
87 |
88 | --color-white: #ffffff;
89 | --color-white-rgb: 255, 255, 255;
90 |
91 | --color-gray: #6c757d;
92 | --color-gray-rgb: 108, 117, 125;
93 |
94 | --color-black: #000000;
95 | --color-black-rgb: 0, 0, 0;
96 |
97 | }
98 |
99 | /*--------------------------------------------------------------
100 | # 2. Override default Bootstrap variables
101 | --------------------------------------------------------------*/
102 | :root {
103 |
104 | --bs-blue: var(--color-blue);
105 | --bs-indigo: var(--color-indigo);
106 | --bs-purple: var(--color-purple);
107 | --bs-pink: var(--color-pink);
108 | --bs-red: var(--color-red);
109 | --bs-orange: var(--color-orange);
110 | --bs-yellow: var(--color-yellow);
111 | --bs-green: var(--color-green);
112 | --bs-teal: var(--color-teal);
113 | --bs-cyan: var(--color-cyan);
114 | --bs-white: var(--color-white);
115 | --bs-gray: var(--color-gray);
116 | --bs-gray-dark: #343a40;
117 | --bs-gray-100: #f8f9fa;
118 | --bs-gray-200: #e9ecef;
119 | --bs-gray-300: #dee2e6;
120 | --bs-gray-400: #ced4da;
121 | --bs-gray-500: #adb5bd;
122 | --bs-gray-600: #6c757d;
123 | --bs-gray-700: #495057;
124 | --bs-gray-800: #343a40;
125 | --bs-gray-900: #212529;
126 | --bs-primary: var(--color-blue);
127 | --bs-secondary: var(--color-blue);
128 | --bs-success: #198754;
129 | --bs-info: #0dcaf0;
130 | --bs-warning: #ffc107;
131 | --bs-danger: #dc3545;
132 | --bs-light: #f8f9fa;
133 | --bs-dark: #212529;
134 | --bs-primary-rgb: var(--color-primary-rgb);
135 | --bs-secondary-rgb: var(--color-secondary-rgb);
136 | --bs-success-rgb: 25, 135, 84;
137 | --bs-info-rgb: 13, 202, 240;
138 | --bs-warning-rgb: 255, 193, 7;
139 | --bs-danger-rgb: 220, 53, 69;
140 | --bs-light-rgb: 248, 249, 250;
141 | --bs-dark-rgb: 33, 37, 41;
142 | --bs-white-rgb: var(--color-white-rgb);
143 | --bs-black-rgb: var(--color-black-rgb);
144 | --bs-body-color-rgb: var(--color-default-rgb);
145 | --bs-body-bg-rgb: 255, 255, 255;
146 | --bs-font-sans-serif: var(--font-default);
147 | --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
148 | --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
149 | --bs-body-font-family: var(--font-default);
150 | --bs-body-font-size: 1rem;
151 | --bs-body-font-weight: 400;
152 | --bs-body-line-height: 1.5;
153 | --bs-body-color: var(--color-default);
154 | --bs-body-bg: #fff;
155 |
156 | }
157 |
158 | /*--------------------------------------------------------------
159 | # 3. Set color and background class names
160 | --------------------------------------------------------------*/
161 | /* Fonts */
162 | .font-default { font-family: var(--font-default) !important; }
163 | .font-primary { font-family: var(--font-primary) !important;}
164 | .font-secondary { font-family: var(--font-secondary) !important; }
165 |
166 | /* Text Colors */
167 | .color-default { color: var(--color-default) !important; }
168 | .color-links { color: var(--color-links) !important; }
169 | .color-links:hover { color: var(--color-links-hover) !important; }
170 | .color-primary { color: var(--color-primary) !important; }
171 | .color-primary-light { color: var(--color-primary-light) !important; }
172 | .color-primary-dark { color: var(--color-primary-dark) !important; }
173 | .color-secondary { color: var(--color-secondary) !important; }
174 | .color-secondary-light { color: var(--color-secondary-light) !important; }
175 | .color-secondary-dark { color: var(--color-secondary-dark) !important; }
176 | .color-blue { color: var(--color-blue) !important; }
177 | .color-indigo { color: var(--color-indigo) !important; }
178 | .color-purple { color: var(--color-purple) !important; }
179 | .color-pink { color: var(--color-pink) !important; }
180 | .color-red { color: var(--color-red) !important; }
181 | .color-orange { color: var(--color-orange) !important; }
182 | .color-yellow { color: var(--color-yellow) !important; }
183 | .color-green { color: var(--color-green) !important; }
184 | .color-teal { color: var(--color-teal) !important; }
185 | .color-cyan { color: var(--color-cyan) !important; }
186 | .color-white { color: var(--color-white) !important; }
187 | .color-gray { color: var(--color-gray) !important; }
188 | .color-black { color: var(--color-black) !important; }
189 |
190 | /* Background Colors */
191 | .bg-default { background-color: var(--color-default) !important; }
192 | .bg-primary { background-color: var(--color-primary) !important; }
193 | .bg-primary-light { background-color: var(--color-primary-light) !important; }
194 | .bg-primary-dark { background-color: var(--color-primary-dark) !important; }
195 | .bg-secondary { background-color: var(--color-secondary) !important; }
196 | .bg-secondary-light { background-color: var(--color-secondary-light) !important; }
197 | .bg-secondary-dark { background-color: var(--color-secondary-dark) !important; }
198 | .bg-blue { background-color: var(--color-blue) !important; }
199 | .bg-indigo { background-color: var(--color-indigo) !important; }
200 | .bg-purple { background-color: var(--color-purple) !important; }
201 | .bg-pink { background-color: var(--color-pink) !important; }
202 | .bg-red { background-color: var(--color-red) !important; }
203 | .bg-orange { background-color: var(--color-orange) !important; }
204 | .bg-yellow { background-color: var(--color-yellow) !important; }
205 | .bg-green { background-color: var(--color-green) !important; }
206 | .bg-teal { background-color: var(--color-teal) !important; }
207 | .bg-cyan { background-color: var(--color-cyan) !important; }
208 | .bg-white { background-color: var(--color-white) !important; }
209 | .bg-gray { background-color: var(--color-gray) !important; }
210 | .bg-black { background-color: var(--color-black) !important; }
--------------------------------------------------------------------------------
/assets/css/variables.css:
--------------------------------------------------------------------------------
1 |
2 | :root {
3 |
4 | /* Fonts */
5 | --font-default: 'Open Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
6 | --font-primary: 'Source Sans Pro', sans-serif;
7 | --font-secondary: 'Poppins', sans-serif;
8 |
9 | /* Colors */
10 | /* The *-rgb color names are simply the RGB converted value of the corresponding color for use in the rgba() function */
11 |
12 | /* Default text color */
13 | --color-default: #1a1f24;
14 | --color-default-rgb: 26, 31, 36;
15 |
16 | /* Defult links color */
17 | --color-links: #0804fc;
18 | --color-links-hover: #0804fc;
19 |
20 | /* Primay colors */
21 | --color-primary: #0804fc;
22 | --color-primary-light: #1ec3e0;
23 | --color-primary-dark: #0189a1;
24 |
25 | --color-primary-rgb: 14, 162, 189;
26 | --color-primary-light-rgb: 30, 195, 224;
27 | --color-primary-dark-rgb: 1, 137, 161;
28 |
29 | /* Secondary colors */
30 | --color-secondary: #485664;
31 | --color-secondary-light: #8f9fae;
32 | --color-secondary-dark: #3a4753;
33 |
34 | --color-secondary-rgb: 72, 86, 100;
35 | --color-secondary-light-rgb: 143, 159, 174;
36 | --color-secondary-dark-rgb: 58, 71, 83;
37 |
38 | /* General colors */
39 | --color-blue: #0804fc;
40 | --color-blue-rgb: 13, 110, 253;
41 |
42 | --color-indigo: #6610f2;
43 | --color-indigo-rgb: 102, 16, 242;
44 |
45 | --color-purple: #6f42c1;
46 | --color-purple-rgb: 111, 66, 193;
47 |
48 | --color-pink: #f3268c;
49 | --color-pink-rgb: 243, 38, 140;
50 |
51 | --color-red: #df1529;
52 | --color-red-rgb: 223, 21, 4;
53 |
54 | --color-orange: #fd7e14;
55 | --color-orange-rgb: 253, 126, 20;
56 |
57 | --color-yellow: #ffc107;
58 | --color-yellow-rgb: 255, 193, 7;
59 |
60 | --color-green: #059652;
61 | --color-green-rgb: 5, 150, 82;
62 |
63 | --color-teal: #20c997;
64 | --color-teal-rgb: 32, 201, 151;
65 |
66 | --color-cyan: #0dcaf0;
67 | --color-cyan-rgb: 13, 202, 240;
68 |
69 | --color-white: #ffffff;
70 | --color-white-rgb: 255, 255, 255;
71 |
72 | --color-gray: #6c757d;
73 | --color-gray-rgb: 108, 117, 125;
74 |
75 | --color-black: #000000;
76 | --color-black-rgb: 0, 0, 0;
77 |
78 | }
79 |
80 | /*--------------------------------------------------------------
81 | # 2. Override default Bootstrap variables
82 | --------------------------------------------------------------*/
83 | :root {
84 |
85 | --bs-blue: var(--color-blue);
86 | --bs-indigo: var(--color-indigo);
87 | --bs-purple: var(--color-purple);
88 | --bs-pink: var(--color-pink);
89 | --bs-red: var(--color-red);
90 | --bs-orange: var(--color-orange);
91 | --bs-yellow: var(--color-yellow);
92 | --bs-green: var(--color-green);
93 | --bs-teal: var(--color-teal);
94 | --bs-cyan: var(--color-cyan);
95 | --bs-white: var(--color-white);
96 | --bs-gray: var(--color-gray);
97 | --bs-gray-dark: #343a40;
98 | --bs-gray-100: #f8f9fa;
99 | --bs-gray-200: #e9ecef;
100 | --bs-gray-300: #dee2e6;
101 | --bs-gray-400: #ced4da;
102 | --bs-gray-500: #adb5bd;
103 | --bs-gray-600: #6c757d;
104 | --bs-gray-700: #495057;
105 | --bs-gray-800: #343a40;
106 | --bs-gray-900: #212529;
107 | --bs-primary: var(--color-blue);
108 | --bs-secondary: var(--color-blue);
109 | --bs-success: #198754;
110 | --bs-info: #0dcaf0;
111 | --bs-warning: #ffc107;
112 | --bs-danger: #dc3545;
113 | --bs-light: #f8f9fa;
114 | --bs-dark: #212529;
115 | --bs-primary-rgb: var(--color-primary-rgb);
116 | --bs-secondary-rgb: var(--color-secondary-rgb);
117 | --bs-success-rgb: 25, 135, 84;
118 | --bs-info-rgb: 13, 202, 240;
119 | --bs-warning-rgb: 255, 193, 7;
120 | --bs-danger-rgb: 220, 53, 69;
121 | --bs-light-rgb: 248, 249, 250;
122 | --bs-dark-rgb: 33, 37, 41;
123 | --bs-white-rgb: var(--color-white-rgb);
124 | --bs-black-rgb: var(--color-black-rgb);
125 | --bs-body-color-rgb: var(--color-default-rgb);
126 | --bs-body-bg-rgb: 255, 255, 255;
127 | --bs-font-sans-serif: var(--font-default);
128 | --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
129 | --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
130 | --bs-body-font-family: var(--font-default);
131 | --bs-body-font-size: 1rem;
132 | --bs-body-font-weight: 400;
133 | --bs-body-line-height: 1.5;
134 | --bs-body-color: var(--color-default);
135 | --bs-body-bg: #fff;
136 |
137 | }
138 |
139 | /*--------------------------------------------------------------
140 | # 3. Set color and background class names
141 | --------------------------------------------------------------*/
142 | /* Fonts */
143 | .font-default { font-family: var(--font-default) !important; }
144 | .font-primary { font-family: var(--font-primary) !important;}
145 | .font-secondary { font-family: var(--font-secondary) !important; }
146 |
147 | /* Text Colors */
148 | .color-default { color: var(--color-default) !important; }
149 | .color-links { color: var(--color-links) !important; }
150 | .color-links:hover { color: var(--color-links-hover) !important; }
151 | .color-primary { color: var(--color-primary) !important; }
152 | .color-primary-light { color: var(--color-primary-light) !important; }
153 | .color-primary-dark { color: var(--color-primary-dark) !important; }
154 | .color-secondary { color: var(--color-secondary) !important; }
155 | .color-secondary-light { color: var(--color-secondary-light) !important; }
156 | .color-secondary-dark { color: var(--color-secondary-dark) !important; }
157 | .color-blue { color: var(--color-blue) !important; }
158 | .color-indigo { color: var(--color-indigo) !important; }
159 | .color-purple { color: var(--color-purple) !important; }
160 | .color-pink { color: var(--color-pink) !important; }
161 | .color-red { color: var(--color-red) !important; }
162 | .color-orange { color: var(--color-orange) !important; }
163 | .color-yellow { color: var(--color-yellow) !important; }
164 | .color-green { color: var(--color-green) !important; }
165 | .color-teal { color: var(--color-teal) !important; }
166 | .color-cyan { color: var(--color-cyan) !important; }
167 | .color-white { color: var(--color-white) !important; }
168 | .color-gray { color: var(--color-gray) !important; }
169 | .color-black { color: var(--color-black) !important; }
170 |
171 | /* Background Colors */
172 | .bg-default { background-color: var(--color-default) !important; }
173 | .bg-primary { background-color: var(--color-primary) !important; }
174 | .bg-primary-light { background-color: var(--color-primary-light) !important; }
175 | .bg-primary-dark { background-color: var(--color-primary-dark) !important; }
176 | .bg-secondary { background-color: var(--color-secondary) !important; }
177 | .bg-secondary-light { background-color: var(--color-secondary-light) !important; }
178 | .bg-secondary-dark { background-color: var(--color-secondary-dark) !important; }
179 | .bg-blue { background-color: var(--color-blue) !important; }
180 | .bg-indigo { background-color: var(--color-indigo) !important; }
181 | .bg-purple { background-color: var(--color-purple) !important; }
182 | .bg-pink { background-color: var(--color-pink) !important; }
183 | .bg-red { background-color: var(--color-red) !important; }
184 | .bg-orange { background-color: var(--color-orange) !important; }
185 | .bg-yellow { background-color: var(--color-yellow) !important; }
186 | .bg-green { background-color: var(--color-green) !important; }
187 | .bg-teal { background-color: var(--color-teal) !important; }
188 | .bg-cyan { background-color: var(--color-cyan) !important; }
189 | .bg-white { background-color: var(--color-white) !important; }
190 | .bg-gray { background-color: var(--color-gray) !important; }
191 | .bg-black { background-color: var(--color-black) !important; }
--------------------------------------------------------------------------------
/assets/img/about-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rwema3/shecanhack/c85208bb9fbcfa32af6c5ce47513b1607eae33c4/assets/img/about-bg.png
--------------------------------------------------------------------------------
/assets/img/about.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rwema3/shecanhack/c85208bb9fbcfa32af6c5ce47513b1607eae33c4/assets/img/about.JPG
--------------------------------------------------------------------------------
/assets/img/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rwema3/shecanhack/c85208bb9fbcfa32af6c5ce47513b1607eae33c4/assets/img/apple-touch-icon.png
--------------------------------------------------------------------------------
/assets/img/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rwema3/shecanhack/c85208bb9fbcfa32af6c5ce47513b1607eae33c4/assets/img/favicon.png
--------------------------------------------------------------------------------
/assets/img/hero-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rwema3/shecanhack/c85208bb9fbcfa32af6c5ce47513b1607eae33c4/assets/img/hero-bg.png
--------------------------------------------------------------------------------
/assets/img/onfocus-content-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rwema3/shecanhack/c85208bb9fbcfa32af6c5ce47513b1607eae33c4/assets/img/onfocus-content-bg.jpg
--------------------------------------------------------------------------------
/assets/img/pricing-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rwema3/shecanhack/c85208bb9fbcfa32af6c5ce47513b1607eae33c4/assets/img/pricing-bg.jpg
--------------------------------------------------------------------------------
/assets/img/services-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rwema3/shecanhack/c85208bb9fbcfa32af6c5ce47513b1607eae33c4/assets/img/services-3.jpg
--------------------------------------------------------------------------------
/assets/img/services.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rwema3/shecanhack/c85208bb9fbcfa32af6c5ce47513b1607eae33c4/assets/img/services.JPG
--------------------------------------------------------------------------------
/assets/js/main.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Template Name: HeroBiz - v2.1.0
3 | * Template URL: https://bootstrapmade.com/herobiz-bootstrap-business-template/
4 | * Author: BootstrapMade.com
5 | * License: https://bootstrapmade.com/license/
6 | */
7 | document.addEventListener('DOMContentLoaded', () => {
8 | "use strict";
9 |
10 | /**
11 | * Preloader
12 | */
13 | const preloader = document.querySelector('#preloader');
14 | if (preloader) {
15 | window.addEventListener('load', () => {
16 | preloader.remove();
17 | });
18 | }
19 |
20 | /**
21 | * Sticky header on scroll
22 | */
23 | const selectHeader = document.querySelector('#header');
24 | if (selectHeader) {
25 | document.addEventListener('scroll', () => {
26 | window.scrollY > 100 ? selectHeader.classList.add('sticked') : selectHeader.classList.remove('sticked');
27 | });
28 | }
29 |
30 | /**
31 | * Navbar links active state on scroll
32 | */
33 | let navbarlinks = document.querySelectorAll('#navbar .scrollto');
34 |
35 | function navbarlinksActive() {
36 | navbarlinks.forEach(navbarlink => {
37 |
38 | if (!navbarlink.hash) return;
39 |
40 | let section = document.querySelector(navbarlink.hash);
41 | if (!section) return;
42 |
43 | let position = window.scrollY;
44 | if (navbarlink.hash != '#header') position += 200;
45 |
46 | if (position >= section.offsetTop && position <= (section.offsetTop + section.offsetHeight)) {
47 | navbarlink.classList.add('active');
48 | } else {
49 | navbarlink.classList.remove('active');
50 | }
51 | })
52 | }
53 | window.addEventListener('load', navbarlinksActive);
54 | document.addEventListener('scroll', navbarlinksActive);
55 |
56 | /**
57 | * Function to scroll to an element with top ofset
58 | */
59 | function scrollto(el) {
60 | const selectHeader = document.querySelector('#header');
61 | let offset = 0;
62 |
63 | if (selectHeader.classList.contains('sticked')) {
64 | offset = document.querySelector('#header.sticked').offsetHeight;
65 | } else if (selectHeader.hasAttribute('data-scrollto-offset')) {
66 | offset = selectHeader.offsetHeight - parseInt(selectHeader.getAttribute('data-scrollto-offset'));
67 | }
68 | window.scrollTo({
69 | top: document.querySelector(el).offsetTop - offset,
70 | behavior: 'smooth'
71 | });
72 | }
73 |
74 | /**
75 | * Fires the scrollto function on click to links .scrollto
76 | */
77 | let selectScrollto = document.querySelectorAll('.scrollto');
78 | selectScrollto.forEach(el => el.addEventListener('click', function(event) {
79 | if (document.querySelector(this.hash)) {
80 | event.preventDefault();
81 |
82 | let mobileNavActive = document.querySelector('.mobile-nav-active');
83 | if (mobileNavActive) {
84 | mobileNavActive.classList.remove('mobile-nav-active');
85 |
86 | let navbarToggle = document.querySelector('.mobile-nav-toggle');
87 | navbarToggle.classList.toggle('bi-list');
88 | navbarToggle.classList.toggle('bi-x');
89 | }
90 | scrollto(this.hash);
91 | }
92 | }));
93 |
94 | /**
95 | * Scroll with ofset on page load with hash links in the url
96 | */
97 | window.addEventListener('load', () => {
98 | if (window.location.hash) {
99 | if (document.querySelector(window.location.hash)) {
100 | scrollto(window.location.hash);
101 | }
102 | }
103 | });
104 |
105 | /**
106 | * Mobile nav toggle
107 | */
108 | const mobileNavToogle = document.querySelector('.mobile-nav-toggle');
109 | if (mobileNavToogle) {
110 | mobileNavToogle.addEventListener('click', function(event) {
111 | event.preventDefault();
112 |
113 | document.querySelector('body').classList.toggle('mobile-nav-active');
114 |
115 | this.classList.toggle('bi-list');
116 | this.classList.toggle('bi-x');
117 | });
118 | }
119 |
120 | /**
121 | * Toggle mobile nav dropdowns
122 | */
123 | const navDropdowns = document.querySelectorAll('.navbar .dropdown > a');
124 |
125 | navDropdowns.forEach(el => {
126 | el.addEventListener('click', function(event) {
127 | if (document.querySelector('.mobile-nav-active')) {
128 | event.preventDefault();
129 | this.classList.toggle('active');
130 | this.nextElementSibling.classList.toggle('dropdown-active');
131 |
132 | let dropDownIndicator = this.querySelector('.dropdown-indicator');
133 | dropDownIndicator.classList.toggle('bi-chevron-up');
134 | dropDownIndicator.classList.toggle('bi-chevron-down');
135 | }
136 | })
137 | });
138 |
139 | /**
140 | * Auto generate the hero carousel indicators
141 | */
142 | let heroCarouselIndicators = document.querySelector('#hero .carousel-indicators');
143 | if (heroCarouselIndicators) {
144 | let heroCarouselItems = document.querySelectorAll('#hero .carousel-item')
145 |
146 | heroCarouselItems.forEach((item, index) => {
147 | if (index === 0) {
148 | heroCarouselIndicators.innerHTML += `
`;
149 | } else {
150 | heroCarouselIndicators.innerHTML += ` `;
151 | }
152 | });
153 | }
154 |
155 | /**
156 | * Scroll top button
157 | */
158 | const scrollTop = document.querySelector('.scroll-top');
159 | if (scrollTop) {
160 | const togglescrollTop = function() {
161 | window.scrollY > 100 ? scrollTop.classList.add('active') : scrollTop.classList.remove('active');
162 | }
163 | window.addEventListener('load', togglescrollTop);
164 | document.addEventListener('scroll', togglescrollTop);
165 | scrollTop.addEventListener('click', window.scrollTo({
166 | top: 0,
167 | behavior: 'smooth'
168 | }));
169 | }
170 |
171 | /**
172 | * Initiate glightbox
173 | */
174 | const glightbox = GLightbox({
175 | selector: '.glightbox'
176 | });
177 |
178 | /**
179 | * Porfolio isotope and filter
180 | */
181 | let portfolionIsotope = document.querySelector('.portfolio-isotope');
182 |
183 | if (portfolionIsotope) {
184 |
185 | let portfolioFilter = portfolionIsotope.getAttribute('data-portfolio-filter') ? portfolionIsotope.getAttribute('data-portfolio-filter') : '*';
186 | let portfolioLayout = portfolionIsotope.getAttribute('data-portfolio-layout') ? portfolionIsotope.getAttribute('data-portfolio-layout') : 'masonry';
187 | let portfolioSort = portfolionIsotope.getAttribute('data-portfolio-sort') ? portfolionIsotope.getAttribute('data-portfolio-sort') : 'original-order';
188 |
189 | window.addEventListener('load', () => {
190 | let portfolioIsotope = new Isotope(document.querySelector('.portfolio-container'), {
191 | itemSelector: '.portfolio-item',
192 | layoutMode: portfolioLayout,
193 | filter: portfolioFilter,
194 | sortBy: portfolioSort
195 | });
196 |
197 | let menuFilters = document.querySelectorAll('.portfolio-isotope .portfolio-flters li');
198 | menuFilters.forEach(function(el) {
199 | el.addEventListener('click', function() {
200 | document.querySelector('.portfolio-isotope .portfolio-flters .filter-active').classList.remove('filter-active');
201 | this.classList.add('filter-active');
202 | portfolioIsotope.arrange({
203 | filter: this.getAttribute('data-filter')
204 | });
205 | if (typeof aos_init === 'function') {
206 | aos_init();
207 | }
208 | }, false);
209 | });
210 |
211 | });
212 |
213 | }
214 |
215 | /**
216 | * Clients Slider
217 | */
218 | new Swiper('.clients-slider', {
219 | speed: 400,
220 | loop: true,
221 | autoplay: {
222 | delay: 5000,
223 | disableOnInteraction: false
224 | },
225 | slidesPerView: 'auto',
226 | breakpoints: {
227 | 320: {
228 | slidesPerView: 2,
229 | spaceBetween: 40
230 | },
231 | 480: {
232 | slidesPerView: 3,
233 | spaceBetween: 60
234 | },
235 | 640: {
236 | slidesPerView: 4,
237 | spaceBetween: 80
238 | },
239 | 992: {
240 | slidesPerView: 6,
241 | spaceBetween: 120
242 | }
243 | }
244 | });
245 |
246 | /**
247 | * Testimonials Slider
248 | */
249 | new Swiper('.testimonials-slider', {
250 | speed: 600,
251 | loop: true,
252 | autoplay: {
253 | delay: 5000,
254 | disableOnInteraction: false
255 | },
256 | slidesPerView: 'auto',
257 | pagination: {
258 | el: '.swiper-pagination',
259 | type: 'bullets',
260 | clickable: true
261 | }
262 | });
263 |
264 | /**
265 | * Testimonials Slider
266 | */
267 | new Swiper('.portfolio-details-slider', {
268 | speed: 600,
269 | loop: true,
270 | autoplay: {
271 | delay: 5000,
272 | disableOnInteraction: false
273 | },
274 | slidesPerView: 'auto',
275 | pagination: {
276 | el: '.swiper-pagination',
277 | type: 'bullets',
278 | clickable: true
279 | }
280 | });
281 |
282 | /**
283 | * Animation on scroll function and init
284 | */
285 | function aos_init() {
286 | AOS.init({
287 | duration: 1000,
288 | easing: 'ease-in-out',
289 | once: true,
290 | mirror: false
291 | });
292 | }
293 | window.addEventListener('load', () => {
294 | aos_init();
295 | });
296 |
297 | });
--------------------------------------------------------------------------------
/assets/vendor/aos/aos.css:
--------------------------------------------------------------------------------
1 | [data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos=fade-up-right]{transform:translate3d(-100px,100px,0)}[data-aos=fade-up-left]{transform:translate3d(100px,100px,0)}[data-aos=fade-down-right]{transform:translate3d(-100px,-100px,0)}[data-aos=fade-down-left]{transform:translate3d(100px,-100px,0)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)}
--------------------------------------------------------------------------------
/assets/vendor/aos/aos.js:
--------------------------------------------------------------------------------
1 | !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.AOS=t():e.AOS=t()}(this,function(){return function(e){function t(o){if(n[o])return n[o].exports;var i=n[o]={exports:{},id:o,loaded:!1};return e[o].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="dist/",t(0)}([function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}var i=Object.assign||function(e){for(var t=1;t0&&void 0!==arguments[0]&&arguments[0];if(e&&(k=!0),k)return w=(0,y.default)(w,x),(0,b.default)(w,x.once),w},O=function(){w=(0,h.default)(),j()},M=function(){w.forEach(function(e,t){e.node.removeAttribute("data-aos"),e.node.removeAttribute("data-aos-easing"),e.node.removeAttribute("data-aos-duration"),e.node.removeAttribute("data-aos-delay")})},S=function(e){return e===!0||"mobile"===e&&p.default.mobile()||"phone"===e&&p.default.phone()||"tablet"===e&&p.default.tablet()||"function"==typeof e&&e()===!0},_=function(e){x=i(x,e),w=(0,h.default)();var t=document.all&&!window.atob;return S(x.disable)||t?M():(x.disableMutationObserver||d.default.isSupported()||(console.info('\n aos: MutationObserver is not supported on this browser,\n code mutations observing has been disabled.\n You may have to call "refreshHard()" by yourself.\n '),x.disableMutationObserver=!0),document.querySelector("body").setAttribute("data-aos-easing",x.easing),document.querySelector("body").setAttribute("data-aos-duration",x.duration),document.querySelector("body").setAttribute("data-aos-delay",x.delay),"DOMContentLoaded"===x.startEvent&&["complete","interactive"].indexOf(document.readyState)>-1?j(!0):"load"===x.startEvent?window.addEventListener(x.startEvent,function(){j(!0)}):document.addEventListener(x.startEvent,function(){j(!0)}),window.addEventListener("resize",(0,s.default)(j,x.debounceDelay,!0)),window.addEventListener("orientationchange",(0,s.default)(j,x.debounceDelay,!0)),window.addEventListener("scroll",(0,u.default)(function(){(0,b.default)(w,x.once)},x.throttleDelay)),x.disableMutationObserver||d.default.ready("[data-aos]",O),w)};e.exports={init:_,refresh:j,refreshHard:O}},function(e,t){},,,,,function(e,t){(function(t){"use strict";function n(e,t,n){function o(t){var n=b,o=v;return b=v=void 0,k=t,g=e.apply(o,n)}function r(e){return k=e,h=setTimeout(f,t),M?o(e):g}function a(e){var n=e-w,o=e-k,i=t-n;return S?j(i,y-o):i}function c(e){var n=e-w,o=e-k;return void 0===w||n>=t||n<0||S&&o>=y}function f(){var e=O();return c(e)?d(e):void(h=setTimeout(f,a(e)))}function d(e){return h=void 0,_&&b?o(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),k=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(O())}function m(){var e=O(),n=c(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(f,t),o(w)}return void 0===h&&(h=setTimeout(f,t)),g}var b,v,y,g,h,w,k=0,M=!1,S=!1,_=!0;if("function"!=typeof e)throw new TypeError(s);return t=u(t)||0,i(n)&&(M=!!n.leading,S="maxWait"in n,y=S?x(u(n.maxWait)||0,t):y,_="trailing"in n?!!n.trailing:_),m.cancel=l,m.flush=p,m}function o(e,t,o){var r=!0,a=!0;if("function"!=typeof e)throw new TypeError(s);return i(o)&&(r="leading"in o?!!o.leading:r,a="trailing"in o?!!o.trailing:a),n(e,t,{leading:r,maxWait:t,trailing:a})}function i(e){var t="undefined"==typeof e?"undefined":c(e);return!!e&&("object"==t||"function"==t)}function r(e){return!!e&&"object"==("undefined"==typeof e?"undefined":c(e))}function a(e){return"symbol"==("undefined"==typeof e?"undefined":c(e))||r(e)&&k.call(e)==d}function u(e){if("number"==typeof e)return e;if(a(e))return f;if(i(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=i(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(l,"");var n=m.test(e);return n||b.test(e)?v(e.slice(2),n?2:8):p.test(e)?f:+e}var c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s="Expected a function",f=NaN,d="[object Symbol]",l=/^\s+|\s+$/g,p=/^[-+]0x[0-9a-f]+$/i,m=/^0b[01]+$/i,b=/^0o[0-7]+$/i,v=parseInt,y="object"==("undefined"==typeof t?"undefined":c(t))&&t&&t.Object===Object&&t,g="object"==("undefined"==typeof self?"undefined":c(self))&&self&&self.Object===Object&&self,h=y||g||Function("return this")(),w=Object.prototype,k=w.toString,x=Math.max,j=Math.min,O=function(){return h.Date.now()};e.exports=o}).call(t,function(){return this}())},function(e,t){(function(t){"use strict";function n(e,t,n){function i(t){var n=b,o=v;return b=v=void 0,O=t,g=e.apply(o,n)}function r(e){return O=e,h=setTimeout(f,t),M?i(e):g}function u(e){var n=e-w,o=e-O,i=t-n;return S?x(i,y-o):i}function s(e){var n=e-w,o=e-O;return void 0===w||n>=t||n<0||S&&o>=y}function f(){var e=j();return s(e)?d(e):void(h=setTimeout(f,u(e)))}function d(e){return h=void 0,_&&b?i(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),O=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(j())}function m(){var e=j(),n=s(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(f,t),i(w)}return void 0===h&&(h=setTimeout(f,t)),g}var b,v,y,g,h,w,O=0,M=!1,S=!1,_=!0;if("function"!=typeof e)throw new TypeError(c);return t=a(t)||0,o(n)&&(M=!!n.leading,S="maxWait"in n,y=S?k(a(n.maxWait)||0,t):y,_="trailing"in n?!!n.trailing:_),m.cancel=l,m.flush=p,m}function o(e){var t="undefined"==typeof e?"undefined":u(e);return!!e&&("object"==t||"function"==t)}function i(e){return!!e&&"object"==("undefined"==typeof e?"undefined":u(e))}function r(e){return"symbol"==("undefined"==typeof e?"undefined":u(e))||i(e)&&w.call(e)==f}function a(e){if("number"==typeof e)return e;if(r(e))return s;if(o(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=o(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(d,"");var n=p.test(e);return n||m.test(e)?b(e.slice(2),n?2:8):l.test(e)?s:+e}var u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c="Expected a function",s=NaN,f="[object Symbol]",d=/^\s+|\s+$/g,l=/^[-+]0x[0-9a-f]+$/i,p=/^0b[01]+$/i,m=/^0o[0-7]+$/i,b=parseInt,v="object"==("undefined"==typeof t?"undefined":u(t))&&t&&t.Object===Object&&t,y="object"==("undefined"==typeof self?"undefined":u(self))&&self&&self.Object===Object&&self,g=v||y||Function("return this")(),h=Object.prototype,w=h.toString,k=Math.max,x=Math.min,j=function(){return g.Date.now()};e.exports=n}).call(t,function(){return this}())},function(e,t){"use strict";function n(e){var t=void 0,o=void 0,i=void 0;for(t=0;te.position?e.node.classList.add("aos-animate"):"undefined"!=typeof o&&("false"===o||!n&&"true"!==o)&&e.node.classList.remove("aos-animate")},o=function(e,t){var o=window.pageYOffset,i=window.innerHeight;e.forEach(function(e,r){n(e,i+o,t)})};t.default=o},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(12),r=o(i),a=function(e,t){return e.forEach(function(e,n){e.node.classList.add("aos-init"),e.position=(0,r.default)(e.node,t.offset)}),e};t.default=a},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(13),r=o(i),a=function(e,t){var n=0,o=0,i=window.innerHeight,a={offset:e.getAttribute("data-aos-offset"),anchor:e.getAttribute("data-aos-anchor"),anchorPlacement:e.getAttribute("data-aos-anchor-placement")};switch(a.offset&&!isNaN(a.offset)&&(o=parseInt(a.offset)),a.anchor&&document.querySelectorAll(a.anchor)&&(e=document.querySelectorAll(a.anchor)[0]),n=(0,r.default)(e).top,a.anchorPlacement){case"top-bottom":break;case"center-bottom":n+=e.offsetHeight/2;break;case"bottom-bottom":n+=e.offsetHeight;break;case"top-center":n+=i/2;break;case"bottom-center":n+=i/2+e.offsetHeight;break;case"center-center":n+=i/2+e.offsetHeight/2;break;case"top-top":n+=i;break;case"bottom-top":n+=e.offsetHeight+i;break;case"center-top":n+=e.offsetHeight/2+i}return a.anchorPlacement||a.offset||isNaN(t)||(o=t),n+o};t.default=a},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){for(var t=0,n=0;e&&!isNaN(e.offsetLeft)&&!isNaN(e.offsetTop);)t+=e.offsetLeft-("BODY"!=e.tagName?e.scrollLeft:0),n+=e.offsetTop-("BODY"!=e.tagName?e.scrollTop:0),e=e.offsetParent;return{top:n,left:t}};t.default=n},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){return e=e||document.querySelectorAll("[data-aos]"),Array.prototype.map.call(e,function(e){return{node:e}})};t.default=n}])});
--------------------------------------------------------------------------------
/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rwema3/shecanhack/c85208bb9fbcfa32af6c5ce47513b1607eae33c4/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff
--------------------------------------------------------------------------------
/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rwema3/shecanhack/c85208bb9fbcfa32af6c5ce47513b1607eae33c4/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2
--------------------------------------------------------------------------------
/assets/vendor/bootstrap/css/bootstrap-reboot.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Bootstrap Reboot v5.1.3 (https://getbootstrap.com/)
3 | * Copyright 2011-2021 The Bootstrap Authors
4 | * Copyright 2011-2021 Twitter, Inc.
5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
7 | */
8 | :root {
9 | --bs-blue: #0d6efd;
10 | --bs-indigo: #6610f2;
11 | --bs-purple: #6f42c1;
12 | --bs-pink: #d63384;
13 | --bs-red: #dc3545;
14 | --bs-orange: #fd7e14;
15 | --bs-yellow: #ffc107;
16 | --bs-green: #198754;
17 | --bs-teal: #20c997;
18 | --bs-cyan: #0dcaf0;
19 | --bs-white: #fff;
20 | --bs-gray: #6c757d;
21 | --bs-gray-dark: #343a40;
22 | --bs-gray-100: #f8f9fa;
23 | --bs-gray-200: #e9ecef;
24 | --bs-gray-300: #dee2e6;
25 | --bs-gray-400: #ced4da;
26 | --bs-gray-500: #adb5bd;
27 | --bs-gray-600: #6c757d;
28 | --bs-gray-700: #495057;
29 | --bs-gray-800: #343a40;
30 | --bs-gray-900: #212529;
31 | --bs-primary: #0d6efd;
32 | --bs-secondary: #6c757d;
33 | --bs-success: #198754;
34 | --bs-info: #0dcaf0;
35 | --bs-warning: #ffc107;
36 | --bs-danger: #dc3545;
37 | --bs-light: #f8f9fa;
38 | --bs-dark: #212529;
39 | --bs-primary-rgb: 13, 110, 253;
40 | --bs-secondary-rgb: 108, 117, 125;
41 | --bs-success-rgb: 25, 135, 84;
42 | --bs-info-rgb: 13, 202, 240;
43 | --bs-warning-rgb: 255, 193, 7;
44 | --bs-danger-rgb: 220, 53, 69;
45 | --bs-light-rgb: 248, 249, 250;
46 | --bs-dark-rgb: 33, 37, 41;
47 | --bs-white-rgb: 255, 255, 255;
48 | --bs-black-rgb: 0, 0, 0;
49 | --bs-body-color-rgb: 33, 37, 41;
50 | --bs-body-bg-rgb: 255, 255, 255;
51 | --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
52 | --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
53 | --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
54 | --bs-body-font-family: var(--bs-font-sans-serif);
55 | --bs-body-font-size: 1rem;
56 | --bs-body-font-weight: 400;
57 | --bs-body-line-height: 1.5;
58 | --bs-body-color: #212529;
59 | --bs-body-bg: #fff;
60 | }
61 |
62 | *,
63 | *::before,
64 | *::after {
65 | box-sizing: border-box;
66 | }
67 |
68 | @media (prefers-reduced-motion: no-preference) {
69 | :root {
70 | scroll-behavior: smooth;
71 | }
72 | }
73 |
74 | body {
75 | margin: 0;
76 | font-family: var(--bs-body-font-family);
77 | font-size: var(--bs-body-font-size);
78 | font-weight: var(--bs-body-font-weight);
79 | line-height: var(--bs-body-line-height);
80 | color: var(--bs-body-color);
81 | text-align: var(--bs-body-text-align);
82 | background-color: var(--bs-body-bg);
83 | -webkit-text-size-adjust: 100%;
84 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
85 | }
86 |
87 | hr {
88 | margin: 1rem 0;
89 | color: inherit;
90 | background-color: currentColor;
91 | border: 0;
92 | opacity: 0.25;
93 | }
94 |
95 | hr:not([size]) {
96 | height: 1px;
97 | }
98 |
99 | h6, h5, h4, h3, h2, h1 {
100 | margin-top: 0;
101 | margin-bottom: 0.5rem;
102 | font-weight: 500;
103 | line-height: 1.2;
104 | }
105 |
106 | h1 {
107 | font-size: calc(1.375rem + 1.5vw);
108 | }
109 | @media (min-width: 1200px) {
110 | h1 {
111 | font-size: 2.5rem;
112 | }
113 | }
114 |
115 | h2 {
116 | font-size: calc(1.325rem + 0.9vw);
117 | }
118 | @media (min-width: 1200px) {
119 | h2 {
120 | font-size: 2rem;
121 | }
122 | }
123 |
124 | h3 {
125 | font-size: calc(1.3rem + 0.6vw);
126 | }
127 | @media (min-width: 1200px) {
128 | h3 {
129 | font-size: 1.75rem;
130 | }
131 | }
132 |
133 | h4 {
134 | font-size: calc(1.275rem + 0.3vw);
135 | }
136 | @media (min-width: 1200px) {
137 | h4 {
138 | font-size: 1.5rem;
139 | }
140 | }
141 |
142 | h5 {
143 | font-size: 1.25rem;
144 | }
145 |
146 | h6 {
147 | font-size: 1rem;
148 | }
149 |
150 | p {
151 | margin-top: 0;
152 | margin-bottom: 1rem;
153 | }
154 |
155 | abbr[title],
156 | abbr[data-bs-original-title] {
157 | -webkit-text-decoration: underline dotted;
158 | text-decoration: underline dotted;
159 | cursor: help;
160 | -webkit-text-decoration-skip-ink: none;
161 | text-decoration-skip-ink: none;
162 | }
163 |
164 | address {
165 | margin-bottom: 1rem;
166 | font-style: normal;
167 | line-height: inherit;
168 | }
169 |
170 | ol,
171 | ul {
172 | padding-left: 2rem;
173 | }
174 |
175 | ol,
176 | ul,
177 | dl {
178 | margin-top: 0;
179 | margin-bottom: 1rem;
180 | }
181 |
182 | ol ol,
183 | ul ul,
184 | ol ul,
185 | ul ol {
186 | margin-bottom: 0;
187 | }
188 |
189 | dt {
190 | font-weight: 700;
191 | }
192 |
193 | dd {
194 | margin-bottom: 0.5rem;
195 | margin-left: 0;
196 | }
197 |
198 | blockquote {
199 | margin: 0 0 1rem;
200 | }
201 |
202 | b,
203 | strong {
204 | font-weight: bolder;
205 | }
206 |
207 | small {
208 | font-size: 0.875em;
209 | }
210 |
211 | mark {
212 | padding: 0.2em;
213 | background-color: #fcf8e3;
214 | }
215 |
216 | sub,
217 | sup {
218 | position: relative;
219 | font-size: 0.75em;
220 | line-height: 0;
221 | vertical-align: baseline;
222 | }
223 |
224 | sub {
225 | bottom: -0.25em;
226 | }
227 |
228 | sup {
229 | top: -0.5em;
230 | }
231 |
232 | a {
233 | color: #0d6efd;
234 | text-decoration: underline;
235 | }
236 | a:hover {
237 | color: #0a58ca;
238 | }
239 |
240 | a:not([href]):not([class]), a:not([href]):not([class]):hover {
241 | color: inherit;
242 | text-decoration: none;
243 | }
244 |
245 | pre,
246 | code,
247 | kbd,
248 | samp {
249 | font-family: var(--bs-font-monospace);
250 | font-size: 1em;
251 | direction: ltr /* rtl:ignore */;
252 | unicode-bidi: bidi-override;
253 | }
254 |
255 | pre {
256 | display: block;
257 | margin-top: 0;
258 | margin-bottom: 1rem;
259 | overflow: auto;
260 | font-size: 0.875em;
261 | }
262 | pre code {
263 | font-size: inherit;
264 | color: inherit;
265 | word-break: normal;
266 | }
267 |
268 | code {
269 | font-size: 0.875em;
270 | color: #d63384;
271 | word-wrap: break-word;
272 | }
273 | a > code {
274 | color: inherit;
275 | }
276 |
277 | kbd {
278 | padding: 0.2rem 0.4rem;
279 | font-size: 0.875em;
280 | color: #fff;
281 | background-color: #212529;
282 | border-radius: 0.2rem;
283 | }
284 | kbd kbd {
285 | padding: 0;
286 | font-size: 1em;
287 | font-weight: 700;
288 | }
289 |
290 | figure {
291 | margin: 0 0 1rem;
292 | }
293 |
294 | img,
295 | svg {
296 | vertical-align: middle;
297 | }
298 |
299 | table {
300 | caption-side: bottom;
301 | border-collapse: collapse;
302 | }
303 |
304 | caption {
305 | padding-top: 0.5rem;
306 | padding-bottom: 0.5rem;
307 | color: #6c757d;
308 | text-align: left;
309 | }
310 |
311 | th {
312 | text-align: inherit;
313 | text-align: -webkit-match-parent;
314 | }
315 |
316 | thead,
317 | tbody,
318 | tfoot,
319 | tr,
320 | td,
321 | th {
322 | border-color: inherit;
323 | border-style: solid;
324 | border-width: 0;
325 | }
326 |
327 | label {
328 | display: inline-block;
329 | }
330 |
331 | button {
332 | border-radius: 0;
333 | }
334 |
335 | button:focus:not(:focus-visible) {
336 | outline: 0;
337 | }
338 |
339 | input,
340 | button,
341 | select,
342 | optgroup,
343 | textarea {
344 | margin: 0;
345 | font-family: inherit;
346 | font-size: inherit;
347 | line-height: inherit;
348 | }
349 |
350 | button,
351 | select {
352 | text-transform: none;
353 | }
354 |
355 | [role=button] {
356 | cursor: pointer;
357 | }
358 |
359 | select {
360 | word-wrap: normal;
361 | }
362 | select:disabled {
363 | opacity: 1;
364 | }
365 |
366 | [list]::-webkit-calendar-picker-indicator {
367 | display: none;
368 | }
369 |
370 | button,
371 | [type=button],
372 | [type=reset],
373 | [type=submit] {
374 | -webkit-appearance: button;
375 | }
376 | button:not(:disabled),
377 | [type=button]:not(:disabled),
378 | [type=reset]:not(:disabled),
379 | [type=submit]:not(:disabled) {
380 | cursor: pointer;
381 | }
382 |
383 | ::-moz-focus-inner {
384 | padding: 0;
385 | border-style: none;
386 | }
387 |
388 | textarea {
389 | resize: vertical;
390 | }
391 |
392 | fieldset {
393 | min-width: 0;
394 | padding: 0;
395 | margin: 0;
396 | border: 0;
397 | }
398 |
399 | legend {
400 | float: left;
401 | width: 100%;
402 | padding: 0;
403 | margin-bottom: 0.5rem;
404 | font-size: calc(1.275rem + 0.3vw);
405 | line-height: inherit;
406 | }
407 | @media (min-width: 1200px) {
408 | legend {
409 | font-size: 1.5rem;
410 | }
411 | }
412 | legend + * {
413 | clear: left;
414 | }
415 |
416 | ::-webkit-datetime-edit-fields-wrapper,
417 | ::-webkit-datetime-edit-text,
418 | ::-webkit-datetime-edit-minute,
419 | ::-webkit-datetime-edit-hour-field,
420 | ::-webkit-datetime-edit-day-field,
421 | ::-webkit-datetime-edit-month-field,
422 | ::-webkit-datetime-edit-year-field {
423 | padding: 0;
424 | }
425 |
426 | ::-webkit-inner-spin-button {
427 | height: auto;
428 | }
429 |
430 | [type=search] {
431 | outline-offset: -2px;
432 | -webkit-appearance: textfield;
433 | }
434 |
435 | /* rtl:raw:
436 | [type="tel"],
437 | [type="url"],
438 | [type="email"],
439 | [type="number"] {
440 | direction: ltr;
441 | }
442 | */
443 | ::-webkit-search-decoration {
444 | -webkit-appearance: none;
445 | }
446 |
447 | ::-webkit-color-swatch-wrapper {
448 | padding: 0;
449 | }
450 |
451 | ::-webkit-file-upload-button {
452 | font: inherit;
453 | }
454 |
455 | ::file-selector-button {
456 | font: inherit;
457 | }
458 |
459 | ::-webkit-file-upload-button {
460 | font: inherit;
461 | -webkit-appearance: button;
462 | }
463 |
464 | output {
465 | display: inline-block;
466 | }
467 |
468 | iframe {
469 | border: 0;
470 | }
471 |
472 | summary {
473 | display: list-item;
474 | cursor: pointer;
475 | }
476 |
477 | progress {
478 | vertical-align: baseline;
479 | }
480 |
481 | [hidden] {
482 | display: none !important;
483 | }
484 |
485 | /*# sourceMappingURL=bootstrap-reboot.css.map */
--------------------------------------------------------------------------------
/assets/vendor/bootstrap/css/bootstrap-reboot.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Bootstrap Reboot v5.1.3 (https://getbootstrap.com/)
3 | * Copyright 2011-2021 The Bootstrap Authors
4 | * Copyright 2011-2021 Twitter, Inc.
5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
7 | */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:33,37,41;--bs-body-bg-rgb:255,255,255;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}
8 | /*# sourceMappingURL=bootstrap-reboot.min.css.map */
--------------------------------------------------------------------------------
/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Bootstrap Reboot v5.1.3 (https://getbootstrap.com/)
3 | * Copyright 2011-2021 The Bootstrap Authors
4 | * Copyright 2011-2021 Twitter, Inc.
5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
7 | */
8 | :root {
9 | --bs-blue: #0d6efd;
10 | --bs-indigo: #6610f2;
11 | --bs-purple: #6f42c1;
12 | --bs-pink: #d63384;
13 | --bs-red: #dc3545;
14 | --bs-orange: #fd7e14;
15 | --bs-yellow: #ffc107;
16 | --bs-green: #198754;
17 | --bs-teal: #20c997;
18 | --bs-cyan: #0dcaf0;
19 | --bs-white: #fff;
20 | --bs-gray: #6c757d;
21 | --bs-gray-dark: #343a40;
22 | --bs-gray-100: #f8f9fa;
23 | --bs-gray-200: #e9ecef;
24 | --bs-gray-300: #dee2e6;
25 | --bs-gray-400: #ced4da;
26 | --bs-gray-500: #adb5bd;
27 | --bs-gray-600: #6c757d;
28 | --bs-gray-700: #495057;
29 | --bs-gray-800: #343a40;
30 | --bs-gray-900: #212529;
31 | --bs-primary: #0d6efd;
32 | --bs-secondary: #6c757d;
33 | --bs-success: #198754;
34 | --bs-info: #0dcaf0;
35 | --bs-warning: #ffc107;
36 | --bs-danger: #dc3545;
37 | --bs-light: #f8f9fa;
38 | --bs-dark: #212529;
39 | --bs-primary-rgb: 13, 110, 253;
40 | --bs-secondary-rgb: 108, 117, 125;
41 | --bs-success-rgb: 25, 135, 84;
42 | --bs-info-rgb: 13, 202, 240;
43 | --bs-warning-rgb: 255, 193, 7;
44 | --bs-danger-rgb: 220, 53, 69;
45 | --bs-light-rgb: 248, 249, 250;
46 | --bs-dark-rgb: 33, 37, 41;
47 | --bs-white-rgb: 255, 255, 255;
48 | --bs-black-rgb: 0, 0, 0;
49 | --bs-body-color-rgb: 33, 37, 41;
50 | --bs-body-bg-rgb: 255, 255, 255;
51 | --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
52 | --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
53 | --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
54 | --bs-body-font-family: var(--bs-font-sans-serif);
55 | --bs-body-font-size: 1rem;
56 | --bs-body-font-weight: 400;
57 | --bs-body-line-height: 1.5;
58 | --bs-body-color: #212529;
59 | --bs-body-bg: #fff;
60 | }
61 |
62 | *,
63 | *::before,
64 | *::after {
65 | box-sizing: border-box;
66 | }
67 |
68 | @media (prefers-reduced-motion: no-preference) {
69 | :root {
70 | scroll-behavior: smooth;
71 | }
72 | }
73 |
74 | body {
75 | margin: 0;
76 | font-family: var(--bs-body-font-family);
77 | font-size: var(--bs-body-font-size);
78 | font-weight: var(--bs-body-font-weight);
79 | line-height: var(--bs-body-line-height);
80 | color: var(--bs-body-color);
81 | text-align: var(--bs-body-text-align);
82 | background-color: var(--bs-body-bg);
83 | -webkit-text-size-adjust: 100%;
84 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
85 | }
86 |
87 | hr {
88 | margin: 1rem 0;
89 | color: inherit;
90 | background-color: currentColor;
91 | border: 0;
92 | opacity: 0.25;
93 | }
94 |
95 | hr:not([size]) {
96 | height: 1px;
97 | }
98 |
99 | h6, h5, h4, h3, h2, h1 {
100 | margin-top: 0;
101 | margin-bottom: 0.5rem;
102 | font-weight: 500;
103 | line-height: 1.2;
104 | }
105 |
106 | h1 {
107 | font-size: calc(1.375rem + 1.5vw);
108 | }
109 | @media (min-width: 1200px) {
110 | h1 {
111 | font-size: 2.5rem;
112 | }
113 | }
114 |
115 | h2 {
116 | font-size: calc(1.325rem + 0.9vw);
117 | }
118 | @media (min-width: 1200px) {
119 | h2 {
120 | font-size: 2rem;
121 | }
122 | }
123 |
124 | h3 {
125 | font-size: calc(1.3rem + 0.6vw);
126 | }
127 | @media (min-width: 1200px) {
128 | h3 {
129 | font-size: 1.75rem;
130 | }
131 | }
132 |
133 | h4 {
134 | font-size: calc(1.275rem + 0.3vw);
135 | }
136 | @media (min-width: 1200px) {
137 | h4 {
138 | font-size: 1.5rem;
139 | }
140 | }
141 |
142 | h5 {
143 | font-size: 1.25rem;
144 | }
145 |
146 | h6 {
147 | font-size: 1rem;
148 | }
149 |
150 | p {
151 | margin-top: 0;
152 | margin-bottom: 1rem;
153 | }
154 |
155 | abbr[title],
156 | abbr[data-bs-original-title] {
157 | -webkit-text-decoration: underline dotted;
158 | text-decoration: underline dotted;
159 | cursor: help;
160 | -webkit-text-decoration-skip-ink: none;
161 | text-decoration-skip-ink: none;
162 | }
163 |
164 | address {
165 | margin-bottom: 1rem;
166 | font-style: normal;
167 | line-height: inherit;
168 | }
169 |
170 | ol,
171 | ul {
172 | padding-right: 2rem;
173 | }
174 |
175 | ol,
176 | ul,
177 | dl {
178 | margin-top: 0;
179 | margin-bottom: 1rem;
180 | }
181 |
182 | ol ol,
183 | ul ul,
184 | ol ul,
185 | ul ol {
186 | margin-bottom: 0;
187 | }
188 |
189 | dt {
190 | font-weight: 700;
191 | }
192 |
193 | dd {
194 | margin-bottom: 0.5rem;
195 | margin-right: 0;
196 | }
197 |
198 | blockquote {
199 | margin: 0 0 1rem;
200 | }
201 |
202 | b,
203 | strong {
204 | font-weight: bolder;
205 | }
206 |
207 | small {
208 | font-size: 0.875em;
209 | }
210 |
211 | mark {
212 | padding: 0.2em;
213 | background-color: #fcf8e3;
214 | }
215 |
216 | sub,
217 | sup {
218 | position: relative;
219 | font-size: 0.75em;
220 | line-height: 0;
221 | vertical-align: baseline;
222 | }
223 |
224 | sub {
225 | bottom: -0.25em;
226 | }
227 |
228 | sup {
229 | top: -0.5em;
230 | }
231 |
232 | a {
233 | color: #0d6efd;
234 | text-decoration: underline;
235 | }
236 | a:hover {
237 | color: #0a58ca;
238 | }
239 |
240 | a:not([href]):not([class]), a:not([href]):not([class]):hover {
241 | color: inherit;
242 | text-decoration: none;
243 | }
244 |
245 | pre,
246 | code,
247 | kbd,
248 | samp {
249 | font-family: var(--bs-font-monospace);
250 | font-size: 1em;
251 | direction: ltr ;
252 | unicode-bidi: bidi-override;
253 | }
254 |
255 | pre {
256 | display: block;
257 | margin-top: 0;
258 | margin-bottom: 1rem;
259 | overflow: auto;
260 | font-size: 0.875em;
261 | }
262 | pre code {
263 | font-size: inherit;
264 | color: inherit;
265 | word-break: normal;
266 | }
267 |
268 | code {
269 | font-size: 0.875em;
270 | color: #d63384;
271 | word-wrap: break-word;
272 | }
273 | a > code {
274 | color: inherit;
275 | }
276 |
277 | kbd {
278 | padding: 0.2rem 0.4rem;
279 | font-size: 0.875em;
280 | color: #fff;
281 | background-color: #212529;
282 | border-radius: 0.2rem;
283 | }
284 | kbd kbd {
285 | padding: 0;
286 | font-size: 1em;
287 | font-weight: 700;
288 | }
289 |
290 | figure {
291 | margin: 0 0 1rem;
292 | }
293 |
294 | img,
295 | svg {
296 | vertical-align: middle;
297 | }
298 |
299 | table {
300 | caption-side: bottom;
301 | border-collapse: collapse;
302 | }
303 |
304 | caption {
305 | padding-top: 0.5rem;
306 | padding-bottom: 0.5rem;
307 | color: #6c757d;
308 | text-align: right;
309 | }
310 |
311 | th {
312 | text-align: inherit;
313 | text-align: -webkit-match-parent;
314 | }
315 |
316 | thead,
317 | tbody,
318 | tfoot,
319 | tr,
320 | td,
321 | th {
322 | border-color: inherit;
323 | border-style: solid;
324 | border-width: 0;
325 | }
326 |
327 | label {
328 | display: inline-block;
329 | }
330 |
331 | button {
332 | border-radius: 0;
333 | }
334 |
335 | button:focus:not(:focus-visible) {
336 | outline: 0;
337 | }
338 |
339 | input,
340 | button,
341 | select,
342 | optgroup,
343 | textarea {
344 | margin: 0;
345 | font-family: inherit;
346 | font-size: inherit;
347 | line-height: inherit;
348 | }
349 |
350 | button,
351 | select {
352 | text-transform: none;
353 | }
354 |
355 | [role=button] {
356 | cursor: pointer;
357 | }
358 |
359 | select {
360 | word-wrap: normal;
361 | }
362 | select:disabled {
363 | opacity: 1;
364 | }
365 |
366 | [list]::-webkit-calendar-picker-indicator {
367 | display: none;
368 | }
369 |
370 | button,
371 | [type=button],
372 | [type=reset],
373 | [type=submit] {
374 | -webkit-appearance: button;
375 | }
376 | button:not(:disabled),
377 | [type=button]:not(:disabled),
378 | [type=reset]:not(:disabled),
379 | [type=submit]:not(:disabled) {
380 | cursor: pointer;
381 | }
382 |
383 | ::-moz-focus-inner {
384 | padding: 0;
385 | border-style: none;
386 | }
387 |
388 | textarea {
389 | resize: vertical;
390 | }
391 |
392 | fieldset {
393 | min-width: 0;
394 | padding: 0;
395 | margin: 0;
396 | border: 0;
397 | }
398 |
399 | legend {
400 | float: right;
401 | width: 100%;
402 | padding: 0;
403 | margin-bottom: 0.5rem;
404 | font-size: calc(1.275rem + 0.3vw);
405 | line-height: inherit;
406 | }
407 | @media (min-width: 1200px) {
408 | legend {
409 | font-size: 1.5rem;
410 | }
411 | }
412 | legend + * {
413 | clear: right;
414 | }
415 |
416 | ::-webkit-datetime-edit-fields-wrapper,
417 | ::-webkit-datetime-edit-text,
418 | ::-webkit-datetime-edit-minute,
419 | ::-webkit-datetime-edit-hour-field,
420 | ::-webkit-datetime-edit-day-field,
421 | ::-webkit-datetime-edit-month-field,
422 | ::-webkit-datetime-edit-year-field {
423 | padding: 0;
424 | }
425 |
426 | ::-webkit-inner-spin-button {
427 | height: auto;
428 | }
429 |
430 | [type=search] {
431 | outline-offset: -2px;
432 | -webkit-appearance: textfield;
433 | }
434 |
435 | [type="tel"],
436 | [type="url"],
437 | [type="email"],
438 | [type="number"] {
439 | direction: ltr;
440 | }
441 | ::-webkit-search-decoration {
442 | -webkit-appearance: none;
443 | }
444 |
445 | ::-webkit-color-swatch-wrapper {
446 | padding: 0;
447 | }
448 |
449 | ::-webkit-file-upload-button {
450 | font: inherit;
451 | }
452 |
453 | ::file-selector-button {
454 | font: inherit;
455 | }
456 |
457 | ::-webkit-file-upload-button {
458 | font: inherit;
459 | -webkit-appearance: button;
460 | }
461 |
462 | output {
463 | display: inline-block;
464 | }
465 |
466 | iframe {
467 | border: 0;
468 | }
469 |
470 | summary {
471 | display: list-item;
472 | cursor: pointer;
473 | }
474 |
475 | progress {
476 | vertical-align: baseline;
477 | }
478 |
479 | [hidden] {
480 | display: none !important;
481 | }
482 | /*# sourceMappingURL=bootstrap-reboot.rtl.css.map */
--------------------------------------------------------------------------------
/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Bootstrap Reboot v5.1.3 (https://getbootstrap.com/)
3 | * Copyright 2011-2021 The Bootstrap Authors
4 | * Copyright 2011-2021 Twitter, Inc.
5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
7 | */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:33,37,41;--bs-body-bg-rgb:255,255,255;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-right:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-right:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:right}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:right;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:right}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}[type=email],[type=number],[type=tel],[type=url]{direction:ltr}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}
8 | /*# sourceMappingURL=bootstrap-reboot.rtl.min.css.map */
--------------------------------------------------------------------------------
/assets/vendor/glightbox/css/glightbox.css:
--------------------------------------------------------------------------------
1 | .glightbox-container {
2 | width: 100%;
3 | height: 100%;
4 | position: fixed;
5 | top: 0;
6 | left: 0;
7 | z-index: 999999 !important;
8 | overflow: hidden;
9 | -ms-touch-action: none;
10 | touch-action: none;
11 | -webkit-text-size-adjust: 100%;
12 | -moz-text-size-adjust: 100%;
13 | -ms-text-size-adjust: 100%;
14 | text-size-adjust: 100%;
15 | -webkit-backface-visibility: hidden;
16 | backface-visibility: hidden;
17 | outline: none;
18 | overflow: hidden;
19 | }
20 |
21 | .glightbox-container.inactive {
22 | display: none;
23 | }
24 |
25 | .glightbox-container .gcontainer {
26 | position: relative;
27 | width: 100%;
28 | height: 100%;
29 | z-index: 9999;
30 | overflow: hidden;
31 | }
32 |
33 | .glightbox-container .gslider {
34 | -webkit-transition: -webkit-transform 0.4s ease;
35 | transition: -webkit-transform 0.4s ease;
36 | transition: transform 0.4s ease;
37 | transition: transform 0.4s ease, -webkit-transform 0.4s ease;
38 | height: 100%;
39 | left: 0;
40 | top: 0;
41 | width: 100%;
42 | position: relative;
43 | overflow: hidden;
44 | display: -webkit-box !important;
45 | display: -ms-flexbox !important;
46 | display: flex !important;
47 | -webkit-box-pack: center;
48 | -ms-flex-pack: center;
49 | justify-content: center;
50 | -webkit-box-align: center;
51 | -ms-flex-align: center;
52 | align-items: center;
53 | -webkit-transform: translate3d(0, 0, 0);
54 | transform: translate3d(0, 0, 0);
55 | }
56 |
57 | .glightbox-container .gslide {
58 | width: 100%;
59 | position: absolute;
60 | opacity: 1;
61 | -webkit-user-select: none;
62 | -moz-user-select: none;
63 | -ms-user-select: none;
64 | user-select: none;
65 | display: -webkit-box;
66 | display: -ms-flexbox;
67 | display: flex;
68 | -webkit-box-align: center;
69 | -ms-flex-align: center;
70 | align-items: center;
71 | -webkit-box-pack: center;
72 | -ms-flex-pack: center;
73 | justify-content: center;
74 | opacity: 0;
75 | }
76 |
77 | .glightbox-container .gslide.current {
78 | opacity: 1;
79 | z-index: 99999;
80 | position: relative;
81 | }
82 |
83 | .glightbox-container .gslide.prev {
84 | opacity: 1;
85 | z-index: 9999;
86 | }
87 |
88 | .glightbox-container .gslide-inner-content {
89 | width: 100%;
90 | }
91 |
92 | .glightbox-container .ginner-container {
93 | position: relative;
94 | width: 100%;
95 | display: -webkit-box;
96 | display: -ms-flexbox;
97 | display: flex;
98 | -webkit-box-pack: center;
99 | -ms-flex-pack: center;
100 | justify-content: center;
101 | -webkit-box-orient: vertical;
102 | -webkit-box-direction: normal;
103 | -ms-flex-direction: column;
104 | flex-direction: column;
105 | max-width: 100%;
106 | margin: auto;
107 | height: 100vh;
108 | }
109 |
110 | .glightbox-container .ginner-container.gvideo-container {
111 | width: 100%;
112 | }
113 |
114 | .glightbox-container .ginner-container.desc-bottom,
115 | .glightbox-container .ginner-container.desc-top {
116 | -webkit-box-orient: vertical;
117 | -webkit-box-direction: normal;
118 | -ms-flex-direction: column;
119 | flex-direction: column;
120 | }
121 |
122 | .glightbox-container .ginner-container.desc-left,
123 | .glightbox-container .ginner-container.desc-right {
124 | max-width: 100% !important;
125 | }
126 |
127 | .gslide iframe,
128 | .gslide video {
129 | outline: none !important;
130 | border: none;
131 | min-height: 165px;
132 | -webkit-overflow-scrolling: touch;
133 | -ms-touch-action: auto;
134 | touch-action: auto;
135 | }
136 |
137 | .gslide:not(.current) {
138 | pointer-events: none;
139 | }
140 |
141 | .gslide-image {
142 | -webkit-box-align: center;
143 | -ms-flex-align: center;
144 | align-items: center;
145 | }
146 |
147 | .gslide-image img {
148 | max-height: 100vh;
149 | display: block;
150 | padding: 0;
151 | float: none;
152 | outline: none;
153 | border: none;
154 | -webkit-user-select: none;
155 | -moz-user-select: none;
156 | -ms-user-select: none;
157 | user-select: none;
158 | max-width: 100vw;
159 | width: auto;
160 | height: auto;
161 | -o-object-fit: cover;
162 | object-fit: cover;
163 | -ms-touch-action: none;
164 | touch-action: none;
165 | margin: auto;
166 | min-width: 200px;
167 | }
168 |
169 | .desc-top .gslide-image img,
170 | .desc-bottom .gslide-image img {
171 | width: auto;
172 | }
173 |
174 | .desc-left .gslide-image img,
175 | .desc-right .gslide-image img {
176 | width: auto;
177 | max-width: 100%;
178 | }
179 |
180 | .gslide-image img.zoomable {
181 | position: relative;
182 | }
183 |
184 | .gslide-image img.dragging {
185 | cursor: -webkit-grabbing !important;
186 | cursor: grabbing !important;
187 | -webkit-transition: none;
188 | transition: none;
189 | }
190 |
191 | .gslide-video {
192 | position: relative;
193 | max-width: 100vh;
194 | width: 100% !important;
195 | }
196 |
197 | .gslide-video .gvideo-wrapper {
198 | width: 100%;
199 | /* max-width: 160vmin; */
200 | margin: auto;
201 | }
202 |
203 | .gslide-video::before {
204 | content: '';
205 | display: block;
206 | position: absolute;
207 | width: 100%;
208 | height: 100%;
209 | background: rgba(255, 0, 0, 0.34);
210 | display: none;
211 | }
212 |
213 | .gslide-video.playing::before {
214 | display: none;
215 | }
216 |
217 | .gslide-video.fullscreen {
218 | max-width: 100% !important;
219 | min-width: 100%;
220 | height: 75vh;
221 | }
222 |
223 | .gslide-video.fullscreen video {
224 | max-width: 100% !important;
225 | width: 100% !important;
226 | }
227 |
228 | .gslide-inline {
229 | background: #fff;
230 | text-align: left;
231 | max-height: calc(100vh - 40px);
232 | overflow: auto;
233 | max-width: 100%;
234 | }
235 |
236 | .gslide-inline .ginlined-content {
237 | padding: 20px;
238 | width: 100%;
239 | }
240 |
241 | .gslide-inline .dragging {
242 | cursor: -webkit-grabbing !important;
243 | cursor: grabbing !important;
244 | -webkit-transition: none;
245 | transition: none;
246 | }
247 |
248 | .ginlined-content {
249 | overflow: auto;
250 | display: block !important;
251 | opacity: 1;
252 | }
253 |
254 | .gslide-external {
255 | display: -webkit-box;
256 | display: -ms-flexbox;
257 | display: flex;
258 | width: 100%;
259 | min-width: 100%;
260 | background: #fff;
261 | padding: 0;
262 | overflow: auto;
263 | max-height: 75vh;
264 | height: 100%;
265 | }
266 |
267 | .gslide-media {
268 | display: -webkit-box;
269 | display: -ms-flexbox;
270 | display: flex;
271 | width: auto;
272 | }
273 |
274 | .zoomed .gslide-media {
275 | -webkit-box-shadow: none !important;
276 | box-shadow: none !important;
277 | }
278 |
279 | .desc-top .gslide-media,
280 | .desc-bottom .gslide-media {
281 | margin: 0 auto;
282 | -webkit-box-orient: vertical;
283 | -webkit-box-direction: normal;
284 | -ms-flex-direction: column;
285 | flex-direction: column;
286 | }
287 |
288 | .gslide-description {
289 | position: relative;
290 | -webkit-box-flex: 1;
291 | -ms-flex: 1 0 100%;
292 | flex: 1 0 100%;
293 | }
294 |
295 | .gslide-description.description-left,
296 | .gslide-description.description-right {
297 | max-width: 100%;
298 | }
299 |
300 | .gslide-description.description-bottom,
301 | .gslide-description.description-top {
302 | margin: 0 auto;
303 | width: 100%;
304 | }
305 |
306 | .gslide-description p {
307 | margin-bottom: 12px;
308 | }
309 |
310 | .gslide-description p:last-child {
311 | margin-bottom: 0;
312 | }
313 |
314 | .zoomed .gslide-description {
315 | display: none;
316 | }
317 |
318 | .glightbox-button-hidden {
319 | display: none;
320 | }
321 |
322 |
323 | /*
324 | * Description for mobiles
325 | * something like facebook does the description
326 | * for the photos
327 | */
328 |
329 | .glightbox-mobile .glightbox-container .gslide-description {
330 | height: auto !important;
331 | width: 100%;
332 | background: transparent;
333 | position: absolute;
334 | bottom: 0;
335 | padding: 19px 11px;
336 | max-width: 100vw !important;
337 | -webkit-box-ordinal-group: 3 !important;
338 | -ms-flex-order: 2 !important;
339 | order: 2 !important;
340 | max-height: 78vh;
341 | overflow: auto !important;
342 | background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
343 | background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
344 | -webkit-transition: opacity 0.3s linear;
345 | transition: opacity 0.3s linear;
346 | padding-bottom: 50px;
347 | }
348 |
349 | .glightbox-mobile .glightbox-container .gslide-title {
350 | color: #fff;
351 | font-size: 1em;
352 | }
353 |
354 | .glightbox-mobile .glightbox-container .gslide-desc {
355 | color: #a1a1a1;
356 | }
357 |
358 | .glightbox-mobile .glightbox-container .gslide-desc a {
359 | color: #fff;
360 | font-weight: bold;
361 | }
362 |
363 | .glightbox-mobile .glightbox-container .gslide-desc * {
364 | color: inherit;
365 | }
366 |
367 | .glightbox-mobile .glightbox-container .gslide-desc string {
368 | color: #fff;
369 | }
370 |
371 | .glightbox-mobile .glightbox-container .gslide-desc .desc-more {
372 | color: #fff;
373 | opacity: 0.4;
374 | }
375 |
376 | .gdesc-open .gslide-media {
377 | -webkit-transition: opacity 0.5s ease;
378 | transition: opacity 0.5s ease;
379 | opacity: 0.4;
380 | }
381 |
382 | .gdesc-open .gdesc-inner {
383 | padding-bottom: 30px;
384 | }
385 |
386 | .gdesc-closed .gslide-media {
387 | -webkit-transition: opacity 0.5s ease;
388 | transition: opacity 0.5s ease;
389 | opacity: 1;
390 | }
391 |
392 | .greset {
393 | -webkit-transition: all 0.3s ease;
394 | transition: all 0.3s ease;
395 | }
396 |
397 | .gabsolute {
398 | position: absolute;
399 | }
400 |
401 | .grelative {
402 | position: relative;
403 | }
404 |
405 | .glightbox-desc {
406 | display: none !important;
407 | }
408 |
409 | .glightbox-open {
410 | overflow: hidden;
411 | }
412 |
413 | .gloader {
414 | height: 25px;
415 | width: 25px;
416 | -webkit-animation: lightboxLoader 0.8s infinite linear;
417 | animation: lightboxLoader 0.8s infinite linear;
418 | border: 2px solid #fff;
419 | border-right-color: transparent;
420 | border-radius: 50%;
421 | position: absolute;
422 | display: block;
423 | z-index: 9999;
424 | left: 0;
425 | right: 0;
426 | margin: 0 auto;
427 | top: 47%;
428 | }
429 |
430 | .goverlay {
431 | width: 100%;
432 | height: calc(100vh + 1px);
433 | position: fixed;
434 | top: -1px;
435 | left: 0;
436 | background: #000;
437 | will-change: opacity;
438 | }
439 |
440 | .glightbox-mobile .goverlay {
441 | background: #000;
442 | }
443 |
444 | .gprev,
445 | .gnext,
446 | .gclose {
447 | z-index: 99999;
448 | cursor: pointer;
449 | width: 26px;
450 | height: 44px;
451 | border: none;
452 | display: -webkit-box;
453 | display: -ms-flexbox;
454 | display: flex;
455 | -webkit-box-pack: center;
456 | -ms-flex-pack: center;
457 | justify-content: center;
458 | -webkit-box-align: center;
459 | -ms-flex-align: center;
460 | align-items: center;
461 | -webkit-box-orient: vertical;
462 | -webkit-box-direction: normal;
463 | -ms-flex-direction: column;
464 | flex-direction: column;
465 | }
466 |
467 | .gprev svg,
468 | .gnext svg,
469 | .gclose svg {
470 | display: block;
471 | width: 25px;
472 | height: auto;
473 | margin: 0;
474 | padding: 0;
475 | }
476 |
477 | .gprev.disabled,
478 | .gnext.disabled,
479 | .gclose.disabled {
480 | opacity: 0.1;
481 | }
482 |
483 | .gprev .garrow,
484 | .gnext .garrow,
485 | .gclose .garrow {
486 | stroke: #fff;
487 | }
488 |
489 | .gbtn.focused {
490 | outline: 2px solid #0f3d81;
491 | }
492 |
493 | iframe.wait-autoplay {
494 | opacity: 0;
495 | }
496 |
497 | .glightbox-closing .gnext,
498 | .glightbox-closing .gprev,
499 | .glightbox-closing .gclose {
500 | opacity: 0 !important;
501 | }
502 |
503 |
504 | /*Skin */
505 |
506 | .glightbox-clean .gslide-description {
507 | background: #fff;
508 | }
509 |
510 | .glightbox-clean .gdesc-inner {
511 | padding: 22px 20px;
512 | }
513 |
514 | .glightbox-clean .gslide-title {
515 | font-size: 1em;
516 | font-weight: normal;
517 | font-family: arial;
518 | color: #000;
519 | margin-bottom: 19px;
520 | line-height: 1.4em;
521 | }
522 |
523 | .glightbox-clean .gslide-desc {
524 | font-size: 0.86em;
525 | margin-bottom: 0;
526 | font-family: arial;
527 | line-height: 1.4em;
528 | }
529 |
530 | .glightbox-clean .gslide-video {
531 | background: #000;
532 | }
533 |
534 | .glightbox-clean .gprev,
535 | .glightbox-clean .gnext,
536 | .glightbox-clean .gclose {
537 | background-color: rgba(0, 0, 0, 0.75);
538 | border-radius: 4px;
539 | }
540 |
541 | .glightbox-clean .gprev path,
542 | .glightbox-clean .gnext path,
543 | .glightbox-clean .gclose path {
544 | fill: #fff;
545 | }
546 |
547 | .glightbox-clean .gprev {
548 | position: absolute;
549 | top: -100%;
550 | left: 30px;
551 | width: 40px;
552 | height: 50px;
553 | }
554 |
555 | .glightbox-clean .gnext {
556 | position: absolute;
557 | top: -100%;
558 | right: 30px;
559 | width: 40px;
560 | height: 50px;
561 | }
562 |
563 | .glightbox-clean .gclose {
564 | width: 35px;
565 | height: 35px;
566 | top: 15px;
567 | right: 10px;
568 | position: absolute;
569 | }
570 |
571 | .glightbox-clean .gclose svg {
572 | width: 18px;
573 | height: auto;
574 | }
575 |
576 | .glightbox-clean .gclose:hover {
577 | opacity: 1;
578 | }
579 |
580 |
581 | /*CSS Animations*/
582 |
583 | .gfadeIn {
584 | -webkit-animation: gfadeIn 0.5s ease;
585 | animation: gfadeIn 0.5s ease;
586 | }
587 |
588 | .gfadeOut {
589 | -webkit-animation: gfadeOut 0.5s ease;
590 | animation: gfadeOut 0.5s ease;
591 | }
592 |
593 | .gslideOutLeft {
594 | -webkit-animation: gslideOutLeft 0.3s ease;
595 | animation: gslideOutLeft 0.3s ease;
596 | }
597 |
598 | .gslideInLeft {
599 | -webkit-animation: gslideInLeft 0.3s ease;
600 | animation: gslideInLeft 0.3s ease;
601 | }
602 |
603 | .gslideOutRight {
604 | -webkit-animation: gslideOutRight 0.3s ease;
605 | animation: gslideOutRight 0.3s ease;
606 | }
607 |
608 | .gslideInRight {
609 | -webkit-animation: gslideInRight 0.3s ease;
610 | animation: gslideInRight 0.3s ease;
611 | }
612 |
613 | .gzoomIn {
614 | -webkit-animation: gzoomIn 0.5s ease;
615 | animation: gzoomIn 0.5s ease;
616 | }
617 |
618 | .gzoomOut {
619 | -webkit-animation: gzoomOut 0.5s ease;
620 | animation: gzoomOut 0.5s ease;
621 | }
622 |
623 | @-webkit-keyframes lightboxLoader {
624 | 0% {
625 | -webkit-transform: rotate(0deg);
626 | transform: rotate(0deg);
627 | }
628 | 100% {
629 | -webkit-transform: rotate(360deg);
630 | transform: rotate(360deg);
631 | }
632 | }
633 |
634 | @keyframes lightboxLoader {
635 | 0% {
636 | -webkit-transform: rotate(0deg);
637 | transform: rotate(0deg);
638 | }
639 | 100% {
640 | -webkit-transform: rotate(360deg);
641 | transform: rotate(360deg);
642 | }
643 | }
644 |
645 | @-webkit-keyframes gfadeIn {
646 | from {
647 | opacity: 0;
648 | }
649 | to {
650 | opacity: 1;
651 | }
652 | }
653 |
654 | @keyframes gfadeIn {
655 | from {
656 | opacity: 0;
657 | }
658 | to {
659 | opacity: 1;
660 | }
661 | }
662 |
663 | @-webkit-keyframes gfadeOut {
664 | from {
665 | opacity: 1;
666 | }
667 | to {
668 | opacity: 0;
669 | }
670 | }
671 |
672 | @keyframes gfadeOut {
673 | from {
674 | opacity: 1;
675 | }
676 | to {
677 | opacity: 0;
678 | }
679 | }
680 |
681 | @-webkit-keyframes gslideInLeft {
682 | from {
683 | opacity: 0;
684 | -webkit-transform: translate3d(-60%, 0, 0);
685 | transform: translate3d(-60%, 0, 0);
686 | }
687 | to {
688 | visibility: visible;
689 | -webkit-transform: translate3d(0, 0, 0);
690 | transform: translate3d(0, 0, 0);
691 | opacity: 1;
692 | }
693 | }
694 |
695 | @keyframes gslideInLeft {
696 | from {
697 | opacity: 0;
698 | -webkit-transform: translate3d(-60%, 0, 0);
699 | transform: translate3d(-60%, 0, 0);
700 | }
701 | to {
702 | visibility: visible;
703 | -webkit-transform: translate3d(0, 0, 0);
704 | transform: translate3d(0, 0, 0);
705 | opacity: 1;
706 | }
707 | }
708 |
709 | @-webkit-keyframes gslideOutLeft {
710 | from {
711 | opacity: 1;
712 | visibility: visible;
713 | -webkit-transform: translate3d(0, 0, 0);
714 | transform: translate3d(0, 0, 0);
715 | }
716 | to {
717 | -webkit-transform: translate3d(-60%, 0, 0);
718 | transform: translate3d(-60%, 0, 0);
719 | opacity: 0;
720 | visibility: hidden;
721 | }
722 | }
723 |
724 | @keyframes gslideOutLeft {
725 | from {
726 | opacity: 1;
727 | visibility: visible;
728 | -webkit-transform: translate3d(0, 0, 0);
729 | transform: translate3d(0, 0, 0);
730 | }
731 | to {
732 | -webkit-transform: translate3d(-60%, 0, 0);
733 | transform: translate3d(-60%, 0, 0);
734 | opacity: 0;
735 | visibility: hidden;
736 | }
737 | }
738 |
739 | @-webkit-keyframes gslideInRight {
740 | from {
741 | opacity: 0;
742 | visibility: visible;
743 | -webkit-transform: translate3d(60%, 0, 0);
744 | transform: translate3d(60%, 0, 0);
745 | }
746 | to {
747 | -webkit-transform: translate3d(0, 0, 0);
748 | transform: translate3d(0, 0, 0);
749 | opacity: 1;
750 | }
751 | }
752 |
753 | @keyframes gslideInRight {
754 | from {
755 | opacity: 0;
756 | visibility: visible;
757 | -webkit-transform: translate3d(60%, 0, 0);
758 | transform: translate3d(60%, 0, 0);
759 | }
760 | to {
761 | -webkit-transform: translate3d(0, 0, 0);
762 | transform: translate3d(0, 0, 0);
763 | opacity: 1;
764 | }
765 | }
766 |
767 | @-webkit-keyframes gslideOutRight {
768 | from {
769 | opacity: 1;
770 | visibility: visible;
771 | -webkit-transform: translate3d(0, 0, 0);
772 | transform: translate3d(0, 0, 0);
773 | }
774 | to {
775 | -webkit-transform: translate3d(60%, 0, 0);
776 | transform: translate3d(60%, 0, 0);
777 | opacity: 0;
778 | }
779 | }
780 |
781 | @keyframes gslideOutRight {
782 | from {
783 | opacity: 1;
784 | visibility: visible;
785 | -webkit-transform: translate3d(0, 0, 0);
786 | transform: translate3d(0, 0, 0);
787 | }
788 | to {
789 | -webkit-transform: translate3d(60%, 0, 0);
790 | transform: translate3d(60%, 0, 0);
791 | opacity: 0;
792 | }
793 | }
794 |
795 | @-webkit-keyframes gzoomIn {
796 | from {
797 | opacity: 0;
798 | -webkit-transform: scale3d(0.3, 0.3, 0.3);
799 | transform: scale3d(0.3, 0.3, 0.3);
800 | }
801 | to {
802 | opacity: 1;
803 | }
804 | }
805 |
806 | @keyframes gzoomIn {
807 | from {
808 | opacity: 0;
809 | -webkit-transform: scale3d(0.3, 0.3, 0.3);
810 | transform: scale3d(0.3, 0.3, 0.3);
811 | }
812 | to {
813 | opacity: 1;
814 | }
815 | }
816 |
817 | @-webkit-keyframes gzoomOut {
818 | from {
819 | opacity: 1;
820 | }
821 | 50% {
822 | opacity: 0;
823 | -webkit-transform: scale3d(0.3, 0.3, 0.3);
824 | transform: scale3d(0.3, 0.3, 0.3);
825 | }
826 | to {
827 | opacity: 0;
828 | }
829 | }
830 |
831 | @keyframes gzoomOut {
832 | from {
833 | opacity: 1;
834 | }
835 | 50% {
836 | opacity: 0;
837 | -webkit-transform: scale3d(0.3, 0.3, 0.3);
838 | transform: scale3d(0.3, 0.3, 0.3);
839 | }
840 | to {
841 | opacity: 0;
842 | }
843 | }
844 |
845 | @media (min-width: 769px) {
846 | .glightbox-container .ginner-container {
847 | width: auto;
848 | height: auto;
849 | -webkit-box-orient: horizontal;
850 | -webkit-box-direction: normal;
851 | -ms-flex-direction: row;
852 | flex-direction: row;
853 | }
854 | .glightbox-container .ginner-container.desc-top .gslide-description {
855 | -webkit-box-ordinal-group: 1;
856 | -ms-flex-order: 0;
857 | order: 0;
858 | }
859 | .glightbox-container .ginner-container.desc-top .gslide-image,
860 | .glightbox-container .ginner-container.desc-top .gslide-image img {
861 | -webkit-box-ordinal-group: 2;
862 | -ms-flex-order: 1;
863 | order: 1;
864 | }
865 | .glightbox-container .ginner-container.desc-left .gslide-description {
866 | -webkit-box-ordinal-group: 1;
867 | -ms-flex-order: 0;
868 | order: 0;
869 | }
870 | .glightbox-container .ginner-container.desc-left .gslide-image {
871 | -webkit-box-ordinal-group: 2;
872 | -ms-flex-order: 1;
873 | order: 1;
874 | }
875 | .gslide-image img {
876 | max-height: 97vh;
877 | max-width: 100%;
878 | }
879 | .gslide-image img.zoomable {
880 | cursor: -webkit-zoom-in;
881 | cursor: zoom-in;
882 | }
883 | .zoomed .gslide-image img.zoomable {
884 | cursor: -webkit-grab;
885 | cursor: grab;
886 | }
887 | .gslide-inline {
888 | max-height: 95vh;
889 | }
890 | .gslide-external {
891 | max-height: 100vh;
892 | }
893 | .gslide-description.description-left,
894 | .gslide-description.description-right {
895 | max-width: 275px;
896 | }
897 | .glightbox-open {
898 | height: auto;
899 | }
900 | .goverlay {
901 | background: rgba(0, 0, 0, 0.92);
902 | }
903 | .glightbox-clean .gslide-media {
904 | -webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
905 | box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
906 | }
907 | .glightbox-clean .description-left .gdesc-inner,
908 | .glightbox-clean .description-right .gdesc-inner {
909 | position: absolute;
910 | height: 100%;
911 | overflow-y: auto;
912 | }
913 | .glightbox-clean .gprev,
914 | .glightbox-clean .gnext,
915 | .glightbox-clean .gclose {
916 | background-color: rgba(0, 0, 0, 0.32);
917 | }
918 | .glightbox-clean .gprev:hover,
919 | .glightbox-clean .gnext:hover,
920 | .glightbox-clean .gclose:hover {
921 | background-color: rgba(0, 0, 0, 0.7);
922 | }
923 | .glightbox-clean .gprev {
924 | top: 45%;
925 | }
926 | .glightbox-clean .gnext {
927 | top: 45%;
928 | }
929 | }
930 |
931 | @media (min-width: 992px) {
932 | .glightbox-clean .gclose {
933 | opacity: 0.7;
934 | right: 20px;
935 | }
936 | }
937 |
938 | @media screen and (max-height: 420px) {
939 | .goverlay {
940 | background: #000;
941 | }
942 | }
943 |
--------------------------------------------------------------------------------
/assets/vendor/glightbox/css/glightbox.min.css:
--------------------------------------------------------------------------------
1 | .glightbox-container{width:100%;height:100%;position:fixed;top:0;left:0;z-index:999999!important;overflow:hidden;-ms-touch-action:none;touch-action:none;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0;overflow:hidden}.glightbox-container.inactive{display:none}.glightbox-container .gcontainer{position:relative;width:100%;height:100%;z-index:9999;overflow:hidden}.glightbox-container .gslider{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;height:100%;left:0;top:0;width:100%;position:relative;overflow:hidden;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.glightbox-container .gslide{width:100%;position:absolute;opacity:1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;opacity:0}.glightbox-container .gslide.current{opacity:1;z-index:99999;position:relative}.glightbox-container .gslide.prev{opacity:1;z-index:9999}.glightbox-container .gslide-inner-content{width:100%}.glightbox-container .ginner-container{position:relative;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:100%;margin:auto;height:100vh}.glightbox-container .ginner-container.gvideo-container{width:100%}.glightbox-container .ginner-container.desc-bottom,.glightbox-container .ginner-container.desc-top{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.glightbox-container .ginner-container.desc-left,.glightbox-container .ginner-container.desc-right{max-width:100%!important}.gslide iframe,.gslide video{outline:0!important;border:none;min-height:165px;-webkit-overflow-scrolling:touch;-ms-touch-action:auto;touch-action:auto}.gslide:not(.current){pointer-events:none}.gslide-image{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gslide-image img{max-height:100vh;display:block;padding:0;float:none;outline:0;border:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:100vw;width:auto;height:auto;-o-object-fit:cover;object-fit:cover;-ms-touch-action:none;touch-action:none;margin:auto;min-width:200px}.desc-bottom .gslide-image img,.desc-top .gslide-image img{width:auto}.desc-left .gslide-image img,.desc-right .gslide-image img{width:auto;max-width:100%}.gslide-image img.zoomable{position:relative}.gslide-image img.dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.gslide-video{position:relative;max-width:100vh;width:100%!important}.gslide-video .gvideo-wrapper{width:100%;margin:auto}.gslide-video::before{content:'';display:block;position:absolute;width:100%;height:100%;background:rgba(255,0,0,.34);display:none}.gslide-video.playing::before{display:none}.gslide-video.fullscreen{max-width:100%!important;min-width:100%;height:75vh}.gslide-video.fullscreen video{max-width:100%!important;width:100%!important}.gslide-inline{background:#fff;text-align:left;max-height:calc(100vh - 40px);overflow:auto;max-width:100%}.gslide-inline .ginlined-content{padding:20px;width:100%}.gslide-inline .dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.ginlined-content{overflow:auto;display:block!important;opacity:1}.gslide-external{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;min-width:100%;background:#fff;padding:0;overflow:auto;max-height:75vh;height:100%}.gslide-media{display:-webkit-box;display:-ms-flexbox;display:flex;width:auto}.zoomed .gslide-media{-webkit-box-shadow:none!important;box-shadow:none!important}.desc-bottom .gslide-media,.desc-top .gslide-media{margin:0 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gslide-description{position:relative;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}.gslide-description.description-left,.gslide-description.description-right{max-width:100%}.gslide-description.description-bottom,.gslide-description.description-top{margin:0 auto;width:100%}.gslide-description p{margin-bottom:12px}.gslide-description p:last-child{margin-bottom:0}.zoomed .gslide-description{display:none}.glightbox-button-hidden{display:none}.glightbox-mobile .glightbox-container .gslide-description{height:auto!important;width:100%;background:0 0;position:absolute;bottom:0;padding:19px 11px;max-width:100vw!important;-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important;max-height:78vh;overflow:auto!important;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.75)));background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.75) 100%);-webkit-transition:opacity .3s linear;transition:opacity .3s linear;padding-bottom:50px}.glightbox-mobile .glightbox-container .gslide-title{color:#fff;font-size:1em}.glightbox-mobile .glightbox-container .gslide-desc{color:#a1a1a1}.glightbox-mobile .glightbox-container .gslide-desc a{color:#fff;font-weight:700}.glightbox-mobile .glightbox-container .gslide-desc *{color:inherit}.glightbox-mobile .glightbox-container .gslide-desc string{color:#fff}.glightbox-mobile .glightbox-container .gslide-desc .desc-more{color:#fff;opacity:.4}.gdesc-open .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:.4}.gdesc-open .gdesc-inner{padding-bottom:30px}.gdesc-closed .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:1}.greset{-webkit-transition:all .3s ease;transition:all .3s ease}.gabsolute{position:absolute}.grelative{position:relative}.glightbox-desc{display:none!important}.glightbox-open{overflow:hidden}.gloader{height:25px;width:25px;-webkit-animation:lightboxLoader .8s infinite linear;animation:lightboxLoader .8s infinite linear;border:2px solid #fff;border-right-color:transparent;border-radius:50%;position:absolute;display:block;z-index:9999;left:0;right:0;margin:0 auto;top:47%}.goverlay{width:100%;height:calc(100vh + 1px);position:fixed;top:-1px;left:0;background:#000;will-change:opacity}.glightbox-mobile .goverlay{background:#000}.gclose,.gnext,.gprev{z-index:99999;cursor:pointer;width:26px;height:44px;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gclose svg,.gnext svg,.gprev svg{display:block;width:25px;height:auto;margin:0;padding:0}.gclose.disabled,.gnext.disabled,.gprev.disabled{opacity:.1}.gclose .garrow,.gnext .garrow,.gprev .garrow{stroke:#fff}.gbtn.focused{outline:2px solid #0f3d81}iframe.wait-autoplay{opacity:0}.glightbox-closing .gclose,.glightbox-closing .gnext,.glightbox-closing .gprev{opacity:0!important}.glightbox-clean .gslide-description{background:#fff}.glightbox-clean .gdesc-inner{padding:22px 20px}.glightbox-clean .gslide-title{font-size:1em;font-weight:400;font-family:arial;color:#000;margin-bottom:19px;line-height:1.4em}.glightbox-clean .gslide-desc{font-size:.86em;margin-bottom:0;font-family:arial;line-height:1.4em}.glightbox-clean .gslide-video{background:#000}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.75);border-radius:4px}.glightbox-clean .gclose path,.glightbox-clean .gnext path,.glightbox-clean .gprev path{fill:#fff}.glightbox-clean .gprev{position:absolute;top:-100%;left:30px;width:40px;height:50px}.glightbox-clean .gnext{position:absolute;top:-100%;right:30px;width:40px;height:50px}.glightbox-clean .gclose{width:35px;height:35px;top:15px;right:10px;position:absolute}.glightbox-clean .gclose svg{width:18px;height:auto}.glightbox-clean .gclose:hover{opacity:1}.gfadeIn{-webkit-animation:gfadeIn .5s ease;animation:gfadeIn .5s ease}.gfadeOut{-webkit-animation:gfadeOut .5s ease;animation:gfadeOut .5s ease}.gslideOutLeft{-webkit-animation:gslideOutLeft .3s ease;animation:gslideOutLeft .3s ease}.gslideInLeft{-webkit-animation:gslideInLeft .3s ease;animation:gslideInLeft .3s ease}.gslideOutRight{-webkit-animation:gslideOutRight .3s ease;animation:gslideOutRight .3s ease}.gslideInRight{-webkit-animation:gslideInRight .3s ease;animation:gslideInRight .3s ease}.gzoomIn{-webkit-animation:gzoomIn .5s ease;animation:gzoomIn .5s ease}.gzoomOut{-webkit-animation:gzoomOut .5s ease;animation:gzoomOut .5s ease}@-webkit-keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes gfadeIn{from{opacity:0}to{opacity:1}}@keyframes gfadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes gfadeOut{from{opacity:1}to{opacity:0}}@keyframes gfadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@-webkit-keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@-webkit-keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@-webkit-keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@media (min-width:769px){.glightbox-container .ginner-container{width:auto;height:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.glightbox-container .ginner-container.desc-top .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-top .gslide-image,.glightbox-container .ginner-container.desc-top .gslide-image img{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.glightbox-container .ginner-container.desc-left .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-left .gslide-image{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.gslide-image img{max-height:97vh;max-width:100%}.gslide-image img.zoomable{cursor:-webkit-zoom-in;cursor:zoom-in}.zoomed .gslide-image img.zoomable{cursor:-webkit-grab;cursor:grab}.gslide-inline{max-height:95vh}.gslide-external{max-height:100vh}.gslide-description.description-left,.gslide-description.description-right{max-width:275px}.glightbox-open{height:auto}.goverlay{background:rgba(0,0,0,.92)}.glightbox-clean .gslide-media{-webkit-box-shadow:1px 2px 9px 0 rgba(0,0,0,.65);box-shadow:1px 2px 9px 0 rgba(0,0,0,.65)}.glightbox-clean .description-left .gdesc-inner,.glightbox-clean .description-right .gdesc-inner{position:absolute;height:100%;overflow-y:auto}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.32)}.glightbox-clean .gclose:hover,.glightbox-clean .gnext:hover,.glightbox-clean .gprev:hover{background-color:rgba(0,0,0,.7)}.glightbox-clean .gprev{top:45%}.glightbox-clean .gnext{top:45%}}@media (min-width:992px){.glightbox-clean .gclose{opacity:.7;right:20px}}@media screen and (max-height:420px){.goverlay{background:#000}}
--------------------------------------------------------------------------------
/assets/vendor/php-email-form/validate.js:
--------------------------------------------------------------------------------
1 | /**
2 | * PHP Email Form Validation - v3.2
3 | * URL: https://bootstrapmade.com/php-email-form/
4 | * Author: BootstrapMade.com
5 | */
6 | (function () {
7 | "use strict";
8 |
9 | let forms = document.querySelectorAll('.php-email-form');
10 |
11 | forms.forEach( function(e) {
12 | e.addEventListener('submit', function(event) {
13 | event.preventDefault();
14 |
15 | let thisForm = this;
16 |
17 | let action = thisForm.getAttribute('action');
18 | let recaptcha = thisForm.getAttribute('data-recaptcha-site-key');
19 |
20 | if( ! action ) {
21 | displayError(thisForm, 'The form action property is not set!')
22 | return;
23 | }
24 | thisForm.querySelector('.loading').classList.add('d-block');
25 | thisForm.querySelector('.error-message').classList.remove('d-block');
26 | thisForm.querySelector('.sent-message').classList.remove('d-block');
27 |
28 | let formData = new FormData( thisForm );
29 |
30 | if ( recaptcha ) {
31 | if(typeof grecaptcha !== "undefined" ) {
32 | grecaptcha.ready(function() {
33 | try {
34 | grecaptcha.execute(recaptcha, {action: 'php_email_form_submit'})
35 | .then(token => {
36 | formData.set('recaptcha-response', token);
37 | php_email_form_submit(thisForm, action, formData);
38 | })
39 | } catch(error) {
40 | displayError(thisForm, error)
41 | }
42 | });
43 | } else {
44 | displayError(thisForm, 'The reCaptcha javascript API url is not loaded!')
45 | }
46 | } else {
47 | php_email_form_submit(thisForm, action, formData);
48 | }
49 | });
50 | });
51 |
52 | function php_email_form_submit(thisForm, action, formData) {
53 | fetch(action, {
54 | method: 'POST',
55 | body: formData,
56 | headers: {'X-Requested-With': 'XMLHttpRequest'}
57 | })
58 | .then(response => {
59 | if( response.ok ) {
60 | return response.text()
61 | } else {
62 | throw new Error(`${response.status} ${response.statusText} ${response.url}`);
63 | }
64 | })
65 | .then(data => {
66 | thisForm.querySelector('.loading').classList.remove('d-block');
67 | if (data.trim() == 'OK') {
68 | thisForm.querySelector('.sent-message').classList.add('d-block');
69 | thisForm.reset();
70 | } else {
71 | throw new Error(data ? data : 'Form submission failed and no error message returned from: ' + action);
72 | }
73 | })
74 | .catch((error) => {
75 | displayError(thisForm, error);
76 | });
77 | }
78 |
79 | function displayError(thisForm, error) {
80 | thisForm.querySelector('.loading').classList.remove('d-block');
81 | thisForm.querySelector('.error-message').innerHTML = error;
82 | thisForm.querySelector('.error-message').classList.add('d-block');
83 | }
84 |
85 | })();
86 |
--------------------------------------------------------------------------------
/assets/vendor/swiper/swiper-bundle.min.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Swiper 8.0.6
3 | * Most modern mobile touch slider and framework with hardware accelerated transitions
4 | * https://swiperjs.com
5 | *
6 | * Copyright 2014-2022 Vladimir Kharlampidi
7 | *
8 | * Released under the MIT License
9 | *
10 | * Released on: February 14, 2022
11 | */
12 |
13 | @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-slide-visible .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
--------------------------------------------------------------------------------
/composer.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rwema3/shecanhack/c85208bb9fbcfa32af6c5ce47513b1607eae33c4/composer.json
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | She Can Hack
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 |
64 |
65 |
66 |
67 |
Welcome | She Can Hack
68 |
Did you know women only make up about 24% of the cyber security industry?
69 |
70 |
71 |
72 |
73 |
74 |
84 |
85 |
86 |
87 |
88 |
89 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 | Train
106 |
107 |
Provide expert training courses from leaders in the field and equip women with not just technical skills, but also the soft skills needed for successful professional development.
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 | Inspire
123 |
124 |
Shift the mentality and tackle systemic barriers that prevent broader inclusion. Promote the perception of women not as a special needs group, but as valuable addi tions to the cybersecurity workforce.
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 | Empower
140 |
141 |
Promote knowledge sharing of best practices in cybersecurity career development. Provide a platform where experts can mentor and foster the professional and personal growth of women at beginner levels.
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
166 |
167 | Career Planning
168 | Knowledge, skills, and competence development
169 | Current professional challenges and opportunities
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
180 |
181 |
182 | Minimum 1-year experience in the field of ICT/STEM position and be interested to enter the cybersecurity workforce
183 |
184 | Participants must have a good working knowledge of English
185 | Nulla at volutpat diam uteera
186 |
187 | Willing to commit at least 3 hours to this program a day
188 |
189 | Pre-requisite knowledge in Linux, Networking, and Programming languages
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
201 |
202 |
203 | Have the fastest track to employment as a cybersecurity engineer in Tech Eco system
204 | Gain the technical offense and defense skills you need to start as a junior cyber security Enginee
205 | Gain the technical and professional skills highly in-demand in the marketplace
206 | Apply essential techniques used in defensive and offensive security.
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
282 |
283 |
284 |
285 |
286 |
287 |
288 |
--------------------------------------------------------------------------------
/index.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------